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

43899 строки
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. }
  1771. //species
  1772. function getSpeciesInfo(speciesList) {
  1773. let result = new Set();
  1774. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1775. result.add(entry)
  1776. });
  1777. return Array.from(result);
  1778. };
  1779. function getSpeciesInfoHelper(species) {
  1780. if (!speciesData[species]) {
  1781. console.warn(species + " doesn't exist");
  1782. return [];
  1783. }
  1784. if (speciesData[species].parents) {
  1785. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1786. } else {
  1787. return [species];
  1788. }
  1789. }
  1790. characterMakers.push(() => makeCharacter(
  1791. {
  1792. name: "Fen",
  1793. species: ["crux"],
  1794. description: {
  1795. title: "Bio",
  1796. text: "Very furry. Sheds on everything."
  1797. },
  1798. tags: [
  1799. "anthro",
  1800. "goo"
  1801. ]
  1802. },
  1803. {
  1804. back: {
  1805. height: math.unit(2.2428, "meter"),
  1806. weight: math.unit(124.738, "kg"),
  1807. name: "Back",
  1808. image: {
  1809. source: "./media/characters/fen/back.svg",
  1810. },
  1811. info: {
  1812. description: {
  1813. mode: "append",
  1814. text: "\n\nHe is not currently looking at you."
  1815. }
  1816. }
  1817. },
  1818. full: {
  1819. height: math.unit(1.34, "meter"),
  1820. weight: math.unit(225, "kg"),
  1821. name: "Full",
  1822. image: {
  1823. source: "./media/characters/fen/full.svg"
  1824. },
  1825. info: {
  1826. description: {
  1827. mode: "append",
  1828. text: "\n\nMunch."
  1829. }
  1830. }
  1831. },
  1832. kneeling: {
  1833. height: math.unit(5.4, "feet"),
  1834. weight: math.unit(124.738, "kg"),
  1835. name: "Kneeling",
  1836. image: {
  1837. source: "./media/characters/fen/kneeling.svg",
  1838. extra: 563 / 507
  1839. }
  1840. },
  1841. goo: {
  1842. height: math.unit(2.8, "feet"),
  1843. weight: math.unit(125, "kg"),
  1844. capacity: math.unit(1, "people"),
  1845. name: "Goo",
  1846. image: {
  1847. source: "./media/characters/fen/goo.svg",
  1848. bottom: 116 / 613
  1849. }
  1850. },
  1851. lounging: {
  1852. height: math.unit(6.5, "feet"),
  1853. weight: math.unit(125, "kg"),
  1854. name: "Lounging",
  1855. image: {
  1856. source: "./media/characters/fen/lounging.svg"
  1857. }
  1858. },
  1859. },
  1860. [
  1861. {
  1862. name: "Normal",
  1863. height: math.unit(2.2428, "meter")
  1864. },
  1865. {
  1866. name: "Big",
  1867. height: math.unit(12, "feet")
  1868. },
  1869. {
  1870. name: "Minimacro",
  1871. height: math.unit(40, "feet"),
  1872. default: true,
  1873. info: {
  1874. description: {
  1875. mode: "append",
  1876. text: "\n\nTOO DAMN BIG"
  1877. }
  1878. }
  1879. },
  1880. {
  1881. name: "Macro",
  1882. height: math.unit(100, "feet"),
  1883. info: {
  1884. description: {
  1885. mode: "append",
  1886. text: "\n\nTOO DAMN BIG"
  1887. }
  1888. }
  1889. },
  1890. {
  1891. name: "Macro+",
  1892. height: math.unit(300, "feet")
  1893. },
  1894. {
  1895. name: "Megamacro",
  1896. height: math.unit(2, "miles")
  1897. }
  1898. ]
  1899. ))
  1900. characterMakers.push(() => makeCharacter(
  1901. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1902. {
  1903. front: {
  1904. height: math.unit(183, "cm"),
  1905. weight: math.unit(80, "kg"),
  1906. name: "Front",
  1907. image: {
  1908. source: "./media/characters/sofia-fluttertail/front.svg",
  1909. bottom: 0.01,
  1910. extra: 2154 / 2081
  1911. }
  1912. },
  1913. frontAlt: {
  1914. height: math.unit(183, "cm"),
  1915. weight: math.unit(80, "kg"),
  1916. name: "Front (alt)",
  1917. image: {
  1918. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1919. }
  1920. },
  1921. back: {
  1922. height: math.unit(183, "cm"),
  1923. weight: math.unit(80, "kg"),
  1924. name: "Back",
  1925. image: {
  1926. source: "./media/characters/sofia-fluttertail/back.svg"
  1927. }
  1928. },
  1929. kneeling: {
  1930. height: math.unit(125, "cm"),
  1931. weight: math.unit(80, "kg"),
  1932. name: "Kneeling",
  1933. image: {
  1934. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1935. extra: 1033 / 977,
  1936. bottom: 23.7 / 1057
  1937. }
  1938. },
  1939. maw: {
  1940. height: math.unit(183 / 5, "cm"),
  1941. name: "Maw",
  1942. image: {
  1943. source: "./media/characters/sofia-fluttertail/maw.svg"
  1944. }
  1945. },
  1946. mawcloseup: {
  1947. height: math.unit(183 / 5 * 0.41, "cm"),
  1948. name: "Maw (Closeup)",
  1949. image: {
  1950. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1951. }
  1952. },
  1953. paws: {
  1954. height: math.unit(1.17, "feet"),
  1955. name: "Paws",
  1956. image: {
  1957. source: "./media/characters/sofia-fluttertail/paws.svg",
  1958. extra: 851 / 851,
  1959. bottom: 17 / 868
  1960. }
  1961. },
  1962. },
  1963. [
  1964. {
  1965. name: "Normal",
  1966. height: math.unit(1.83, "meter")
  1967. },
  1968. {
  1969. name: "Size Thief",
  1970. height: math.unit(18, "feet")
  1971. },
  1972. {
  1973. name: "50 Foot Collie",
  1974. height: math.unit(50, "feet")
  1975. },
  1976. {
  1977. name: "Macro",
  1978. height: math.unit(96, "feet"),
  1979. default: true
  1980. },
  1981. {
  1982. name: "Megamerger",
  1983. height: math.unit(650, "feet")
  1984. },
  1985. ]
  1986. ))
  1987. characterMakers.push(() => makeCharacter(
  1988. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1989. {
  1990. front: {
  1991. height: math.unit(7, "feet"),
  1992. weight: math.unit(100, "kg"),
  1993. name: "Front",
  1994. image: {
  1995. source: "./media/characters/march/front.svg",
  1996. extra: 1992/1851,
  1997. bottom: 39/2031
  1998. }
  1999. },
  2000. foot: {
  2001. height: math.unit(0.9, "feet"),
  2002. name: "Foot",
  2003. image: {
  2004. source: "./media/characters/march/foot.svg"
  2005. }
  2006. },
  2007. },
  2008. [
  2009. {
  2010. name: "Normal",
  2011. height: math.unit(7.9, "feet")
  2012. },
  2013. {
  2014. name: "Macro",
  2015. height: math.unit(220, "meters")
  2016. },
  2017. {
  2018. name: "Megamacro",
  2019. height: math.unit(2.98, "km"),
  2020. default: true
  2021. },
  2022. {
  2023. name: "Gigamacro",
  2024. height: math.unit(15963, "km")
  2025. },
  2026. {
  2027. name: "Teramacro",
  2028. height: math.unit(2980000000, "km")
  2029. },
  2030. {
  2031. name: "Examacro",
  2032. height: math.unit(250, "parsecs")
  2033. },
  2034. ]
  2035. ))
  2036. characterMakers.push(() => makeCharacter(
  2037. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2038. {
  2039. front: {
  2040. height: math.unit(6, "feet"),
  2041. weight: math.unit(60, "kg"),
  2042. name: "Front",
  2043. image: {
  2044. source: "./media/characters/noir/front.svg",
  2045. extra: 1,
  2046. bottom: 0.032
  2047. }
  2048. },
  2049. },
  2050. [
  2051. {
  2052. name: "Normal",
  2053. height: math.unit(6.6, "feet")
  2054. },
  2055. {
  2056. name: "Macro",
  2057. height: math.unit(500, "feet")
  2058. },
  2059. {
  2060. name: "Megamacro",
  2061. height: math.unit(2.5, "km"),
  2062. default: true
  2063. },
  2064. {
  2065. name: "Gigamacro",
  2066. height: math.unit(22500, "km")
  2067. },
  2068. {
  2069. name: "Teramacro",
  2070. height: math.unit(2500000000, "km")
  2071. },
  2072. {
  2073. name: "Examacro",
  2074. height: math.unit(200, "parsecs")
  2075. },
  2076. ]
  2077. ))
  2078. characterMakers.push(() => makeCharacter(
  2079. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2080. {
  2081. front: {
  2082. height: math.unit(7, "feet"),
  2083. weight: math.unit(100, "kg"),
  2084. name: "Front",
  2085. image: {
  2086. source: "./media/characters/okuri/front.svg",
  2087. extra: 1,
  2088. bottom: 0.037
  2089. }
  2090. },
  2091. back: {
  2092. height: math.unit(7, "feet"),
  2093. weight: math.unit(100, "kg"),
  2094. name: "Back",
  2095. image: {
  2096. source: "./media/characters/okuri/back.svg",
  2097. extra: 1,
  2098. bottom: 0.007
  2099. }
  2100. },
  2101. },
  2102. [
  2103. {
  2104. name: "Megamacro",
  2105. height: math.unit(100, "miles"),
  2106. default: true
  2107. },
  2108. ]
  2109. ))
  2110. characterMakers.push(() => makeCharacter(
  2111. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2112. {
  2113. front: {
  2114. height: math.unit(7, "feet"),
  2115. weight: math.unit(100, "kg"),
  2116. name: "Front",
  2117. image: {
  2118. source: "./media/characters/manny/front.svg",
  2119. extra: 1,
  2120. bottom: 0.06
  2121. }
  2122. },
  2123. back: {
  2124. height: math.unit(7, "feet"),
  2125. weight: math.unit(100, "kg"),
  2126. name: "Back",
  2127. image: {
  2128. source: "./media/characters/manny/back.svg",
  2129. extra: 1,
  2130. bottom: 0.014
  2131. }
  2132. },
  2133. },
  2134. [
  2135. {
  2136. name: "Normal",
  2137. height: math.unit(7, "feet"),
  2138. },
  2139. {
  2140. name: "Macro",
  2141. height: math.unit(78, "feet"),
  2142. default: true
  2143. },
  2144. {
  2145. name: "Macro+",
  2146. height: math.unit(300, "meters")
  2147. },
  2148. {
  2149. name: "Macro++",
  2150. height: math.unit(2400, "meters")
  2151. },
  2152. {
  2153. name: "Megamacro",
  2154. height: math.unit(5167, "meters")
  2155. },
  2156. {
  2157. name: "Gigamacro",
  2158. height: math.unit(41769, "miles")
  2159. },
  2160. ]
  2161. ))
  2162. characterMakers.push(() => makeCharacter(
  2163. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2164. {
  2165. front: {
  2166. height: math.unit(7, "feet"),
  2167. weight: math.unit(100, "kg"),
  2168. name: "Front",
  2169. image: {
  2170. source: "./media/characters/adake/front-1.svg"
  2171. }
  2172. },
  2173. frontAlt: {
  2174. height: math.unit(7, "feet"),
  2175. weight: math.unit(100, "kg"),
  2176. name: "Front (Alt)",
  2177. image: {
  2178. source: "./media/characters/adake/front-2.svg",
  2179. extra: 1,
  2180. bottom: 0.01
  2181. }
  2182. },
  2183. back: {
  2184. height: math.unit(7, "feet"),
  2185. weight: math.unit(100, "kg"),
  2186. name: "Back",
  2187. image: {
  2188. source: "./media/characters/adake/back.svg",
  2189. }
  2190. },
  2191. kneel: {
  2192. height: math.unit(5.385, "feet"),
  2193. weight: math.unit(100, "kg"),
  2194. name: "Kneeling",
  2195. image: {
  2196. source: "./media/characters/adake/kneel.svg",
  2197. bottom: 0.052
  2198. }
  2199. },
  2200. },
  2201. [
  2202. {
  2203. name: "Normal",
  2204. height: math.unit(7, "feet"),
  2205. },
  2206. {
  2207. name: "Macro",
  2208. height: math.unit(78, "feet"),
  2209. default: true
  2210. },
  2211. {
  2212. name: "Macro+",
  2213. height: math.unit(300, "meters")
  2214. },
  2215. {
  2216. name: "Macro++",
  2217. height: math.unit(2400, "meters")
  2218. },
  2219. {
  2220. name: "Megamacro",
  2221. height: math.unit(5167, "meters")
  2222. },
  2223. {
  2224. name: "Gigamacro",
  2225. height: math.unit(41769, "miles")
  2226. },
  2227. ]
  2228. ))
  2229. characterMakers.push(() => makeCharacter(
  2230. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2231. {
  2232. front: {
  2233. height: math.unit(1.65, "meters"),
  2234. weight: math.unit(50, "kg"),
  2235. name: "Front",
  2236. image: {
  2237. source: "./media/characters/elijah/front.svg",
  2238. extra: 858 / 830,
  2239. bottom: 95.5 / 953.8559
  2240. }
  2241. },
  2242. back: {
  2243. height: math.unit(1.65, "meters"),
  2244. weight: math.unit(50, "kg"),
  2245. name: "Back",
  2246. image: {
  2247. source: "./media/characters/elijah/back.svg",
  2248. extra: 895 / 850,
  2249. bottom: 5.3 / 897.956
  2250. }
  2251. },
  2252. frontNsfw: {
  2253. height: math.unit(1.65, "meters"),
  2254. weight: math.unit(50, "kg"),
  2255. name: "Front (NSFW)",
  2256. image: {
  2257. source: "./media/characters/elijah/front-nsfw.svg",
  2258. extra: 858 / 830,
  2259. bottom: 95.5 / 953.8559
  2260. }
  2261. },
  2262. backNsfw: {
  2263. height: math.unit(1.65, "meters"),
  2264. weight: math.unit(50, "kg"),
  2265. name: "Back (NSFW)",
  2266. image: {
  2267. source: "./media/characters/elijah/back-nsfw.svg",
  2268. extra: 895 / 850,
  2269. bottom: 5.3 / 897.956
  2270. }
  2271. },
  2272. dick: {
  2273. height: math.unit(1, "feet"),
  2274. name: "Dick",
  2275. image: {
  2276. source: "./media/characters/elijah/dick.svg"
  2277. }
  2278. },
  2279. beakOpen: {
  2280. height: math.unit(1.25, "feet"),
  2281. name: "Beak (Open)",
  2282. image: {
  2283. source: "./media/characters/elijah/beak-open.svg"
  2284. }
  2285. },
  2286. beakShut: {
  2287. height: math.unit(1.25, "feet"),
  2288. name: "Beak (Shut)",
  2289. image: {
  2290. source: "./media/characters/elijah/beak-shut.svg"
  2291. }
  2292. },
  2293. footFlexing: {
  2294. height: math.unit(1.61, "feet"),
  2295. name: "Foot (Flexing)",
  2296. image: {
  2297. source: "./media/characters/elijah/foot-flexing.svg"
  2298. }
  2299. },
  2300. footStepping: {
  2301. height: math.unit(1.44, "feet"),
  2302. name: "Foot (Stepping)",
  2303. image: {
  2304. source: "./media/characters/elijah/foot-stepping.svg"
  2305. }
  2306. },
  2307. plantigradeLeg: {
  2308. height: math.unit(2.34, "feet"),
  2309. name: "Plantigrade Leg",
  2310. image: {
  2311. source: "./media/characters/elijah/plantigrade-leg.svg"
  2312. }
  2313. },
  2314. plantigradeFootLeft: {
  2315. height: math.unit(0.9, "feet"),
  2316. name: "Plantigrade Foot (Left)",
  2317. image: {
  2318. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2319. }
  2320. },
  2321. plantigradeFootRight: {
  2322. height: math.unit(0.9, "feet"),
  2323. name: "Plantigrade Foot (Right)",
  2324. image: {
  2325. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2326. }
  2327. },
  2328. },
  2329. [
  2330. {
  2331. name: "Normal",
  2332. height: math.unit(1.65, "meters")
  2333. },
  2334. {
  2335. name: "Macro",
  2336. height: math.unit(55, "meters"),
  2337. default: true
  2338. },
  2339. {
  2340. name: "Macro+",
  2341. height: math.unit(105, "meters")
  2342. },
  2343. ]
  2344. ))
  2345. characterMakers.push(() => makeCharacter(
  2346. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2347. {
  2348. front: {
  2349. height: math.unit(11, "feet"),
  2350. weight: math.unit(320, "kg"),
  2351. name: "Front",
  2352. image: {
  2353. source: "./media/characters/rai/front.svg",
  2354. extra: 1802/1696,
  2355. bottom: 68/1870
  2356. }
  2357. },
  2358. frontDressed: {
  2359. height: math.unit(11, "feet"),
  2360. weight: math.unit(320, "kg"),
  2361. name: "Front (Dressed)",
  2362. image: {
  2363. source: "./media/characters/rai/front-dressed.svg",
  2364. extra: 1802/1696,
  2365. bottom: 68/1870
  2366. }
  2367. },
  2368. side: {
  2369. height: math.unit(11, "feet"),
  2370. weight: math.unit(320, "kg"),
  2371. name: "Side",
  2372. image: {
  2373. source: "./media/characters/rai/side.svg",
  2374. extra: 1789/1710,
  2375. bottom: 115/1904
  2376. }
  2377. },
  2378. back: {
  2379. height: math.unit(11, "feet"),
  2380. weight: math.unit(320, "kg"),
  2381. name: "Back",
  2382. image: {
  2383. source: "./media/characters/rai/back.svg",
  2384. extra: 1770/1707,
  2385. bottom: 28/1798
  2386. }
  2387. },
  2388. feral: {
  2389. height: math.unit(11, "feet"),
  2390. weight: math.unit(640, "kg"),
  2391. name: "Feral",
  2392. image: {
  2393. source: "./media/characters/rai/feral.svg",
  2394. extra: 1035/642,
  2395. bottom: 86/1121
  2396. }
  2397. },
  2398. dragon: {
  2399. height: math.unit(23, "feet"),
  2400. weight: math.unit(50000, "lb"),
  2401. name: "Dragon",
  2402. image: {
  2403. source: "./media/characters/rai/dragon.svg",
  2404. extra: 2498 / 2030,
  2405. bottom: 85.2 / 2584
  2406. }
  2407. },
  2408. maw: {
  2409. height: math.unit(6 / 3.81416, "feet"),
  2410. name: "Maw",
  2411. image: {
  2412. source: "./media/characters/rai/maw.svg"
  2413. }
  2414. },
  2415. },
  2416. [
  2417. {
  2418. name: "Normal",
  2419. height: math.unit(11, "feet")
  2420. },
  2421. {
  2422. name: "Macro",
  2423. height: math.unit(302, "feet"),
  2424. default: true
  2425. },
  2426. ]
  2427. ))
  2428. characterMakers.push(() => makeCharacter(
  2429. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2430. {
  2431. frontDressed: {
  2432. height: math.unit(216, "feet"),
  2433. weight: math.unit(7000000, "lb"),
  2434. name: "Front (Dressed)",
  2435. image: {
  2436. source: "./media/characters/jazzy/front-dressed.svg",
  2437. extra: 2738 / 2651,
  2438. bottom: 41.8 / 2786
  2439. }
  2440. },
  2441. backDressed: {
  2442. height: math.unit(216, "feet"),
  2443. weight: math.unit(7000000, "lb"),
  2444. name: "Back (Dressed)",
  2445. image: {
  2446. source: "./media/characters/jazzy/back-dressed.svg",
  2447. extra: 2775 / 2673,
  2448. bottom: 36.8 / 2817
  2449. }
  2450. },
  2451. front: {
  2452. height: math.unit(216, "feet"),
  2453. weight: math.unit(7000000, "lb"),
  2454. name: "Front",
  2455. image: {
  2456. source: "./media/characters/jazzy/front.svg",
  2457. extra: 2738 / 2651,
  2458. bottom: 41.8 / 2786
  2459. }
  2460. },
  2461. back: {
  2462. height: math.unit(216, "feet"),
  2463. weight: math.unit(7000000, "lb"),
  2464. name: "Back",
  2465. image: {
  2466. source: "./media/characters/jazzy/back.svg",
  2467. extra: 2775 / 2673,
  2468. bottom: 36.8 / 2817
  2469. }
  2470. },
  2471. maw: {
  2472. height: math.unit(20, "feet"),
  2473. name: "Maw",
  2474. image: {
  2475. source: "./media/characters/jazzy/maw.svg"
  2476. }
  2477. },
  2478. paws: {
  2479. height: math.unit(27.5, "feet"),
  2480. name: "Paws",
  2481. image: {
  2482. source: "./media/characters/jazzy/paws.svg"
  2483. }
  2484. },
  2485. eye: {
  2486. height: math.unit(4.4, "feet"),
  2487. name: "Eye",
  2488. image: {
  2489. source: "./media/characters/jazzy/eye.svg"
  2490. }
  2491. },
  2492. droneOffense: {
  2493. height: math.unit(9.5, "inches"),
  2494. name: "Drone (Offense)",
  2495. image: {
  2496. source: "./media/characters/jazzy/drone-offense.svg"
  2497. }
  2498. },
  2499. droneRecon: {
  2500. height: math.unit(9.5, "inches"),
  2501. name: "Drone (Recon)",
  2502. image: {
  2503. source: "./media/characters/jazzy/drone-recon.svg"
  2504. }
  2505. },
  2506. droneDefense: {
  2507. height: math.unit(9.5, "inches"),
  2508. name: "Drone (Defense)",
  2509. image: {
  2510. source: "./media/characters/jazzy/drone-defense.svg"
  2511. }
  2512. },
  2513. },
  2514. [
  2515. {
  2516. name: "Macro",
  2517. height: math.unit(216, "feet"),
  2518. default: true
  2519. },
  2520. ]
  2521. ))
  2522. characterMakers.push(() => makeCharacter(
  2523. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2524. {
  2525. front: {
  2526. height: math.unit(9 + 6/12, "feet"),
  2527. weight: math.unit(700, "lb"),
  2528. name: "Front",
  2529. image: {
  2530. source: "./media/characters/flamm/front.svg",
  2531. extra: 1751/1632,
  2532. bottom: 46/1797
  2533. }
  2534. },
  2535. buff: {
  2536. height: math.unit(9 + 6/12, "feet"),
  2537. weight: math.unit(950, "lb"),
  2538. name: "Buff",
  2539. image: {
  2540. source: "./media/characters/flamm/buff.svg",
  2541. extra: 3018/2874,
  2542. bottom: 221/3239
  2543. }
  2544. },
  2545. },
  2546. [
  2547. {
  2548. name: "Normal",
  2549. height: math.unit(9.5, "feet")
  2550. },
  2551. {
  2552. name: "Macro",
  2553. height: math.unit(200, "feet"),
  2554. default: true
  2555. },
  2556. ]
  2557. ))
  2558. characterMakers.push(() => makeCharacter(
  2559. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2560. {
  2561. front: {
  2562. height: math.unit(5 + 3/12, "feet"),
  2563. weight: math.unit(60, "kg"),
  2564. name: "Front",
  2565. image: {
  2566. source: "./media/characters/zephiro/front.svg",
  2567. extra: 2309 / 2162,
  2568. bottom: 0.069
  2569. }
  2570. },
  2571. side: {
  2572. height: math.unit(5 + 3/12, "feet"),
  2573. weight: math.unit(60, "kg"),
  2574. name: "Side",
  2575. image: {
  2576. source: "./media/characters/zephiro/side.svg",
  2577. extra: 2403 / 2279,
  2578. bottom: 0.015
  2579. }
  2580. },
  2581. back: {
  2582. height: math.unit(5 + 3/12, "feet"),
  2583. weight: math.unit(60, "kg"),
  2584. name: "Back",
  2585. image: {
  2586. source: "./media/characters/zephiro/back.svg",
  2587. extra: 2373 / 2244,
  2588. bottom: 0.013
  2589. }
  2590. },
  2591. hand: {
  2592. height: math.unit(0.68, "feet"),
  2593. name: "Hand",
  2594. image: {
  2595. source: "./media/characters/zephiro/hand.svg"
  2596. }
  2597. },
  2598. paw: {
  2599. height: math.unit(1, "feet"),
  2600. name: "Paw",
  2601. image: {
  2602. source: "./media/characters/zephiro/paw.svg"
  2603. }
  2604. },
  2605. beans: {
  2606. height: math.unit(0.93, "feet"),
  2607. name: "Beans",
  2608. image: {
  2609. source: "./media/characters/zephiro/beans.svg"
  2610. }
  2611. },
  2612. },
  2613. [
  2614. {
  2615. name: "Micro",
  2616. height: math.unit(3, "inches")
  2617. },
  2618. {
  2619. name: "Normal",
  2620. height: math.unit(5 + 3 / 12, "feet"),
  2621. default: true
  2622. },
  2623. {
  2624. name: "Macro",
  2625. height: math.unit(118, "feet")
  2626. },
  2627. ]
  2628. ))
  2629. characterMakers.push(() => makeCharacter(
  2630. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2631. {
  2632. front: {
  2633. height: math.unit(5, "feet"),
  2634. weight: math.unit(90, "kg"),
  2635. name: "Front",
  2636. image: {
  2637. source: "./media/characters/fory/front.svg",
  2638. extra: 2862 / 2674,
  2639. bottom: 180 / 3043.8
  2640. }
  2641. },
  2642. back: {
  2643. height: math.unit(5, "feet"),
  2644. weight: math.unit(90, "kg"),
  2645. name: "Back",
  2646. image: {
  2647. source: "./media/characters/fory/back.svg",
  2648. extra: 2962 / 2791,
  2649. bottom: 106 / 3071.8
  2650. }
  2651. },
  2652. foot: {
  2653. height: math.unit(2.14, "feet"),
  2654. name: "Foot",
  2655. image: {
  2656. source: "./media/characters/fory/foot.svg"
  2657. }
  2658. },
  2659. },
  2660. [
  2661. {
  2662. name: "Normal",
  2663. height: math.unit(5, "feet")
  2664. },
  2665. {
  2666. name: "Macro",
  2667. height: math.unit(50, "feet"),
  2668. default: true
  2669. },
  2670. {
  2671. name: "Megamacro",
  2672. height: math.unit(10, "miles")
  2673. },
  2674. {
  2675. name: "Gigamacro",
  2676. height: math.unit(5, "earths")
  2677. },
  2678. ]
  2679. ))
  2680. characterMakers.push(() => makeCharacter(
  2681. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2682. {
  2683. front: {
  2684. height: math.unit(7, "feet"),
  2685. weight: math.unit(90, "kg"),
  2686. name: "Front",
  2687. image: {
  2688. source: "./media/characters/kurrikage/front.svg",
  2689. extra: 1,
  2690. bottom: 0.035
  2691. }
  2692. },
  2693. back: {
  2694. height: math.unit(7, "feet"),
  2695. weight: math.unit(90, "lb"),
  2696. name: "Back",
  2697. image: {
  2698. source: "./media/characters/kurrikage/back.svg"
  2699. }
  2700. },
  2701. paw: {
  2702. height: math.unit(1.5, "feet"),
  2703. name: "Paw",
  2704. image: {
  2705. source: "./media/characters/kurrikage/paw.svg"
  2706. }
  2707. },
  2708. staff: {
  2709. height: math.unit(6.7, "feet"),
  2710. name: "Staff",
  2711. image: {
  2712. source: "./media/characters/kurrikage/staff.svg"
  2713. }
  2714. },
  2715. peek: {
  2716. height: math.unit(1.05, "feet"),
  2717. name: "Peeking",
  2718. image: {
  2719. source: "./media/characters/kurrikage/peek.svg",
  2720. bottom: 0.08
  2721. }
  2722. },
  2723. },
  2724. [
  2725. {
  2726. name: "Normal",
  2727. height: math.unit(12, "feet"),
  2728. default: true
  2729. },
  2730. {
  2731. name: "Big",
  2732. height: math.unit(20, "feet")
  2733. },
  2734. {
  2735. name: "Macro",
  2736. height: math.unit(500, "feet")
  2737. },
  2738. {
  2739. name: "Megamacro",
  2740. height: math.unit(20, "miles")
  2741. },
  2742. ]
  2743. ))
  2744. characterMakers.push(() => makeCharacter(
  2745. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2746. {
  2747. front: {
  2748. height: math.unit(6, "feet"),
  2749. weight: math.unit(75, "kg"),
  2750. name: "Front",
  2751. image: {
  2752. source: "./media/characters/shingo/front.svg",
  2753. extra: 1900/1825,
  2754. bottom: 82/1982
  2755. }
  2756. },
  2757. side: {
  2758. height: math.unit(6, "feet"),
  2759. weight: math.unit(75, "kg"),
  2760. name: "Side",
  2761. image: {
  2762. source: "./media/characters/shingo/side.svg",
  2763. extra: 1930/1865,
  2764. bottom: 16/1946
  2765. }
  2766. },
  2767. back: {
  2768. height: math.unit(6, "feet"),
  2769. weight: math.unit(75, "kg"),
  2770. name: "Back",
  2771. image: {
  2772. source: "./media/characters/shingo/back.svg",
  2773. extra: 1922/1852,
  2774. bottom: 16/1938
  2775. }
  2776. },
  2777. frontDressed: {
  2778. height: math.unit(6, "feet"),
  2779. weight: math.unit(150, "lb"),
  2780. name: "Front-dressed",
  2781. image: {
  2782. source: "./media/characters/shingo/front-dressed.svg",
  2783. extra: 1900/1825,
  2784. bottom: 82/1982
  2785. }
  2786. },
  2787. paw: {
  2788. height: math.unit(1.29, "feet"),
  2789. name: "Paw",
  2790. image: {
  2791. source: "./media/characters/shingo/paw.svg"
  2792. }
  2793. },
  2794. hand: {
  2795. height: math.unit(1.07, "feet"),
  2796. name: "Hand",
  2797. image: {
  2798. source: "./media/characters/shingo/hand.svg"
  2799. }
  2800. },
  2801. frontAlt: {
  2802. height: math.unit(6, "feet"),
  2803. weight: math.unit(75, "kg"),
  2804. name: "Front (Alt)",
  2805. image: {
  2806. source: "./media/characters/shingo/front-alt.svg",
  2807. extra: 3511 / 3338,
  2808. bottom: 0.005
  2809. }
  2810. },
  2811. frontAlt2: {
  2812. height: math.unit(6, "feet"),
  2813. weight: math.unit(75, "kg"),
  2814. name: "Front (Alt 2)",
  2815. image: {
  2816. source: "./media/characters/shingo/front-alt-2.svg",
  2817. extra: 706/681,
  2818. bottom: 11/717
  2819. }
  2820. },
  2821. pawAlt: {
  2822. height: math.unit(1, "feet"),
  2823. name: "Paw (Alt)",
  2824. image: {
  2825. source: "./media/characters/shingo/paw-alt.svg"
  2826. }
  2827. },
  2828. },
  2829. [
  2830. {
  2831. name: "Micro",
  2832. height: math.unit(4, "inches")
  2833. },
  2834. {
  2835. name: "Normal",
  2836. height: math.unit(6, "feet"),
  2837. default: true
  2838. },
  2839. {
  2840. name: "Macro",
  2841. height: math.unit(108, "feet")
  2842. },
  2843. {
  2844. name: "Macro+",
  2845. height: math.unit(1500, "feet")
  2846. },
  2847. ]
  2848. ))
  2849. characterMakers.push(() => makeCharacter(
  2850. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2851. {
  2852. side: {
  2853. height: math.unit(6, "feet"),
  2854. weight: math.unit(75, "kg"),
  2855. name: "Side",
  2856. image: {
  2857. source: "./media/characters/aigey/side.svg"
  2858. }
  2859. },
  2860. },
  2861. [
  2862. {
  2863. name: "Macro",
  2864. height: math.unit(200, "feet"),
  2865. default: true
  2866. },
  2867. {
  2868. name: "Megamacro",
  2869. height: math.unit(100, "miles")
  2870. },
  2871. ]
  2872. )
  2873. )
  2874. characterMakers.push(() => makeCharacter(
  2875. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2876. {
  2877. front: {
  2878. height: math.unit(5 + 5 / 12, "feet"),
  2879. weight: math.unit(75, "kg"),
  2880. name: "Front",
  2881. image: {
  2882. source: "./media/characters/natasha/front.svg",
  2883. extra: 859 / 824,
  2884. bottom: 23 / 879.6
  2885. }
  2886. },
  2887. frontNsfw: {
  2888. height: math.unit(5 + 5 / 12, "feet"),
  2889. weight: math.unit(75, "kg"),
  2890. name: "Front (NSFW)",
  2891. image: {
  2892. source: "./media/characters/natasha/front-nsfw.svg",
  2893. extra: 859 / 824,
  2894. bottom: 23 / 879.6
  2895. }
  2896. },
  2897. frontErect: {
  2898. height: math.unit(5 + 5 / 12, "feet"),
  2899. weight: math.unit(75, "kg"),
  2900. name: "Front (Erect)",
  2901. image: {
  2902. source: "./media/characters/natasha/front-erect.svg",
  2903. extra: 859 / 824,
  2904. bottom: 23 / 879.6
  2905. }
  2906. },
  2907. back: {
  2908. height: math.unit(5 + 5 / 12, "feet"),
  2909. weight: math.unit(75, "kg"),
  2910. name: "Back",
  2911. image: {
  2912. source: "./media/characters/natasha/back.svg",
  2913. extra: 887.9 / 852.6,
  2914. bottom: 9.7 / 896.4
  2915. }
  2916. },
  2917. backAlt: {
  2918. height: math.unit(5 + 5 / 12, "feet"),
  2919. weight: math.unit(75, "kg"),
  2920. name: "Back (Alt)",
  2921. image: {
  2922. source: "./media/characters/natasha/back-alt.svg",
  2923. extra: 1236.7 / 1192,
  2924. bottom: 22.3 / 1258.2
  2925. }
  2926. },
  2927. dick: {
  2928. height: math.unit(1.772, "feet"),
  2929. name: "Dick",
  2930. image: {
  2931. source: "./media/characters/natasha/dick.svg"
  2932. }
  2933. },
  2934. paw: {
  2935. height: math.unit(0.250, "meters"),
  2936. name: "Paw",
  2937. image: {
  2938. source: "./media/characters/natasha/paw.svg"
  2939. }
  2940. },
  2941. },
  2942. [
  2943. {
  2944. name: "Normal",
  2945. height: math.unit(5 + 5 / 12, "feet")
  2946. },
  2947. {
  2948. name: "Large",
  2949. height: math.unit(12, "feet")
  2950. },
  2951. {
  2952. name: "Macro",
  2953. height: math.unit(100, "feet"),
  2954. default: true
  2955. },
  2956. {
  2957. name: "Macro+",
  2958. height: math.unit(260, "feet")
  2959. },
  2960. {
  2961. name: "Macro++",
  2962. height: math.unit(1, "mile")
  2963. },
  2964. ]
  2965. ))
  2966. characterMakers.push(() => makeCharacter(
  2967. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2968. {
  2969. front: {
  2970. height: math.unit(6, "feet"),
  2971. weight: math.unit(75, "kg"),
  2972. name: "Front",
  2973. image: {
  2974. source: "./media/characters/malik/front.svg"
  2975. }
  2976. },
  2977. side: {
  2978. height: math.unit(6, "feet"),
  2979. weight: math.unit(75, "kg"),
  2980. name: "Side",
  2981. image: {
  2982. source: "./media/characters/malik/side.svg",
  2983. extra: 1.1539
  2984. }
  2985. },
  2986. back: {
  2987. height: math.unit(6, "feet"),
  2988. weight: math.unit(75, "kg"),
  2989. name: "Back",
  2990. image: {
  2991. source: "./media/characters/malik/back.svg"
  2992. }
  2993. },
  2994. },
  2995. [
  2996. {
  2997. name: "Macro",
  2998. height: math.unit(156, "feet"),
  2999. default: true
  3000. },
  3001. {
  3002. name: "Macro+",
  3003. height: math.unit(1188, "feet")
  3004. },
  3005. ]
  3006. ))
  3007. characterMakers.push(() => makeCharacter(
  3008. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3009. {
  3010. front: {
  3011. height: math.unit(6, "feet"),
  3012. weight: math.unit(75, "kg"),
  3013. name: "Front",
  3014. image: {
  3015. source: "./media/characters/sefer/front.svg",
  3016. extra: 848 / 659,
  3017. bottom: 28.3 / 876.442
  3018. }
  3019. },
  3020. back: {
  3021. height: math.unit(6, "feet"),
  3022. weight: math.unit(75, "kg"),
  3023. name: "Back",
  3024. image: {
  3025. source: "./media/characters/sefer/back.svg",
  3026. extra: 864 / 695,
  3027. bottom: 10 / 871
  3028. }
  3029. },
  3030. frontDressed: {
  3031. height: math.unit(6, "feet"),
  3032. weight: math.unit(75, "kg"),
  3033. name: "Front (Dressed)",
  3034. image: {
  3035. source: "./media/characters/sefer/front-dressed.svg",
  3036. extra: 839 / 653,
  3037. bottom: 37.6 / 878
  3038. }
  3039. },
  3040. },
  3041. [
  3042. {
  3043. name: "Normal",
  3044. height: math.unit(6, "feet"),
  3045. default: true
  3046. },
  3047. ]
  3048. ))
  3049. characterMakers.push(() => makeCharacter(
  3050. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3051. {
  3052. body: {
  3053. height: math.unit(2.2428, "meter"),
  3054. weight: math.unit(124.738, "kg"),
  3055. name: "Body",
  3056. image: {
  3057. extra: 1225 / 1050,
  3058. source: "./media/characters/north/front.svg"
  3059. }
  3060. }
  3061. },
  3062. [
  3063. {
  3064. name: "Micro",
  3065. height: math.unit(4, "inches")
  3066. },
  3067. {
  3068. name: "Macro",
  3069. height: math.unit(63, "meters")
  3070. },
  3071. {
  3072. name: "Megamacro",
  3073. height: math.unit(101, "miles"),
  3074. default: true
  3075. }
  3076. ]
  3077. ))
  3078. characterMakers.push(() => makeCharacter(
  3079. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3080. {
  3081. angled: {
  3082. height: math.unit(4, "meter"),
  3083. weight: math.unit(150, "kg"),
  3084. name: "Angled",
  3085. image: {
  3086. source: "./media/characters/talan/angled-sfw.svg",
  3087. bottom: 29 / 3734
  3088. }
  3089. },
  3090. angledNsfw: {
  3091. height: math.unit(4, "meter"),
  3092. weight: math.unit(150, "kg"),
  3093. name: "Angled (NSFW)",
  3094. image: {
  3095. source: "./media/characters/talan/angled-nsfw.svg",
  3096. bottom: 29 / 3734
  3097. }
  3098. },
  3099. frontNsfw: {
  3100. height: math.unit(4, "meter"),
  3101. weight: math.unit(150, "kg"),
  3102. name: "Front (NSFW)",
  3103. image: {
  3104. source: "./media/characters/talan/front-nsfw.svg",
  3105. bottom: 29 / 3734
  3106. }
  3107. },
  3108. sideNsfw: {
  3109. height: math.unit(4, "meter"),
  3110. weight: math.unit(150, "kg"),
  3111. name: "Side (NSFW)",
  3112. image: {
  3113. source: "./media/characters/talan/side-nsfw.svg",
  3114. bottom: 29 / 3734
  3115. }
  3116. },
  3117. back: {
  3118. height: math.unit(4, "meter"),
  3119. weight: math.unit(150, "kg"),
  3120. name: "Back",
  3121. image: {
  3122. source: "./media/characters/talan/back.svg"
  3123. }
  3124. },
  3125. dickBottom: {
  3126. height: math.unit(0.621, "meter"),
  3127. name: "Dick (Bottom)",
  3128. image: {
  3129. source: "./media/characters/talan/dick-bottom.svg"
  3130. }
  3131. },
  3132. dickTop: {
  3133. height: math.unit(0.621, "meter"),
  3134. name: "Dick (Top)",
  3135. image: {
  3136. source: "./media/characters/talan/dick-top.svg"
  3137. }
  3138. },
  3139. dickSide: {
  3140. height: math.unit(0.305, "meter"),
  3141. name: "Dick (Side)",
  3142. image: {
  3143. source: "./media/characters/talan/dick-side.svg"
  3144. }
  3145. },
  3146. dickFront: {
  3147. height: math.unit(0.305, "meter"),
  3148. name: "Dick (Front)",
  3149. image: {
  3150. source: "./media/characters/talan/dick-front.svg"
  3151. }
  3152. },
  3153. },
  3154. [
  3155. {
  3156. name: "Normal",
  3157. height: math.unit(4, "meters")
  3158. },
  3159. {
  3160. name: "Macro",
  3161. height: math.unit(100, "meters")
  3162. },
  3163. {
  3164. name: "Megamacro",
  3165. height: math.unit(2, "miles"),
  3166. default: true
  3167. },
  3168. {
  3169. name: "Gigamacro",
  3170. height: math.unit(5000, "miles")
  3171. },
  3172. {
  3173. name: "Teramacro",
  3174. height: math.unit(100, "parsecs")
  3175. }
  3176. ]
  3177. ))
  3178. characterMakers.push(() => makeCharacter(
  3179. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3180. {
  3181. front: {
  3182. height: math.unit(2, "meter"),
  3183. weight: math.unit(90, "kg"),
  3184. name: "Front",
  3185. image: {
  3186. source: "./media/characters/gael'rathus/front.svg"
  3187. }
  3188. },
  3189. frontAlt: {
  3190. height: math.unit(2, "meter"),
  3191. weight: math.unit(90, "kg"),
  3192. name: "Front (alt)",
  3193. image: {
  3194. source: "./media/characters/gael'rathus/front-alt.svg"
  3195. }
  3196. },
  3197. frontAlt2: {
  3198. height: math.unit(2, "meter"),
  3199. weight: math.unit(90, "kg"),
  3200. name: "Front (alt 2)",
  3201. image: {
  3202. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3203. }
  3204. }
  3205. },
  3206. [
  3207. {
  3208. name: "Normal",
  3209. height: math.unit(9, "feet"),
  3210. default: true
  3211. },
  3212. {
  3213. name: "Large",
  3214. height: math.unit(25, "feet")
  3215. },
  3216. {
  3217. name: "Macro",
  3218. height: math.unit(0.25, "miles")
  3219. },
  3220. {
  3221. name: "Megamacro",
  3222. height: math.unit(10, "miles")
  3223. }
  3224. ]
  3225. ))
  3226. characterMakers.push(() => makeCharacter(
  3227. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3228. {
  3229. side: {
  3230. height: math.unit(2, "meter"),
  3231. weight: math.unit(140, "kg"),
  3232. name: "Side",
  3233. image: {
  3234. source: "./media/characters/sosha/side.svg",
  3235. bottom: 0.042
  3236. }
  3237. },
  3238. },
  3239. [
  3240. {
  3241. name: "Normal",
  3242. height: math.unit(12, "feet"),
  3243. default: true
  3244. }
  3245. ]
  3246. ))
  3247. characterMakers.push(() => makeCharacter(
  3248. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3249. {
  3250. side: {
  3251. height: math.unit(5 + 5 / 12, "feet"),
  3252. weight: math.unit(170, "kg"),
  3253. name: "Side",
  3254. image: {
  3255. source: "./media/characters/runnola/side.svg",
  3256. extra: 741 / 448,
  3257. bottom: 0.05
  3258. }
  3259. },
  3260. },
  3261. [
  3262. {
  3263. name: "Small",
  3264. height: math.unit(3, "feet")
  3265. },
  3266. {
  3267. name: "Normal",
  3268. height: math.unit(5 + 5 / 12, "feet"),
  3269. default: true
  3270. },
  3271. {
  3272. name: "Big",
  3273. height: math.unit(10, "feet")
  3274. },
  3275. ]
  3276. ))
  3277. characterMakers.push(() => makeCharacter(
  3278. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3279. {
  3280. front: {
  3281. height: math.unit(2, "meter"),
  3282. weight: math.unit(50, "kg"),
  3283. name: "Front",
  3284. image: {
  3285. source: "./media/characters/kurribird/front.svg",
  3286. bottom: 0.015
  3287. }
  3288. },
  3289. frontAlt: {
  3290. height: math.unit(1.5, "meter"),
  3291. weight: math.unit(50, "kg"),
  3292. name: "Front (Alt)",
  3293. image: {
  3294. source: "./media/characters/kurribird/front-alt.svg",
  3295. extra: 1.45
  3296. }
  3297. },
  3298. },
  3299. [
  3300. {
  3301. name: "Normal",
  3302. height: math.unit(7, "feet")
  3303. },
  3304. {
  3305. name: "Big",
  3306. height: math.unit(12, "feet"),
  3307. default: true
  3308. },
  3309. {
  3310. name: "Macro",
  3311. height: math.unit(1500, "feet")
  3312. },
  3313. {
  3314. name: "Megamacro",
  3315. height: math.unit(2, "miles")
  3316. }
  3317. ]
  3318. ))
  3319. characterMakers.push(() => makeCharacter(
  3320. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3321. {
  3322. front: {
  3323. height: math.unit(2, "meter"),
  3324. weight: math.unit(80, "kg"),
  3325. name: "Front",
  3326. image: {
  3327. source: "./media/characters/elbial/front.svg",
  3328. extra: 1643 / 1556,
  3329. bottom: 60.2 / 1696
  3330. }
  3331. },
  3332. side: {
  3333. height: math.unit(2, "meter"),
  3334. weight: math.unit(80, "kg"),
  3335. name: "Side",
  3336. image: {
  3337. source: "./media/characters/elbial/side.svg",
  3338. extra: 1630 / 1565,
  3339. bottom: 71.5 / 1697
  3340. }
  3341. },
  3342. back: {
  3343. height: math.unit(2, "meter"),
  3344. weight: math.unit(80, "kg"),
  3345. name: "Back",
  3346. image: {
  3347. source: "./media/characters/elbial/back.svg",
  3348. extra: 1668 / 1595,
  3349. bottom: 5.6 / 1672
  3350. }
  3351. },
  3352. frontDressed: {
  3353. height: math.unit(2, "meter"),
  3354. weight: math.unit(80, "kg"),
  3355. name: "Front (Dressed)",
  3356. image: {
  3357. source: "./media/characters/elbial/front-dressed.svg",
  3358. extra: 1653 / 1584,
  3359. bottom: 57 / 1708
  3360. }
  3361. },
  3362. genitals: {
  3363. height: math.unit(2 / 3.367, "meter"),
  3364. name: "Genitals",
  3365. image: {
  3366. source: "./media/characters/elbial/genitals.svg"
  3367. }
  3368. },
  3369. },
  3370. [
  3371. {
  3372. name: "Large",
  3373. height: math.unit(100, "feet")
  3374. },
  3375. {
  3376. name: "Macro",
  3377. height: math.unit(500, "feet"),
  3378. default: true
  3379. },
  3380. {
  3381. name: "Megamacro",
  3382. height: math.unit(10, "miles")
  3383. },
  3384. {
  3385. name: "Gigamacro",
  3386. height: math.unit(25000, "miles")
  3387. },
  3388. {
  3389. name: "Full-Size",
  3390. height: math.unit(8000000, "gigaparsecs")
  3391. }
  3392. ]
  3393. ))
  3394. characterMakers.push(() => makeCharacter(
  3395. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3396. {
  3397. front: {
  3398. height: math.unit(2, "meter"),
  3399. weight: math.unit(60, "kg"),
  3400. name: "Front",
  3401. image: {
  3402. source: "./media/characters/noah/front.svg"
  3403. }
  3404. },
  3405. talons: {
  3406. height: math.unit(0.315, "meter"),
  3407. name: "Talons",
  3408. image: {
  3409. source: "./media/characters/noah/talons.svg"
  3410. }
  3411. }
  3412. },
  3413. [
  3414. {
  3415. name: "Large",
  3416. height: math.unit(50, "feet")
  3417. },
  3418. {
  3419. name: "Macro",
  3420. height: math.unit(750, "feet"),
  3421. default: true
  3422. },
  3423. {
  3424. name: "Megamacro",
  3425. height: math.unit(50, "miles")
  3426. },
  3427. {
  3428. name: "Gigamacro",
  3429. height: math.unit(100000, "miles")
  3430. },
  3431. {
  3432. name: "Full-Size",
  3433. height: math.unit(3000000000, "miles")
  3434. }
  3435. ]
  3436. ))
  3437. characterMakers.push(() => makeCharacter(
  3438. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3439. {
  3440. front: {
  3441. height: math.unit(2, "meter"),
  3442. weight: math.unit(80, "kg"),
  3443. name: "Front",
  3444. image: {
  3445. source: "./media/characters/natalya/front.svg"
  3446. }
  3447. },
  3448. back: {
  3449. height: math.unit(2, "meter"),
  3450. weight: math.unit(80, "kg"),
  3451. name: "Back",
  3452. image: {
  3453. source: "./media/characters/natalya/back.svg"
  3454. }
  3455. }
  3456. },
  3457. [
  3458. {
  3459. name: "Normal",
  3460. height: math.unit(150, "feet"),
  3461. default: true
  3462. },
  3463. {
  3464. name: "Megamacro",
  3465. height: math.unit(5, "miles")
  3466. },
  3467. {
  3468. name: "Full-Size",
  3469. height: math.unit(600, "kiloparsecs")
  3470. }
  3471. ]
  3472. ))
  3473. characterMakers.push(() => makeCharacter(
  3474. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3475. {
  3476. front: {
  3477. height: math.unit(2, "meter"),
  3478. weight: math.unit(50, "kg"),
  3479. name: "Front",
  3480. image: {
  3481. source: "./media/characters/erestrebah/front.svg",
  3482. extra: 208 / 193,
  3483. bottom: 0.055
  3484. }
  3485. },
  3486. back: {
  3487. height: math.unit(2, "meter"),
  3488. weight: math.unit(50, "kg"),
  3489. name: "Back",
  3490. image: {
  3491. source: "./media/characters/erestrebah/back.svg",
  3492. extra: 1.3
  3493. }
  3494. }
  3495. },
  3496. [
  3497. {
  3498. name: "Normal",
  3499. height: math.unit(10, "feet")
  3500. },
  3501. {
  3502. name: "Large",
  3503. height: math.unit(50, "feet"),
  3504. default: true
  3505. },
  3506. {
  3507. name: "Macro",
  3508. height: math.unit(300, "feet")
  3509. },
  3510. {
  3511. name: "Macro+",
  3512. height: math.unit(750, "feet")
  3513. },
  3514. {
  3515. name: "Megamacro",
  3516. height: math.unit(3, "miles")
  3517. }
  3518. ]
  3519. ))
  3520. characterMakers.push(() => makeCharacter(
  3521. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3522. {
  3523. front: {
  3524. height: math.unit(2, "meter"),
  3525. weight: math.unit(80, "kg"),
  3526. name: "Front",
  3527. image: {
  3528. source: "./media/characters/jennifer/front.svg",
  3529. bottom: 0.11,
  3530. extra: 1.16
  3531. }
  3532. },
  3533. frontAlt: {
  3534. height: math.unit(2, "meter"),
  3535. weight: math.unit(80, "kg"),
  3536. name: "Front (Alt)",
  3537. image: {
  3538. source: "./media/characters/jennifer/front-alt.svg"
  3539. }
  3540. }
  3541. },
  3542. [
  3543. {
  3544. name: "Canon Height",
  3545. height: math.unit(120, "feet"),
  3546. default: true
  3547. },
  3548. {
  3549. name: "Macro+",
  3550. height: math.unit(300, "feet")
  3551. },
  3552. {
  3553. name: "Megamacro",
  3554. height: math.unit(20000, "feet")
  3555. }
  3556. ]
  3557. ))
  3558. characterMakers.push(() => makeCharacter(
  3559. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3560. {
  3561. front: {
  3562. height: math.unit(2, "meter"),
  3563. weight: math.unit(50, "kg"),
  3564. name: "Front",
  3565. image: {
  3566. source: "./media/characters/kalista/front.svg",
  3567. extra: 1947 / 1700,
  3568. bottom: 76.6 / 1412.98
  3569. }
  3570. },
  3571. back: {
  3572. height: math.unit(2, "meter"),
  3573. weight: math.unit(50, "kg"),
  3574. name: "Back",
  3575. image: {
  3576. source: "./media/characters/kalista/back.svg",
  3577. extra: 1366 / 1156,
  3578. bottom: 33.9 / 1362.78
  3579. }
  3580. }
  3581. },
  3582. [
  3583. {
  3584. name: "Uncomfortably Small",
  3585. height: math.unit(10, "feet")
  3586. },
  3587. {
  3588. name: "Small",
  3589. height: math.unit(30, "feet")
  3590. },
  3591. {
  3592. name: "Macro",
  3593. height: math.unit(100, "feet"),
  3594. default: true
  3595. },
  3596. {
  3597. name: "Macro+",
  3598. height: math.unit(2000, "feet")
  3599. },
  3600. {
  3601. name: "True Form",
  3602. height: math.unit(8924, "miles")
  3603. }
  3604. ]
  3605. ))
  3606. characterMakers.push(() => makeCharacter(
  3607. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3608. {
  3609. front: {
  3610. height: math.unit(2, "meter"),
  3611. weight: math.unit(120, "kg"),
  3612. name: "Front",
  3613. image: {
  3614. source: "./media/characters/ggv/front.svg"
  3615. }
  3616. },
  3617. side: {
  3618. height: math.unit(2, "meter"),
  3619. weight: math.unit(120, "kg"),
  3620. name: "Side",
  3621. image: {
  3622. source: "./media/characters/ggv/side.svg"
  3623. }
  3624. }
  3625. },
  3626. [
  3627. {
  3628. name: "Extremely Puny",
  3629. height: math.unit(9 + 5 / 12, "feet")
  3630. },
  3631. {
  3632. name: "Horribly Small",
  3633. height: math.unit(47.7, "miles"),
  3634. default: true
  3635. },
  3636. {
  3637. name: "Reasonably Sized",
  3638. height: math.unit(25000, "parsecs")
  3639. },
  3640. {
  3641. name: "Slightly Uncompressed",
  3642. height: math.unit(7.77e31, "parsecs")
  3643. },
  3644. {
  3645. name: "Omniversal",
  3646. height: math.unit(1e300, "meters")
  3647. },
  3648. ]
  3649. ))
  3650. characterMakers.push(() => makeCharacter(
  3651. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3652. {
  3653. front: {
  3654. height: math.unit(2, "meter"),
  3655. weight: math.unit(75, "lb"),
  3656. name: "Front",
  3657. image: {
  3658. source: "./media/characters/napalm/front.svg"
  3659. }
  3660. },
  3661. back: {
  3662. height: math.unit(2, "meter"),
  3663. weight: math.unit(75, "lb"),
  3664. name: "Back",
  3665. image: {
  3666. source: "./media/characters/napalm/back.svg"
  3667. }
  3668. }
  3669. },
  3670. [
  3671. {
  3672. name: "Standard",
  3673. height: math.unit(55, "feet"),
  3674. default: true
  3675. }
  3676. ]
  3677. ))
  3678. characterMakers.push(() => makeCharacter(
  3679. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3680. {
  3681. front: {
  3682. height: math.unit(7 + 5 / 6, "feet"),
  3683. weight: math.unit(325, "lb"),
  3684. name: "Front",
  3685. image: {
  3686. source: "./media/characters/asana/front.svg",
  3687. extra: 1133 / 1060,
  3688. bottom: 15.2 / 1148.6
  3689. }
  3690. },
  3691. back: {
  3692. height: math.unit(7 + 5 / 6, "feet"),
  3693. weight: math.unit(325, "lb"),
  3694. name: "Back",
  3695. image: {
  3696. source: "./media/characters/asana/back.svg",
  3697. extra: 1114 / 1043,
  3698. bottom: 5 / 1120
  3699. }
  3700. },
  3701. dressedDark: {
  3702. height: math.unit(7 + 5 / 6, "feet"),
  3703. weight: math.unit(325, "lb"),
  3704. name: "Dressed (Dark)",
  3705. image: {
  3706. source: "./media/characters/asana/dressed-dark.svg",
  3707. extra: 1133 / 1060,
  3708. bottom: 15.2 / 1148.6
  3709. }
  3710. },
  3711. dressedLight: {
  3712. height: math.unit(7 + 5 / 6, "feet"),
  3713. weight: math.unit(325, "lb"),
  3714. name: "Dressed (Light)",
  3715. image: {
  3716. source: "./media/characters/asana/dressed-light.svg",
  3717. extra: 1133 / 1060,
  3718. bottom: 15.2 / 1148.6
  3719. }
  3720. },
  3721. },
  3722. [
  3723. {
  3724. name: "Standard",
  3725. height: math.unit(7 + 5 / 6, "feet"),
  3726. default: true
  3727. },
  3728. {
  3729. name: "Large",
  3730. height: math.unit(10, "meters")
  3731. },
  3732. {
  3733. name: "Macro",
  3734. height: math.unit(2500, "meters")
  3735. },
  3736. {
  3737. name: "Megamacro",
  3738. height: math.unit(5e6, "meters")
  3739. },
  3740. {
  3741. name: "Examacro",
  3742. height: math.unit(5e12, "lightyears")
  3743. },
  3744. {
  3745. name: "Max Size",
  3746. height: math.unit(1e31, "lightyears")
  3747. }
  3748. ]
  3749. ))
  3750. characterMakers.push(() => makeCharacter(
  3751. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3752. {
  3753. front: {
  3754. height: math.unit(2, "meter"),
  3755. weight: math.unit(60, "kg"),
  3756. name: "Front",
  3757. image: {
  3758. source: "./media/characters/ebony/front.svg",
  3759. bottom: 0.03,
  3760. extra: 1045 / 810 + 0.03
  3761. }
  3762. },
  3763. side: {
  3764. height: math.unit(2, "meter"),
  3765. weight: math.unit(60, "kg"),
  3766. name: "Side",
  3767. image: {
  3768. source: "./media/characters/ebony/side.svg",
  3769. bottom: 0.03,
  3770. extra: 1045 / 810 + 0.03
  3771. }
  3772. },
  3773. back: {
  3774. height: math.unit(2, "meter"),
  3775. weight: math.unit(60, "kg"),
  3776. name: "Back",
  3777. image: {
  3778. source: "./media/characters/ebony/back.svg",
  3779. bottom: 0.01,
  3780. extra: 1045 / 810 + 0.01
  3781. }
  3782. },
  3783. },
  3784. [
  3785. // TODO check why I did this lol
  3786. {
  3787. name: "Standard",
  3788. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3789. default: true
  3790. },
  3791. {
  3792. name: "Macro",
  3793. height: math.unit(200, "feet")
  3794. },
  3795. {
  3796. name: "Gigamacro",
  3797. height: math.unit(13000, "km")
  3798. }
  3799. ]
  3800. ))
  3801. characterMakers.push(() => makeCharacter(
  3802. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3803. {
  3804. front: {
  3805. height: math.unit(6, "feet"),
  3806. weight: math.unit(175, "lb"),
  3807. name: "Front",
  3808. image: {
  3809. source: "./media/characters/mountain/front.svg",
  3810. extra: 972 / 955,
  3811. bottom: 64 / 1036.6
  3812. }
  3813. },
  3814. back: {
  3815. height: math.unit(6, "feet"),
  3816. weight: math.unit(175, "lb"),
  3817. name: "Back",
  3818. image: {
  3819. source: "./media/characters/mountain/back.svg",
  3820. extra: 970 / 950,
  3821. bottom: 28.25 / 999
  3822. }
  3823. },
  3824. },
  3825. [
  3826. {
  3827. name: "Large",
  3828. height: math.unit(20, "meters")
  3829. },
  3830. {
  3831. name: "Macro",
  3832. height: math.unit(300, "meters")
  3833. },
  3834. {
  3835. name: "Gigamacro",
  3836. height: math.unit(10000, "km"),
  3837. default: true
  3838. },
  3839. {
  3840. name: "Examacro",
  3841. height: math.unit(10e9, "lightyears")
  3842. }
  3843. ]
  3844. ))
  3845. characterMakers.push(() => makeCharacter(
  3846. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3847. {
  3848. front: {
  3849. height: math.unit(8, "feet"),
  3850. weight: math.unit(500, "lb"),
  3851. name: "Front",
  3852. image: {
  3853. source: "./media/characters/rick/front.svg"
  3854. }
  3855. }
  3856. },
  3857. [
  3858. {
  3859. name: "Normal",
  3860. height: math.unit(8, "feet"),
  3861. default: true
  3862. },
  3863. {
  3864. name: "Macro",
  3865. height: math.unit(5, "km")
  3866. }
  3867. ]
  3868. ))
  3869. characterMakers.push(() => makeCharacter(
  3870. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3871. {
  3872. front: {
  3873. height: math.unit(8, "feet"),
  3874. weight: math.unit(120, "lb"),
  3875. name: "Front",
  3876. image: {
  3877. source: "./media/characters/ona/front.svg"
  3878. }
  3879. },
  3880. frontAlt: {
  3881. height: math.unit(8, "feet"),
  3882. weight: math.unit(120, "lb"),
  3883. name: "Front (Alt)",
  3884. image: {
  3885. source: "./media/characters/ona/front-alt.svg"
  3886. }
  3887. },
  3888. back: {
  3889. height: math.unit(8, "feet"),
  3890. weight: math.unit(120, "lb"),
  3891. name: "Back",
  3892. image: {
  3893. source: "./media/characters/ona/back.svg"
  3894. }
  3895. },
  3896. foot: {
  3897. height: math.unit(1.1, "feet"),
  3898. name: "Foot",
  3899. image: {
  3900. source: "./media/characters/ona/foot.svg"
  3901. }
  3902. }
  3903. },
  3904. [
  3905. {
  3906. name: "Megamacro",
  3907. height: math.unit(70, "km"),
  3908. default: true
  3909. },
  3910. {
  3911. name: "Gigamacro",
  3912. height: math.unit(681818, "miles")
  3913. },
  3914. {
  3915. name: "Examacro",
  3916. height: math.unit(3800000, "lightyears")
  3917. },
  3918. ]
  3919. ))
  3920. characterMakers.push(() => makeCharacter(
  3921. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3922. {
  3923. front: {
  3924. height: math.unit(12, "feet"),
  3925. weight: math.unit(3000, "lb"),
  3926. name: "Front",
  3927. image: {
  3928. source: "./media/characters/mech/front.svg",
  3929. extra: 2900 / 2770,
  3930. bottom: 110 / 3010
  3931. }
  3932. },
  3933. back: {
  3934. height: math.unit(12, "feet"),
  3935. weight: math.unit(3000, "lb"),
  3936. name: "Back",
  3937. image: {
  3938. source: "./media/characters/mech/back.svg",
  3939. extra: 3011 / 2890,
  3940. bottom: 94 / 3105
  3941. }
  3942. },
  3943. maw: {
  3944. height: math.unit(3.07, "feet"),
  3945. name: "Maw",
  3946. image: {
  3947. source: "./media/characters/mech/maw.svg"
  3948. }
  3949. },
  3950. head: {
  3951. height: math.unit(2.82, "feet"),
  3952. name: "Head",
  3953. image: {
  3954. source: "./media/characters/mech/head.svg"
  3955. }
  3956. },
  3957. dick: {
  3958. height: math.unit(1.43, "feet"),
  3959. name: "Dick",
  3960. image: {
  3961. source: "./media/characters/mech/dick.svg"
  3962. }
  3963. },
  3964. },
  3965. [
  3966. {
  3967. name: "Normal",
  3968. height: math.unit(12, "feet")
  3969. },
  3970. {
  3971. name: "Macro",
  3972. height: math.unit(300, "feet"),
  3973. default: true
  3974. },
  3975. {
  3976. name: "Macro+",
  3977. height: math.unit(1500, "feet")
  3978. },
  3979. ]
  3980. ))
  3981. characterMakers.push(() => makeCharacter(
  3982. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3983. {
  3984. front: {
  3985. height: math.unit(1.3, "meter"),
  3986. weight: math.unit(30, "kg"),
  3987. name: "Front",
  3988. image: {
  3989. source: "./media/characters/gregory/front.svg",
  3990. }
  3991. }
  3992. },
  3993. [
  3994. {
  3995. name: "Normal",
  3996. height: math.unit(1.3, "meter"),
  3997. default: true
  3998. },
  3999. {
  4000. name: "Macro",
  4001. height: math.unit(20, "meter")
  4002. }
  4003. ]
  4004. ))
  4005. characterMakers.push(() => makeCharacter(
  4006. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4007. {
  4008. front: {
  4009. height: math.unit(2.8, "meter"),
  4010. weight: math.unit(200, "kg"),
  4011. name: "Front",
  4012. image: {
  4013. source: "./media/characters/elory/front.svg",
  4014. }
  4015. }
  4016. },
  4017. [
  4018. {
  4019. name: "Normal",
  4020. height: math.unit(2.8, "meter"),
  4021. default: true
  4022. },
  4023. {
  4024. name: "Macro",
  4025. height: math.unit(38, "meter")
  4026. }
  4027. ]
  4028. ))
  4029. characterMakers.push(() => makeCharacter(
  4030. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4031. {
  4032. front: {
  4033. height: math.unit(470, "feet"),
  4034. weight: math.unit(924, "tons"),
  4035. name: "Front",
  4036. image: {
  4037. source: "./media/characters/angelpatamon/front.svg",
  4038. }
  4039. }
  4040. },
  4041. [
  4042. {
  4043. name: "Normal",
  4044. height: math.unit(470, "feet"),
  4045. default: true
  4046. },
  4047. {
  4048. name: "Deity Size I",
  4049. height: math.unit(28651.2, "km")
  4050. },
  4051. {
  4052. name: "Deity Size II",
  4053. height: math.unit(171907.2, "km")
  4054. }
  4055. ]
  4056. ))
  4057. characterMakers.push(() => makeCharacter(
  4058. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4059. {
  4060. side: {
  4061. height: math.unit(7.2, "meter"),
  4062. weight: math.unit(8.2, "tons"),
  4063. name: "Side",
  4064. image: {
  4065. source: "./media/characters/cryae/side.svg",
  4066. extra: 3500 / 1500
  4067. }
  4068. }
  4069. },
  4070. [
  4071. {
  4072. name: "Normal",
  4073. height: math.unit(7.2, "meter"),
  4074. default: true
  4075. }
  4076. ]
  4077. ))
  4078. characterMakers.push(() => makeCharacter(
  4079. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4080. {
  4081. front: {
  4082. height: math.unit(6, "feet"),
  4083. weight: math.unit(175, "lb"),
  4084. name: "Front",
  4085. image: {
  4086. source: "./media/characters/xera/front.svg",
  4087. extra: 2377 / 1972,
  4088. bottom: 75.5 / 2452
  4089. }
  4090. },
  4091. side: {
  4092. height: math.unit(6, "feet"),
  4093. weight: math.unit(175, "lb"),
  4094. name: "Side",
  4095. image: {
  4096. source: "./media/characters/xera/side.svg",
  4097. extra: 2345 / 2019,
  4098. bottom: 39.7 / 2384
  4099. }
  4100. },
  4101. back: {
  4102. height: math.unit(6, "feet"),
  4103. weight: math.unit(175, "lb"),
  4104. name: "Back",
  4105. image: {
  4106. source: "./media/characters/xera/back.svg",
  4107. extra: 2095 / 1984,
  4108. bottom: 67 / 2166
  4109. }
  4110. },
  4111. },
  4112. [
  4113. {
  4114. name: "Small",
  4115. height: math.unit(10, "feet")
  4116. },
  4117. {
  4118. name: "Macro",
  4119. height: math.unit(500, "meters"),
  4120. default: true
  4121. },
  4122. {
  4123. name: "Macro+",
  4124. height: math.unit(10, "km")
  4125. },
  4126. {
  4127. name: "Gigamacro",
  4128. height: math.unit(25000, "km")
  4129. },
  4130. {
  4131. name: "Teramacro",
  4132. height: math.unit(3e6, "km")
  4133. }
  4134. ]
  4135. ))
  4136. characterMakers.push(() => makeCharacter(
  4137. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4138. {
  4139. front: {
  4140. height: math.unit(6, "feet"),
  4141. weight: math.unit(175, "lb"),
  4142. name: "Front",
  4143. image: {
  4144. source: "./media/characters/nebula/front.svg",
  4145. extra: 2566 / 2362,
  4146. bottom: 81 / 2644
  4147. }
  4148. }
  4149. },
  4150. [
  4151. {
  4152. name: "Small",
  4153. height: math.unit(4.5, "meters")
  4154. },
  4155. {
  4156. name: "Macro",
  4157. height: math.unit(1500, "meters"),
  4158. default: true
  4159. },
  4160. {
  4161. name: "Megamacro",
  4162. height: math.unit(150, "km")
  4163. },
  4164. {
  4165. name: "Gigamacro",
  4166. height: math.unit(27000, "km")
  4167. }
  4168. ]
  4169. ))
  4170. characterMakers.push(() => makeCharacter(
  4171. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4172. {
  4173. front: {
  4174. height: math.unit(6, "feet"),
  4175. weight: math.unit(225, "lb"),
  4176. name: "Front",
  4177. image: {
  4178. source: "./media/characters/abysgar/front.svg"
  4179. }
  4180. }
  4181. },
  4182. [
  4183. {
  4184. name: "Small",
  4185. height: math.unit(4.5, "meters")
  4186. },
  4187. {
  4188. name: "Macro",
  4189. height: math.unit(1250, "meters"),
  4190. default: true
  4191. },
  4192. {
  4193. name: "Megamacro",
  4194. height: math.unit(125, "km")
  4195. },
  4196. {
  4197. name: "Gigamacro",
  4198. height: math.unit(26000, "km")
  4199. }
  4200. ]
  4201. ))
  4202. characterMakers.push(() => makeCharacter(
  4203. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4204. {
  4205. front: {
  4206. height: math.unit(6, "feet"),
  4207. weight: math.unit(180, "lb"),
  4208. name: "Front",
  4209. image: {
  4210. source: "./media/characters/yakuz/front.svg"
  4211. }
  4212. }
  4213. },
  4214. [
  4215. {
  4216. name: "Small",
  4217. height: math.unit(5, "meters")
  4218. },
  4219. {
  4220. name: "Macro",
  4221. height: math.unit(1500, "meters"),
  4222. default: true
  4223. },
  4224. {
  4225. name: "Megamacro",
  4226. height: math.unit(200, "km")
  4227. },
  4228. {
  4229. name: "Gigamacro",
  4230. height: math.unit(100000, "km")
  4231. }
  4232. ]
  4233. ))
  4234. characterMakers.push(() => makeCharacter(
  4235. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4236. {
  4237. front: {
  4238. height: math.unit(6, "feet"),
  4239. weight: math.unit(175, "lb"),
  4240. name: "Front",
  4241. image: {
  4242. source: "./media/characters/mirova/front.svg",
  4243. extra: 3334 / 3071,
  4244. bottom: 42 / 3375.6
  4245. }
  4246. }
  4247. },
  4248. [
  4249. {
  4250. name: "Small",
  4251. height: math.unit(5, "meters")
  4252. },
  4253. {
  4254. name: "Macro",
  4255. height: math.unit(900, "meters"),
  4256. default: true
  4257. },
  4258. {
  4259. name: "Megamacro",
  4260. height: math.unit(135, "km")
  4261. },
  4262. {
  4263. name: "Gigamacro",
  4264. height: math.unit(20000, "km")
  4265. }
  4266. ]
  4267. ))
  4268. characterMakers.push(() => makeCharacter(
  4269. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4270. {
  4271. side: {
  4272. height: math.unit(28.35, "feet"),
  4273. weight: math.unit(99.75, "tons"),
  4274. name: "Side",
  4275. image: {
  4276. source: "./media/characters/asana-mech/side.svg",
  4277. extra: 923 / 699,
  4278. bottom: 50 / 975
  4279. }
  4280. },
  4281. chaingun: {
  4282. height: math.unit(7, "feet"),
  4283. weight: math.unit(2400, "lb"),
  4284. name: "Chaingun",
  4285. image: {
  4286. source: "./media/characters/asana-mech/chaingun.svg"
  4287. }
  4288. },
  4289. laser: {
  4290. height: math.unit(7.12, "feet"),
  4291. weight: math.unit(2000, "lb"),
  4292. name: "Laser",
  4293. image: {
  4294. source: "./media/characters/asana-mech/laser.svg"
  4295. }
  4296. },
  4297. },
  4298. [
  4299. {
  4300. name: "Normal",
  4301. height: math.unit(28.35, "feet"),
  4302. default: true
  4303. },
  4304. {
  4305. name: "Macro",
  4306. height: math.unit(2500, "feet")
  4307. },
  4308. {
  4309. name: "Megamacro",
  4310. height: math.unit(25, "miles")
  4311. },
  4312. {
  4313. name: "Examacro",
  4314. height: math.unit(6e8, "lightyears")
  4315. },
  4316. ]
  4317. ))
  4318. characterMakers.push(() => makeCharacter(
  4319. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4320. {
  4321. front: {
  4322. height: math.unit(5, "meters"),
  4323. weight: math.unit(1000, "kg"),
  4324. name: "Front",
  4325. image: {
  4326. source: "./media/characters/asche/front.svg",
  4327. extra: 1258 / 1190,
  4328. bottom: 47 / 1305
  4329. }
  4330. },
  4331. frontUnderwear: {
  4332. height: math.unit(5, "meters"),
  4333. weight: math.unit(1000, "kg"),
  4334. name: "Front (Underwear)",
  4335. image: {
  4336. source: "./media/characters/asche/front-underwear.svg",
  4337. extra: 1258 / 1190,
  4338. bottom: 47 / 1305
  4339. }
  4340. },
  4341. frontDressed: {
  4342. height: math.unit(5, "meters"),
  4343. weight: math.unit(1000, "kg"),
  4344. name: "Front (Dressed)",
  4345. image: {
  4346. source: "./media/characters/asche/front-dressed.svg",
  4347. extra: 1258 / 1190,
  4348. bottom: 47 / 1305
  4349. }
  4350. },
  4351. frontArmor: {
  4352. height: math.unit(5, "meters"),
  4353. weight: math.unit(1000, "kg"),
  4354. name: "Front (Armored)",
  4355. image: {
  4356. source: "./media/characters/asche/front-armored.svg",
  4357. extra: 1374 / 1308,
  4358. bottom: 23 / 1397
  4359. }
  4360. },
  4361. mp724: {
  4362. height: math.unit(0.96, "meters"),
  4363. weight: math.unit(38, "kg"),
  4364. name: "H&K MP724",
  4365. image: {
  4366. source: "./media/characters/asche/h&k-mp724.svg"
  4367. }
  4368. },
  4369. side: {
  4370. height: math.unit(5, "meters"),
  4371. weight: math.unit(1000, "kg"),
  4372. name: "Side",
  4373. image: {
  4374. source: "./media/characters/asche/side.svg",
  4375. extra: 1717 / 1609,
  4376. bottom: 0.005
  4377. }
  4378. },
  4379. back: {
  4380. height: math.unit(5, "meters"),
  4381. weight: math.unit(1000, "kg"),
  4382. name: "Back",
  4383. image: {
  4384. source: "./media/characters/asche/back.svg",
  4385. extra: 1570 / 1501
  4386. }
  4387. },
  4388. },
  4389. [
  4390. {
  4391. name: "DEFCON 5",
  4392. height: math.unit(5, "meters")
  4393. },
  4394. {
  4395. name: "DEFCON 4",
  4396. height: math.unit(500, "meters"),
  4397. default: true
  4398. },
  4399. {
  4400. name: "DEFCON 3",
  4401. height: math.unit(5, "km")
  4402. },
  4403. {
  4404. name: "DEFCON 2",
  4405. height: math.unit(500, "km")
  4406. },
  4407. {
  4408. name: "DEFCON 1",
  4409. height: math.unit(500000, "km")
  4410. },
  4411. {
  4412. name: "DEFCON 0",
  4413. height: math.unit(3, "gigaparsecs")
  4414. },
  4415. ]
  4416. ))
  4417. characterMakers.push(() => makeCharacter(
  4418. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4419. {
  4420. front: {
  4421. height: math.unit(2, "meters"),
  4422. weight: math.unit(76, "kg"),
  4423. name: "Front",
  4424. image: {
  4425. source: "./media/characters/gale/front.svg"
  4426. }
  4427. },
  4428. frontAlt1: {
  4429. height: math.unit(2, "meters"),
  4430. weight: math.unit(76, "kg"),
  4431. name: "Front (Alt 1)",
  4432. image: {
  4433. source: "./media/characters/gale/front-alt-1.svg"
  4434. }
  4435. },
  4436. frontAlt2: {
  4437. height: math.unit(2, "meters"),
  4438. weight: math.unit(76, "kg"),
  4439. name: "Front (Alt 2)",
  4440. image: {
  4441. source: "./media/characters/gale/front-alt-2.svg"
  4442. }
  4443. },
  4444. },
  4445. [
  4446. {
  4447. name: "Normal",
  4448. height: math.unit(7, "feet")
  4449. },
  4450. {
  4451. name: "Macro",
  4452. height: math.unit(150, "feet"),
  4453. default: true
  4454. },
  4455. {
  4456. name: "Macro+",
  4457. height: math.unit(300, "feet")
  4458. },
  4459. ]
  4460. ))
  4461. characterMakers.push(() => makeCharacter(
  4462. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4463. {
  4464. front: {
  4465. height: math.unit(2, "meters"),
  4466. weight: math.unit(76, "kg"),
  4467. name: "Front",
  4468. image: {
  4469. source: "./media/characters/draylen/front.svg"
  4470. }
  4471. }
  4472. },
  4473. [
  4474. {
  4475. name: "Macro",
  4476. height: math.unit(150, "feet"),
  4477. default: true
  4478. }
  4479. ]
  4480. ))
  4481. characterMakers.push(() => makeCharacter(
  4482. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4483. {
  4484. front: {
  4485. height: math.unit(7 + 9 / 12, "feet"),
  4486. weight: math.unit(379, "lbs"),
  4487. name: "Front",
  4488. image: {
  4489. source: "./media/characters/chez/front.svg"
  4490. }
  4491. },
  4492. side: {
  4493. height: math.unit(7 + 9 / 12, "feet"),
  4494. weight: math.unit(379, "lbs"),
  4495. name: "Side",
  4496. image: {
  4497. source: "./media/characters/chez/side.svg"
  4498. }
  4499. }
  4500. },
  4501. [
  4502. {
  4503. name: "Normal",
  4504. height: math.unit(7 + 9 / 12, "feet"),
  4505. default: true
  4506. },
  4507. {
  4508. name: "God King",
  4509. height: math.unit(9750000, "meters")
  4510. }
  4511. ]
  4512. ))
  4513. characterMakers.push(() => makeCharacter(
  4514. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4515. {
  4516. front: {
  4517. height: math.unit(6, "feet"),
  4518. weight: math.unit(275, "lbs"),
  4519. name: "Front",
  4520. image: {
  4521. source: "./media/characters/kaylum/front.svg",
  4522. bottom: 0.01,
  4523. extra: 1166 / 1031
  4524. }
  4525. },
  4526. frontWingless: {
  4527. height: math.unit(6, "feet"),
  4528. weight: math.unit(275, "lbs"),
  4529. name: "Front (Wingless)",
  4530. image: {
  4531. source: "./media/characters/kaylum/front-wingless.svg",
  4532. bottom: 0.01,
  4533. extra: 1117 / 1031
  4534. }
  4535. }
  4536. },
  4537. [
  4538. {
  4539. name: "Normal",
  4540. height: math.unit(3.05, "meters")
  4541. },
  4542. {
  4543. name: "Master",
  4544. height: math.unit(5.5, "meters")
  4545. },
  4546. {
  4547. name: "Rampage",
  4548. height: math.unit(19, "meters")
  4549. },
  4550. {
  4551. name: "Macro Lite",
  4552. height: math.unit(37, "meters")
  4553. },
  4554. {
  4555. name: "Hyper Predator",
  4556. height: math.unit(61, "meters")
  4557. },
  4558. {
  4559. name: "Macro",
  4560. height: math.unit(138, "meters"),
  4561. default: true
  4562. }
  4563. ]
  4564. ))
  4565. characterMakers.push(() => makeCharacter(
  4566. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4567. {
  4568. front: {
  4569. height: math.unit(6, "feet"),
  4570. weight: math.unit(150, "lbs"),
  4571. name: "Front",
  4572. image: {
  4573. source: "./media/characters/geta/front.svg"
  4574. }
  4575. }
  4576. },
  4577. [
  4578. {
  4579. name: "Micro",
  4580. height: math.unit(3, "inches"),
  4581. default: true
  4582. },
  4583. {
  4584. name: "Normal",
  4585. height: math.unit(5 + 5 / 12, "feet")
  4586. }
  4587. ]
  4588. ))
  4589. characterMakers.push(() => makeCharacter(
  4590. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4591. {
  4592. front: {
  4593. height: math.unit(6, "feet"),
  4594. weight: math.unit(300, "lbs"),
  4595. name: "Front",
  4596. image: {
  4597. source: "./media/characters/tyrnn/front.svg"
  4598. }
  4599. }
  4600. },
  4601. [
  4602. {
  4603. name: "Main Height",
  4604. height: math.unit(355, "feet"),
  4605. default: true
  4606. },
  4607. {
  4608. name: "Fave. Height",
  4609. height: math.unit(2400, "feet")
  4610. }
  4611. ]
  4612. ))
  4613. characterMakers.push(() => makeCharacter(
  4614. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4615. {
  4616. front: {
  4617. height: math.unit(6, "feet"),
  4618. weight: math.unit(300, "lbs"),
  4619. name: "Front",
  4620. image: {
  4621. source: "./media/characters/appledectomy/front.svg"
  4622. }
  4623. }
  4624. },
  4625. [
  4626. {
  4627. name: "Macro",
  4628. height: math.unit(2500, "feet")
  4629. },
  4630. {
  4631. name: "Megamacro",
  4632. height: math.unit(50, "miles"),
  4633. default: true
  4634. },
  4635. {
  4636. name: "Gigamacro",
  4637. height: math.unit(5000, "miles")
  4638. },
  4639. {
  4640. name: "Teramacro",
  4641. height: math.unit(250000, "miles")
  4642. },
  4643. ]
  4644. ))
  4645. characterMakers.push(() => makeCharacter(
  4646. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4647. {
  4648. front: {
  4649. height: math.unit(6, "feet"),
  4650. weight: math.unit(200, "lbs"),
  4651. name: "Front",
  4652. image: {
  4653. source: "./media/characters/vulpes/front.svg",
  4654. extra: 573 / 543,
  4655. bottom: 0.033
  4656. }
  4657. },
  4658. side: {
  4659. height: math.unit(6, "feet"),
  4660. weight: math.unit(200, "lbs"),
  4661. name: "Side",
  4662. image: {
  4663. source: "./media/characters/vulpes/side.svg",
  4664. extra: 577 / 549,
  4665. bottom: 11 / 588
  4666. }
  4667. },
  4668. back: {
  4669. height: math.unit(6, "feet"),
  4670. weight: math.unit(200, "lbs"),
  4671. name: "Back",
  4672. image: {
  4673. source: "./media/characters/vulpes/back.svg",
  4674. extra: 573 / 549,
  4675. bottom: 20 / 593
  4676. }
  4677. },
  4678. feet: {
  4679. height: math.unit(1.276, "feet"),
  4680. name: "Feet",
  4681. image: {
  4682. source: "./media/characters/vulpes/feet.svg"
  4683. }
  4684. },
  4685. maw: {
  4686. height: math.unit(1.18, "feet"),
  4687. name: "Maw",
  4688. image: {
  4689. source: "./media/characters/vulpes/maw.svg"
  4690. }
  4691. },
  4692. },
  4693. [
  4694. {
  4695. name: "Micro",
  4696. height: math.unit(2, "inches")
  4697. },
  4698. {
  4699. name: "Normal",
  4700. height: math.unit(6.3, "feet")
  4701. },
  4702. {
  4703. name: "Macro",
  4704. height: math.unit(850, "feet")
  4705. },
  4706. {
  4707. name: "Megamacro",
  4708. height: math.unit(7500, "feet"),
  4709. default: true
  4710. },
  4711. {
  4712. name: "Gigamacro",
  4713. height: math.unit(570000, "miles")
  4714. }
  4715. ]
  4716. ))
  4717. characterMakers.push(() => makeCharacter(
  4718. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4719. {
  4720. front: {
  4721. height: math.unit(6, "feet"),
  4722. weight: math.unit(210, "lbs"),
  4723. name: "Front",
  4724. image: {
  4725. source: "./media/characters/rain-fallen/front.svg"
  4726. }
  4727. },
  4728. side: {
  4729. height: math.unit(6, "feet"),
  4730. weight: math.unit(210, "lbs"),
  4731. name: "Side",
  4732. image: {
  4733. source: "./media/characters/rain-fallen/side.svg"
  4734. }
  4735. },
  4736. back: {
  4737. height: math.unit(6, "feet"),
  4738. weight: math.unit(210, "lbs"),
  4739. name: "Back",
  4740. image: {
  4741. source: "./media/characters/rain-fallen/back.svg"
  4742. }
  4743. },
  4744. feral: {
  4745. height: math.unit(9, "feet"),
  4746. weight: math.unit(700, "lbs"),
  4747. name: "Feral",
  4748. image: {
  4749. source: "./media/characters/rain-fallen/feral.svg"
  4750. }
  4751. },
  4752. },
  4753. [
  4754. {
  4755. name: "Meddling with Mortals",
  4756. height: math.unit(8 + 8/12, "feet")
  4757. },
  4758. {
  4759. name: "Normal",
  4760. height: math.unit(5, "meter")
  4761. },
  4762. {
  4763. name: "Macro",
  4764. height: math.unit(150, "meter"),
  4765. default: true
  4766. },
  4767. {
  4768. name: "Megamacro",
  4769. height: math.unit(278e6, "meter")
  4770. },
  4771. {
  4772. name: "Gigamacro",
  4773. height: math.unit(2e9, "meter")
  4774. },
  4775. {
  4776. name: "Teramacro",
  4777. height: math.unit(8e12, "meter")
  4778. },
  4779. {
  4780. name: "Devourer",
  4781. height: math.unit(14, "zettameters")
  4782. },
  4783. {
  4784. name: "Scarlet King",
  4785. height: math.unit(18, "yottameters")
  4786. },
  4787. {
  4788. name: "Void",
  4789. height: math.unit(1e88, "yottameters")
  4790. }
  4791. ]
  4792. ))
  4793. characterMakers.push(() => makeCharacter(
  4794. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4795. {
  4796. standing: {
  4797. height: math.unit(6, "feet"),
  4798. weight: math.unit(180, "lbs"),
  4799. name: "Standing",
  4800. image: {
  4801. source: "./media/characters/zaakira/standing.svg",
  4802. extra: 1599/1504,
  4803. bottom: 39/1638
  4804. }
  4805. },
  4806. laying: {
  4807. height: math.unit(3, "feet"),
  4808. weight: math.unit(180, "lbs"),
  4809. name: "Laying",
  4810. image: {
  4811. source: "./media/characters/zaakira/laying.svg"
  4812. }
  4813. },
  4814. },
  4815. [
  4816. {
  4817. name: "Normal",
  4818. height: math.unit(12, "feet")
  4819. },
  4820. {
  4821. name: "Macro",
  4822. height: math.unit(279, "feet"),
  4823. default: true
  4824. }
  4825. ]
  4826. ))
  4827. characterMakers.push(() => makeCharacter(
  4828. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4829. {
  4830. femSfw: {
  4831. height: math.unit(8, "feet"),
  4832. weight: math.unit(350, "lb"),
  4833. name: "Fem",
  4834. image: {
  4835. source: "./media/characters/sigvald/fem-sfw.svg",
  4836. extra: 182 / 164,
  4837. bottom: 8.7 / 190.5
  4838. }
  4839. },
  4840. femNsfw: {
  4841. height: math.unit(8, "feet"),
  4842. weight: math.unit(350, "lb"),
  4843. name: "Fem (NSFW)",
  4844. image: {
  4845. source: "./media/characters/sigvald/fem-nsfw.svg",
  4846. extra: 182 / 164,
  4847. bottom: 8.7 / 190.5
  4848. }
  4849. },
  4850. maleNsfw: {
  4851. height: math.unit(8, "feet"),
  4852. weight: math.unit(350, "lb"),
  4853. name: "Male (NSFW)",
  4854. image: {
  4855. source: "./media/characters/sigvald/male-nsfw.svg",
  4856. extra: 182 / 164,
  4857. bottom: 8.7 / 190.5
  4858. }
  4859. },
  4860. hermNsfw: {
  4861. height: math.unit(8, "feet"),
  4862. weight: math.unit(350, "lb"),
  4863. name: "Herm (NSFW)",
  4864. image: {
  4865. source: "./media/characters/sigvald/herm-nsfw.svg",
  4866. extra: 182 / 164,
  4867. bottom: 8.7 / 190.5
  4868. }
  4869. },
  4870. dick: {
  4871. height: math.unit(2.36, "feet"),
  4872. name: "Dick",
  4873. image: {
  4874. source: "./media/characters/sigvald/dick.svg"
  4875. }
  4876. },
  4877. eye: {
  4878. height: math.unit(0.31, "feet"),
  4879. name: "Eye",
  4880. image: {
  4881. source: "./media/characters/sigvald/eye.svg"
  4882. }
  4883. },
  4884. mouth: {
  4885. height: math.unit(0.92, "feet"),
  4886. name: "Mouth",
  4887. image: {
  4888. source: "./media/characters/sigvald/mouth.svg"
  4889. }
  4890. },
  4891. paws: {
  4892. height: math.unit(2.2, "feet"),
  4893. name: "Paws",
  4894. image: {
  4895. source: "./media/characters/sigvald/paws.svg"
  4896. }
  4897. }
  4898. },
  4899. [
  4900. {
  4901. name: "Normal",
  4902. height: math.unit(8, "feet")
  4903. },
  4904. {
  4905. name: "Large",
  4906. height: math.unit(12, "feet")
  4907. },
  4908. {
  4909. name: "Larger",
  4910. height: math.unit(20, "feet")
  4911. },
  4912. {
  4913. name: "Macro",
  4914. height: math.unit(150, "feet")
  4915. },
  4916. {
  4917. name: "Macro+",
  4918. height: math.unit(200, "feet"),
  4919. default: true
  4920. },
  4921. ]
  4922. ))
  4923. characterMakers.push(() => makeCharacter(
  4924. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4925. {
  4926. side: {
  4927. height: math.unit(12, "feet"),
  4928. weight: math.unit(2000, "kg"),
  4929. name: "Side",
  4930. image: {
  4931. source: "./media/characters/scott/side.svg",
  4932. extra: 754 / 724,
  4933. bottom: 0.069
  4934. }
  4935. },
  4936. upright: {
  4937. height: math.unit(12, "feet"),
  4938. weight: math.unit(2000, "kg"),
  4939. name: "Upright",
  4940. image: {
  4941. source: "./media/characters/scott/upright.svg",
  4942. extra: 3881 / 3722,
  4943. bottom: 0.05
  4944. }
  4945. },
  4946. },
  4947. [
  4948. {
  4949. name: "Normal",
  4950. height: math.unit(12, "feet"),
  4951. default: true
  4952. },
  4953. ]
  4954. ))
  4955. characterMakers.push(() => makeCharacter(
  4956. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4957. {
  4958. side: {
  4959. height: math.unit(8, "meters"),
  4960. weight: math.unit(84755, "lbs"),
  4961. name: "Side",
  4962. image: {
  4963. source: "./media/characters/tobias/side.svg",
  4964. extra: 1474 / 1096,
  4965. bottom: 38.9 / 1513.1235
  4966. }
  4967. },
  4968. },
  4969. [
  4970. {
  4971. name: "Normal",
  4972. height: math.unit(8, "meters"),
  4973. default: true
  4974. },
  4975. ]
  4976. ))
  4977. characterMakers.push(() => makeCharacter(
  4978. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4979. {
  4980. front: {
  4981. height: math.unit(5.5, "feet"),
  4982. weight: math.unit(400, "lbs"),
  4983. name: "Front",
  4984. image: {
  4985. source: "./media/characters/kieran/front.svg",
  4986. extra: 2694 / 2364,
  4987. bottom: 217 / 2908
  4988. }
  4989. },
  4990. side: {
  4991. height: math.unit(5.5, "feet"),
  4992. weight: math.unit(400, "lbs"),
  4993. name: "Side",
  4994. image: {
  4995. source: "./media/characters/kieran/side.svg",
  4996. extra: 875 / 777,
  4997. bottom: 84.6 / 959
  4998. }
  4999. },
  5000. },
  5001. [
  5002. {
  5003. name: "Normal",
  5004. height: math.unit(5.5, "feet"),
  5005. default: true
  5006. },
  5007. ]
  5008. ))
  5009. characterMakers.push(() => makeCharacter(
  5010. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5011. {
  5012. side: {
  5013. height: math.unit(2, "meters"),
  5014. weight: math.unit(70, "kg"),
  5015. name: "Side",
  5016. image: {
  5017. source: "./media/characters/sanya/side.svg",
  5018. bottom: 0.02,
  5019. extra: 1.02
  5020. }
  5021. },
  5022. },
  5023. [
  5024. {
  5025. name: "Small",
  5026. height: math.unit(2, "meters")
  5027. },
  5028. {
  5029. name: "Normal",
  5030. height: math.unit(3, "meters")
  5031. },
  5032. {
  5033. name: "Macro",
  5034. height: math.unit(16, "meters"),
  5035. default: true
  5036. },
  5037. ]
  5038. ))
  5039. characterMakers.push(() => makeCharacter(
  5040. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5041. {
  5042. front: {
  5043. height: math.unit(2, "meters"),
  5044. weight: math.unit(120, "kg"),
  5045. name: "Front",
  5046. image: {
  5047. source: "./media/characters/miranda/front.svg",
  5048. extra: 195 / 185,
  5049. bottom: 10.9 / 206.5
  5050. }
  5051. },
  5052. back: {
  5053. height: math.unit(2, "meters"),
  5054. weight: math.unit(120, "kg"),
  5055. name: "Back",
  5056. image: {
  5057. source: "./media/characters/miranda/back.svg",
  5058. extra: 201 / 193,
  5059. bottom: 2.3 / 203.7
  5060. }
  5061. },
  5062. },
  5063. [
  5064. {
  5065. name: "Normal",
  5066. height: math.unit(10, "feet"),
  5067. default: true
  5068. }
  5069. ]
  5070. ))
  5071. characterMakers.push(() => makeCharacter(
  5072. { name: "James", species: ["deer"], tags: ["anthro"] },
  5073. {
  5074. side: {
  5075. height: math.unit(2, "meters"),
  5076. weight: math.unit(100, "kg"),
  5077. name: "Front",
  5078. image: {
  5079. source: "./media/characters/james/front.svg",
  5080. extra: 10 / 8.5
  5081. }
  5082. },
  5083. },
  5084. [
  5085. {
  5086. name: "Normal",
  5087. height: math.unit(8.5, "feet"),
  5088. default: true
  5089. }
  5090. ]
  5091. ))
  5092. characterMakers.push(() => makeCharacter(
  5093. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5094. {
  5095. side: {
  5096. height: math.unit(9.5, "feet"),
  5097. weight: math.unit(2500, "lbs"),
  5098. name: "Side",
  5099. image: {
  5100. source: "./media/characters/heather/side.svg"
  5101. }
  5102. },
  5103. },
  5104. [
  5105. {
  5106. name: "Normal",
  5107. height: math.unit(9.5, "feet"),
  5108. default: true
  5109. }
  5110. ]
  5111. ))
  5112. characterMakers.push(() => makeCharacter(
  5113. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5114. {
  5115. side: {
  5116. height: math.unit(6.5, "feet"),
  5117. weight: math.unit(400, "lbs"),
  5118. name: "Side",
  5119. image: {
  5120. source: "./media/characters/lukas/side.svg",
  5121. extra: 7.25 / 6.5
  5122. }
  5123. },
  5124. },
  5125. [
  5126. {
  5127. name: "Normal",
  5128. height: math.unit(6.5, "feet"),
  5129. default: true
  5130. }
  5131. ]
  5132. ))
  5133. characterMakers.push(() => makeCharacter(
  5134. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5135. {
  5136. side: {
  5137. height: math.unit(5, "feet"),
  5138. weight: math.unit(3000, "lbs"),
  5139. name: "Side",
  5140. image: {
  5141. source: "./media/characters/louise/side.svg"
  5142. }
  5143. },
  5144. },
  5145. [
  5146. {
  5147. name: "Normal",
  5148. height: math.unit(5, "feet"),
  5149. default: true
  5150. }
  5151. ]
  5152. ))
  5153. characterMakers.push(() => makeCharacter(
  5154. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5155. {
  5156. side: {
  5157. height: math.unit(6, "feet"),
  5158. weight: math.unit(150, "lbs"),
  5159. name: "Side",
  5160. image: {
  5161. source: "./media/characters/ramona/side.svg"
  5162. }
  5163. },
  5164. },
  5165. [
  5166. {
  5167. name: "Normal",
  5168. height: math.unit(5.3, "meters"),
  5169. default: true
  5170. },
  5171. {
  5172. name: "Macro",
  5173. height: math.unit(20, "stories")
  5174. },
  5175. {
  5176. name: "Macro+",
  5177. height: math.unit(50, "stories")
  5178. },
  5179. ]
  5180. ))
  5181. characterMakers.push(() => makeCharacter(
  5182. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5183. {
  5184. standing: {
  5185. height: math.unit(5.75, "feet"),
  5186. weight: math.unit(160, "lbs"),
  5187. name: "Standing",
  5188. image: {
  5189. source: "./media/characters/deerpuff/standing.svg",
  5190. extra: 682 / 624
  5191. }
  5192. },
  5193. sitting: {
  5194. height: math.unit(5.75 / 1.79, "feet"),
  5195. weight: math.unit(160, "lbs"),
  5196. name: "Sitting",
  5197. image: {
  5198. source: "./media/characters/deerpuff/sitting.svg",
  5199. bottom: 44 / 400,
  5200. extra: 1
  5201. }
  5202. },
  5203. taurLaying: {
  5204. height: math.unit(6, "feet"),
  5205. weight: math.unit(400, "lbs"),
  5206. name: "Taur (Laying)",
  5207. image: {
  5208. source: "./media/characters/deerpuff/taur-laying.svg"
  5209. }
  5210. },
  5211. },
  5212. [
  5213. {
  5214. name: "Puffball",
  5215. height: math.unit(6, "inches")
  5216. },
  5217. {
  5218. name: "Normalpuff",
  5219. height: math.unit(5.75, "feet")
  5220. },
  5221. {
  5222. name: "Macropuff",
  5223. height: math.unit(1500, "feet"),
  5224. default: true
  5225. },
  5226. {
  5227. name: "Megapuff",
  5228. height: math.unit(500, "miles")
  5229. },
  5230. {
  5231. name: "Gigapuff",
  5232. height: math.unit(250000, "miles")
  5233. },
  5234. {
  5235. name: "Omegapuff",
  5236. height: math.unit(1000, "lightyears")
  5237. },
  5238. ]
  5239. ))
  5240. characterMakers.push(() => makeCharacter(
  5241. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5242. {
  5243. stomping: {
  5244. height: math.unit(6, "feet"),
  5245. weight: math.unit(170, "lbs"),
  5246. name: "Stomping",
  5247. image: {
  5248. source: "./media/characters/vivian/stomping.svg"
  5249. }
  5250. },
  5251. sitting: {
  5252. height: math.unit(6 / 1.75, "feet"),
  5253. weight: math.unit(170, "lbs"),
  5254. name: "Sitting",
  5255. image: {
  5256. source: "./media/characters/vivian/sitting.svg",
  5257. bottom: 1 / 6.4,
  5258. extra: 1,
  5259. }
  5260. },
  5261. },
  5262. [
  5263. {
  5264. name: "Normal",
  5265. height: math.unit(7, "feet"),
  5266. default: true
  5267. },
  5268. {
  5269. name: "Macro",
  5270. height: math.unit(10, "stories")
  5271. },
  5272. {
  5273. name: "Macro+",
  5274. height: math.unit(30, "stories")
  5275. },
  5276. {
  5277. name: "Megamacro",
  5278. height: math.unit(10, "miles")
  5279. },
  5280. {
  5281. name: "Megamacro+",
  5282. height: math.unit(2750000, "meters")
  5283. },
  5284. ]
  5285. ))
  5286. characterMakers.push(() => makeCharacter(
  5287. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5288. {
  5289. front: {
  5290. height: math.unit(6, "feet"),
  5291. weight: math.unit(160, "lbs"),
  5292. name: "Front",
  5293. image: {
  5294. source: "./media/characters/prince/front.svg",
  5295. extra: 3400 / 3000
  5296. }
  5297. },
  5298. jumping: {
  5299. height: math.unit(6, "feet"),
  5300. weight: math.unit(160, "lbs"),
  5301. name: "Jumping",
  5302. image: {
  5303. source: "./media/characters/prince/jump.svg",
  5304. extra: 2555 / 2134
  5305. }
  5306. },
  5307. },
  5308. [
  5309. {
  5310. name: "Normal",
  5311. height: math.unit(7.75, "feet"),
  5312. default: true
  5313. },
  5314. {
  5315. name: "Not cute",
  5316. height: math.unit(17, "feet")
  5317. },
  5318. {
  5319. name: "I said NOT",
  5320. height: math.unit(91, "feet")
  5321. },
  5322. {
  5323. name: "Please stop",
  5324. height: math.unit(560, "feet")
  5325. },
  5326. {
  5327. name: "What have you done",
  5328. height: math.unit(2200, "feet")
  5329. },
  5330. {
  5331. name: "Deer God",
  5332. height: math.unit(3.6, "miles")
  5333. },
  5334. ]
  5335. ))
  5336. characterMakers.push(() => makeCharacter(
  5337. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5338. {
  5339. standing: {
  5340. height: math.unit(6, "feet"),
  5341. weight: math.unit(300, "lbs"),
  5342. name: "Standing",
  5343. image: {
  5344. source: "./media/characters/psymon/standing.svg",
  5345. extra: 1888 / 1810,
  5346. bottom: 0.05
  5347. }
  5348. },
  5349. slithering: {
  5350. height: math.unit(6, "feet"),
  5351. weight: math.unit(300, "lbs"),
  5352. name: "Slithering",
  5353. image: {
  5354. source: "./media/characters/psymon/slithering.svg",
  5355. extra: 1330 / 1224
  5356. }
  5357. },
  5358. slitheringAlt: {
  5359. height: math.unit(6, "feet"),
  5360. weight: math.unit(300, "lbs"),
  5361. name: "Slithering (Alt)",
  5362. image: {
  5363. source: "./media/characters/psymon/slithering-alt.svg",
  5364. extra: 1330 / 1224
  5365. }
  5366. },
  5367. },
  5368. [
  5369. {
  5370. name: "Normal",
  5371. height: math.unit(11.25, "feet"),
  5372. default: true
  5373. },
  5374. {
  5375. name: "Large",
  5376. height: math.unit(27, "feet")
  5377. },
  5378. {
  5379. name: "Giant",
  5380. height: math.unit(87, "feet")
  5381. },
  5382. {
  5383. name: "Macro",
  5384. height: math.unit(365, "feet")
  5385. },
  5386. {
  5387. name: "Megamacro",
  5388. height: math.unit(3, "miles")
  5389. },
  5390. {
  5391. name: "World Serpent",
  5392. height: math.unit(8000, "miles")
  5393. },
  5394. ]
  5395. ))
  5396. characterMakers.push(() => makeCharacter(
  5397. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5398. {
  5399. front: {
  5400. height: math.unit(6, "feet"),
  5401. weight: math.unit(180, "lbs"),
  5402. name: "Front",
  5403. image: {
  5404. source: "./media/characters/daimos/front.svg",
  5405. extra: 4160 / 3897,
  5406. bottom: 0.021
  5407. }
  5408. }
  5409. },
  5410. [
  5411. {
  5412. name: "Normal",
  5413. height: math.unit(8, "feet"),
  5414. default: true
  5415. },
  5416. {
  5417. name: "Big Dog",
  5418. height: math.unit(22, "feet")
  5419. },
  5420. {
  5421. name: "Macro",
  5422. height: math.unit(127, "feet")
  5423. },
  5424. {
  5425. name: "Megamacro",
  5426. height: math.unit(3600, "feet")
  5427. },
  5428. ]
  5429. ))
  5430. characterMakers.push(() => makeCharacter(
  5431. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5432. {
  5433. side: {
  5434. height: math.unit(6, "feet"),
  5435. weight: math.unit(180, "lbs"),
  5436. name: "Side",
  5437. image: {
  5438. source: "./media/characters/blake/side.svg",
  5439. extra: 1212 / 1120,
  5440. bottom: 0.05
  5441. }
  5442. },
  5443. crouched: {
  5444. height: math.unit(6 * 0.57, "feet"),
  5445. weight: math.unit(180, "lbs"),
  5446. name: "Crouched",
  5447. image: {
  5448. source: "./media/characters/blake/crouched.svg",
  5449. extra: 840 / 587,
  5450. bottom: 0.04
  5451. }
  5452. },
  5453. bent: {
  5454. height: math.unit(6 * 0.75, "feet"),
  5455. weight: math.unit(180, "lbs"),
  5456. name: "Bent",
  5457. image: {
  5458. source: "./media/characters/blake/bent.svg",
  5459. extra: 592 / 544,
  5460. bottom: 0.035
  5461. }
  5462. },
  5463. },
  5464. [
  5465. {
  5466. name: "Normal",
  5467. height: math.unit(8 + 1 / 6, "feet"),
  5468. default: true
  5469. },
  5470. {
  5471. name: "Big Backside",
  5472. height: math.unit(37, "feet")
  5473. },
  5474. {
  5475. name: "Subway Shredder",
  5476. height: math.unit(72, "feet")
  5477. },
  5478. {
  5479. name: "City Carver",
  5480. height: math.unit(1675, "feet")
  5481. },
  5482. {
  5483. name: "Tectonic Tweaker",
  5484. height: math.unit(2300, "miles")
  5485. },
  5486. ]
  5487. ))
  5488. characterMakers.push(() => makeCharacter(
  5489. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5490. {
  5491. front: {
  5492. height: math.unit(6, "feet"),
  5493. weight: math.unit(180, "lbs"),
  5494. name: "Front",
  5495. image: {
  5496. source: "./media/characters/guisetto/front.svg",
  5497. extra: 856 / 817,
  5498. bottom: 0.06
  5499. }
  5500. },
  5501. airborne: {
  5502. height: math.unit(6, "feet"),
  5503. weight: math.unit(180, "lbs"),
  5504. name: "Airborne",
  5505. image: {
  5506. source: "./media/characters/guisetto/airborne.svg",
  5507. extra: 584 / 525
  5508. }
  5509. },
  5510. },
  5511. [
  5512. {
  5513. name: "Normal",
  5514. height: math.unit(10 + 11 / 12, "feet"),
  5515. default: true
  5516. },
  5517. {
  5518. name: "Large",
  5519. height: math.unit(35, "feet")
  5520. },
  5521. {
  5522. name: "Macro",
  5523. height: math.unit(475, "feet")
  5524. },
  5525. ]
  5526. ))
  5527. characterMakers.push(() => makeCharacter(
  5528. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5529. {
  5530. front: {
  5531. height: math.unit(6, "feet"),
  5532. weight: math.unit(180, "lbs"),
  5533. name: "Front",
  5534. image: {
  5535. source: "./media/characters/luxor/front.svg",
  5536. extra: 2940 / 2152
  5537. }
  5538. },
  5539. back: {
  5540. height: math.unit(6, "feet"),
  5541. weight: math.unit(180, "lbs"),
  5542. name: "Back",
  5543. image: {
  5544. source: "./media/characters/luxor/back.svg",
  5545. extra: 1083 / 960
  5546. }
  5547. },
  5548. },
  5549. [
  5550. {
  5551. name: "Normal",
  5552. height: math.unit(5 + 5 / 6, "feet"),
  5553. default: true
  5554. },
  5555. {
  5556. name: "Lamp",
  5557. height: math.unit(50, "feet")
  5558. },
  5559. {
  5560. name: "Lämp",
  5561. height: math.unit(300, "feet")
  5562. },
  5563. {
  5564. name: "The sun is a lamp",
  5565. height: math.unit(250000, "miles")
  5566. },
  5567. ]
  5568. ))
  5569. characterMakers.push(() => makeCharacter(
  5570. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5571. {
  5572. front: {
  5573. height: math.unit(6, "feet"),
  5574. weight: math.unit(50, "lbs"),
  5575. name: "Front",
  5576. image: {
  5577. source: "./media/characters/huoyan/front.svg"
  5578. }
  5579. },
  5580. side: {
  5581. height: math.unit(6, "feet"),
  5582. weight: math.unit(180, "lbs"),
  5583. name: "Side",
  5584. image: {
  5585. source: "./media/characters/huoyan/side.svg"
  5586. }
  5587. },
  5588. },
  5589. [
  5590. {
  5591. name: "Chef",
  5592. height: math.unit(9, "feet")
  5593. },
  5594. {
  5595. name: "Normal",
  5596. height: math.unit(65, "feet"),
  5597. default: true
  5598. },
  5599. {
  5600. name: "Macro",
  5601. height: math.unit(780, "feet")
  5602. },
  5603. {
  5604. name: "Flaming Mountain",
  5605. height: math.unit(4.8, "miles")
  5606. },
  5607. {
  5608. name: "Celestial",
  5609. height: math.unit(765000, "miles")
  5610. },
  5611. ]
  5612. ))
  5613. characterMakers.push(() => makeCharacter(
  5614. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5615. {
  5616. front: {
  5617. height: math.unit(5 + 3 / 4, "feet"),
  5618. weight: math.unit(120, "lbs"),
  5619. name: "Front",
  5620. image: {
  5621. source: "./media/characters/tails/front.svg"
  5622. }
  5623. }
  5624. },
  5625. [
  5626. {
  5627. name: "Normal",
  5628. height: math.unit(5 + 3 / 4, "feet"),
  5629. default: true
  5630. }
  5631. ]
  5632. ))
  5633. characterMakers.push(() => makeCharacter(
  5634. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5635. {
  5636. front: {
  5637. height: math.unit(4, "feet"),
  5638. weight: math.unit(50, "lbs"),
  5639. name: "Front",
  5640. image: {
  5641. source: "./media/characters/rainy/front.svg"
  5642. }
  5643. }
  5644. },
  5645. [
  5646. {
  5647. name: "Macro",
  5648. height: math.unit(800, "feet"),
  5649. default: true
  5650. }
  5651. ]
  5652. ))
  5653. characterMakers.push(() => makeCharacter(
  5654. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5655. {
  5656. front: {
  5657. height: math.unit(6, "feet"),
  5658. weight: math.unit(150, "lbs"),
  5659. name: "Front",
  5660. image: {
  5661. source: "./media/characters/rainier/front.svg"
  5662. }
  5663. }
  5664. },
  5665. [
  5666. {
  5667. name: "Micro",
  5668. height: math.unit(2, "mm"),
  5669. default: true
  5670. }
  5671. ]
  5672. ))
  5673. characterMakers.push(() => makeCharacter(
  5674. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5675. {
  5676. front: {
  5677. height: math.unit(8 + 4/12, "feet"),
  5678. name: "Front",
  5679. image: {
  5680. source: "./media/characters/andy-renard/front.svg",
  5681. extra: 1839/1726,
  5682. bottom: 134/1973
  5683. }
  5684. },
  5685. back: {
  5686. height: math.unit(8 + 4/12, "feet"),
  5687. name: "Back",
  5688. image: {
  5689. source: "./media/characters/andy-renard/back.svg",
  5690. extra: 1838/1710,
  5691. bottom: 105/1943
  5692. }
  5693. },
  5694. },
  5695. [
  5696. {
  5697. name: "Tall",
  5698. height: math.unit(8 + 4/12, "feet")
  5699. },
  5700. {
  5701. name: "Mini Macro",
  5702. height: math.unit(15, "feet"),
  5703. default: true
  5704. },
  5705. {
  5706. name: "Macro",
  5707. height: math.unit(100, "feet")
  5708. },
  5709. {
  5710. name: "Mega Macro",
  5711. height: math.unit(1000, "feet")
  5712. },
  5713. {
  5714. name: "Giga Macro",
  5715. height: math.unit(10, "miles")
  5716. },
  5717. {
  5718. name: "God Macro",
  5719. height: math.unit(1, "multiverse")
  5720. },
  5721. ]
  5722. ))
  5723. characterMakers.push(() => makeCharacter(
  5724. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5725. {
  5726. front: {
  5727. height: math.unit(6, "feet"),
  5728. weight: math.unit(210, "lbs"),
  5729. name: "Front",
  5730. image: {
  5731. source: "./media/characters/cimmaron/front-sfw.svg",
  5732. extra: 701 / 676,
  5733. bottom: 0.046
  5734. }
  5735. },
  5736. back: {
  5737. height: math.unit(6, "feet"),
  5738. weight: math.unit(210, "lbs"),
  5739. name: "Back",
  5740. image: {
  5741. source: "./media/characters/cimmaron/back-sfw.svg",
  5742. extra: 701 / 676,
  5743. bottom: 0.046
  5744. }
  5745. },
  5746. frontNsfw: {
  5747. height: math.unit(6, "feet"),
  5748. weight: math.unit(210, "lbs"),
  5749. name: "Front (NSFW)",
  5750. image: {
  5751. source: "./media/characters/cimmaron/front-nsfw.svg",
  5752. extra: 701 / 676,
  5753. bottom: 0.046
  5754. }
  5755. },
  5756. backNsfw: {
  5757. height: math.unit(6, "feet"),
  5758. weight: math.unit(210, "lbs"),
  5759. name: "Back (NSFW)",
  5760. image: {
  5761. source: "./media/characters/cimmaron/back-nsfw.svg",
  5762. extra: 701 / 676,
  5763. bottom: 0.046
  5764. }
  5765. },
  5766. dick: {
  5767. height: math.unit(1.714, "feet"),
  5768. name: "Dick",
  5769. image: {
  5770. source: "./media/characters/cimmaron/dick.svg"
  5771. }
  5772. },
  5773. },
  5774. [
  5775. {
  5776. name: "Normal",
  5777. height: math.unit(6, "feet"),
  5778. default: true
  5779. },
  5780. {
  5781. name: "Macro Mayor",
  5782. height: math.unit(350, "meters")
  5783. },
  5784. ]
  5785. ))
  5786. characterMakers.push(() => makeCharacter(
  5787. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5788. {
  5789. front: {
  5790. height: math.unit(6, "feet"),
  5791. weight: math.unit(200, "lbs"),
  5792. name: "Front",
  5793. image: {
  5794. source: "./media/characters/akari/front.svg",
  5795. extra: 962 / 901,
  5796. bottom: 0.04
  5797. }
  5798. }
  5799. },
  5800. [
  5801. {
  5802. name: "Micro",
  5803. height: math.unit(5, "inches"),
  5804. default: true
  5805. },
  5806. {
  5807. name: "Normal",
  5808. height: math.unit(7, "feet")
  5809. },
  5810. ]
  5811. ))
  5812. characterMakers.push(() => makeCharacter(
  5813. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5814. {
  5815. front: {
  5816. height: math.unit(6, "feet"),
  5817. weight: math.unit(140, "lbs"),
  5818. name: "Front",
  5819. image: {
  5820. source: "./media/characters/cynosura/front.svg",
  5821. extra: 896 / 847
  5822. }
  5823. },
  5824. back: {
  5825. height: math.unit(6, "feet"),
  5826. weight: math.unit(140, "lbs"),
  5827. name: "Back",
  5828. image: {
  5829. source: "./media/characters/cynosura/back.svg",
  5830. extra: 1365 / 1250
  5831. }
  5832. },
  5833. },
  5834. [
  5835. {
  5836. name: "Micro",
  5837. height: math.unit(4, "inches")
  5838. },
  5839. {
  5840. name: "Normal",
  5841. height: math.unit(5.75, "feet"),
  5842. default: true
  5843. },
  5844. {
  5845. name: "Tall",
  5846. height: math.unit(10, "feet")
  5847. },
  5848. {
  5849. name: "Big",
  5850. height: math.unit(20, "feet")
  5851. },
  5852. {
  5853. name: "Macro",
  5854. height: math.unit(50, "feet")
  5855. },
  5856. ]
  5857. ))
  5858. characterMakers.push(() => makeCharacter(
  5859. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5860. {
  5861. front: {
  5862. height: math.unit(13 + 2/12, "feet"),
  5863. weight: math.unit(800, "kg"),
  5864. name: "Front",
  5865. image: {
  5866. source: "./media/characters/gin/front.svg",
  5867. extra: 1312/1191,
  5868. bottom: 45/1357
  5869. }
  5870. },
  5871. mouth: {
  5872. height: math.unit(2.39 * 1.8, "feet"),
  5873. name: "Mouth",
  5874. image: {
  5875. source: "./media/characters/gin/mouth.svg"
  5876. }
  5877. },
  5878. hand: {
  5879. height: math.unit(1.57 * 2.19, "feet"),
  5880. name: "Hand",
  5881. image: {
  5882. source: "./media/characters/gin/hand.svg"
  5883. }
  5884. },
  5885. foot: {
  5886. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5887. name: "Foot",
  5888. image: {
  5889. source: "./media/characters/gin/foot.svg"
  5890. }
  5891. },
  5892. sole: {
  5893. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5894. name: "Sole",
  5895. image: {
  5896. source: "./media/characters/gin/sole.svg"
  5897. }
  5898. },
  5899. },
  5900. [
  5901. {
  5902. name: "Very Small",
  5903. height: math.unit(13 + 2 / 12, "feet")
  5904. },
  5905. {
  5906. name: "Micro",
  5907. height: math.unit(600, "miles")
  5908. },
  5909. {
  5910. name: "Regular",
  5911. height: math.unit(20, "earths"),
  5912. default: true
  5913. },
  5914. {
  5915. name: "Macro",
  5916. height: math.unit(2.2, "solarradii")
  5917. },
  5918. {
  5919. name: "Teramacro",
  5920. height: math.unit(1.2, "galaxies")
  5921. },
  5922. {
  5923. name: "Omegamacro",
  5924. height: math.unit(200, "universes")
  5925. },
  5926. ]
  5927. ))
  5928. characterMakers.push(() => makeCharacter(
  5929. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5930. {
  5931. front: {
  5932. height: math.unit(6 + 1 / 6, "feet"),
  5933. weight: math.unit(178, "lbs"),
  5934. name: "Front",
  5935. image: {
  5936. source: "./media/characters/guy/front.svg"
  5937. }
  5938. }
  5939. },
  5940. [
  5941. {
  5942. name: "Normal",
  5943. height: math.unit(6 + 1 / 6, "feet"),
  5944. default: true
  5945. },
  5946. {
  5947. name: "Large",
  5948. height: math.unit(25 + 7 / 12, "feet")
  5949. },
  5950. {
  5951. name: "Macro",
  5952. height: math.unit(60 + 9 / 12, "feet")
  5953. },
  5954. {
  5955. name: "Macro+",
  5956. height: math.unit(246, "feet")
  5957. },
  5958. {
  5959. name: "Macro++",
  5960. height: math.unit(878, "feet")
  5961. }
  5962. ]
  5963. ))
  5964. characterMakers.push(() => makeCharacter(
  5965. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5966. {
  5967. front: {
  5968. height: math.unit(9, "feet"),
  5969. weight: math.unit(800, "lbs"),
  5970. name: "Front",
  5971. image: {
  5972. source: "./media/characters/tiberius/front.svg",
  5973. extra: 2295 / 2071
  5974. }
  5975. },
  5976. back: {
  5977. height: math.unit(9, "feet"),
  5978. weight: math.unit(800, "lbs"),
  5979. name: "Back",
  5980. image: {
  5981. source: "./media/characters/tiberius/back.svg",
  5982. extra: 2373 / 2160
  5983. }
  5984. },
  5985. },
  5986. [
  5987. {
  5988. name: "Normal",
  5989. height: math.unit(9, "feet"),
  5990. default: true
  5991. }
  5992. ]
  5993. ))
  5994. characterMakers.push(() => makeCharacter(
  5995. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5996. {
  5997. front: {
  5998. height: math.unit(6, "feet"),
  5999. weight: math.unit(600, "lbs"),
  6000. name: "Front",
  6001. image: {
  6002. source: "./media/characters/surgo/front.svg",
  6003. extra: 3591 / 2227
  6004. }
  6005. },
  6006. back: {
  6007. height: math.unit(6, "feet"),
  6008. weight: math.unit(600, "lbs"),
  6009. name: "Back",
  6010. image: {
  6011. source: "./media/characters/surgo/back.svg",
  6012. extra: 3557 / 2228
  6013. }
  6014. },
  6015. laying: {
  6016. height: math.unit(6 * 0.85, "feet"),
  6017. weight: math.unit(600, "lbs"),
  6018. name: "Laying",
  6019. image: {
  6020. source: "./media/characters/surgo/laying.svg"
  6021. }
  6022. },
  6023. },
  6024. [
  6025. {
  6026. name: "Normal",
  6027. height: math.unit(6, "feet"),
  6028. default: true
  6029. }
  6030. ]
  6031. ))
  6032. characterMakers.push(() => makeCharacter(
  6033. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6034. {
  6035. side: {
  6036. height: math.unit(6, "feet"),
  6037. weight: math.unit(150, "lbs"),
  6038. name: "Side",
  6039. image: {
  6040. source: "./media/characters/cibus/side.svg",
  6041. extra: 800 / 400
  6042. }
  6043. },
  6044. },
  6045. [
  6046. {
  6047. name: "Normal",
  6048. height: math.unit(6, "feet"),
  6049. default: true
  6050. }
  6051. ]
  6052. ))
  6053. characterMakers.push(() => makeCharacter(
  6054. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6055. {
  6056. front: {
  6057. height: math.unit(6, "feet"),
  6058. weight: math.unit(240, "lbs"),
  6059. name: "Front",
  6060. image: {
  6061. source: "./media/characters/nibbles/front.svg"
  6062. }
  6063. },
  6064. side: {
  6065. height: math.unit(6, "feet"),
  6066. weight: math.unit(240, "lbs"),
  6067. name: "Side",
  6068. image: {
  6069. source: "./media/characters/nibbles/side.svg"
  6070. }
  6071. },
  6072. },
  6073. [
  6074. {
  6075. name: "Normal",
  6076. height: math.unit(9, "feet"),
  6077. default: true
  6078. }
  6079. ]
  6080. ))
  6081. characterMakers.push(() => makeCharacter(
  6082. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6083. {
  6084. side: {
  6085. height: math.unit(5 + 1 / 6, "feet"),
  6086. weight: math.unit(130, "lbs"),
  6087. name: "Side",
  6088. image: {
  6089. source: "./media/characters/rikky/side.svg",
  6090. extra: 851 / 801
  6091. }
  6092. },
  6093. },
  6094. [
  6095. {
  6096. name: "Normal",
  6097. height: math.unit(5 + 1 / 6, "feet")
  6098. },
  6099. {
  6100. name: "Macro",
  6101. height: math.unit(152, "feet"),
  6102. default: true
  6103. },
  6104. {
  6105. name: "Megamacro",
  6106. height: math.unit(7, "miles")
  6107. }
  6108. ]
  6109. ))
  6110. characterMakers.push(() => makeCharacter(
  6111. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6112. {
  6113. side: {
  6114. height: math.unit(370, "cm"),
  6115. weight: math.unit(350, "lbs"),
  6116. name: "Side",
  6117. image: {
  6118. source: "./media/characters/malfressa/side.svg"
  6119. }
  6120. },
  6121. walking: {
  6122. height: math.unit(370, "cm"),
  6123. weight: math.unit(350, "lbs"),
  6124. name: "Walking",
  6125. image: {
  6126. source: "./media/characters/malfressa/walking.svg"
  6127. }
  6128. },
  6129. feral: {
  6130. height: math.unit(2500, "cm"),
  6131. weight: math.unit(100000, "lbs"),
  6132. name: "Feral",
  6133. image: {
  6134. source: "./media/characters/malfressa/feral.svg",
  6135. extra: 2108 / 837,
  6136. bottom: 0.02
  6137. }
  6138. },
  6139. },
  6140. [
  6141. {
  6142. name: "Normal",
  6143. height: math.unit(370, "cm")
  6144. },
  6145. {
  6146. name: "Macro",
  6147. height: math.unit(300, "meters"),
  6148. default: true
  6149. }
  6150. ]
  6151. ))
  6152. characterMakers.push(() => makeCharacter(
  6153. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6154. {
  6155. front: {
  6156. height: math.unit(6, "feet"),
  6157. weight: math.unit(60, "kg"),
  6158. name: "Front",
  6159. image: {
  6160. source: "./media/characters/jaro/front.svg"
  6161. }
  6162. },
  6163. back: {
  6164. height: math.unit(6, "feet"),
  6165. weight: math.unit(60, "kg"),
  6166. name: "Back",
  6167. image: {
  6168. source: "./media/characters/jaro/back.svg"
  6169. }
  6170. },
  6171. },
  6172. [
  6173. {
  6174. name: "Micro",
  6175. height: math.unit(7, "inches")
  6176. },
  6177. {
  6178. name: "Normal",
  6179. height: math.unit(5.5, "feet"),
  6180. default: true
  6181. },
  6182. {
  6183. name: "Minimacro",
  6184. height: math.unit(20, "feet")
  6185. },
  6186. {
  6187. name: "Macro",
  6188. height: math.unit(200, "meters")
  6189. }
  6190. ]
  6191. ))
  6192. characterMakers.push(() => makeCharacter(
  6193. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6194. {
  6195. front: {
  6196. height: math.unit(6, "feet"),
  6197. weight: math.unit(195, "lb"),
  6198. name: "Front",
  6199. image: {
  6200. source: "./media/characters/rogue/front.svg"
  6201. }
  6202. },
  6203. },
  6204. [
  6205. {
  6206. name: "Macro",
  6207. height: math.unit(90, "feet"),
  6208. default: true
  6209. },
  6210. ]
  6211. ))
  6212. characterMakers.push(() => makeCharacter(
  6213. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6214. {
  6215. front: {
  6216. height: math.unit(5 + 8 / 12, "feet"),
  6217. weight: math.unit(140, "lb"),
  6218. name: "Front",
  6219. image: {
  6220. source: "./media/characters/piper/front.svg",
  6221. extra: 3948/3655,
  6222. bottom: 0/3948
  6223. }
  6224. },
  6225. },
  6226. [
  6227. {
  6228. name: "Micro",
  6229. height: math.unit(2, "inches")
  6230. },
  6231. {
  6232. name: "Normal",
  6233. height: math.unit(5 + 8 / 12, "feet")
  6234. },
  6235. {
  6236. name: "Macro",
  6237. height: math.unit(250, "feet"),
  6238. default: true
  6239. },
  6240. {
  6241. name: "Megamacro",
  6242. height: math.unit(7, "miles")
  6243. },
  6244. ]
  6245. ))
  6246. characterMakers.push(() => makeCharacter(
  6247. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6248. {
  6249. front: {
  6250. height: math.unit(6, "feet"),
  6251. weight: math.unit(220, "lb"),
  6252. name: "Front",
  6253. image: {
  6254. source: "./media/characters/gemini/front.svg"
  6255. }
  6256. },
  6257. back: {
  6258. height: math.unit(6, "feet"),
  6259. weight: math.unit(220, "lb"),
  6260. name: "Back",
  6261. image: {
  6262. source: "./media/characters/gemini/back.svg"
  6263. }
  6264. },
  6265. kneeling: {
  6266. height: math.unit(6 / 1.5, "feet"),
  6267. weight: math.unit(220, "lb"),
  6268. name: "Kneeling",
  6269. image: {
  6270. source: "./media/characters/gemini/kneeling.svg",
  6271. bottom: 0.02
  6272. }
  6273. },
  6274. },
  6275. [
  6276. {
  6277. name: "Macro",
  6278. height: math.unit(300, "meters"),
  6279. default: true
  6280. },
  6281. {
  6282. name: "Megamacro",
  6283. height: math.unit(6900, "meters")
  6284. },
  6285. ]
  6286. ))
  6287. characterMakers.push(() => makeCharacter(
  6288. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6289. {
  6290. anthro: {
  6291. height: math.unit(2.35, "meters"),
  6292. weight: math.unit(73, "kg"),
  6293. name: "Anthro",
  6294. image: {
  6295. source: "./media/characters/alicia/anthro.svg",
  6296. extra: 2571 / 2385,
  6297. bottom: 75 / 2648
  6298. }
  6299. },
  6300. paw: {
  6301. height: math.unit(1.32, "feet"),
  6302. name: "Paw",
  6303. image: {
  6304. source: "./media/characters/alicia/paw.svg"
  6305. }
  6306. },
  6307. feral: {
  6308. height: math.unit(1.69, "meters"),
  6309. weight: math.unit(73, "kg"),
  6310. name: "Feral",
  6311. image: {
  6312. source: "./media/characters/alicia/feral.svg",
  6313. extra: 2123 / 1715,
  6314. bottom: 222 / 2349
  6315. }
  6316. },
  6317. },
  6318. [
  6319. {
  6320. name: "Normal",
  6321. height: math.unit(2.35, "meters")
  6322. },
  6323. {
  6324. name: "Macro",
  6325. height: math.unit(60, "meters"),
  6326. default: true
  6327. },
  6328. {
  6329. name: "Megamacro",
  6330. height: math.unit(10000, "kilometers")
  6331. },
  6332. ]
  6333. ))
  6334. characterMakers.push(() => makeCharacter(
  6335. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6336. {
  6337. front: {
  6338. height: math.unit(7, "feet"),
  6339. weight: math.unit(250, "lbs"),
  6340. name: "Front",
  6341. image: {
  6342. source: "./media/characters/archy/front.svg"
  6343. }
  6344. }
  6345. },
  6346. [
  6347. {
  6348. name: "Micro",
  6349. height: math.unit(1, "inch")
  6350. },
  6351. {
  6352. name: "Shorty",
  6353. height: math.unit(5, "feet")
  6354. },
  6355. {
  6356. name: "Normal",
  6357. height: math.unit(7, "feet")
  6358. },
  6359. {
  6360. name: "Macro",
  6361. height: math.unit(600, "meters"),
  6362. default: true
  6363. },
  6364. {
  6365. name: "Megamacro",
  6366. height: math.unit(1, "mile")
  6367. },
  6368. ]
  6369. ))
  6370. characterMakers.push(() => makeCharacter(
  6371. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6372. {
  6373. front: {
  6374. height: math.unit(1.65, "meters"),
  6375. weight: math.unit(74, "kg"),
  6376. name: "Front",
  6377. image: {
  6378. source: "./media/characters/berri/front.svg",
  6379. extra: 857 / 837,
  6380. bottom: 18 / 877
  6381. }
  6382. },
  6383. bum: {
  6384. height: math.unit(1.46, "feet"),
  6385. name: "Bum",
  6386. image: {
  6387. source: "./media/characters/berri/bum.svg"
  6388. }
  6389. },
  6390. mouth: {
  6391. height: math.unit(0.44, "feet"),
  6392. name: "Mouth",
  6393. image: {
  6394. source: "./media/characters/berri/mouth.svg"
  6395. }
  6396. },
  6397. paw: {
  6398. height: math.unit(0.826, "feet"),
  6399. name: "Paw",
  6400. image: {
  6401. source: "./media/characters/berri/paw.svg"
  6402. }
  6403. },
  6404. },
  6405. [
  6406. {
  6407. name: "Normal",
  6408. height: math.unit(1.65, "meters")
  6409. },
  6410. {
  6411. name: "Macro",
  6412. height: math.unit(60, "m"),
  6413. default: true
  6414. },
  6415. {
  6416. name: "Megamacro",
  6417. height: math.unit(9.213, "km")
  6418. },
  6419. {
  6420. name: "Planet Eater",
  6421. height: math.unit(489, "megameters")
  6422. },
  6423. {
  6424. name: "Teramacro",
  6425. height: math.unit(2471635000000, "meters")
  6426. },
  6427. {
  6428. name: "Examacro",
  6429. height: math.unit(8.0624e+26, "meters")
  6430. }
  6431. ]
  6432. ))
  6433. characterMakers.push(() => makeCharacter(
  6434. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6435. {
  6436. front: {
  6437. height: math.unit(1.72, "meters"),
  6438. weight: math.unit(68, "kg"),
  6439. name: "Front",
  6440. image: {
  6441. source: "./media/characters/lexi/front.svg"
  6442. }
  6443. }
  6444. },
  6445. [
  6446. {
  6447. name: "Very Smol",
  6448. height: math.unit(10, "mm")
  6449. },
  6450. {
  6451. name: "Micro",
  6452. height: math.unit(6.8, "cm"),
  6453. default: true
  6454. },
  6455. {
  6456. name: "Normal",
  6457. height: math.unit(1.72, "m")
  6458. }
  6459. ]
  6460. ))
  6461. characterMakers.push(() => makeCharacter(
  6462. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6463. {
  6464. front: {
  6465. height: math.unit(1.69, "meters"),
  6466. weight: math.unit(68, "kg"),
  6467. name: "Front",
  6468. image: {
  6469. source: "./media/characters/martin/front.svg",
  6470. extra: 596 / 581
  6471. }
  6472. }
  6473. },
  6474. [
  6475. {
  6476. name: "Micro",
  6477. height: math.unit(6.85, "cm"),
  6478. default: true
  6479. },
  6480. {
  6481. name: "Normal",
  6482. height: math.unit(1.69, "m")
  6483. }
  6484. ]
  6485. ))
  6486. characterMakers.push(() => makeCharacter(
  6487. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6488. {
  6489. front: {
  6490. height: math.unit(1.69, "meters"),
  6491. weight: math.unit(68, "kg"),
  6492. name: "Front",
  6493. image: {
  6494. source: "./media/characters/juno/front.svg"
  6495. }
  6496. }
  6497. },
  6498. [
  6499. {
  6500. name: "Micro",
  6501. height: math.unit(7, "cm")
  6502. },
  6503. {
  6504. name: "Normal",
  6505. height: math.unit(1.89, "m")
  6506. },
  6507. {
  6508. name: "Macro",
  6509. height: math.unit(353, "meters"),
  6510. default: true
  6511. }
  6512. ]
  6513. ))
  6514. characterMakers.push(() => makeCharacter(
  6515. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6516. {
  6517. front: {
  6518. height: math.unit(1.93, "meters"),
  6519. weight: math.unit(83, "kg"),
  6520. name: "Front",
  6521. image: {
  6522. source: "./media/characters/samantha/front.svg"
  6523. }
  6524. },
  6525. frontClothed: {
  6526. height: math.unit(1.93, "meters"),
  6527. weight: math.unit(83, "kg"),
  6528. name: "Front (Clothed)",
  6529. image: {
  6530. source: "./media/characters/samantha/front-clothed.svg"
  6531. }
  6532. },
  6533. back: {
  6534. height: math.unit(1.93, "meters"),
  6535. weight: math.unit(83, "kg"),
  6536. name: "Back",
  6537. image: {
  6538. source: "./media/characters/samantha/back.svg"
  6539. }
  6540. },
  6541. },
  6542. [
  6543. {
  6544. name: "Normal",
  6545. height: math.unit(1.93, "m")
  6546. },
  6547. {
  6548. name: "Macro",
  6549. height: math.unit(74, "meters"),
  6550. default: true
  6551. },
  6552. {
  6553. name: "Macro+",
  6554. height: math.unit(223, "meters"),
  6555. },
  6556. {
  6557. name: "Megamacro",
  6558. height: math.unit(8381, "meters"),
  6559. },
  6560. {
  6561. name: "Megamacro+",
  6562. height: math.unit(12000, "kilometers")
  6563. },
  6564. ]
  6565. ))
  6566. characterMakers.push(() => makeCharacter(
  6567. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6568. {
  6569. front: {
  6570. height: math.unit(1.92, "meters"),
  6571. weight: math.unit(80, "kg"),
  6572. name: "Front",
  6573. image: {
  6574. source: "./media/characters/dr-clay/front.svg"
  6575. }
  6576. },
  6577. frontClothed: {
  6578. height: math.unit(1.92, "meters"),
  6579. weight: math.unit(80, "kg"),
  6580. name: "Front (Clothed)",
  6581. image: {
  6582. source: "./media/characters/dr-clay/front-clothed.svg"
  6583. }
  6584. }
  6585. },
  6586. [
  6587. {
  6588. name: "Normal",
  6589. height: math.unit(1.92, "m")
  6590. },
  6591. {
  6592. name: "Macro",
  6593. height: math.unit(214, "meters"),
  6594. default: true
  6595. },
  6596. {
  6597. name: "Macro+",
  6598. height: math.unit(12.237, "meters"),
  6599. },
  6600. {
  6601. name: "Megamacro",
  6602. height: math.unit(557, "megameters"),
  6603. },
  6604. {
  6605. name: "Unimaginable",
  6606. height: math.unit(120e9, "lightyears")
  6607. },
  6608. ]
  6609. ))
  6610. characterMakers.push(() => makeCharacter(
  6611. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6612. {
  6613. front: {
  6614. height: math.unit(2, "meters"),
  6615. weight: math.unit(80, "kg"),
  6616. name: "Front",
  6617. image: {
  6618. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6619. }
  6620. }
  6621. },
  6622. [
  6623. {
  6624. name: "Teramacro",
  6625. height: math.unit(500000, "lightyears"),
  6626. default: true
  6627. },
  6628. ]
  6629. ))
  6630. characterMakers.push(() => makeCharacter(
  6631. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6632. {
  6633. crux: {
  6634. height: math.unit(2, "meters"),
  6635. weight: math.unit(150, "kg"),
  6636. name: "Crux",
  6637. image: {
  6638. source: "./media/characters/vemus/crux.svg",
  6639. extra: 1074/936,
  6640. bottom: 23/1097
  6641. }
  6642. },
  6643. skunkTanuki: {
  6644. height: math.unit(2, "meters"),
  6645. weight: math.unit(150, "kg"),
  6646. name: "Skunk-Tanuki",
  6647. image: {
  6648. source: "./media/characters/vemus/skunk-tanuki.svg",
  6649. extra: 926/893,
  6650. bottom: 20/946
  6651. }
  6652. },
  6653. },
  6654. [
  6655. {
  6656. name: "Normal",
  6657. height: math.unit(3.75, "meters"),
  6658. default: true
  6659. },
  6660. {
  6661. name: "Big",
  6662. height: math.unit(8, "meters")
  6663. },
  6664. {
  6665. name: "Macro",
  6666. height: math.unit(100, "meters")
  6667. },
  6668. {
  6669. name: "Macro+",
  6670. height: math.unit(1500, "meters")
  6671. },
  6672. {
  6673. name: "Stellar",
  6674. height: math.unit(14e8, "meters")
  6675. },
  6676. ]
  6677. ))
  6678. characterMakers.push(() => makeCharacter(
  6679. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6680. {
  6681. front: {
  6682. height: math.unit(2, "meters"),
  6683. weight: math.unit(70, "kg"),
  6684. name: "Front",
  6685. image: {
  6686. source: "./media/characters/beherit/front.svg",
  6687. extra: 1408 / 1242
  6688. }
  6689. }
  6690. },
  6691. [
  6692. {
  6693. name: "Normal",
  6694. height: math.unit(6, "feet")
  6695. },
  6696. {
  6697. name: "Lorg",
  6698. height: math.unit(25, "feet"),
  6699. default: true
  6700. },
  6701. {
  6702. name: "Lorger",
  6703. height: math.unit(75, "feet")
  6704. },
  6705. {
  6706. name: "Macro",
  6707. height: math.unit(200, "meters")
  6708. },
  6709. ]
  6710. ))
  6711. characterMakers.push(() => makeCharacter(
  6712. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6713. {
  6714. front: {
  6715. height: math.unit(2, "meters"),
  6716. weight: math.unit(150, "kg"),
  6717. name: "Front",
  6718. image: {
  6719. source: "./media/characters/everett/front.svg",
  6720. extra: 2038 / 1737,
  6721. bottom: 0.03
  6722. }
  6723. },
  6724. paw: {
  6725. height: math.unit(2 / 3.6, "meters"),
  6726. name: "Paw",
  6727. image: {
  6728. source: "./media/characters/everett/paw.svg"
  6729. }
  6730. },
  6731. },
  6732. [
  6733. {
  6734. name: "Normal",
  6735. height: math.unit(15, "feet"),
  6736. default: true
  6737. },
  6738. {
  6739. name: "Lorg",
  6740. height: math.unit(70, "feet"),
  6741. default: true
  6742. },
  6743. {
  6744. name: "Lorger",
  6745. height: math.unit(250, "feet")
  6746. },
  6747. {
  6748. name: "Macro",
  6749. height: math.unit(500, "meters")
  6750. },
  6751. ]
  6752. ))
  6753. characterMakers.push(() => makeCharacter(
  6754. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6755. {
  6756. front: {
  6757. height: math.unit(2, "meters"),
  6758. weight: math.unit(86, "kg"),
  6759. name: "Front",
  6760. image: {
  6761. source: "./media/characters/rose/front.svg",
  6762. extra: 1785/1636,
  6763. bottom: 30/1815
  6764. }
  6765. },
  6766. frontSporty: {
  6767. height: math.unit(2, "meters"),
  6768. weight: math.unit(86, "kg"),
  6769. name: "Front (Sporty)",
  6770. image: {
  6771. source: "./media/characters/rose/front-sporty.svg",
  6772. extra: 350/335,
  6773. bottom: 10/360
  6774. }
  6775. },
  6776. frontAlt: {
  6777. height: math.unit(1.6, "meters"),
  6778. weight: math.unit(86, "kg"),
  6779. name: "Front (Alt)",
  6780. image: {
  6781. source: "./media/characters/rose/front-alt.svg",
  6782. extra: 299/283,
  6783. bottom: 3/302
  6784. }
  6785. },
  6786. plush: {
  6787. height: math.unit(2, "meters"),
  6788. weight: math.unit(86/3, "kg"),
  6789. name: "Plush",
  6790. image: {
  6791. source: "./media/characters/rose/plush.svg",
  6792. extra: 361/337,
  6793. bottom: 11/372
  6794. }
  6795. },
  6796. },
  6797. [
  6798. {
  6799. name: "True Micro",
  6800. height: math.unit(9, "cm")
  6801. },
  6802. {
  6803. name: "Micro",
  6804. height: math.unit(16, "cm")
  6805. },
  6806. {
  6807. name: "Normal",
  6808. height: math.unit(1.85, "meters"),
  6809. default: true
  6810. },
  6811. {
  6812. name: "Mini-Macro",
  6813. height: math.unit(5, "meters")
  6814. },
  6815. {
  6816. name: "Macro",
  6817. height: math.unit(15, "meters")
  6818. },
  6819. {
  6820. name: "True Macro",
  6821. height: math.unit(40, "meters")
  6822. },
  6823. {
  6824. name: "City Scale",
  6825. height: math.unit(1, "km")
  6826. },
  6827. ]
  6828. ))
  6829. characterMakers.push(() => makeCharacter(
  6830. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6831. {
  6832. front: {
  6833. height: math.unit(2, "meters"),
  6834. weight: math.unit(350, "lbs"),
  6835. name: "Front",
  6836. image: {
  6837. source: "./media/characters/regal/front.svg"
  6838. }
  6839. },
  6840. back: {
  6841. height: math.unit(2, "meters"),
  6842. weight: math.unit(350, "lbs"),
  6843. name: "Back",
  6844. image: {
  6845. source: "./media/characters/regal/back.svg"
  6846. }
  6847. },
  6848. },
  6849. [
  6850. {
  6851. name: "Macro",
  6852. height: math.unit(350, "feet"),
  6853. default: true
  6854. }
  6855. ]
  6856. ))
  6857. characterMakers.push(() => makeCharacter(
  6858. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6859. {
  6860. front: {
  6861. height: math.unit(4 + 11 / 12, "feet"),
  6862. weight: math.unit(100, "lbs"),
  6863. name: "Front",
  6864. image: {
  6865. source: "./media/characters/opal/front.svg"
  6866. }
  6867. },
  6868. frontAlt: {
  6869. height: math.unit(4 + 11 / 12, "feet"),
  6870. weight: math.unit(100, "lbs"),
  6871. name: "Front (Alt)",
  6872. image: {
  6873. source: "./media/characters/opal/front-alt.svg"
  6874. }
  6875. },
  6876. },
  6877. [
  6878. {
  6879. name: "Small",
  6880. height: math.unit(4 + 11 / 12, "feet")
  6881. },
  6882. {
  6883. name: "Normal",
  6884. height: math.unit(20, "feet"),
  6885. default: true
  6886. },
  6887. {
  6888. name: "Macro",
  6889. height: math.unit(120, "feet")
  6890. },
  6891. {
  6892. name: "Megamacro",
  6893. height: math.unit(80, "miles")
  6894. },
  6895. {
  6896. name: "True Size",
  6897. height: math.unit(100000, "lightyears")
  6898. },
  6899. ]
  6900. ))
  6901. characterMakers.push(() => makeCharacter(
  6902. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6903. {
  6904. front: {
  6905. height: math.unit(6, "feet"),
  6906. weight: math.unit(200, "lbs"),
  6907. name: "Front",
  6908. image: {
  6909. source: "./media/characters/vector-wuff/front.svg"
  6910. }
  6911. }
  6912. },
  6913. [
  6914. {
  6915. name: "Normal",
  6916. height: math.unit(2.8, "meters")
  6917. },
  6918. {
  6919. name: "Macro",
  6920. height: math.unit(450, "meters"),
  6921. default: true
  6922. },
  6923. {
  6924. name: "Megamacro",
  6925. height: math.unit(15, "kilometers")
  6926. }
  6927. ]
  6928. ))
  6929. characterMakers.push(() => makeCharacter(
  6930. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6931. {
  6932. front: {
  6933. height: math.unit(6, "feet"),
  6934. weight: math.unit(256, "lbs"),
  6935. name: "Front",
  6936. image: {
  6937. source: "./media/characters/dannik/front.svg"
  6938. }
  6939. }
  6940. },
  6941. [
  6942. {
  6943. name: "Macro",
  6944. height: math.unit(69.57, "meters"),
  6945. default: true
  6946. },
  6947. ]
  6948. ))
  6949. characterMakers.push(() => makeCharacter(
  6950. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6951. {
  6952. front: {
  6953. height: math.unit(6, "feet"),
  6954. weight: math.unit(120, "lbs"),
  6955. name: "Front",
  6956. image: {
  6957. source: "./media/characters/azura-saharah/front.svg"
  6958. }
  6959. },
  6960. back: {
  6961. height: math.unit(6, "feet"),
  6962. weight: math.unit(120, "lbs"),
  6963. name: "Back",
  6964. image: {
  6965. source: "./media/characters/azura-saharah/back.svg"
  6966. }
  6967. },
  6968. },
  6969. [
  6970. {
  6971. name: "Macro",
  6972. height: math.unit(100, "feet"),
  6973. default: true
  6974. },
  6975. ]
  6976. ))
  6977. characterMakers.push(() => makeCharacter(
  6978. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6979. {
  6980. side: {
  6981. height: math.unit(5 + 4 / 12, "feet"),
  6982. weight: math.unit(163, "lbs"),
  6983. name: "Side",
  6984. image: {
  6985. source: "./media/characters/kennedy/side.svg"
  6986. }
  6987. }
  6988. },
  6989. [
  6990. {
  6991. name: "Standard Doggo",
  6992. height: math.unit(5 + 4 / 12, "feet")
  6993. },
  6994. {
  6995. name: "Big Doggo",
  6996. height: math.unit(25 + 3 / 12, "feet"),
  6997. default: true
  6998. },
  6999. ]
  7000. ))
  7001. characterMakers.push(() => makeCharacter(
  7002. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7003. {
  7004. front: {
  7005. height: math.unit(6, "feet"),
  7006. weight: math.unit(90, "lbs"),
  7007. name: "Front",
  7008. image: {
  7009. source: "./media/characters/odi-lunar/front.svg"
  7010. }
  7011. }
  7012. },
  7013. [
  7014. {
  7015. name: "Micro",
  7016. height: math.unit(3, "inches"),
  7017. default: true
  7018. },
  7019. {
  7020. name: "Normal",
  7021. height: math.unit(5.5, "feet")
  7022. }
  7023. ]
  7024. ))
  7025. characterMakers.push(() => makeCharacter(
  7026. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7027. {
  7028. back: {
  7029. height: math.unit(6, "feet"),
  7030. weight: math.unit(220, "lbs"),
  7031. name: "Back",
  7032. image: {
  7033. source: "./media/characters/mandake/back.svg"
  7034. }
  7035. }
  7036. },
  7037. [
  7038. {
  7039. name: "Normal",
  7040. height: math.unit(7, "feet"),
  7041. default: true
  7042. },
  7043. {
  7044. name: "Macro",
  7045. height: math.unit(78, "feet")
  7046. },
  7047. {
  7048. name: "Macro+",
  7049. height: math.unit(300, "meters")
  7050. },
  7051. {
  7052. name: "Macro++",
  7053. height: math.unit(2400, "feet")
  7054. },
  7055. {
  7056. name: "Megamacro",
  7057. height: math.unit(5167, "meters")
  7058. },
  7059. {
  7060. name: "Gigamacro",
  7061. height: math.unit(41769, "miles")
  7062. },
  7063. ]
  7064. ))
  7065. characterMakers.push(() => makeCharacter(
  7066. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7067. {
  7068. front: {
  7069. height: math.unit(6, "feet"),
  7070. weight: math.unit(120, "lbs"),
  7071. name: "Front",
  7072. image: {
  7073. source: "./media/characters/yozey/front.svg"
  7074. }
  7075. },
  7076. frontAlt: {
  7077. height: math.unit(6, "feet"),
  7078. weight: math.unit(120, "lbs"),
  7079. name: "Front (Alt)",
  7080. image: {
  7081. source: "./media/characters/yozey/front-alt.svg"
  7082. }
  7083. },
  7084. side: {
  7085. height: math.unit(6, "feet"),
  7086. weight: math.unit(120, "lbs"),
  7087. name: "Side",
  7088. image: {
  7089. source: "./media/characters/yozey/side.svg"
  7090. }
  7091. },
  7092. },
  7093. [
  7094. {
  7095. name: "Micro",
  7096. height: math.unit(3, "inches"),
  7097. default: true
  7098. },
  7099. {
  7100. name: "Normal",
  7101. height: math.unit(6, "feet")
  7102. }
  7103. ]
  7104. ))
  7105. characterMakers.push(() => makeCharacter(
  7106. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7107. {
  7108. front: {
  7109. height: math.unit(6, "feet"),
  7110. weight: math.unit(103, "lbs"),
  7111. name: "Front",
  7112. image: {
  7113. source: "./media/characters/valeska-voss/front.svg"
  7114. }
  7115. }
  7116. },
  7117. [
  7118. {
  7119. name: "Mini-Sized Sub",
  7120. height: math.unit(3.1, "inches")
  7121. },
  7122. {
  7123. name: "Mid-Sized Sub",
  7124. height: math.unit(6.2, "inches")
  7125. },
  7126. {
  7127. name: "Full-Sized Sub",
  7128. height: math.unit(9.3, "inches")
  7129. },
  7130. {
  7131. name: "Normal",
  7132. height: math.unit(5 + 2 / 12, "foot"),
  7133. default: true
  7134. },
  7135. ]
  7136. ))
  7137. characterMakers.push(() => makeCharacter(
  7138. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7139. {
  7140. front: {
  7141. height: math.unit(6, "feet"),
  7142. weight: math.unit(160, "lbs"),
  7143. name: "Front",
  7144. image: {
  7145. source: "./media/characters/gene-zeta/front.svg",
  7146. extra: 3006 / 2826,
  7147. bottom: 182 / 3188
  7148. }
  7149. }
  7150. },
  7151. [
  7152. {
  7153. name: "Micro",
  7154. height: math.unit(6, "inches")
  7155. },
  7156. {
  7157. name: "Normal",
  7158. height: math.unit(5 + 11 / 12, "foot"),
  7159. default: true
  7160. },
  7161. {
  7162. name: "Macro",
  7163. height: math.unit(140, "feet")
  7164. },
  7165. {
  7166. name: "Supercharged",
  7167. height: math.unit(2500, "feet")
  7168. },
  7169. ]
  7170. ))
  7171. characterMakers.push(() => makeCharacter(
  7172. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7173. {
  7174. front: {
  7175. height: math.unit(6, "feet"),
  7176. weight: math.unit(350, "lbs"),
  7177. name: "Front",
  7178. image: {
  7179. source: "./media/characters/razinox/front.svg",
  7180. extra: 1686 / 1548,
  7181. bottom: 28.2 / 1868
  7182. }
  7183. },
  7184. back: {
  7185. height: math.unit(6, "feet"),
  7186. weight: math.unit(350, "lbs"),
  7187. name: "Back",
  7188. image: {
  7189. source: "./media/characters/razinox/back.svg",
  7190. extra: 1660 / 1590,
  7191. bottom: 15 / 1665
  7192. }
  7193. },
  7194. },
  7195. [
  7196. {
  7197. name: "Normal",
  7198. height: math.unit(10 + 8 / 12, "foot")
  7199. },
  7200. {
  7201. name: "Minimacro",
  7202. height: math.unit(15, "foot")
  7203. },
  7204. {
  7205. name: "Macro",
  7206. height: math.unit(60, "foot"),
  7207. default: true
  7208. },
  7209. {
  7210. name: "Megamacro",
  7211. height: math.unit(5, "miles")
  7212. },
  7213. {
  7214. name: "Gigamacro",
  7215. height: math.unit(6000, "miles")
  7216. },
  7217. ]
  7218. ))
  7219. characterMakers.push(() => makeCharacter(
  7220. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7221. {
  7222. front: {
  7223. height: math.unit(6, "feet"),
  7224. weight: math.unit(150, "lbs"),
  7225. name: "Front",
  7226. image: {
  7227. source: "./media/characters/cobalt/front.svg"
  7228. }
  7229. }
  7230. },
  7231. [
  7232. {
  7233. name: "Normal",
  7234. height: math.unit(8 + 1 / 12, "foot")
  7235. },
  7236. {
  7237. name: "Macro",
  7238. height: math.unit(111, "foot"),
  7239. default: true
  7240. },
  7241. {
  7242. name: "Supracosmic",
  7243. height: math.unit(1e42, "feet")
  7244. },
  7245. ]
  7246. ))
  7247. characterMakers.push(() => makeCharacter(
  7248. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7249. {
  7250. front: {
  7251. height: math.unit(6, "feet"),
  7252. weight: math.unit(140, "lbs"),
  7253. name: "Front",
  7254. image: {
  7255. source: "./media/characters/amanda/front.svg"
  7256. }
  7257. }
  7258. },
  7259. [
  7260. {
  7261. name: "Micro",
  7262. height: math.unit(5, "inches"),
  7263. default: true
  7264. },
  7265. ]
  7266. ))
  7267. characterMakers.push(() => makeCharacter(
  7268. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7269. {
  7270. front: {
  7271. height: math.unit(2.75, "meters"),
  7272. weight: math.unit(1200, "lb"),
  7273. name: "Front",
  7274. image: {
  7275. source: "./media/characters/teal/front.svg",
  7276. extra: 2463 / 2320,
  7277. bottom: 166 / 2629
  7278. }
  7279. },
  7280. back: {
  7281. height: math.unit(2.75, "meters"),
  7282. weight: math.unit(1200, "lb"),
  7283. name: "Back",
  7284. image: {
  7285. source: "./media/characters/teal/back.svg",
  7286. extra: 2580 / 2489,
  7287. bottom: 151 / 2731
  7288. }
  7289. },
  7290. sitting: {
  7291. height: math.unit(1.9, "meters"),
  7292. weight: math.unit(1200, "lb"),
  7293. name: "Sitting",
  7294. image: {
  7295. source: "./media/characters/teal/sitting.svg",
  7296. extra: 623 / 590,
  7297. bottom: 121 / 744
  7298. }
  7299. },
  7300. standing: {
  7301. height: math.unit(2.75, "meters"),
  7302. weight: math.unit(1200, "lb"),
  7303. name: "Standing",
  7304. image: {
  7305. source: "./media/characters/teal/standing.svg",
  7306. extra: 923 / 893,
  7307. bottom: 60 / 983
  7308. }
  7309. },
  7310. stretching: {
  7311. height: math.unit(3.65, "meters"),
  7312. weight: math.unit(1200, "lb"),
  7313. name: "Stretching",
  7314. image: {
  7315. source: "./media/characters/teal/stretching.svg",
  7316. extra: 1276 / 1244,
  7317. bottom: 0 / 1276
  7318. }
  7319. },
  7320. legged: {
  7321. height: math.unit(1.3, "meters"),
  7322. weight: math.unit(100, "lb"),
  7323. name: "Legged",
  7324. image: {
  7325. source: "./media/characters/teal/legged.svg",
  7326. extra: 462 / 437,
  7327. bottom: 24 / 486
  7328. }
  7329. },
  7330. naga: {
  7331. height: math.unit(5.4, "meters"),
  7332. weight: math.unit(4000, "lb"),
  7333. name: "Naga",
  7334. image: {
  7335. source: "./media/characters/teal/naga.svg",
  7336. extra: 1902 / 1858,
  7337. bottom: 0 / 1902
  7338. }
  7339. },
  7340. hand: {
  7341. height: math.unit(0.52, "meters"),
  7342. name: "Hand",
  7343. image: {
  7344. source: "./media/characters/teal/hand.svg"
  7345. }
  7346. },
  7347. maw: {
  7348. height: math.unit(0.43, "meters"),
  7349. name: "Maw",
  7350. image: {
  7351. source: "./media/characters/teal/maw.svg"
  7352. }
  7353. },
  7354. slit: {
  7355. height: math.unit(0.25, "meters"),
  7356. name: "Slit",
  7357. image: {
  7358. source: "./media/characters/teal/slit.svg"
  7359. }
  7360. },
  7361. },
  7362. [
  7363. {
  7364. name: "Normal",
  7365. height: math.unit(2.75, "meters"),
  7366. default: true
  7367. },
  7368. {
  7369. name: "Macro",
  7370. height: math.unit(300, "feet")
  7371. },
  7372. {
  7373. name: "Macro+",
  7374. height: math.unit(2000, "feet")
  7375. },
  7376. ]
  7377. ))
  7378. characterMakers.push(() => makeCharacter(
  7379. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7380. {
  7381. frontCat: {
  7382. height: math.unit(6, "feet"),
  7383. weight: math.unit(180, "lbs"),
  7384. name: "Front (Cat)",
  7385. image: {
  7386. source: "./media/characters/ravin-amulet/front-cat.svg"
  7387. }
  7388. },
  7389. frontCatAlt: {
  7390. height: math.unit(6, "feet"),
  7391. weight: math.unit(180, "lbs"),
  7392. name: "Front (Alt, Cat)",
  7393. image: {
  7394. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7395. }
  7396. },
  7397. frontWerewolf: {
  7398. height: math.unit(6 * 1.2, "feet"),
  7399. weight: math.unit(225, "lbs"),
  7400. name: "Front (Werewolf)",
  7401. image: {
  7402. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7403. }
  7404. },
  7405. backWerewolf: {
  7406. height: math.unit(6 * 1.2, "feet"),
  7407. weight: math.unit(225, "lbs"),
  7408. name: "Back (Werewolf)",
  7409. image: {
  7410. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7411. }
  7412. },
  7413. },
  7414. [
  7415. {
  7416. name: "Nano",
  7417. height: math.unit(1, "micrometer")
  7418. },
  7419. {
  7420. name: "Micro",
  7421. height: math.unit(1, "inch")
  7422. },
  7423. {
  7424. name: "Normal",
  7425. height: math.unit(6, "feet"),
  7426. default: true
  7427. },
  7428. {
  7429. name: "Macro",
  7430. height: math.unit(60, "feet")
  7431. }
  7432. ]
  7433. ))
  7434. characterMakers.push(() => makeCharacter(
  7435. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7436. {
  7437. front: {
  7438. height: math.unit(6, "feet"),
  7439. weight: math.unit(165, "lbs"),
  7440. name: "Front",
  7441. image: {
  7442. source: "./media/characters/fluoresce/front.svg"
  7443. }
  7444. }
  7445. },
  7446. [
  7447. {
  7448. name: "Micro",
  7449. height: math.unit(6, "cm")
  7450. },
  7451. {
  7452. name: "Normal",
  7453. height: math.unit(5 + 7 / 12, "feet"),
  7454. default: true
  7455. },
  7456. {
  7457. name: "Macro",
  7458. height: math.unit(56, "feet")
  7459. },
  7460. {
  7461. name: "Megamacro",
  7462. height: math.unit(1.9, "miles")
  7463. },
  7464. ]
  7465. ))
  7466. characterMakers.push(() => makeCharacter(
  7467. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7468. {
  7469. front: {
  7470. height: math.unit(9 + 6 / 12, "feet"),
  7471. weight: math.unit(523, "lbs"),
  7472. name: "Side",
  7473. image: {
  7474. source: "./media/characters/aurora/side.svg"
  7475. }
  7476. }
  7477. },
  7478. [
  7479. {
  7480. name: "Normal",
  7481. height: math.unit(9 + 6 / 12, "feet")
  7482. },
  7483. {
  7484. name: "Macro",
  7485. height: math.unit(96, "feet"),
  7486. default: true
  7487. },
  7488. {
  7489. name: "Macro+",
  7490. height: math.unit(243, "feet")
  7491. },
  7492. ]
  7493. ))
  7494. characterMakers.push(() => makeCharacter(
  7495. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7496. {
  7497. front: {
  7498. height: math.unit(194, "cm"),
  7499. weight: math.unit(90, "kg"),
  7500. name: "Front",
  7501. image: {
  7502. source: "./media/characters/ranek/front.svg"
  7503. }
  7504. },
  7505. side: {
  7506. height: math.unit(194, "cm"),
  7507. weight: math.unit(90, "kg"),
  7508. name: "Side",
  7509. image: {
  7510. source: "./media/characters/ranek/side.svg"
  7511. }
  7512. },
  7513. back: {
  7514. height: math.unit(194, "cm"),
  7515. weight: math.unit(90, "kg"),
  7516. name: "Back",
  7517. image: {
  7518. source: "./media/characters/ranek/back.svg"
  7519. }
  7520. },
  7521. feral: {
  7522. height: math.unit(30, "cm"),
  7523. weight: math.unit(1.6, "lbs"),
  7524. name: "Feral",
  7525. image: {
  7526. source: "./media/characters/ranek/feral.svg"
  7527. }
  7528. },
  7529. },
  7530. [
  7531. {
  7532. name: "Normal",
  7533. height: math.unit(194, "cm"),
  7534. default: true
  7535. },
  7536. {
  7537. name: "Macro",
  7538. height: math.unit(100, "meters")
  7539. },
  7540. ]
  7541. ))
  7542. characterMakers.push(() => makeCharacter(
  7543. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7544. {
  7545. front: {
  7546. height: math.unit(5 + 6 / 12, "feet"),
  7547. weight: math.unit(153, "lbs"),
  7548. name: "Front",
  7549. image: {
  7550. source: "./media/characters/andrew-cooper/front.svg"
  7551. }
  7552. },
  7553. },
  7554. [
  7555. {
  7556. name: "Nano",
  7557. height: math.unit(1, "mm")
  7558. },
  7559. {
  7560. name: "Micro",
  7561. height: math.unit(2, "inches")
  7562. },
  7563. {
  7564. name: "Normal",
  7565. height: math.unit(5 + 6 / 12, "feet"),
  7566. default: true
  7567. }
  7568. ]
  7569. ))
  7570. characterMakers.push(() => makeCharacter(
  7571. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7572. {
  7573. front: {
  7574. height: math.unit(6, "feet"),
  7575. weight: math.unit(180, "lbs"),
  7576. name: "Front",
  7577. image: {
  7578. source: "./media/characters/akane-sato/front.svg",
  7579. extra: 1219 / 1140
  7580. }
  7581. },
  7582. back: {
  7583. height: math.unit(6, "feet"),
  7584. weight: math.unit(180, "lbs"),
  7585. name: "Back",
  7586. image: {
  7587. source: "./media/characters/akane-sato/back.svg",
  7588. extra: 1219 / 1170
  7589. }
  7590. },
  7591. },
  7592. [
  7593. {
  7594. name: "Normal",
  7595. height: math.unit(2.5, "meters")
  7596. },
  7597. {
  7598. name: "Macro",
  7599. height: math.unit(250, "meters"),
  7600. default: true
  7601. },
  7602. {
  7603. name: "Megamacro",
  7604. height: math.unit(25, "km")
  7605. },
  7606. ]
  7607. ))
  7608. characterMakers.push(() => makeCharacter(
  7609. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7610. {
  7611. front: {
  7612. height: math.unit(6, "feet"),
  7613. weight: math.unit(65, "kg"),
  7614. name: "Front",
  7615. image: {
  7616. source: "./media/characters/rook/front.svg",
  7617. extra: 960 / 950
  7618. }
  7619. }
  7620. },
  7621. [
  7622. {
  7623. name: "Normal",
  7624. height: math.unit(8.8, "feet")
  7625. },
  7626. {
  7627. name: "Macro",
  7628. height: math.unit(88, "feet"),
  7629. default: true
  7630. },
  7631. {
  7632. name: "Megamacro",
  7633. height: math.unit(8, "miles")
  7634. },
  7635. ]
  7636. ))
  7637. characterMakers.push(() => makeCharacter(
  7638. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7639. {
  7640. front: {
  7641. height: math.unit(12 + 2 / 12, "feet"),
  7642. weight: math.unit(808, "lbs"),
  7643. name: "Front",
  7644. image: {
  7645. source: "./media/characters/prodigy/front.svg"
  7646. }
  7647. }
  7648. },
  7649. [
  7650. {
  7651. name: "Normal",
  7652. height: math.unit(12 + 2 / 12, "feet"),
  7653. default: true
  7654. },
  7655. {
  7656. name: "Macro",
  7657. height: math.unit(143, "feet")
  7658. },
  7659. {
  7660. name: "Macro+",
  7661. height: math.unit(400, "feet")
  7662. },
  7663. ]
  7664. ))
  7665. characterMakers.push(() => makeCharacter(
  7666. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7667. {
  7668. front: {
  7669. height: math.unit(6, "feet"),
  7670. weight: math.unit(225, "lbs"),
  7671. name: "Front",
  7672. image: {
  7673. source: "./media/characters/daniel/front.svg"
  7674. }
  7675. },
  7676. leaning: {
  7677. height: math.unit(6, "feet"),
  7678. weight: math.unit(225, "lbs"),
  7679. name: "Leaning",
  7680. image: {
  7681. source: "./media/characters/daniel/leaning.svg"
  7682. }
  7683. },
  7684. },
  7685. [
  7686. {
  7687. name: "Macro",
  7688. height: math.unit(1000, "feet"),
  7689. default: true
  7690. },
  7691. ]
  7692. ))
  7693. characterMakers.push(() => makeCharacter(
  7694. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7695. {
  7696. front: {
  7697. height: math.unit(6, "feet"),
  7698. weight: math.unit(88, "lbs"),
  7699. name: "Front",
  7700. image: {
  7701. source: "./media/characters/chiros/front.svg",
  7702. extra: 306 / 226
  7703. }
  7704. },
  7705. side: {
  7706. height: math.unit(6, "feet"),
  7707. weight: math.unit(88, "lbs"),
  7708. name: "Side",
  7709. image: {
  7710. source: "./media/characters/chiros/side.svg",
  7711. extra: 306 / 226
  7712. }
  7713. },
  7714. },
  7715. [
  7716. {
  7717. name: "Normal",
  7718. height: math.unit(6, "cm"),
  7719. default: true
  7720. },
  7721. ]
  7722. ))
  7723. characterMakers.push(() => makeCharacter(
  7724. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7725. {
  7726. front: {
  7727. height: math.unit(6, "feet"),
  7728. weight: math.unit(100, "lbs"),
  7729. name: "Front",
  7730. image: {
  7731. source: "./media/characters/selka/front.svg",
  7732. extra: 947 / 887
  7733. }
  7734. }
  7735. },
  7736. [
  7737. {
  7738. name: "Normal",
  7739. height: math.unit(5, "cm"),
  7740. default: true
  7741. },
  7742. ]
  7743. ))
  7744. characterMakers.push(() => makeCharacter(
  7745. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7746. {
  7747. front: {
  7748. height: math.unit(8 + 3 / 12, "feet"),
  7749. weight: math.unit(424, "lbs"),
  7750. name: "Front",
  7751. image: {
  7752. source: "./media/characters/verin/front.svg",
  7753. extra: 1845 / 1550
  7754. }
  7755. },
  7756. frontArmored: {
  7757. height: math.unit(8 + 3 / 12, "feet"),
  7758. weight: math.unit(424, "lbs"),
  7759. name: "Front (Armored)",
  7760. image: {
  7761. source: "./media/characters/verin/front-armor.svg",
  7762. extra: 1845 / 1550,
  7763. bottom: 0.01
  7764. }
  7765. },
  7766. back: {
  7767. height: math.unit(8 + 3 / 12, "feet"),
  7768. weight: math.unit(424, "lbs"),
  7769. name: "Back",
  7770. image: {
  7771. source: "./media/characters/verin/back.svg",
  7772. bottom: 0.1,
  7773. extra: 1
  7774. }
  7775. },
  7776. foot: {
  7777. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7778. name: "Foot",
  7779. image: {
  7780. source: "./media/characters/verin/foot.svg"
  7781. }
  7782. },
  7783. },
  7784. [
  7785. {
  7786. name: "Normal",
  7787. height: math.unit(8 + 3 / 12, "feet")
  7788. },
  7789. {
  7790. name: "Minimacro",
  7791. height: math.unit(21, "feet"),
  7792. default: true
  7793. },
  7794. {
  7795. name: "Macro",
  7796. height: math.unit(626, "feet")
  7797. },
  7798. ]
  7799. ))
  7800. characterMakers.push(() => makeCharacter(
  7801. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7802. {
  7803. front: {
  7804. height: math.unit(2.718, "meters"),
  7805. weight: math.unit(150, "lbs"),
  7806. name: "Front",
  7807. image: {
  7808. source: "./media/characters/sovrim-terraquian/front.svg"
  7809. }
  7810. },
  7811. back: {
  7812. height: math.unit(2.718, "meters"),
  7813. weight: math.unit(150, "lbs"),
  7814. name: "Back",
  7815. image: {
  7816. source: "./media/characters/sovrim-terraquian/back.svg"
  7817. }
  7818. }
  7819. },
  7820. [
  7821. {
  7822. name: "Micro",
  7823. height: math.unit(2, "inches")
  7824. },
  7825. {
  7826. name: "Small",
  7827. height: math.unit(1, "meter")
  7828. },
  7829. {
  7830. name: "Normal",
  7831. height: math.unit(Math.E, "meters"),
  7832. default: true
  7833. },
  7834. {
  7835. name: "Macro",
  7836. height: math.unit(20, "meters")
  7837. },
  7838. {
  7839. name: "Macro+",
  7840. height: math.unit(400, "meters")
  7841. },
  7842. ]
  7843. ))
  7844. characterMakers.push(() => makeCharacter(
  7845. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7846. {
  7847. front: {
  7848. height: math.unit(7, "feet"),
  7849. weight: math.unit(489, "lbs"),
  7850. name: "Front",
  7851. image: {
  7852. source: "./media/characters/reece-silvermane/front.svg",
  7853. bottom: 0.02,
  7854. extra: 1
  7855. }
  7856. },
  7857. },
  7858. [
  7859. {
  7860. name: "Macro",
  7861. height: math.unit(1.5, "miles"),
  7862. default: true
  7863. },
  7864. ]
  7865. ))
  7866. characterMakers.push(() => makeCharacter(
  7867. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7868. {
  7869. front: {
  7870. height: math.unit(6, "feet"),
  7871. weight: math.unit(78, "kg"),
  7872. name: "Front",
  7873. image: {
  7874. source: "./media/characters/kane/front.svg",
  7875. extra: 978 / 899
  7876. }
  7877. },
  7878. },
  7879. [
  7880. {
  7881. name: "Normal",
  7882. height: math.unit(2.1, "m"),
  7883. },
  7884. {
  7885. name: "Macro",
  7886. height: math.unit(1, "km"),
  7887. default: true
  7888. },
  7889. ]
  7890. ))
  7891. characterMakers.push(() => makeCharacter(
  7892. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7893. {
  7894. front: {
  7895. height: math.unit(6, "feet"),
  7896. weight: math.unit(200, "kg"),
  7897. name: "Front",
  7898. image: {
  7899. source: "./media/characters/tegon/front.svg",
  7900. bottom: 0.01,
  7901. extra: 1
  7902. }
  7903. },
  7904. },
  7905. [
  7906. {
  7907. name: "Micro",
  7908. height: math.unit(1, "inch")
  7909. },
  7910. {
  7911. name: "Normal",
  7912. height: math.unit(6 + 3 / 12, "feet"),
  7913. default: true
  7914. },
  7915. {
  7916. name: "Macro",
  7917. height: math.unit(300, "feet")
  7918. },
  7919. {
  7920. name: "Megamacro",
  7921. height: math.unit(69, "miles")
  7922. },
  7923. ]
  7924. ))
  7925. characterMakers.push(() => makeCharacter(
  7926. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7927. {
  7928. side: {
  7929. height: math.unit(6, "feet"),
  7930. weight: math.unit(2304, "lbs"),
  7931. name: "Side",
  7932. image: {
  7933. source: "./media/characters/arcturax/side.svg",
  7934. extra: 790 / 376,
  7935. bottom: 0.01
  7936. }
  7937. },
  7938. },
  7939. [
  7940. {
  7941. name: "Micro",
  7942. height: math.unit(2, "inch")
  7943. },
  7944. {
  7945. name: "Normal",
  7946. height: math.unit(6, "feet")
  7947. },
  7948. {
  7949. name: "Macro",
  7950. height: math.unit(39, "feet"),
  7951. default: true
  7952. },
  7953. {
  7954. name: "Megamacro",
  7955. height: math.unit(7, "miles")
  7956. },
  7957. ]
  7958. ))
  7959. characterMakers.push(() => makeCharacter(
  7960. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7961. {
  7962. front: {
  7963. height: math.unit(6, "feet"),
  7964. weight: math.unit(50, "lbs"),
  7965. name: "Front",
  7966. image: {
  7967. source: "./media/characters/sentri/front.svg",
  7968. extra: 1750 / 1570,
  7969. bottom: 0.025
  7970. }
  7971. },
  7972. frontAlt: {
  7973. height: math.unit(6, "feet"),
  7974. weight: math.unit(50, "lbs"),
  7975. name: "Front (Alt)",
  7976. image: {
  7977. source: "./media/characters/sentri/front-alt.svg",
  7978. extra: 1750 / 1570,
  7979. bottom: 0.025
  7980. }
  7981. },
  7982. },
  7983. [
  7984. {
  7985. name: "Normal",
  7986. height: math.unit(15, "feet"),
  7987. default: true
  7988. },
  7989. {
  7990. name: "Macro",
  7991. height: math.unit(2500, "feet")
  7992. }
  7993. ]
  7994. ))
  7995. characterMakers.push(() => makeCharacter(
  7996. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7997. {
  7998. front: {
  7999. height: math.unit(5 + 8 / 12, "feet"),
  8000. weight: math.unit(130, "lbs"),
  8001. name: "Front",
  8002. image: {
  8003. source: "./media/characters/corvin/front.svg",
  8004. extra: 1803 / 1629
  8005. }
  8006. },
  8007. frontShirt: {
  8008. height: math.unit(5 + 8 / 12, "feet"),
  8009. weight: math.unit(130, "lbs"),
  8010. name: "Front (Shirt)",
  8011. image: {
  8012. source: "./media/characters/corvin/front-shirt.svg",
  8013. extra: 1803 / 1629
  8014. }
  8015. },
  8016. frontPoncho: {
  8017. height: math.unit(5 + 8 / 12, "feet"),
  8018. weight: math.unit(130, "lbs"),
  8019. name: "Front (Poncho)",
  8020. image: {
  8021. source: "./media/characters/corvin/front-poncho.svg",
  8022. extra: 1803 / 1629
  8023. }
  8024. },
  8025. side: {
  8026. height: math.unit(5 + 8 / 12, "feet"),
  8027. weight: math.unit(130, "lbs"),
  8028. name: "Side",
  8029. image: {
  8030. source: "./media/characters/corvin/side.svg",
  8031. extra: 1012 / 945
  8032. }
  8033. },
  8034. back: {
  8035. height: math.unit(5 + 8 / 12, "feet"),
  8036. weight: math.unit(130, "lbs"),
  8037. name: "Back",
  8038. image: {
  8039. source: "./media/characters/corvin/back.svg",
  8040. extra: 1803 / 1629
  8041. }
  8042. },
  8043. },
  8044. [
  8045. {
  8046. name: "Micro",
  8047. height: math.unit(3, "inches")
  8048. },
  8049. {
  8050. name: "Normal",
  8051. height: math.unit(5 + 8 / 12, "feet")
  8052. },
  8053. {
  8054. name: "Macro",
  8055. height: math.unit(300, "feet"),
  8056. default: true
  8057. },
  8058. {
  8059. name: "Megamacro",
  8060. height: math.unit(500, "miles")
  8061. }
  8062. ]
  8063. ))
  8064. characterMakers.push(() => makeCharacter(
  8065. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8066. {
  8067. front: {
  8068. height: math.unit(6, "feet"),
  8069. weight: math.unit(135, "lbs"),
  8070. name: "Front",
  8071. image: {
  8072. source: "./media/characters/q/front.svg",
  8073. extra: 854 / 752,
  8074. bottom: 0.005
  8075. }
  8076. },
  8077. back: {
  8078. height: math.unit(6, "feet"),
  8079. weight: math.unit(130, "lbs"),
  8080. name: "Back",
  8081. image: {
  8082. source: "./media/characters/q/back.svg",
  8083. extra: 854 / 752
  8084. }
  8085. },
  8086. },
  8087. [
  8088. {
  8089. name: "Macro",
  8090. height: math.unit(90, "feet"),
  8091. default: true
  8092. },
  8093. {
  8094. name: "Extra Macro",
  8095. height: math.unit(300, "feet"),
  8096. },
  8097. {
  8098. name: "BIG WALF",
  8099. height: math.unit(750, "feet"),
  8100. },
  8101. ]
  8102. ))
  8103. characterMakers.push(() => makeCharacter(
  8104. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8105. {
  8106. front: {
  8107. height: math.unit(6, "feet"),
  8108. weight: math.unit(150, "lbs"),
  8109. name: "Front",
  8110. image: {
  8111. source: "./media/characters/carley/front.svg",
  8112. extra: 3927 / 3540,
  8113. bottom: 29.2 / 735
  8114. }
  8115. }
  8116. },
  8117. [
  8118. {
  8119. name: "Normal",
  8120. height: math.unit(6 + 3 / 12, "feet")
  8121. },
  8122. {
  8123. name: "Macro",
  8124. height: math.unit(185, "feet"),
  8125. default: true
  8126. },
  8127. {
  8128. name: "Megamacro",
  8129. height: math.unit(8, "miles"),
  8130. },
  8131. ]
  8132. ))
  8133. characterMakers.push(() => makeCharacter(
  8134. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8135. {
  8136. front: {
  8137. height: math.unit(3, "feet"),
  8138. weight: math.unit(28, "lbs"),
  8139. name: "Front",
  8140. image: {
  8141. source: "./media/characters/citrine/front.svg"
  8142. }
  8143. }
  8144. },
  8145. [
  8146. {
  8147. name: "Normal",
  8148. height: math.unit(3, "feet"),
  8149. default: true
  8150. }
  8151. ]
  8152. ))
  8153. characterMakers.push(() => makeCharacter(
  8154. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8155. {
  8156. front: {
  8157. height: math.unit(14, "feet"),
  8158. weight: math.unit(1450, "kg"),
  8159. capacity: math.unit(15, "people"),
  8160. name: "Front",
  8161. image: {
  8162. source: "./media/characters/aura-starwind/front.svg",
  8163. extra: 1455 / 1335
  8164. }
  8165. },
  8166. side: {
  8167. height: math.unit(14, "feet"),
  8168. weight: math.unit(1450, "kg"),
  8169. capacity: math.unit(15, "people"),
  8170. name: "Side",
  8171. image: {
  8172. source: "./media/characters/aura-starwind/side.svg",
  8173. extra: 1654 / 1497
  8174. }
  8175. },
  8176. taur: {
  8177. height: math.unit(18, "feet"),
  8178. weight: math.unit(5500, "kg"),
  8179. capacity: math.unit(50, "people"),
  8180. name: "Taur",
  8181. image: {
  8182. source: "./media/characters/aura-starwind/taur.svg",
  8183. extra: 1760 / 1650
  8184. }
  8185. },
  8186. feral: {
  8187. height: math.unit(46, "feet"),
  8188. weight: math.unit(25000, "kg"),
  8189. capacity: math.unit(120, "people"),
  8190. name: "Feral",
  8191. image: {
  8192. source: "./media/characters/aura-starwind/feral.svg"
  8193. }
  8194. },
  8195. },
  8196. [
  8197. {
  8198. name: "Normal",
  8199. height: math.unit(14, "feet"),
  8200. default: true
  8201. },
  8202. {
  8203. name: "Macro",
  8204. height: math.unit(50, "meters")
  8205. },
  8206. {
  8207. name: "Megamacro",
  8208. height: math.unit(5000, "meters")
  8209. },
  8210. {
  8211. name: "Gigamacro",
  8212. height: math.unit(100000, "kilometers")
  8213. },
  8214. ]
  8215. ))
  8216. characterMakers.push(() => makeCharacter(
  8217. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8218. {
  8219. front: {
  8220. height: math.unit(2 + 7 / 12, "feet"),
  8221. weight: math.unit(32, "lbs"),
  8222. name: "Front",
  8223. image: {
  8224. source: "./media/characters/rivet/front.svg",
  8225. extra: 1716 / 1658,
  8226. bottom: 0.03
  8227. }
  8228. },
  8229. foot: {
  8230. height: math.unit(0.551, "feet"),
  8231. name: "Rivet's Foot",
  8232. image: {
  8233. source: "./media/characters/rivet/foot.svg"
  8234. },
  8235. rename: true
  8236. }
  8237. },
  8238. [
  8239. {
  8240. name: "Micro",
  8241. height: math.unit(1.5, "inches"),
  8242. },
  8243. {
  8244. name: "Normal",
  8245. height: math.unit(2 + 7 / 12, "feet"),
  8246. default: true
  8247. },
  8248. {
  8249. name: "Macro",
  8250. height: math.unit(85, "feet")
  8251. },
  8252. {
  8253. name: "Megamacro",
  8254. height: math.unit(2.2, "km")
  8255. }
  8256. ]
  8257. ))
  8258. characterMakers.push(() => makeCharacter(
  8259. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8260. {
  8261. front: {
  8262. height: math.unit(5 + 9 / 12, "feet"),
  8263. weight: math.unit(150, "lbs"),
  8264. name: "Front",
  8265. image: {
  8266. source: "./media/characters/coffee/front.svg",
  8267. extra: 3666 / 3032,
  8268. bottom: 0.04
  8269. }
  8270. },
  8271. foot: {
  8272. height: math.unit(1.29, "feet"),
  8273. name: "Foot",
  8274. image: {
  8275. source: "./media/characters/coffee/foot.svg"
  8276. }
  8277. },
  8278. },
  8279. [
  8280. {
  8281. name: "Micro",
  8282. height: math.unit(2, "inches"),
  8283. },
  8284. {
  8285. name: "Normal",
  8286. height: math.unit(5 + 9 / 12, "feet"),
  8287. default: true
  8288. },
  8289. {
  8290. name: "Macro",
  8291. height: math.unit(800, "feet")
  8292. },
  8293. {
  8294. name: "Megamacro",
  8295. height: math.unit(25, "miles")
  8296. }
  8297. ]
  8298. ))
  8299. characterMakers.push(() => makeCharacter(
  8300. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8301. {
  8302. front: {
  8303. height: math.unit(6, "feet"),
  8304. weight: math.unit(200, "lbs"),
  8305. name: "Front",
  8306. image: {
  8307. source: "./media/characters/chari-gal/front.svg",
  8308. extra: 1568 / 1385,
  8309. bottom: 0.047
  8310. }
  8311. },
  8312. gigantamax: {
  8313. height: math.unit(6 * 16, "feet"),
  8314. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8315. name: "Gigantamax",
  8316. image: {
  8317. source: "./media/characters/chari-gal/gigantamax.svg",
  8318. extra: 1124 / 888,
  8319. bottom: 0.03
  8320. }
  8321. },
  8322. },
  8323. [
  8324. {
  8325. name: "Normal",
  8326. height: math.unit(5 + 7 / 12, "feet")
  8327. },
  8328. {
  8329. name: "Macro",
  8330. height: math.unit(200, "feet"),
  8331. default: true
  8332. }
  8333. ]
  8334. ))
  8335. characterMakers.push(() => makeCharacter(
  8336. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8337. {
  8338. front: {
  8339. height: math.unit(6, "feet"),
  8340. weight: math.unit(150, "lbs"),
  8341. name: "Front",
  8342. image: {
  8343. source: "./media/characters/nova/front.svg",
  8344. extra: 5000 / 4722,
  8345. bottom: 0.02
  8346. }
  8347. }
  8348. },
  8349. [
  8350. {
  8351. name: "Micro-",
  8352. height: math.unit(0.8, "inches")
  8353. },
  8354. {
  8355. name: "Micro",
  8356. height: math.unit(2, "inches"),
  8357. default: true
  8358. },
  8359. ]
  8360. ))
  8361. characterMakers.push(() => makeCharacter(
  8362. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8363. {
  8364. front: {
  8365. height: math.unit(3 + 1 / 12, "feet"),
  8366. weight: math.unit(21.7, "lbs"),
  8367. name: "Front",
  8368. image: {
  8369. source: "./media/characters/argent/front.svg",
  8370. extra: 1471 / 1331,
  8371. bottom: 100.8 / 1575.5
  8372. }
  8373. }
  8374. },
  8375. [
  8376. {
  8377. name: "Micro",
  8378. height: math.unit(2, "inches")
  8379. },
  8380. {
  8381. name: "Normal",
  8382. height: math.unit(3 + 1 / 12, "feet"),
  8383. default: true
  8384. },
  8385. {
  8386. name: "Macro",
  8387. height: math.unit(120, "feet")
  8388. },
  8389. ]
  8390. ))
  8391. characterMakers.push(() => makeCharacter(
  8392. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8393. {
  8394. lamp: {
  8395. height: math.unit(7 * 1559 / 989, "feet"),
  8396. name: "Magic Lamp",
  8397. image: {
  8398. source: "./media/characters/mira-al-cul/lamp.svg",
  8399. extra: 1617 / 1559
  8400. }
  8401. },
  8402. front: {
  8403. height: math.unit(7, "feet"),
  8404. name: "Front",
  8405. image: {
  8406. source: "./media/characters/mira-al-cul/front.svg",
  8407. extra: 1044 / 990
  8408. }
  8409. },
  8410. },
  8411. [
  8412. {
  8413. name: "Heavily Restricted",
  8414. height: math.unit(7 * 1559 / 989, "feet")
  8415. },
  8416. {
  8417. name: "Freshly Freed",
  8418. height: math.unit(50 * 1559 / 989, "feet")
  8419. },
  8420. {
  8421. name: "World Encompassing",
  8422. height: math.unit(10000 * 1559 / 989, "miles")
  8423. },
  8424. {
  8425. name: "Galactic",
  8426. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8427. },
  8428. {
  8429. name: "Palmed Universe",
  8430. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8431. default: true
  8432. },
  8433. {
  8434. name: "Multiversal Matriarch",
  8435. height: math.unit(8.87e10, "yottameters")
  8436. },
  8437. {
  8438. name: "Void Mother",
  8439. height: math.unit(3.14e110, "yottaparsecs")
  8440. },
  8441. {
  8442. name: "Toying with Transcendence",
  8443. height: math.unit(1e307, "meters")
  8444. },
  8445. ]
  8446. ))
  8447. characterMakers.push(() => makeCharacter(
  8448. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8449. {
  8450. front: {
  8451. height: math.unit(17 + 1 / 12, "feet"),
  8452. weight: math.unit(476.2 * 5, "lbs"),
  8453. name: "Front",
  8454. image: {
  8455. source: "./media/characters/kuro-shi-uchū/front.svg",
  8456. extra: 2329 / 1835,
  8457. bottom: 0.02
  8458. }
  8459. },
  8460. },
  8461. [
  8462. {
  8463. name: "Micro",
  8464. height: math.unit(2, "inches")
  8465. },
  8466. {
  8467. name: "Normal",
  8468. height: math.unit(12, "meters")
  8469. },
  8470. {
  8471. name: "Planetary",
  8472. height: math.unit(0.00929, "AU"),
  8473. default: true
  8474. },
  8475. {
  8476. name: "Universal",
  8477. height: math.unit(20, "gigaparsecs")
  8478. },
  8479. ]
  8480. ))
  8481. characterMakers.push(() => makeCharacter(
  8482. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8483. {
  8484. front: {
  8485. height: math.unit(5 + 2 / 12, "feet"),
  8486. weight: math.unit(120, "lbs"),
  8487. name: "Front",
  8488. image: {
  8489. source: "./media/characters/katherine/front.svg",
  8490. extra: 2075 / 1969
  8491. }
  8492. },
  8493. dress: {
  8494. height: math.unit(5 + 2 / 12, "feet"),
  8495. weight: math.unit(120, "lbs"),
  8496. name: "Dress",
  8497. image: {
  8498. source: "./media/characters/katherine/dress.svg",
  8499. extra: 2258 / 2064
  8500. }
  8501. },
  8502. },
  8503. [
  8504. {
  8505. name: "Micro",
  8506. height: math.unit(1, "inches"),
  8507. default: true
  8508. },
  8509. {
  8510. name: "Normal",
  8511. height: math.unit(5 + 2 / 12, "feet")
  8512. },
  8513. {
  8514. name: "Macro",
  8515. height: math.unit(100, "meters")
  8516. },
  8517. {
  8518. name: "Megamacro",
  8519. height: math.unit(80, "miles")
  8520. },
  8521. ]
  8522. ))
  8523. characterMakers.push(() => makeCharacter(
  8524. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8525. {
  8526. front: {
  8527. height: math.unit(7 + 8 / 12, "feet"),
  8528. weight: math.unit(250, "lbs"),
  8529. name: "Front",
  8530. image: {
  8531. source: "./media/characters/yevis/front.svg",
  8532. extra: 1938 / 1755
  8533. }
  8534. }
  8535. },
  8536. [
  8537. {
  8538. name: "Mortal",
  8539. height: math.unit(7 + 8 / 12, "feet")
  8540. },
  8541. {
  8542. name: "Battle",
  8543. height: math.unit(25 + 11 / 12, "feet")
  8544. },
  8545. {
  8546. name: "Wrath",
  8547. height: math.unit(1654 + 11 / 12, "feet")
  8548. },
  8549. {
  8550. name: "Planet Destroyer",
  8551. height: math.unit(12000, "miles")
  8552. },
  8553. {
  8554. name: "Galaxy Conqueror",
  8555. height: math.unit(1.45, "zettameters"),
  8556. default: true
  8557. },
  8558. {
  8559. name: "Universal War",
  8560. height: math.unit(184, "gigaparsecs")
  8561. },
  8562. {
  8563. name: "Eternity War",
  8564. height: math.unit(1.98e55, "yottaparsecs")
  8565. },
  8566. ]
  8567. ))
  8568. characterMakers.push(() => makeCharacter(
  8569. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8570. {
  8571. front: {
  8572. height: math.unit(5 + 8 / 12, "feet"),
  8573. weight: math.unit(63, "kg"),
  8574. name: "Front",
  8575. image: {
  8576. source: "./media/characters/xavier/front.svg",
  8577. extra: 944 / 883
  8578. }
  8579. },
  8580. frontStretch: {
  8581. height: math.unit(5 + 8 / 12, "feet"),
  8582. weight: math.unit(63, "kg"),
  8583. name: "Stretching",
  8584. image: {
  8585. source: "./media/characters/xavier/front-stretch.svg",
  8586. extra: 962 / 820
  8587. }
  8588. },
  8589. },
  8590. [
  8591. {
  8592. name: "Normal",
  8593. height: math.unit(5 + 8 / 12, "feet")
  8594. },
  8595. {
  8596. name: "Macro",
  8597. height: math.unit(100, "meters"),
  8598. default: true
  8599. },
  8600. {
  8601. name: "McLargeHuge",
  8602. height: math.unit(10, "miles")
  8603. },
  8604. ]
  8605. ))
  8606. characterMakers.push(() => makeCharacter(
  8607. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8608. {
  8609. front: {
  8610. height: math.unit(5 + 5 / 12, "feet"),
  8611. weight: math.unit(150, "lb"),
  8612. name: "Front",
  8613. image: {
  8614. source: "./media/characters/joshii/front.svg",
  8615. extra: 765 / 653,
  8616. bottom: 51 / 816
  8617. }
  8618. },
  8619. foot: {
  8620. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8621. name: "Foot",
  8622. image: {
  8623. source: "./media/characters/joshii/foot.svg"
  8624. }
  8625. },
  8626. },
  8627. [
  8628. {
  8629. name: "Micro",
  8630. height: math.unit(2, "inches"),
  8631. default: true
  8632. },
  8633. {
  8634. name: "Normal",
  8635. height: math.unit(5 + 5 / 12, "feet")
  8636. },
  8637. {
  8638. name: "Macro",
  8639. height: math.unit(785, "feet")
  8640. },
  8641. {
  8642. name: "Megamacro",
  8643. height: math.unit(24.5, "miles")
  8644. },
  8645. ]
  8646. ))
  8647. characterMakers.push(() => makeCharacter(
  8648. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8649. {
  8650. front: {
  8651. height: math.unit(6, "feet"),
  8652. weight: math.unit(150, "lb"),
  8653. name: "Front",
  8654. image: {
  8655. source: "./media/characters/goddess-elizabeth/front.svg",
  8656. extra: 1800 / 1525,
  8657. bottom: 0.005
  8658. }
  8659. },
  8660. foot: {
  8661. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8662. name: "Foot",
  8663. image: {
  8664. source: "./media/characters/goddess-elizabeth/foot.svg"
  8665. }
  8666. },
  8667. mouth: {
  8668. height: math.unit(6, "feet"),
  8669. name: "Mouth",
  8670. image: {
  8671. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8672. }
  8673. },
  8674. },
  8675. [
  8676. {
  8677. name: "Micro",
  8678. height: math.unit(12, "feet")
  8679. },
  8680. {
  8681. name: "Normal",
  8682. height: math.unit(80, "miles"),
  8683. default: true
  8684. },
  8685. {
  8686. name: "Macro",
  8687. height: math.unit(15000, "parsecs")
  8688. },
  8689. ]
  8690. ))
  8691. characterMakers.push(() => makeCharacter(
  8692. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8693. {
  8694. front: {
  8695. height: math.unit(5 + 9 / 12, "feet"),
  8696. weight: math.unit(144, "lb"),
  8697. name: "Front",
  8698. image: {
  8699. source: "./media/characters/kara/front.svg"
  8700. }
  8701. },
  8702. feet: {
  8703. height: math.unit(6 / 6.765, "feet"),
  8704. name: "Kara's Feet",
  8705. rename: true,
  8706. image: {
  8707. source: "./media/characters/kara/feet.svg"
  8708. }
  8709. },
  8710. },
  8711. [
  8712. {
  8713. name: "Normal",
  8714. height: math.unit(5 + 9 / 12, "feet")
  8715. },
  8716. {
  8717. name: "Macro",
  8718. height: math.unit(174, "feet"),
  8719. default: true
  8720. },
  8721. ]
  8722. ))
  8723. characterMakers.push(() => makeCharacter(
  8724. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8725. {
  8726. front: {
  8727. height: math.unit(18, "feet"),
  8728. weight: math.unit(4050, "lb"),
  8729. name: "Front",
  8730. image: {
  8731. source: "./media/characters/tyrone/front.svg",
  8732. extra: 2405 / 2270,
  8733. bottom: 182 / 2587
  8734. }
  8735. },
  8736. },
  8737. [
  8738. {
  8739. name: "Normal",
  8740. height: math.unit(18, "feet"),
  8741. default: true
  8742. },
  8743. {
  8744. name: "Macro",
  8745. height: math.unit(300, "feet")
  8746. },
  8747. {
  8748. name: "Megamacro",
  8749. height: math.unit(15, "km")
  8750. },
  8751. {
  8752. name: "Gigamacro",
  8753. height: math.unit(500, "km")
  8754. },
  8755. {
  8756. name: "Teramacro",
  8757. height: math.unit(0.5, "gigameters")
  8758. },
  8759. {
  8760. name: "Omnimacro",
  8761. height: math.unit(1e252, "yottauniverse")
  8762. },
  8763. ]
  8764. ))
  8765. characterMakers.push(() => makeCharacter(
  8766. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8767. {
  8768. front: {
  8769. height: math.unit(7 + 8 / 12, "feet"),
  8770. weight: math.unit(120, "lb"),
  8771. name: "Front",
  8772. image: {
  8773. source: "./media/characters/danny/front.svg",
  8774. extra: 1490 / 1350
  8775. }
  8776. },
  8777. back: {
  8778. height: math.unit(7 + 8 / 12, "feet"),
  8779. weight: math.unit(120, "lb"),
  8780. name: "Back",
  8781. image: {
  8782. source: "./media/characters/danny/back.svg",
  8783. extra: 1490 / 1350
  8784. }
  8785. },
  8786. },
  8787. [
  8788. {
  8789. name: "Normal",
  8790. height: math.unit(7 + 8 / 12, "feet"),
  8791. default: true
  8792. },
  8793. ]
  8794. ))
  8795. characterMakers.push(() => makeCharacter(
  8796. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8797. {
  8798. front: {
  8799. height: math.unit(3.5, "inches"),
  8800. weight: math.unit(19, "grams"),
  8801. name: "Front",
  8802. image: {
  8803. source: "./media/characters/mallow/front.svg",
  8804. extra: 471 / 431
  8805. }
  8806. },
  8807. back: {
  8808. height: math.unit(3.5, "inches"),
  8809. weight: math.unit(19, "grams"),
  8810. name: "Back",
  8811. image: {
  8812. source: "./media/characters/mallow/back.svg",
  8813. extra: 471 / 431
  8814. }
  8815. },
  8816. },
  8817. [
  8818. {
  8819. name: "Normal",
  8820. height: math.unit(3.5, "inches"),
  8821. default: true
  8822. },
  8823. ]
  8824. ))
  8825. characterMakers.push(() => makeCharacter(
  8826. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8827. {
  8828. front: {
  8829. height: math.unit(9, "feet"),
  8830. weight: math.unit(230, "kg"),
  8831. name: "Front",
  8832. image: {
  8833. source: "./media/characters/starry-aqua/front.svg"
  8834. }
  8835. },
  8836. back: {
  8837. height: math.unit(9, "feet"),
  8838. weight: math.unit(230, "kg"),
  8839. name: "Back",
  8840. image: {
  8841. source: "./media/characters/starry-aqua/back.svg"
  8842. }
  8843. },
  8844. hand: {
  8845. height: math.unit(9 * 0.1168, "feet"),
  8846. name: "Hand",
  8847. image: {
  8848. source: "./media/characters/starry-aqua/hand.svg"
  8849. }
  8850. },
  8851. foot: {
  8852. height: math.unit(9 * 0.18, "feet"),
  8853. name: "Foot",
  8854. image: {
  8855. source: "./media/characters/starry-aqua/foot.svg"
  8856. }
  8857. }
  8858. },
  8859. [
  8860. {
  8861. name: "Micro",
  8862. height: math.unit(3, "inches")
  8863. },
  8864. {
  8865. name: "Normal",
  8866. height: math.unit(9, "feet")
  8867. },
  8868. {
  8869. name: "Macro",
  8870. height: math.unit(300, "feet"),
  8871. default: true
  8872. },
  8873. {
  8874. name: "Megamacro",
  8875. height: math.unit(3200, "feet")
  8876. }
  8877. ]
  8878. ))
  8879. characterMakers.push(() => makeCharacter(
  8880. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8881. {
  8882. front: {
  8883. height: math.unit(6, "feet"),
  8884. weight: math.unit(230, "lb"),
  8885. name: "Front",
  8886. image: {
  8887. source: "./media/characters/luka/front.svg",
  8888. extra: 1,
  8889. bottom: 0.025
  8890. }
  8891. },
  8892. },
  8893. [
  8894. {
  8895. name: "Normal",
  8896. height: math.unit(12 + 8 / 12, "feet"),
  8897. default: true
  8898. },
  8899. {
  8900. name: "Minimacro",
  8901. height: math.unit(20, "feet")
  8902. },
  8903. {
  8904. name: "Macro",
  8905. height: math.unit(250, "feet")
  8906. },
  8907. {
  8908. name: "Megamacro",
  8909. height: math.unit(5, "miles")
  8910. },
  8911. {
  8912. name: "Gigamacro",
  8913. height: math.unit(8000, "miles")
  8914. },
  8915. ]
  8916. ))
  8917. characterMakers.push(() => makeCharacter(
  8918. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8919. {
  8920. front: {
  8921. height: math.unit(6, "feet"),
  8922. weight: math.unit(150, "lb"),
  8923. name: "Front",
  8924. image: {
  8925. source: "./media/characters/natalie-nightring/front.svg",
  8926. extra: 1,
  8927. bottom: 0.06
  8928. }
  8929. },
  8930. },
  8931. [
  8932. {
  8933. name: "Uh Oh",
  8934. height: math.unit(0.1, "mm")
  8935. },
  8936. {
  8937. name: "Small",
  8938. height: math.unit(3, "inches")
  8939. },
  8940. {
  8941. name: "Human Scale",
  8942. height: math.unit(6, "feet")
  8943. },
  8944. {
  8945. name: "Librarian",
  8946. height: math.unit(50, "feet"),
  8947. default: true
  8948. },
  8949. {
  8950. name: "Immense",
  8951. height: math.unit(200, "miles")
  8952. },
  8953. ]
  8954. ))
  8955. characterMakers.push(() => makeCharacter(
  8956. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8957. {
  8958. front: {
  8959. height: math.unit(6, "feet"),
  8960. weight: math.unit(180, "lbs"),
  8961. name: "Front",
  8962. image: {
  8963. source: "./media/characters/danni-rosie/front.svg",
  8964. extra: 1260 / 1128,
  8965. bottom: 0.022
  8966. }
  8967. },
  8968. },
  8969. [
  8970. {
  8971. name: "Micro",
  8972. height: math.unit(2, "inches"),
  8973. default: true
  8974. },
  8975. ]
  8976. ))
  8977. characterMakers.push(() => makeCharacter(
  8978. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8979. {
  8980. front: {
  8981. height: math.unit(5 + 9 / 12, "feet"),
  8982. weight: math.unit(220, "lb"),
  8983. name: "Front",
  8984. image: {
  8985. source: "./media/characters/samantha-kruse/front.svg",
  8986. extra: (985 / 935),
  8987. bottom: 0.03
  8988. }
  8989. },
  8990. frontUndressed: {
  8991. height: math.unit(5 + 9 / 12, "feet"),
  8992. weight: math.unit(220, "lb"),
  8993. name: "Front (Undressed)",
  8994. image: {
  8995. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8996. extra: (973 / 923),
  8997. bottom: 0.025
  8998. }
  8999. },
  9000. fat: {
  9001. height: math.unit(5 + 9 / 12, "feet"),
  9002. weight: math.unit(900, "lb"),
  9003. name: "Front (Fat)",
  9004. image: {
  9005. source: "./media/characters/samantha-kruse/fat.svg",
  9006. extra: 2688 / 2561
  9007. }
  9008. },
  9009. },
  9010. [
  9011. {
  9012. name: "Normal",
  9013. height: math.unit(5 + 9 / 12, "feet"),
  9014. default: true
  9015. }
  9016. ]
  9017. ))
  9018. characterMakers.push(() => makeCharacter(
  9019. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9020. {
  9021. back: {
  9022. height: math.unit(5 + 4 / 12, "feet"),
  9023. weight: math.unit(4963, "lb"),
  9024. name: "Back",
  9025. image: {
  9026. source: "./media/characters/amelia-rosie/back.svg",
  9027. extra: 1113 / 963,
  9028. bottom: 0.01
  9029. }
  9030. },
  9031. },
  9032. [
  9033. {
  9034. name: "Level 0",
  9035. height: math.unit(5 + 4 / 12, "feet")
  9036. },
  9037. {
  9038. name: "Level 1",
  9039. height: math.unit(164597, "feet"),
  9040. default: true
  9041. },
  9042. {
  9043. name: "Level 2",
  9044. height: math.unit(956243, "miles")
  9045. },
  9046. {
  9047. name: "Level 3",
  9048. height: math.unit(29421709423, "miles")
  9049. },
  9050. {
  9051. name: "Level 4",
  9052. height: math.unit(154, "lightyears")
  9053. },
  9054. {
  9055. name: "Level 5",
  9056. height: math.unit(4738272, "lightyears")
  9057. },
  9058. {
  9059. name: "Level 6",
  9060. height: math.unit(145787152896, "lightyears")
  9061. },
  9062. ]
  9063. ))
  9064. characterMakers.push(() => makeCharacter(
  9065. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9066. {
  9067. front: {
  9068. height: math.unit(5 + 11 / 12, "feet"),
  9069. weight: math.unit(65, "kg"),
  9070. name: "Front",
  9071. image: {
  9072. source: "./media/characters/rook-kitara/front.svg",
  9073. extra: 1347 / 1274,
  9074. bottom: 0.005
  9075. }
  9076. },
  9077. },
  9078. [
  9079. {
  9080. name: "Totally Unfair",
  9081. height: math.unit(1.8, "mm")
  9082. },
  9083. {
  9084. name: "Lap Rookie",
  9085. height: math.unit(1.4, "feet")
  9086. },
  9087. {
  9088. name: "Normal",
  9089. height: math.unit(5 + 11 / 12, "feet"),
  9090. default: true
  9091. },
  9092. {
  9093. name: "How Did This Happen",
  9094. height: math.unit(80, "miles")
  9095. }
  9096. ]
  9097. ))
  9098. characterMakers.push(() => makeCharacter(
  9099. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9100. {
  9101. front: {
  9102. height: math.unit(7, "feet"),
  9103. weight: math.unit(300, "lb"),
  9104. name: "Front",
  9105. image: {
  9106. source: "./media/characters/pisces/front.svg",
  9107. extra: 2255 / 2115,
  9108. bottom: 0.03
  9109. }
  9110. },
  9111. back: {
  9112. height: math.unit(7, "feet"),
  9113. weight: math.unit(300, "lb"),
  9114. name: "Back",
  9115. image: {
  9116. source: "./media/characters/pisces/back.svg",
  9117. extra: 2146 / 2055,
  9118. bottom: 0.04
  9119. }
  9120. },
  9121. },
  9122. [
  9123. {
  9124. name: "Normal",
  9125. height: math.unit(7, "feet"),
  9126. default: true
  9127. },
  9128. {
  9129. name: "Swimming Pool",
  9130. height: math.unit(12.2, "meters")
  9131. },
  9132. {
  9133. name: "Olympic Swimming Pool",
  9134. height: math.unit(56.3, "meters")
  9135. },
  9136. {
  9137. name: "Lake Superior",
  9138. height: math.unit(93900, "meters")
  9139. },
  9140. {
  9141. name: "Mediterranean Sea",
  9142. height: math.unit(644457, "meters")
  9143. },
  9144. {
  9145. name: "World's Oceans",
  9146. height: math.unit(4567491, "meters")
  9147. },
  9148. ]
  9149. ))
  9150. characterMakers.push(() => makeCharacter(
  9151. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9152. {
  9153. front: {
  9154. height: math.unit(2.3, "meters"),
  9155. weight: math.unit(120, "kg"),
  9156. name: "Front",
  9157. image: {
  9158. source: "./media/characters/zelas/front.svg"
  9159. }
  9160. },
  9161. side: {
  9162. height: math.unit(2.3, "meters"),
  9163. weight: math.unit(120, "kg"),
  9164. name: "Side",
  9165. image: {
  9166. source: "./media/characters/zelas/side.svg"
  9167. }
  9168. },
  9169. back: {
  9170. height: math.unit(2.3, "meters"),
  9171. weight: math.unit(120, "kg"),
  9172. name: "Back",
  9173. image: {
  9174. source: "./media/characters/zelas/back.svg"
  9175. }
  9176. },
  9177. foot: {
  9178. height: math.unit(1.116, "feet"),
  9179. name: "Foot",
  9180. image: {
  9181. source: "./media/characters/zelas/foot.svg"
  9182. }
  9183. },
  9184. },
  9185. [
  9186. {
  9187. name: "Normal",
  9188. height: math.unit(2.3, "meters")
  9189. },
  9190. {
  9191. name: "Macro",
  9192. height: math.unit(30, "meters"),
  9193. default: true
  9194. },
  9195. ]
  9196. ))
  9197. characterMakers.push(() => makeCharacter(
  9198. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9199. {
  9200. front: {
  9201. height: math.unit(1, "inch"),
  9202. weight: math.unit(0.21, "grams"),
  9203. name: "Front",
  9204. image: {
  9205. source: "./media/characters/talbot/front.svg",
  9206. extra: 594 / 544
  9207. }
  9208. },
  9209. },
  9210. [
  9211. {
  9212. name: "Micro",
  9213. height: math.unit(1, "inch"),
  9214. default: true
  9215. },
  9216. ]
  9217. ))
  9218. characterMakers.push(() => makeCharacter(
  9219. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9220. {
  9221. front: {
  9222. height: math.unit(3 + 3 / 12, "feet"),
  9223. weight: math.unit(51.8, "lb"),
  9224. name: "Front",
  9225. image: {
  9226. source: "./media/characters/fliss/front.svg",
  9227. extra: 840 / 640
  9228. }
  9229. },
  9230. },
  9231. [
  9232. {
  9233. name: "Teeny Tiny",
  9234. height: math.unit(1, "mm")
  9235. },
  9236. {
  9237. name: "Small",
  9238. height: math.unit(1, "inch"),
  9239. default: true
  9240. },
  9241. {
  9242. name: "Standard Sylveon",
  9243. height: math.unit(3 + 3 / 12, "feet")
  9244. },
  9245. {
  9246. name: "Large Nuisance",
  9247. height: math.unit(33, "feet")
  9248. },
  9249. {
  9250. name: "City Filler",
  9251. height: math.unit(3000, "feet")
  9252. },
  9253. {
  9254. name: "New Horizon",
  9255. height: math.unit(6000, "miles")
  9256. },
  9257. ]
  9258. ))
  9259. characterMakers.push(() => makeCharacter(
  9260. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9261. {
  9262. front: {
  9263. height: math.unit(5, "cm"),
  9264. weight: math.unit(1.94, "g"),
  9265. name: "Front",
  9266. image: {
  9267. source: "./media/characters/fleta/front.svg",
  9268. extra: 835 / 803
  9269. }
  9270. },
  9271. back: {
  9272. height: math.unit(5, "cm"),
  9273. weight: math.unit(1.94, "g"),
  9274. name: "Back",
  9275. image: {
  9276. source: "./media/characters/fleta/back.svg",
  9277. extra: 835 / 803
  9278. }
  9279. },
  9280. },
  9281. [
  9282. {
  9283. name: "Micro",
  9284. height: math.unit(5, "cm"),
  9285. default: true
  9286. },
  9287. ]
  9288. ))
  9289. characterMakers.push(() => makeCharacter(
  9290. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9291. {
  9292. front: {
  9293. height: math.unit(6, "feet"),
  9294. weight: math.unit(225, "lb"),
  9295. name: "Front",
  9296. image: {
  9297. source: "./media/characters/dominic/front.svg",
  9298. extra: 1770 / 1620,
  9299. bottom: 0.025
  9300. }
  9301. },
  9302. back: {
  9303. height: math.unit(6, "feet"),
  9304. weight: math.unit(225, "lb"),
  9305. name: "Back",
  9306. image: {
  9307. source: "./media/characters/dominic/back.svg",
  9308. extra: 1745 / 1620,
  9309. bottom: 0.065
  9310. }
  9311. },
  9312. },
  9313. [
  9314. {
  9315. name: "Nano",
  9316. height: math.unit(0.1, "mm")
  9317. },
  9318. {
  9319. name: "Micro-",
  9320. height: math.unit(1, "mm")
  9321. },
  9322. {
  9323. name: "Micro",
  9324. height: math.unit(4, "inches")
  9325. },
  9326. {
  9327. name: "Normal",
  9328. height: math.unit(6 + 4 / 12, "feet"),
  9329. default: true
  9330. },
  9331. {
  9332. name: "Macro",
  9333. height: math.unit(115, "feet")
  9334. },
  9335. {
  9336. name: "Macro+",
  9337. height: math.unit(955, "feet")
  9338. },
  9339. {
  9340. name: "Megamacro",
  9341. height: math.unit(8990, "feet")
  9342. },
  9343. {
  9344. name: "Gigmacro",
  9345. height: math.unit(9310, "miles")
  9346. },
  9347. {
  9348. name: "Teramacro",
  9349. height: math.unit(1567005010, "miles")
  9350. },
  9351. {
  9352. name: "Examacro",
  9353. height: math.unit(1425, "parsecs")
  9354. },
  9355. ]
  9356. ))
  9357. characterMakers.push(() => makeCharacter(
  9358. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9359. {
  9360. front: {
  9361. height: math.unit(400, "feet"),
  9362. weight: math.unit(44444444, "lb"),
  9363. name: "Front",
  9364. image: {
  9365. source: "./media/characters/major-colonel/front.svg"
  9366. }
  9367. },
  9368. back: {
  9369. height: math.unit(400, "feet"),
  9370. weight: math.unit(44444444, "lb"),
  9371. name: "Back",
  9372. image: {
  9373. source: "./media/characters/major-colonel/back.svg"
  9374. }
  9375. },
  9376. },
  9377. [
  9378. {
  9379. name: "Macro",
  9380. height: math.unit(400, "feet"),
  9381. default: true
  9382. },
  9383. ]
  9384. ))
  9385. characterMakers.push(() => makeCharacter(
  9386. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9387. {
  9388. catFront: {
  9389. height: math.unit(6, "feet"),
  9390. weight: math.unit(120, "lb"),
  9391. name: "Front (Cat Side)",
  9392. image: {
  9393. source: "./media/characters/axel-lycan/cat-front.svg",
  9394. extra: 430 / 402,
  9395. bottom: 43 / 472.35
  9396. }
  9397. },
  9398. catBack: {
  9399. height: math.unit(6, "feet"),
  9400. weight: math.unit(120, "lb"),
  9401. name: "Back (Cat Side)",
  9402. image: {
  9403. source: "./media/characters/axel-lycan/cat-back.svg",
  9404. extra: 447 / 419,
  9405. bottom: 23.3 / 469
  9406. }
  9407. },
  9408. wolfFront: {
  9409. height: math.unit(6, "feet"),
  9410. weight: math.unit(120, "lb"),
  9411. name: "Front (Wolf Side)",
  9412. image: {
  9413. source: "./media/characters/axel-lycan/wolf-front.svg",
  9414. extra: 485 / 456,
  9415. bottom: 19 / 504
  9416. }
  9417. },
  9418. wolfBack: {
  9419. height: math.unit(6, "feet"),
  9420. weight: math.unit(120, "lb"),
  9421. name: "Back (Wolf Side)",
  9422. image: {
  9423. source: "./media/characters/axel-lycan/wolf-back.svg",
  9424. extra: 475 / 438,
  9425. bottom: 39.2 / 514
  9426. }
  9427. },
  9428. },
  9429. [
  9430. {
  9431. name: "Macro",
  9432. height: math.unit(1, "km"),
  9433. default: true
  9434. },
  9435. ]
  9436. ))
  9437. characterMakers.push(() => makeCharacter(
  9438. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9439. {
  9440. front: {
  9441. height: math.unit(5 + 9 / 12, "feet"),
  9442. weight: math.unit(175, "lb"),
  9443. name: "Front",
  9444. image: {
  9445. source: "./media/characters/vanrel-hyena/front.svg",
  9446. extra: 1086 / 1010,
  9447. bottom: 0.04
  9448. }
  9449. },
  9450. },
  9451. [
  9452. {
  9453. name: "Normal",
  9454. height: math.unit(5 + 9 / 12, "feet"),
  9455. default: true
  9456. },
  9457. ]
  9458. ))
  9459. characterMakers.push(() => makeCharacter(
  9460. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9461. {
  9462. front: {
  9463. height: math.unit(6, "feet"),
  9464. weight: math.unit(103, "lb"),
  9465. name: "Front",
  9466. image: {
  9467. source: "./media/characters/abbott-absol/front.svg",
  9468. extra: 2010 / 1842
  9469. }
  9470. },
  9471. },
  9472. [
  9473. {
  9474. name: "Megamicro",
  9475. height: math.unit(0.1, "mm")
  9476. },
  9477. {
  9478. name: "Micro",
  9479. height: math.unit(1, "inch")
  9480. },
  9481. {
  9482. name: "Normal",
  9483. height: math.unit(6, "feet"),
  9484. default: true
  9485. },
  9486. ]
  9487. ))
  9488. characterMakers.push(() => makeCharacter(
  9489. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9490. {
  9491. front: {
  9492. height: math.unit(6, "feet"),
  9493. weight: math.unit(264, "lb"),
  9494. name: "Front",
  9495. image: {
  9496. source: "./media/characters/hector/front.svg",
  9497. extra: 2280 / 2130,
  9498. bottom: 0.07
  9499. }
  9500. },
  9501. },
  9502. [
  9503. {
  9504. name: "Normal",
  9505. height: math.unit(12.25, "foot"),
  9506. default: true
  9507. },
  9508. {
  9509. name: "Macro",
  9510. height: math.unit(160, "feet")
  9511. },
  9512. ]
  9513. ))
  9514. characterMakers.push(() => makeCharacter(
  9515. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9516. {
  9517. front: {
  9518. height: math.unit(6, "feet"),
  9519. weight: math.unit(150, "lb"),
  9520. name: "Front",
  9521. image: {
  9522. source: "./media/characters/sal/front.svg",
  9523. extra: 1846 / 1699,
  9524. bottom: 0.04
  9525. }
  9526. },
  9527. },
  9528. [
  9529. {
  9530. name: "Megamacro",
  9531. height: math.unit(10, "miles"),
  9532. default: true
  9533. },
  9534. ]
  9535. ))
  9536. characterMakers.push(() => makeCharacter(
  9537. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9538. {
  9539. front: {
  9540. height: math.unit(3, "meters"),
  9541. weight: math.unit(450, "kg"),
  9542. name: "front",
  9543. image: {
  9544. source: "./media/characters/ranger/front.svg",
  9545. extra: 2401 / 2243,
  9546. bottom: 0.05
  9547. }
  9548. },
  9549. },
  9550. [
  9551. {
  9552. name: "Normal",
  9553. height: math.unit(3, "meters"),
  9554. default: true
  9555. },
  9556. ]
  9557. ))
  9558. characterMakers.push(() => makeCharacter(
  9559. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9560. {
  9561. front: {
  9562. height: math.unit(14, "feet"),
  9563. weight: math.unit(800, "kg"),
  9564. name: "Front",
  9565. image: {
  9566. source: "./media/characters/theresa/front.svg",
  9567. extra: 3575 / 3346,
  9568. bottom: 0.03
  9569. }
  9570. },
  9571. },
  9572. [
  9573. {
  9574. name: "Normal",
  9575. height: math.unit(14, "feet"),
  9576. default: true
  9577. },
  9578. ]
  9579. ))
  9580. characterMakers.push(() => makeCharacter(
  9581. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9582. {
  9583. front: {
  9584. height: math.unit(6, "feet"),
  9585. weight: math.unit(3, "kg"),
  9586. name: "Front",
  9587. image: {
  9588. source: "./media/characters/ine/front.svg",
  9589. extra: 678 / 539,
  9590. bottom: 0.023
  9591. }
  9592. },
  9593. },
  9594. [
  9595. {
  9596. name: "Normal",
  9597. height: math.unit(2.265, "feet"),
  9598. default: true
  9599. },
  9600. ]
  9601. ))
  9602. characterMakers.push(() => makeCharacter(
  9603. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9604. {
  9605. front: {
  9606. height: math.unit(5, "feet"),
  9607. weight: math.unit(30, "kg"),
  9608. name: "Front",
  9609. image: {
  9610. source: "./media/characters/vial/front.svg",
  9611. extra: 1365 / 1277,
  9612. bottom: 0.04
  9613. }
  9614. },
  9615. },
  9616. [
  9617. {
  9618. name: "Normal",
  9619. height: math.unit(5, "feet"),
  9620. default: true
  9621. },
  9622. ]
  9623. ))
  9624. characterMakers.push(() => makeCharacter(
  9625. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9626. {
  9627. side: {
  9628. height: math.unit(3.4, "meters"),
  9629. weight: math.unit(1000, "lb"),
  9630. name: "Side",
  9631. image: {
  9632. source: "./media/characters/rovoska/side.svg",
  9633. extra: 4403 / 1515
  9634. }
  9635. },
  9636. },
  9637. [
  9638. {
  9639. name: "Normal",
  9640. height: math.unit(3.4, "meters"),
  9641. default: true
  9642. },
  9643. ]
  9644. ))
  9645. characterMakers.push(() => makeCharacter(
  9646. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9647. {
  9648. front: {
  9649. height: math.unit(8, "feet"),
  9650. weight: math.unit(315, "lb"),
  9651. name: "Front",
  9652. image: {
  9653. source: "./media/characters/gunner-rotthbauer/front.svg"
  9654. }
  9655. },
  9656. back: {
  9657. height: math.unit(8, "feet"),
  9658. weight: math.unit(315, "lb"),
  9659. name: "Back",
  9660. image: {
  9661. source: "./media/characters/gunner-rotthbauer/back.svg"
  9662. }
  9663. },
  9664. },
  9665. [
  9666. {
  9667. name: "Micro",
  9668. height: math.unit(3.5, "inches")
  9669. },
  9670. {
  9671. name: "Normal",
  9672. height: math.unit(8, "feet"),
  9673. default: true
  9674. },
  9675. {
  9676. name: "Macro",
  9677. height: math.unit(250, "feet")
  9678. },
  9679. {
  9680. name: "Megamacro",
  9681. height: math.unit(1, "AU")
  9682. },
  9683. ]
  9684. ))
  9685. characterMakers.push(() => makeCharacter(
  9686. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9687. {
  9688. front: {
  9689. height: math.unit(5 + 5 / 12, "feet"),
  9690. weight: math.unit(140, "lb"),
  9691. name: "Front",
  9692. image: {
  9693. source: "./media/characters/allatia/front.svg",
  9694. extra: 1227 / 1180,
  9695. bottom: 0.027
  9696. }
  9697. },
  9698. },
  9699. [
  9700. {
  9701. name: "Normal",
  9702. height: math.unit(5 + 5 / 12, "feet")
  9703. },
  9704. {
  9705. name: "Macro",
  9706. height: math.unit(250, "feet"),
  9707. default: true
  9708. },
  9709. {
  9710. name: "Megamacro",
  9711. height: math.unit(8, "miles")
  9712. }
  9713. ]
  9714. ))
  9715. characterMakers.push(() => makeCharacter(
  9716. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9717. {
  9718. front: {
  9719. height: math.unit(6, "feet"),
  9720. weight: math.unit(120, "lb"),
  9721. name: "Front",
  9722. image: {
  9723. source: "./media/characters/tene/front.svg",
  9724. extra: 1728 / 1578,
  9725. bottom: 0.022
  9726. }
  9727. },
  9728. stomping: {
  9729. height: math.unit(2.025, "meters"),
  9730. weight: math.unit(120, "lb"),
  9731. name: "Stomping",
  9732. image: {
  9733. source: "./media/characters/tene/stomping.svg",
  9734. extra: 938 / 873,
  9735. bottom: 0.01
  9736. }
  9737. },
  9738. sitting: {
  9739. height: math.unit(1, "meter"),
  9740. weight: math.unit(120, "lb"),
  9741. name: "Sitting",
  9742. image: {
  9743. source: "./media/characters/tene/sitting.svg",
  9744. extra: 437 / 415,
  9745. bottom: 0.1
  9746. }
  9747. },
  9748. feral: {
  9749. height: math.unit(3.9, "feet"),
  9750. weight: math.unit(250, "lb"),
  9751. name: "Feral",
  9752. image: {
  9753. source: "./media/characters/tene/feral.svg",
  9754. extra: 717 / 458,
  9755. bottom: 0.179
  9756. }
  9757. },
  9758. },
  9759. [
  9760. {
  9761. name: "Normal",
  9762. height: math.unit(6, "feet")
  9763. },
  9764. {
  9765. name: "Macro",
  9766. height: math.unit(300, "feet"),
  9767. default: true
  9768. },
  9769. {
  9770. name: "Megamacro",
  9771. height: math.unit(5, "miles")
  9772. },
  9773. ]
  9774. ))
  9775. characterMakers.push(() => makeCharacter(
  9776. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9777. {
  9778. side: {
  9779. height: math.unit(6, "feet"),
  9780. name: "Side",
  9781. image: {
  9782. source: "./media/characters/evander/side.svg",
  9783. extra: 877 / 477
  9784. }
  9785. },
  9786. },
  9787. [
  9788. {
  9789. name: "Normal",
  9790. height: math.unit(0.83, "meters"),
  9791. default: true
  9792. },
  9793. ]
  9794. ))
  9795. characterMakers.push(() => makeCharacter(
  9796. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9797. {
  9798. front: {
  9799. height: math.unit(12, "feet"),
  9800. weight: math.unit(1000, "lb"),
  9801. name: "Front",
  9802. image: {
  9803. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9804. extra: 1762 / 1611
  9805. }
  9806. },
  9807. back: {
  9808. height: math.unit(12, "feet"),
  9809. weight: math.unit(1000, "lb"),
  9810. name: "Back",
  9811. image: {
  9812. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9813. extra: 1762 / 1611
  9814. }
  9815. },
  9816. },
  9817. [
  9818. {
  9819. name: "Normal",
  9820. height: math.unit(12, "feet"),
  9821. default: true
  9822. },
  9823. {
  9824. name: "Kaiju",
  9825. height: math.unit(150, "feet")
  9826. },
  9827. ]
  9828. ))
  9829. characterMakers.push(() => makeCharacter(
  9830. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9831. {
  9832. front: {
  9833. height: math.unit(6, "feet"),
  9834. weight: math.unit(150, "lb"),
  9835. name: "Front",
  9836. image: {
  9837. source: "./media/characters/zero-alurus/front.svg"
  9838. }
  9839. },
  9840. back: {
  9841. height: math.unit(6, "feet"),
  9842. weight: math.unit(150, "lb"),
  9843. name: "Back",
  9844. image: {
  9845. source: "./media/characters/zero-alurus/back.svg"
  9846. }
  9847. },
  9848. },
  9849. [
  9850. {
  9851. name: "Normal",
  9852. height: math.unit(5 + 10 / 12, "feet")
  9853. },
  9854. {
  9855. name: "Macro",
  9856. height: math.unit(60, "feet"),
  9857. default: true
  9858. },
  9859. {
  9860. name: "Macro+",
  9861. height: math.unit(450, "feet")
  9862. },
  9863. ]
  9864. ))
  9865. characterMakers.push(() => makeCharacter(
  9866. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9867. {
  9868. front: {
  9869. height: math.unit(6, "feet"),
  9870. weight: math.unit(200, "lb"),
  9871. name: "Front",
  9872. image: {
  9873. source: "./media/characters/mega-shi/front.svg",
  9874. extra: 1279 / 1250,
  9875. bottom: 0.02
  9876. }
  9877. },
  9878. back: {
  9879. height: math.unit(6, "feet"),
  9880. weight: math.unit(200, "lb"),
  9881. name: "Back",
  9882. image: {
  9883. source: "./media/characters/mega-shi/back.svg",
  9884. extra: 1279 / 1250,
  9885. bottom: 0.02
  9886. }
  9887. },
  9888. },
  9889. [
  9890. {
  9891. name: "Micro",
  9892. height: math.unit(16 + 6 / 12, "feet")
  9893. },
  9894. {
  9895. name: "Third Dimension",
  9896. height: math.unit(40, "meters")
  9897. },
  9898. {
  9899. name: "Normal",
  9900. height: math.unit(660, "feet"),
  9901. default: true
  9902. },
  9903. {
  9904. name: "Megamacro",
  9905. height: math.unit(10, "miles")
  9906. },
  9907. {
  9908. name: "Planetary Launch",
  9909. height: math.unit(500, "miles")
  9910. },
  9911. {
  9912. name: "Interstellar",
  9913. height: math.unit(1e9, "miles")
  9914. },
  9915. {
  9916. name: "Leaving the Universe",
  9917. height: math.unit(1, "gigaparsec")
  9918. },
  9919. {
  9920. name: "Travelling Universes",
  9921. height: math.unit(30e15, "parsecs")
  9922. },
  9923. ]
  9924. ))
  9925. characterMakers.push(() => makeCharacter(
  9926. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9927. {
  9928. front: {
  9929. height: math.unit(6, "feet"),
  9930. weight: math.unit(150, "lb"),
  9931. name: "Front",
  9932. image: {
  9933. source: "./media/characters/odyssey/front.svg",
  9934. extra: 1782 / 1582,
  9935. bottom: 0.01
  9936. }
  9937. },
  9938. side: {
  9939. height: math.unit(5.7, "feet"),
  9940. weight: math.unit(140, "lb"),
  9941. name: "Side",
  9942. image: {
  9943. source: "./media/characters/odyssey/side.svg",
  9944. extra: 6462 / 5700
  9945. }
  9946. },
  9947. },
  9948. [
  9949. {
  9950. name: "Normal",
  9951. height: math.unit(5 + 4 / 12, "feet")
  9952. },
  9953. {
  9954. name: "Macro",
  9955. height: math.unit(1, "km")
  9956. },
  9957. {
  9958. name: "Megamacro",
  9959. height: math.unit(3000, "km")
  9960. },
  9961. {
  9962. name: "Gigamacro",
  9963. height: math.unit(1, "AU"),
  9964. default: true
  9965. },
  9966. {
  9967. name: "Omniversal",
  9968. height: math.unit(100e14, "lightyears")
  9969. },
  9970. ]
  9971. ))
  9972. characterMakers.push(() => makeCharacter(
  9973. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9974. {
  9975. front: {
  9976. height: math.unit(6, "feet"),
  9977. weight: math.unit(300, "lb"),
  9978. name: "Front",
  9979. image: {
  9980. source: "./media/characters/mekuto/front.svg",
  9981. extra: 921 / 832,
  9982. bottom: 0.03
  9983. }
  9984. },
  9985. hand: {
  9986. height: math.unit(6 / 10.24, "feet"),
  9987. name: "Hand",
  9988. image: {
  9989. source: "./media/characters/mekuto/hand.svg"
  9990. }
  9991. },
  9992. foot: {
  9993. height: math.unit(6 / 5.05, "feet"),
  9994. name: "Foot",
  9995. image: {
  9996. source: "./media/characters/mekuto/foot.svg"
  9997. }
  9998. },
  9999. },
  10000. [
  10001. {
  10002. name: "Minimicro",
  10003. height: math.unit(0.2, "inches")
  10004. },
  10005. {
  10006. name: "Micro",
  10007. height: math.unit(1.5, "inches")
  10008. },
  10009. {
  10010. name: "Normal",
  10011. height: math.unit(5 + 11 / 12, "feet"),
  10012. default: true
  10013. },
  10014. {
  10015. name: "Minimacro",
  10016. height: math.unit(17 + 9 / 12, "feet")
  10017. },
  10018. {
  10019. name: "Macro",
  10020. height: math.unit(177.5, "feet")
  10021. },
  10022. {
  10023. name: "Megamacro",
  10024. height: math.unit(152, "miles")
  10025. },
  10026. ]
  10027. ))
  10028. characterMakers.push(() => makeCharacter(
  10029. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10030. {
  10031. front: {
  10032. height: math.unit(6.5, "inches"),
  10033. weight: math.unit(13, "oz"),
  10034. name: "Front",
  10035. image: {
  10036. source: "./media/characters/dafydd-tomos/front.svg",
  10037. extra: 2990 / 2603,
  10038. bottom: 0.03
  10039. }
  10040. },
  10041. },
  10042. [
  10043. {
  10044. name: "Micro",
  10045. height: math.unit(6.5, "inches"),
  10046. default: true
  10047. },
  10048. ]
  10049. ))
  10050. characterMakers.push(() => makeCharacter(
  10051. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10052. {
  10053. front: {
  10054. height: math.unit(6, "feet"),
  10055. weight: math.unit(150, "lb"),
  10056. name: "Front",
  10057. image: {
  10058. source: "./media/characters/splinter/front.svg",
  10059. extra: 2990 / 2882,
  10060. bottom: 0.04
  10061. }
  10062. },
  10063. back: {
  10064. height: math.unit(6, "feet"),
  10065. weight: math.unit(150, "lb"),
  10066. name: "Back",
  10067. image: {
  10068. source: "./media/characters/splinter/back.svg",
  10069. extra: 2990 / 2882,
  10070. bottom: 0.04
  10071. }
  10072. },
  10073. },
  10074. [
  10075. {
  10076. name: "Normal",
  10077. height: math.unit(6, "feet")
  10078. },
  10079. {
  10080. name: "Macro",
  10081. height: math.unit(230, "meters"),
  10082. default: true
  10083. },
  10084. ]
  10085. ))
  10086. characterMakers.push(() => makeCharacter(
  10087. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10088. {
  10089. front: {
  10090. height: math.unit(4 + 10 / 12, "feet"),
  10091. weight: math.unit(480, "lb"),
  10092. name: "Front",
  10093. image: {
  10094. source: "./media/characters/snow-gabumon/front.svg",
  10095. extra: 1140 / 963,
  10096. bottom: 0.058
  10097. }
  10098. },
  10099. back: {
  10100. height: math.unit(4 + 10 / 12, "feet"),
  10101. weight: math.unit(480, "lb"),
  10102. name: "Back",
  10103. image: {
  10104. source: "./media/characters/snow-gabumon/back.svg",
  10105. extra: 1115 / 962,
  10106. bottom: 0.041
  10107. }
  10108. },
  10109. frontUndresed: {
  10110. height: math.unit(4 + 10 / 12, "feet"),
  10111. weight: math.unit(480, "lb"),
  10112. name: "Front (Undressed)",
  10113. image: {
  10114. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10115. extra: 1061 / 960,
  10116. bottom: 0.045
  10117. }
  10118. },
  10119. },
  10120. [
  10121. {
  10122. name: "Micro",
  10123. height: math.unit(1, "inch")
  10124. },
  10125. {
  10126. name: "Normal",
  10127. height: math.unit(4 + 10 / 12, "feet"),
  10128. default: true
  10129. },
  10130. {
  10131. name: "Macro",
  10132. height: math.unit(200, "feet")
  10133. },
  10134. {
  10135. name: "Megamacro",
  10136. height: math.unit(120, "miles")
  10137. },
  10138. {
  10139. name: "Gigamacro",
  10140. height: math.unit(9800, "miles")
  10141. },
  10142. ]
  10143. ))
  10144. characterMakers.push(() => makeCharacter(
  10145. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10146. {
  10147. front: {
  10148. height: math.unit(1.7, "meters"),
  10149. weight: math.unit(140, "lb"),
  10150. name: "Front",
  10151. image: {
  10152. source: "./media/characters/moody/front.svg",
  10153. extra: 3226 / 3007,
  10154. bottom: 0.087
  10155. }
  10156. },
  10157. },
  10158. [
  10159. {
  10160. name: "Micro",
  10161. height: math.unit(1, "mm")
  10162. },
  10163. {
  10164. name: "Normal",
  10165. height: math.unit(1.7, "meters"),
  10166. default: true
  10167. },
  10168. {
  10169. name: "Macro",
  10170. height: math.unit(80, "meters")
  10171. },
  10172. {
  10173. name: "Macro+",
  10174. height: math.unit(500, "meters")
  10175. },
  10176. ]
  10177. ))
  10178. characterMakers.push(() => makeCharacter(
  10179. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10180. {
  10181. front: {
  10182. height: math.unit(6, "feet"),
  10183. weight: math.unit(150, "lb"),
  10184. name: "Front",
  10185. image: {
  10186. source: "./media/characters/zyas/front.svg",
  10187. extra: 1180 / 1120,
  10188. bottom: 0.045
  10189. }
  10190. },
  10191. },
  10192. [
  10193. {
  10194. name: "Normal",
  10195. height: math.unit(10, "feet"),
  10196. default: true
  10197. },
  10198. {
  10199. name: "Macro",
  10200. height: math.unit(500, "feet")
  10201. },
  10202. {
  10203. name: "Megamacro",
  10204. height: math.unit(5, "miles")
  10205. },
  10206. {
  10207. name: "Teramacro",
  10208. height: math.unit(150000, "miles")
  10209. },
  10210. ]
  10211. ))
  10212. characterMakers.push(() => makeCharacter(
  10213. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10214. {
  10215. front: {
  10216. height: math.unit(6, "feet"),
  10217. weight: math.unit(150, "lb"),
  10218. name: "Front",
  10219. image: {
  10220. source: "./media/characters/cuon/front.svg",
  10221. extra: 1390 / 1320,
  10222. bottom: 0.008
  10223. }
  10224. },
  10225. },
  10226. [
  10227. {
  10228. name: "Micro",
  10229. height: math.unit(3, "inches")
  10230. },
  10231. {
  10232. name: "Normal",
  10233. height: math.unit(18 + 9 / 12, "feet"),
  10234. default: true
  10235. },
  10236. {
  10237. name: "Macro",
  10238. height: math.unit(360, "feet")
  10239. },
  10240. {
  10241. name: "Megamacro",
  10242. height: math.unit(360, "miles")
  10243. },
  10244. ]
  10245. ))
  10246. characterMakers.push(() => makeCharacter(
  10247. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10248. {
  10249. front: {
  10250. height: math.unit(2.4, "meters"),
  10251. weight: math.unit(70, "kg"),
  10252. name: "Front",
  10253. image: {
  10254. source: "./media/characters/nyanuxk/front.svg",
  10255. extra: 1172 / 1084,
  10256. bottom: 0.065
  10257. }
  10258. },
  10259. side: {
  10260. height: math.unit(2.4, "meters"),
  10261. weight: math.unit(70, "kg"),
  10262. name: "Side",
  10263. image: {
  10264. source: "./media/characters/nyanuxk/side.svg",
  10265. extra: 1190 / 1132,
  10266. bottom: 0.007
  10267. }
  10268. },
  10269. back: {
  10270. height: math.unit(2.4, "meters"),
  10271. weight: math.unit(70, "kg"),
  10272. name: "Back",
  10273. image: {
  10274. source: "./media/characters/nyanuxk/back.svg",
  10275. extra: 1200 / 1141,
  10276. bottom: 0.015
  10277. }
  10278. },
  10279. foot: {
  10280. height: math.unit(0.52, "meters"),
  10281. name: "Foot",
  10282. image: {
  10283. source: "./media/characters/nyanuxk/foot.svg"
  10284. }
  10285. },
  10286. },
  10287. [
  10288. {
  10289. name: "Micro",
  10290. height: math.unit(2, "cm")
  10291. },
  10292. {
  10293. name: "Normal",
  10294. height: math.unit(2.4, "meters"),
  10295. default: true
  10296. },
  10297. {
  10298. name: "Smaller Macro",
  10299. height: math.unit(120, "meters")
  10300. },
  10301. {
  10302. name: "Bigger Macro",
  10303. height: math.unit(1.2, "km")
  10304. },
  10305. {
  10306. name: "Megamacro",
  10307. height: math.unit(15, "kilometers")
  10308. },
  10309. {
  10310. name: "Gigamacro",
  10311. height: math.unit(2000, "km")
  10312. },
  10313. {
  10314. name: "Teramacro",
  10315. height: math.unit(500000, "km")
  10316. },
  10317. ]
  10318. ))
  10319. characterMakers.push(() => makeCharacter(
  10320. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10321. {
  10322. side: {
  10323. height: math.unit(6, "feet"),
  10324. name: "Side",
  10325. image: {
  10326. source: "./media/characters/ailbhe/side.svg",
  10327. extra: 757 / 464,
  10328. bottom: 0.041
  10329. }
  10330. },
  10331. },
  10332. [
  10333. {
  10334. name: "Normal",
  10335. height: math.unit(1.07, "meters"),
  10336. default: true
  10337. },
  10338. ]
  10339. ))
  10340. characterMakers.push(() => makeCharacter(
  10341. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10342. {
  10343. front: {
  10344. height: math.unit(6, "feet"),
  10345. weight: math.unit(120, "kg"),
  10346. name: "Front",
  10347. image: {
  10348. source: "./media/characters/zevulfius/front.svg",
  10349. extra: 965 / 903
  10350. }
  10351. },
  10352. side: {
  10353. height: math.unit(6, "feet"),
  10354. weight: math.unit(120, "kg"),
  10355. name: "Side",
  10356. image: {
  10357. source: "./media/characters/zevulfius/side.svg",
  10358. extra: 939 / 900
  10359. }
  10360. },
  10361. back: {
  10362. height: math.unit(6, "feet"),
  10363. weight: math.unit(120, "kg"),
  10364. name: "Back",
  10365. image: {
  10366. source: "./media/characters/zevulfius/back.svg",
  10367. extra: 918 / 854,
  10368. bottom: 0.005
  10369. }
  10370. },
  10371. foot: {
  10372. height: math.unit(6 / 3.72, "feet"),
  10373. name: "Foot",
  10374. image: {
  10375. source: "./media/characters/zevulfius/foot.svg"
  10376. }
  10377. },
  10378. },
  10379. [
  10380. {
  10381. name: "Macro",
  10382. height: math.unit(750, "meters")
  10383. },
  10384. {
  10385. name: "Megamacro",
  10386. height: math.unit(20, "km"),
  10387. default: true
  10388. },
  10389. {
  10390. name: "Gigamacro",
  10391. height: math.unit(2000, "km")
  10392. },
  10393. {
  10394. name: "Teramacro",
  10395. height: math.unit(250000, "km")
  10396. },
  10397. ]
  10398. ))
  10399. characterMakers.push(() => makeCharacter(
  10400. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10401. {
  10402. front: {
  10403. height: math.unit(100, "feet"),
  10404. weight: math.unit(350, "kg"),
  10405. name: "Front",
  10406. image: {
  10407. source: "./media/characters/rikes/front.svg",
  10408. extra: 1565 / 1483,
  10409. bottom: 0.017
  10410. }
  10411. },
  10412. },
  10413. [
  10414. {
  10415. name: "Macro",
  10416. height: math.unit(100, "feet"),
  10417. default: true
  10418. },
  10419. ]
  10420. ))
  10421. characterMakers.push(() => makeCharacter(
  10422. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10423. {
  10424. anthro: {
  10425. height: math.unit(8, "feet"),
  10426. weight: math.unit(120, "kg"),
  10427. name: "Anthro",
  10428. image: {
  10429. source: "./media/characters/adam-silver-mane/anthro.svg",
  10430. extra: 5743 / 5339,
  10431. bottom: 0.07
  10432. }
  10433. },
  10434. taur: {
  10435. height: math.unit(16, "feet"),
  10436. weight: math.unit(1500, "kg"),
  10437. name: "Taur",
  10438. image: {
  10439. source: "./media/characters/adam-silver-mane/taur.svg",
  10440. extra: 1713 / 1571,
  10441. bottom: 0.01
  10442. }
  10443. },
  10444. },
  10445. [
  10446. {
  10447. name: "Normal",
  10448. height: math.unit(8, "feet")
  10449. },
  10450. {
  10451. name: "Minimacro",
  10452. height: math.unit(80, "feet")
  10453. },
  10454. {
  10455. name: "Macro",
  10456. height: math.unit(800, "feet"),
  10457. default: true
  10458. },
  10459. {
  10460. name: "Megamacro",
  10461. height: math.unit(8000, "feet")
  10462. },
  10463. {
  10464. name: "Gigamacro",
  10465. height: math.unit(800, "miles")
  10466. },
  10467. {
  10468. name: "Teramacro",
  10469. height: math.unit(80000, "miles")
  10470. },
  10471. {
  10472. name: "Celestial",
  10473. height: math.unit(8e6, "miles")
  10474. },
  10475. {
  10476. name: "Star Dragon",
  10477. height: math.unit(800000, "parsecs")
  10478. },
  10479. {
  10480. name: "Godly",
  10481. height: math.unit(800, "teraparsecs")
  10482. },
  10483. ]
  10484. ))
  10485. characterMakers.push(() => makeCharacter(
  10486. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10487. {
  10488. front: {
  10489. height: math.unit(6, "feet"),
  10490. weight: math.unit(150, "lb"),
  10491. name: "Front",
  10492. image: {
  10493. source: "./media/characters/ky'owin/front.svg",
  10494. extra: 3888 / 3068,
  10495. bottom: 0.015
  10496. }
  10497. },
  10498. },
  10499. [
  10500. {
  10501. name: "Normal",
  10502. height: math.unit(6 + 8 / 12, "feet")
  10503. },
  10504. {
  10505. name: "Large",
  10506. height: math.unit(68, "feet")
  10507. },
  10508. {
  10509. name: "Macro",
  10510. height: math.unit(132, "feet")
  10511. },
  10512. {
  10513. name: "Macro+",
  10514. height: math.unit(340, "feet")
  10515. },
  10516. {
  10517. name: "Macro++",
  10518. height: math.unit(680, "feet"),
  10519. default: true
  10520. },
  10521. {
  10522. name: "Megamacro",
  10523. height: math.unit(1, "mile")
  10524. },
  10525. {
  10526. name: "Megamacro+",
  10527. height: math.unit(10, "miles")
  10528. },
  10529. ]
  10530. ))
  10531. characterMakers.push(() => makeCharacter(
  10532. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10533. {
  10534. front: {
  10535. height: math.unit(4, "feet"),
  10536. weight: math.unit(50, "lb"),
  10537. name: "Front",
  10538. image: {
  10539. source: "./media/characters/mal/front.svg",
  10540. extra: 785 / 724,
  10541. bottom: 0.07
  10542. }
  10543. },
  10544. },
  10545. [
  10546. {
  10547. name: "Micro",
  10548. height: math.unit(4, "inches")
  10549. },
  10550. {
  10551. name: "Normal",
  10552. height: math.unit(4, "feet"),
  10553. default: true
  10554. },
  10555. {
  10556. name: "Macro",
  10557. height: math.unit(200, "feet")
  10558. },
  10559. ]
  10560. ))
  10561. characterMakers.push(() => makeCharacter(
  10562. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10563. {
  10564. front: {
  10565. height: math.unit(6, "feet"),
  10566. weight: math.unit(150, "lb"),
  10567. name: "Front",
  10568. image: {
  10569. source: "./media/characters/jordan-deware/front.svg",
  10570. extra: 1191 / 1012
  10571. }
  10572. },
  10573. },
  10574. [
  10575. {
  10576. name: "Nano",
  10577. height: math.unit(0.01, "mm")
  10578. },
  10579. {
  10580. name: "Minimicro",
  10581. height: math.unit(1, "mm")
  10582. },
  10583. {
  10584. name: "Micro",
  10585. height: math.unit(0.5, "inches")
  10586. },
  10587. {
  10588. name: "Normal",
  10589. height: math.unit(4, "feet"),
  10590. default: true
  10591. },
  10592. {
  10593. name: "Minimacro",
  10594. height: math.unit(40, "meters")
  10595. },
  10596. {
  10597. name: "Small Macro",
  10598. height: math.unit(400, "meters")
  10599. },
  10600. {
  10601. name: "Macro",
  10602. height: math.unit(4, "miles")
  10603. },
  10604. {
  10605. name: "Megamacro",
  10606. height: math.unit(40, "miles")
  10607. },
  10608. {
  10609. name: "Megamacro+",
  10610. height: math.unit(400, "miles")
  10611. },
  10612. {
  10613. name: "Gigamacro",
  10614. height: math.unit(400000, "miles")
  10615. },
  10616. ]
  10617. ))
  10618. characterMakers.push(() => makeCharacter(
  10619. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10620. {
  10621. side: {
  10622. height: math.unit(6, "feet"),
  10623. weight: math.unit(150, "lb"),
  10624. name: "Side",
  10625. image: {
  10626. source: "./media/characters/kimiko/side.svg",
  10627. extra: 600 / 358
  10628. }
  10629. },
  10630. },
  10631. [
  10632. {
  10633. name: "Normal",
  10634. height: math.unit(15, "feet"),
  10635. default: true
  10636. },
  10637. {
  10638. name: "Macro",
  10639. height: math.unit(220, "feet")
  10640. },
  10641. {
  10642. name: "Macro+",
  10643. height: math.unit(1450, "feet")
  10644. },
  10645. {
  10646. name: "Megamacro",
  10647. height: math.unit(11500, "feet")
  10648. },
  10649. {
  10650. name: "Gigamacro",
  10651. height: math.unit(9500, "miles")
  10652. },
  10653. {
  10654. name: "Teramacro",
  10655. height: math.unit(2208005005, "miles")
  10656. },
  10657. {
  10658. name: "Examacro",
  10659. height: math.unit(2750, "parsecs")
  10660. },
  10661. {
  10662. name: "Zettamacro",
  10663. height: math.unit(101500, "parsecs")
  10664. },
  10665. ]
  10666. ))
  10667. characterMakers.push(() => makeCharacter(
  10668. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10669. {
  10670. front: {
  10671. height: math.unit(6, "feet"),
  10672. weight: math.unit(70, "kg"),
  10673. name: "Front",
  10674. image: {
  10675. source: "./media/characters/andrew-sleepy/front.svg"
  10676. }
  10677. },
  10678. side: {
  10679. height: math.unit(6, "feet"),
  10680. weight: math.unit(70, "kg"),
  10681. name: "Side",
  10682. image: {
  10683. source: "./media/characters/andrew-sleepy/side.svg"
  10684. }
  10685. },
  10686. },
  10687. [
  10688. {
  10689. name: "Micro",
  10690. height: math.unit(1, "mm"),
  10691. default: true
  10692. },
  10693. ]
  10694. ))
  10695. characterMakers.push(() => makeCharacter(
  10696. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10697. {
  10698. front: {
  10699. height: math.unit(6, "feet"),
  10700. weight: math.unit(150, "lb"),
  10701. name: "Front",
  10702. image: {
  10703. source: "./media/characters/judio/front.svg",
  10704. extra: 1258 / 1110
  10705. }
  10706. },
  10707. },
  10708. [
  10709. {
  10710. name: "Normal",
  10711. height: math.unit(5 + 6 / 12, "feet")
  10712. },
  10713. {
  10714. name: "Macro",
  10715. height: math.unit(1000, "feet"),
  10716. default: true
  10717. },
  10718. {
  10719. name: "Megamacro",
  10720. height: math.unit(10, "miles")
  10721. },
  10722. ]
  10723. ))
  10724. characterMakers.push(() => makeCharacter(
  10725. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10726. {
  10727. front: {
  10728. height: math.unit(6, "feet"),
  10729. weight: math.unit(68, "kg"),
  10730. name: "Front",
  10731. image: {
  10732. source: "./media/characters/nomaxice/front.svg",
  10733. extra: 1498 / 1073,
  10734. bottom: 0.075
  10735. }
  10736. },
  10737. foot: {
  10738. height: math.unit(1.1, "feet"),
  10739. name: "Foot",
  10740. image: {
  10741. source: "./media/characters/nomaxice/foot.svg"
  10742. }
  10743. },
  10744. },
  10745. [
  10746. {
  10747. name: "Micro",
  10748. height: math.unit(8, "cm")
  10749. },
  10750. {
  10751. name: "Norm",
  10752. height: math.unit(1.82, "m")
  10753. },
  10754. {
  10755. name: "Norm+",
  10756. height: math.unit(8.8, "feet")
  10757. },
  10758. {
  10759. name: "Big",
  10760. height: math.unit(8, "meters"),
  10761. default: true
  10762. },
  10763. {
  10764. name: "Macro",
  10765. height: math.unit(18, "meters")
  10766. },
  10767. {
  10768. name: "Macro+",
  10769. height: math.unit(88, "meters")
  10770. },
  10771. ]
  10772. ))
  10773. characterMakers.push(() => makeCharacter(
  10774. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10775. {
  10776. front: {
  10777. height: math.unit(12, "feet"),
  10778. weight: math.unit(1.5, "tons"),
  10779. name: "Front",
  10780. image: {
  10781. source: "./media/characters/dydros/front.svg",
  10782. extra: 863 / 800,
  10783. bottom: 0.015
  10784. }
  10785. },
  10786. back: {
  10787. height: math.unit(12, "feet"),
  10788. weight: math.unit(1.5, "tons"),
  10789. name: "Back",
  10790. image: {
  10791. source: "./media/characters/dydros/back.svg",
  10792. extra: 900 / 843,
  10793. bottom: 0.005
  10794. }
  10795. },
  10796. },
  10797. [
  10798. {
  10799. name: "Normal",
  10800. height: math.unit(12, "feet"),
  10801. default: true
  10802. },
  10803. ]
  10804. ))
  10805. characterMakers.push(() => makeCharacter(
  10806. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10807. {
  10808. front: {
  10809. height: math.unit(6, "feet"),
  10810. weight: math.unit(100, "kg"),
  10811. name: "Front",
  10812. image: {
  10813. source: "./media/characters/riggi/front.svg",
  10814. extra: 5787 / 5303
  10815. }
  10816. },
  10817. hyper: {
  10818. height: math.unit(6 * 5 / 3, "feet"),
  10819. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10820. name: "Hyper",
  10821. image: {
  10822. source: "./media/characters/riggi/hyper.svg",
  10823. extra: 3595 / 3485
  10824. }
  10825. },
  10826. },
  10827. [
  10828. {
  10829. name: "Small Macro",
  10830. height: math.unit(50, "feet")
  10831. },
  10832. {
  10833. name: "Default",
  10834. height: math.unit(200, "feet"),
  10835. default: true
  10836. },
  10837. {
  10838. name: "Loom",
  10839. height: math.unit(10000, "feet")
  10840. },
  10841. {
  10842. name: "Cruising Altitude",
  10843. height: math.unit(30000, "feet")
  10844. },
  10845. {
  10846. name: "Megamacro",
  10847. height: math.unit(100, "miles")
  10848. },
  10849. {
  10850. name: "Continent Sized",
  10851. height: math.unit(2800, "miles")
  10852. },
  10853. {
  10854. name: "Earth Sized",
  10855. height: math.unit(8000, "miles")
  10856. },
  10857. ]
  10858. ))
  10859. characterMakers.push(() => makeCharacter(
  10860. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10861. {
  10862. front: {
  10863. height: math.unit(6, "feet"),
  10864. weight: math.unit(250, "lb"),
  10865. name: "Front",
  10866. image: {
  10867. source: "./media/characters/alexi/front.svg",
  10868. extra: 3483 / 3291,
  10869. bottom: 0.04
  10870. }
  10871. },
  10872. back: {
  10873. height: math.unit(6, "feet"),
  10874. weight: math.unit(250, "lb"),
  10875. name: "Back",
  10876. image: {
  10877. source: "./media/characters/alexi/back.svg",
  10878. extra: 3533 / 3356,
  10879. bottom: 0.021
  10880. }
  10881. },
  10882. frontTransforming: {
  10883. height: math.unit(8.58, "feet"),
  10884. weight: math.unit(1300, "lb"),
  10885. name: "Transforming",
  10886. image: {
  10887. source: "./media/characters/alexi/front-transforming.svg",
  10888. extra: 437 / 409,
  10889. bottom: 19 / 458.66
  10890. }
  10891. },
  10892. frontTransformed: {
  10893. height: math.unit(12.5, "feet"),
  10894. weight: math.unit(4000, "lb"),
  10895. name: "Transformed",
  10896. image: {
  10897. source: "./media/characters/alexi/front-transformed.svg",
  10898. extra: 639 / 614,
  10899. bottom: 30.55 / 671
  10900. }
  10901. },
  10902. },
  10903. [
  10904. {
  10905. name: "Normal",
  10906. height: math.unit(14, "feet"),
  10907. default: true
  10908. },
  10909. {
  10910. name: "Minimacro",
  10911. height: math.unit(30, "meters")
  10912. },
  10913. {
  10914. name: "Macro",
  10915. height: math.unit(500, "meters")
  10916. },
  10917. {
  10918. name: "Megamacro",
  10919. height: math.unit(9000, "km")
  10920. },
  10921. {
  10922. name: "Teramacro",
  10923. height: math.unit(384000, "km")
  10924. },
  10925. ]
  10926. ))
  10927. characterMakers.push(() => makeCharacter(
  10928. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10929. {
  10930. front: {
  10931. height: math.unit(6, "feet"),
  10932. weight: math.unit(150, "lb"),
  10933. name: "Front",
  10934. image: {
  10935. source: "./media/characters/kayroo/front.svg",
  10936. extra: 1153 / 1038,
  10937. bottom: 0.06
  10938. }
  10939. },
  10940. foot: {
  10941. height: math.unit(6, "feet"),
  10942. weight: math.unit(150, "lb"),
  10943. name: "Foot",
  10944. image: {
  10945. source: "./media/characters/kayroo/foot.svg"
  10946. }
  10947. },
  10948. },
  10949. [
  10950. {
  10951. name: "Normal",
  10952. height: math.unit(8, "feet"),
  10953. default: true
  10954. },
  10955. {
  10956. name: "Minimacro",
  10957. height: math.unit(250, "feet")
  10958. },
  10959. {
  10960. name: "Macro",
  10961. height: math.unit(2800, "feet")
  10962. },
  10963. {
  10964. name: "Megamacro",
  10965. height: math.unit(5200, "feet")
  10966. },
  10967. {
  10968. name: "Gigamacro",
  10969. height: math.unit(27000, "feet")
  10970. },
  10971. {
  10972. name: "Omega",
  10973. height: math.unit(45000, "feet")
  10974. },
  10975. ]
  10976. ))
  10977. characterMakers.push(() => makeCharacter(
  10978. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10979. {
  10980. front: {
  10981. height: math.unit(18, "feet"),
  10982. weight: math.unit(5800, "lb"),
  10983. name: "Front",
  10984. image: {
  10985. source: "./media/characters/rhys/front.svg",
  10986. extra: 3386 / 3090,
  10987. bottom: 0.07
  10988. }
  10989. },
  10990. },
  10991. [
  10992. {
  10993. name: "Normal",
  10994. height: math.unit(18, "feet"),
  10995. default: true
  10996. },
  10997. {
  10998. name: "Working Size",
  10999. height: math.unit(200, "feet")
  11000. },
  11001. {
  11002. name: "Demolition Size",
  11003. height: math.unit(2000, "feet")
  11004. },
  11005. {
  11006. name: "Maximum Licensed Size",
  11007. height: math.unit(5, "miles")
  11008. },
  11009. {
  11010. name: "Maximum Observed Size",
  11011. height: math.unit(10, "yottameters")
  11012. },
  11013. ]
  11014. ))
  11015. characterMakers.push(() => makeCharacter(
  11016. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11017. {
  11018. front: {
  11019. height: math.unit(6, "feet"),
  11020. weight: math.unit(250, "lb"),
  11021. name: "Front",
  11022. image: {
  11023. source: "./media/characters/toto/front.svg",
  11024. extra: 527 / 479,
  11025. bottom: 0.05
  11026. }
  11027. },
  11028. },
  11029. [
  11030. {
  11031. name: "Micro",
  11032. height: math.unit(3, "feet")
  11033. },
  11034. {
  11035. name: "Normal",
  11036. height: math.unit(10, "feet")
  11037. },
  11038. {
  11039. name: "Macro",
  11040. height: math.unit(150, "feet"),
  11041. default: true
  11042. },
  11043. {
  11044. name: "Megamacro",
  11045. height: math.unit(1200, "feet")
  11046. },
  11047. ]
  11048. ))
  11049. characterMakers.push(() => makeCharacter(
  11050. { name: "King", species: ["lion"], tags: ["anthro"] },
  11051. {
  11052. back: {
  11053. height: math.unit(6, "feet"),
  11054. weight: math.unit(150, "lb"),
  11055. name: "Back",
  11056. image: {
  11057. source: "./media/characters/king/back.svg"
  11058. }
  11059. },
  11060. },
  11061. [
  11062. {
  11063. name: "Micro",
  11064. height: math.unit(2, "inches")
  11065. },
  11066. {
  11067. name: "Normal",
  11068. height: math.unit(8, "feet")
  11069. },
  11070. {
  11071. name: "Macro",
  11072. height: math.unit(200, "feet"),
  11073. default: true
  11074. },
  11075. {
  11076. name: "Megamacro",
  11077. height: math.unit(50, "miles")
  11078. },
  11079. ]
  11080. ))
  11081. characterMakers.push(() => makeCharacter(
  11082. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11083. {
  11084. anthro: {
  11085. height: math.unit(6 + 5 / 12, "feet"),
  11086. weight: math.unit(280, "lb"),
  11087. name: "Anthro",
  11088. image: {
  11089. source: "./media/characters/cordite/anthro.svg",
  11090. extra: 1986 / 1905,
  11091. bottom: 0.025
  11092. }
  11093. },
  11094. feral: {
  11095. height: math.unit(2, "feet"),
  11096. weight: math.unit(90, "lb"),
  11097. name: "Feral",
  11098. image: {
  11099. source: "./media/characters/cordite/feral.svg",
  11100. extra: 1260 / 755,
  11101. bottom: 0.05
  11102. }
  11103. },
  11104. },
  11105. [
  11106. {
  11107. name: "Normal",
  11108. height: math.unit(6 + 5 / 12, "feet"),
  11109. default: true
  11110. },
  11111. ]
  11112. ))
  11113. characterMakers.push(() => makeCharacter(
  11114. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11115. {
  11116. front: {
  11117. height: math.unit(6, "feet"),
  11118. weight: math.unit(150, "lb"),
  11119. name: "Front",
  11120. image: {
  11121. source: "./media/characters/pianostrong/front.svg",
  11122. extra: 6577 / 6254,
  11123. bottom: 0.02
  11124. }
  11125. },
  11126. side: {
  11127. height: math.unit(6, "feet"),
  11128. weight: math.unit(150, "lb"),
  11129. name: "Side",
  11130. image: {
  11131. source: "./media/characters/pianostrong/side.svg",
  11132. extra: 6106 / 5730
  11133. }
  11134. },
  11135. back: {
  11136. height: math.unit(6, "feet"),
  11137. weight: math.unit(150, "lb"),
  11138. name: "Back",
  11139. image: {
  11140. source: "./media/characters/pianostrong/back.svg",
  11141. extra: 6085 / 5733,
  11142. bottom: 0.01
  11143. }
  11144. },
  11145. },
  11146. [
  11147. {
  11148. name: "Macro",
  11149. height: math.unit(100, "feet")
  11150. },
  11151. {
  11152. name: "Macro+",
  11153. height: math.unit(300, "feet"),
  11154. default: true
  11155. },
  11156. {
  11157. name: "Macro++",
  11158. height: math.unit(1000, "feet")
  11159. },
  11160. ]
  11161. ))
  11162. characterMakers.push(() => makeCharacter(
  11163. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11164. {
  11165. front: {
  11166. height: math.unit(6, "feet"),
  11167. weight: math.unit(150, "lb"),
  11168. name: "Front",
  11169. image: {
  11170. source: "./media/characters/kona/front.svg",
  11171. extra: 2960 / 2629,
  11172. bottom: 0.005
  11173. }
  11174. },
  11175. },
  11176. [
  11177. {
  11178. name: "Normal",
  11179. height: math.unit(11 + 8 / 12, "feet")
  11180. },
  11181. {
  11182. name: "Macro",
  11183. height: math.unit(850, "feet"),
  11184. default: true
  11185. },
  11186. {
  11187. name: "Macro+",
  11188. height: math.unit(1.5, "km"),
  11189. default: true
  11190. },
  11191. {
  11192. name: "Megamacro",
  11193. height: math.unit(80, "miles")
  11194. },
  11195. {
  11196. name: "Gigamacro",
  11197. height: math.unit(3500, "miles")
  11198. },
  11199. ]
  11200. ))
  11201. characterMakers.push(() => makeCharacter(
  11202. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11203. {
  11204. side: {
  11205. height: math.unit(1.9, "meters"),
  11206. weight: math.unit(326, "kg"),
  11207. name: "Side",
  11208. image: {
  11209. source: "./media/characters/levi/side.svg",
  11210. extra: 1704 / 1334,
  11211. bottom: 0.02
  11212. }
  11213. },
  11214. },
  11215. [
  11216. {
  11217. name: "Normal",
  11218. height: math.unit(1.9, "meters"),
  11219. default: true
  11220. },
  11221. {
  11222. name: "Macro",
  11223. height: math.unit(20, "meters")
  11224. },
  11225. {
  11226. name: "Macro+",
  11227. height: math.unit(200, "meters")
  11228. },
  11229. {
  11230. name: "Megamacro",
  11231. height: math.unit(2, "km")
  11232. },
  11233. {
  11234. name: "Megamacro+",
  11235. height: math.unit(20, "km")
  11236. },
  11237. {
  11238. name: "Gigamacro",
  11239. height: math.unit(2500, "km")
  11240. },
  11241. {
  11242. name: "Gigamacro+",
  11243. height: math.unit(120000, "km")
  11244. },
  11245. {
  11246. name: "Teramacro",
  11247. height: math.unit(7.77e6, "km")
  11248. },
  11249. ]
  11250. ))
  11251. characterMakers.push(() => makeCharacter(
  11252. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11253. {
  11254. front: {
  11255. height: math.unit(6 + 4/12, "feet"),
  11256. weight: math.unit(190, "lb"),
  11257. name: "Front",
  11258. image: {
  11259. source: "./media/characters/bmc/front.svg",
  11260. extra: 1626/1472,
  11261. bottom: 79/1705
  11262. }
  11263. },
  11264. back: {
  11265. height: math.unit(6 + 4/12, "feet"),
  11266. weight: math.unit(190, "lb"),
  11267. name: "Back",
  11268. image: {
  11269. source: "./media/characters/bmc/back.svg",
  11270. extra: 1640/1479,
  11271. bottom: 45/1685
  11272. }
  11273. },
  11274. frontArmor: {
  11275. height: math.unit(6 + 4/12, "feet"),
  11276. weight: math.unit(190, "lb"),
  11277. name: "Front-armor",
  11278. image: {
  11279. source: "./media/characters/bmc/front-armor.svg",
  11280. extra: 1538/1468,
  11281. bottom: 79/1617
  11282. }
  11283. },
  11284. },
  11285. [
  11286. {
  11287. name: "Human-sized",
  11288. height: math.unit(6 + 4 / 12, "feet")
  11289. },
  11290. {
  11291. name: "Interactive Size",
  11292. height: math.unit(25, "feet")
  11293. },
  11294. {
  11295. name: "Small",
  11296. height: math.unit(250, "feet")
  11297. },
  11298. {
  11299. name: "Normal",
  11300. height: math.unit(1250, "feet"),
  11301. default: true
  11302. },
  11303. {
  11304. name: "Good Day",
  11305. height: math.unit(88, "miles")
  11306. },
  11307. {
  11308. name: "Largest Measured Size",
  11309. height: math.unit(105.960, "galaxies")
  11310. },
  11311. ]
  11312. ))
  11313. characterMakers.push(() => makeCharacter(
  11314. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11315. {
  11316. front: {
  11317. height: math.unit(20, "feet"),
  11318. weight: math.unit(2016, "kg"),
  11319. name: "Front",
  11320. image: {
  11321. source: "./media/characters/sven-the-kaiju/front.svg",
  11322. extra: 1277/1250,
  11323. bottom: 35/1312
  11324. }
  11325. },
  11326. mouth: {
  11327. height: math.unit(1.85, "feet"),
  11328. name: "Mouth",
  11329. image: {
  11330. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11331. }
  11332. },
  11333. },
  11334. [
  11335. {
  11336. name: "Fairy",
  11337. height: math.unit(6, "inches")
  11338. },
  11339. {
  11340. name: "Normal",
  11341. height: math.unit(20, "feet"),
  11342. default: true
  11343. },
  11344. {
  11345. name: "Rampage",
  11346. height: math.unit(200, "feet")
  11347. },
  11348. {
  11349. name: "Archfey Forest Guardian",
  11350. height: math.unit(1, "mile")
  11351. },
  11352. ]
  11353. ))
  11354. characterMakers.push(() => makeCharacter(
  11355. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11356. {
  11357. front: {
  11358. height: math.unit(4, "meters"),
  11359. weight: math.unit(2, "tons"),
  11360. name: "Front",
  11361. image: {
  11362. source: "./media/characters/marik/front.svg",
  11363. extra: 1057 / 1003,
  11364. bottom: 0.08
  11365. }
  11366. },
  11367. },
  11368. [
  11369. {
  11370. name: "Normal",
  11371. height: math.unit(4, "meters"),
  11372. default: true
  11373. },
  11374. {
  11375. name: "Macro",
  11376. height: math.unit(20, "meters")
  11377. },
  11378. {
  11379. name: "Megamacro",
  11380. height: math.unit(50, "km")
  11381. },
  11382. {
  11383. name: "Gigamacro",
  11384. height: math.unit(100, "km")
  11385. },
  11386. {
  11387. name: "Alpha Macro",
  11388. height: math.unit(7.88e7, "yottameters")
  11389. },
  11390. ]
  11391. ))
  11392. characterMakers.push(() => makeCharacter(
  11393. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11394. {
  11395. front: {
  11396. height: math.unit(6, "feet"),
  11397. weight: math.unit(110, "lb"),
  11398. name: "Front",
  11399. image: {
  11400. source: "./media/characters/mel/front.svg",
  11401. extra: 736 / 617,
  11402. bottom: 0.017
  11403. }
  11404. },
  11405. },
  11406. [
  11407. {
  11408. name: "Pico",
  11409. height: math.unit(3, "pm")
  11410. },
  11411. {
  11412. name: "Nano",
  11413. height: math.unit(3, "nm")
  11414. },
  11415. {
  11416. name: "Micro",
  11417. height: math.unit(0.3, "mm"),
  11418. default: true
  11419. },
  11420. {
  11421. name: "Micro+",
  11422. height: math.unit(3, "mm")
  11423. },
  11424. {
  11425. name: "Normal",
  11426. height: math.unit(5 + 10.5 / 12, "feet")
  11427. },
  11428. ]
  11429. ))
  11430. characterMakers.push(() => makeCharacter(
  11431. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11432. {
  11433. kaiju: {
  11434. height: math.unit(1.75, "meters"),
  11435. weight: math.unit(55, "kg"),
  11436. name: "Kaiju",
  11437. image: {
  11438. source: "./media/characters/lykonous/kaiju.svg",
  11439. extra: 1055 / 946,
  11440. bottom: 0.135
  11441. }
  11442. },
  11443. },
  11444. [
  11445. {
  11446. name: "Normal",
  11447. height: math.unit(2.5, "meters"),
  11448. default: true
  11449. },
  11450. {
  11451. name: "Kaiju Dragon",
  11452. height: math.unit(60, "meters")
  11453. },
  11454. {
  11455. name: "Mega Kaiju",
  11456. height: math.unit(120, "km")
  11457. },
  11458. {
  11459. name: "Giga Kaiju",
  11460. height: math.unit(200, "megameters")
  11461. },
  11462. {
  11463. name: "Terra Kaiju",
  11464. height: math.unit(400, "gigameters")
  11465. },
  11466. {
  11467. name: "Kaiju Dragon God",
  11468. height: math.unit(13000, "exaparsecs")
  11469. },
  11470. ]
  11471. ))
  11472. characterMakers.push(() => makeCharacter(
  11473. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11474. {
  11475. front: {
  11476. height: math.unit(6, "feet"),
  11477. weight: math.unit(150, "lb"),
  11478. name: "Front",
  11479. image: {
  11480. source: "./media/characters/blü/front.svg",
  11481. extra: 1883 / 1564,
  11482. bottom: 0.031
  11483. }
  11484. },
  11485. },
  11486. [
  11487. {
  11488. name: "Normal",
  11489. height: math.unit(13, "feet"),
  11490. default: true
  11491. },
  11492. {
  11493. name: "Big Boi",
  11494. height: math.unit(150, "meters")
  11495. },
  11496. {
  11497. name: "Mini Stomper",
  11498. height: math.unit(300, "meters")
  11499. },
  11500. {
  11501. name: "Macro",
  11502. height: math.unit(1000, "meters")
  11503. },
  11504. {
  11505. name: "Megamacro",
  11506. height: math.unit(11000, "meters")
  11507. },
  11508. {
  11509. name: "Gigamacro",
  11510. height: math.unit(11000, "km")
  11511. },
  11512. {
  11513. name: "Teramacro",
  11514. height: math.unit(420000, "km")
  11515. },
  11516. {
  11517. name: "Examacro",
  11518. height: math.unit(120, "parsecs")
  11519. },
  11520. {
  11521. name: "God Tho",
  11522. height: math.unit(98000000000, "parsecs")
  11523. },
  11524. ]
  11525. ))
  11526. characterMakers.push(() => makeCharacter(
  11527. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11528. {
  11529. taurFront: {
  11530. height: math.unit(6, "feet"),
  11531. weight: math.unit(200, "lb"),
  11532. name: "Taur (Front)",
  11533. image: {
  11534. source: "./media/characters/scales/taur-front.svg",
  11535. extra: 1,
  11536. bottom: 0.05
  11537. }
  11538. },
  11539. taurBack: {
  11540. height: math.unit(6, "feet"),
  11541. weight: math.unit(200, "lb"),
  11542. name: "Taur (Back)",
  11543. image: {
  11544. source: "./media/characters/scales/taur-back.svg",
  11545. extra: 1,
  11546. bottom: 0.08
  11547. }
  11548. },
  11549. anthro: {
  11550. height: math.unit(6 * 7 / 12, "feet"),
  11551. weight: math.unit(100, "lb"),
  11552. name: "Anthro",
  11553. image: {
  11554. source: "./media/characters/scales/anthro.svg",
  11555. extra: 1,
  11556. bottom: 0.06
  11557. }
  11558. },
  11559. },
  11560. [
  11561. {
  11562. name: "Normal",
  11563. height: math.unit(12, "feet"),
  11564. default: true
  11565. },
  11566. ]
  11567. ))
  11568. characterMakers.push(() => makeCharacter(
  11569. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11570. {
  11571. front: {
  11572. height: math.unit(6, "feet"),
  11573. weight: math.unit(150, "lb"),
  11574. name: "Front",
  11575. image: {
  11576. source: "./media/characters/koragos/front.svg",
  11577. extra: 841 / 794,
  11578. bottom: 0.035
  11579. }
  11580. },
  11581. back: {
  11582. height: math.unit(6, "feet"),
  11583. weight: math.unit(150, "lb"),
  11584. name: "Back",
  11585. image: {
  11586. source: "./media/characters/koragos/back.svg",
  11587. extra: 841 / 810,
  11588. bottom: 0.022
  11589. }
  11590. },
  11591. },
  11592. [
  11593. {
  11594. name: "Normal",
  11595. height: math.unit(6 + 11 / 12, "feet"),
  11596. default: true
  11597. },
  11598. {
  11599. name: "Macro",
  11600. height: math.unit(490, "feet")
  11601. },
  11602. {
  11603. name: "Megamacro",
  11604. height: math.unit(10, "miles")
  11605. },
  11606. {
  11607. name: "Gigamacro",
  11608. height: math.unit(50, "miles")
  11609. },
  11610. ]
  11611. ))
  11612. characterMakers.push(() => makeCharacter(
  11613. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11614. {
  11615. front: {
  11616. height: math.unit(6, "feet"),
  11617. weight: math.unit(250, "lb"),
  11618. name: "Front",
  11619. image: {
  11620. source: "./media/characters/xylrem/front.svg",
  11621. extra: 3323 / 3050,
  11622. bottom: 0.065
  11623. }
  11624. },
  11625. },
  11626. [
  11627. {
  11628. name: "Micro",
  11629. height: math.unit(4, "feet")
  11630. },
  11631. {
  11632. name: "Normal",
  11633. height: math.unit(16, "feet"),
  11634. default: true
  11635. },
  11636. {
  11637. name: "Macro",
  11638. height: math.unit(2720, "feet")
  11639. },
  11640. {
  11641. name: "Megamacro",
  11642. height: math.unit(25000, "miles")
  11643. },
  11644. ]
  11645. ))
  11646. characterMakers.push(() => makeCharacter(
  11647. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11648. {
  11649. front: {
  11650. height: math.unit(8, "feet"),
  11651. weight: math.unit(250, "kg"),
  11652. name: "Front",
  11653. image: {
  11654. source: "./media/characters/ikideru/front.svg",
  11655. extra: 930 / 870,
  11656. bottom: 0.087
  11657. }
  11658. },
  11659. back: {
  11660. height: math.unit(8, "feet"),
  11661. weight: math.unit(250, "kg"),
  11662. name: "Back",
  11663. image: {
  11664. source: "./media/characters/ikideru/back.svg",
  11665. extra: 919 / 852,
  11666. bottom: 0.055
  11667. }
  11668. },
  11669. },
  11670. [
  11671. {
  11672. name: "Rare",
  11673. height: math.unit(8, "feet"),
  11674. default: true
  11675. },
  11676. {
  11677. name: "Playful Loom",
  11678. height: math.unit(80, "feet")
  11679. },
  11680. {
  11681. name: "City Leaner",
  11682. height: math.unit(230, "feet")
  11683. },
  11684. {
  11685. name: "Megamacro",
  11686. height: math.unit(2500, "feet")
  11687. },
  11688. {
  11689. name: "Gigamacro",
  11690. height: math.unit(26400, "feet")
  11691. },
  11692. {
  11693. name: "Tectonic Shifter",
  11694. height: math.unit(1.7, "megameters")
  11695. },
  11696. {
  11697. name: "Planet Carer",
  11698. height: math.unit(21, "megameters")
  11699. },
  11700. {
  11701. name: "God",
  11702. height: math.unit(11157.22, "parsecs")
  11703. },
  11704. ]
  11705. ))
  11706. characterMakers.push(() => makeCharacter(
  11707. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11708. {
  11709. front: {
  11710. height: math.unit(6, "feet"),
  11711. weight: math.unit(120, "lb"),
  11712. name: "Front",
  11713. image: {
  11714. source: "./media/characters/neo/front.svg"
  11715. }
  11716. },
  11717. },
  11718. [
  11719. {
  11720. name: "Micro",
  11721. height: math.unit(2, "inches"),
  11722. default: true
  11723. },
  11724. {
  11725. name: "Human Size",
  11726. height: math.unit(5 + 8 / 12, "feet")
  11727. },
  11728. ]
  11729. ))
  11730. characterMakers.push(() => makeCharacter(
  11731. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11732. {
  11733. front: {
  11734. height: math.unit(13 + 10 / 12, "feet"),
  11735. weight: math.unit(5320, "lb"),
  11736. name: "Front",
  11737. image: {
  11738. source: "./media/characters/chauncey-chantz/front.svg",
  11739. extra: 1587 / 1435,
  11740. bottom: 0.02
  11741. }
  11742. },
  11743. },
  11744. [
  11745. {
  11746. name: "Normal",
  11747. height: math.unit(13 + 10 / 12, "feet"),
  11748. default: true
  11749. },
  11750. {
  11751. name: "Macro",
  11752. height: math.unit(45, "feet")
  11753. },
  11754. {
  11755. name: "Megamacro",
  11756. height: math.unit(250, "miles")
  11757. },
  11758. {
  11759. name: "Planetary",
  11760. height: math.unit(10000, "miles")
  11761. },
  11762. {
  11763. name: "Galactic",
  11764. height: math.unit(40000, "parsecs")
  11765. },
  11766. {
  11767. name: "Universal",
  11768. height: math.unit(1, "yottameter")
  11769. },
  11770. ]
  11771. ))
  11772. characterMakers.push(() => makeCharacter(
  11773. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11774. {
  11775. front: {
  11776. height: math.unit(6, "feet"),
  11777. weight: math.unit(150, "lb"),
  11778. name: "Front",
  11779. image: {
  11780. source: "./media/characters/epifox/front.svg",
  11781. extra: 1,
  11782. bottom: 0.075
  11783. }
  11784. },
  11785. },
  11786. [
  11787. {
  11788. name: "Micro",
  11789. height: math.unit(6, "inches")
  11790. },
  11791. {
  11792. name: "Normal",
  11793. height: math.unit(12, "feet"),
  11794. default: true
  11795. },
  11796. {
  11797. name: "Macro",
  11798. height: math.unit(3810, "feet")
  11799. },
  11800. {
  11801. name: "Megamacro",
  11802. height: math.unit(500, "miles")
  11803. },
  11804. ]
  11805. ))
  11806. characterMakers.push(() => makeCharacter(
  11807. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11808. {
  11809. front: {
  11810. height: math.unit(1.8796, "m"),
  11811. weight: math.unit(230, "lb"),
  11812. name: "Front",
  11813. image: {
  11814. source: "./media/characters/colin-t/front.svg",
  11815. extra: 1272 / 1193,
  11816. bottom: 0.07
  11817. }
  11818. },
  11819. },
  11820. [
  11821. {
  11822. name: "Micro",
  11823. height: math.unit(0.571, "meters")
  11824. },
  11825. {
  11826. name: "Normal",
  11827. height: math.unit(1.8796, "meters"),
  11828. default: true
  11829. },
  11830. {
  11831. name: "Tall",
  11832. height: math.unit(4, "meters")
  11833. },
  11834. {
  11835. name: "Macro",
  11836. height: math.unit(67.241, "meters")
  11837. },
  11838. {
  11839. name: "Megamacro",
  11840. height: math.unit(371.856, "meters")
  11841. },
  11842. {
  11843. name: "Planetary",
  11844. height: math.unit(12631.5689, "km")
  11845. },
  11846. ]
  11847. ))
  11848. characterMakers.push(() => makeCharacter(
  11849. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11850. {
  11851. front: {
  11852. height: math.unit(1.85, "meters"),
  11853. weight: math.unit(80, "kg"),
  11854. name: "Front",
  11855. image: {
  11856. source: "./media/characters/matvei/front.svg",
  11857. extra: 614 / 594,
  11858. bottom: 0.01
  11859. }
  11860. },
  11861. },
  11862. [
  11863. {
  11864. name: "Normal",
  11865. height: math.unit(1.85, "meters"),
  11866. default: true
  11867. },
  11868. ]
  11869. ))
  11870. characterMakers.push(() => makeCharacter(
  11871. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11872. {
  11873. front: {
  11874. height: math.unit(5 + 9 / 12, "feet"),
  11875. weight: math.unit(70, "lb"),
  11876. name: "Front",
  11877. image: {
  11878. source: "./media/characters/quincy/front.svg",
  11879. extra: 3041 / 2751
  11880. }
  11881. },
  11882. back: {
  11883. height: math.unit(5 + 9 / 12, "feet"),
  11884. weight: math.unit(70, "lb"),
  11885. name: "Back",
  11886. image: {
  11887. source: "./media/characters/quincy/back.svg",
  11888. extra: 3041 / 2751
  11889. }
  11890. },
  11891. flying: {
  11892. height: math.unit(5 + 4 / 12, "feet"),
  11893. weight: math.unit(70, "lb"),
  11894. name: "Flying",
  11895. image: {
  11896. source: "./media/characters/quincy/flying.svg",
  11897. extra: 1044 / 930
  11898. }
  11899. },
  11900. },
  11901. [
  11902. {
  11903. name: "Micro",
  11904. height: math.unit(3, "cm")
  11905. },
  11906. {
  11907. name: "Normal",
  11908. height: math.unit(5 + 9 / 12, "feet")
  11909. },
  11910. {
  11911. name: "Macro",
  11912. height: math.unit(200, "meters"),
  11913. default: true
  11914. },
  11915. {
  11916. name: "Megamacro",
  11917. height: math.unit(1000, "meters")
  11918. },
  11919. ]
  11920. ))
  11921. characterMakers.push(() => makeCharacter(
  11922. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11923. {
  11924. front: {
  11925. height: math.unit(3 + 11/12, "feet"),
  11926. weight: math.unit(50, "lb"),
  11927. name: "Front",
  11928. image: {
  11929. source: "./media/characters/vanrel/front.svg",
  11930. extra: 1104/949,
  11931. bottom: 52/1156
  11932. }
  11933. },
  11934. back: {
  11935. height: math.unit(3 + 11/12, "feet"),
  11936. weight: math.unit(50, "lb"),
  11937. name: "Back",
  11938. image: {
  11939. source: "./media/characters/vanrel/back.svg",
  11940. extra: 1119/976,
  11941. bottom: 37/1156
  11942. }
  11943. },
  11944. tome: {
  11945. height: math.unit(1.35, "feet"),
  11946. weight: math.unit(10, "lb"),
  11947. name: "Vanrel's Tome",
  11948. rename: true,
  11949. image: {
  11950. source: "./media/characters/vanrel/tome.svg"
  11951. }
  11952. },
  11953. beans: {
  11954. height: math.unit(0.89, "feet"),
  11955. name: "Beans",
  11956. image: {
  11957. source: "./media/characters/vanrel/beans.svg"
  11958. }
  11959. },
  11960. },
  11961. [
  11962. {
  11963. name: "Normal",
  11964. height: math.unit(3 + 11/12, "feet"),
  11965. default: true
  11966. },
  11967. ]
  11968. ))
  11969. characterMakers.push(() => makeCharacter(
  11970. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11971. {
  11972. front: {
  11973. height: math.unit(7 + 5 / 12, "feet"),
  11974. name: "Front",
  11975. image: {
  11976. source: "./media/characters/kuiper-vanrel/front.svg",
  11977. extra: 1219/1169,
  11978. bottom: 69/1288
  11979. }
  11980. },
  11981. back: {
  11982. height: math.unit(7 + 5 / 12, "feet"),
  11983. name: "Back",
  11984. image: {
  11985. source: "./media/characters/kuiper-vanrel/back.svg",
  11986. extra: 1236/1193,
  11987. bottom: 27/1263
  11988. }
  11989. },
  11990. foot: {
  11991. height: math.unit(0.55, "meters"),
  11992. name: "Foot",
  11993. image: {
  11994. source: "./media/characters/kuiper-vanrel/foot.svg",
  11995. }
  11996. },
  11997. battle: {
  11998. height: math.unit(6.824, "feet"),
  11999. name: "Battle",
  12000. image: {
  12001. source: "./media/characters/kuiper-vanrel/battle.svg",
  12002. extra: 1466 / 1327,
  12003. bottom: 29 / 1492.5
  12004. }
  12005. },
  12006. meerkui: {
  12007. height: math.unit(18, "inches"),
  12008. name: "Meerkui",
  12009. image: {
  12010. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12011. extra: 1354/1289,
  12012. bottom: 69/1423
  12013. }
  12014. },
  12015. },
  12016. [
  12017. {
  12018. name: "Normal",
  12019. height: math.unit(7 + 5 / 12, "feet"),
  12020. default: true
  12021. },
  12022. ]
  12023. ))
  12024. characterMakers.push(() => makeCharacter(
  12025. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12026. {
  12027. front: {
  12028. height: math.unit(8 + 5 / 12, "feet"),
  12029. name: "Front",
  12030. image: {
  12031. source: "./media/characters/keset-vanrel/front.svg",
  12032. extra: 1231/1148,
  12033. bottom: 82/1313
  12034. }
  12035. },
  12036. back: {
  12037. height: math.unit(8 + 5 / 12, "feet"),
  12038. name: "Back",
  12039. image: {
  12040. source: "./media/characters/keset-vanrel/back.svg",
  12041. extra: 1240/1174,
  12042. bottom: 33/1273
  12043. }
  12044. },
  12045. hand: {
  12046. height: math.unit(0.6, "meters"),
  12047. name: "Hand",
  12048. image: {
  12049. source: "./media/characters/keset-vanrel/hand.svg"
  12050. }
  12051. },
  12052. foot: {
  12053. height: math.unit(0.94978, "meters"),
  12054. name: "Foot",
  12055. image: {
  12056. source: "./media/characters/keset-vanrel/foot.svg"
  12057. }
  12058. },
  12059. battle: {
  12060. height: math.unit(7.408, "feet"),
  12061. name: "Battle",
  12062. image: {
  12063. source: "./media/characters/keset-vanrel/battle.svg",
  12064. extra: 1890 / 1386,
  12065. bottom: 73.28 / 1970
  12066. }
  12067. },
  12068. },
  12069. [
  12070. {
  12071. name: "Normal",
  12072. height: math.unit(8 + 5 / 12, "feet"),
  12073. default: true
  12074. },
  12075. ]
  12076. ))
  12077. characterMakers.push(() => makeCharacter(
  12078. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12079. {
  12080. front: {
  12081. height: math.unit(6, "feet"),
  12082. weight: math.unit(150, "lb"),
  12083. name: "Front",
  12084. image: {
  12085. source: "./media/characters/neos/front.svg",
  12086. extra: 1696 / 992,
  12087. bottom: 0.14
  12088. }
  12089. },
  12090. },
  12091. [
  12092. {
  12093. name: "Normal",
  12094. height: math.unit(54, "cm"),
  12095. default: true
  12096. },
  12097. {
  12098. name: "Macro",
  12099. height: math.unit(100, "m")
  12100. },
  12101. {
  12102. name: "Megamacro",
  12103. height: math.unit(10, "km")
  12104. },
  12105. {
  12106. name: "Megamacro+",
  12107. height: math.unit(100, "km")
  12108. },
  12109. {
  12110. name: "Gigamacro",
  12111. height: math.unit(100, "Mm")
  12112. },
  12113. {
  12114. name: "Teramacro",
  12115. height: math.unit(100, "Gm")
  12116. },
  12117. {
  12118. name: "Examacro",
  12119. height: math.unit(100, "Em")
  12120. },
  12121. {
  12122. name: "Godly",
  12123. height: math.unit(10000, "Ym")
  12124. },
  12125. {
  12126. name: "Beyond Godly",
  12127. height: math.unit(25, "multiverses")
  12128. },
  12129. ]
  12130. ))
  12131. characterMakers.push(() => makeCharacter(
  12132. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12133. {
  12134. feminine: {
  12135. height: math.unit(5, "feet"),
  12136. weight: math.unit(100, "lb"),
  12137. name: "Feminine",
  12138. image: {
  12139. source: "./media/characters/sammy-mouse/feminine.svg",
  12140. extra: 2526 / 2425,
  12141. bottom: 0.123
  12142. }
  12143. },
  12144. masculine: {
  12145. height: math.unit(5, "feet"),
  12146. weight: math.unit(100, "lb"),
  12147. name: "Masculine",
  12148. image: {
  12149. source: "./media/characters/sammy-mouse/masculine.svg",
  12150. extra: 2526 / 2425,
  12151. bottom: 0.123
  12152. }
  12153. },
  12154. },
  12155. [
  12156. {
  12157. name: "Micro",
  12158. height: math.unit(5, "inches")
  12159. },
  12160. {
  12161. name: "Normal",
  12162. height: math.unit(5, "feet"),
  12163. default: true
  12164. },
  12165. {
  12166. name: "Macro",
  12167. height: math.unit(60, "feet")
  12168. },
  12169. ]
  12170. ))
  12171. characterMakers.push(() => makeCharacter(
  12172. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12173. {
  12174. front: {
  12175. height: math.unit(4, "feet"),
  12176. weight: math.unit(50, "lb"),
  12177. name: "Front",
  12178. image: {
  12179. source: "./media/characters/kole/front.svg",
  12180. extra: 1423 / 1303,
  12181. bottom: 0.025
  12182. }
  12183. },
  12184. back: {
  12185. height: math.unit(4, "feet"),
  12186. weight: math.unit(50, "lb"),
  12187. name: "Back",
  12188. image: {
  12189. source: "./media/characters/kole/back.svg",
  12190. extra: 1426 / 1280,
  12191. bottom: 0.02
  12192. }
  12193. },
  12194. },
  12195. [
  12196. {
  12197. name: "Normal",
  12198. height: math.unit(4, "feet"),
  12199. default: true
  12200. },
  12201. ]
  12202. ))
  12203. characterMakers.push(() => makeCharacter(
  12204. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12205. {
  12206. front: {
  12207. height: math.unit(2.5, "feet"),
  12208. weight: math.unit(32, "lb"),
  12209. name: "Front",
  12210. image: {
  12211. source: "./media/characters/rufran/front.svg",
  12212. extra: 1313/885,
  12213. bottom: 94/1407
  12214. }
  12215. },
  12216. side: {
  12217. height: math.unit(2.5, "feet"),
  12218. weight: math.unit(32, "lb"),
  12219. name: "Side",
  12220. image: {
  12221. source: "./media/characters/rufran/side.svg",
  12222. extra: 1109/852,
  12223. bottom: 118/1227
  12224. }
  12225. },
  12226. back: {
  12227. height: math.unit(2.5, "feet"),
  12228. weight: math.unit(32, "lb"),
  12229. name: "Back",
  12230. image: {
  12231. source: "./media/characters/rufran/back.svg",
  12232. extra: 1280/878,
  12233. bottom: 131/1411
  12234. }
  12235. },
  12236. mouth: {
  12237. height: math.unit(1.13, "feet"),
  12238. name: "Mouth",
  12239. image: {
  12240. source: "./media/characters/rufran/mouth.svg"
  12241. }
  12242. },
  12243. foot: {
  12244. height: math.unit(1.33, "feet"),
  12245. name: "Foot",
  12246. image: {
  12247. source: "./media/characters/rufran/foot.svg"
  12248. }
  12249. },
  12250. koboldFront: {
  12251. height: math.unit(2 + 6 / 12, "feet"),
  12252. weight: math.unit(20, "lb"),
  12253. name: "Front (Kobold)",
  12254. image: {
  12255. source: "./media/characters/rufran/kobold-front.svg",
  12256. extra: 2041 / 1839,
  12257. bottom: 0.055
  12258. }
  12259. },
  12260. koboldBack: {
  12261. height: math.unit(2 + 6 / 12, "feet"),
  12262. weight: math.unit(20, "lb"),
  12263. name: "Back (Kobold)",
  12264. image: {
  12265. source: "./media/characters/rufran/kobold-back.svg",
  12266. extra: 2054 / 1839,
  12267. bottom: 0.01
  12268. }
  12269. },
  12270. koboldHand: {
  12271. height: math.unit(0.2166, "meters"),
  12272. name: "Hand (Kobold)",
  12273. image: {
  12274. source: "./media/characters/rufran/kobold-hand.svg"
  12275. }
  12276. },
  12277. koboldFoot: {
  12278. height: math.unit(0.185, "meters"),
  12279. name: "Foot (Kobold)",
  12280. image: {
  12281. source: "./media/characters/rufran/kobold-foot.svg"
  12282. }
  12283. },
  12284. },
  12285. [
  12286. {
  12287. name: "Micro",
  12288. height: math.unit(1, "inch")
  12289. },
  12290. {
  12291. name: "Normal",
  12292. height: math.unit(2 + 6 / 12, "feet"),
  12293. default: true
  12294. },
  12295. {
  12296. name: "Big",
  12297. height: math.unit(60, "feet")
  12298. },
  12299. {
  12300. name: "Macro",
  12301. height: math.unit(325, "feet")
  12302. },
  12303. ]
  12304. ))
  12305. characterMakers.push(() => makeCharacter(
  12306. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12307. {
  12308. front: {
  12309. height: math.unit(0.3, "meters"),
  12310. weight: math.unit(3.5, "kg"),
  12311. name: "Front",
  12312. image: {
  12313. source: "./media/characters/chip/front.svg",
  12314. extra: 748 / 674
  12315. }
  12316. },
  12317. },
  12318. [
  12319. {
  12320. name: "Micro",
  12321. height: math.unit(1, "inch"),
  12322. default: true
  12323. },
  12324. ]
  12325. ))
  12326. characterMakers.push(() => makeCharacter(
  12327. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12328. {
  12329. side: {
  12330. height: math.unit(2.3, "meters"),
  12331. weight: math.unit(3500, "lb"),
  12332. name: "Side",
  12333. image: {
  12334. source: "./media/characters/torvid/side.svg",
  12335. extra: 1972 / 722,
  12336. bottom: 0.035
  12337. }
  12338. },
  12339. },
  12340. [
  12341. {
  12342. name: "Normal",
  12343. height: math.unit(2.3, "meters"),
  12344. default: true
  12345. },
  12346. ]
  12347. ))
  12348. characterMakers.push(() => makeCharacter(
  12349. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12350. {
  12351. front: {
  12352. height: math.unit(2, "meters"),
  12353. weight: math.unit(150.5, "kg"),
  12354. name: "Front",
  12355. image: {
  12356. source: "./media/characters/susan/front.svg",
  12357. extra: 693 / 635,
  12358. bottom: 0.05
  12359. }
  12360. },
  12361. },
  12362. [
  12363. {
  12364. name: "Megamacro",
  12365. height: math.unit(505, "miles"),
  12366. default: true
  12367. },
  12368. ]
  12369. ))
  12370. characterMakers.push(() => makeCharacter(
  12371. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12372. {
  12373. front: {
  12374. height: math.unit(6, "feet"),
  12375. weight: math.unit(150, "lb"),
  12376. name: "Front",
  12377. image: {
  12378. source: "./media/characters/raindrops/front.svg",
  12379. extra: 2655 / 2461,
  12380. bottom: 49 / 2705
  12381. }
  12382. },
  12383. back: {
  12384. height: math.unit(6, "feet"),
  12385. weight: math.unit(150, "lb"),
  12386. name: "Back",
  12387. image: {
  12388. source: "./media/characters/raindrops/back.svg",
  12389. extra: 2574 / 2400,
  12390. bottom: 65 / 2634
  12391. }
  12392. },
  12393. },
  12394. [
  12395. {
  12396. name: "Micro",
  12397. height: math.unit(6, "inches")
  12398. },
  12399. {
  12400. name: "Normal",
  12401. height: math.unit(6 + 2 / 12, "feet")
  12402. },
  12403. {
  12404. name: "Macro",
  12405. height: math.unit(131, "feet"),
  12406. default: true
  12407. },
  12408. {
  12409. name: "Megamacro",
  12410. height: math.unit(15, "miles")
  12411. },
  12412. {
  12413. name: "Gigamacro",
  12414. height: math.unit(4000, "miles")
  12415. },
  12416. {
  12417. name: "Teramacro",
  12418. height: math.unit(315000, "miles")
  12419. },
  12420. ]
  12421. ))
  12422. characterMakers.push(() => makeCharacter(
  12423. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12424. {
  12425. front: {
  12426. height: math.unit(2.794, "meters"),
  12427. weight: math.unit(325, "kg"),
  12428. name: "Front",
  12429. image: {
  12430. source: "./media/characters/tezwa/front.svg",
  12431. extra: 2083 / 1906,
  12432. bottom: 0.031
  12433. }
  12434. },
  12435. foot: {
  12436. height: math.unit(0.687, "meters"),
  12437. name: "Foot",
  12438. image: {
  12439. source: "./media/characters/tezwa/foot.svg"
  12440. }
  12441. },
  12442. },
  12443. [
  12444. {
  12445. name: "Normal",
  12446. height: math.unit(9 + 2 / 12, "feet"),
  12447. default: true
  12448. },
  12449. ]
  12450. ))
  12451. characterMakers.push(() => makeCharacter(
  12452. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12453. {
  12454. front: {
  12455. height: math.unit(58, "feet"),
  12456. weight: math.unit(89000, "lb"),
  12457. name: "Front",
  12458. image: {
  12459. source: "./media/characters/typhus/front.svg",
  12460. extra: 816 / 800,
  12461. bottom: 0.065
  12462. }
  12463. },
  12464. },
  12465. [
  12466. {
  12467. name: "Macro",
  12468. height: math.unit(58, "feet"),
  12469. default: true
  12470. },
  12471. ]
  12472. ))
  12473. characterMakers.push(() => makeCharacter(
  12474. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12475. {
  12476. front: {
  12477. height: math.unit(12, "feet"),
  12478. weight: math.unit(6, "tonnes"),
  12479. name: "Front",
  12480. image: {
  12481. source: "./media/characters/lyra-von-wulf/front.svg",
  12482. extra: 1,
  12483. bottom: 0.10
  12484. }
  12485. },
  12486. frontMecha: {
  12487. height: math.unit(12, "feet"),
  12488. weight: math.unit(12, "tonnes"),
  12489. name: "Front (Mecha)",
  12490. image: {
  12491. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12492. extra: 1,
  12493. bottom: 0.042
  12494. }
  12495. },
  12496. maw: {
  12497. height: math.unit(2.2, "feet"),
  12498. name: "Maw",
  12499. image: {
  12500. source: "./media/characters/lyra-von-wulf/maw.svg"
  12501. }
  12502. },
  12503. },
  12504. [
  12505. {
  12506. name: "Normal",
  12507. height: math.unit(12, "feet"),
  12508. default: true
  12509. },
  12510. {
  12511. name: "Classic",
  12512. height: math.unit(50, "feet")
  12513. },
  12514. {
  12515. name: "Macro",
  12516. height: math.unit(500, "feet")
  12517. },
  12518. {
  12519. name: "Megamacro",
  12520. height: math.unit(1, "mile")
  12521. },
  12522. {
  12523. name: "Gigamacro",
  12524. height: math.unit(400, "miles")
  12525. },
  12526. {
  12527. name: "Teramacro",
  12528. height: math.unit(22000, "miles")
  12529. },
  12530. {
  12531. name: "Solarmacro",
  12532. height: math.unit(8600000, "miles")
  12533. },
  12534. {
  12535. name: "Galactic",
  12536. height: math.unit(1057000, "lightyears")
  12537. },
  12538. ]
  12539. ))
  12540. characterMakers.push(() => makeCharacter(
  12541. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12542. {
  12543. front: {
  12544. height: math.unit(6 + 10 / 12, "feet"),
  12545. weight: math.unit(150, "lb"),
  12546. name: "Front",
  12547. image: {
  12548. source: "./media/characters/dixon/front.svg",
  12549. extra: 3361 / 3209,
  12550. bottom: 0.01
  12551. }
  12552. },
  12553. },
  12554. [
  12555. {
  12556. name: "Normal",
  12557. height: math.unit(6 + 10 / 12, "feet"),
  12558. default: true
  12559. },
  12560. {
  12561. name: "Big",
  12562. height: math.unit(12, "meters")
  12563. },
  12564. {
  12565. name: "Macro",
  12566. height: math.unit(500, "meters")
  12567. },
  12568. {
  12569. name: "Megamacro",
  12570. height: math.unit(2, "km")
  12571. },
  12572. ]
  12573. ))
  12574. characterMakers.push(() => makeCharacter(
  12575. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12576. {
  12577. front: {
  12578. height: math.unit(185, "cm"),
  12579. weight: math.unit(68, "kg"),
  12580. name: "Front",
  12581. image: {
  12582. source: "./media/characters/kauko/front.svg",
  12583. extra: 1455 / 1421,
  12584. bottom: 0.03
  12585. }
  12586. },
  12587. back: {
  12588. height: math.unit(185, "cm"),
  12589. weight: math.unit(68, "kg"),
  12590. name: "Back",
  12591. image: {
  12592. source: "./media/characters/kauko/back.svg",
  12593. extra: 1455 / 1421,
  12594. bottom: 0.004
  12595. }
  12596. },
  12597. },
  12598. [
  12599. {
  12600. name: "Normal",
  12601. height: math.unit(185, "cm"),
  12602. default: true
  12603. },
  12604. ]
  12605. ))
  12606. characterMakers.push(() => makeCharacter(
  12607. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12608. {
  12609. front: {
  12610. height: math.unit(6, "feet"),
  12611. weight: math.unit(150, "kg"),
  12612. name: "Front",
  12613. image: {
  12614. source: "./media/characters/varg/front.svg",
  12615. extra: 1108 / 1018,
  12616. bottom: 0.0375
  12617. }
  12618. },
  12619. },
  12620. [
  12621. {
  12622. name: "Normal",
  12623. height: math.unit(5, "meters")
  12624. },
  12625. {
  12626. name: "Macro",
  12627. height: math.unit(200, "meters")
  12628. },
  12629. {
  12630. name: "Megamacro",
  12631. height: math.unit(20, "kilometers")
  12632. },
  12633. {
  12634. name: "True Size",
  12635. height: math.unit(211, "km"),
  12636. default: true
  12637. },
  12638. {
  12639. name: "Gigamacro",
  12640. height: math.unit(1000, "km")
  12641. },
  12642. {
  12643. name: "Gigamacro+",
  12644. height: math.unit(8000, "km")
  12645. },
  12646. {
  12647. name: "Teramacro",
  12648. height: math.unit(1000000, "km")
  12649. },
  12650. ]
  12651. ))
  12652. characterMakers.push(() => makeCharacter(
  12653. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12654. {
  12655. front: {
  12656. height: math.unit(7 + 7 / 12, "feet"),
  12657. weight: math.unit(267, "lb"),
  12658. name: "Front",
  12659. image: {
  12660. source: "./media/characters/dayza/front.svg",
  12661. extra: 1262 / 1200,
  12662. bottom: 0.035
  12663. }
  12664. },
  12665. side: {
  12666. height: math.unit(7 + 7 / 12, "feet"),
  12667. weight: math.unit(267, "lb"),
  12668. name: "Side",
  12669. image: {
  12670. source: "./media/characters/dayza/side.svg",
  12671. extra: 1295 / 1245,
  12672. bottom: 0.05
  12673. }
  12674. },
  12675. back: {
  12676. height: math.unit(7 + 7 / 12, "feet"),
  12677. weight: math.unit(267, "lb"),
  12678. name: "Back",
  12679. image: {
  12680. source: "./media/characters/dayza/back.svg",
  12681. extra: 1241 / 1170
  12682. }
  12683. },
  12684. },
  12685. [
  12686. {
  12687. name: "Normal",
  12688. height: math.unit(7 + 7 / 12, "feet"),
  12689. default: true
  12690. },
  12691. {
  12692. name: "Macro",
  12693. height: math.unit(155, "feet")
  12694. },
  12695. ]
  12696. ))
  12697. characterMakers.push(() => makeCharacter(
  12698. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12699. {
  12700. front: {
  12701. height: math.unit(6 + 5 / 12, "feet"),
  12702. weight: math.unit(160, "lb"),
  12703. name: "Front",
  12704. image: {
  12705. source: "./media/characters/xanthos/front.svg",
  12706. extra: 1,
  12707. bottom: 0.04
  12708. }
  12709. },
  12710. back: {
  12711. height: math.unit(6 + 5 / 12, "feet"),
  12712. weight: math.unit(160, "lb"),
  12713. name: "Back",
  12714. image: {
  12715. source: "./media/characters/xanthos/back.svg",
  12716. extra: 1,
  12717. bottom: 0.03
  12718. }
  12719. },
  12720. hand: {
  12721. height: math.unit(0.928, "feet"),
  12722. name: "Hand",
  12723. image: {
  12724. source: "./media/characters/xanthos/hand.svg"
  12725. }
  12726. },
  12727. foot: {
  12728. height: math.unit(1.286, "feet"),
  12729. name: "Foot",
  12730. image: {
  12731. source: "./media/characters/xanthos/foot.svg"
  12732. }
  12733. },
  12734. },
  12735. [
  12736. {
  12737. name: "Normal",
  12738. height: math.unit(6 + 5 / 12, "feet"),
  12739. default: true
  12740. },
  12741. {
  12742. name: "Normal+",
  12743. height: math.unit(6, "meters")
  12744. },
  12745. {
  12746. name: "Macro",
  12747. height: math.unit(40, "feet")
  12748. },
  12749. {
  12750. name: "Macro+",
  12751. height: math.unit(200, "meters")
  12752. },
  12753. {
  12754. name: "Megamacro",
  12755. height: math.unit(20, "km")
  12756. },
  12757. {
  12758. name: "Megamacro+",
  12759. height: math.unit(100, "km")
  12760. },
  12761. {
  12762. name: "Gigamacro",
  12763. height: math.unit(200, "megameters")
  12764. },
  12765. {
  12766. name: "Gigamacro+",
  12767. height: math.unit(1.5, "gigameters")
  12768. },
  12769. ]
  12770. ))
  12771. characterMakers.push(() => makeCharacter(
  12772. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12773. {
  12774. front: {
  12775. height: math.unit(6 + 3 / 12, "feet"),
  12776. weight: math.unit(215, "lb"),
  12777. name: "Front",
  12778. image: {
  12779. source: "./media/characters/grynn/front.svg",
  12780. extra: 4627 / 4209,
  12781. bottom: 0.047
  12782. }
  12783. },
  12784. },
  12785. [
  12786. {
  12787. name: "Micro",
  12788. height: math.unit(6, "inches")
  12789. },
  12790. {
  12791. name: "Normal",
  12792. height: math.unit(6 + 3 / 12, "feet"),
  12793. default: true
  12794. },
  12795. {
  12796. name: "Big",
  12797. height: math.unit(104, "feet")
  12798. },
  12799. {
  12800. name: "Macro",
  12801. height: math.unit(944, "feet")
  12802. },
  12803. {
  12804. name: "Macro+",
  12805. height: math.unit(9480, "feet")
  12806. },
  12807. {
  12808. name: "Megamacro",
  12809. height: math.unit(78752, "feet")
  12810. },
  12811. {
  12812. name: "Megamacro+",
  12813. height: math.unit(630128, "feet")
  12814. },
  12815. {
  12816. name: "Megamacro++",
  12817. height: math.unit(3150695, "feet")
  12818. },
  12819. ]
  12820. ))
  12821. characterMakers.push(() => makeCharacter(
  12822. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12823. {
  12824. front: {
  12825. height: math.unit(7 + 5 / 12, "feet"),
  12826. weight: math.unit(450, "lb"),
  12827. name: "Front",
  12828. image: {
  12829. source: "./media/characters/mocha-aura/front.svg",
  12830. extra: 1907 / 1817,
  12831. bottom: 0.04
  12832. }
  12833. },
  12834. back: {
  12835. height: math.unit(7 + 5 / 12, "feet"),
  12836. weight: math.unit(450, "lb"),
  12837. name: "Back",
  12838. image: {
  12839. source: "./media/characters/mocha-aura/back.svg",
  12840. extra: 1900 / 1825,
  12841. bottom: 0.045
  12842. }
  12843. },
  12844. },
  12845. [
  12846. {
  12847. name: "Nano",
  12848. height: math.unit(1, "nm")
  12849. },
  12850. {
  12851. name: "Megamicro",
  12852. height: math.unit(1, "mm")
  12853. },
  12854. {
  12855. name: "Micro",
  12856. height: math.unit(3, "inches")
  12857. },
  12858. {
  12859. name: "Normal",
  12860. height: math.unit(7 + 5 / 12, "feet"),
  12861. default: true
  12862. },
  12863. {
  12864. name: "Macro",
  12865. height: math.unit(30, "feet")
  12866. },
  12867. {
  12868. name: "Megamacro",
  12869. height: math.unit(3500, "feet")
  12870. },
  12871. {
  12872. name: "Teramacro",
  12873. height: math.unit(500000, "miles")
  12874. },
  12875. {
  12876. name: "Petamacro",
  12877. height: math.unit(50000000000000000, "parsecs")
  12878. },
  12879. ]
  12880. ))
  12881. characterMakers.push(() => makeCharacter(
  12882. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12883. {
  12884. front: {
  12885. height: math.unit(6, "feet"),
  12886. weight: math.unit(150, "lb"),
  12887. name: "Front",
  12888. image: {
  12889. source: "./media/characters/ilisha-devya/front.svg",
  12890. extra: 1,
  12891. bottom: 0.175
  12892. }
  12893. },
  12894. back: {
  12895. height: math.unit(6, "feet"),
  12896. weight: math.unit(150, "lb"),
  12897. name: "Back",
  12898. image: {
  12899. source: "./media/characters/ilisha-devya/back.svg",
  12900. extra: 1,
  12901. bottom: 0.015
  12902. }
  12903. },
  12904. },
  12905. [
  12906. {
  12907. name: "Macro",
  12908. height: math.unit(500, "feet"),
  12909. default: true
  12910. },
  12911. {
  12912. name: "Megamacro",
  12913. height: math.unit(10, "miles")
  12914. },
  12915. {
  12916. name: "Gigamacro",
  12917. height: math.unit(100000, "miles")
  12918. },
  12919. {
  12920. name: "Examacro",
  12921. height: math.unit(1e9, "lightyears")
  12922. },
  12923. {
  12924. name: "Omniversal",
  12925. height: math.unit(1e33, "lightyears")
  12926. },
  12927. {
  12928. name: "Beyond Infinite",
  12929. height: math.unit(1e100, "lightyears")
  12930. },
  12931. ]
  12932. ))
  12933. characterMakers.push(() => makeCharacter(
  12934. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12935. {
  12936. Side: {
  12937. height: math.unit(6, "feet"),
  12938. weight: math.unit(150, "lb"),
  12939. name: "Side",
  12940. image: {
  12941. source: "./media/characters/mira/side.svg",
  12942. extra: 900 / 799,
  12943. bottom: 0.02
  12944. }
  12945. },
  12946. },
  12947. [
  12948. {
  12949. name: "Human Size",
  12950. height: math.unit(6, "feet")
  12951. },
  12952. {
  12953. name: "Macro",
  12954. height: math.unit(100, "feet"),
  12955. default: true
  12956. },
  12957. {
  12958. name: "Megamacro",
  12959. height: math.unit(10, "miles")
  12960. },
  12961. {
  12962. name: "Gigamacro",
  12963. height: math.unit(25000, "miles")
  12964. },
  12965. {
  12966. name: "Teramacro",
  12967. height: math.unit(300, "AU")
  12968. },
  12969. {
  12970. name: "Full Size",
  12971. height: math.unit(4.5e10, "lightyears")
  12972. },
  12973. ]
  12974. ))
  12975. characterMakers.push(() => makeCharacter(
  12976. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12977. {
  12978. front: {
  12979. height: math.unit(6, "feet"),
  12980. weight: math.unit(150, "lb"),
  12981. name: "Front",
  12982. image: {
  12983. source: "./media/characters/holly/front.svg",
  12984. extra: 639 / 606
  12985. }
  12986. },
  12987. back: {
  12988. height: math.unit(6, "feet"),
  12989. weight: math.unit(150, "lb"),
  12990. name: "Back",
  12991. image: {
  12992. source: "./media/characters/holly/back.svg",
  12993. extra: 623 / 598
  12994. }
  12995. },
  12996. frontWorking: {
  12997. height: math.unit(6, "feet"),
  12998. weight: math.unit(150, "lb"),
  12999. name: "Front (Working)",
  13000. image: {
  13001. source: "./media/characters/holly/front-working.svg",
  13002. extra: 607 / 577,
  13003. bottom: 0.048
  13004. }
  13005. },
  13006. },
  13007. [
  13008. {
  13009. name: "Normal",
  13010. height: math.unit(12 + 3 / 12, "feet"),
  13011. default: true
  13012. },
  13013. ]
  13014. ))
  13015. characterMakers.push(() => makeCharacter(
  13016. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13017. {
  13018. front: {
  13019. height: math.unit(6, "feet"),
  13020. weight: math.unit(150, "lb"),
  13021. name: "Front",
  13022. image: {
  13023. source: "./media/characters/porter/front.svg",
  13024. extra: 1,
  13025. bottom: 0.01
  13026. }
  13027. },
  13028. frontRobes: {
  13029. height: math.unit(6, "feet"),
  13030. weight: math.unit(150, "lb"),
  13031. name: "Front (Robes)",
  13032. image: {
  13033. source: "./media/characters/porter/front-robes.svg",
  13034. extra: 1.01,
  13035. bottom: 0.01
  13036. }
  13037. },
  13038. },
  13039. [
  13040. {
  13041. name: "Normal",
  13042. height: math.unit(11 + 9 / 12, "feet"),
  13043. default: true
  13044. },
  13045. ]
  13046. ))
  13047. characterMakers.push(() => makeCharacter(
  13048. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13049. {
  13050. legendary: {
  13051. height: math.unit(6, "feet"),
  13052. weight: math.unit(150, "lb"),
  13053. name: "Legendary",
  13054. image: {
  13055. source: "./media/characters/lucy/legendary.svg",
  13056. extra: 1355 / 1100,
  13057. bottom: 0.045
  13058. }
  13059. },
  13060. },
  13061. [
  13062. {
  13063. name: "Legendary",
  13064. height: math.unit(86882 * 2, "miles"),
  13065. default: true
  13066. },
  13067. ]
  13068. ))
  13069. characterMakers.push(() => makeCharacter(
  13070. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13071. {
  13072. front: {
  13073. height: math.unit(6, "feet"),
  13074. weight: math.unit(150, "lb"),
  13075. name: "Front",
  13076. image: {
  13077. source: "./media/characters/drusilla/front.svg",
  13078. extra: 678 / 635,
  13079. bottom: 0.03
  13080. }
  13081. },
  13082. back: {
  13083. height: math.unit(6, "feet"),
  13084. weight: math.unit(150, "lb"),
  13085. name: "Back",
  13086. image: {
  13087. source: "./media/characters/drusilla/back.svg",
  13088. extra: 678 / 635,
  13089. bottom: 0.005
  13090. }
  13091. },
  13092. },
  13093. [
  13094. {
  13095. name: "Macro",
  13096. height: math.unit(100, "feet")
  13097. },
  13098. {
  13099. name: "Canon Height",
  13100. height: math.unit(2000, "feet"),
  13101. default: true
  13102. },
  13103. ]
  13104. ))
  13105. characterMakers.push(() => makeCharacter(
  13106. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13107. {
  13108. front: {
  13109. height: math.unit(6, "feet"),
  13110. weight: math.unit(180, "lb"),
  13111. name: "Front",
  13112. image: {
  13113. source: "./media/characters/renard-thatch/front.svg",
  13114. extra: 2411 / 2275,
  13115. bottom: 0.01
  13116. }
  13117. },
  13118. frontPosing: {
  13119. height: math.unit(6, "feet"),
  13120. weight: math.unit(180, "lb"),
  13121. name: "Front (Posing)",
  13122. image: {
  13123. source: "./media/characters/renard-thatch/front-posing.svg",
  13124. extra: 2381 / 2261,
  13125. bottom: 0.01
  13126. }
  13127. },
  13128. back: {
  13129. height: math.unit(6, "feet"),
  13130. weight: math.unit(180, "lb"),
  13131. name: "Back",
  13132. image: {
  13133. source: "./media/characters/renard-thatch/back.svg",
  13134. extra: 2428 / 2288
  13135. }
  13136. },
  13137. },
  13138. [
  13139. {
  13140. name: "Micro",
  13141. height: math.unit(3, "inches")
  13142. },
  13143. {
  13144. name: "Default",
  13145. height: math.unit(6, "feet"),
  13146. default: true
  13147. },
  13148. {
  13149. name: "Macro",
  13150. height: math.unit(75, "feet")
  13151. },
  13152. ]
  13153. ))
  13154. characterMakers.push(() => makeCharacter(
  13155. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13156. {
  13157. front: {
  13158. height: math.unit(1450, "feet"),
  13159. weight: math.unit(1.21e6, "tons"),
  13160. name: "Front",
  13161. image: {
  13162. source: "./media/characters/sekvra/front.svg",
  13163. extra: 1,
  13164. bottom: 0.03
  13165. }
  13166. },
  13167. frontClothed: {
  13168. height: math.unit(1450, "feet"),
  13169. weight: math.unit(1.21e6, "tons"),
  13170. name: "Front (Clothed)",
  13171. image: {
  13172. source: "./media/characters/sekvra/front-clothed.svg",
  13173. extra: 1,
  13174. bottom: 0.03
  13175. }
  13176. },
  13177. side: {
  13178. height: math.unit(1450, "feet"),
  13179. weight: math.unit(1.21e6, "tons"),
  13180. name: "Side",
  13181. image: {
  13182. source: "./media/characters/sekvra/side.svg",
  13183. extra: 1,
  13184. bottom: 0.025
  13185. }
  13186. },
  13187. back: {
  13188. height: math.unit(1450, "feet"),
  13189. weight: math.unit(1.21e6, "tons"),
  13190. name: "Back",
  13191. image: {
  13192. source: "./media/characters/sekvra/back.svg",
  13193. extra: 1,
  13194. bottom: 0.005
  13195. }
  13196. },
  13197. },
  13198. [
  13199. {
  13200. name: "Macro",
  13201. height: math.unit(1450, "feet"),
  13202. default: true
  13203. },
  13204. {
  13205. name: "Megamacro",
  13206. height: math.unit(15000, "feet")
  13207. },
  13208. ]
  13209. ))
  13210. characterMakers.push(() => makeCharacter(
  13211. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13212. {
  13213. front: {
  13214. height: math.unit(6, "feet"),
  13215. weight: math.unit(150, "lb"),
  13216. name: "Front",
  13217. image: {
  13218. source: "./media/characters/carmine/front.svg",
  13219. extra: 1,
  13220. bottom: 0.035
  13221. }
  13222. },
  13223. frontArmor: {
  13224. height: math.unit(6, "feet"),
  13225. weight: math.unit(150, "lb"),
  13226. name: "Front (Armor)",
  13227. image: {
  13228. source: "./media/characters/carmine/front-armor.svg",
  13229. extra: 1,
  13230. bottom: 0.035
  13231. }
  13232. },
  13233. },
  13234. [
  13235. {
  13236. name: "Large",
  13237. height: math.unit(1, "mile")
  13238. },
  13239. {
  13240. name: "Huge",
  13241. height: math.unit(40, "miles"),
  13242. default: true
  13243. },
  13244. {
  13245. name: "Colossal",
  13246. height: math.unit(2500, "miles")
  13247. },
  13248. ]
  13249. ))
  13250. characterMakers.push(() => makeCharacter(
  13251. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13252. {
  13253. front: {
  13254. height: math.unit(6, "feet"),
  13255. weight: math.unit(150, "lb"),
  13256. name: "Front",
  13257. image: {
  13258. source: "./media/characters/elyssia/front.svg",
  13259. extra: 2201 / 2035,
  13260. bottom: 0.05
  13261. }
  13262. },
  13263. frontClothed: {
  13264. height: math.unit(6, "feet"),
  13265. weight: math.unit(150, "lb"),
  13266. name: "Front (Clothed)",
  13267. image: {
  13268. source: "./media/characters/elyssia/front-clothed.svg",
  13269. extra: 2201 / 2035,
  13270. bottom: 0.05
  13271. }
  13272. },
  13273. back: {
  13274. height: math.unit(6, "feet"),
  13275. weight: math.unit(150, "lb"),
  13276. name: "Back",
  13277. image: {
  13278. source: "./media/characters/elyssia/back.svg",
  13279. extra: 2201 / 2035,
  13280. bottom: 0.013
  13281. }
  13282. },
  13283. },
  13284. [
  13285. {
  13286. name: "Smaller",
  13287. height: math.unit(150, "feet")
  13288. },
  13289. {
  13290. name: "Standard",
  13291. height: math.unit(1400, "feet"),
  13292. default: true
  13293. },
  13294. {
  13295. name: "Distracted",
  13296. height: math.unit(15000, "feet")
  13297. },
  13298. ]
  13299. ))
  13300. characterMakers.push(() => makeCharacter(
  13301. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13302. {
  13303. front: {
  13304. height: math.unit(7 + 4 / 12, "feet"),
  13305. weight: math.unit(500, "lb"),
  13306. name: "Front",
  13307. image: {
  13308. source: "./media/characters/geno-maxwell/front.svg",
  13309. extra: 2207 / 2040,
  13310. bottom: 0.015
  13311. }
  13312. },
  13313. },
  13314. [
  13315. {
  13316. name: "Micro",
  13317. height: math.unit(3, "inches")
  13318. },
  13319. {
  13320. name: "Normal",
  13321. height: math.unit(7 + 4 / 12, "feet"),
  13322. default: true
  13323. },
  13324. {
  13325. name: "Macro",
  13326. height: math.unit(220, "feet")
  13327. },
  13328. {
  13329. name: "Megamacro",
  13330. height: math.unit(11, "miles")
  13331. },
  13332. ]
  13333. ))
  13334. characterMakers.push(() => makeCharacter(
  13335. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13336. {
  13337. front: {
  13338. height: math.unit(7 + 4 / 12, "feet"),
  13339. weight: math.unit(500, "lb"),
  13340. name: "Front",
  13341. image: {
  13342. source: "./media/characters/regena-maxwell/front.svg",
  13343. extra: 3115 / 2770,
  13344. bottom: 0.02
  13345. }
  13346. },
  13347. },
  13348. [
  13349. {
  13350. name: "Normal",
  13351. height: math.unit(7 + 4 / 12, "feet"),
  13352. default: true
  13353. },
  13354. {
  13355. name: "Macro",
  13356. height: math.unit(220, "feet")
  13357. },
  13358. {
  13359. name: "Megamacro",
  13360. height: math.unit(11, "miles")
  13361. },
  13362. ]
  13363. ))
  13364. characterMakers.push(() => makeCharacter(
  13365. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13366. {
  13367. front: {
  13368. height: math.unit(6, "feet"),
  13369. weight: math.unit(150, "lb"),
  13370. name: "Front",
  13371. image: {
  13372. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13373. extra: 860 / 690,
  13374. bottom: 0.03
  13375. }
  13376. },
  13377. },
  13378. [
  13379. {
  13380. name: "Normal",
  13381. height: math.unit(1.7, "meters"),
  13382. default: true
  13383. },
  13384. ]
  13385. ))
  13386. characterMakers.push(() => makeCharacter(
  13387. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13388. {
  13389. front: {
  13390. height: math.unit(6, "feet"),
  13391. weight: math.unit(150, "lb"),
  13392. name: "Front",
  13393. image: {
  13394. source: "./media/characters/quilly/front.svg",
  13395. extra: 890 / 776
  13396. }
  13397. },
  13398. },
  13399. [
  13400. {
  13401. name: "Gigamacro",
  13402. height: math.unit(404090, "miles"),
  13403. default: true
  13404. },
  13405. ]
  13406. ))
  13407. characterMakers.push(() => makeCharacter(
  13408. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13409. {
  13410. front: {
  13411. height: math.unit(7 + 8 / 12, "feet"),
  13412. weight: math.unit(350, "lb"),
  13413. name: "Front",
  13414. image: {
  13415. source: "./media/characters/tempest/front.svg",
  13416. extra: 1175 / 1086,
  13417. bottom: 0.02
  13418. }
  13419. },
  13420. },
  13421. [
  13422. {
  13423. name: "Normal",
  13424. height: math.unit(7 + 8 / 12, "feet"),
  13425. default: true
  13426. },
  13427. ]
  13428. ))
  13429. characterMakers.push(() => makeCharacter(
  13430. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13431. {
  13432. side: {
  13433. height: math.unit(4 + 5 / 12, "feet"),
  13434. weight: math.unit(80, "lb"),
  13435. name: "Side",
  13436. image: {
  13437. source: "./media/characters/rodger/side.svg",
  13438. extra: 1235 / 1118
  13439. }
  13440. },
  13441. },
  13442. [
  13443. {
  13444. name: "Micro",
  13445. height: math.unit(1, "inch")
  13446. },
  13447. {
  13448. name: "Normal",
  13449. height: math.unit(4 + 5 / 12, "feet"),
  13450. default: true
  13451. },
  13452. {
  13453. name: "Macro",
  13454. height: math.unit(120, "feet")
  13455. },
  13456. ]
  13457. ))
  13458. characterMakers.push(() => makeCharacter(
  13459. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13460. {
  13461. front: {
  13462. height: math.unit(6, "feet"),
  13463. weight: math.unit(150, "lb"),
  13464. name: "Front",
  13465. image: {
  13466. source: "./media/characters/danyel/front.svg",
  13467. extra: 1185 / 1123,
  13468. bottom: 0.05
  13469. }
  13470. },
  13471. },
  13472. [
  13473. {
  13474. name: "Shrunken",
  13475. height: math.unit(0.5, "mm")
  13476. },
  13477. {
  13478. name: "Micro",
  13479. height: math.unit(1, "mm"),
  13480. default: true
  13481. },
  13482. {
  13483. name: "Upsized",
  13484. height: math.unit(5 + 5 / 12, "feet")
  13485. },
  13486. ]
  13487. ))
  13488. characterMakers.push(() => makeCharacter(
  13489. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13490. {
  13491. front: {
  13492. height: math.unit(5 + 6 / 12, "feet"),
  13493. weight: math.unit(200, "lb"),
  13494. name: "Front",
  13495. image: {
  13496. source: "./media/characters/vivian-bijoux/front.svg",
  13497. extra: 1,
  13498. bottom: 0.072
  13499. }
  13500. },
  13501. },
  13502. [
  13503. {
  13504. name: "Normal",
  13505. height: math.unit(5 + 6 / 12, "feet"),
  13506. default: true
  13507. },
  13508. {
  13509. name: "Bad Dream",
  13510. height: math.unit(500, "feet")
  13511. },
  13512. {
  13513. name: "Nightmare",
  13514. height: math.unit(500, "miles")
  13515. },
  13516. ]
  13517. ))
  13518. characterMakers.push(() => makeCharacter(
  13519. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13520. {
  13521. front: {
  13522. height: math.unit(6 + 1 / 12, "feet"),
  13523. weight: math.unit(260, "lb"),
  13524. name: "Front",
  13525. image: {
  13526. source: "./media/characters/zeta/front.svg",
  13527. extra: 1968 / 1889,
  13528. bottom: 0.06
  13529. }
  13530. },
  13531. back: {
  13532. height: math.unit(6 + 1 / 12, "feet"),
  13533. weight: math.unit(260, "lb"),
  13534. name: "Back",
  13535. image: {
  13536. source: "./media/characters/zeta/back.svg",
  13537. extra: 1944 / 1858,
  13538. bottom: 0.03
  13539. }
  13540. },
  13541. hand: {
  13542. height: math.unit(1.112, "feet"),
  13543. name: "Hand",
  13544. image: {
  13545. source: "./media/characters/zeta/hand.svg"
  13546. }
  13547. },
  13548. foot: {
  13549. height: math.unit(1.48, "feet"),
  13550. name: "Foot",
  13551. image: {
  13552. source: "./media/characters/zeta/foot.svg"
  13553. }
  13554. },
  13555. },
  13556. [
  13557. {
  13558. name: "Micro",
  13559. height: math.unit(6, "inches")
  13560. },
  13561. {
  13562. name: "Normal",
  13563. height: math.unit(6 + 1 / 12, "feet"),
  13564. default: true
  13565. },
  13566. {
  13567. name: "Macro",
  13568. height: math.unit(20, "feet")
  13569. },
  13570. ]
  13571. ))
  13572. characterMakers.push(() => makeCharacter(
  13573. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13574. {
  13575. front: {
  13576. height: math.unit(6, "feet"),
  13577. weight: math.unit(150, "lb"),
  13578. name: "Front",
  13579. image: {
  13580. source: "./media/characters/jamie-larsen/front.svg",
  13581. extra: 962 / 933,
  13582. bottom: 0.02
  13583. }
  13584. },
  13585. back: {
  13586. height: math.unit(6, "feet"),
  13587. weight: math.unit(150, "lb"),
  13588. name: "Back",
  13589. image: {
  13590. source: "./media/characters/jamie-larsen/back.svg",
  13591. extra: 997 / 946
  13592. }
  13593. },
  13594. },
  13595. [
  13596. {
  13597. name: "Macro",
  13598. height: math.unit(28 + 7 / 12, "feet"),
  13599. default: true
  13600. },
  13601. {
  13602. name: "Macro+",
  13603. height: math.unit(180, "feet")
  13604. },
  13605. {
  13606. name: "Megamacro",
  13607. height: math.unit(10, "miles")
  13608. },
  13609. {
  13610. name: "Gigamacro",
  13611. height: math.unit(200000, "miles")
  13612. },
  13613. ]
  13614. ))
  13615. characterMakers.push(() => makeCharacter(
  13616. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13617. {
  13618. front: {
  13619. height: math.unit(6, "feet"),
  13620. weight: math.unit(120, "lb"),
  13621. name: "Front",
  13622. image: {
  13623. source: "./media/characters/vance/front.svg",
  13624. extra: 1980 / 1890,
  13625. bottom: 0.09
  13626. }
  13627. },
  13628. back: {
  13629. height: math.unit(6, "feet"),
  13630. weight: math.unit(120, "lb"),
  13631. name: "Back",
  13632. image: {
  13633. source: "./media/characters/vance/back.svg",
  13634. extra: 2081 / 1994,
  13635. bottom: 0.014
  13636. }
  13637. },
  13638. hand: {
  13639. height: math.unit(0.88, "feet"),
  13640. name: "Hand",
  13641. image: {
  13642. source: "./media/characters/vance/hand.svg"
  13643. }
  13644. },
  13645. foot: {
  13646. height: math.unit(0.64, "feet"),
  13647. name: "Foot",
  13648. image: {
  13649. source: "./media/characters/vance/foot.svg"
  13650. }
  13651. },
  13652. },
  13653. [
  13654. {
  13655. name: "Small",
  13656. height: math.unit(90, "feet"),
  13657. default: true
  13658. },
  13659. {
  13660. name: "Macro",
  13661. height: math.unit(100, "meters")
  13662. },
  13663. {
  13664. name: "Megamacro",
  13665. height: math.unit(15, "miles")
  13666. },
  13667. ]
  13668. ))
  13669. characterMakers.push(() => makeCharacter(
  13670. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13671. {
  13672. front: {
  13673. height: math.unit(6, "feet"),
  13674. weight: math.unit(180, "lb"),
  13675. name: "Front",
  13676. image: {
  13677. source: "./media/characters/xochitl/front.svg",
  13678. extra: 2297 / 2261,
  13679. bottom: 0.065
  13680. }
  13681. },
  13682. back: {
  13683. height: math.unit(6, "feet"),
  13684. weight: math.unit(180, "lb"),
  13685. name: "Back",
  13686. image: {
  13687. source: "./media/characters/xochitl/back.svg",
  13688. extra: 2386 / 2354,
  13689. bottom: 0.01
  13690. }
  13691. },
  13692. foot: {
  13693. height: math.unit(6 / 5 * 1.15, "feet"),
  13694. weight: math.unit(150, "lb"),
  13695. name: "Foot",
  13696. image: {
  13697. source: "./media/characters/xochitl/foot.svg"
  13698. }
  13699. },
  13700. },
  13701. [
  13702. {
  13703. name: "Macro",
  13704. height: math.unit(80, "feet")
  13705. },
  13706. {
  13707. name: "Macro+",
  13708. height: math.unit(400, "feet"),
  13709. default: true
  13710. },
  13711. {
  13712. name: "Gigamacro",
  13713. height: math.unit(80000, "miles")
  13714. },
  13715. {
  13716. name: "Gigamacro+",
  13717. height: math.unit(400000, "miles")
  13718. },
  13719. {
  13720. name: "Teramacro",
  13721. height: math.unit(300, "AU")
  13722. },
  13723. ]
  13724. ))
  13725. characterMakers.push(() => makeCharacter(
  13726. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13727. {
  13728. front: {
  13729. height: math.unit(6, "feet"),
  13730. weight: math.unit(150, "lb"),
  13731. name: "Front",
  13732. image: {
  13733. source: "./media/characters/vincent/front.svg",
  13734. extra: 1130 / 1080,
  13735. bottom: 0.055
  13736. }
  13737. },
  13738. beak: {
  13739. height: math.unit(6 * 0.1, "feet"),
  13740. name: "Beak",
  13741. image: {
  13742. source: "./media/characters/vincent/beak.svg"
  13743. }
  13744. },
  13745. hand: {
  13746. height: math.unit(6 * 0.85, "feet"),
  13747. weight: math.unit(150, "lb"),
  13748. name: "Hand",
  13749. image: {
  13750. source: "./media/characters/vincent/hand.svg"
  13751. }
  13752. },
  13753. foot: {
  13754. height: math.unit(6 * 0.19, "feet"),
  13755. weight: math.unit(150, "lb"),
  13756. name: "Foot",
  13757. image: {
  13758. source: "./media/characters/vincent/foot.svg"
  13759. }
  13760. },
  13761. },
  13762. [
  13763. {
  13764. name: "Base",
  13765. height: math.unit(6 + 5 / 12, "feet"),
  13766. default: true
  13767. },
  13768. {
  13769. name: "Macro",
  13770. height: math.unit(300, "feet")
  13771. },
  13772. {
  13773. name: "Megamacro",
  13774. height: math.unit(2, "miles")
  13775. },
  13776. {
  13777. name: "Gigamacro",
  13778. height: math.unit(1000, "miles")
  13779. },
  13780. ]
  13781. ))
  13782. characterMakers.push(() => makeCharacter(
  13783. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13784. {
  13785. front: {
  13786. height: math.unit(2, "meters"),
  13787. weight: math.unit(500, "kg"),
  13788. name: "Front",
  13789. image: {
  13790. source: "./media/characters/coatl/front.svg",
  13791. extra: 3948 / 3500,
  13792. bottom: 0.082
  13793. }
  13794. },
  13795. },
  13796. [
  13797. {
  13798. name: "Normal",
  13799. height: math.unit(4, "meters")
  13800. },
  13801. {
  13802. name: "Macro",
  13803. height: math.unit(100, "meters"),
  13804. default: true
  13805. },
  13806. {
  13807. name: "Macro+",
  13808. height: math.unit(300, "meters")
  13809. },
  13810. {
  13811. name: "Megamacro",
  13812. height: math.unit(3, "gigameters")
  13813. },
  13814. {
  13815. name: "Megamacro+",
  13816. height: math.unit(300, "terameters")
  13817. },
  13818. {
  13819. name: "Megamacro++",
  13820. height: math.unit(3, "lightyears")
  13821. },
  13822. ]
  13823. ))
  13824. characterMakers.push(() => makeCharacter(
  13825. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13826. {
  13827. front: {
  13828. height: math.unit(6, "feet"),
  13829. weight: math.unit(50, "kg"),
  13830. name: "front",
  13831. image: {
  13832. source: "./media/characters/shiroryu/front.svg",
  13833. extra: 1990 / 1935
  13834. }
  13835. },
  13836. },
  13837. [
  13838. {
  13839. name: "Mortal Mingling",
  13840. height: math.unit(3, "meters")
  13841. },
  13842. {
  13843. name: "Kaiju-ish",
  13844. height: math.unit(250, "meters")
  13845. },
  13846. {
  13847. name: "Somewhat Godly",
  13848. height: math.unit(400, "km"),
  13849. default: true
  13850. },
  13851. {
  13852. name: "Planetary",
  13853. height: math.unit(300, "megameters")
  13854. },
  13855. {
  13856. name: "Galaxy-dwarfing",
  13857. height: math.unit(450, "kiloparsecs")
  13858. },
  13859. {
  13860. name: "Universe Eater",
  13861. height: math.unit(150, "gigaparsecs")
  13862. },
  13863. {
  13864. name: "Almost Immeasurable",
  13865. height: math.unit(1.3e266, "yottaparsecs")
  13866. },
  13867. ]
  13868. ))
  13869. characterMakers.push(() => makeCharacter(
  13870. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13871. {
  13872. front: {
  13873. height: math.unit(6, "feet"),
  13874. weight: math.unit(150, "lb"),
  13875. name: "Front",
  13876. image: {
  13877. source: "./media/characters/umeko/front.svg",
  13878. extra: 1,
  13879. bottom: 0.019
  13880. }
  13881. },
  13882. frontArmored: {
  13883. height: math.unit(6, "feet"),
  13884. weight: math.unit(150, "lb"),
  13885. name: "Front (Armored)",
  13886. image: {
  13887. source: "./media/characters/umeko/front-armored.svg",
  13888. extra: 1,
  13889. bottom: 0.021
  13890. }
  13891. },
  13892. },
  13893. [
  13894. {
  13895. name: "Macro",
  13896. height: math.unit(220, "feet"),
  13897. default: true
  13898. },
  13899. {
  13900. name: "Guardian Dragon",
  13901. height: math.unit(50, "miles")
  13902. },
  13903. {
  13904. name: "Cosmic",
  13905. height: math.unit(800000, "miles")
  13906. },
  13907. ]
  13908. ))
  13909. characterMakers.push(() => makeCharacter(
  13910. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13911. {
  13912. front: {
  13913. height: math.unit(6, "feet"),
  13914. weight: math.unit(150, "lb"),
  13915. name: "Front",
  13916. image: {
  13917. source: "./media/characters/cassidy/front.svg",
  13918. extra: 1,
  13919. bottom: 0.043
  13920. }
  13921. },
  13922. },
  13923. [
  13924. {
  13925. name: "Canon Height",
  13926. height: math.unit(120, "feet"),
  13927. default: true
  13928. },
  13929. {
  13930. name: "Macro+",
  13931. height: math.unit(400, "feet")
  13932. },
  13933. {
  13934. name: "Macro++",
  13935. height: math.unit(4000, "feet")
  13936. },
  13937. {
  13938. name: "Megamacro",
  13939. height: math.unit(3, "miles")
  13940. },
  13941. ]
  13942. ))
  13943. characterMakers.push(() => makeCharacter(
  13944. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13945. {
  13946. front: {
  13947. height: math.unit(6, "feet"),
  13948. weight: math.unit(150, "lb"),
  13949. name: "Front",
  13950. image: {
  13951. source: "./media/characters/isaac/front.svg",
  13952. extra: 896 / 815,
  13953. bottom: 0.11
  13954. }
  13955. },
  13956. },
  13957. [
  13958. {
  13959. name: "Human Size",
  13960. height: math.unit(8, "feet"),
  13961. default: true
  13962. },
  13963. {
  13964. name: "Macro",
  13965. height: math.unit(400, "feet")
  13966. },
  13967. {
  13968. name: "Megamacro",
  13969. height: math.unit(50, "miles")
  13970. },
  13971. {
  13972. name: "Canon Height",
  13973. height: math.unit(200, "AU")
  13974. },
  13975. ]
  13976. ))
  13977. characterMakers.push(() => makeCharacter(
  13978. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13979. {
  13980. front: {
  13981. height: math.unit(6, "feet"),
  13982. weight: math.unit(72, "kg"),
  13983. name: "Front",
  13984. image: {
  13985. source: "./media/characters/sleekit/front.svg",
  13986. extra: 4693 / 4487,
  13987. bottom: 0.012
  13988. }
  13989. },
  13990. },
  13991. [
  13992. {
  13993. name: "Minimum Height",
  13994. height: math.unit(10, "meters")
  13995. },
  13996. {
  13997. name: "Smaller",
  13998. height: math.unit(25, "meters")
  13999. },
  14000. {
  14001. name: "Larger",
  14002. height: math.unit(38, "meters"),
  14003. default: true
  14004. },
  14005. {
  14006. name: "Maximum height",
  14007. height: math.unit(100, "meters")
  14008. },
  14009. ]
  14010. ))
  14011. characterMakers.push(() => makeCharacter(
  14012. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14013. {
  14014. front: {
  14015. height: math.unit(6, "feet"),
  14016. weight: math.unit(150, "lb"),
  14017. name: "Front",
  14018. image: {
  14019. source: "./media/characters/nillia/front.svg",
  14020. extra: 2195 / 2037,
  14021. bottom: 0.005
  14022. }
  14023. },
  14024. back: {
  14025. height: math.unit(6, "feet"),
  14026. weight: math.unit(150, "lb"),
  14027. name: "Back",
  14028. image: {
  14029. source: "./media/characters/nillia/back.svg",
  14030. extra: 2195 / 2037,
  14031. bottom: 0.005
  14032. }
  14033. },
  14034. },
  14035. [
  14036. {
  14037. name: "Canon Height",
  14038. height: math.unit(489, "feet"),
  14039. default: true
  14040. }
  14041. ]
  14042. ))
  14043. characterMakers.push(() => makeCharacter(
  14044. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14045. {
  14046. front: {
  14047. height: math.unit(6, "feet"),
  14048. weight: math.unit(150, "lb"),
  14049. name: "Front",
  14050. image: {
  14051. source: "./media/characters/mesmyriza/front.svg",
  14052. extra: 2067 / 1784,
  14053. bottom: 0.035
  14054. }
  14055. },
  14056. foot: {
  14057. height: math.unit(6 / (250 / 35), "feet"),
  14058. name: "Foot",
  14059. image: {
  14060. source: "./media/characters/mesmyriza/foot.svg"
  14061. }
  14062. },
  14063. },
  14064. [
  14065. {
  14066. name: "Macro",
  14067. height: math.unit(457, "meters"),
  14068. default: true
  14069. },
  14070. {
  14071. name: "Megamacro",
  14072. height: math.unit(8, "megameters")
  14073. },
  14074. ]
  14075. ))
  14076. characterMakers.push(() => makeCharacter(
  14077. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14078. {
  14079. front: {
  14080. height: math.unit(6, "feet"),
  14081. weight: math.unit(250, "lb"),
  14082. name: "Front",
  14083. image: {
  14084. source: "./media/characters/saudade/front.svg",
  14085. extra: 1172 / 1139,
  14086. bottom: 0.035
  14087. }
  14088. },
  14089. },
  14090. [
  14091. {
  14092. name: "Micro",
  14093. height: math.unit(3, "inches")
  14094. },
  14095. {
  14096. name: "Normal",
  14097. height: math.unit(6, "feet"),
  14098. default: true
  14099. },
  14100. {
  14101. name: "Macro",
  14102. height: math.unit(50, "feet")
  14103. },
  14104. {
  14105. name: "Megamacro",
  14106. height: math.unit(2800, "feet")
  14107. },
  14108. ]
  14109. ))
  14110. characterMakers.push(() => makeCharacter(
  14111. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14112. {
  14113. front: {
  14114. height: math.unit(5 + 4 / 12, "feet"),
  14115. weight: math.unit(100, "lb"),
  14116. name: "Front",
  14117. image: {
  14118. source: "./media/characters/keireer/front.svg",
  14119. extra: 716 / 666,
  14120. bottom: 0.05
  14121. }
  14122. },
  14123. },
  14124. [
  14125. {
  14126. name: "Normal",
  14127. height: math.unit(5 + 4 / 12, "feet"),
  14128. default: true
  14129. },
  14130. ]
  14131. ))
  14132. characterMakers.push(() => makeCharacter(
  14133. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14134. {
  14135. front: {
  14136. height: math.unit(6, "feet"),
  14137. weight: math.unit(90, "kg"),
  14138. name: "Front",
  14139. image: {
  14140. source: "./media/characters/mirja/front.svg",
  14141. extra: 1789 / 1683,
  14142. bottom: 0.05
  14143. }
  14144. },
  14145. frontDressed: {
  14146. height: math.unit(6, "feet"),
  14147. weight: math.unit(90, "lb"),
  14148. name: "Front (Dressed)",
  14149. image: {
  14150. source: "./media/characters/mirja/front-dressed.svg",
  14151. extra: 1789 / 1683,
  14152. bottom: 0.05
  14153. }
  14154. },
  14155. back: {
  14156. height: math.unit(6, "feet"),
  14157. weight: math.unit(90, "lb"),
  14158. name: "Back",
  14159. image: {
  14160. source: "./media/characters/mirja/back.svg",
  14161. extra: 953 / 917,
  14162. bottom: 0.017
  14163. }
  14164. },
  14165. },
  14166. [
  14167. {
  14168. name: "\"Incognito\"",
  14169. height: math.unit(3, "meters")
  14170. },
  14171. {
  14172. name: "Strolling Size",
  14173. height: math.unit(15, "km")
  14174. },
  14175. {
  14176. name: "Larger Strolling Size",
  14177. height: math.unit(400, "km")
  14178. },
  14179. {
  14180. name: "Preferred Size",
  14181. height: math.unit(5000, "km")
  14182. },
  14183. {
  14184. name: "True Size",
  14185. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14186. default: true
  14187. },
  14188. ]
  14189. ))
  14190. characterMakers.push(() => makeCharacter(
  14191. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14192. {
  14193. front: {
  14194. height: math.unit(15, "feet"),
  14195. weight: math.unit(880, "kg"),
  14196. name: "Front",
  14197. image: {
  14198. source: "./media/characters/nightraver/front.svg",
  14199. extra: 2444 / 2160,
  14200. bottom: 0.027
  14201. }
  14202. },
  14203. back: {
  14204. height: math.unit(15, "feet"),
  14205. weight: math.unit(880, "kg"),
  14206. name: "Back",
  14207. image: {
  14208. source: "./media/characters/nightraver/back.svg",
  14209. extra: 2309 / 2180,
  14210. bottom: 0.005
  14211. }
  14212. },
  14213. sole: {
  14214. height: math.unit(2.878, "feet"),
  14215. name: "Sole",
  14216. image: {
  14217. source: "./media/characters/nightraver/sole.svg"
  14218. }
  14219. },
  14220. foot: {
  14221. height: math.unit(2.285, "feet"),
  14222. name: "Foot",
  14223. image: {
  14224. source: "./media/characters/nightraver/foot.svg"
  14225. }
  14226. },
  14227. maw: {
  14228. height: math.unit(2.67, "feet"),
  14229. name: "Maw",
  14230. image: {
  14231. source: "./media/characters/nightraver/maw.svg"
  14232. }
  14233. },
  14234. },
  14235. [
  14236. {
  14237. name: "Micro",
  14238. height: math.unit(1, "cm")
  14239. },
  14240. {
  14241. name: "Normal",
  14242. height: math.unit(15, "feet"),
  14243. default: true
  14244. },
  14245. {
  14246. name: "Macro",
  14247. height: math.unit(300, "feet")
  14248. },
  14249. {
  14250. name: "Megamacro",
  14251. height: math.unit(300, "miles")
  14252. },
  14253. {
  14254. name: "Gigamacro",
  14255. height: math.unit(10000, "miles")
  14256. },
  14257. ]
  14258. ))
  14259. characterMakers.push(() => makeCharacter(
  14260. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14261. {
  14262. side: {
  14263. height: math.unit(2, "inches"),
  14264. weight: math.unit(5, "grams"),
  14265. name: "Side",
  14266. image: {
  14267. source: "./media/characters/arc/side.svg"
  14268. }
  14269. },
  14270. },
  14271. [
  14272. {
  14273. name: "Micro",
  14274. height: math.unit(2, "inches"),
  14275. default: true
  14276. },
  14277. ]
  14278. ))
  14279. characterMakers.push(() => makeCharacter(
  14280. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14281. {
  14282. front: {
  14283. height: math.unit(1.1938, "meters"),
  14284. weight: math.unit(54, "kg"),
  14285. name: "Front",
  14286. image: {
  14287. source: "./media/characters/nebula-shahar/front.svg",
  14288. extra: 1642 / 1436,
  14289. bottom: 0.06
  14290. }
  14291. },
  14292. },
  14293. [
  14294. {
  14295. name: "Megamicro",
  14296. height: math.unit(0.3, "mm")
  14297. },
  14298. {
  14299. name: "Micro",
  14300. height: math.unit(3, "cm")
  14301. },
  14302. {
  14303. name: "Normal",
  14304. height: math.unit(138, "cm"),
  14305. default: true
  14306. },
  14307. {
  14308. name: "Macro",
  14309. height: math.unit(30, "m")
  14310. },
  14311. ]
  14312. ))
  14313. characterMakers.push(() => makeCharacter(
  14314. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14315. {
  14316. front: {
  14317. height: math.unit(5.24, "feet"),
  14318. weight: math.unit(150, "lb"),
  14319. name: "Front",
  14320. image: {
  14321. source: "./media/characters/shayla/front.svg",
  14322. extra: 1512 / 1414,
  14323. bottom: 0.01
  14324. }
  14325. },
  14326. back: {
  14327. height: math.unit(5.24, "feet"),
  14328. weight: math.unit(150, "lb"),
  14329. name: "Back",
  14330. image: {
  14331. source: "./media/characters/shayla/back.svg",
  14332. extra: 1512 / 1414
  14333. }
  14334. },
  14335. hand: {
  14336. height: math.unit(0.7781496062992126, "feet"),
  14337. name: "Hand",
  14338. image: {
  14339. source: "./media/characters/shayla/hand.svg"
  14340. }
  14341. },
  14342. foot: {
  14343. height: math.unit(1.4206036745406823, "feet"),
  14344. name: "Foot",
  14345. image: {
  14346. source: "./media/characters/shayla/foot.svg"
  14347. }
  14348. },
  14349. },
  14350. [
  14351. {
  14352. name: "Micro",
  14353. height: math.unit(0.32, "feet")
  14354. },
  14355. {
  14356. name: "Normal",
  14357. height: math.unit(5.24, "feet"),
  14358. default: true
  14359. },
  14360. {
  14361. name: "Macro",
  14362. height: math.unit(492.12, "feet")
  14363. },
  14364. {
  14365. name: "Megamacro",
  14366. height: math.unit(186.41, "miles")
  14367. },
  14368. ]
  14369. ))
  14370. characterMakers.push(() => makeCharacter(
  14371. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14372. {
  14373. front: {
  14374. height: math.unit(2.2, "m"),
  14375. weight: math.unit(120, "kg"),
  14376. name: "Front",
  14377. image: {
  14378. source: "./media/characters/pia-jr/front.svg",
  14379. extra: 1000 / 970,
  14380. bottom: 0.035
  14381. }
  14382. },
  14383. hand: {
  14384. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14385. name: "Hand",
  14386. image: {
  14387. source: "./media/characters/pia-jr/hand.svg"
  14388. }
  14389. },
  14390. paw: {
  14391. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14392. name: "Paw",
  14393. image: {
  14394. source: "./media/characters/pia-jr/paw.svg"
  14395. }
  14396. },
  14397. },
  14398. [
  14399. {
  14400. name: "Micro",
  14401. height: math.unit(1.2, "cm")
  14402. },
  14403. {
  14404. name: "Normal",
  14405. height: math.unit(2.2, "m"),
  14406. default: true
  14407. },
  14408. {
  14409. name: "Macro",
  14410. height: math.unit(180, "m")
  14411. },
  14412. {
  14413. name: "Megamacro",
  14414. height: math.unit(420, "km")
  14415. },
  14416. ]
  14417. ))
  14418. characterMakers.push(() => makeCharacter(
  14419. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14420. {
  14421. front: {
  14422. height: math.unit(2, "m"),
  14423. weight: math.unit(115, "kg"),
  14424. name: "Front",
  14425. image: {
  14426. source: "./media/characters/pia-sr/front.svg",
  14427. extra: 760 / 730,
  14428. bottom: 0.015
  14429. }
  14430. },
  14431. back: {
  14432. height: math.unit(2, "m"),
  14433. weight: math.unit(115, "kg"),
  14434. name: "Back",
  14435. image: {
  14436. source: "./media/characters/pia-sr/back.svg",
  14437. extra: 760 / 730,
  14438. bottom: 0.01
  14439. }
  14440. },
  14441. hand: {
  14442. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14443. name: "Hand",
  14444. image: {
  14445. source: "./media/characters/pia-sr/hand.svg"
  14446. }
  14447. },
  14448. foot: {
  14449. height: math.unit(1.83, "feet"),
  14450. name: "Foot",
  14451. image: {
  14452. source: "./media/characters/pia-sr/foot.svg"
  14453. }
  14454. },
  14455. },
  14456. [
  14457. {
  14458. name: "Micro",
  14459. height: math.unit(88, "mm")
  14460. },
  14461. {
  14462. name: "Normal",
  14463. height: math.unit(2, "m"),
  14464. default: true
  14465. },
  14466. {
  14467. name: "Macro",
  14468. height: math.unit(200, "m")
  14469. },
  14470. {
  14471. name: "Megamacro",
  14472. height: math.unit(420, "km")
  14473. },
  14474. ]
  14475. ))
  14476. characterMakers.push(() => makeCharacter(
  14477. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14478. {
  14479. front: {
  14480. height: math.unit(8 + 2 / 12, "feet"),
  14481. weight: math.unit(300, "lb"),
  14482. name: "Front",
  14483. image: {
  14484. source: "./media/characters/kibibyte/front.svg",
  14485. extra: 2221 / 2098,
  14486. bottom: 0.04
  14487. }
  14488. },
  14489. },
  14490. [
  14491. {
  14492. name: "Normal",
  14493. height: math.unit(8 + 2 / 12, "feet"),
  14494. default: true
  14495. },
  14496. {
  14497. name: "Socialable Macro",
  14498. height: math.unit(50, "feet")
  14499. },
  14500. {
  14501. name: "Macro",
  14502. height: math.unit(300, "feet")
  14503. },
  14504. {
  14505. name: "Megamacro",
  14506. height: math.unit(500, "miles")
  14507. },
  14508. ]
  14509. ))
  14510. characterMakers.push(() => makeCharacter(
  14511. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14512. {
  14513. front: {
  14514. height: math.unit(6, "feet"),
  14515. weight: math.unit(150, "lb"),
  14516. name: "Front",
  14517. image: {
  14518. source: "./media/characters/felix/front.svg",
  14519. extra: 762 / 722,
  14520. bottom: 0.02
  14521. }
  14522. },
  14523. frontClothed: {
  14524. height: math.unit(6, "feet"),
  14525. weight: math.unit(150, "lb"),
  14526. name: "Front (Clothed)",
  14527. image: {
  14528. source: "./media/characters/felix/front-clothed.svg",
  14529. extra: 762 / 722,
  14530. bottom: 0.02
  14531. }
  14532. },
  14533. },
  14534. [
  14535. {
  14536. name: "Normal",
  14537. height: math.unit(6 + 8 / 12, "feet"),
  14538. default: true
  14539. },
  14540. {
  14541. name: "Macro",
  14542. height: math.unit(2600, "feet")
  14543. },
  14544. {
  14545. name: "Megamacro",
  14546. height: math.unit(450, "miles")
  14547. },
  14548. ]
  14549. ))
  14550. characterMakers.push(() => makeCharacter(
  14551. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14552. {
  14553. front: {
  14554. height: math.unit(6 + 1 / 12, "feet"),
  14555. weight: math.unit(250, "lb"),
  14556. name: "Front",
  14557. image: {
  14558. source: "./media/characters/tobo/front.svg",
  14559. extra: 608 / 586,
  14560. bottom: 0.023
  14561. }
  14562. },
  14563. back: {
  14564. height: math.unit(6 + 1 / 12, "feet"),
  14565. weight: math.unit(250, "lb"),
  14566. name: "Back",
  14567. image: {
  14568. source: "./media/characters/tobo/back.svg",
  14569. extra: 608 / 586
  14570. }
  14571. },
  14572. },
  14573. [
  14574. {
  14575. name: "Nano",
  14576. height: math.unit(2, "nm")
  14577. },
  14578. {
  14579. name: "Megamicro",
  14580. height: math.unit(0.1, "mm")
  14581. },
  14582. {
  14583. name: "Micro",
  14584. height: math.unit(1, "inch"),
  14585. default: true
  14586. },
  14587. {
  14588. name: "Human-sized",
  14589. height: math.unit(6 + 1 / 12, "feet")
  14590. },
  14591. {
  14592. name: "Macro",
  14593. height: math.unit(250, "feet")
  14594. },
  14595. {
  14596. name: "Megamacro",
  14597. height: math.unit(75, "miles")
  14598. },
  14599. {
  14600. name: "Texas-sized",
  14601. height: math.unit(750, "miles")
  14602. },
  14603. {
  14604. name: "Teramacro",
  14605. height: math.unit(50000, "miles")
  14606. },
  14607. ]
  14608. ))
  14609. characterMakers.push(() => makeCharacter(
  14610. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14611. {
  14612. front: {
  14613. height: math.unit(6, "feet"),
  14614. weight: math.unit(269, "lb"),
  14615. name: "Front",
  14616. image: {
  14617. source: "./media/characters/danny-kapowsky/front.svg",
  14618. extra: 766 / 736,
  14619. bottom: 0.044
  14620. }
  14621. },
  14622. back: {
  14623. height: math.unit(6, "feet"),
  14624. weight: math.unit(269, "lb"),
  14625. name: "Back",
  14626. image: {
  14627. source: "./media/characters/danny-kapowsky/back.svg",
  14628. extra: 797 / 760,
  14629. bottom: 0.025
  14630. }
  14631. },
  14632. },
  14633. [
  14634. {
  14635. name: "Macro",
  14636. height: math.unit(150, "feet"),
  14637. default: true
  14638. },
  14639. {
  14640. name: "Macro+",
  14641. height: math.unit(200, "feet")
  14642. },
  14643. {
  14644. name: "Macro++",
  14645. height: math.unit(300, "feet")
  14646. },
  14647. {
  14648. name: "Macro+++",
  14649. height: math.unit(400, "feet")
  14650. },
  14651. ]
  14652. ))
  14653. characterMakers.push(() => makeCharacter(
  14654. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14655. {
  14656. side: {
  14657. height: math.unit(6, "feet"),
  14658. weight: math.unit(170, "lb"),
  14659. name: "Side",
  14660. image: {
  14661. source: "./media/characters/finn/side.svg",
  14662. extra: 1953 / 1807,
  14663. bottom: 0.057
  14664. }
  14665. },
  14666. },
  14667. [
  14668. {
  14669. name: "Megamacro",
  14670. height: math.unit(14445, "feet"),
  14671. default: true
  14672. },
  14673. ]
  14674. ))
  14675. characterMakers.push(() => makeCharacter(
  14676. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14677. {
  14678. front: {
  14679. height: math.unit(5 + 6 / 12, "feet"),
  14680. weight: math.unit(125, "lb"),
  14681. name: "Front",
  14682. image: {
  14683. source: "./media/characters/roy/front.svg",
  14684. extra: 1,
  14685. bottom: 0.11
  14686. }
  14687. },
  14688. },
  14689. [
  14690. {
  14691. name: "Micro",
  14692. height: math.unit(3, "inches"),
  14693. default: true
  14694. },
  14695. {
  14696. name: "Normal",
  14697. height: math.unit(5 + 6 / 12, "feet")
  14698. },
  14699. {
  14700. name: "Lesser Macro",
  14701. height: math.unit(60, "feet")
  14702. },
  14703. {
  14704. name: "Greater Macro",
  14705. height: math.unit(120, "feet")
  14706. },
  14707. ]
  14708. ))
  14709. characterMakers.push(() => makeCharacter(
  14710. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14711. {
  14712. front: {
  14713. height: math.unit(6, "feet"),
  14714. weight: math.unit(100, "lb"),
  14715. name: "Front",
  14716. image: {
  14717. source: "./media/characters/aevsivs/front.svg",
  14718. extra: 1,
  14719. bottom: 0.03
  14720. }
  14721. },
  14722. back: {
  14723. height: math.unit(6, "feet"),
  14724. weight: math.unit(100, "lb"),
  14725. name: "Back",
  14726. image: {
  14727. source: "./media/characters/aevsivs/back.svg"
  14728. }
  14729. },
  14730. },
  14731. [
  14732. {
  14733. name: "Micro",
  14734. height: math.unit(2, "inches"),
  14735. default: true
  14736. },
  14737. {
  14738. name: "Normal",
  14739. height: math.unit(5, "feet")
  14740. },
  14741. ]
  14742. ))
  14743. characterMakers.push(() => makeCharacter(
  14744. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14745. {
  14746. front: {
  14747. height: math.unit(5 + 7 / 12, "feet"),
  14748. weight: math.unit(159, "lb"),
  14749. name: "Front",
  14750. image: {
  14751. source: "./media/characters/hildegard/front.svg",
  14752. extra: 289 / 269,
  14753. bottom: 7.63 / 297.8
  14754. }
  14755. },
  14756. back: {
  14757. height: math.unit(5 + 7 / 12, "feet"),
  14758. weight: math.unit(159, "lb"),
  14759. name: "Back",
  14760. image: {
  14761. source: "./media/characters/hildegard/back.svg",
  14762. extra: 280 / 260,
  14763. bottom: 2.3 / 282
  14764. }
  14765. },
  14766. },
  14767. [
  14768. {
  14769. name: "Normal",
  14770. height: math.unit(5 + 7 / 12, "feet"),
  14771. default: true
  14772. },
  14773. ]
  14774. ))
  14775. characterMakers.push(() => makeCharacter(
  14776. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14777. {
  14778. bernard: {
  14779. height: math.unit(2 + 7 / 12, "feet"),
  14780. weight: math.unit(66, "lb"),
  14781. name: "Bernard",
  14782. rename: true,
  14783. image: {
  14784. source: "./media/characters/bernard-wilder/bernard.svg",
  14785. extra: 192 / 128,
  14786. bottom: 0.05
  14787. }
  14788. },
  14789. wilder: {
  14790. height: math.unit(5 + 8 / 12, "feet"),
  14791. weight: math.unit(143, "lb"),
  14792. name: "Wilder",
  14793. rename: true,
  14794. image: {
  14795. source: "./media/characters/bernard-wilder/wilder.svg",
  14796. extra: 361 / 312,
  14797. bottom: 0.02
  14798. }
  14799. },
  14800. },
  14801. [
  14802. {
  14803. name: "Normal",
  14804. height: math.unit(2 + 7 / 12, "feet"),
  14805. default: true
  14806. },
  14807. ]
  14808. ))
  14809. characterMakers.push(() => makeCharacter(
  14810. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14811. {
  14812. anthro: {
  14813. height: math.unit(6 + 1 / 12, "feet"),
  14814. weight: math.unit(155, "lb"),
  14815. name: "Anthro",
  14816. image: {
  14817. source: "./media/characters/hearth/anthro.svg",
  14818. extra: 260 / 250,
  14819. bottom: 0.02
  14820. }
  14821. },
  14822. feral: {
  14823. height: math.unit(3.78, "feet"),
  14824. weight: math.unit(35, "kg"),
  14825. name: "Feral",
  14826. image: {
  14827. source: "./media/characters/hearth/feral.svg",
  14828. extra: 153 / 135,
  14829. bottom: 0.03
  14830. }
  14831. },
  14832. },
  14833. [
  14834. {
  14835. name: "Normal",
  14836. height: math.unit(6 + 1 / 12, "feet"),
  14837. default: true
  14838. },
  14839. ]
  14840. ))
  14841. characterMakers.push(() => makeCharacter(
  14842. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14843. {
  14844. front: {
  14845. height: math.unit(6, "feet"),
  14846. weight: math.unit(182, "lb"),
  14847. name: "Front",
  14848. image: {
  14849. source: "./media/characters/ingrid/front.svg",
  14850. extra: 294 / 268,
  14851. bottom: 0.027
  14852. }
  14853. },
  14854. },
  14855. [
  14856. {
  14857. name: "Normal",
  14858. height: math.unit(6, "feet"),
  14859. default: true
  14860. },
  14861. ]
  14862. ))
  14863. characterMakers.push(() => makeCharacter(
  14864. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14865. {
  14866. eevee: {
  14867. height: math.unit(2 + 10 / 12, "feet"),
  14868. weight: math.unit(86, "lb"),
  14869. name: "Malgam",
  14870. image: {
  14871. source: "./media/characters/malgam/eevee.svg",
  14872. extra: 218 / 180,
  14873. bottom: 0.2
  14874. }
  14875. },
  14876. sylveon: {
  14877. height: math.unit(4, "feet"),
  14878. weight: math.unit(101, "lb"),
  14879. name: "Future Malgam",
  14880. rename: true,
  14881. image: {
  14882. source: "./media/characters/malgam/sylveon.svg",
  14883. extra: 371 / 325,
  14884. bottom: 0.015
  14885. }
  14886. },
  14887. gigantamax: {
  14888. height: math.unit(50, "feet"),
  14889. name: "Gigantamax Malgam",
  14890. rename: true,
  14891. image: {
  14892. source: "./media/characters/malgam/gigantamax.svg"
  14893. }
  14894. },
  14895. },
  14896. [
  14897. {
  14898. name: "Normal",
  14899. height: math.unit(2 + 10 / 12, "feet"),
  14900. default: true
  14901. },
  14902. ]
  14903. ))
  14904. characterMakers.push(() => makeCharacter(
  14905. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14906. {
  14907. front: {
  14908. height: math.unit(5 + 11 / 12, "feet"),
  14909. weight: math.unit(188, "lb"),
  14910. name: "Front",
  14911. image: {
  14912. source: "./media/characters/fleur/front.svg",
  14913. extra: 309 / 283,
  14914. bottom: 0.007
  14915. }
  14916. },
  14917. },
  14918. [
  14919. {
  14920. name: "Normal",
  14921. height: math.unit(5 + 11 / 12, "feet"),
  14922. default: true
  14923. },
  14924. ]
  14925. ))
  14926. characterMakers.push(() => makeCharacter(
  14927. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14928. {
  14929. front: {
  14930. height: math.unit(5 + 4 / 12, "feet"),
  14931. weight: math.unit(122, "lb"),
  14932. name: "Front",
  14933. image: {
  14934. source: "./media/characters/jude/front.svg",
  14935. extra: 288 / 273,
  14936. bottom: 0.03
  14937. }
  14938. },
  14939. },
  14940. [
  14941. {
  14942. name: "Normal",
  14943. height: math.unit(5 + 4 / 12, "feet"),
  14944. default: true
  14945. },
  14946. ]
  14947. ))
  14948. characterMakers.push(() => makeCharacter(
  14949. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14950. {
  14951. front: {
  14952. height: math.unit(5 + 11 / 12, "feet"),
  14953. weight: math.unit(190, "lb"),
  14954. name: "Front",
  14955. image: {
  14956. source: "./media/characters/seara/front.svg",
  14957. extra: 1,
  14958. bottom: 0.05
  14959. }
  14960. },
  14961. },
  14962. [
  14963. {
  14964. name: "Normal",
  14965. height: math.unit(5 + 11 / 12, "feet"),
  14966. default: true
  14967. },
  14968. ]
  14969. ))
  14970. characterMakers.push(() => makeCharacter(
  14971. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14972. {
  14973. front: {
  14974. height: math.unit(16 + 5 / 12, "feet"),
  14975. weight: math.unit(524, "lb"),
  14976. name: "Front",
  14977. image: {
  14978. source: "./media/characters/caspian/front.svg",
  14979. extra: 1,
  14980. bottom: 0.04
  14981. }
  14982. },
  14983. },
  14984. [
  14985. {
  14986. name: "Normal",
  14987. height: math.unit(16 + 5 / 12, "feet"),
  14988. default: true
  14989. },
  14990. ]
  14991. ))
  14992. characterMakers.push(() => makeCharacter(
  14993. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14994. {
  14995. front: {
  14996. height: math.unit(5 + 7 / 12, "feet"),
  14997. weight: math.unit(170, "lb"),
  14998. name: "Front",
  14999. image: {
  15000. source: "./media/characters/mika/front.svg",
  15001. extra: 1,
  15002. bottom: 0.016
  15003. }
  15004. },
  15005. },
  15006. [
  15007. {
  15008. name: "Normal",
  15009. height: math.unit(5 + 7 / 12, "feet"),
  15010. default: true
  15011. },
  15012. ]
  15013. ))
  15014. characterMakers.push(() => makeCharacter(
  15015. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15016. {
  15017. front: {
  15018. height: math.unit(6 + 2 / 12, "feet"),
  15019. weight: math.unit(268, "lb"),
  15020. name: "Front",
  15021. image: {
  15022. source: "./media/characters/sol/front.svg",
  15023. extra: 247 / 231,
  15024. bottom: 0.05
  15025. }
  15026. },
  15027. },
  15028. [
  15029. {
  15030. name: "Normal",
  15031. height: math.unit(6 + 2 / 12, "feet"),
  15032. default: true
  15033. },
  15034. ]
  15035. ))
  15036. characterMakers.push(() => makeCharacter(
  15037. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15038. {
  15039. buizel: {
  15040. height: math.unit(2 + 5 / 12, "feet"),
  15041. weight: math.unit(87, "lb"),
  15042. name: "Buizel",
  15043. image: {
  15044. source: "./media/characters/umiko/buizel.svg",
  15045. extra: 172 / 157,
  15046. bottom: 0.01
  15047. }
  15048. },
  15049. floatzel: {
  15050. height: math.unit(5 + 9 / 12, "feet"),
  15051. weight: math.unit(250, "lb"),
  15052. name: "Floatzel",
  15053. image: {
  15054. source: "./media/characters/umiko/floatzel.svg",
  15055. extra: 262 / 248
  15056. }
  15057. },
  15058. },
  15059. [
  15060. {
  15061. name: "Normal",
  15062. height: math.unit(2 + 5 / 12, "feet"),
  15063. default: true
  15064. },
  15065. ]
  15066. ))
  15067. characterMakers.push(() => makeCharacter(
  15068. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15069. {
  15070. front: {
  15071. height: math.unit(6 + 2 / 12, "feet"),
  15072. weight: math.unit(146, "lb"),
  15073. name: "Front",
  15074. image: {
  15075. source: "./media/characters/iliac/front.svg",
  15076. extra: 389 / 365,
  15077. bottom: 0.035
  15078. }
  15079. },
  15080. },
  15081. [
  15082. {
  15083. name: "Normal",
  15084. height: math.unit(6 + 2 / 12, "feet"),
  15085. default: true
  15086. },
  15087. ]
  15088. ))
  15089. characterMakers.push(() => makeCharacter(
  15090. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15091. {
  15092. front: {
  15093. height: math.unit(6, "feet"),
  15094. weight: math.unit(170, "lb"),
  15095. name: "Front",
  15096. image: {
  15097. source: "./media/characters/topaz/front.svg",
  15098. extra: 317 / 303,
  15099. bottom: 0.055
  15100. }
  15101. },
  15102. },
  15103. [
  15104. {
  15105. name: "Normal",
  15106. height: math.unit(6, "feet"),
  15107. default: true
  15108. },
  15109. ]
  15110. ))
  15111. characterMakers.push(() => makeCharacter(
  15112. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15113. {
  15114. front: {
  15115. height: math.unit(5 + 11 / 12, "feet"),
  15116. weight: math.unit(144, "lb"),
  15117. name: "Front",
  15118. image: {
  15119. source: "./media/characters/gabriel/front.svg",
  15120. extra: 285 / 262,
  15121. bottom: 0.004
  15122. }
  15123. },
  15124. },
  15125. [
  15126. {
  15127. name: "Normal",
  15128. height: math.unit(5 + 11 / 12, "feet"),
  15129. default: true
  15130. },
  15131. ]
  15132. ))
  15133. characterMakers.push(() => makeCharacter(
  15134. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15135. {
  15136. side: {
  15137. height: math.unit(6 + 5 / 12, "feet"),
  15138. weight: math.unit(300, "lb"),
  15139. name: "Side",
  15140. image: {
  15141. source: "./media/characters/tempest-suicune/side.svg",
  15142. extra: 195 / 154,
  15143. bottom: 0.04
  15144. }
  15145. },
  15146. },
  15147. [
  15148. {
  15149. name: "Normal",
  15150. height: math.unit(6 + 5 / 12, "feet"),
  15151. default: true
  15152. },
  15153. ]
  15154. ))
  15155. characterMakers.push(() => makeCharacter(
  15156. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15157. {
  15158. front: {
  15159. height: math.unit(7 + 2 / 12, "feet"),
  15160. weight: math.unit(322, "lb"),
  15161. name: "Front",
  15162. image: {
  15163. source: "./media/characters/vulcan/front.svg",
  15164. extra: 154 / 147,
  15165. bottom: 0.04
  15166. }
  15167. },
  15168. },
  15169. [
  15170. {
  15171. name: "Normal",
  15172. height: math.unit(7 + 2 / 12, "feet"),
  15173. default: true
  15174. },
  15175. ]
  15176. ))
  15177. characterMakers.push(() => makeCharacter(
  15178. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15179. {
  15180. front: {
  15181. height: math.unit(5 + 10 / 12, "feet"),
  15182. weight: math.unit(264, "lb"),
  15183. name: "Front",
  15184. image: {
  15185. source: "./media/characters/gault/front.svg",
  15186. extra: 161 / 140,
  15187. bottom: 0.028
  15188. }
  15189. },
  15190. },
  15191. [
  15192. {
  15193. name: "Normal",
  15194. height: math.unit(5 + 10 / 12, "feet"),
  15195. default: true
  15196. },
  15197. ]
  15198. ))
  15199. characterMakers.push(() => makeCharacter(
  15200. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15201. {
  15202. front: {
  15203. height: math.unit(6, "feet"),
  15204. weight: math.unit(150, "lb"),
  15205. name: "Front",
  15206. image: {
  15207. source: "./media/characters/shard/front.svg",
  15208. extra: 273 / 238,
  15209. bottom: 0.02
  15210. }
  15211. },
  15212. },
  15213. [
  15214. {
  15215. name: "Normal",
  15216. height: math.unit(3 + 6 / 12, "feet"),
  15217. default: true
  15218. },
  15219. ]
  15220. ))
  15221. characterMakers.push(() => makeCharacter(
  15222. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15223. {
  15224. front: {
  15225. height: math.unit(5 + 11 / 12, "feet"),
  15226. weight: math.unit(146, "lb"),
  15227. name: "Front",
  15228. image: {
  15229. source: "./media/characters/ashe/front.svg",
  15230. extra: 400 / 373,
  15231. bottom: 0.01
  15232. }
  15233. },
  15234. },
  15235. [
  15236. {
  15237. name: "Normal",
  15238. height: math.unit(5 + 11 / 12, "feet"),
  15239. default: true
  15240. },
  15241. ]
  15242. ))
  15243. characterMakers.push(() => makeCharacter(
  15244. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15245. {
  15246. front: {
  15247. height: math.unit(5 + 5 / 12, "feet"),
  15248. weight: math.unit(135, "lb"),
  15249. name: "Front",
  15250. image: {
  15251. source: "./media/characters/beatrix/front.svg",
  15252. extra: 392 / 379,
  15253. bottom: 0.01
  15254. }
  15255. },
  15256. },
  15257. [
  15258. {
  15259. name: "Normal",
  15260. height: math.unit(6, "feet"),
  15261. default: true
  15262. },
  15263. ]
  15264. ))
  15265. characterMakers.push(() => makeCharacter(
  15266. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15267. {
  15268. front: {
  15269. height: math.unit(6, "feet"),
  15270. weight: math.unit(150, "lb"),
  15271. name: "Front",
  15272. image: {
  15273. source: "./media/characters/ignatius/front.svg",
  15274. extra: 245 / 222,
  15275. bottom: 0.01
  15276. }
  15277. },
  15278. },
  15279. [
  15280. {
  15281. name: "Normal",
  15282. height: math.unit(5 + 5 / 12, "feet"),
  15283. default: true
  15284. },
  15285. ]
  15286. ))
  15287. characterMakers.push(() => makeCharacter(
  15288. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15289. {
  15290. front: {
  15291. height: math.unit(6 + 2 / 12, "feet"),
  15292. weight: math.unit(138, "lb"),
  15293. name: "Front",
  15294. image: {
  15295. source: "./media/characters/mei-li/front.svg",
  15296. extra: 237 / 229,
  15297. bottom: 0.03
  15298. }
  15299. },
  15300. },
  15301. [
  15302. {
  15303. name: "Normal",
  15304. height: math.unit(6 + 2 / 12, "feet"),
  15305. default: true
  15306. },
  15307. ]
  15308. ))
  15309. characterMakers.push(() => makeCharacter(
  15310. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15311. {
  15312. front: {
  15313. height: math.unit(2 + 4 / 12, "feet"),
  15314. weight: math.unit(62, "lb"),
  15315. name: "Front",
  15316. image: {
  15317. source: "./media/characters/puru/front.svg",
  15318. extra: 206 / 149,
  15319. bottom: 0.06
  15320. }
  15321. },
  15322. },
  15323. [
  15324. {
  15325. name: "Normal",
  15326. height: math.unit(2 + 4 / 12, "feet"),
  15327. default: true
  15328. },
  15329. ]
  15330. ))
  15331. characterMakers.push(() => makeCharacter(
  15332. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15333. {
  15334. anthro: {
  15335. height: math.unit(5 + 8/12, "feet"),
  15336. weight: math.unit(200, "lb"),
  15337. energyNeed: math.unit(2000, "kcal"),
  15338. name: "Anthro",
  15339. image: {
  15340. source: "./media/characters/kee/anthro.svg",
  15341. extra: 3251/3184,
  15342. bottom: 250/3501
  15343. }
  15344. },
  15345. taur: {
  15346. height: math.unit(11, "feet"),
  15347. weight: math.unit(500, "lb"),
  15348. energyNeed: math.unit(5000, "kcal"),
  15349. name: "Taur",
  15350. image: {
  15351. source: "./media/characters/kee/taur.svg",
  15352. extra: 1362/1320,
  15353. bottom: 83/1445
  15354. }
  15355. },
  15356. },
  15357. [
  15358. {
  15359. name: "Normal",
  15360. height: math.unit(5 + 8/12, "feet"),
  15361. default: true
  15362. },
  15363. {
  15364. name: "Macro",
  15365. height: math.unit(35, "feet")
  15366. },
  15367. ]
  15368. ))
  15369. characterMakers.push(() => makeCharacter(
  15370. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15371. {
  15372. anthro: {
  15373. height: math.unit(7, "feet"),
  15374. weight: math.unit(190, "lb"),
  15375. name: "Anthro",
  15376. image: {
  15377. source: "./media/characters/cobalt-dracha/anthro.svg",
  15378. extra: 231 / 225,
  15379. bottom: 0.04
  15380. }
  15381. },
  15382. feral: {
  15383. height: math.unit(9 + 7 / 12, "feet"),
  15384. weight: math.unit(294, "lb"),
  15385. name: "Feral",
  15386. image: {
  15387. source: "./media/characters/cobalt-dracha/feral.svg",
  15388. extra: 692 / 633,
  15389. bottom: 0.05
  15390. }
  15391. },
  15392. },
  15393. [
  15394. {
  15395. name: "Normal",
  15396. height: math.unit(7, "feet"),
  15397. default: true
  15398. },
  15399. ]
  15400. ))
  15401. characterMakers.push(() => makeCharacter(
  15402. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15403. {
  15404. fallen: {
  15405. height: math.unit(11 + 8 / 12, "feet"),
  15406. weight: math.unit(485, "lb"),
  15407. name: "Java (Fallen)",
  15408. rename: true,
  15409. image: {
  15410. source: "./media/characters/java/fallen.svg",
  15411. extra: 226 / 208,
  15412. bottom: 0.005
  15413. }
  15414. },
  15415. godkin: {
  15416. height: math.unit(10 + 6 / 12, "feet"),
  15417. weight: math.unit(328, "lb"),
  15418. name: "Java (Godkin)",
  15419. rename: true,
  15420. image: {
  15421. source: "./media/characters/java/godkin.svg",
  15422. extra: 270 / 262,
  15423. bottom: 0.02
  15424. }
  15425. },
  15426. },
  15427. [
  15428. {
  15429. name: "Normal",
  15430. height: math.unit(11 + 8 / 12, "feet"),
  15431. default: true
  15432. },
  15433. ]
  15434. ))
  15435. characterMakers.push(() => makeCharacter(
  15436. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15437. {
  15438. front: {
  15439. height: math.unit(7 + 8 / 12, "feet"),
  15440. weight: math.unit(320, "lb"),
  15441. name: "Front",
  15442. image: {
  15443. source: "./media/characters/skoll/front.svg",
  15444. extra: 232 / 220,
  15445. bottom: 0.02
  15446. }
  15447. },
  15448. },
  15449. [
  15450. {
  15451. name: "Normal",
  15452. height: math.unit(7 + 8 / 12, "feet"),
  15453. default: true
  15454. },
  15455. ]
  15456. ))
  15457. characterMakers.push(() => makeCharacter(
  15458. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15459. {
  15460. front: {
  15461. height: math.unit(5 + 9 / 12, "feet"),
  15462. weight: math.unit(170, "lb"),
  15463. name: "Front",
  15464. image: {
  15465. source: "./media/characters/purna/front.svg",
  15466. extra: 239 / 229,
  15467. bottom: 0.01
  15468. }
  15469. },
  15470. },
  15471. [
  15472. {
  15473. name: "Normal",
  15474. height: math.unit(5 + 9 / 12, "feet"),
  15475. default: true
  15476. },
  15477. ]
  15478. ))
  15479. characterMakers.push(() => makeCharacter(
  15480. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15481. {
  15482. front: {
  15483. height: math.unit(5 + 9 / 12, "feet"),
  15484. weight: math.unit(142, "lb"),
  15485. name: "Front",
  15486. image: {
  15487. source: "./media/characters/kuva/front.svg",
  15488. extra: 281 / 271,
  15489. bottom: 0.006
  15490. }
  15491. },
  15492. },
  15493. [
  15494. {
  15495. name: "Normal",
  15496. height: math.unit(5 + 9 / 12, "feet"),
  15497. default: true
  15498. },
  15499. ]
  15500. ))
  15501. characterMakers.push(() => makeCharacter(
  15502. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15503. {
  15504. anthro: {
  15505. height: math.unit(9 + 2 / 12, "feet"),
  15506. weight: math.unit(270, "lb"),
  15507. name: "Anthro",
  15508. image: {
  15509. source: "./media/characters/embra/anthro.svg",
  15510. extra: 200 / 187,
  15511. bottom: 0.02
  15512. }
  15513. },
  15514. feral: {
  15515. height: math.unit(18 + 8 / 12, "feet"),
  15516. weight: math.unit(576, "lb"),
  15517. name: "Feral",
  15518. image: {
  15519. source: "./media/characters/embra/feral.svg",
  15520. extra: 152 / 137,
  15521. bottom: 0.037
  15522. }
  15523. },
  15524. },
  15525. [
  15526. {
  15527. name: "Normal",
  15528. height: math.unit(9 + 2 / 12, "feet"),
  15529. default: true
  15530. },
  15531. ]
  15532. ))
  15533. characterMakers.push(() => makeCharacter(
  15534. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15535. {
  15536. anthro: {
  15537. height: math.unit(10 + 9 / 12, "feet"),
  15538. weight: math.unit(224, "lb"),
  15539. name: "Anthro",
  15540. image: {
  15541. source: "./media/characters/grottos/anthro.svg",
  15542. extra: 350 / 332,
  15543. bottom: 0.045
  15544. }
  15545. },
  15546. feral: {
  15547. height: math.unit(20 + 7 / 12, "feet"),
  15548. weight: math.unit(629, "lb"),
  15549. name: "Feral",
  15550. image: {
  15551. source: "./media/characters/grottos/feral.svg",
  15552. extra: 207 / 190,
  15553. bottom: 0.05
  15554. }
  15555. },
  15556. },
  15557. [
  15558. {
  15559. name: "Normal",
  15560. height: math.unit(10 + 9 / 12, "feet"),
  15561. default: true
  15562. },
  15563. ]
  15564. ))
  15565. characterMakers.push(() => makeCharacter(
  15566. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15567. {
  15568. anthro: {
  15569. height: math.unit(9 + 6 / 12, "feet"),
  15570. weight: math.unit(298, "lb"),
  15571. name: "Anthro",
  15572. image: {
  15573. source: "./media/characters/frifna/anthro.svg",
  15574. extra: 282 / 269,
  15575. bottom: 0.015
  15576. }
  15577. },
  15578. feral: {
  15579. height: math.unit(16 + 2 / 12, "feet"),
  15580. weight: math.unit(624, "lb"),
  15581. name: "Feral",
  15582. image: {
  15583. source: "./media/characters/frifna/feral.svg"
  15584. }
  15585. },
  15586. },
  15587. [
  15588. {
  15589. name: "Normal",
  15590. height: math.unit(9 + 6 / 12, "feet"),
  15591. default: true
  15592. },
  15593. ]
  15594. ))
  15595. characterMakers.push(() => makeCharacter(
  15596. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15597. {
  15598. front: {
  15599. height: math.unit(6 + 2 / 12, "feet"),
  15600. weight: math.unit(168, "lb"),
  15601. name: "Front",
  15602. image: {
  15603. source: "./media/characters/elise/front.svg",
  15604. extra: 276 / 271
  15605. }
  15606. },
  15607. },
  15608. [
  15609. {
  15610. name: "Normal",
  15611. height: math.unit(6 + 2 / 12, "feet"),
  15612. default: true
  15613. },
  15614. ]
  15615. ))
  15616. characterMakers.push(() => makeCharacter(
  15617. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15618. {
  15619. front: {
  15620. height: math.unit(5 + 10 / 12, "feet"),
  15621. weight: math.unit(210, "lb"),
  15622. name: "Front",
  15623. image: {
  15624. source: "./media/characters/glade/front.svg",
  15625. extra: 258 / 247,
  15626. bottom: 0.008
  15627. }
  15628. },
  15629. },
  15630. [
  15631. {
  15632. name: "Normal",
  15633. height: math.unit(5 + 10 / 12, "feet"),
  15634. default: true
  15635. },
  15636. ]
  15637. ))
  15638. characterMakers.push(() => makeCharacter(
  15639. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15640. {
  15641. front: {
  15642. height: math.unit(5 + 10 / 12, "feet"),
  15643. weight: math.unit(129, "lb"),
  15644. name: "Front",
  15645. image: {
  15646. source: "./media/characters/rina/front.svg",
  15647. extra: 266 / 255,
  15648. bottom: 0.005
  15649. }
  15650. },
  15651. },
  15652. [
  15653. {
  15654. name: "Normal",
  15655. height: math.unit(5 + 10 / 12, "feet"),
  15656. default: true
  15657. },
  15658. ]
  15659. ))
  15660. characterMakers.push(() => makeCharacter(
  15661. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15662. {
  15663. front: {
  15664. height: math.unit(6 + 1 / 12, "feet"),
  15665. weight: math.unit(192, "lb"),
  15666. name: "Front",
  15667. image: {
  15668. source: "./media/characters/veronica/front.svg",
  15669. extra: 319 / 309,
  15670. bottom: 0.005
  15671. }
  15672. },
  15673. },
  15674. [
  15675. {
  15676. name: "Normal",
  15677. height: math.unit(6 + 1 / 12, "feet"),
  15678. default: true
  15679. },
  15680. ]
  15681. ))
  15682. characterMakers.push(() => makeCharacter(
  15683. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15684. {
  15685. front: {
  15686. height: math.unit(9 + 3 / 12, "feet"),
  15687. weight: math.unit(1100, "lb"),
  15688. name: "Front",
  15689. image: {
  15690. source: "./media/characters/braxton/front.svg",
  15691. extra: 1057 / 984,
  15692. bottom: 0.05
  15693. }
  15694. },
  15695. },
  15696. [
  15697. {
  15698. name: "Normal",
  15699. height: math.unit(9 + 3 / 12, "feet")
  15700. },
  15701. {
  15702. name: "Giant",
  15703. height: math.unit(300, "feet"),
  15704. default: true
  15705. },
  15706. {
  15707. name: "Macro",
  15708. height: math.unit(700, "feet")
  15709. },
  15710. {
  15711. name: "Megamacro",
  15712. height: math.unit(6000, "feet")
  15713. },
  15714. ]
  15715. ))
  15716. characterMakers.push(() => makeCharacter(
  15717. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15718. {
  15719. front: {
  15720. height: math.unit(6 + 7 / 12, "feet"),
  15721. weight: math.unit(150, "lb"),
  15722. name: "Front",
  15723. image: {
  15724. source: "./media/characters/blue-feyonics/front.svg",
  15725. extra: 1403 / 1306,
  15726. bottom: 0.047
  15727. }
  15728. },
  15729. },
  15730. [
  15731. {
  15732. name: "Normal",
  15733. height: math.unit(6 + 7 / 12, "feet"),
  15734. default: true
  15735. },
  15736. ]
  15737. ))
  15738. characterMakers.push(() => makeCharacter(
  15739. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15740. {
  15741. front: {
  15742. height: math.unit(1.8, "meters"),
  15743. weight: math.unit(60, "kg"),
  15744. name: "Front",
  15745. image: {
  15746. source: "./media/characters/maxwell/front.svg",
  15747. extra: 2060 / 1873
  15748. }
  15749. },
  15750. },
  15751. [
  15752. {
  15753. name: "Micro",
  15754. height: math.unit(1, "mm")
  15755. },
  15756. {
  15757. name: "Normal",
  15758. height: math.unit(1.8, "meter"),
  15759. default: true
  15760. },
  15761. {
  15762. name: "Macro",
  15763. height: math.unit(30, "meters")
  15764. },
  15765. {
  15766. name: "Megamacro",
  15767. height: math.unit(10, "km")
  15768. },
  15769. ]
  15770. ))
  15771. characterMakers.push(() => makeCharacter(
  15772. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15773. {
  15774. front: {
  15775. height: math.unit(6, "feet"),
  15776. weight: math.unit(150, "lb"),
  15777. name: "Front",
  15778. image: {
  15779. source: "./media/characters/jack/front.svg",
  15780. extra: 1754 / 1640,
  15781. bottom: 0.01
  15782. }
  15783. },
  15784. },
  15785. [
  15786. {
  15787. name: "Normal",
  15788. height: math.unit(80000, "feet"),
  15789. default: true
  15790. },
  15791. {
  15792. name: "Max size",
  15793. height: math.unit(10, "lightyears")
  15794. },
  15795. ]
  15796. ))
  15797. characterMakers.push(() => makeCharacter(
  15798. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15799. {
  15800. urban: {
  15801. height: math.unit(5, "feet"),
  15802. weight: math.unit(240, "lb"),
  15803. name: "Urban",
  15804. image: {
  15805. source: "./media/characters/cafat/urban.svg",
  15806. extra: 1223/1126,
  15807. bottom: 205/1428
  15808. }
  15809. },
  15810. summer: {
  15811. height: math.unit(5, "feet"),
  15812. weight: math.unit(240, "lb"),
  15813. name: "Summer",
  15814. image: {
  15815. source: "./media/characters/cafat/summer.svg",
  15816. extra: 1223/1126,
  15817. bottom: 205/1428
  15818. }
  15819. },
  15820. winter: {
  15821. height: math.unit(5, "feet"),
  15822. weight: math.unit(240, "lb"),
  15823. name: "Winter",
  15824. image: {
  15825. source: "./media/characters/cafat/winter.svg",
  15826. extra: 1223/1126,
  15827. bottom: 205/1428
  15828. }
  15829. },
  15830. lingerie: {
  15831. height: math.unit(5, "feet"),
  15832. weight: math.unit(240, "lb"),
  15833. name: "Lingerie",
  15834. image: {
  15835. source: "./media/characters/cafat/lingerie.svg",
  15836. extra: 1223/1126,
  15837. bottom: 205/1428
  15838. }
  15839. },
  15840. upright: {
  15841. height: math.unit(6.3, "feet"),
  15842. weight: math.unit(240, "lb"),
  15843. name: "Upright",
  15844. image: {
  15845. source: "./media/characters/cafat/upright.svg",
  15846. bottom: 0.01
  15847. }
  15848. },
  15849. uprightFull: {
  15850. height: math.unit(6.3, "feet"),
  15851. weight: math.unit(240, "lb"),
  15852. name: "Upright (Full)",
  15853. image: {
  15854. source: "./media/characters/cafat/upright-full.svg",
  15855. bottom: 0.01
  15856. }
  15857. },
  15858. },
  15859. [
  15860. {
  15861. name: "Small",
  15862. height: math.unit(5, "feet"),
  15863. default: true
  15864. },
  15865. {
  15866. name: "Large",
  15867. height: math.unit(13, "feet")
  15868. },
  15869. ]
  15870. ))
  15871. characterMakers.push(() => makeCharacter(
  15872. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15873. {
  15874. front: {
  15875. height: math.unit(6, "feet"),
  15876. weight: math.unit(150, "lb"),
  15877. name: "Front",
  15878. image: {
  15879. source: "./media/characters/verin-raharra/front.svg",
  15880. extra: 5019 / 4835,
  15881. bottom: 0.023
  15882. }
  15883. },
  15884. },
  15885. [
  15886. {
  15887. name: "Normal",
  15888. height: math.unit(7 + 5 / 12, "feet"),
  15889. default: true
  15890. },
  15891. {
  15892. name: "Upsized",
  15893. height: math.unit(20, "feet")
  15894. },
  15895. ]
  15896. ))
  15897. characterMakers.push(() => makeCharacter(
  15898. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15899. {
  15900. front: {
  15901. height: math.unit(7, "feet"),
  15902. weight: math.unit(230, "lb"),
  15903. name: "Front",
  15904. image: {
  15905. source: "./media/characters/nakata/front.svg",
  15906. extra: 1.005,
  15907. bottom: 0.01
  15908. }
  15909. },
  15910. },
  15911. [
  15912. {
  15913. name: "Normal",
  15914. height: math.unit(7, "feet"),
  15915. default: true
  15916. },
  15917. {
  15918. name: "Big",
  15919. height: math.unit(14, "feet")
  15920. },
  15921. {
  15922. name: "Macro",
  15923. height: math.unit(400, "feet")
  15924. },
  15925. ]
  15926. ))
  15927. characterMakers.push(() => makeCharacter(
  15928. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15929. {
  15930. front: {
  15931. height: math.unit(4.91, "feet"),
  15932. weight: math.unit(100, "lb"),
  15933. name: "Front",
  15934. image: {
  15935. source: "./media/characters/lily/front.svg",
  15936. extra: 1585 / 1415,
  15937. bottom: 0.02
  15938. }
  15939. },
  15940. },
  15941. [
  15942. {
  15943. name: "Normal",
  15944. height: math.unit(4.91, "feet"),
  15945. default: true
  15946. },
  15947. ]
  15948. ))
  15949. characterMakers.push(() => makeCharacter(
  15950. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15951. {
  15952. laying: {
  15953. height: math.unit(4 + 4 / 12, "feet"),
  15954. weight: math.unit(600, "lb"),
  15955. name: "Laying",
  15956. image: {
  15957. source: "./media/characters/sheila/laying.svg",
  15958. extra: 1333 / 1265,
  15959. bottom: 0.16
  15960. }
  15961. },
  15962. },
  15963. [
  15964. {
  15965. name: "Normal",
  15966. height: math.unit(4 + 4 / 12, "feet"),
  15967. default: true
  15968. },
  15969. ]
  15970. ))
  15971. characterMakers.push(() => makeCharacter(
  15972. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15973. {
  15974. front: {
  15975. height: math.unit(6, "feet"),
  15976. weight: math.unit(190, "lb"),
  15977. name: "Front",
  15978. image: {
  15979. source: "./media/characters/sax/front.svg",
  15980. extra: 1187 / 973,
  15981. bottom: 0.042
  15982. }
  15983. },
  15984. },
  15985. [
  15986. {
  15987. name: "Micro",
  15988. height: math.unit(4, "inches"),
  15989. default: true
  15990. },
  15991. ]
  15992. ))
  15993. characterMakers.push(() => makeCharacter(
  15994. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15995. {
  15996. front: {
  15997. height: math.unit(6, "feet"),
  15998. weight: math.unit(150, "lb"),
  15999. name: "Front",
  16000. image: {
  16001. source: "./media/characters/pandora/front.svg",
  16002. extra: 2720 / 2556,
  16003. bottom: 0.015
  16004. }
  16005. },
  16006. back: {
  16007. height: math.unit(6, "feet"),
  16008. weight: math.unit(150, "lb"),
  16009. name: "Back",
  16010. image: {
  16011. source: "./media/characters/pandora/back.svg",
  16012. extra: 2720 / 2556,
  16013. bottom: 0.01
  16014. }
  16015. },
  16016. beans: {
  16017. height: math.unit(6 / 8, "feet"),
  16018. name: "Beans",
  16019. image: {
  16020. source: "./media/characters/pandora/beans.svg"
  16021. }
  16022. },
  16023. collar: {
  16024. height: math.unit(0.31, "feet"),
  16025. name: "Collar",
  16026. image: {
  16027. source: "./media/characters/pandora/collar.svg"
  16028. }
  16029. },
  16030. skirt: {
  16031. height: math.unit(6, "feet"),
  16032. weight: math.unit(150, "lb"),
  16033. name: "Skirt",
  16034. image: {
  16035. source: "./media/characters/pandora/skirt.svg",
  16036. extra: 1622 / 1525,
  16037. bottom: 0.015
  16038. }
  16039. },
  16040. hoodie: {
  16041. height: math.unit(6, "feet"),
  16042. weight: math.unit(150, "lb"),
  16043. name: "Hoodie",
  16044. image: {
  16045. source: "./media/characters/pandora/hoodie.svg",
  16046. extra: 1622 / 1525,
  16047. bottom: 0.015
  16048. }
  16049. },
  16050. casual: {
  16051. height: math.unit(6, "feet"),
  16052. weight: math.unit(150, "lb"),
  16053. name: "Casual",
  16054. image: {
  16055. source: "./media/characters/pandora/casual.svg",
  16056. extra: 1622 / 1525,
  16057. bottom: 0.015
  16058. }
  16059. },
  16060. },
  16061. [
  16062. {
  16063. name: "Normal",
  16064. height: math.unit(6, "feet")
  16065. },
  16066. {
  16067. name: "Big Steppy",
  16068. height: math.unit(1, "km"),
  16069. default: true
  16070. },
  16071. {
  16072. name: "Galactic Steppy",
  16073. height: math.unit(2, "gigameters")
  16074. },
  16075. ]
  16076. ))
  16077. characterMakers.push(() => makeCharacter(
  16078. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16079. {
  16080. side: {
  16081. height: math.unit(10, "feet"),
  16082. weight: math.unit(800, "kg"),
  16083. name: "Side",
  16084. image: {
  16085. source: "./media/characters/venio-darcony/side.svg",
  16086. extra: 1373 / 1003,
  16087. bottom: 0.037
  16088. }
  16089. },
  16090. front: {
  16091. height: math.unit(19, "feet"),
  16092. weight: math.unit(800, "kg"),
  16093. name: "Front",
  16094. image: {
  16095. source: "./media/characters/venio-darcony/front.svg"
  16096. }
  16097. },
  16098. back: {
  16099. height: math.unit(19, "feet"),
  16100. weight: math.unit(800, "kg"),
  16101. name: "Back",
  16102. image: {
  16103. source: "./media/characters/venio-darcony/back.svg"
  16104. }
  16105. },
  16106. sideNsfw: {
  16107. height: math.unit(10, "feet"),
  16108. weight: math.unit(800, "kg"),
  16109. name: "Side (NSFW)",
  16110. image: {
  16111. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16112. extra: 1373 / 1003,
  16113. bottom: 0.037
  16114. }
  16115. },
  16116. frontNsfw: {
  16117. height: math.unit(19, "feet"),
  16118. weight: math.unit(800, "kg"),
  16119. name: "Front (NSFW)",
  16120. image: {
  16121. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16122. }
  16123. },
  16124. backNsfw: {
  16125. height: math.unit(19, "feet"),
  16126. weight: math.unit(800, "kg"),
  16127. name: "Back (NSFW)",
  16128. image: {
  16129. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16130. }
  16131. },
  16132. sideArmored: {
  16133. height: math.unit(10, "feet"),
  16134. weight: math.unit(800, "kg"),
  16135. name: "Side (Armored)",
  16136. image: {
  16137. source: "./media/characters/venio-darcony/side-armored.svg",
  16138. extra: 1373 / 1003,
  16139. bottom: 0.037
  16140. }
  16141. },
  16142. frontArmored: {
  16143. height: math.unit(19, "feet"),
  16144. weight: math.unit(900, "kg"),
  16145. name: "Front (Armored)",
  16146. image: {
  16147. source: "./media/characters/venio-darcony/front-armored.svg"
  16148. }
  16149. },
  16150. backArmored: {
  16151. height: math.unit(19, "feet"),
  16152. weight: math.unit(900, "kg"),
  16153. name: "Back (Armored)",
  16154. image: {
  16155. source: "./media/characters/venio-darcony/back-armored.svg"
  16156. }
  16157. },
  16158. sword: {
  16159. height: math.unit(10, "feet"),
  16160. weight: math.unit(50, "lb"),
  16161. name: "Sword",
  16162. image: {
  16163. source: "./media/characters/venio-darcony/sword.svg"
  16164. }
  16165. },
  16166. },
  16167. [
  16168. {
  16169. name: "Normal",
  16170. height: math.unit(10, "feet")
  16171. },
  16172. {
  16173. name: "Macro",
  16174. height: math.unit(130, "feet"),
  16175. default: true
  16176. },
  16177. {
  16178. name: "Macro+",
  16179. height: math.unit(240, "feet")
  16180. },
  16181. ]
  16182. ))
  16183. characterMakers.push(() => makeCharacter(
  16184. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16185. {
  16186. front: {
  16187. height: math.unit(6, "feet"),
  16188. weight: math.unit(150, "lb"),
  16189. name: "Front",
  16190. image: {
  16191. source: "./media/characters/veski/front.svg",
  16192. extra: 1299 / 1225,
  16193. bottom: 0.04
  16194. }
  16195. },
  16196. back: {
  16197. height: math.unit(6, "feet"),
  16198. weight: math.unit(150, "lb"),
  16199. name: "Back",
  16200. image: {
  16201. source: "./media/characters/veski/back.svg",
  16202. extra: 1299 / 1225,
  16203. bottom: 0.008
  16204. }
  16205. },
  16206. maw: {
  16207. height: math.unit(1.5 * 1.21, "feet"),
  16208. name: "Maw",
  16209. image: {
  16210. source: "./media/characters/veski/maw.svg"
  16211. }
  16212. },
  16213. },
  16214. [
  16215. {
  16216. name: "Macro",
  16217. height: math.unit(2, "km"),
  16218. default: true
  16219. },
  16220. ]
  16221. ))
  16222. characterMakers.push(() => makeCharacter(
  16223. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16224. {
  16225. front: {
  16226. height: math.unit(5 + 7 / 12, "feet"),
  16227. name: "Front",
  16228. image: {
  16229. source: "./media/characters/isabelle/front.svg",
  16230. extra: 2130 / 1976,
  16231. bottom: 0.05
  16232. }
  16233. },
  16234. },
  16235. [
  16236. {
  16237. name: "Supermicro",
  16238. height: math.unit(10, "micrometers")
  16239. },
  16240. {
  16241. name: "Micro",
  16242. height: math.unit(1, "inch")
  16243. },
  16244. {
  16245. name: "Tiny",
  16246. height: math.unit(5, "inches")
  16247. },
  16248. {
  16249. name: "Standard",
  16250. height: math.unit(5 + 7 / 12, "inches")
  16251. },
  16252. {
  16253. name: "Macro",
  16254. height: math.unit(80, "meters"),
  16255. default: true
  16256. },
  16257. {
  16258. name: "Megamacro",
  16259. height: math.unit(250, "meters")
  16260. },
  16261. {
  16262. name: "Gigamacro",
  16263. height: math.unit(5, "km")
  16264. },
  16265. {
  16266. name: "Cosmic",
  16267. height: math.unit(2.5e6, "miles")
  16268. },
  16269. ]
  16270. ))
  16271. characterMakers.push(() => makeCharacter(
  16272. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16273. {
  16274. front: {
  16275. height: math.unit(6, "feet"),
  16276. weight: math.unit(150, "lb"),
  16277. name: "Front",
  16278. image: {
  16279. source: "./media/characters/hanzo/front.svg",
  16280. extra: 374 / 344,
  16281. bottom: 0.02
  16282. }
  16283. },
  16284. },
  16285. [
  16286. {
  16287. name: "Normal",
  16288. height: math.unit(8, "feet"),
  16289. default: true
  16290. },
  16291. ]
  16292. ))
  16293. characterMakers.push(() => makeCharacter(
  16294. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16295. {
  16296. front: {
  16297. height: math.unit(7, "feet"),
  16298. weight: math.unit(130, "lb"),
  16299. name: "Front",
  16300. image: {
  16301. source: "./media/characters/anna/front.svg",
  16302. extra: 169 / 145,
  16303. bottom: 0.06
  16304. }
  16305. },
  16306. full: {
  16307. height: math.unit(4.96, "feet"),
  16308. weight: math.unit(220, "lb"),
  16309. name: "Full",
  16310. image: {
  16311. source: "./media/characters/anna/full.svg",
  16312. extra: 138 / 114,
  16313. bottom: 0.15
  16314. }
  16315. },
  16316. tongue: {
  16317. height: math.unit(2.53, "feet"),
  16318. name: "Tongue",
  16319. image: {
  16320. source: "./media/characters/anna/tongue.svg"
  16321. }
  16322. },
  16323. },
  16324. [
  16325. {
  16326. name: "Normal",
  16327. height: math.unit(7, "feet"),
  16328. default: true
  16329. },
  16330. ]
  16331. ))
  16332. characterMakers.push(() => makeCharacter(
  16333. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16334. {
  16335. front: {
  16336. height: math.unit(7, "feet"),
  16337. weight: math.unit(150, "lb"),
  16338. name: "Front",
  16339. image: {
  16340. source: "./media/characters/ian-corvid/front.svg",
  16341. extra: 150 / 142,
  16342. bottom: 0.02
  16343. }
  16344. },
  16345. back: {
  16346. height: math.unit(7, "feet"),
  16347. weight: math.unit(150, "lb"),
  16348. name: "Back",
  16349. image: {
  16350. source: "./media/characters/ian-corvid/back.svg",
  16351. extra: 150 / 143,
  16352. bottom: 0.01
  16353. }
  16354. },
  16355. stomping: {
  16356. height: math.unit(7, "feet"),
  16357. weight: math.unit(150, "lb"),
  16358. name: "Stomping",
  16359. image: {
  16360. source: "./media/characters/ian-corvid/stomping.svg",
  16361. extra: 76 / 72
  16362. }
  16363. },
  16364. sitting: {
  16365. height: math.unit(7 / 1.8, "feet"),
  16366. weight: math.unit(150, "lb"),
  16367. name: "Sitting",
  16368. image: {
  16369. source: "./media/characters/ian-corvid/sitting.svg",
  16370. extra: 1400 / 1269,
  16371. bottom: 0.15
  16372. }
  16373. },
  16374. },
  16375. [
  16376. {
  16377. name: "Tiny Microw",
  16378. height: math.unit(1, "inch")
  16379. },
  16380. {
  16381. name: "Microw",
  16382. height: math.unit(6, "inches")
  16383. },
  16384. {
  16385. name: "Crow",
  16386. height: math.unit(7 + 1 / 12, "feet"),
  16387. default: true
  16388. },
  16389. {
  16390. name: "Macrow",
  16391. height: math.unit(176, "feet")
  16392. },
  16393. ]
  16394. ))
  16395. characterMakers.push(() => makeCharacter(
  16396. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16397. {
  16398. front: {
  16399. height: math.unit(5 + 7 / 12, "feet"),
  16400. weight: math.unit(147, "lb"),
  16401. name: "Front",
  16402. image: {
  16403. source: "./media/characters/natalie-kellon/front.svg",
  16404. extra: 1214 / 1141,
  16405. bottom: 0.02
  16406. }
  16407. },
  16408. },
  16409. [
  16410. {
  16411. name: "Micro",
  16412. height: math.unit(1 / 16, "inch")
  16413. },
  16414. {
  16415. name: "Tiny",
  16416. height: math.unit(4, "inches")
  16417. },
  16418. {
  16419. name: "Normal",
  16420. height: math.unit(5 + 7 / 12, "feet"),
  16421. default: true
  16422. },
  16423. {
  16424. name: "Amazon",
  16425. height: math.unit(12, "feet")
  16426. },
  16427. {
  16428. name: "Giantess",
  16429. height: math.unit(160, "meters")
  16430. },
  16431. {
  16432. name: "Titaness",
  16433. height: math.unit(800, "meters")
  16434. },
  16435. ]
  16436. ))
  16437. characterMakers.push(() => makeCharacter(
  16438. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16439. {
  16440. front: {
  16441. height: math.unit(6, "feet"),
  16442. weight: math.unit(150, "lb"),
  16443. name: "Front",
  16444. image: {
  16445. source: "./media/characters/alluria/front.svg",
  16446. extra: 806 / 738,
  16447. bottom: 0.01
  16448. }
  16449. },
  16450. side: {
  16451. height: math.unit(6, "feet"),
  16452. weight: math.unit(150, "lb"),
  16453. name: "Side",
  16454. image: {
  16455. source: "./media/characters/alluria/side.svg",
  16456. extra: 800 / 750,
  16457. }
  16458. },
  16459. back: {
  16460. height: math.unit(6, "feet"),
  16461. weight: math.unit(150, "lb"),
  16462. name: "Back",
  16463. image: {
  16464. source: "./media/characters/alluria/back.svg",
  16465. extra: 806 / 738,
  16466. }
  16467. },
  16468. frontMaid: {
  16469. height: math.unit(6, "feet"),
  16470. weight: math.unit(150, "lb"),
  16471. name: "Front (Maid)",
  16472. image: {
  16473. source: "./media/characters/alluria/front-maid.svg",
  16474. extra: 806 / 738,
  16475. bottom: 0.01
  16476. }
  16477. },
  16478. sideMaid: {
  16479. height: math.unit(6, "feet"),
  16480. weight: math.unit(150, "lb"),
  16481. name: "Side (Maid)",
  16482. image: {
  16483. source: "./media/characters/alluria/side-maid.svg",
  16484. extra: 800 / 750,
  16485. bottom: 0.005
  16486. }
  16487. },
  16488. backMaid: {
  16489. height: math.unit(6, "feet"),
  16490. weight: math.unit(150, "lb"),
  16491. name: "Back (Maid)",
  16492. image: {
  16493. source: "./media/characters/alluria/back-maid.svg",
  16494. extra: 806 / 738,
  16495. }
  16496. },
  16497. },
  16498. [
  16499. {
  16500. name: "Micro",
  16501. height: math.unit(6, "inches"),
  16502. default: true
  16503. },
  16504. ]
  16505. ))
  16506. characterMakers.push(() => makeCharacter(
  16507. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16508. {
  16509. front: {
  16510. height: math.unit(6, "feet"),
  16511. weight: math.unit(150, "lb"),
  16512. name: "Front",
  16513. image: {
  16514. source: "./media/characters/kyle/front.svg",
  16515. extra: 1069 / 962,
  16516. bottom: 77.228 / 1727.45
  16517. }
  16518. },
  16519. },
  16520. [
  16521. {
  16522. name: "Macro",
  16523. height: math.unit(150, "feet"),
  16524. default: true
  16525. },
  16526. ]
  16527. ))
  16528. characterMakers.push(() => makeCharacter(
  16529. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16530. {
  16531. front: {
  16532. height: math.unit(6, "feet"),
  16533. weight: math.unit(300, "lb"),
  16534. name: "Front",
  16535. image: {
  16536. source: "./media/characters/duncan/front.svg",
  16537. extra: 1650 / 1482,
  16538. bottom: 0.05
  16539. }
  16540. },
  16541. },
  16542. [
  16543. {
  16544. name: "Macro",
  16545. height: math.unit(100, "feet"),
  16546. default: true
  16547. },
  16548. ]
  16549. ))
  16550. characterMakers.push(() => makeCharacter(
  16551. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16552. {
  16553. front: {
  16554. height: math.unit(5 + 4 / 12, "feet"),
  16555. weight: math.unit(220, "lb"),
  16556. name: "Front",
  16557. image: {
  16558. source: "./media/characters/memory/front.svg",
  16559. extra: 3641 / 3545,
  16560. bottom: 0.03
  16561. }
  16562. },
  16563. back: {
  16564. height: math.unit(5 + 4 / 12, "feet"),
  16565. weight: math.unit(220, "lb"),
  16566. name: "Back",
  16567. image: {
  16568. source: "./media/characters/memory/back.svg",
  16569. extra: 3641 / 3545,
  16570. bottom: 0.025
  16571. }
  16572. },
  16573. frontSkirt: {
  16574. height: math.unit(5 + 4 / 12, "feet"),
  16575. weight: math.unit(220, "lb"),
  16576. name: "Front (Skirt)",
  16577. image: {
  16578. source: "./media/characters/memory/front-skirt.svg",
  16579. extra: 3641 / 3545,
  16580. bottom: 0.03
  16581. }
  16582. },
  16583. frontDress: {
  16584. height: math.unit(5 + 4 / 12, "feet"),
  16585. weight: math.unit(220, "lb"),
  16586. name: "Front (Dress)",
  16587. image: {
  16588. source: "./media/characters/memory/front-dress.svg",
  16589. extra: 3641 / 3545,
  16590. bottom: 0.03
  16591. }
  16592. },
  16593. },
  16594. [
  16595. {
  16596. name: "Micro",
  16597. height: math.unit(6, "inches"),
  16598. default: true
  16599. },
  16600. {
  16601. name: "Normal",
  16602. height: math.unit(5 + 4 / 12, "feet")
  16603. },
  16604. ]
  16605. ))
  16606. characterMakers.push(() => makeCharacter(
  16607. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16608. {
  16609. front: {
  16610. height: math.unit(4 + 11 / 12, "feet"),
  16611. weight: math.unit(100, "lb"),
  16612. name: "Front",
  16613. image: {
  16614. source: "./media/characters/luno/front.svg",
  16615. extra: 1535 / 1487,
  16616. bottom: 0.03
  16617. }
  16618. },
  16619. },
  16620. [
  16621. {
  16622. name: "Micro",
  16623. height: math.unit(3, "inches")
  16624. },
  16625. {
  16626. name: "Normal",
  16627. height: math.unit(4 + 11 / 12, "feet"),
  16628. default: true
  16629. },
  16630. {
  16631. name: "Macro",
  16632. height: math.unit(300, "feet")
  16633. },
  16634. {
  16635. name: "Megamacro",
  16636. height: math.unit(700, "miles")
  16637. },
  16638. ]
  16639. ))
  16640. characterMakers.push(() => makeCharacter(
  16641. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16642. {
  16643. front: {
  16644. height: math.unit(6 + 2 / 12, "feet"),
  16645. weight: math.unit(170, "lb"),
  16646. name: "Front",
  16647. image: {
  16648. source: "./media/characters/jamesy/front.svg",
  16649. extra: 440 / 382,
  16650. bottom: 0.005
  16651. }
  16652. },
  16653. },
  16654. [
  16655. {
  16656. name: "Micro",
  16657. height: math.unit(3, "inches")
  16658. },
  16659. {
  16660. name: "Normal",
  16661. height: math.unit(6 + 2 / 12, "feet"),
  16662. default: true
  16663. },
  16664. {
  16665. name: "Macro",
  16666. height: math.unit(300, "feet")
  16667. },
  16668. {
  16669. name: "Megamacro",
  16670. height: math.unit(700, "miles")
  16671. },
  16672. ]
  16673. ))
  16674. characterMakers.push(() => makeCharacter(
  16675. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16676. {
  16677. front: {
  16678. height: math.unit(6, "feet"),
  16679. weight: math.unit(160, "lb"),
  16680. name: "Front",
  16681. image: {
  16682. source: "./media/characters/mark/front.svg",
  16683. extra: 3300 / 3100,
  16684. bottom: 136.42 / 3440.47
  16685. }
  16686. },
  16687. },
  16688. [
  16689. {
  16690. name: "Macro",
  16691. height: math.unit(120, "meters")
  16692. },
  16693. {
  16694. name: "Bigger Macro",
  16695. height: math.unit(350, "meters")
  16696. },
  16697. {
  16698. name: "Megamacro",
  16699. height: math.unit(8, "km"),
  16700. default: true
  16701. },
  16702. {
  16703. name: "Continental",
  16704. height: math.unit(4550, "km")
  16705. },
  16706. {
  16707. name: "Planetary",
  16708. height: math.unit(65000, "km")
  16709. },
  16710. ]
  16711. ))
  16712. characterMakers.push(() => makeCharacter(
  16713. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16714. {
  16715. front: {
  16716. height: math.unit(6, "feet"),
  16717. weight: math.unit(400, "lb"),
  16718. name: "Front",
  16719. image: {
  16720. source: "./media/characters/mac/front.svg",
  16721. extra: 1048 / 987.7,
  16722. bottom: 60 / 1107.6,
  16723. }
  16724. },
  16725. },
  16726. [
  16727. {
  16728. name: "Macro",
  16729. height: math.unit(500, "feet"),
  16730. default: true
  16731. },
  16732. ]
  16733. ))
  16734. characterMakers.push(() => makeCharacter(
  16735. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16736. {
  16737. front: {
  16738. height: math.unit(5 + 2 / 12, "feet"),
  16739. weight: math.unit(190, "lb"),
  16740. name: "Front",
  16741. image: {
  16742. source: "./media/characters/bari/front.svg",
  16743. extra: 3156 / 2880,
  16744. bottom: 0.03
  16745. }
  16746. },
  16747. back: {
  16748. height: math.unit(5 + 2 / 12, "feet"),
  16749. weight: math.unit(190, "lb"),
  16750. name: "Back",
  16751. image: {
  16752. source: "./media/characters/bari/back.svg",
  16753. extra: 3260 / 2834,
  16754. bottom: 0.025
  16755. }
  16756. },
  16757. frontPlush: {
  16758. height: math.unit(5 + 2 / 12, "feet"),
  16759. weight: math.unit(190, "lb"),
  16760. name: "Front (Plush)",
  16761. image: {
  16762. source: "./media/characters/bari/front-plush.svg",
  16763. extra: 1112 / 1061,
  16764. bottom: 0.002
  16765. }
  16766. },
  16767. },
  16768. [
  16769. {
  16770. name: "Micro",
  16771. height: math.unit(3, "inches")
  16772. },
  16773. {
  16774. name: "Normal",
  16775. height: math.unit(5 + 2 / 12, "feet"),
  16776. default: true
  16777. },
  16778. {
  16779. name: "Macro",
  16780. height: math.unit(20, "feet")
  16781. },
  16782. ]
  16783. ))
  16784. characterMakers.push(() => makeCharacter(
  16785. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16786. {
  16787. front: {
  16788. height: math.unit(6 + 1 / 12, "feet"),
  16789. weight: math.unit(275, "lb"),
  16790. name: "Front",
  16791. image: {
  16792. source: "./media/characters/hunter-misha-raven/front.svg"
  16793. }
  16794. },
  16795. },
  16796. [
  16797. {
  16798. name: "Mortal",
  16799. height: math.unit(6 + 1 / 12, "feet")
  16800. },
  16801. {
  16802. name: "Divine",
  16803. height: math.unit(1.12134e34, "parsecs"),
  16804. default: true
  16805. },
  16806. ]
  16807. ))
  16808. characterMakers.push(() => makeCharacter(
  16809. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16810. {
  16811. front: {
  16812. height: math.unit(6 + 3 / 12, "feet"),
  16813. weight: math.unit(220, "lb"),
  16814. name: "Front",
  16815. image: {
  16816. source: "./media/characters/max-calore/front.svg",
  16817. extra: 1700 / 1648,
  16818. bottom: 0.01
  16819. }
  16820. },
  16821. back: {
  16822. height: math.unit(6 + 3 / 12, "feet"),
  16823. weight: math.unit(220, "lb"),
  16824. name: "Back",
  16825. image: {
  16826. source: "./media/characters/max-calore/back.svg",
  16827. extra: 1700 / 1648,
  16828. bottom: 0.01
  16829. }
  16830. },
  16831. },
  16832. [
  16833. {
  16834. name: "Normal",
  16835. height: math.unit(6 + 3 / 12, "feet"),
  16836. default: true
  16837. },
  16838. ]
  16839. ))
  16840. characterMakers.push(() => makeCharacter(
  16841. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16842. {
  16843. side: {
  16844. height: math.unit(2 + 8 / 12, "feet"),
  16845. weight: math.unit(99, "lb"),
  16846. name: "Side",
  16847. image: {
  16848. source: "./media/characters/aspen/side.svg",
  16849. extra: 152 / 138,
  16850. bottom: 0.032
  16851. }
  16852. },
  16853. },
  16854. [
  16855. {
  16856. name: "Normal",
  16857. height: math.unit(2 + 8 / 12, "feet"),
  16858. default: true
  16859. },
  16860. ]
  16861. ))
  16862. characterMakers.push(() => makeCharacter(
  16863. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16864. {
  16865. side: {
  16866. height: math.unit(3 + 2 / 12, "feet"),
  16867. weight: math.unit(224, "lb"),
  16868. name: "Side",
  16869. image: {
  16870. source: "./media/characters/sheila-feral-wolf/side.svg",
  16871. extra: 179 / 166,
  16872. bottom: 0.03
  16873. }
  16874. },
  16875. },
  16876. [
  16877. {
  16878. name: "Normal",
  16879. height: math.unit(3 + 2 / 12, "feet"),
  16880. default: true
  16881. },
  16882. ]
  16883. ))
  16884. characterMakers.push(() => makeCharacter(
  16885. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16886. {
  16887. side: {
  16888. height: math.unit(1 + 9 / 12, "feet"),
  16889. weight: math.unit(38, "lb"),
  16890. name: "Side",
  16891. image: {
  16892. source: "./media/characters/michelle/side.svg",
  16893. extra: 147 / 136.7,
  16894. bottom: 0.03
  16895. }
  16896. },
  16897. },
  16898. [
  16899. {
  16900. name: "Normal",
  16901. height: math.unit(1 + 9 / 12, "feet"),
  16902. default: true
  16903. },
  16904. ]
  16905. ))
  16906. characterMakers.push(() => makeCharacter(
  16907. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16908. {
  16909. front: {
  16910. height: math.unit(1 + 1 / 12, "feet"),
  16911. weight: math.unit(18, "lb"),
  16912. name: "Front",
  16913. image: {
  16914. source: "./media/characters/nino/front.svg"
  16915. }
  16916. },
  16917. },
  16918. [
  16919. {
  16920. name: "Normal",
  16921. height: math.unit(1 + 1 / 12, "feet"),
  16922. default: true
  16923. },
  16924. ]
  16925. ))
  16926. characterMakers.push(() => makeCharacter(
  16927. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16928. {
  16929. front: {
  16930. height: math.unit(1, "feet"),
  16931. weight: math.unit(16, "lb"),
  16932. name: "Front",
  16933. image: {
  16934. source: "./media/characters/viola/front.svg"
  16935. }
  16936. },
  16937. },
  16938. [
  16939. {
  16940. name: "Normal",
  16941. height: math.unit(1, "feet"),
  16942. default: true
  16943. },
  16944. ]
  16945. ))
  16946. characterMakers.push(() => makeCharacter(
  16947. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16948. {
  16949. front: {
  16950. height: math.unit(6 + 5 / 12, "feet"),
  16951. weight: math.unit(580, "lb"),
  16952. name: "Front",
  16953. image: {
  16954. source: "./media/characters/atlas/front.svg",
  16955. extra: 298.5 / 290,
  16956. bottom: 0.015
  16957. }
  16958. },
  16959. },
  16960. [
  16961. {
  16962. name: "Normal",
  16963. height: math.unit(6 + 5 / 12, "feet"),
  16964. default: true
  16965. },
  16966. ]
  16967. ))
  16968. characterMakers.push(() => makeCharacter(
  16969. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16970. {
  16971. side: {
  16972. height: math.unit(1 + 10 / 12, "feet"),
  16973. weight: math.unit(25, "lb"),
  16974. name: "Side",
  16975. image: {
  16976. source: "./media/characters/davy/side.svg",
  16977. extra: 200 / 170,
  16978. bottom: 0.01
  16979. }
  16980. },
  16981. },
  16982. [
  16983. {
  16984. name: "Normal",
  16985. height: math.unit(1 + 10 / 12, "feet"),
  16986. default: true
  16987. },
  16988. ]
  16989. ))
  16990. characterMakers.push(() => makeCharacter(
  16991. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16992. {
  16993. side: {
  16994. height: math.unit(4 + 8 / 12, "feet"),
  16995. weight: math.unit(166, "lb"),
  16996. name: "Side",
  16997. image: {
  16998. source: "./media/characters/fiona/side.svg",
  16999. extra: 232 / 220,
  17000. bottom: 0.03
  17001. }
  17002. },
  17003. },
  17004. [
  17005. {
  17006. name: "Normal",
  17007. height: math.unit(4 + 8 / 12, "feet"),
  17008. default: true
  17009. },
  17010. ]
  17011. ))
  17012. characterMakers.push(() => makeCharacter(
  17013. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17014. {
  17015. front: {
  17016. height: math.unit(2, "feet"),
  17017. weight: math.unit(62, "lb"),
  17018. name: "Front",
  17019. image: {
  17020. source: "./media/characters/lyla/front.svg",
  17021. bottom: 0.1
  17022. }
  17023. },
  17024. },
  17025. [
  17026. {
  17027. name: "Normal",
  17028. height: math.unit(2, "feet"),
  17029. default: true
  17030. },
  17031. ]
  17032. ))
  17033. characterMakers.push(() => makeCharacter(
  17034. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17035. {
  17036. side: {
  17037. height: math.unit(1.8, "feet"),
  17038. weight: math.unit(44, "lb"),
  17039. name: "Side",
  17040. image: {
  17041. source: "./media/characters/perseus/side.svg",
  17042. bottom: 0.21
  17043. }
  17044. },
  17045. },
  17046. [
  17047. {
  17048. name: "Normal",
  17049. height: math.unit(1.8, "feet"),
  17050. default: true
  17051. },
  17052. ]
  17053. ))
  17054. characterMakers.push(() => makeCharacter(
  17055. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17056. {
  17057. side: {
  17058. height: math.unit(4 + 2 / 12, "feet"),
  17059. weight: math.unit(20, "lb"),
  17060. name: "Side",
  17061. image: {
  17062. source: "./media/characters/remus/side.svg"
  17063. }
  17064. },
  17065. },
  17066. [
  17067. {
  17068. name: "Normal",
  17069. height: math.unit(4 + 2 / 12, "feet"),
  17070. default: true
  17071. },
  17072. ]
  17073. ))
  17074. characterMakers.push(() => makeCharacter(
  17075. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17076. {
  17077. front: {
  17078. height: math.unit(4 + 11 / 12, "feet"),
  17079. weight: math.unit(114, "lb"),
  17080. name: "Front",
  17081. image: {
  17082. source: "./media/characters/raf/front.svg",
  17083. bottom: 20.5 / 1863
  17084. }
  17085. },
  17086. side: {
  17087. height: math.unit(4 + 11 / 12, "feet"),
  17088. weight: math.unit(114, "lb"),
  17089. name: "Side",
  17090. image: {
  17091. source: "./media/characters/raf/side.svg",
  17092. bottom: 22 / 1822
  17093. }
  17094. },
  17095. },
  17096. [
  17097. {
  17098. name: "Micro",
  17099. height: math.unit(2, "inches")
  17100. },
  17101. {
  17102. name: "Normal",
  17103. height: math.unit(4 + 11 / 12, "feet"),
  17104. default: true
  17105. },
  17106. {
  17107. name: "Macro",
  17108. height: math.unit(70, "feet")
  17109. },
  17110. ]
  17111. ))
  17112. characterMakers.push(() => makeCharacter(
  17113. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17114. {
  17115. front: {
  17116. height: math.unit(1.5, "meters"),
  17117. weight: math.unit(68, "kg"),
  17118. name: "Front",
  17119. image: {
  17120. source: "./media/characters/liam-einarr/front.svg",
  17121. extra: 2822 / 2666
  17122. }
  17123. },
  17124. back: {
  17125. height: math.unit(1.5, "meters"),
  17126. weight: math.unit(68, "kg"),
  17127. name: "Back",
  17128. image: {
  17129. source: "./media/characters/liam-einarr/back.svg",
  17130. extra: 2822 / 2666,
  17131. bottom: 0.015
  17132. }
  17133. },
  17134. },
  17135. [
  17136. {
  17137. name: "Normal",
  17138. height: math.unit(1.5, "meters"),
  17139. default: true
  17140. },
  17141. {
  17142. name: "Macro",
  17143. height: math.unit(150, "meters")
  17144. },
  17145. {
  17146. name: "Megamacro",
  17147. height: math.unit(35, "km")
  17148. },
  17149. ]
  17150. ))
  17151. characterMakers.push(() => makeCharacter(
  17152. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17153. {
  17154. front: {
  17155. height: math.unit(6, "feet"),
  17156. weight: math.unit(75, "kg"),
  17157. name: "Front",
  17158. image: {
  17159. source: "./media/characters/linda/front.svg",
  17160. extra: 930 / 874,
  17161. bottom: 0.004
  17162. }
  17163. },
  17164. },
  17165. [
  17166. {
  17167. name: "Normal",
  17168. height: math.unit(6, "feet"),
  17169. default: true
  17170. },
  17171. ]
  17172. ))
  17173. characterMakers.push(() => makeCharacter(
  17174. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17175. {
  17176. front: {
  17177. height: math.unit(6 + 8 / 12, "feet"),
  17178. weight: math.unit(220, "lb"),
  17179. name: "Front",
  17180. image: {
  17181. source: "./media/characters/caylex/front.svg",
  17182. extra: 821 / 772,
  17183. bottom: 0.07
  17184. }
  17185. },
  17186. back: {
  17187. height: math.unit(6 + 8 / 12, "feet"),
  17188. weight: math.unit(220, "lb"),
  17189. name: "Back",
  17190. image: {
  17191. source: "./media/characters/caylex/back.svg",
  17192. extra: 821 / 772,
  17193. bottom: 0.022
  17194. }
  17195. },
  17196. hand: {
  17197. height: math.unit(1.25, "feet"),
  17198. name: "Hand",
  17199. image: {
  17200. source: "./media/characters/caylex/hand.svg"
  17201. }
  17202. },
  17203. foot: {
  17204. height: math.unit(1.6, "feet"),
  17205. name: "Foot",
  17206. image: {
  17207. source: "./media/characters/caylex/foot.svg"
  17208. }
  17209. },
  17210. armored: {
  17211. height: math.unit(6 + 8 / 12, "feet"),
  17212. weight: math.unit(250, "lb"),
  17213. name: "Armored",
  17214. image: {
  17215. source: "./media/characters/caylex/armored.svg",
  17216. extra: 1420 / 1310,
  17217. bottom: 0.045
  17218. }
  17219. },
  17220. },
  17221. [
  17222. {
  17223. name: "Normal",
  17224. height: math.unit(6 + 8 / 12, "feet"),
  17225. default: true
  17226. },
  17227. {
  17228. name: "Normal+",
  17229. height: math.unit(12, "feet")
  17230. },
  17231. ]
  17232. ))
  17233. characterMakers.push(() => makeCharacter(
  17234. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17235. {
  17236. front: {
  17237. height: math.unit(7 + 6 / 12, "feet"),
  17238. weight: math.unit(288, "lb"),
  17239. name: "Front",
  17240. image: {
  17241. source: "./media/characters/alana/front.svg",
  17242. extra: 679 / 653,
  17243. bottom: 22.5 / 701
  17244. }
  17245. },
  17246. },
  17247. [
  17248. {
  17249. name: "Normal",
  17250. height: math.unit(7 + 6 / 12, "feet")
  17251. },
  17252. {
  17253. name: "Large",
  17254. height: math.unit(50, "feet")
  17255. },
  17256. {
  17257. name: "Macro",
  17258. height: math.unit(100, "feet"),
  17259. default: true
  17260. },
  17261. {
  17262. name: "Macro+",
  17263. height: math.unit(200, "feet")
  17264. },
  17265. ]
  17266. ))
  17267. characterMakers.push(() => makeCharacter(
  17268. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17269. {
  17270. front: {
  17271. height: math.unit(6 + 1 / 12, "feet"),
  17272. weight: math.unit(210, "lb"),
  17273. name: "Front",
  17274. image: {
  17275. source: "./media/characters/hasani/front.svg",
  17276. extra: 244 / 232,
  17277. bottom: 0.01
  17278. }
  17279. },
  17280. back: {
  17281. height: math.unit(6 + 1 / 12, "feet"),
  17282. weight: math.unit(210, "lb"),
  17283. name: "Back",
  17284. image: {
  17285. source: "./media/characters/hasani/back.svg",
  17286. extra: 244 / 232,
  17287. bottom: 0.01
  17288. }
  17289. },
  17290. },
  17291. [
  17292. {
  17293. name: "Normal",
  17294. height: math.unit(6 + 1 / 12, "feet")
  17295. },
  17296. {
  17297. name: "Macro",
  17298. height: math.unit(175, "feet"),
  17299. default: true
  17300. },
  17301. ]
  17302. ))
  17303. characterMakers.push(() => makeCharacter(
  17304. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17305. {
  17306. front: {
  17307. height: math.unit(1.82, "meters"),
  17308. weight: math.unit(140, "lb"),
  17309. name: "Front",
  17310. image: {
  17311. source: "./media/characters/nita/front.svg",
  17312. extra: 2473 / 2363,
  17313. bottom: 0.01
  17314. }
  17315. },
  17316. },
  17317. [
  17318. {
  17319. name: "Normal",
  17320. height: math.unit(1.82, "m")
  17321. },
  17322. {
  17323. name: "Macro",
  17324. height: math.unit(300, "m")
  17325. },
  17326. {
  17327. name: "Mistake Canon",
  17328. height: math.unit(0.5, "miles"),
  17329. default: true
  17330. },
  17331. {
  17332. name: "Big Mistake",
  17333. height: math.unit(13, "miles")
  17334. },
  17335. {
  17336. name: "Playing God",
  17337. height: math.unit(2450, "miles")
  17338. },
  17339. ]
  17340. ))
  17341. characterMakers.push(() => makeCharacter(
  17342. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17343. {
  17344. front: {
  17345. height: math.unit(4, "feet"),
  17346. weight: math.unit(120, "lb"),
  17347. name: "Front",
  17348. image: {
  17349. source: "./media/characters/shiriko/front.svg",
  17350. extra: 970/934,
  17351. bottom: 5/975
  17352. }
  17353. },
  17354. },
  17355. [
  17356. {
  17357. name: "Normal",
  17358. height: math.unit(4, "feet"),
  17359. default: true
  17360. },
  17361. ]
  17362. ))
  17363. characterMakers.push(() => makeCharacter(
  17364. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17365. {
  17366. front: {
  17367. height: math.unit(6, "feet"),
  17368. name: "front",
  17369. image: {
  17370. source: "./media/characters/deja/front.svg",
  17371. extra: 926 / 840,
  17372. bottom: 0.07
  17373. }
  17374. },
  17375. },
  17376. [
  17377. {
  17378. name: "Planck Length",
  17379. height: math.unit(1.6e-35, "meters")
  17380. },
  17381. {
  17382. name: "Normal",
  17383. height: math.unit(30.48, "meters"),
  17384. default: true
  17385. },
  17386. {
  17387. name: "Universal",
  17388. height: math.unit(8.8e26, "meters")
  17389. },
  17390. ]
  17391. ))
  17392. characterMakers.push(() => makeCharacter(
  17393. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17394. {
  17395. side: {
  17396. height: math.unit(8, "feet"),
  17397. weight: math.unit(6300, "lb"),
  17398. name: "Side",
  17399. image: {
  17400. source: "./media/characters/anima/side.svg",
  17401. bottom: 0.035
  17402. }
  17403. },
  17404. },
  17405. [
  17406. {
  17407. name: "Normal",
  17408. height: math.unit(8, "feet"),
  17409. default: true
  17410. },
  17411. ]
  17412. ))
  17413. characterMakers.push(() => makeCharacter(
  17414. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17415. {
  17416. front: {
  17417. height: math.unit(8, "feet"),
  17418. weight: math.unit(350, "lb"),
  17419. name: "Front",
  17420. image: {
  17421. source: "./media/characters/bianca/front.svg",
  17422. extra: 234 / 225,
  17423. bottom: 0.03
  17424. }
  17425. },
  17426. },
  17427. [
  17428. {
  17429. name: "Normal",
  17430. height: math.unit(8, "feet"),
  17431. default: true
  17432. },
  17433. ]
  17434. ))
  17435. characterMakers.push(() => makeCharacter(
  17436. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17437. {
  17438. front: {
  17439. height: math.unit(6, "feet"),
  17440. weight: math.unit(150, "lb"),
  17441. name: "Front",
  17442. image: {
  17443. source: "./media/characters/adinia/front.svg",
  17444. extra: 1845 / 1672,
  17445. bottom: 0.02
  17446. }
  17447. },
  17448. back: {
  17449. height: math.unit(6, "feet"),
  17450. weight: math.unit(150, "lb"),
  17451. name: "Back",
  17452. image: {
  17453. source: "./media/characters/adinia/back.svg",
  17454. extra: 1845 / 1672,
  17455. bottom: 0.002
  17456. }
  17457. },
  17458. },
  17459. [
  17460. {
  17461. name: "Normal",
  17462. height: math.unit(11 + 5 / 12, "feet"),
  17463. default: true
  17464. },
  17465. ]
  17466. ))
  17467. characterMakers.push(() => makeCharacter(
  17468. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17469. {
  17470. front: {
  17471. height: math.unit(3, "meters"),
  17472. weight: math.unit(200, "kg"),
  17473. name: "Front",
  17474. image: {
  17475. source: "./media/characters/lykasa/front.svg",
  17476. extra: 1076 / 976,
  17477. bottom: 0.06
  17478. }
  17479. },
  17480. },
  17481. [
  17482. {
  17483. name: "Normal",
  17484. height: math.unit(3, "meters")
  17485. },
  17486. {
  17487. name: "Kaiju",
  17488. height: math.unit(120, "meters"),
  17489. default: true
  17490. },
  17491. {
  17492. name: "Mega Kaiju",
  17493. height: math.unit(240, "km")
  17494. },
  17495. {
  17496. name: "Giga Kaiju",
  17497. height: math.unit(400, "megameters")
  17498. },
  17499. {
  17500. name: "Tera Kaiju",
  17501. height: math.unit(800, "gigameters")
  17502. },
  17503. {
  17504. name: "Kaiju Dragon Goddess",
  17505. height: math.unit(26, "zettaparsecs")
  17506. },
  17507. ]
  17508. ))
  17509. characterMakers.push(() => makeCharacter(
  17510. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17511. {
  17512. side: {
  17513. height: math.unit(283 / 124 * 6, "feet"),
  17514. weight: math.unit(35000, "lb"),
  17515. name: "Side",
  17516. image: {
  17517. source: "./media/characters/malfaren/side.svg",
  17518. extra: 2500 / 1010,
  17519. bottom: 0.01
  17520. }
  17521. },
  17522. front: {
  17523. height: math.unit(22.36, "feet"),
  17524. weight: math.unit(35000, "lb"),
  17525. name: "Front",
  17526. image: {
  17527. source: "./media/characters/malfaren/front.svg",
  17528. extra: 1631 / 1476,
  17529. bottom: 0.01
  17530. }
  17531. },
  17532. maw: {
  17533. height: math.unit(6.9, "feet"),
  17534. name: "Maw",
  17535. image: {
  17536. source: "./media/characters/malfaren/maw.svg"
  17537. }
  17538. },
  17539. },
  17540. [
  17541. {
  17542. name: "Big",
  17543. height: math.unit(283 / 162 * 6, "feet"),
  17544. },
  17545. {
  17546. name: "Bigger",
  17547. height: math.unit(283 / 124 * 6, "feet")
  17548. },
  17549. {
  17550. name: "Massive",
  17551. height: math.unit(283 / 92 * 6, "feet"),
  17552. default: true
  17553. },
  17554. {
  17555. name: "👀💦",
  17556. height: math.unit(283 / 73 * 6, "feet"),
  17557. },
  17558. ]
  17559. ))
  17560. characterMakers.push(() => makeCharacter(
  17561. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17562. {
  17563. front: {
  17564. height: math.unit(1.7, "m"),
  17565. weight: math.unit(70, "kg"),
  17566. name: "Front",
  17567. image: {
  17568. source: "./media/characters/kernel/front.svg",
  17569. extra: 222 / 210,
  17570. bottom: 0.007
  17571. }
  17572. },
  17573. },
  17574. [
  17575. {
  17576. name: "Nano",
  17577. height: math.unit(17, "micrometers")
  17578. },
  17579. {
  17580. name: "Micro",
  17581. height: math.unit(1.7, "mm")
  17582. },
  17583. {
  17584. name: "Small",
  17585. height: math.unit(1.7, "cm")
  17586. },
  17587. {
  17588. name: "Normal",
  17589. height: math.unit(1.7, "m"),
  17590. default: true
  17591. },
  17592. ]
  17593. ))
  17594. characterMakers.push(() => makeCharacter(
  17595. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17596. {
  17597. front: {
  17598. height: math.unit(1.75, "meters"),
  17599. weight: math.unit(65, "kg"),
  17600. name: "Front",
  17601. image: {
  17602. source: "./media/characters/jayne-folest/front.svg",
  17603. extra: 2115 / 2007,
  17604. bottom: 0.02
  17605. }
  17606. },
  17607. back: {
  17608. height: math.unit(1.75, "meters"),
  17609. weight: math.unit(65, "kg"),
  17610. name: "Back",
  17611. image: {
  17612. source: "./media/characters/jayne-folest/back.svg",
  17613. extra: 2115 / 2007,
  17614. bottom: 0.005
  17615. }
  17616. },
  17617. frontClothed: {
  17618. height: math.unit(1.75, "meters"),
  17619. weight: math.unit(65, "kg"),
  17620. name: "Front (Clothed)",
  17621. image: {
  17622. source: "./media/characters/jayne-folest/front-clothed.svg",
  17623. extra: 2115 / 2007,
  17624. bottom: 0.035
  17625. }
  17626. },
  17627. hand: {
  17628. height: math.unit(1 / 1.260, "feet"),
  17629. name: "Hand",
  17630. image: {
  17631. source: "./media/characters/jayne-folest/hand.svg"
  17632. }
  17633. },
  17634. foot: {
  17635. height: math.unit(1 / 0.918, "feet"),
  17636. name: "Foot",
  17637. image: {
  17638. source: "./media/characters/jayne-folest/foot.svg"
  17639. }
  17640. },
  17641. },
  17642. [
  17643. {
  17644. name: "Micro",
  17645. height: math.unit(4, "cm")
  17646. },
  17647. {
  17648. name: "Normal",
  17649. height: math.unit(1.75, "meters")
  17650. },
  17651. {
  17652. name: "Macro",
  17653. height: math.unit(47.5, "meters"),
  17654. default: true
  17655. },
  17656. ]
  17657. ))
  17658. characterMakers.push(() => makeCharacter(
  17659. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17660. {
  17661. front: {
  17662. height: math.unit(180, "cm"),
  17663. weight: math.unit(70, "kg"),
  17664. name: "Front",
  17665. image: {
  17666. source: "./media/characters/algier/front.svg",
  17667. extra: 596 / 572,
  17668. bottom: 0.04
  17669. }
  17670. },
  17671. back: {
  17672. height: math.unit(180, "cm"),
  17673. weight: math.unit(70, "kg"),
  17674. name: "Back",
  17675. image: {
  17676. source: "./media/characters/algier/back.svg",
  17677. extra: 596 / 572,
  17678. bottom: 0.025
  17679. }
  17680. },
  17681. frontdressed: {
  17682. height: math.unit(180, "cm"),
  17683. weight: math.unit(150, "kg"),
  17684. name: "Front-dressed",
  17685. image: {
  17686. source: "./media/characters/algier/front-dressed.svg",
  17687. extra: 596 / 572,
  17688. bottom: 0.038
  17689. }
  17690. },
  17691. },
  17692. [
  17693. {
  17694. name: "Micro",
  17695. height: math.unit(5, "cm")
  17696. },
  17697. {
  17698. name: "Normal",
  17699. height: math.unit(180, "cm"),
  17700. default: true
  17701. },
  17702. {
  17703. name: "Macro",
  17704. height: math.unit(64, "m")
  17705. },
  17706. ]
  17707. ))
  17708. characterMakers.push(() => makeCharacter(
  17709. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17710. {
  17711. upright: {
  17712. height: math.unit(7, "feet"),
  17713. weight: math.unit(300, "lb"),
  17714. name: "Upright",
  17715. image: {
  17716. source: "./media/characters/pretzel/upright.svg",
  17717. extra: 534 / 522,
  17718. bottom: 0.065
  17719. }
  17720. },
  17721. sprawling: {
  17722. height: math.unit(3.75, "feet"),
  17723. weight: math.unit(300, "lb"),
  17724. name: "Sprawling",
  17725. image: {
  17726. source: "./media/characters/pretzel/sprawling.svg",
  17727. extra: 314 / 281,
  17728. bottom: 0.1
  17729. }
  17730. },
  17731. tongue: {
  17732. height: math.unit(2, "feet"),
  17733. name: "Tongue",
  17734. image: {
  17735. source: "./media/characters/pretzel/tongue.svg"
  17736. }
  17737. },
  17738. },
  17739. [
  17740. {
  17741. name: "Normal",
  17742. height: math.unit(7, "feet"),
  17743. default: true
  17744. },
  17745. {
  17746. name: "Oversized",
  17747. height: math.unit(15, "feet")
  17748. },
  17749. {
  17750. name: "Huge",
  17751. height: math.unit(30, "feet")
  17752. },
  17753. {
  17754. name: "Macro",
  17755. height: math.unit(250, "feet")
  17756. },
  17757. ]
  17758. ))
  17759. characterMakers.push(() => makeCharacter(
  17760. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17761. {
  17762. sideFront: {
  17763. height: math.unit(5 + 2 / 12, "feet"),
  17764. weight: math.unit(120, "lb"),
  17765. name: "Front Side",
  17766. image: {
  17767. source: "./media/characters/roxi/side-front.svg",
  17768. extra: 2924 / 2717,
  17769. bottom: 0.08
  17770. }
  17771. },
  17772. sideBack: {
  17773. height: math.unit(5 + 2 / 12, "feet"),
  17774. weight: math.unit(120, "lb"),
  17775. name: "Back Side",
  17776. image: {
  17777. source: "./media/characters/roxi/side-back.svg",
  17778. extra: 2904 / 2693,
  17779. bottom: 0.06
  17780. }
  17781. },
  17782. front: {
  17783. height: math.unit(5 + 2 / 12, "feet"),
  17784. weight: math.unit(120, "lb"),
  17785. name: "Front",
  17786. image: {
  17787. source: "./media/characters/roxi/front.svg",
  17788. extra: 2028 / 1907,
  17789. bottom: 0.01
  17790. }
  17791. },
  17792. frontAlt: {
  17793. height: math.unit(5 + 2 / 12, "feet"),
  17794. weight: math.unit(120, "lb"),
  17795. name: "Front (Alt)",
  17796. image: {
  17797. source: "./media/characters/roxi/front-alt.svg",
  17798. extra: 1828 / 1798,
  17799. bottom: 0.01
  17800. }
  17801. },
  17802. sitting: {
  17803. height: math.unit(2.8, "feet"),
  17804. weight: math.unit(120, "lb"),
  17805. name: "Sitting",
  17806. image: {
  17807. source: "./media/characters/roxi/sitting.svg",
  17808. extra: 2660 / 2462,
  17809. bottom: 0.1
  17810. }
  17811. },
  17812. },
  17813. [
  17814. {
  17815. name: "Normal",
  17816. height: math.unit(5 + 2 / 12, "feet"),
  17817. default: true
  17818. },
  17819. ]
  17820. ))
  17821. characterMakers.push(() => makeCharacter(
  17822. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17823. {
  17824. side: {
  17825. height: math.unit(55, "feet"),
  17826. weight: math.unit(153, "tons"),
  17827. name: "Side",
  17828. image: {
  17829. source: "./media/characters/shadow/side.svg",
  17830. extra: 701 / 628,
  17831. bottom: 0.02
  17832. }
  17833. },
  17834. flying: {
  17835. height: math.unit(145, "feet"),
  17836. weight: math.unit(153, "tons"),
  17837. name: "Flying",
  17838. image: {
  17839. source: "./media/characters/shadow/flying.svg"
  17840. }
  17841. },
  17842. },
  17843. [
  17844. {
  17845. name: "Normal",
  17846. height: math.unit(55, "feet"),
  17847. default: true
  17848. },
  17849. ]
  17850. ))
  17851. characterMakers.push(() => makeCharacter(
  17852. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17853. {
  17854. front: {
  17855. height: math.unit(6, "feet"),
  17856. weight: math.unit(200, "lb"),
  17857. name: "Front",
  17858. image: {
  17859. source: "./media/characters/marcie/front.svg",
  17860. extra: 960 / 876,
  17861. bottom: 58 / 1017.87
  17862. }
  17863. },
  17864. },
  17865. [
  17866. {
  17867. name: "Macro",
  17868. height: math.unit(1, "mile"),
  17869. default: true
  17870. },
  17871. ]
  17872. ))
  17873. characterMakers.push(() => makeCharacter(
  17874. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17875. {
  17876. front: {
  17877. height: math.unit(7, "feet"),
  17878. weight: math.unit(200, "lb"),
  17879. name: "Front",
  17880. image: {
  17881. source: "./media/characters/kachina/front.svg",
  17882. extra: 1290.68 / 1119,
  17883. bottom: 36.5 / 1327.18
  17884. }
  17885. },
  17886. },
  17887. [
  17888. {
  17889. name: "Normal",
  17890. height: math.unit(7, "feet"),
  17891. default: true
  17892. },
  17893. ]
  17894. ))
  17895. characterMakers.push(() => makeCharacter(
  17896. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17897. {
  17898. looking: {
  17899. height: math.unit(2, "meters"),
  17900. weight: math.unit(300, "kg"),
  17901. name: "Looking",
  17902. image: {
  17903. source: "./media/characters/kash/looking.svg",
  17904. extra: 474 / 344,
  17905. bottom: 0.03
  17906. }
  17907. },
  17908. side: {
  17909. height: math.unit(2, "meters"),
  17910. weight: math.unit(300, "kg"),
  17911. name: "Side",
  17912. image: {
  17913. source: "./media/characters/kash/side.svg",
  17914. extra: 302 / 251,
  17915. bottom: 0.03
  17916. }
  17917. },
  17918. front: {
  17919. height: math.unit(2, "meters"),
  17920. weight: math.unit(300, "kg"),
  17921. name: "Front",
  17922. image: {
  17923. source: "./media/characters/kash/front.svg",
  17924. extra: 495 / 360,
  17925. bottom: 0.015
  17926. }
  17927. },
  17928. },
  17929. [
  17930. {
  17931. name: "Normal",
  17932. height: math.unit(2, "meters"),
  17933. default: true
  17934. },
  17935. {
  17936. name: "Big",
  17937. height: math.unit(3, "meters")
  17938. },
  17939. {
  17940. name: "Large",
  17941. height: math.unit(5, "meters")
  17942. },
  17943. ]
  17944. ))
  17945. characterMakers.push(() => makeCharacter(
  17946. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17947. {
  17948. feeding: {
  17949. height: math.unit(6.7, "feet"),
  17950. weight: math.unit(350, "lb"),
  17951. name: "Feeding",
  17952. image: {
  17953. source: "./media/characters/lalim/feeding.svg",
  17954. }
  17955. },
  17956. },
  17957. [
  17958. {
  17959. name: "Normal",
  17960. height: math.unit(6.7, "feet"),
  17961. default: true
  17962. },
  17963. ]
  17964. ))
  17965. characterMakers.push(() => makeCharacter(
  17966. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17967. {
  17968. front: {
  17969. height: math.unit(9.5, "feet"),
  17970. weight: math.unit(600, "lb"),
  17971. name: "Front",
  17972. image: {
  17973. source: "./media/characters/de'vout/front.svg",
  17974. extra: 1443 / 1328,
  17975. bottom: 0.025
  17976. }
  17977. },
  17978. back: {
  17979. height: math.unit(9.5, "feet"),
  17980. weight: math.unit(600, "lb"),
  17981. name: "Back",
  17982. image: {
  17983. source: "./media/characters/de'vout/back.svg",
  17984. extra: 1443 / 1328
  17985. }
  17986. },
  17987. frontDressed: {
  17988. height: math.unit(9.5, "feet"),
  17989. weight: math.unit(600, "lb"),
  17990. name: "Front (Dressed",
  17991. image: {
  17992. source: "./media/characters/de'vout/front-dressed.svg",
  17993. extra: 1443 / 1328,
  17994. bottom: 0.025
  17995. }
  17996. },
  17997. backDressed: {
  17998. height: math.unit(9.5, "feet"),
  17999. weight: math.unit(600, "lb"),
  18000. name: "Back (Dressed",
  18001. image: {
  18002. source: "./media/characters/de'vout/back-dressed.svg",
  18003. extra: 1443 / 1328
  18004. }
  18005. },
  18006. },
  18007. [
  18008. {
  18009. name: "Normal",
  18010. height: math.unit(9.5, "feet"),
  18011. default: true
  18012. },
  18013. ]
  18014. ))
  18015. characterMakers.push(() => makeCharacter(
  18016. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18017. {
  18018. front: {
  18019. height: math.unit(8, "feet"),
  18020. weight: math.unit(225, "lb"),
  18021. name: "Front",
  18022. image: {
  18023. source: "./media/characters/talana/front.svg",
  18024. extra: 1410 / 1300,
  18025. bottom: 0.015
  18026. }
  18027. },
  18028. frontDressed: {
  18029. height: math.unit(8, "feet"),
  18030. weight: math.unit(225, "lb"),
  18031. name: "Front (Dressed",
  18032. image: {
  18033. source: "./media/characters/talana/front-dressed.svg",
  18034. extra: 1410 / 1300,
  18035. bottom: 0.015
  18036. }
  18037. },
  18038. },
  18039. [
  18040. {
  18041. name: "Normal",
  18042. height: math.unit(8, "feet"),
  18043. default: true
  18044. },
  18045. ]
  18046. ))
  18047. characterMakers.push(() => makeCharacter(
  18048. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18049. {
  18050. side: {
  18051. height: math.unit(7.2, "feet"),
  18052. weight: math.unit(150, "lb"),
  18053. name: "Side",
  18054. image: {
  18055. source: "./media/characters/xeauvok/side.svg",
  18056. extra: 1975 / 1523,
  18057. bottom: 0.07
  18058. }
  18059. },
  18060. },
  18061. [
  18062. {
  18063. name: "Normal",
  18064. height: math.unit(7.2, "feet"),
  18065. default: true
  18066. },
  18067. ]
  18068. ))
  18069. characterMakers.push(() => makeCharacter(
  18070. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18071. {
  18072. side: {
  18073. height: math.unit(10, "feet"),
  18074. weight: math.unit(900, "kg"),
  18075. name: "Side",
  18076. image: {
  18077. source: "./media/characters/zara/side.svg",
  18078. extra: 504 / 498
  18079. }
  18080. },
  18081. },
  18082. [
  18083. {
  18084. name: "Normal",
  18085. height: math.unit(10, "feet"),
  18086. default: true
  18087. },
  18088. ]
  18089. ))
  18090. characterMakers.push(() => makeCharacter(
  18091. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18092. {
  18093. side: {
  18094. height: math.unit(6, "feet"),
  18095. weight: math.unit(150, "lb"),
  18096. name: "Side",
  18097. image: {
  18098. source: "./media/characters/richard-dragon/side.svg",
  18099. extra: 845 / 340,
  18100. bottom: 0.017
  18101. }
  18102. },
  18103. maw: {
  18104. height: math.unit(2.97, "feet"),
  18105. name: "Maw",
  18106. image: {
  18107. source: "./media/characters/richard-dragon/maw.svg"
  18108. }
  18109. },
  18110. },
  18111. [
  18112. ]
  18113. ))
  18114. characterMakers.push(() => makeCharacter(
  18115. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18116. {
  18117. front: {
  18118. height: math.unit(4, "feet"),
  18119. weight: math.unit(100, "lb"),
  18120. name: "Front",
  18121. image: {
  18122. source: "./media/characters/richard-smeargle/front.svg",
  18123. extra: 2952 / 2820,
  18124. bottom: 0.028
  18125. }
  18126. },
  18127. },
  18128. [
  18129. {
  18130. name: "Normal",
  18131. height: math.unit(4, "feet"),
  18132. default: true
  18133. },
  18134. {
  18135. name: "Dynamax",
  18136. height: math.unit(20, "meters")
  18137. },
  18138. ]
  18139. ))
  18140. characterMakers.push(() => makeCharacter(
  18141. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18142. {
  18143. front: {
  18144. height: math.unit(6, "feet"),
  18145. weight: math.unit(110, "lb"),
  18146. name: "Front",
  18147. image: {
  18148. source: "./media/characters/klay/front.svg",
  18149. extra: 962 / 883,
  18150. bottom: 0.04
  18151. }
  18152. },
  18153. back: {
  18154. height: math.unit(6, "feet"),
  18155. weight: math.unit(110, "lb"),
  18156. name: "Back",
  18157. image: {
  18158. source: "./media/characters/klay/back.svg",
  18159. extra: 962 / 883
  18160. }
  18161. },
  18162. beans: {
  18163. height: math.unit(1.15, "feet"),
  18164. name: "Beans",
  18165. image: {
  18166. source: "./media/characters/klay/beans.svg"
  18167. }
  18168. },
  18169. },
  18170. [
  18171. {
  18172. name: "Micro",
  18173. height: math.unit(6, "inches")
  18174. },
  18175. {
  18176. name: "Mini",
  18177. height: math.unit(3, "feet")
  18178. },
  18179. {
  18180. name: "Normal",
  18181. height: math.unit(6, "feet"),
  18182. default: true
  18183. },
  18184. {
  18185. name: "Big",
  18186. height: math.unit(25, "feet")
  18187. },
  18188. {
  18189. name: "Macro",
  18190. height: math.unit(100, "feet")
  18191. },
  18192. {
  18193. name: "Megamacro",
  18194. height: math.unit(400, "feet")
  18195. },
  18196. ]
  18197. ))
  18198. characterMakers.push(() => makeCharacter(
  18199. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18200. {
  18201. front: {
  18202. height: math.unit(6, "feet"),
  18203. weight: math.unit(160, "lb"),
  18204. name: "Front",
  18205. image: {
  18206. source: "./media/characters/marcus/front.svg",
  18207. extra: 734 / 676,
  18208. bottom: 0.03
  18209. }
  18210. },
  18211. },
  18212. [
  18213. {
  18214. name: "Little",
  18215. height: math.unit(6, "feet")
  18216. },
  18217. {
  18218. name: "Normal",
  18219. height: math.unit(110, "feet"),
  18220. default: true
  18221. },
  18222. {
  18223. name: "Macro",
  18224. height: math.unit(250, "feet")
  18225. },
  18226. {
  18227. name: "Megamacro",
  18228. height: math.unit(1000, "feet")
  18229. },
  18230. ]
  18231. ))
  18232. characterMakers.push(() => makeCharacter(
  18233. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18234. {
  18235. front: {
  18236. height: math.unit(7, "feet"),
  18237. weight: math.unit(275, "lb"),
  18238. name: "Front",
  18239. image: {
  18240. source: "./media/characters/claude-delroute/front.svg",
  18241. extra: 230 / 214,
  18242. bottom: 0.007
  18243. }
  18244. },
  18245. side: {
  18246. height: math.unit(7, "feet"),
  18247. weight: math.unit(275, "lb"),
  18248. name: "Side",
  18249. image: {
  18250. source: "./media/characters/claude-delroute/side.svg",
  18251. extra: 222 / 214,
  18252. bottom: 0.01
  18253. }
  18254. },
  18255. back: {
  18256. height: math.unit(7, "feet"),
  18257. weight: math.unit(275, "lb"),
  18258. name: "Back",
  18259. image: {
  18260. source: "./media/characters/claude-delroute/back.svg",
  18261. extra: 230 / 214,
  18262. bottom: 0.015
  18263. }
  18264. },
  18265. maw: {
  18266. height: math.unit(0.6407, "meters"),
  18267. name: "Maw",
  18268. image: {
  18269. source: "./media/characters/claude-delroute/maw.svg"
  18270. }
  18271. },
  18272. },
  18273. [
  18274. {
  18275. name: "Normal",
  18276. height: math.unit(7, "feet"),
  18277. default: true
  18278. },
  18279. {
  18280. name: "Lorge",
  18281. height: math.unit(20, "feet")
  18282. },
  18283. ]
  18284. ))
  18285. characterMakers.push(() => makeCharacter(
  18286. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18287. {
  18288. front: {
  18289. height: math.unit(8 + 4 / 12, "feet"),
  18290. weight: math.unit(600, "lb"),
  18291. name: "Front",
  18292. image: {
  18293. source: "./media/characters/dragonien/front.svg",
  18294. extra: 100 / 94,
  18295. bottom: 3.3 / 103.3445
  18296. }
  18297. },
  18298. back: {
  18299. height: math.unit(8 + 4 / 12, "feet"),
  18300. weight: math.unit(600, "lb"),
  18301. name: "Back",
  18302. image: {
  18303. source: "./media/characters/dragonien/back.svg",
  18304. extra: 776 / 746,
  18305. bottom: 6.4 / 782.0616
  18306. }
  18307. },
  18308. foot: {
  18309. height: math.unit(1.54, "feet"),
  18310. name: "Foot",
  18311. image: {
  18312. source: "./media/characters/dragonien/foot.svg",
  18313. }
  18314. },
  18315. },
  18316. [
  18317. {
  18318. name: "Normal",
  18319. height: math.unit(8 + 4 / 12, "feet"),
  18320. default: true
  18321. },
  18322. {
  18323. name: "Macro",
  18324. height: math.unit(200, "feet")
  18325. },
  18326. {
  18327. name: "Megamacro",
  18328. height: math.unit(1, "mile")
  18329. },
  18330. {
  18331. name: "Gigamacro",
  18332. height: math.unit(1000, "miles")
  18333. },
  18334. ]
  18335. ))
  18336. characterMakers.push(() => makeCharacter(
  18337. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18338. {
  18339. front: {
  18340. height: math.unit(5 + 2 / 12, "feet"),
  18341. weight: math.unit(110, "lb"),
  18342. name: "Front",
  18343. image: {
  18344. source: "./media/characters/desta/front.svg",
  18345. extra: 767 / 726,
  18346. bottom: 11.7 / 779
  18347. }
  18348. },
  18349. back: {
  18350. height: math.unit(5 + 2 / 12, "feet"),
  18351. weight: math.unit(110, "lb"),
  18352. name: "Back",
  18353. image: {
  18354. source: "./media/characters/desta/back.svg",
  18355. extra: 777 / 728,
  18356. bottom: 6 / 784
  18357. }
  18358. },
  18359. frontAlt: {
  18360. height: math.unit(5 + 2 / 12, "feet"),
  18361. weight: math.unit(110, "lb"),
  18362. name: "Front",
  18363. image: {
  18364. source: "./media/characters/desta/front-alt.svg",
  18365. extra: 1482 / 1417
  18366. }
  18367. },
  18368. side: {
  18369. height: math.unit(5 + 2 / 12, "feet"),
  18370. weight: math.unit(110, "lb"),
  18371. name: "Side",
  18372. image: {
  18373. source: "./media/characters/desta/side.svg",
  18374. extra: 2579 / 2491,
  18375. bottom: 0.053
  18376. }
  18377. },
  18378. },
  18379. [
  18380. {
  18381. name: "Micro",
  18382. height: math.unit(6, "inches")
  18383. },
  18384. {
  18385. name: "Normal",
  18386. height: math.unit(5 + 2 / 12, "feet"),
  18387. default: true
  18388. },
  18389. {
  18390. name: "Macro",
  18391. height: math.unit(62, "feet")
  18392. },
  18393. {
  18394. name: "Megamacro",
  18395. height: math.unit(1800, "feet")
  18396. },
  18397. ]
  18398. ))
  18399. characterMakers.push(() => makeCharacter(
  18400. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18401. {
  18402. front: {
  18403. height: math.unit(10, "feet"),
  18404. weight: math.unit(700, "lb"),
  18405. name: "Front",
  18406. image: {
  18407. source: "./media/characters/storm-alystar/front.svg",
  18408. extra: 2112 / 1898,
  18409. bottom: 0.034
  18410. }
  18411. },
  18412. },
  18413. [
  18414. {
  18415. name: "Micro",
  18416. height: math.unit(3.5, "inches")
  18417. },
  18418. {
  18419. name: "Normal",
  18420. height: math.unit(10, "feet"),
  18421. default: true
  18422. },
  18423. {
  18424. name: "Macro",
  18425. height: math.unit(400, "feet")
  18426. },
  18427. {
  18428. name: "Deific",
  18429. height: math.unit(60, "miles")
  18430. },
  18431. ]
  18432. ))
  18433. characterMakers.push(() => makeCharacter(
  18434. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18435. {
  18436. front: {
  18437. height: math.unit(2.35, "meters"),
  18438. weight: math.unit(119, "kg"),
  18439. name: "Front",
  18440. image: {
  18441. source: "./media/characters/ilia/front.svg",
  18442. extra: 1285 / 1255,
  18443. bottom: 0.06
  18444. }
  18445. },
  18446. },
  18447. [
  18448. {
  18449. name: "Normal",
  18450. height: math.unit(2.35, "meters")
  18451. },
  18452. {
  18453. name: "Macro",
  18454. height: math.unit(140, "meters"),
  18455. default: true
  18456. },
  18457. {
  18458. name: "Megamacro",
  18459. height: math.unit(100, "miles")
  18460. },
  18461. ]
  18462. ))
  18463. characterMakers.push(() => makeCharacter(
  18464. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18465. {
  18466. front: {
  18467. height: math.unit(6 + 5 / 12, "feet"),
  18468. weight: math.unit(190, "lb"),
  18469. name: "Front",
  18470. image: {
  18471. source: "./media/characters/kingdead/front.svg",
  18472. extra: 1228 / 1177
  18473. }
  18474. },
  18475. },
  18476. [
  18477. {
  18478. name: "Micro",
  18479. height: math.unit(7, "inches")
  18480. },
  18481. {
  18482. name: "Normal",
  18483. height: math.unit(6 + 5 / 12, "feet")
  18484. },
  18485. {
  18486. name: "Macro",
  18487. height: math.unit(150, "feet"),
  18488. default: true
  18489. },
  18490. {
  18491. name: "Megamacro",
  18492. height: math.unit(200, "miles")
  18493. },
  18494. ]
  18495. ))
  18496. characterMakers.push(() => makeCharacter(
  18497. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18498. {
  18499. front: {
  18500. height: math.unit(8, "feet"),
  18501. weight: math.unit(600, "lb"),
  18502. name: "Front",
  18503. image: {
  18504. source: "./media/characters/kyrehx/front.svg",
  18505. extra: 1195 / 1095,
  18506. bottom: 0.034
  18507. }
  18508. },
  18509. },
  18510. [
  18511. {
  18512. name: "Micro",
  18513. height: math.unit(2, "inches")
  18514. },
  18515. {
  18516. name: "Normal",
  18517. height: math.unit(8, "feet"),
  18518. default: true
  18519. },
  18520. {
  18521. name: "Macro",
  18522. height: math.unit(255, "feet")
  18523. },
  18524. ]
  18525. ))
  18526. characterMakers.push(() => makeCharacter(
  18527. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18528. {
  18529. front: {
  18530. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18531. weight: math.unit(184, "lb"),
  18532. name: "Front",
  18533. image: {
  18534. source: "./media/characters/xang/front.svg",
  18535. extra: 845 / 755
  18536. }
  18537. },
  18538. },
  18539. [
  18540. {
  18541. name: "Normal",
  18542. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18543. default: true
  18544. },
  18545. {
  18546. name: "Macro",
  18547. height: math.unit(0.935 * 146, "feet")
  18548. },
  18549. {
  18550. name: "Megamacro",
  18551. height: math.unit(0.935 * 3, "miles")
  18552. },
  18553. ]
  18554. ))
  18555. characterMakers.push(() => makeCharacter(
  18556. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18557. {
  18558. frontDressed: {
  18559. height: math.unit(5 + 7 / 12, "feet"),
  18560. weight: math.unit(140, "lb"),
  18561. name: "Front (Dressed)",
  18562. image: {
  18563. source: "./media/characters/doc-weardno/front-dressed.svg",
  18564. extra: 263 / 234
  18565. }
  18566. },
  18567. backDressed: {
  18568. height: math.unit(5 + 7 / 12, "feet"),
  18569. weight: math.unit(140, "lb"),
  18570. name: "Back (Dressed)",
  18571. image: {
  18572. source: "./media/characters/doc-weardno/back-dressed.svg",
  18573. extra: 266 / 238
  18574. }
  18575. },
  18576. front: {
  18577. height: math.unit(5 + 7 / 12, "feet"),
  18578. weight: math.unit(140, "lb"),
  18579. name: "Front",
  18580. image: {
  18581. source: "./media/characters/doc-weardno/front.svg",
  18582. extra: 254 / 233
  18583. }
  18584. },
  18585. },
  18586. [
  18587. {
  18588. name: "Micro",
  18589. height: math.unit(3, "inches")
  18590. },
  18591. {
  18592. name: "Normal",
  18593. height: math.unit(5 + 7 / 12, "feet"),
  18594. default: true
  18595. },
  18596. {
  18597. name: "Macro",
  18598. height: math.unit(25, "feet")
  18599. },
  18600. {
  18601. name: "Megamacro",
  18602. height: math.unit(2, "miles")
  18603. },
  18604. ]
  18605. ))
  18606. characterMakers.push(() => makeCharacter(
  18607. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18608. {
  18609. front: {
  18610. height: math.unit(6 + 2 / 12, "feet"),
  18611. weight: math.unit(153, "lb"),
  18612. name: "Front",
  18613. image: {
  18614. source: "./media/characters/seth-whilst/front.svg",
  18615. bottom: 0.07
  18616. }
  18617. },
  18618. },
  18619. [
  18620. {
  18621. name: "Micro",
  18622. height: math.unit(5, "inches")
  18623. },
  18624. {
  18625. name: "Normal",
  18626. height: math.unit(6 + 2 / 12, "feet"),
  18627. default: true
  18628. },
  18629. ]
  18630. ))
  18631. characterMakers.push(() => makeCharacter(
  18632. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18633. {
  18634. front: {
  18635. height: math.unit(3, "inches"),
  18636. weight: math.unit(8, "grams"),
  18637. name: "Front",
  18638. image: {
  18639. source: "./media/characters/pocket-jabari/front.svg",
  18640. extra: 1024 / 974,
  18641. bottom: 0.039
  18642. }
  18643. },
  18644. },
  18645. [
  18646. {
  18647. name: "Minimicro",
  18648. height: math.unit(8, "mm")
  18649. },
  18650. {
  18651. name: "Micro",
  18652. height: math.unit(3, "inches"),
  18653. default: true
  18654. },
  18655. {
  18656. name: "Normal",
  18657. height: math.unit(3, "feet")
  18658. },
  18659. ]
  18660. ))
  18661. characterMakers.push(() => makeCharacter(
  18662. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18663. {
  18664. front: {
  18665. height: math.unit(15, "feet"),
  18666. weight: math.unit(3280, "lb"),
  18667. name: "Front",
  18668. image: {
  18669. source: "./media/characters/sapphy/front.svg",
  18670. extra: 671 / 577,
  18671. bottom: 0.085
  18672. }
  18673. },
  18674. back: {
  18675. height: math.unit(15, "feet"),
  18676. weight: math.unit(3280, "lb"),
  18677. name: "Back",
  18678. image: {
  18679. source: "./media/characters/sapphy/back.svg",
  18680. extra: 631 / 607,
  18681. bottom: 0.045
  18682. }
  18683. },
  18684. },
  18685. [
  18686. {
  18687. name: "Normal",
  18688. height: math.unit(15, "feet")
  18689. },
  18690. {
  18691. name: "Casual Macro",
  18692. height: math.unit(120, "feet")
  18693. },
  18694. {
  18695. name: "Macro",
  18696. height: math.unit(2150, "feet"),
  18697. default: true
  18698. },
  18699. {
  18700. name: "Megamacro",
  18701. height: math.unit(8, "miles")
  18702. },
  18703. {
  18704. name: "Galaxy Mom",
  18705. height: math.unit(6, "megalightyears")
  18706. },
  18707. ]
  18708. ))
  18709. characterMakers.push(() => makeCharacter(
  18710. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18711. {
  18712. front: {
  18713. height: math.unit(6, "feet"),
  18714. weight: math.unit(170, "lb"),
  18715. name: "Front",
  18716. image: {
  18717. source: "./media/characters/kiro/front.svg",
  18718. extra: 1064 / 1012,
  18719. bottom: 0.052
  18720. }
  18721. },
  18722. },
  18723. [
  18724. {
  18725. name: "Micro",
  18726. height: math.unit(6, "inches")
  18727. },
  18728. {
  18729. name: "Normal",
  18730. height: math.unit(6, "feet"),
  18731. default: true
  18732. },
  18733. {
  18734. name: "Macro",
  18735. height: math.unit(72, "feet")
  18736. },
  18737. ]
  18738. ))
  18739. characterMakers.push(() => makeCharacter(
  18740. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18741. {
  18742. front: {
  18743. height: math.unit(5 + 9 / 12, "feet"),
  18744. weight: math.unit(175, "lb"),
  18745. name: "Front",
  18746. image: {
  18747. source: "./media/characters/irishfox/front.svg",
  18748. extra: 1912 / 1680,
  18749. bottom: 0.02
  18750. }
  18751. },
  18752. },
  18753. [
  18754. {
  18755. name: "Nano",
  18756. height: math.unit(1, "mm")
  18757. },
  18758. {
  18759. name: "Micro",
  18760. height: math.unit(2, "inches")
  18761. },
  18762. {
  18763. name: "Normal",
  18764. height: math.unit(5 + 9 / 12, "feet"),
  18765. default: true
  18766. },
  18767. {
  18768. name: "Macro",
  18769. height: math.unit(45, "feet")
  18770. },
  18771. ]
  18772. ))
  18773. characterMakers.push(() => makeCharacter(
  18774. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18775. {
  18776. front: {
  18777. height: math.unit(6 + 1 / 12, "feet"),
  18778. weight: math.unit(75, "lb"),
  18779. name: "Front",
  18780. image: {
  18781. source: "./media/characters/aronai-sieyes/front.svg",
  18782. extra: 1556 / 1480,
  18783. bottom: 0.015
  18784. }
  18785. },
  18786. side: {
  18787. height: math.unit(6 + 1 / 12, "feet"),
  18788. weight: math.unit(75, "lb"),
  18789. name: "Side",
  18790. image: {
  18791. source: "./media/characters/aronai-sieyes/side.svg",
  18792. extra: 1433 / 1390,
  18793. bottom: 0.0393
  18794. }
  18795. },
  18796. back: {
  18797. height: math.unit(6 + 1 / 12, "feet"),
  18798. weight: math.unit(75, "lb"),
  18799. name: "Back",
  18800. image: {
  18801. source: "./media/characters/aronai-sieyes/back.svg",
  18802. extra: 1544 / 1494,
  18803. bottom: 0.02
  18804. }
  18805. },
  18806. frontClothed: {
  18807. height: math.unit(6 + 1 / 12, "feet"),
  18808. weight: math.unit(75, "lb"),
  18809. name: "Front (Clothed)",
  18810. image: {
  18811. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18812. extra: 1582 / 1527
  18813. }
  18814. },
  18815. feral: {
  18816. height: math.unit(18, "feet"),
  18817. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18818. name: "Feral",
  18819. image: {
  18820. source: "./media/characters/aronai-sieyes/feral.svg",
  18821. extra: 1530 / 1240,
  18822. bottom: 0.035
  18823. }
  18824. },
  18825. },
  18826. [
  18827. {
  18828. name: "Micro",
  18829. height: math.unit(2, "inches")
  18830. },
  18831. {
  18832. name: "Normal",
  18833. height: math.unit(6 + 1 / 12, "feet"),
  18834. default: true
  18835. }
  18836. ]
  18837. ))
  18838. characterMakers.push(() => makeCharacter(
  18839. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18840. {
  18841. front: {
  18842. height: math.unit(12, "feet"),
  18843. weight: math.unit(410, "kg"),
  18844. name: "Front",
  18845. image: {
  18846. source: "./media/characters/xuna/front.svg",
  18847. extra: 2184 / 1980
  18848. }
  18849. },
  18850. side: {
  18851. height: math.unit(12, "feet"),
  18852. weight: math.unit(410, "kg"),
  18853. name: "Side",
  18854. image: {
  18855. source: "./media/characters/xuna/side.svg",
  18856. extra: 2184 / 1980
  18857. }
  18858. },
  18859. back: {
  18860. height: math.unit(12, "feet"),
  18861. weight: math.unit(410, "kg"),
  18862. name: "Back",
  18863. image: {
  18864. source: "./media/characters/xuna/back.svg",
  18865. extra: 2184 / 1980
  18866. }
  18867. },
  18868. },
  18869. [
  18870. {
  18871. name: "Nano glow",
  18872. height: math.unit(10, "nm")
  18873. },
  18874. {
  18875. name: "Micro floof",
  18876. height: math.unit(0.3, "m")
  18877. },
  18878. {
  18879. name: "Huggable softy boi",
  18880. height: math.unit(3.6576, "m"),
  18881. default: true
  18882. },
  18883. {
  18884. name: "Admirable floof",
  18885. height: math.unit(80, "meters")
  18886. },
  18887. {
  18888. name: "Gentle macro",
  18889. height: math.unit(300, "meters")
  18890. },
  18891. {
  18892. name: "Very careful floof",
  18893. height: math.unit(3200, "meters")
  18894. },
  18895. {
  18896. name: "The mega floof",
  18897. height: math.unit(36000, "meters")
  18898. },
  18899. {
  18900. name: "Giga-fur-Wicker",
  18901. height: math.unit(4800000, "meters")
  18902. },
  18903. {
  18904. name: "Licky world",
  18905. height: math.unit(20000000, "meters")
  18906. },
  18907. {
  18908. name: "Floofy cyan sun",
  18909. height: math.unit(1500000000, "meters")
  18910. },
  18911. {
  18912. name: "Milky Wicker",
  18913. height: math.unit(1000000000000000000000, "meters")
  18914. },
  18915. {
  18916. name: "The observing Wicker",
  18917. height: math.unit(999999999999999999999999999, "meters")
  18918. },
  18919. ]
  18920. ))
  18921. characterMakers.push(() => makeCharacter(
  18922. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18923. {
  18924. front: {
  18925. height: math.unit(5 + 9 / 12, "feet"),
  18926. weight: math.unit(150, "lb"),
  18927. name: "Front",
  18928. image: {
  18929. source: "./media/characters/arokha-sieyes/front.svg",
  18930. extra: 1425 / 1284,
  18931. bottom: 0.05
  18932. }
  18933. },
  18934. },
  18935. [
  18936. {
  18937. name: "Normal",
  18938. height: math.unit(5 + 9 / 12, "feet")
  18939. },
  18940. {
  18941. name: "Macro",
  18942. height: math.unit(30, "meters"),
  18943. default: true
  18944. },
  18945. ]
  18946. ))
  18947. characterMakers.push(() => makeCharacter(
  18948. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18949. {
  18950. front: {
  18951. height: math.unit(6, "feet"),
  18952. weight: math.unit(180, "lb"),
  18953. name: "Front",
  18954. image: {
  18955. source: "./media/characters/arokh-sieyes/front.svg",
  18956. extra: 1830 / 1769,
  18957. bottom: 0.01
  18958. }
  18959. },
  18960. },
  18961. [
  18962. {
  18963. name: "Normal",
  18964. height: math.unit(6, "feet")
  18965. },
  18966. {
  18967. name: "Macro",
  18968. height: math.unit(30, "meters"),
  18969. default: true
  18970. },
  18971. ]
  18972. ))
  18973. characterMakers.push(() => makeCharacter(
  18974. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18975. {
  18976. side: {
  18977. height: math.unit(13 + 1 / 12, "feet"),
  18978. weight: math.unit(8.5, "tonnes"),
  18979. name: "Side",
  18980. image: {
  18981. source: "./media/characters/goldeneye/side.svg",
  18982. extra: 1182 / 778,
  18983. bottom: 0.067
  18984. }
  18985. },
  18986. paw: {
  18987. height: math.unit(3.4, "feet"),
  18988. name: "Paw",
  18989. image: {
  18990. source: "./media/characters/goldeneye/paw.svg"
  18991. }
  18992. },
  18993. },
  18994. [
  18995. {
  18996. name: "Normal",
  18997. height: math.unit(13 + 1 / 12, "feet"),
  18998. default: true
  18999. },
  19000. ]
  19001. ))
  19002. characterMakers.push(() => makeCharacter(
  19003. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19004. {
  19005. front: {
  19006. height: math.unit(6 + 1 / 12, "feet"),
  19007. weight: math.unit(210, "lb"),
  19008. name: "Front",
  19009. image: {
  19010. source: "./media/characters/leonardo-lycheborne/front.svg",
  19011. extra: 390 / 365,
  19012. bottom: 0.032
  19013. }
  19014. },
  19015. side: {
  19016. height: math.unit(6 + 1 / 12, "feet"),
  19017. weight: math.unit(210, "lb"),
  19018. name: "Side",
  19019. image: {
  19020. source: "./media/characters/leonardo-lycheborne/side.svg",
  19021. extra: 390 / 365,
  19022. bottom: 0.005
  19023. }
  19024. },
  19025. back: {
  19026. height: math.unit(6 + 1 / 12, "feet"),
  19027. weight: math.unit(210, "lb"),
  19028. name: "Back",
  19029. image: {
  19030. source: "./media/characters/leonardo-lycheborne/back.svg",
  19031. extra: 392 / 366,
  19032. bottom: 0.01
  19033. }
  19034. },
  19035. hand: {
  19036. height: math.unit(1.08, "feet"),
  19037. name: "Hand",
  19038. image: {
  19039. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19040. }
  19041. },
  19042. foot: {
  19043. height: math.unit(1.32, "feet"),
  19044. name: "Foot",
  19045. image: {
  19046. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19047. }
  19048. },
  19049. were: {
  19050. height: math.unit(20, "feet"),
  19051. weight: math.unit(7800, "lb"),
  19052. name: "Were",
  19053. image: {
  19054. source: "./media/characters/leonardo-lycheborne/were.svg",
  19055. extra: 308 / 294,
  19056. bottom: 0.048
  19057. }
  19058. },
  19059. feral: {
  19060. height: math.unit(7.5, "feet"),
  19061. weight: math.unit(600, "lb"),
  19062. name: "Feral",
  19063. image: {
  19064. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19065. extra: 210 / 186,
  19066. bottom: 0.108
  19067. }
  19068. },
  19069. taur: {
  19070. height: math.unit(11, "feet"),
  19071. weight: math.unit(3300, "lb"),
  19072. name: "Taur",
  19073. image: {
  19074. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19075. extra: 320 / 303,
  19076. bottom: 0.025
  19077. }
  19078. },
  19079. barghest: {
  19080. height: math.unit(11, "feet"),
  19081. weight: math.unit(1300, "lb"),
  19082. name: "Barghest",
  19083. image: {
  19084. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19085. extra: 323 / 302,
  19086. bottom: 0.027
  19087. }
  19088. },
  19089. dick: {
  19090. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19091. name: "Dick",
  19092. image: {
  19093. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19094. }
  19095. },
  19096. dickWere: {
  19097. height: math.unit((20) / 3.8, "feet"),
  19098. name: "Dick (Were)",
  19099. image: {
  19100. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19101. }
  19102. },
  19103. },
  19104. [
  19105. {
  19106. name: "Normal",
  19107. height: math.unit(6 + 1 / 12, "feet"),
  19108. default: true
  19109. },
  19110. ]
  19111. ))
  19112. characterMakers.push(() => makeCharacter(
  19113. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19114. {
  19115. front: {
  19116. height: math.unit(10, "feet"),
  19117. weight: math.unit(350, "lb"),
  19118. name: "Front",
  19119. image: {
  19120. source: "./media/characters/jet/front.svg",
  19121. extra: 2050 / 1980,
  19122. bottom: 0.013
  19123. }
  19124. },
  19125. back: {
  19126. height: math.unit(10, "feet"),
  19127. weight: math.unit(350, "lb"),
  19128. name: "Back",
  19129. image: {
  19130. source: "./media/characters/jet/back.svg",
  19131. extra: 2050 / 1980,
  19132. bottom: 0.013
  19133. }
  19134. },
  19135. },
  19136. [
  19137. {
  19138. name: "Micro",
  19139. height: math.unit(6, "inches")
  19140. },
  19141. {
  19142. name: "Normal",
  19143. height: math.unit(10, "feet"),
  19144. default: true
  19145. },
  19146. {
  19147. name: "Macro",
  19148. height: math.unit(100, "feet")
  19149. },
  19150. ]
  19151. ))
  19152. characterMakers.push(() => makeCharacter(
  19153. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19154. {
  19155. front: {
  19156. height: math.unit(15, "feet"),
  19157. weight: math.unit(2800, "lb"),
  19158. name: "Front",
  19159. image: {
  19160. source: "./media/characters/tanarath/front.svg",
  19161. extra: 2392 / 2220,
  19162. bottom: 0.03
  19163. }
  19164. },
  19165. back: {
  19166. height: math.unit(15, "feet"),
  19167. weight: math.unit(2800, "lb"),
  19168. name: "Back",
  19169. image: {
  19170. source: "./media/characters/tanarath/back.svg",
  19171. extra: 2392 / 2220,
  19172. bottom: 0.03
  19173. }
  19174. },
  19175. },
  19176. [
  19177. {
  19178. name: "Normal",
  19179. height: math.unit(15, "feet"),
  19180. default: true
  19181. },
  19182. ]
  19183. ))
  19184. characterMakers.push(() => makeCharacter(
  19185. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19186. {
  19187. front: {
  19188. height: math.unit(7 + 1 / 12, "feet"),
  19189. weight: math.unit(175, "lb"),
  19190. name: "Front",
  19191. image: {
  19192. source: "./media/characters/patty-cattybatty/front.svg",
  19193. extra: 908 / 874,
  19194. bottom: 0.025
  19195. }
  19196. },
  19197. },
  19198. [
  19199. {
  19200. name: "Micro",
  19201. height: math.unit(1, "inch")
  19202. },
  19203. {
  19204. name: "Normal",
  19205. height: math.unit(7 + 1 / 12, "feet")
  19206. },
  19207. {
  19208. name: "Mini Macro",
  19209. height: math.unit(155, "feet")
  19210. },
  19211. {
  19212. name: "Macro",
  19213. height: math.unit(1077, "feet")
  19214. },
  19215. {
  19216. name: "Mega Macro",
  19217. height: math.unit(47650, "feet"),
  19218. default: true
  19219. },
  19220. {
  19221. name: "Giga Macro",
  19222. height: math.unit(440, "miles")
  19223. },
  19224. {
  19225. name: "Tera Macro",
  19226. height: math.unit(8700, "miles")
  19227. },
  19228. {
  19229. name: "Planetary Macro",
  19230. height: math.unit(32700, "miles")
  19231. },
  19232. {
  19233. name: "Solar Macro",
  19234. height: math.unit(550000, "miles")
  19235. },
  19236. {
  19237. name: "Celestial Macro",
  19238. height: math.unit(2.5, "AU")
  19239. },
  19240. ]
  19241. ))
  19242. characterMakers.push(() => makeCharacter(
  19243. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19244. {
  19245. front: {
  19246. height: math.unit(4 + 5 / 12, "feet"),
  19247. weight: math.unit(90, "lb"),
  19248. name: "Front",
  19249. image: {
  19250. source: "./media/characters/cappu/front.svg",
  19251. extra: 1247 / 1152,
  19252. bottom: 0.012
  19253. }
  19254. },
  19255. },
  19256. [
  19257. {
  19258. name: "Normal",
  19259. height: math.unit(4 + 5 / 12, "feet"),
  19260. default: true
  19261. },
  19262. ]
  19263. ))
  19264. characterMakers.push(() => makeCharacter(
  19265. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19266. {
  19267. frontDressed: {
  19268. height: math.unit(70, "cm"),
  19269. weight: math.unit(6, "kg"),
  19270. name: "Front (Dressed)",
  19271. image: {
  19272. source: "./media/characters/sebi/front-dressed.svg",
  19273. extra: 713.5 / 686.5,
  19274. bottom: 0.003
  19275. }
  19276. },
  19277. front: {
  19278. height: math.unit(70, "cm"),
  19279. weight: math.unit(5, "kg"),
  19280. name: "Front",
  19281. image: {
  19282. source: "./media/characters/sebi/front.svg",
  19283. extra: 713.5 / 686.5,
  19284. bottom: 0.003
  19285. }
  19286. }
  19287. },
  19288. [
  19289. {
  19290. name: "Normal",
  19291. height: math.unit(70, "cm"),
  19292. default: true
  19293. },
  19294. {
  19295. name: "Macro",
  19296. height: math.unit(8, "meters")
  19297. },
  19298. ]
  19299. ))
  19300. characterMakers.push(() => makeCharacter(
  19301. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19302. {
  19303. front: {
  19304. height: math.unit(6, "feet"),
  19305. weight: math.unit(150, "lb"),
  19306. name: "Front",
  19307. image: {
  19308. source: "./media/characters/typhek/front.svg",
  19309. extra: 1948 / 1929,
  19310. bottom: 0.025
  19311. }
  19312. },
  19313. side: {
  19314. height: math.unit(6, "feet"),
  19315. weight: math.unit(150, "lb"),
  19316. name: "Side",
  19317. image: {
  19318. source: "./media/characters/typhek/side.svg",
  19319. extra: 2034 / 2010,
  19320. bottom: 0.003
  19321. }
  19322. },
  19323. back: {
  19324. height: math.unit(6, "feet"),
  19325. weight: math.unit(150, "lb"),
  19326. name: "Back",
  19327. image: {
  19328. source: "./media/characters/typhek/back.svg",
  19329. extra: 2005 / 1978,
  19330. bottom: 0.004
  19331. }
  19332. },
  19333. palm: {
  19334. height: math.unit(1.2, "feet"),
  19335. name: "Palm",
  19336. image: {
  19337. source: "./media/characters/typhek/palm.svg"
  19338. }
  19339. },
  19340. fist: {
  19341. height: math.unit(1.1, "feet"),
  19342. name: "Fist",
  19343. image: {
  19344. source: "./media/characters/typhek/fist.svg"
  19345. }
  19346. },
  19347. foot: {
  19348. height: math.unit(1.57, "feet"),
  19349. name: "Foot",
  19350. image: {
  19351. source: "./media/characters/typhek/foot.svg"
  19352. }
  19353. },
  19354. sole: {
  19355. height: math.unit(2.05, "feet"),
  19356. name: "Sole",
  19357. image: {
  19358. source: "./media/characters/typhek/sole.svg"
  19359. }
  19360. },
  19361. },
  19362. [
  19363. {
  19364. name: "Macro",
  19365. height: math.unit(40, "stories"),
  19366. default: true
  19367. },
  19368. {
  19369. name: "Megamacro",
  19370. height: math.unit(1, "mile")
  19371. },
  19372. {
  19373. name: "Gigamacro",
  19374. height: math.unit(4000, "solarradii")
  19375. },
  19376. {
  19377. name: "Universal",
  19378. height: math.unit(1.1, "universes")
  19379. }
  19380. ]
  19381. ))
  19382. characterMakers.push(() => makeCharacter(
  19383. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19384. {
  19385. side: {
  19386. height: math.unit(5 + 7 / 12, "feet"),
  19387. weight: math.unit(150, "lb"),
  19388. name: "Side",
  19389. image: {
  19390. source: "./media/characters/kassy/side.svg",
  19391. extra: 1280 / 1225,
  19392. bottom: 0.002
  19393. }
  19394. },
  19395. front: {
  19396. height: math.unit(5 + 7 / 12, "feet"),
  19397. weight: math.unit(150, "lb"),
  19398. name: "Front",
  19399. image: {
  19400. source: "./media/characters/kassy/front.svg",
  19401. extra: 1280 / 1225,
  19402. bottom: 0.025
  19403. }
  19404. },
  19405. back: {
  19406. height: math.unit(5 + 7 / 12, "feet"),
  19407. weight: math.unit(150, "lb"),
  19408. name: "Back",
  19409. image: {
  19410. source: "./media/characters/kassy/back.svg",
  19411. extra: 1280 / 1225,
  19412. bottom: 0.002
  19413. }
  19414. },
  19415. foot: {
  19416. height: math.unit(1.266, "feet"),
  19417. name: "Foot",
  19418. image: {
  19419. source: "./media/characters/kassy/foot.svg"
  19420. }
  19421. },
  19422. },
  19423. [
  19424. {
  19425. name: "Normal",
  19426. height: math.unit(5 + 7 / 12, "feet")
  19427. },
  19428. {
  19429. name: "Macro",
  19430. height: math.unit(137, "feet"),
  19431. default: true
  19432. },
  19433. {
  19434. name: "Megamacro",
  19435. height: math.unit(1, "mile")
  19436. },
  19437. ]
  19438. ))
  19439. characterMakers.push(() => makeCharacter(
  19440. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19441. {
  19442. front: {
  19443. height: math.unit(6 + 1 / 12, "feet"),
  19444. weight: math.unit(200, "lb"),
  19445. name: "Front",
  19446. image: {
  19447. source: "./media/characters/neil/front.svg",
  19448. extra: 1326 / 1250,
  19449. bottom: 0.023
  19450. }
  19451. },
  19452. },
  19453. [
  19454. {
  19455. name: "Normal",
  19456. height: math.unit(6 + 1 / 12, "feet"),
  19457. default: true
  19458. },
  19459. {
  19460. name: "Macro",
  19461. height: math.unit(200, "feet")
  19462. },
  19463. ]
  19464. ))
  19465. characterMakers.push(() => makeCharacter(
  19466. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19467. {
  19468. front: {
  19469. height: math.unit(5 + 9 / 12, "feet"),
  19470. weight: math.unit(190, "lb"),
  19471. name: "Front",
  19472. image: {
  19473. source: "./media/characters/atticus/front.svg",
  19474. extra: 2934 / 2785,
  19475. bottom: 0.025
  19476. }
  19477. },
  19478. },
  19479. [
  19480. {
  19481. name: "Normal",
  19482. height: math.unit(5 + 9 / 12, "feet"),
  19483. default: true
  19484. },
  19485. {
  19486. name: "Macro",
  19487. height: math.unit(180, "feet")
  19488. },
  19489. ]
  19490. ))
  19491. characterMakers.push(() => makeCharacter(
  19492. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19493. {
  19494. side: {
  19495. height: math.unit(9, "feet"),
  19496. weight: math.unit(650, "lb"),
  19497. name: "Side",
  19498. image: {
  19499. source: "./media/characters/milo/side.svg",
  19500. extra: 2644 / 2310,
  19501. bottom: 0.032
  19502. }
  19503. },
  19504. },
  19505. [
  19506. {
  19507. name: "Normal",
  19508. height: math.unit(9, "feet"),
  19509. default: true
  19510. },
  19511. {
  19512. name: "Macro",
  19513. height: math.unit(300, "feet")
  19514. },
  19515. ]
  19516. ))
  19517. characterMakers.push(() => makeCharacter(
  19518. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19519. {
  19520. side: {
  19521. height: math.unit(8, "meters"),
  19522. weight: math.unit(90000, "kg"),
  19523. name: "Side",
  19524. image: {
  19525. source: "./media/characters/ijzer/side.svg",
  19526. extra: 2756 / 1600,
  19527. bottom: 0.01
  19528. }
  19529. },
  19530. },
  19531. [
  19532. {
  19533. name: "Small",
  19534. height: math.unit(3, "meters")
  19535. },
  19536. {
  19537. name: "Normal",
  19538. height: math.unit(8, "meters"),
  19539. default: true
  19540. },
  19541. {
  19542. name: "Normal+",
  19543. height: math.unit(10, "meters")
  19544. },
  19545. {
  19546. name: "Bigger",
  19547. height: math.unit(24, "meters")
  19548. },
  19549. {
  19550. name: "Huge",
  19551. height: math.unit(80, "meters")
  19552. },
  19553. ]
  19554. ))
  19555. characterMakers.push(() => makeCharacter(
  19556. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19557. {
  19558. front: {
  19559. height: math.unit(6 + 2 / 12, "feet"),
  19560. weight: math.unit(153, "lb"),
  19561. name: "Front",
  19562. image: {
  19563. source: "./media/characters/luca-cervicum/front.svg",
  19564. extra: 370 / 327,
  19565. bottom: 0.015
  19566. }
  19567. },
  19568. back: {
  19569. height: math.unit(6 + 2 / 12, "feet"),
  19570. weight: math.unit(153, "lb"),
  19571. name: "Back",
  19572. image: {
  19573. source: "./media/characters/luca-cervicum/back.svg",
  19574. extra: 367 / 333,
  19575. bottom: 0.005
  19576. }
  19577. },
  19578. frontGear: {
  19579. height: math.unit(6 + 2 / 12, "feet"),
  19580. weight: math.unit(173, "lb"),
  19581. name: "Front (Gear)",
  19582. image: {
  19583. source: "./media/characters/luca-cervicum/front-gear.svg",
  19584. extra: 377 / 333,
  19585. bottom: 0.006
  19586. }
  19587. },
  19588. },
  19589. [
  19590. {
  19591. name: "Normal",
  19592. height: math.unit(6 + 2 / 12, "feet"),
  19593. default: true
  19594. },
  19595. ]
  19596. ))
  19597. characterMakers.push(() => makeCharacter(
  19598. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19599. {
  19600. front: {
  19601. height: math.unit(6 + 1 / 12, "feet"),
  19602. weight: math.unit(304, "lb"),
  19603. name: "Front",
  19604. image: {
  19605. source: "./media/characters/oliver/front.svg",
  19606. extra: 157 / 143,
  19607. bottom: 0.08
  19608. }
  19609. },
  19610. },
  19611. [
  19612. {
  19613. name: "Normal",
  19614. height: math.unit(6 + 1 / 12, "feet"),
  19615. default: true
  19616. },
  19617. ]
  19618. ))
  19619. characterMakers.push(() => makeCharacter(
  19620. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19621. {
  19622. front: {
  19623. height: math.unit(5 + 7 / 12, "feet"),
  19624. weight: math.unit(140, "lb"),
  19625. name: "Front",
  19626. image: {
  19627. source: "./media/characters/shane/front.svg",
  19628. extra: 304 / 289,
  19629. bottom: 0.005
  19630. }
  19631. },
  19632. },
  19633. [
  19634. {
  19635. name: "Normal",
  19636. height: math.unit(5 + 7 / 12, "feet"),
  19637. default: true
  19638. },
  19639. ]
  19640. ))
  19641. characterMakers.push(() => makeCharacter(
  19642. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19643. {
  19644. front: {
  19645. height: math.unit(5 + 9 / 12, "feet"),
  19646. weight: math.unit(178, "lb"),
  19647. name: "Front",
  19648. image: {
  19649. source: "./media/characters/shin/front.svg",
  19650. extra: 159 / 151,
  19651. bottom: 0.015
  19652. }
  19653. },
  19654. },
  19655. [
  19656. {
  19657. name: "Normal",
  19658. height: math.unit(5 + 9 / 12, "feet"),
  19659. default: true
  19660. },
  19661. ]
  19662. ))
  19663. characterMakers.push(() => makeCharacter(
  19664. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19665. {
  19666. front: {
  19667. height: math.unit(5 + 10 / 12, "feet"),
  19668. weight: math.unit(168, "lb"),
  19669. name: "Front",
  19670. image: {
  19671. source: "./media/characters/xerxes/front.svg",
  19672. extra: 282 / 260,
  19673. bottom: 0.045
  19674. }
  19675. },
  19676. },
  19677. [
  19678. {
  19679. name: "Normal",
  19680. height: math.unit(5 + 10 / 12, "feet"),
  19681. default: true
  19682. },
  19683. ]
  19684. ))
  19685. characterMakers.push(() => makeCharacter(
  19686. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19687. {
  19688. front: {
  19689. height: math.unit(6 + 7 / 12, "feet"),
  19690. weight: math.unit(208, "lb"),
  19691. name: "Front",
  19692. image: {
  19693. source: "./media/characters/chaska/front.svg",
  19694. extra: 332 / 319,
  19695. bottom: 0.015
  19696. }
  19697. },
  19698. },
  19699. [
  19700. {
  19701. name: "Normal",
  19702. height: math.unit(6 + 7 / 12, "feet"),
  19703. default: true
  19704. },
  19705. ]
  19706. ))
  19707. characterMakers.push(() => makeCharacter(
  19708. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19709. {
  19710. front: {
  19711. height: math.unit(5 + 8 / 12, "feet"),
  19712. weight: math.unit(208, "lb"),
  19713. name: "Front",
  19714. image: {
  19715. source: "./media/characters/enuk/front.svg",
  19716. extra: 437 / 406,
  19717. bottom: 0.02
  19718. }
  19719. },
  19720. },
  19721. [
  19722. {
  19723. name: "Normal",
  19724. height: math.unit(5 + 8 / 12, "feet"),
  19725. default: true
  19726. },
  19727. ]
  19728. ))
  19729. characterMakers.push(() => makeCharacter(
  19730. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19731. {
  19732. front: {
  19733. height: math.unit(5 + 10 / 12, "feet"),
  19734. weight: math.unit(252, "lb"),
  19735. name: "Front",
  19736. image: {
  19737. source: "./media/characters/bruun/front.svg",
  19738. extra: 197 / 187,
  19739. bottom: 0.012
  19740. }
  19741. },
  19742. },
  19743. [
  19744. {
  19745. name: "Normal",
  19746. height: math.unit(5 + 10 / 12, "feet"),
  19747. default: true
  19748. },
  19749. ]
  19750. ))
  19751. characterMakers.push(() => makeCharacter(
  19752. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19753. {
  19754. front: {
  19755. height: math.unit(6 + 10 / 12, "feet"),
  19756. weight: math.unit(255, "lb"),
  19757. name: "Front",
  19758. image: {
  19759. source: "./media/characters/alexeev/front.svg",
  19760. extra: 213 / 200,
  19761. bottom: 0.05
  19762. }
  19763. },
  19764. },
  19765. [
  19766. {
  19767. name: "Normal",
  19768. height: math.unit(6 + 10 / 12, "feet"),
  19769. default: true
  19770. },
  19771. ]
  19772. ))
  19773. characterMakers.push(() => makeCharacter(
  19774. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19775. {
  19776. front: {
  19777. height: math.unit(2 + 8 / 12, "feet"),
  19778. weight: math.unit(22, "lb"),
  19779. name: "Front",
  19780. image: {
  19781. source: "./media/characters/evelyn/front.svg",
  19782. extra: 208 / 180
  19783. }
  19784. },
  19785. },
  19786. [
  19787. {
  19788. name: "Normal",
  19789. height: math.unit(2 + 8 / 12, "feet"),
  19790. default: true
  19791. },
  19792. ]
  19793. ))
  19794. characterMakers.push(() => makeCharacter(
  19795. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19796. {
  19797. front: {
  19798. height: math.unit(5 + 9 / 12, "feet"),
  19799. weight: math.unit(139, "lb"),
  19800. name: "Front",
  19801. image: {
  19802. source: "./media/characters/inca/front.svg",
  19803. extra: 294 / 291,
  19804. bottom: 0.03
  19805. }
  19806. },
  19807. },
  19808. [
  19809. {
  19810. name: "Normal",
  19811. height: math.unit(5 + 9 / 12, "feet"),
  19812. default: true
  19813. },
  19814. ]
  19815. ))
  19816. characterMakers.push(() => makeCharacter(
  19817. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19818. {
  19819. front: {
  19820. height: math.unit(5 + 1 / 12, "feet"),
  19821. weight: math.unit(84, "lb"),
  19822. name: "Front",
  19823. image: {
  19824. source: "./media/characters/magdalene/front.svg",
  19825. extra: 293 / 273
  19826. }
  19827. },
  19828. },
  19829. [
  19830. {
  19831. name: "Normal",
  19832. height: math.unit(5 + 1 / 12, "feet"),
  19833. default: true
  19834. },
  19835. ]
  19836. ))
  19837. characterMakers.push(() => makeCharacter(
  19838. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19839. {
  19840. front: {
  19841. height: math.unit(6 + 3 / 12, "feet"),
  19842. weight: math.unit(185, "lb"),
  19843. name: "Front",
  19844. image: {
  19845. source: "./media/characters/mera/front.svg",
  19846. extra: 291 / 277,
  19847. bottom: 0.03
  19848. }
  19849. },
  19850. },
  19851. [
  19852. {
  19853. name: "Normal",
  19854. height: math.unit(6 + 3 / 12, "feet"),
  19855. default: true
  19856. },
  19857. ]
  19858. ))
  19859. characterMakers.push(() => makeCharacter(
  19860. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19861. {
  19862. front: {
  19863. height: math.unit(6 + 7 / 12, "feet"),
  19864. weight: math.unit(160, "lb"),
  19865. name: "Front",
  19866. image: {
  19867. source: "./media/characters/ceres/front.svg",
  19868. extra: 1023 / 950,
  19869. bottom: 0.027
  19870. }
  19871. },
  19872. back: {
  19873. height: math.unit(6 + 7 / 12, "feet"),
  19874. weight: math.unit(160, "lb"),
  19875. name: "Back",
  19876. image: {
  19877. source: "./media/characters/ceres/back.svg",
  19878. extra: 1023 / 950
  19879. }
  19880. },
  19881. },
  19882. [
  19883. {
  19884. name: "Normal",
  19885. height: math.unit(6 + 7 / 12, "feet"),
  19886. default: true
  19887. },
  19888. ]
  19889. ))
  19890. characterMakers.push(() => makeCharacter(
  19891. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19892. {
  19893. front: {
  19894. height: math.unit(5 + 10 / 12, "feet"),
  19895. weight: math.unit(150, "lb"),
  19896. name: "Front",
  19897. image: {
  19898. source: "./media/characters/kris/front.svg",
  19899. extra: 885 / 803,
  19900. bottom: 0.03
  19901. }
  19902. },
  19903. },
  19904. [
  19905. {
  19906. name: "Normal",
  19907. height: math.unit(5 + 10 / 12, "feet"),
  19908. default: true
  19909. },
  19910. ]
  19911. ))
  19912. characterMakers.push(() => makeCharacter(
  19913. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19914. {
  19915. front: {
  19916. height: math.unit(7, "feet"),
  19917. weight: math.unit(120, "kg"),
  19918. name: "Front",
  19919. image: {
  19920. source: "./media/characters/taluthus/front.svg",
  19921. extra: 903 / 833,
  19922. bottom: 0.015
  19923. }
  19924. },
  19925. },
  19926. [
  19927. {
  19928. name: "Normal",
  19929. height: math.unit(7, "feet"),
  19930. default: true
  19931. },
  19932. {
  19933. name: "Macro",
  19934. height: math.unit(300, "feet")
  19935. },
  19936. ]
  19937. ))
  19938. characterMakers.push(() => makeCharacter(
  19939. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19940. {
  19941. front: {
  19942. height: math.unit(5 + 9 / 12, "feet"),
  19943. weight: math.unit(145, "lb"),
  19944. name: "Front",
  19945. image: {
  19946. source: "./media/characters/dawn/front.svg",
  19947. extra: 2094 / 2016,
  19948. bottom: 0.025
  19949. }
  19950. },
  19951. back: {
  19952. height: math.unit(5 + 9 / 12, "feet"),
  19953. weight: math.unit(160, "lb"),
  19954. name: "Back",
  19955. image: {
  19956. source: "./media/characters/dawn/back.svg",
  19957. extra: 2112 / 2080,
  19958. bottom: 0.005
  19959. }
  19960. },
  19961. },
  19962. [
  19963. {
  19964. name: "Normal",
  19965. height: math.unit(6 + 7 / 12, "feet"),
  19966. default: true
  19967. },
  19968. ]
  19969. ))
  19970. characterMakers.push(() => makeCharacter(
  19971. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19972. {
  19973. anthro: {
  19974. height: math.unit(8 + 3 / 12, "feet"),
  19975. weight: math.unit(450, "lb"),
  19976. name: "Anthro",
  19977. image: {
  19978. source: "./media/characters/arador/anthro.svg",
  19979. extra: 1835 / 1718,
  19980. bottom: 0.025
  19981. }
  19982. },
  19983. feral: {
  19984. height: math.unit(4, "feet"),
  19985. weight: math.unit(200, "lb"),
  19986. name: "Feral",
  19987. image: {
  19988. source: "./media/characters/arador/feral.svg",
  19989. extra: 1683 / 1514,
  19990. bottom: 0.07
  19991. }
  19992. },
  19993. },
  19994. [
  19995. {
  19996. name: "Normal",
  19997. height: math.unit(8 + 3 / 12, "feet")
  19998. },
  19999. {
  20000. name: "Macro",
  20001. height: math.unit(82.5, "feet"),
  20002. default: true
  20003. },
  20004. ]
  20005. ))
  20006. characterMakers.push(() => makeCharacter(
  20007. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20008. {
  20009. front: {
  20010. height: math.unit(5 + 10 / 12, "feet"),
  20011. weight: math.unit(125, "lb"),
  20012. name: "Front",
  20013. image: {
  20014. source: "./media/characters/dharsi/front.svg",
  20015. extra: 716 / 630,
  20016. bottom: 0.035
  20017. }
  20018. },
  20019. },
  20020. [
  20021. {
  20022. name: "Nano",
  20023. height: math.unit(100, "nm")
  20024. },
  20025. {
  20026. name: "Micro",
  20027. height: math.unit(2, "inches")
  20028. },
  20029. {
  20030. name: "Normal",
  20031. height: math.unit(5 + 10 / 12, "feet"),
  20032. default: true
  20033. },
  20034. {
  20035. name: "Macro",
  20036. height: math.unit(1000, "feet")
  20037. },
  20038. {
  20039. name: "Megamacro",
  20040. height: math.unit(10, "miles")
  20041. },
  20042. {
  20043. name: "Gigamacro",
  20044. height: math.unit(3000, "miles")
  20045. },
  20046. {
  20047. name: "Teramacro",
  20048. height: math.unit(500000, "miles")
  20049. },
  20050. {
  20051. name: "Teramacro+",
  20052. height: math.unit(30, "galaxies")
  20053. },
  20054. ]
  20055. ))
  20056. characterMakers.push(() => makeCharacter(
  20057. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20058. {
  20059. front: {
  20060. height: math.unit(6, "feet"),
  20061. weight: math.unit(150, "lb"),
  20062. name: "Front",
  20063. image: {
  20064. source: "./media/characters/deathy/front.svg",
  20065. extra: 1552 / 1463,
  20066. bottom: 0.025
  20067. }
  20068. },
  20069. side: {
  20070. height: math.unit(6, "feet"),
  20071. weight: math.unit(150, "lb"),
  20072. name: "Side",
  20073. image: {
  20074. source: "./media/characters/deathy/side.svg",
  20075. extra: 1604 / 1455,
  20076. bottom: 0.025
  20077. }
  20078. },
  20079. back: {
  20080. height: math.unit(6, "feet"),
  20081. weight: math.unit(150, "lb"),
  20082. name: "Back",
  20083. image: {
  20084. source: "./media/characters/deathy/back.svg",
  20085. extra: 1580 / 1463,
  20086. bottom: 0.005
  20087. }
  20088. },
  20089. },
  20090. [
  20091. {
  20092. name: "Micro",
  20093. height: math.unit(5, "millimeters")
  20094. },
  20095. {
  20096. name: "Normal",
  20097. height: math.unit(6 + 5 / 12, "feet"),
  20098. default: true
  20099. },
  20100. ]
  20101. ))
  20102. characterMakers.push(() => makeCharacter(
  20103. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20104. {
  20105. front: {
  20106. height: math.unit(16, "feet"),
  20107. weight: math.unit(4000, "lb"),
  20108. name: "Front",
  20109. image: {
  20110. source: "./media/characters/juniper/front.svg",
  20111. bottom: 0.04
  20112. }
  20113. },
  20114. },
  20115. [
  20116. {
  20117. name: "Normal",
  20118. height: math.unit(16, "feet"),
  20119. default: true
  20120. },
  20121. ]
  20122. ))
  20123. characterMakers.push(() => makeCharacter(
  20124. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20125. {
  20126. front: {
  20127. height: math.unit(6, "feet"),
  20128. weight: math.unit(150, "lb"),
  20129. name: "Front",
  20130. image: {
  20131. source: "./media/characters/hipster/front.svg",
  20132. extra: 1312 / 1209,
  20133. bottom: 0.025
  20134. }
  20135. },
  20136. back: {
  20137. height: math.unit(6, "feet"),
  20138. weight: math.unit(150, "lb"),
  20139. name: "Back",
  20140. image: {
  20141. source: "./media/characters/hipster/back.svg",
  20142. extra: 1281 / 1196,
  20143. bottom: 0.01
  20144. }
  20145. },
  20146. },
  20147. [
  20148. {
  20149. name: "Micro",
  20150. height: math.unit(1, "mm")
  20151. },
  20152. {
  20153. name: "Normal",
  20154. height: math.unit(4, "inches"),
  20155. default: true
  20156. },
  20157. {
  20158. name: "Macro",
  20159. height: math.unit(500, "feet")
  20160. },
  20161. {
  20162. name: "Megamacro",
  20163. height: math.unit(1000, "miles")
  20164. },
  20165. ]
  20166. ))
  20167. characterMakers.push(() => makeCharacter(
  20168. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20169. {
  20170. front: {
  20171. height: math.unit(6, "feet"),
  20172. weight: math.unit(150, "lb"),
  20173. name: "Front",
  20174. image: {
  20175. source: "./media/characters/tendirmuldr/front.svg",
  20176. extra: 1878 / 1772,
  20177. bottom: 0.015
  20178. }
  20179. },
  20180. },
  20181. [
  20182. {
  20183. name: "Megamacro",
  20184. height: math.unit(1500, "miles"),
  20185. default: true
  20186. },
  20187. ]
  20188. ))
  20189. characterMakers.push(() => makeCharacter(
  20190. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20191. {
  20192. front: {
  20193. height: math.unit(14, "feet"),
  20194. weight: math.unit(12000, "lb"),
  20195. name: "Front",
  20196. image: {
  20197. source: "./media/characters/mort/front.svg",
  20198. extra: 365 / 318,
  20199. bottom: 0.01
  20200. }
  20201. },
  20202. side: {
  20203. height: math.unit(14, "feet"),
  20204. weight: math.unit(12000, "lb"),
  20205. name: "Side",
  20206. image: {
  20207. source: "./media/characters/mort/side.svg",
  20208. extra: 365 / 318,
  20209. bottom: 0.052
  20210. },
  20211. default: true
  20212. },
  20213. back: {
  20214. height: math.unit(14, "feet"),
  20215. weight: math.unit(12000, "lb"),
  20216. name: "Back",
  20217. image: {
  20218. source: "./media/characters/mort/back.svg",
  20219. extra: 371 / 332,
  20220. bottom: 0.18
  20221. }
  20222. },
  20223. },
  20224. [
  20225. {
  20226. name: "Normal",
  20227. height: math.unit(14, "feet"),
  20228. default: true
  20229. },
  20230. ]
  20231. ))
  20232. characterMakers.push(() => makeCharacter(
  20233. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20234. {
  20235. front: {
  20236. height: math.unit(8, "feet"),
  20237. weight: math.unit(1, "ton"),
  20238. name: "Front",
  20239. image: {
  20240. source: "./media/characters/lycoa/front.svg",
  20241. extra: 1875 / 1789,
  20242. bottom: 0.022
  20243. }
  20244. },
  20245. back: {
  20246. height: math.unit(8, "feet"),
  20247. weight: math.unit(1, "ton"),
  20248. name: "Back",
  20249. image: {
  20250. source: "./media/characters/lycoa/back.svg",
  20251. extra: 1835 / 1781,
  20252. bottom: 0.03
  20253. }
  20254. },
  20255. head: {
  20256. height: math.unit(2.1, "feet"),
  20257. name: "Head",
  20258. image: {
  20259. source: "./media/characters/lycoa/head.svg"
  20260. }
  20261. },
  20262. tailmaw: {
  20263. height: math.unit(1.9, "feet"),
  20264. name: "Tailmaw",
  20265. image: {
  20266. source: "./media/characters/lycoa/tailmaw.svg"
  20267. }
  20268. },
  20269. tentacles: {
  20270. height: math.unit(2.1, "feet"),
  20271. name: "Tentacles",
  20272. image: {
  20273. source: "./media/characters/lycoa/tentacles.svg"
  20274. }
  20275. },
  20276. dick: {
  20277. height: math.unit(1.73, "feet"),
  20278. name: "Dick",
  20279. image: {
  20280. source: "./media/characters/lycoa/dick.svg"
  20281. }
  20282. },
  20283. },
  20284. [
  20285. {
  20286. name: "Normal",
  20287. height: math.unit(8, "feet"),
  20288. default: true
  20289. },
  20290. {
  20291. name: "Macro",
  20292. height: math.unit(30, "feet")
  20293. },
  20294. ]
  20295. ))
  20296. characterMakers.push(() => makeCharacter(
  20297. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20298. {
  20299. front: {
  20300. height: math.unit(4 + 2 / 12, "feet"),
  20301. weight: math.unit(70, "lb"),
  20302. name: "Front",
  20303. image: {
  20304. source: "./media/characters/naldara/front.svg",
  20305. extra: 841 / 720,
  20306. bottom: 0.04
  20307. }
  20308. },
  20309. naga: {
  20310. height: math.unit(23, "feet"),
  20311. weight: math.unit(15000, "kg"),
  20312. name: "Naga",
  20313. image: {
  20314. source: "./media/characters/naldara/naga.svg",
  20315. extra: 3290 / 2959,
  20316. bottom: 124 / 3432
  20317. }
  20318. },
  20319. },
  20320. [
  20321. {
  20322. name: "Normal",
  20323. height: math.unit(4 + 2 / 12, "feet"),
  20324. default: true
  20325. },
  20326. ]
  20327. ))
  20328. characterMakers.push(() => makeCharacter(
  20329. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20330. {
  20331. front: {
  20332. height: math.unit(13 + 7 / 12, "feet"),
  20333. weight: math.unit(1500, "lb"),
  20334. name: "Front",
  20335. image: {
  20336. source: "./media/characters/briar/front.svg",
  20337. extra: 626 / 596,
  20338. bottom: 0.08
  20339. }
  20340. },
  20341. },
  20342. [
  20343. {
  20344. name: "Normal",
  20345. height: math.unit(13 + 7 / 12, "feet"),
  20346. default: true
  20347. },
  20348. ]
  20349. ))
  20350. characterMakers.push(() => makeCharacter(
  20351. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20352. {
  20353. side: {
  20354. height: math.unit(10, "feet"),
  20355. weight: math.unit(500, "lb"),
  20356. name: "Side",
  20357. image: {
  20358. source: "./media/characters/vanguard/side.svg",
  20359. extra: 502 / 425,
  20360. bottom: 0.087
  20361. }
  20362. },
  20363. },
  20364. [
  20365. {
  20366. name: "Normal",
  20367. height: math.unit(10, "feet"),
  20368. default: true
  20369. },
  20370. ]
  20371. ))
  20372. characterMakers.push(() => makeCharacter(
  20373. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20374. {
  20375. front: {
  20376. height: math.unit(7.5, "feet"),
  20377. weight: math.unit(2, "lb"),
  20378. name: "Front",
  20379. image: {
  20380. source: "./media/characters/artemis/front.svg",
  20381. extra: 1192 / 1075,
  20382. bottom: 0.07
  20383. }
  20384. },
  20385. frontNsfw: {
  20386. height: math.unit(7.5, "feet"),
  20387. weight: math.unit(2, "lb"),
  20388. name: "Front (NSFW)",
  20389. image: {
  20390. source: "./media/characters/artemis/front-nsfw.svg",
  20391. extra: 1192 / 1075,
  20392. bottom: 0.07
  20393. }
  20394. },
  20395. frontNsfwer: {
  20396. height: math.unit(7.5, "feet"),
  20397. weight: math.unit(2, "lb"),
  20398. name: "Front (NSFW-er)",
  20399. image: {
  20400. source: "./media/characters/artemis/front-nsfwer.svg",
  20401. extra: 1192 / 1075,
  20402. bottom: 0.07
  20403. }
  20404. },
  20405. side: {
  20406. height: math.unit(7.5, "feet"),
  20407. weight: math.unit(2, "lb"),
  20408. name: "Side",
  20409. image: {
  20410. source: "./media/characters/artemis/side.svg",
  20411. extra: 1192 / 1075,
  20412. bottom: 0.07
  20413. }
  20414. },
  20415. sideNsfw: {
  20416. height: math.unit(7.5, "feet"),
  20417. weight: math.unit(2, "lb"),
  20418. name: "Side (NSFW)",
  20419. image: {
  20420. source: "./media/characters/artemis/side-nsfw.svg",
  20421. extra: 1192 / 1075,
  20422. bottom: 0.07
  20423. }
  20424. },
  20425. sideNsfwer: {
  20426. height: math.unit(7.5, "feet"),
  20427. weight: math.unit(2, "lb"),
  20428. name: "Side (NSFW-er)",
  20429. image: {
  20430. source: "./media/characters/artemis/side-nsfwer.svg",
  20431. extra: 1192 / 1075,
  20432. bottom: 0.07
  20433. }
  20434. },
  20435. maw: {
  20436. height: math.unit(1.1, "feet"),
  20437. name: "Maw",
  20438. image: {
  20439. source: "./media/characters/artemis/maw.svg"
  20440. }
  20441. },
  20442. stomach: {
  20443. height: math.unit(0.95, "feet"),
  20444. name: "Stomach",
  20445. image: {
  20446. source: "./media/characters/artemis/stomach.svg"
  20447. }
  20448. },
  20449. dickCanine: {
  20450. height: math.unit(1, "feet"),
  20451. name: "Dick (Canine)",
  20452. image: {
  20453. source: "./media/characters/artemis/dick-canine.svg"
  20454. }
  20455. },
  20456. dickEquine: {
  20457. height: math.unit(0.85, "feet"),
  20458. name: "Dick (Equine)",
  20459. image: {
  20460. source: "./media/characters/artemis/dick-equine.svg"
  20461. }
  20462. },
  20463. dickExotic: {
  20464. height: math.unit(0.85, "feet"),
  20465. name: "Dick (Exotic)",
  20466. image: {
  20467. source: "./media/characters/artemis/dick-exotic.svg"
  20468. }
  20469. },
  20470. },
  20471. [
  20472. {
  20473. name: "Normal",
  20474. height: math.unit(7.5, "feet"),
  20475. default: true
  20476. },
  20477. {
  20478. name: "Enlarged",
  20479. height: math.unit(12, "feet")
  20480. },
  20481. ]
  20482. ))
  20483. characterMakers.push(() => makeCharacter(
  20484. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20485. {
  20486. front: {
  20487. height: math.unit(5 + 3 / 12, "feet"),
  20488. weight: math.unit(160, "lb"),
  20489. name: "Front",
  20490. image: {
  20491. source: "./media/characters/kira/front.svg",
  20492. extra: 906 / 786,
  20493. bottom: 0.01
  20494. }
  20495. },
  20496. back: {
  20497. height: math.unit(5 + 3 / 12, "feet"),
  20498. weight: math.unit(160, "lb"),
  20499. name: "Back",
  20500. image: {
  20501. source: "./media/characters/kira/back.svg",
  20502. extra: 882 / 757,
  20503. bottom: 0.005
  20504. }
  20505. },
  20506. frontDressed: {
  20507. height: math.unit(5 + 3 / 12, "feet"),
  20508. weight: math.unit(160, "lb"),
  20509. name: "Front (Dressed)",
  20510. image: {
  20511. source: "./media/characters/kira/front-dressed.svg",
  20512. extra: 906 / 786,
  20513. bottom: 0.01
  20514. }
  20515. },
  20516. beans: {
  20517. height: math.unit(0.92, "feet"),
  20518. name: "Beans",
  20519. image: {
  20520. source: "./media/characters/kira/beans.svg"
  20521. }
  20522. },
  20523. },
  20524. [
  20525. {
  20526. name: "Normal",
  20527. height: math.unit(5 + 3 / 12, "feet"),
  20528. default: true
  20529. },
  20530. ]
  20531. ))
  20532. characterMakers.push(() => makeCharacter(
  20533. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20534. {
  20535. front: {
  20536. height: math.unit(5 + 4 / 12, "feet"),
  20537. weight: math.unit(145, "lb"),
  20538. name: "Front",
  20539. image: {
  20540. source: "./media/characters/scramble/front.svg",
  20541. extra: 763 / 727,
  20542. bottom: 0.05
  20543. }
  20544. },
  20545. back: {
  20546. height: math.unit(5 + 4 / 12, "feet"),
  20547. weight: math.unit(145, "lb"),
  20548. name: "Back",
  20549. image: {
  20550. source: "./media/characters/scramble/back.svg",
  20551. extra: 826 / 737,
  20552. bottom: 0.002
  20553. }
  20554. },
  20555. },
  20556. [
  20557. {
  20558. name: "Normal",
  20559. height: math.unit(5 + 4 / 12, "feet"),
  20560. default: true
  20561. },
  20562. ]
  20563. ))
  20564. characterMakers.push(() => makeCharacter(
  20565. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20566. {
  20567. side: {
  20568. height: math.unit(6 + 2 / 12, "feet"),
  20569. weight: math.unit(190, "lb"),
  20570. name: "Side",
  20571. image: {
  20572. source: "./media/characters/biscuit/side.svg",
  20573. extra: 858 / 791,
  20574. bottom: 0.044
  20575. }
  20576. },
  20577. },
  20578. [
  20579. {
  20580. name: "Normal",
  20581. height: math.unit(6 + 2 / 12, "feet"),
  20582. default: true
  20583. },
  20584. ]
  20585. ))
  20586. characterMakers.push(() => makeCharacter(
  20587. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20588. {
  20589. front: {
  20590. height: math.unit(5 + 2 / 12, "feet"),
  20591. weight: math.unit(120, "lb"),
  20592. name: "Front",
  20593. image: {
  20594. source: "./media/characters/poffin/front.svg",
  20595. extra: 786 / 680,
  20596. bottom: 0.005
  20597. }
  20598. },
  20599. },
  20600. [
  20601. {
  20602. name: "Normal",
  20603. height: math.unit(5 + 2 / 12, "feet"),
  20604. default: true
  20605. },
  20606. ]
  20607. ))
  20608. characterMakers.push(() => makeCharacter(
  20609. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20610. {
  20611. front: {
  20612. height: math.unit(6 + 3 / 12, "feet"),
  20613. weight: math.unit(519, "lb"),
  20614. name: "Front",
  20615. image: {
  20616. source: "./media/characters/dhari/front.svg",
  20617. extra: 1048 / 946,
  20618. bottom: 0.015
  20619. }
  20620. },
  20621. back: {
  20622. height: math.unit(6 + 3 / 12, "feet"),
  20623. weight: math.unit(519, "lb"),
  20624. name: "Back",
  20625. image: {
  20626. source: "./media/characters/dhari/back.svg",
  20627. extra: 1048 / 931,
  20628. bottom: 0.005
  20629. }
  20630. },
  20631. frontDressed: {
  20632. height: math.unit(6 + 3 / 12, "feet"),
  20633. weight: math.unit(519, "lb"),
  20634. name: "Front (Dressed)",
  20635. image: {
  20636. source: "./media/characters/dhari/front-dressed.svg",
  20637. extra: 1713 / 1546,
  20638. bottom: 0.02
  20639. }
  20640. },
  20641. backDressed: {
  20642. height: math.unit(6 + 3 / 12, "feet"),
  20643. weight: math.unit(519, "lb"),
  20644. name: "Back (Dressed)",
  20645. image: {
  20646. source: "./media/characters/dhari/back-dressed.svg",
  20647. extra: 1699 / 1537,
  20648. bottom: 0.01
  20649. }
  20650. },
  20651. maw: {
  20652. height: math.unit(0.95, "feet"),
  20653. name: "Maw",
  20654. image: {
  20655. source: "./media/characters/dhari/maw.svg"
  20656. }
  20657. },
  20658. wereFront: {
  20659. height: math.unit(12 + 8 / 12, "feet"),
  20660. weight: math.unit(4000, "lb"),
  20661. name: "Front (Were)",
  20662. image: {
  20663. source: "./media/characters/dhari/were-front.svg",
  20664. extra: 1065 / 969,
  20665. bottom: 0.015
  20666. }
  20667. },
  20668. wereBack: {
  20669. height: math.unit(12 + 8 / 12, "feet"),
  20670. weight: math.unit(4000, "lb"),
  20671. name: "Back (Were)",
  20672. image: {
  20673. source: "./media/characters/dhari/were-back.svg",
  20674. extra: 1065 / 969,
  20675. bottom: 0.012
  20676. }
  20677. },
  20678. wereMaw: {
  20679. height: math.unit(0.625, "meters"),
  20680. name: "Maw (Were)",
  20681. image: {
  20682. source: "./media/characters/dhari/were-maw.svg"
  20683. }
  20684. },
  20685. },
  20686. [
  20687. {
  20688. name: "Normal",
  20689. height: math.unit(6 + 3 / 12, "feet"),
  20690. default: true
  20691. },
  20692. ]
  20693. ))
  20694. characterMakers.push(() => makeCharacter(
  20695. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20696. {
  20697. anthro: {
  20698. height: math.unit(5 + 7 / 12, "feet"),
  20699. weight: math.unit(175, "lb"),
  20700. name: "Anthro",
  20701. image: {
  20702. source: "./media/characters/rena-dyne/anthro.svg",
  20703. extra: 1849 / 1785,
  20704. bottom: 0.005
  20705. }
  20706. },
  20707. taur: {
  20708. height: math.unit(15 + 6 / 12, "feet"),
  20709. weight: math.unit(8000, "lb"),
  20710. name: "Taur",
  20711. image: {
  20712. source: "./media/characters/rena-dyne/taur.svg",
  20713. extra: 2315 / 2234,
  20714. bottom: 0.033
  20715. }
  20716. },
  20717. },
  20718. [
  20719. {
  20720. name: "Normal",
  20721. height: math.unit(5 + 7 / 12, "feet"),
  20722. default: true
  20723. },
  20724. ]
  20725. ))
  20726. characterMakers.push(() => makeCharacter(
  20727. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20728. {
  20729. front: {
  20730. height: math.unit(8, "feet"),
  20731. weight: math.unit(600, "lb"),
  20732. name: "Front",
  20733. image: {
  20734. source: "./media/characters/weremeep/front.svg",
  20735. extra: 967 / 862,
  20736. bottom: 0.01
  20737. }
  20738. },
  20739. },
  20740. [
  20741. {
  20742. name: "Normal",
  20743. height: math.unit(8, "feet"),
  20744. default: true
  20745. },
  20746. {
  20747. name: "Lorg",
  20748. height: math.unit(12, "feet")
  20749. },
  20750. {
  20751. name: "Oh Lawd She Comin'",
  20752. height: math.unit(20, "feet")
  20753. },
  20754. ]
  20755. ))
  20756. characterMakers.push(() => makeCharacter(
  20757. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20758. {
  20759. front: {
  20760. height: math.unit(4, "feet"),
  20761. weight: math.unit(90, "lb"),
  20762. name: "Front",
  20763. image: {
  20764. source: "./media/characters/reza/front.svg",
  20765. extra: 1183 / 1111,
  20766. bottom: 0.017
  20767. }
  20768. },
  20769. back: {
  20770. height: math.unit(4, "feet"),
  20771. weight: math.unit(90, "lb"),
  20772. name: "Back",
  20773. image: {
  20774. source: "./media/characters/reza/back.svg",
  20775. extra: 1183 / 1111,
  20776. bottom: 0.01
  20777. }
  20778. },
  20779. drake: {
  20780. height: math.unit(30, "feet"),
  20781. weight: math.unit(246960, "lb"),
  20782. name: "Drake",
  20783. image: {
  20784. source: "./media/characters/reza/drake.svg",
  20785. extra: 2350 / 2024,
  20786. bottom: 60.7 / 2403
  20787. }
  20788. },
  20789. },
  20790. [
  20791. {
  20792. name: "Normal",
  20793. height: math.unit(4, "feet"),
  20794. default: true
  20795. },
  20796. ]
  20797. ))
  20798. characterMakers.push(() => makeCharacter(
  20799. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20800. {
  20801. side: {
  20802. height: math.unit(15, "feet"),
  20803. weight: math.unit(14, "tons"),
  20804. name: "Side",
  20805. image: {
  20806. source: "./media/characters/athea/side.svg",
  20807. extra: 960 / 540,
  20808. bottom: 0.003
  20809. }
  20810. },
  20811. sitting: {
  20812. height: math.unit(6 * 2.85, "feet"),
  20813. weight: math.unit(14, "tons"),
  20814. name: "Sitting",
  20815. image: {
  20816. source: "./media/characters/athea/sitting.svg",
  20817. extra: 621 / 581,
  20818. bottom: 0.075
  20819. }
  20820. },
  20821. maw: {
  20822. height: math.unit(7.59498031496063, "feet"),
  20823. name: "Maw",
  20824. image: {
  20825. source: "./media/characters/athea/maw.svg"
  20826. }
  20827. },
  20828. },
  20829. [
  20830. {
  20831. name: "Lap Cat",
  20832. height: math.unit(2.5, "feet")
  20833. },
  20834. {
  20835. name: "Minimacro",
  20836. height: math.unit(15, "feet"),
  20837. default: true
  20838. },
  20839. {
  20840. name: "Macro",
  20841. height: math.unit(120, "feet")
  20842. },
  20843. {
  20844. name: "Macro+",
  20845. height: math.unit(640, "feet")
  20846. },
  20847. {
  20848. name: "Colossus",
  20849. height: math.unit(2.2, "miles")
  20850. },
  20851. ]
  20852. ))
  20853. characterMakers.push(() => makeCharacter(
  20854. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20855. {
  20856. front: {
  20857. height: math.unit(8 + 8 / 12, "feet"),
  20858. weight: math.unit(130, "kg"),
  20859. name: "Front",
  20860. image: {
  20861. source: "./media/characters/seroko/front.svg",
  20862. extra: 1385 / 1280,
  20863. bottom: 0.025
  20864. }
  20865. },
  20866. back: {
  20867. height: math.unit(8 + 8 / 12, "feet"),
  20868. weight: math.unit(130, "kg"),
  20869. name: "Back",
  20870. image: {
  20871. source: "./media/characters/seroko/back.svg",
  20872. extra: 1369 / 1238,
  20873. bottom: 0.018
  20874. }
  20875. },
  20876. frontDressed: {
  20877. height: math.unit(8 + 8 / 12, "feet"),
  20878. weight: math.unit(130, "kg"),
  20879. name: "Front (Dressed)",
  20880. image: {
  20881. source: "./media/characters/seroko/front-dressed.svg",
  20882. extra: 1366 / 1275,
  20883. bottom: 0.03
  20884. }
  20885. },
  20886. },
  20887. [
  20888. {
  20889. name: "Normal",
  20890. height: math.unit(8 + 8 / 12, "feet"),
  20891. default: true
  20892. },
  20893. ]
  20894. ))
  20895. characterMakers.push(() => makeCharacter(
  20896. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20897. {
  20898. front: {
  20899. height: math.unit(5.5, "feet"),
  20900. weight: math.unit(160, "lb"),
  20901. name: "Front",
  20902. image: {
  20903. source: "./media/characters/quatzi/front.svg",
  20904. extra: 2346 / 2242,
  20905. bottom: 0.015
  20906. }
  20907. },
  20908. },
  20909. [
  20910. {
  20911. name: "Normal",
  20912. height: math.unit(5.5, "feet"),
  20913. default: true
  20914. },
  20915. {
  20916. name: "Big",
  20917. height: math.unit(7.7, "feet")
  20918. },
  20919. ]
  20920. ))
  20921. characterMakers.push(() => makeCharacter(
  20922. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20923. {
  20924. front: {
  20925. height: math.unit(5 + 11 / 12, "feet"),
  20926. weight: math.unit(180, "lb"),
  20927. name: "Front",
  20928. image: {
  20929. source: "./media/characters/sen/front.svg",
  20930. extra: 1321 / 1254,
  20931. bottom: 0.015
  20932. }
  20933. },
  20934. side: {
  20935. height: math.unit(5 + 11 / 12, "feet"),
  20936. weight: math.unit(180, "lb"),
  20937. name: "Side",
  20938. image: {
  20939. source: "./media/characters/sen/side.svg",
  20940. extra: 1321 / 1254,
  20941. bottom: 0.007
  20942. }
  20943. },
  20944. back: {
  20945. height: math.unit(5 + 11 / 12, "feet"),
  20946. weight: math.unit(180, "lb"),
  20947. name: "Back",
  20948. image: {
  20949. source: "./media/characters/sen/back.svg",
  20950. extra: 1321 / 1254
  20951. }
  20952. },
  20953. },
  20954. [
  20955. {
  20956. name: "Normal",
  20957. height: math.unit(5 + 11 / 12, "feet"),
  20958. default: true
  20959. },
  20960. ]
  20961. ))
  20962. characterMakers.push(() => makeCharacter(
  20963. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20964. {
  20965. front: {
  20966. height: math.unit(166.6, "cm"),
  20967. weight: math.unit(66.6, "kg"),
  20968. name: "Front",
  20969. image: {
  20970. source: "./media/characters/fruity/front.svg",
  20971. extra: 1510 / 1386,
  20972. bottom: 0.04
  20973. }
  20974. },
  20975. back: {
  20976. height: math.unit(166.6, "cm"),
  20977. weight: math.unit(66.6, "lb"),
  20978. name: "Back",
  20979. image: {
  20980. source: "./media/characters/fruity/back.svg",
  20981. extra: 1563 / 1435,
  20982. bottom: 0.005
  20983. }
  20984. },
  20985. },
  20986. [
  20987. {
  20988. name: "Normal",
  20989. height: math.unit(166.6, "cm"),
  20990. default: true
  20991. },
  20992. {
  20993. name: "Demonic",
  20994. height: math.unit(166.6, "feet")
  20995. },
  20996. ]
  20997. ))
  20998. characterMakers.push(() => makeCharacter(
  20999. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21000. {
  21001. side: {
  21002. height: math.unit(10, "feet"),
  21003. weight: math.unit(500, "lb"),
  21004. name: "Side",
  21005. image: {
  21006. source: "./media/characters/zost/side.svg",
  21007. extra: 966 / 880,
  21008. bottom: 0.075
  21009. }
  21010. },
  21011. mawFront: {
  21012. height: math.unit(1.08, "meters"),
  21013. name: "Maw (Front)",
  21014. image: {
  21015. source: "./media/characters/zost/maw-front.svg"
  21016. }
  21017. },
  21018. mawSide: {
  21019. height: math.unit(2.66, "feet"),
  21020. name: "Maw (Side)",
  21021. image: {
  21022. source: "./media/characters/zost/maw-side.svg"
  21023. }
  21024. },
  21025. },
  21026. [
  21027. {
  21028. name: "Normal",
  21029. height: math.unit(10, "feet"),
  21030. default: true
  21031. },
  21032. ]
  21033. ))
  21034. characterMakers.push(() => makeCharacter(
  21035. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21036. {
  21037. front: {
  21038. height: math.unit(5 + 4 / 12, "feet"),
  21039. weight: math.unit(120, "lb"),
  21040. name: "Front",
  21041. image: {
  21042. source: "./media/characters/luci/front.svg",
  21043. extra: 1985 / 1884,
  21044. bottom: 0.04
  21045. }
  21046. },
  21047. back: {
  21048. height: math.unit(5 + 4 / 12, "feet"),
  21049. weight: math.unit(120, "lb"),
  21050. name: "Back",
  21051. image: {
  21052. source: "./media/characters/luci/back.svg",
  21053. extra: 1892 / 1791,
  21054. bottom: 0.002
  21055. }
  21056. },
  21057. },
  21058. [
  21059. {
  21060. name: "Normal",
  21061. height: math.unit(5 + 4 / 12, "feet"),
  21062. default: true
  21063. },
  21064. ]
  21065. ))
  21066. characterMakers.push(() => makeCharacter(
  21067. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21068. {
  21069. front: {
  21070. height: math.unit(1500, "feet"),
  21071. weight: math.unit(3.8e6, "tons"),
  21072. name: "Front",
  21073. image: {
  21074. source: "./media/characters/2th/front.svg",
  21075. extra: 3489 / 3350,
  21076. bottom: 0.1
  21077. }
  21078. },
  21079. foot: {
  21080. height: math.unit(461, "feet"),
  21081. name: "Foot",
  21082. image: {
  21083. source: "./media/characters/2th/foot.svg"
  21084. }
  21085. },
  21086. },
  21087. [
  21088. {
  21089. name: "\"Micro\"",
  21090. height: math.unit(15 + 7 / 12, "feet")
  21091. },
  21092. {
  21093. name: "Normal",
  21094. height: math.unit(1500, "feet"),
  21095. default: true
  21096. },
  21097. {
  21098. name: "Macro",
  21099. height: math.unit(5000, "feet")
  21100. },
  21101. {
  21102. name: "Megamacro",
  21103. height: math.unit(15, "miles")
  21104. },
  21105. {
  21106. name: "Gigamacro",
  21107. height: math.unit(4000, "miles")
  21108. },
  21109. {
  21110. name: "Galactic",
  21111. height: math.unit(50, "AU")
  21112. },
  21113. ]
  21114. ))
  21115. characterMakers.push(() => makeCharacter(
  21116. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21117. {
  21118. front: {
  21119. height: math.unit(5 + 6 / 12, "feet"),
  21120. weight: math.unit(220, "lb"),
  21121. name: "Front",
  21122. image: {
  21123. source: "./media/characters/amethyst/front.svg",
  21124. extra: 2078 / 2040,
  21125. bottom: 0.045
  21126. }
  21127. },
  21128. back: {
  21129. height: math.unit(5 + 6 / 12, "feet"),
  21130. weight: math.unit(220, "lb"),
  21131. name: "Back",
  21132. image: {
  21133. source: "./media/characters/amethyst/back.svg",
  21134. extra: 2021 / 1989,
  21135. bottom: 0.02
  21136. }
  21137. },
  21138. },
  21139. [
  21140. {
  21141. name: "Normal",
  21142. height: math.unit(5 + 6 / 12, "feet"),
  21143. default: true
  21144. },
  21145. ]
  21146. ))
  21147. characterMakers.push(() => makeCharacter(
  21148. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21149. {
  21150. front: {
  21151. height: math.unit(4 + 11 / 12, "feet"),
  21152. weight: math.unit(120, "lb"),
  21153. name: "Front",
  21154. image: {
  21155. source: "./media/characters/yumi-akiyama/front.svg",
  21156. extra: 1327 / 1235,
  21157. bottom: 0.02
  21158. }
  21159. },
  21160. back: {
  21161. height: math.unit(4 + 11 / 12, "feet"),
  21162. weight: math.unit(120, "lb"),
  21163. name: "Back",
  21164. image: {
  21165. source: "./media/characters/yumi-akiyama/back.svg",
  21166. extra: 1287 / 1245,
  21167. bottom: 0.002
  21168. }
  21169. },
  21170. },
  21171. [
  21172. {
  21173. name: "Galactic",
  21174. height: math.unit(50, "galaxies"),
  21175. default: true
  21176. },
  21177. {
  21178. name: "Universal",
  21179. height: math.unit(100, "universes")
  21180. },
  21181. ]
  21182. ))
  21183. characterMakers.push(() => makeCharacter(
  21184. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21185. {
  21186. front: {
  21187. height: math.unit(8, "feet"),
  21188. weight: math.unit(500, "lb"),
  21189. name: "Front",
  21190. image: {
  21191. source: "./media/characters/rifter-yrmori/front.svg",
  21192. extra: 1180 / 1125,
  21193. bottom: 0.02
  21194. }
  21195. },
  21196. back: {
  21197. height: math.unit(8, "feet"),
  21198. weight: math.unit(500, "lb"),
  21199. name: "Back",
  21200. image: {
  21201. source: "./media/characters/rifter-yrmori/back.svg",
  21202. extra: 1190 / 1145,
  21203. bottom: 0.001
  21204. }
  21205. },
  21206. wings: {
  21207. height: math.unit(7.75, "feet"),
  21208. weight: math.unit(500, "lb"),
  21209. name: "Wings",
  21210. image: {
  21211. source: "./media/characters/rifter-yrmori/wings.svg",
  21212. extra: 1357 / 1285
  21213. }
  21214. },
  21215. maw: {
  21216. height: math.unit(0.8, "feet"),
  21217. name: "Maw",
  21218. image: {
  21219. source: "./media/characters/rifter-yrmori/maw.svg"
  21220. }
  21221. },
  21222. mawfront: {
  21223. height: math.unit(1.45, "feet"),
  21224. name: "Maw (Front)",
  21225. image: {
  21226. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21227. }
  21228. },
  21229. },
  21230. [
  21231. {
  21232. name: "Normal",
  21233. height: math.unit(8, "feet"),
  21234. default: true
  21235. },
  21236. {
  21237. name: "Macro",
  21238. height: math.unit(42, "meters")
  21239. },
  21240. ]
  21241. ))
  21242. characterMakers.push(() => makeCharacter(
  21243. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21244. {
  21245. were: {
  21246. height: math.unit(25 + 6 / 12, "feet"),
  21247. weight: math.unit(10000, "lb"),
  21248. name: "Were",
  21249. image: {
  21250. source: "./media/characters/tahajin/were.svg",
  21251. extra: 801 / 770,
  21252. bottom: 0.042
  21253. }
  21254. },
  21255. aquatic: {
  21256. height: math.unit(6 + 4 / 12, "feet"),
  21257. weight: math.unit(160, "lb"),
  21258. name: "Aquatic",
  21259. image: {
  21260. source: "./media/characters/tahajin/aquatic.svg",
  21261. extra: 572 / 542,
  21262. bottom: 0.04
  21263. }
  21264. },
  21265. chow: {
  21266. height: math.unit(8 + 11 / 12, "feet"),
  21267. weight: math.unit(450, "lb"),
  21268. name: "Chow",
  21269. image: {
  21270. source: "./media/characters/tahajin/chow.svg",
  21271. extra: 660 / 640,
  21272. bottom: 0.015
  21273. }
  21274. },
  21275. demiNaga: {
  21276. height: math.unit(6 + 8 / 12, "feet"),
  21277. weight: math.unit(300, "lb"),
  21278. name: "Demi Naga",
  21279. image: {
  21280. source: "./media/characters/tahajin/demi-naga.svg",
  21281. extra: 643 / 615,
  21282. bottom: 0.1
  21283. }
  21284. },
  21285. data: {
  21286. height: math.unit(5, "inches"),
  21287. weight: math.unit(0.1, "lb"),
  21288. name: "Data",
  21289. image: {
  21290. source: "./media/characters/tahajin/data.svg"
  21291. }
  21292. },
  21293. fluu: {
  21294. height: math.unit(5 + 7 / 12, "feet"),
  21295. weight: math.unit(140, "lb"),
  21296. name: "Fluu",
  21297. image: {
  21298. source: "./media/characters/tahajin/fluu.svg",
  21299. extra: 628 / 592,
  21300. bottom: 0.02
  21301. }
  21302. },
  21303. starWarrior: {
  21304. height: math.unit(4 + 5 / 12, "feet"),
  21305. weight: math.unit(50, "lb"),
  21306. name: "Star Warrior",
  21307. image: {
  21308. source: "./media/characters/tahajin/star-warrior.svg"
  21309. }
  21310. },
  21311. },
  21312. [
  21313. {
  21314. name: "Normal",
  21315. height: math.unit(25 + 6 / 12, "feet"),
  21316. default: true
  21317. },
  21318. ]
  21319. ))
  21320. characterMakers.push(() => makeCharacter(
  21321. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21322. {
  21323. front: {
  21324. height: math.unit(8, "feet"),
  21325. weight: math.unit(350, "lb"),
  21326. name: "Front",
  21327. image: {
  21328. source: "./media/characters/gabira/front.svg",
  21329. extra: 608 / 580,
  21330. bottom: 0.03
  21331. }
  21332. },
  21333. back: {
  21334. height: math.unit(8, "feet"),
  21335. weight: math.unit(350, "lb"),
  21336. name: "Back",
  21337. image: {
  21338. source: "./media/characters/gabira/back.svg",
  21339. extra: 608 / 580,
  21340. bottom: 0.03
  21341. }
  21342. },
  21343. },
  21344. [
  21345. {
  21346. name: "Normal",
  21347. height: math.unit(8, "feet"),
  21348. default: true
  21349. },
  21350. ]
  21351. ))
  21352. characterMakers.push(() => makeCharacter(
  21353. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21354. {
  21355. front: {
  21356. height: math.unit(5 + 3 / 12, "feet"),
  21357. weight: math.unit(137, "lb"),
  21358. name: "Front",
  21359. image: {
  21360. source: "./media/characters/sasha-katraine/front.svg",
  21361. bottom: 0.045
  21362. }
  21363. },
  21364. },
  21365. [
  21366. {
  21367. name: "Micro",
  21368. height: math.unit(5, "inches")
  21369. },
  21370. {
  21371. name: "Normal",
  21372. height: math.unit(5 + 3 / 12, "feet"),
  21373. default: true
  21374. },
  21375. ]
  21376. ))
  21377. characterMakers.push(() => makeCharacter(
  21378. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21379. {
  21380. side: {
  21381. height: math.unit(4, "inches"),
  21382. weight: math.unit(200, "grams"),
  21383. name: "Side",
  21384. image: {
  21385. source: "./media/characters/der/side.svg",
  21386. extra: 719 / 400,
  21387. bottom: 30.6 / 749.9187
  21388. }
  21389. },
  21390. },
  21391. [
  21392. {
  21393. name: "Micro",
  21394. height: math.unit(4, "inches"),
  21395. default: true
  21396. },
  21397. ]
  21398. ))
  21399. characterMakers.push(() => makeCharacter(
  21400. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21401. {
  21402. side: {
  21403. height: math.unit(30, "meters"),
  21404. weight: math.unit(700, "tonnes"),
  21405. name: "Side",
  21406. image: {
  21407. source: "./media/characters/fixerdragon/side.svg",
  21408. extra: (1293.0514 - 116.03) / 1106.86,
  21409. bottom: 116.03 / 1293.0514
  21410. }
  21411. },
  21412. },
  21413. [
  21414. {
  21415. name: "Planck",
  21416. height: math.unit(1.6e-35, "meters")
  21417. },
  21418. {
  21419. name: "Micro",
  21420. height: math.unit(0.4, "meters")
  21421. },
  21422. {
  21423. name: "Normal",
  21424. height: math.unit(30, "meters"),
  21425. default: true
  21426. },
  21427. {
  21428. name: "Megamacro",
  21429. height: math.unit(1.2, "megameters")
  21430. },
  21431. {
  21432. name: "Teramacro",
  21433. height: math.unit(130, "terameters")
  21434. },
  21435. {
  21436. name: "Yottamacro",
  21437. height: math.unit(6200, "yottameters")
  21438. },
  21439. ]
  21440. ));
  21441. characterMakers.push(() => makeCharacter(
  21442. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21443. {
  21444. front: {
  21445. height: math.unit(8, "feet"),
  21446. weight: math.unit(250, "lb"),
  21447. name: "Front",
  21448. image: {
  21449. source: "./media/characters/kite/front.svg",
  21450. extra: 2796 / 2659,
  21451. bottom: 0.002
  21452. }
  21453. },
  21454. },
  21455. [
  21456. {
  21457. name: "Normal",
  21458. height: math.unit(8, "feet"),
  21459. default: true
  21460. },
  21461. {
  21462. name: "Macro",
  21463. height: math.unit(360, "feet")
  21464. },
  21465. {
  21466. name: "Megamacro",
  21467. height: math.unit(1500, "feet")
  21468. },
  21469. ]
  21470. ))
  21471. characterMakers.push(() => makeCharacter(
  21472. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21473. {
  21474. front: {
  21475. height: math.unit(5 + 10 / 12, "feet"),
  21476. weight: math.unit(150, "lb"),
  21477. name: "Front",
  21478. image: {
  21479. source: "./media/characters/poojawa-vynar/front.svg",
  21480. extra: (1506.1547 - 55) / 1356.6,
  21481. bottom: 55 / 1506.1547
  21482. }
  21483. },
  21484. frontTailless: {
  21485. height: math.unit(5 + 10 / 12, "feet"),
  21486. weight: math.unit(150, "lb"),
  21487. name: "Front (Tailless)",
  21488. image: {
  21489. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21490. extra: (1506.1547 - 55) / 1356.6,
  21491. bottom: 55 / 1506.1547
  21492. }
  21493. },
  21494. },
  21495. [
  21496. {
  21497. name: "Normal",
  21498. height: math.unit(5 + 10 / 12, "feet"),
  21499. default: true
  21500. },
  21501. ]
  21502. ))
  21503. characterMakers.push(() => makeCharacter(
  21504. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21505. {
  21506. front: {
  21507. height: math.unit(293, "meters"),
  21508. weight: math.unit(70400, "tons"),
  21509. name: "Front",
  21510. image: {
  21511. source: "./media/characters/violette/front.svg",
  21512. extra: 1227 / 1180,
  21513. bottom: 0.005
  21514. }
  21515. },
  21516. back: {
  21517. height: math.unit(293, "meters"),
  21518. weight: math.unit(70400, "tons"),
  21519. name: "Back",
  21520. image: {
  21521. source: "./media/characters/violette/back.svg",
  21522. extra: 1227 / 1180,
  21523. bottom: 0.005
  21524. }
  21525. },
  21526. },
  21527. [
  21528. {
  21529. name: "Macro",
  21530. height: math.unit(293, "meters"),
  21531. default: true
  21532. },
  21533. ]
  21534. ))
  21535. characterMakers.push(() => makeCharacter(
  21536. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21537. {
  21538. front: {
  21539. height: math.unit(1050, "feet"),
  21540. weight: math.unit(200000, "tons"),
  21541. name: "Front",
  21542. image: {
  21543. source: "./media/characters/alessandra/front.svg",
  21544. extra: 960 / 912,
  21545. bottom: 0.06
  21546. }
  21547. },
  21548. },
  21549. [
  21550. {
  21551. name: "Macro",
  21552. height: math.unit(1050, "feet")
  21553. },
  21554. {
  21555. name: "Macro+",
  21556. height: math.unit(900, "meters"),
  21557. default: true
  21558. },
  21559. ]
  21560. ))
  21561. characterMakers.push(() => makeCharacter(
  21562. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21563. {
  21564. front: {
  21565. height: math.unit(5, "feet"),
  21566. weight: math.unit(187, "lb"),
  21567. name: "Front",
  21568. image: {
  21569. source: "./media/characters/person/front.svg",
  21570. extra: 3087 / 2945,
  21571. bottom: 91 / 3181
  21572. }
  21573. },
  21574. },
  21575. [
  21576. {
  21577. name: "Micro",
  21578. height: math.unit(3, "inches")
  21579. },
  21580. {
  21581. name: "Normal",
  21582. height: math.unit(5, "feet"),
  21583. default: true
  21584. },
  21585. {
  21586. name: "Macro",
  21587. height: math.unit(90, "feet")
  21588. },
  21589. {
  21590. name: "Max Size",
  21591. height: math.unit(280, "feet")
  21592. },
  21593. ]
  21594. ))
  21595. characterMakers.push(() => makeCharacter(
  21596. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21597. {
  21598. front: {
  21599. height: math.unit(4.5, "meters"),
  21600. weight: math.unit(3200, "lb"),
  21601. name: "Front",
  21602. image: {
  21603. source: "./media/characters/ty/front.svg",
  21604. extra: 1038 / 960,
  21605. bottom: 31.156 / 1068
  21606. }
  21607. },
  21608. back: {
  21609. height: math.unit(4.5, "meters"),
  21610. weight: math.unit(3200, "lb"),
  21611. name: "Back",
  21612. image: {
  21613. source: "./media/characters/ty/back.svg",
  21614. extra: 1044 / 966,
  21615. bottom: 7.48 / 1049
  21616. }
  21617. },
  21618. },
  21619. [
  21620. {
  21621. name: "Normal",
  21622. height: math.unit(4.5, "meters"),
  21623. default: true
  21624. },
  21625. ]
  21626. ))
  21627. characterMakers.push(() => makeCharacter(
  21628. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21629. {
  21630. front: {
  21631. height: math.unit(5 + 4 / 12, "feet"),
  21632. weight: math.unit(115, "lb"),
  21633. name: "Front",
  21634. image: {
  21635. source: "./media/characters/rocky/front.svg",
  21636. extra: 1012 / 975,
  21637. bottom: 54 / 1066
  21638. }
  21639. },
  21640. },
  21641. [
  21642. {
  21643. name: "Normal",
  21644. height: math.unit(5 + 4 / 12, "feet"),
  21645. default: true
  21646. },
  21647. ]
  21648. ))
  21649. characterMakers.push(() => makeCharacter(
  21650. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21651. {
  21652. upright: {
  21653. height: math.unit(6, "meters"),
  21654. weight: math.unit(4000, "kg"),
  21655. name: "Upright",
  21656. image: {
  21657. source: "./media/characters/ruin/upright.svg",
  21658. extra: 668 / 661,
  21659. bottom: 42 / 799.8396
  21660. }
  21661. },
  21662. },
  21663. [
  21664. {
  21665. name: "Normal",
  21666. height: math.unit(6, "meters"),
  21667. default: true
  21668. },
  21669. ]
  21670. ))
  21671. characterMakers.push(() => makeCharacter(
  21672. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21673. {
  21674. front: {
  21675. height: math.unit(5, "feet"),
  21676. weight: math.unit(106, "lb"),
  21677. name: "Front",
  21678. image: {
  21679. source: "./media/characters/robin/front.svg",
  21680. extra: 862 / 799,
  21681. bottom: 42.4 / 914.8856
  21682. }
  21683. },
  21684. },
  21685. [
  21686. {
  21687. name: "Normal",
  21688. height: math.unit(5, "feet"),
  21689. default: true
  21690. },
  21691. ]
  21692. ))
  21693. characterMakers.push(() => makeCharacter(
  21694. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21695. {
  21696. side: {
  21697. height: math.unit(3, "feet"),
  21698. weight: math.unit(225, "lb"),
  21699. name: "Side",
  21700. image: {
  21701. source: "./media/characters/saian/side.svg",
  21702. extra: 566 / 356,
  21703. bottom: 79.7 / 643
  21704. }
  21705. },
  21706. maw: {
  21707. height: math.unit(2.85, "feet"),
  21708. name: "Maw",
  21709. image: {
  21710. source: "./media/characters/saian/maw.svg"
  21711. }
  21712. },
  21713. },
  21714. [
  21715. {
  21716. name: "Normal",
  21717. height: math.unit(3, "feet"),
  21718. default: true
  21719. },
  21720. ]
  21721. ))
  21722. characterMakers.push(() => makeCharacter(
  21723. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21724. {
  21725. side: {
  21726. height: math.unit(8, "feet"),
  21727. weight: math.unit(300, "lb"),
  21728. name: "Side",
  21729. image: {
  21730. source: "./media/characters/equus-silvermane/side.svg",
  21731. extra: 2176 / 2050,
  21732. bottom: 65.7 / 2245
  21733. }
  21734. },
  21735. front: {
  21736. height: math.unit(8, "feet"),
  21737. weight: math.unit(300, "lb"),
  21738. name: "Front",
  21739. image: {
  21740. source: "./media/characters/equus-silvermane/front.svg",
  21741. extra: 4633 / 4400,
  21742. bottom: 71.3 / 4706.915
  21743. }
  21744. },
  21745. sideStepping: {
  21746. height: math.unit(8, "feet"),
  21747. weight: math.unit(300, "lb"),
  21748. name: "Side (Stepping)",
  21749. image: {
  21750. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21751. extra: 1968 / 1860,
  21752. bottom: 16.4 / 1989
  21753. }
  21754. },
  21755. },
  21756. [
  21757. {
  21758. name: "Normal",
  21759. height: math.unit(8, "feet")
  21760. },
  21761. {
  21762. name: "Minimacro",
  21763. height: math.unit(75, "feet"),
  21764. default: true
  21765. },
  21766. {
  21767. name: "Macro",
  21768. height: math.unit(150, "feet")
  21769. },
  21770. {
  21771. name: "Macro+",
  21772. height: math.unit(1000, "feet")
  21773. },
  21774. {
  21775. name: "Megamacro",
  21776. height: math.unit(1, "mile")
  21777. },
  21778. ]
  21779. ))
  21780. characterMakers.push(() => makeCharacter(
  21781. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21782. {
  21783. side: {
  21784. height: math.unit(20, "feet"),
  21785. weight: math.unit(30000, "kg"),
  21786. name: "Side",
  21787. image: {
  21788. source: "./media/characters/windar/side.svg",
  21789. extra: 1491 / 1248,
  21790. bottom: 82.56 / 1568
  21791. }
  21792. },
  21793. },
  21794. [
  21795. {
  21796. name: "Normal",
  21797. height: math.unit(20, "feet"),
  21798. default: true
  21799. },
  21800. ]
  21801. ))
  21802. characterMakers.push(() => makeCharacter(
  21803. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21804. {
  21805. side: {
  21806. height: math.unit(15.66, "feet"),
  21807. weight: math.unit(150, "lb"),
  21808. name: "Side",
  21809. image: {
  21810. source: "./media/characters/melody/side.svg",
  21811. extra: 1097 / 944,
  21812. bottom: 11.8 / 1109
  21813. }
  21814. },
  21815. sideOutfit: {
  21816. height: math.unit(15.66, "feet"),
  21817. weight: math.unit(150, "lb"),
  21818. name: "Side (Outfit)",
  21819. image: {
  21820. source: "./media/characters/melody/side-outfit.svg",
  21821. extra: 1097 / 944,
  21822. bottom: 11.8 / 1109
  21823. }
  21824. },
  21825. },
  21826. [
  21827. {
  21828. name: "Normal",
  21829. height: math.unit(15.66, "feet"),
  21830. default: true
  21831. },
  21832. ]
  21833. ))
  21834. characterMakers.push(() => makeCharacter(
  21835. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21836. {
  21837. front: {
  21838. height: math.unit(8, "feet"),
  21839. weight: math.unit(325, "lb"),
  21840. name: "Front",
  21841. image: {
  21842. source: "./media/characters/windera/front.svg",
  21843. extra: 3180 / 2845,
  21844. bottom: 178 / 3365
  21845. }
  21846. },
  21847. },
  21848. [
  21849. {
  21850. name: "Normal",
  21851. height: math.unit(8, "feet"),
  21852. default: true
  21853. },
  21854. ]
  21855. ))
  21856. characterMakers.push(() => makeCharacter(
  21857. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21858. {
  21859. front: {
  21860. height: math.unit(28.75, "feet"),
  21861. weight: math.unit(2000, "kg"),
  21862. name: "Front",
  21863. image: {
  21864. source: "./media/characters/sonear/front.svg",
  21865. extra: 1041.1 / 964.9,
  21866. bottom: 53.7 / 1096.6
  21867. }
  21868. },
  21869. },
  21870. [
  21871. {
  21872. name: "Normal",
  21873. height: math.unit(28.75, "feet"),
  21874. default: true
  21875. },
  21876. ]
  21877. ))
  21878. characterMakers.push(() => makeCharacter(
  21879. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21880. {
  21881. side: {
  21882. height: math.unit(25.5, "feet"),
  21883. weight: math.unit(23000, "kg"),
  21884. name: "Side",
  21885. image: {
  21886. source: "./media/characters/kanara/side.svg"
  21887. }
  21888. },
  21889. },
  21890. [
  21891. {
  21892. name: "Normal",
  21893. height: math.unit(25.5, "feet"),
  21894. default: true
  21895. },
  21896. ]
  21897. ))
  21898. characterMakers.push(() => makeCharacter(
  21899. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21900. {
  21901. side: {
  21902. height: math.unit(10, "feet"),
  21903. weight: math.unit(1000, "kg"),
  21904. name: "Side",
  21905. image: {
  21906. source: "./media/characters/ereus/side.svg",
  21907. extra: 1157 / 959,
  21908. bottom: 153 / 1312.5
  21909. }
  21910. },
  21911. },
  21912. [
  21913. {
  21914. name: "Normal",
  21915. height: math.unit(10, "feet"),
  21916. default: true
  21917. },
  21918. ]
  21919. ))
  21920. characterMakers.push(() => makeCharacter(
  21921. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21922. {
  21923. side: {
  21924. height: math.unit(4.5, "feet"),
  21925. weight: math.unit(500, "lb"),
  21926. name: "Side",
  21927. image: {
  21928. source: "./media/characters/e-ter/side.svg",
  21929. extra: 1550 / 1248,
  21930. bottom: 146 / 1694
  21931. }
  21932. },
  21933. },
  21934. [
  21935. {
  21936. name: "Normal",
  21937. height: math.unit(4.5, "feet"),
  21938. default: true
  21939. },
  21940. ]
  21941. ))
  21942. characterMakers.push(() => makeCharacter(
  21943. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21944. {
  21945. side: {
  21946. height: math.unit(9.7, "feet"),
  21947. weight: math.unit(4000, "kg"),
  21948. name: "Side",
  21949. image: {
  21950. source: "./media/characters/yamie/side.svg"
  21951. }
  21952. },
  21953. },
  21954. [
  21955. {
  21956. name: "Normal",
  21957. height: math.unit(9.7, "feet"),
  21958. default: true
  21959. },
  21960. ]
  21961. ))
  21962. characterMakers.push(() => makeCharacter(
  21963. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21964. {
  21965. front: {
  21966. height: math.unit(50, "feet"),
  21967. weight: math.unit(50000, "kg"),
  21968. name: "Front",
  21969. image: {
  21970. source: "./media/characters/anders/front.svg",
  21971. extra: 570 / 539,
  21972. bottom: 14.7 / 586.7
  21973. }
  21974. },
  21975. },
  21976. [
  21977. {
  21978. name: "Large",
  21979. height: math.unit(50, "feet")
  21980. },
  21981. {
  21982. name: "Macro",
  21983. height: math.unit(2000, "feet"),
  21984. default: true
  21985. },
  21986. {
  21987. name: "Megamacro",
  21988. height: math.unit(12, "miles")
  21989. },
  21990. ]
  21991. ))
  21992. characterMakers.push(() => makeCharacter(
  21993. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21994. {
  21995. front: {
  21996. height: math.unit(7 + 2 / 12, "feet"),
  21997. weight: math.unit(300, "lb"),
  21998. name: "Front",
  21999. image: {
  22000. source: "./media/characters/reban/front.svg",
  22001. extra: 516 / 487,
  22002. bottom: 42.82 / 558.356
  22003. }
  22004. },
  22005. dick: {
  22006. height: math.unit(7 / 5, "feet"),
  22007. name: "Dick",
  22008. image: {
  22009. source: "./media/characters/reban/dick.svg"
  22010. }
  22011. },
  22012. },
  22013. [
  22014. {
  22015. name: "Natural Height",
  22016. height: math.unit(7 + 2 / 12, "feet")
  22017. },
  22018. {
  22019. name: "Macro",
  22020. height: math.unit(500, "feet"),
  22021. default: true
  22022. },
  22023. {
  22024. name: "Canon Height",
  22025. height: math.unit(50, "AU")
  22026. },
  22027. ]
  22028. ))
  22029. characterMakers.push(() => makeCharacter(
  22030. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22031. {
  22032. front: {
  22033. height: math.unit(6, "feet"),
  22034. weight: math.unit(150, "lb"),
  22035. name: "Front",
  22036. image: {
  22037. source: "./media/characters/terrance-keayes/front.svg",
  22038. extra: 1.005,
  22039. bottom: 151 / 1615
  22040. }
  22041. },
  22042. side: {
  22043. height: math.unit(6, "feet"),
  22044. weight: math.unit(150, "lb"),
  22045. name: "Side",
  22046. image: {
  22047. source: "./media/characters/terrance-keayes/side.svg",
  22048. extra: 1.005,
  22049. bottom: 129.4 / 1544
  22050. }
  22051. },
  22052. back: {
  22053. height: math.unit(6, "feet"),
  22054. weight: math.unit(150, "lb"),
  22055. name: "Back",
  22056. image: {
  22057. source: "./media/characters/terrance-keayes/back.svg",
  22058. extra: 1.005,
  22059. bottom: 58.4 / 1557.3
  22060. }
  22061. },
  22062. dick: {
  22063. height: math.unit(6 * 0.208, "feet"),
  22064. name: "Dick",
  22065. image: {
  22066. source: "./media/characters/terrance-keayes/dick.svg"
  22067. }
  22068. },
  22069. },
  22070. [
  22071. {
  22072. name: "Canon Height",
  22073. height: math.unit(35, "miles"),
  22074. default: true
  22075. },
  22076. ]
  22077. ))
  22078. characterMakers.push(() => makeCharacter(
  22079. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22080. {
  22081. front: {
  22082. height: math.unit(6, "feet"),
  22083. weight: math.unit(150, "lb"),
  22084. name: "Front",
  22085. image: {
  22086. source: "./media/characters/ofelia/front.svg",
  22087. extra: 546 / 541,
  22088. bottom: 39 / 583
  22089. }
  22090. },
  22091. back: {
  22092. height: math.unit(6, "feet"),
  22093. weight: math.unit(150, "lb"),
  22094. name: "Back",
  22095. image: {
  22096. source: "./media/characters/ofelia/back.svg",
  22097. extra: 564 / 559.5,
  22098. bottom: 8.69 / 573.02
  22099. }
  22100. },
  22101. maw: {
  22102. height: math.unit(1, "feet"),
  22103. name: "Maw",
  22104. image: {
  22105. source: "./media/characters/ofelia/maw.svg"
  22106. }
  22107. },
  22108. foot: {
  22109. height: math.unit(1.949, "feet"),
  22110. name: "Foot",
  22111. image: {
  22112. source: "./media/characters/ofelia/foot.svg"
  22113. }
  22114. },
  22115. },
  22116. [
  22117. {
  22118. name: "Canon Height",
  22119. height: math.unit(2000, "miles"),
  22120. default: true
  22121. },
  22122. ]
  22123. ))
  22124. characterMakers.push(() => makeCharacter(
  22125. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22126. {
  22127. front: {
  22128. height: math.unit(6, "feet"),
  22129. weight: math.unit(150, "lb"),
  22130. name: "Front",
  22131. image: {
  22132. source: "./media/characters/samuel/front.svg",
  22133. extra: 265 / 258,
  22134. bottom: 2 / 266.1566
  22135. }
  22136. },
  22137. },
  22138. [
  22139. {
  22140. name: "Macro",
  22141. height: math.unit(100, "feet"),
  22142. default: true
  22143. },
  22144. {
  22145. name: "Full Size",
  22146. height: math.unit(1000, "miles")
  22147. },
  22148. ]
  22149. ))
  22150. characterMakers.push(() => makeCharacter(
  22151. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22152. {
  22153. front: {
  22154. height: math.unit(6, "feet"),
  22155. weight: math.unit(300, "lb"),
  22156. name: "Front",
  22157. image: {
  22158. source: "./media/characters/beishir-kiel/front.svg",
  22159. extra: 569 / 547,
  22160. bottom: 41.9 / 609
  22161. }
  22162. },
  22163. maw: {
  22164. height: math.unit(6 * 0.202, "feet"),
  22165. name: "Maw",
  22166. image: {
  22167. source: "./media/characters/beishir-kiel/maw.svg"
  22168. }
  22169. },
  22170. },
  22171. [
  22172. {
  22173. name: "Macro",
  22174. height: math.unit(300, "feet"),
  22175. default: true
  22176. },
  22177. ]
  22178. ))
  22179. characterMakers.push(() => makeCharacter(
  22180. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22181. {
  22182. front: {
  22183. height: math.unit(5 + 7/12, "feet"),
  22184. weight: math.unit(120, "lb"),
  22185. name: "Front",
  22186. image: {
  22187. source: "./media/characters/logan-grey/front.svg",
  22188. extra: 1836/1738,
  22189. bottom: 108/1944
  22190. }
  22191. },
  22192. back: {
  22193. height: math.unit(5 + 7/12, "feet"),
  22194. weight: math.unit(120, "lb"),
  22195. name: "Back",
  22196. image: {
  22197. source: "./media/characters/logan-grey/back.svg",
  22198. extra: 1880/1794,
  22199. bottom: 24/1904
  22200. }
  22201. },
  22202. frontSfw: {
  22203. height: math.unit(5 + 7/12, "feet"),
  22204. weight: math.unit(120, "lb"),
  22205. name: "Front (SFW)",
  22206. image: {
  22207. source: "./media/characters/logan-grey/front-sfw.svg",
  22208. extra: 1836/1738,
  22209. bottom: 108/1944
  22210. }
  22211. },
  22212. backSfw: {
  22213. height: math.unit(5 + 7/12, "feet"),
  22214. weight: math.unit(120, "lb"),
  22215. name: "Back (SFW)",
  22216. image: {
  22217. source: "./media/characters/logan-grey/back-sfw.svg",
  22218. extra: 1880/1794,
  22219. bottom: 24/1904
  22220. }
  22221. },
  22222. hands: {
  22223. height: math.unit(0.84, "feet"),
  22224. name: "Hands",
  22225. image: {
  22226. source: "./media/characters/logan-grey/hands.svg"
  22227. }
  22228. },
  22229. paws: {
  22230. height: math.unit(0.72, "feet"),
  22231. name: "Paws",
  22232. image: {
  22233. source: "./media/characters/logan-grey/paws.svg"
  22234. }
  22235. },
  22236. cock: {
  22237. height: math.unit(1.45, "feet"),
  22238. name: "Cock",
  22239. image: {
  22240. source: "./media/characters/logan-grey/cock.svg"
  22241. }
  22242. },
  22243. cockAlt: {
  22244. height: math.unit(1.437, "feet"),
  22245. name: "Cock (alt)",
  22246. image: {
  22247. source: "./media/characters/logan-grey/cock-alt.svg"
  22248. }
  22249. },
  22250. },
  22251. [
  22252. {
  22253. name: "Normal",
  22254. height: math.unit(5 + 8 / 12, "feet")
  22255. },
  22256. {
  22257. name: "The 500 Foot Femboy",
  22258. height: math.unit(500, "feet"),
  22259. default: true
  22260. },
  22261. {
  22262. name: "Megmacro",
  22263. height: math.unit(20, "miles")
  22264. },
  22265. ]
  22266. ))
  22267. characterMakers.push(() => makeCharacter(
  22268. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22269. {
  22270. front: {
  22271. height: math.unit(8 + 2 / 12, "feet"),
  22272. weight: math.unit(275, "lb"),
  22273. name: "Front",
  22274. image: {
  22275. source: "./media/characters/draganta/front.svg",
  22276. extra: 1177 / 1135,
  22277. bottom: 33.46 / 1212.1
  22278. }
  22279. },
  22280. },
  22281. [
  22282. {
  22283. name: "Normal",
  22284. height: math.unit(8 + 6 / 12, "feet"),
  22285. default: true
  22286. },
  22287. {
  22288. name: "Macro",
  22289. height: math.unit(150, "feet")
  22290. },
  22291. {
  22292. name: "Megamacro",
  22293. height: math.unit(1000, "miles")
  22294. },
  22295. ]
  22296. ))
  22297. characterMakers.push(() => makeCharacter(
  22298. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22299. {
  22300. front: {
  22301. height: math.unit(1.72, "m"),
  22302. weight: math.unit(80, "lb"),
  22303. name: "Front",
  22304. image: {
  22305. source: "./media/characters/voski/front.svg",
  22306. extra: 2076.22 / 2022.4,
  22307. bottom: 102.7 / 2177.3866
  22308. }
  22309. },
  22310. frontNsfw: {
  22311. height: math.unit(1.72, "m"),
  22312. weight: math.unit(80, "lb"),
  22313. name: "Front (NSFW)",
  22314. image: {
  22315. source: "./media/characters/voski/front-nsfw.svg",
  22316. extra: 2076.22 / 2022.4,
  22317. bottom: 102.7 / 2177.3866
  22318. }
  22319. },
  22320. back: {
  22321. height: math.unit(1.72, "m"),
  22322. weight: math.unit(80, "lb"),
  22323. name: "Back",
  22324. image: {
  22325. source: "./media/characters/voski/back.svg",
  22326. extra: 2104 / 2051,
  22327. bottom: 10.45 / 2113.63
  22328. }
  22329. },
  22330. },
  22331. [
  22332. {
  22333. name: "Normal",
  22334. height: math.unit(1.72, "m")
  22335. },
  22336. {
  22337. name: "Macro",
  22338. height: math.unit(55, "m"),
  22339. default: true
  22340. },
  22341. {
  22342. name: "Macro+",
  22343. height: math.unit(300, "m")
  22344. },
  22345. {
  22346. name: "Macro++",
  22347. height: math.unit(700, "m")
  22348. },
  22349. {
  22350. name: "Macro+++",
  22351. height: math.unit(4500, "m")
  22352. },
  22353. {
  22354. name: "Macro++++",
  22355. height: math.unit(45, "km")
  22356. },
  22357. {
  22358. name: "Macro+++++",
  22359. height: math.unit(1220, "km")
  22360. },
  22361. ]
  22362. ))
  22363. characterMakers.push(() => makeCharacter(
  22364. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22365. {
  22366. front: {
  22367. height: math.unit(2.3, "m"),
  22368. weight: math.unit(304, "kg"),
  22369. name: "Front",
  22370. image: {
  22371. source: "./media/characters/icowom-lee/front.svg",
  22372. extra: 985 / 955,
  22373. bottom: 25.4 / 1012
  22374. }
  22375. },
  22376. fronttentacles: {
  22377. height: math.unit(2.3, "m"),
  22378. weight: math.unit(304, "kg"),
  22379. name: "Front-tentacles",
  22380. image: {
  22381. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22382. extra: 985 / 955,
  22383. bottom: 25.4 / 1012
  22384. }
  22385. },
  22386. back: {
  22387. height: math.unit(2.3, "m"),
  22388. weight: math.unit(304, "kg"),
  22389. name: "Back",
  22390. image: {
  22391. source: "./media/characters/icowom-lee/back.svg",
  22392. extra: 975 / 954,
  22393. bottom: 9.5 / 985
  22394. }
  22395. },
  22396. backtentacles: {
  22397. height: math.unit(2.3, "m"),
  22398. weight: math.unit(304, "kg"),
  22399. name: "Back-tentacles",
  22400. image: {
  22401. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22402. extra: 975 / 954,
  22403. bottom: 9.5 / 985
  22404. }
  22405. },
  22406. frontDressed: {
  22407. height: math.unit(2.3, "m"),
  22408. weight: math.unit(304, "kg"),
  22409. name: "Front (Dressed)",
  22410. image: {
  22411. source: "./media/characters/icowom-lee/front-dressed.svg",
  22412. extra: 3076 / 2933,
  22413. bottom: 51.4 / 3125.1889
  22414. }
  22415. },
  22416. rump: {
  22417. height: math.unit(0.776, "meters"),
  22418. name: "Rump",
  22419. image: {
  22420. source: "./media/characters/icowom-lee/rump.svg"
  22421. }
  22422. },
  22423. genitals: {
  22424. height: math.unit(0.78, "meters"),
  22425. name: "Genitals",
  22426. image: {
  22427. source: "./media/characters/icowom-lee/genitals.svg"
  22428. }
  22429. },
  22430. },
  22431. [
  22432. {
  22433. name: "Normal",
  22434. height: math.unit(2.3, "meters"),
  22435. default: true
  22436. },
  22437. {
  22438. name: "Macro",
  22439. height: math.unit(94, "meters"),
  22440. default: true
  22441. },
  22442. ]
  22443. ))
  22444. characterMakers.push(() => makeCharacter(
  22445. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22446. {
  22447. front: {
  22448. height: math.unit(22, "meters"),
  22449. weight: math.unit(21000, "kg"),
  22450. name: "Front",
  22451. image: {
  22452. source: "./media/characters/shock-diamond/front.svg",
  22453. extra: 2204 / 2053,
  22454. bottom: 65 / 2239.47
  22455. }
  22456. },
  22457. frontNude: {
  22458. height: math.unit(22, "meters"),
  22459. weight: math.unit(21000, "kg"),
  22460. name: "Front (Nude)",
  22461. image: {
  22462. source: "./media/characters/shock-diamond/front-nude.svg",
  22463. extra: 2514 / 2285,
  22464. bottom: 13 / 2527.56
  22465. }
  22466. },
  22467. },
  22468. [
  22469. {
  22470. name: "Normal",
  22471. height: math.unit(3, "meters")
  22472. },
  22473. {
  22474. name: "Macro",
  22475. height: math.unit(22, "meters"),
  22476. default: true
  22477. },
  22478. ]
  22479. ))
  22480. characterMakers.push(() => makeCharacter(
  22481. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22482. {
  22483. front: {
  22484. height: math.unit(5 + 4 / 12, "feet"),
  22485. weight: math.unit(120, "lb"),
  22486. name: "Front",
  22487. image: {
  22488. source: "./media/characters/rory/front.svg",
  22489. extra: 1318/1241,
  22490. bottom: 42/1360
  22491. }
  22492. },
  22493. back: {
  22494. height: math.unit(5 + 4 / 12, "feet"),
  22495. weight: math.unit(120, "lb"),
  22496. name: "Back",
  22497. image: {
  22498. source: "./media/characters/rory/back.svg",
  22499. extra: 1318/1241,
  22500. bottom: 42/1360
  22501. }
  22502. },
  22503. butt: {
  22504. height: math.unit(1.74, "feet"),
  22505. name: "Butt",
  22506. image: {
  22507. source: "./media/characters/rory/butt.svg"
  22508. }
  22509. },
  22510. dick: {
  22511. height: math.unit(1.02, "feet"),
  22512. name: "Dick",
  22513. image: {
  22514. source: "./media/characters/rory/dick.svg"
  22515. }
  22516. },
  22517. paws: {
  22518. height: math.unit(1, "feet"),
  22519. name: "Paws",
  22520. image: {
  22521. source: "./media/characters/rory/paws.svg"
  22522. }
  22523. },
  22524. frontAlt: {
  22525. height: math.unit(5 + 4 / 12, "feet"),
  22526. weight: math.unit(120, "lb"),
  22527. name: "Front (Alt)",
  22528. image: {
  22529. source: "./media/characters/rory/front-alt.svg",
  22530. extra: 589 / 556,
  22531. bottom: 45.7 / 635.76
  22532. }
  22533. },
  22534. frontAltNude: {
  22535. height: math.unit(5 + 4 / 12, "feet"),
  22536. weight: math.unit(120, "lb"),
  22537. name: "Front (Alt, Nude)",
  22538. image: {
  22539. source: "./media/characters/rory/front-alt-nude.svg",
  22540. extra: 589 / 556,
  22541. bottom: 45.7 / 635.76
  22542. }
  22543. },
  22544. side: {
  22545. height: math.unit(5 + 4 / 12, "feet"),
  22546. weight: math.unit(120, "lb"),
  22547. name: "Side",
  22548. image: {
  22549. source: "./media/characters/rory/side.svg",
  22550. extra: 597 / 564,
  22551. bottom: 55 / 653
  22552. }
  22553. },
  22554. backAlt: {
  22555. height: math.unit(5 + 4 / 12, "feet"),
  22556. weight: math.unit(120, "lb"),
  22557. name: "Back (Alt)",
  22558. image: {
  22559. source: "./media/characters/rory/back-alt.svg",
  22560. extra: 620 / 585,
  22561. bottom: 8.86 / 630.43
  22562. }
  22563. },
  22564. dickAlt: {
  22565. height: math.unit(0.86, "feet"),
  22566. name: "Dick (Alt)",
  22567. image: {
  22568. source: "./media/characters/rory/dick-alt.svg"
  22569. }
  22570. },
  22571. },
  22572. [
  22573. {
  22574. name: "Normal",
  22575. height: math.unit(5 + 4 / 12, "feet"),
  22576. default: true
  22577. },
  22578. {
  22579. name: "Macro",
  22580. height: math.unit(100, "feet")
  22581. },
  22582. {
  22583. name: "Macro+",
  22584. height: math.unit(140, "feet")
  22585. },
  22586. {
  22587. name: "Macro++",
  22588. height: math.unit(300, "feet")
  22589. },
  22590. ]
  22591. ))
  22592. characterMakers.push(() => makeCharacter(
  22593. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22594. {
  22595. front: {
  22596. height: math.unit(5 + 9 / 12, "feet"),
  22597. weight: math.unit(190, "lb"),
  22598. name: "Front",
  22599. image: {
  22600. source: "./media/characters/sprisk/front.svg",
  22601. extra: 1225 / 1180,
  22602. bottom: 42.7 / 1266.4
  22603. }
  22604. },
  22605. frontNsfw: {
  22606. height: math.unit(5 + 9 / 12, "feet"),
  22607. weight: math.unit(190, "lb"),
  22608. name: "Front (NSFW)",
  22609. image: {
  22610. source: "./media/characters/sprisk/front-nsfw.svg",
  22611. extra: 1225 / 1180,
  22612. bottom: 42.7 / 1266.4
  22613. }
  22614. },
  22615. back: {
  22616. height: math.unit(5 + 9 / 12, "feet"),
  22617. weight: math.unit(190, "lb"),
  22618. name: "Back",
  22619. image: {
  22620. source: "./media/characters/sprisk/back.svg",
  22621. extra: 1247 / 1200,
  22622. bottom: 5.6 / 1253.04
  22623. }
  22624. },
  22625. },
  22626. [
  22627. {
  22628. name: "Tiny",
  22629. height: math.unit(2, "inches")
  22630. },
  22631. {
  22632. name: "Normal",
  22633. height: math.unit(5 + 9 / 12, "feet"),
  22634. default: true
  22635. },
  22636. {
  22637. name: "Mini Macro",
  22638. height: math.unit(18, "feet")
  22639. },
  22640. {
  22641. name: "Macro",
  22642. height: math.unit(100, "feet")
  22643. },
  22644. {
  22645. name: "MACRO",
  22646. height: math.unit(50, "miles")
  22647. },
  22648. {
  22649. name: "M A C R O",
  22650. height: math.unit(300, "miles")
  22651. },
  22652. ]
  22653. ))
  22654. characterMakers.push(() => makeCharacter(
  22655. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22656. {
  22657. side: {
  22658. height: math.unit(15.6, "meters"),
  22659. weight: math.unit(700000, "kg"),
  22660. name: "Side",
  22661. image: {
  22662. source: "./media/characters/bunsen/side.svg",
  22663. extra: 1644 / 358
  22664. }
  22665. },
  22666. foot: {
  22667. height: math.unit(1.611 * 1644 / 358, "meter"),
  22668. name: "Foot",
  22669. image: {
  22670. source: "./media/characters/bunsen/foot.svg"
  22671. }
  22672. },
  22673. },
  22674. [
  22675. {
  22676. name: "Small",
  22677. height: math.unit(10, "feet")
  22678. },
  22679. {
  22680. name: "Normal",
  22681. height: math.unit(15.6, "meters"),
  22682. default: true
  22683. },
  22684. ]
  22685. ))
  22686. characterMakers.push(() => makeCharacter(
  22687. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22688. {
  22689. front: {
  22690. height: math.unit(4 + 11 / 12, "feet"),
  22691. weight: math.unit(140, "lb"),
  22692. name: "Front",
  22693. image: {
  22694. source: "./media/characters/sesh/front.svg",
  22695. extra: 3420 / 3231,
  22696. bottom: 72 / 3949.5
  22697. }
  22698. },
  22699. },
  22700. [
  22701. {
  22702. name: "Normal",
  22703. height: math.unit(4 + 11 / 12, "feet")
  22704. },
  22705. {
  22706. name: "Grown",
  22707. height: math.unit(15, "feet"),
  22708. default: true
  22709. },
  22710. {
  22711. name: "Macro",
  22712. height: math.unit(1500, "feet")
  22713. },
  22714. {
  22715. name: "Megamacro",
  22716. height: math.unit(30, "miles")
  22717. },
  22718. {
  22719. name: "Continental",
  22720. height: math.unit(3000, "miles")
  22721. },
  22722. {
  22723. name: "Gravity Mass",
  22724. height: math.unit(300000, "miles")
  22725. },
  22726. {
  22727. name: "Planet Buster",
  22728. height: math.unit(30000000, "miles")
  22729. },
  22730. {
  22731. name: "Big",
  22732. height: math.unit(3000000000, "miles")
  22733. },
  22734. ]
  22735. ))
  22736. characterMakers.push(() => makeCharacter(
  22737. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22738. {
  22739. front: {
  22740. height: math.unit(9, "feet"),
  22741. weight: math.unit(350, "lb"),
  22742. name: "Front",
  22743. image: {
  22744. source: "./media/characters/pepper/front.svg",
  22745. extra: 1448 / 1312,
  22746. bottom: 9.4 / 1457.88
  22747. }
  22748. },
  22749. back: {
  22750. height: math.unit(9, "feet"),
  22751. weight: math.unit(350, "lb"),
  22752. name: "Back",
  22753. image: {
  22754. source: "./media/characters/pepper/back.svg",
  22755. extra: 1423 / 1300,
  22756. bottom: 4.6 / 1429
  22757. }
  22758. },
  22759. maw: {
  22760. height: math.unit(0.932, "feet"),
  22761. name: "Maw",
  22762. image: {
  22763. source: "./media/characters/pepper/maw.svg"
  22764. }
  22765. },
  22766. },
  22767. [
  22768. {
  22769. name: "Normal",
  22770. height: math.unit(9, "feet"),
  22771. default: true
  22772. },
  22773. ]
  22774. ))
  22775. characterMakers.push(() => makeCharacter(
  22776. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22777. {
  22778. front: {
  22779. height: math.unit(6, "feet"),
  22780. weight: math.unit(150, "lb"),
  22781. name: "Front",
  22782. image: {
  22783. source: "./media/characters/maelstrom/front.svg",
  22784. extra: 2100 / 1883,
  22785. bottom: 94 / 2196.7
  22786. }
  22787. },
  22788. },
  22789. [
  22790. {
  22791. name: "Less Kaiju",
  22792. height: math.unit(200, "feet")
  22793. },
  22794. {
  22795. name: "Kaiju",
  22796. height: math.unit(400, "feet"),
  22797. default: true
  22798. },
  22799. {
  22800. name: "Kaiju-er",
  22801. height: math.unit(600, "feet")
  22802. },
  22803. ]
  22804. ))
  22805. characterMakers.push(() => makeCharacter(
  22806. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22807. {
  22808. front: {
  22809. height: math.unit(6 + 5 / 12, "feet"),
  22810. weight: math.unit(180, "lb"),
  22811. name: "Front",
  22812. image: {
  22813. source: "./media/characters/lexir/front.svg",
  22814. extra: 180 / 172,
  22815. bottom: 12 / 192
  22816. }
  22817. },
  22818. back: {
  22819. height: math.unit(6 + 5 / 12, "feet"),
  22820. weight: math.unit(180, "lb"),
  22821. name: "Back",
  22822. image: {
  22823. source: "./media/characters/lexir/back.svg",
  22824. extra: 183.84 / 175.5,
  22825. bottom: 3.1 / 187
  22826. }
  22827. },
  22828. },
  22829. [
  22830. {
  22831. name: "Very Smal",
  22832. height: math.unit(1, "nm")
  22833. },
  22834. {
  22835. name: "Normal",
  22836. height: math.unit(6 + 5 / 12, "feet"),
  22837. default: true
  22838. },
  22839. {
  22840. name: "Macro",
  22841. height: math.unit(1, "mile")
  22842. },
  22843. {
  22844. name: "Megamacro",
  22845. height: math.unit(50, "miles")
  22846. },
  22847. ]
  22848. ))
  22849. characterMakers.push(() => makeCharacter(
  22850. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22851. {
  22852. front: {
  22853. height: math.unit(1.5, "meters"),
  22854. weight: math.unit(100, "lb"),
  22855. name: "Front",
  22856. image: {
  22857. source: "./media/characters/maksio/front.svg",
  22858. extra: 1549 / 1531,
  22859. bottom: 123.7 / 1674.5429
  22860. }
  22861. },
  22862. back: {
  22863. height: math.unit(1.5, "meters"),
  22864. weight: math.unit(100, "lb"),
  22865. name: "Back",
  22866. image: {
  22867. source: "./media/characters/maksio/back.svg",
  22868. extra: 1541 / 1509,
  22869. bottom: 97 / 1639
  22870. }
  22871. },
  22872. hand: {
  22873. height: math.unit(0.621, "feet"),
  22874. name: "Hand",
  22875. image: {
  22876. source: "./media/characters/maksio/hand.svg"
  22877. }
  22878. },
  22879. foot: {
  22880. height: math.unit(1.611, "feet"),
  22881. name: "Foot",
  22882. image: {
  22883. source: "./media/characters/maksio/foot.svg"
  22884. }
  22885. },
  22886. },
  22887. [
  22888. {
  22889. name: "Shrunken",
  22890. height: math.unit(10, "cm")
  22891. },
  22892. {
  22893. name: "Normal",
  22894. height: math.unit(150, "cm"),
  22895. default: true
  22896. },
  22897. ]
  22898. ))
  22899. characterMakers.push(() => makeCharacter(
  22900. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22901. {
  22902. front: {
  22903. height: math.unit(100, "feet"),
  22904. name: "Front",
  22905. image: {
  22906. source: "./media/characters/erza-bear/front.svg",
  22907. extra: 2449 / 2390,
  22908. bottom: 46 / 2494
  22909. }
  22910. },
  22911. back: {
  22912. height: math.unit(100, "feet"),
  22913. name: "Back",
  22914. image: {
  22915. source: "./media/characters/erza-bear/back.svg",
  22916. extra: 2489 / 2430,
  22917. bottom: 85.4 / 2480
  22918. }
  22919. },
  22920. tail: {
  22921. height: math.unit(42, "feet"),
  22922. name: "Tail",
  22923. image: {
  22924. source: "./media/characters/erza-bear/tail.svg"
  22925. }
  22926. },
  22927. tongue: {
  22928. height: math.unit(8, "feet"),
  22929. name: "Tongue",
  22930. image: {
  22931. source: "./media/characters/erza-bear/tongue.svg"
  22932. }
  22933. },
  22934. dick: {
  22935. height: math.unit(10.5, "feet"),
  22936. name: "Dick",
  22937. image: {
  22938. source: "./media/characters/erza-bear/dick.svg"
  22939. }
  22940. },
  22941. dickVertical: {
  22942. height: math.unit(16.9, "feet"),
  22943. name: "Dick (Vertical)",
  22944. image: {
  22945. source: "./media/characters/erza-bear/dick-vertical.svg"
  22946. }
  22947. },
  22948. },
  22949. [
  22950. {
  22951. name: "Macro",
  22952. height: math.unit(100, "feet"),
  22953. default: true
  22954. },
  22955. ]
  22956. ))
  22957. characterMakers.push(() => makeCharacter(
  22958. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22959. {
  22960. front: {
  22961. height: math.unit(172, "cm"),
  22962. weight: math.unit(73, "kg"),
  22963. name: "Front",
  22964. image: {
  22965. source: "./media/characters/violet-flor/front.svg",
  22966. extra: 1530 / 1442,
  22967. bottom: 61.9 / 1588.8
  22968. }
  22969. },
  22970. back: {
  22971. height: math.unit(180, "cm"),
  22972. weight: math.unit(73, "kg"),
  22973. name: "Back",
  22974. image: {
  22975. source: "./media/characters/violet-flor/back.svg",
  22976. extra: 1692 / 1630,
  22977. bottom: 20 / 1712
  22978. }
  22979. },
  22980. },
  22981. [
  22982. {
  22983. name: "Normal",
  22984. height: math.unit(172, "cm"),
  22985. default: true
  22986. },
  22987. ]
  22988. ))
  22989. characterMakers.push(() => makeCharacter(
  22990. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22991. {
  22992. front: {
  22993. height: math.unit(6, "feet"),
  22994. weight: math.unit(220, "lb"),
  22995. name: "Front",
  22996. image: {
  22997. source: "./media/characters/lynn-rhea/front.svg",
  22998. extra: 310 / 273
  22999. }
  23000. },
  23001. back: {
  23002. height: math.unit(6, "feet"),
  23003. weight: math.unit(220, "lb"),
  23004. name: "Back",
  23005. image: {
  23006. source: "./media/characters/lynn-rhea/back.svg",
  23007. extra: 310 / 273
  23008. }
  23009. },
  23010. dicks: {
  23011. height: math.unit(0.9, "feet"),
  23012. name: "Dicks",
  23013. image: {
  23014. source: "./media/characters/lynn-rhea/dicks.svg"
  23015. }
  23016. },
  23017. slit: {
  23018. height: math.unit(0.4, "feet"),
  23019. name: "Slit",
  23020. image: {
  23021. source: "./media/characters/lynn-rhea/slit.svg"
  23022. }
  23023. },
  23024. },
  23025. [
  23026. {
  23027. name: "Micro",
  23028. height: math.unit(1, "inch")
  23029. },
  23030. {
  23031. name: "Macro",
  23032. height: math.unit(60, "feet"),
  23033. default: true
  23034. },
  23035. {
  23036. name: "Megamacro",
  23037. height: math.unit(2, "miles")
  23038. },
  23039. {
  23040. name: "Gigamacro",
  23041. height: math.unit(3, "earths")
  23042. },
  23043. {
  23044. name: "Galactic",
  23045. height: math.unit(0.8, "galaxies")
  23046. },
  23047. ]
  23048. ))
  23049. characterMakers.push(() => makeCharacter(
  23050. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23051. {
  23052. front: {
  23053. height: math.unit(1600, "feet"),
  23054. weight: math.unit(85758785169, "kg"),
  23055. name: "Front",
  23056. image: {
  23057. source: "./media/characters/valathos/front.svg",
  23058. extra: 1451 / 1339
  23059. }
  23060. },
  23061. },
  23062. [
  23063. {
  23064. name: "Macro",
  23065. height: math.unit(1600, "feet"),
  23066. default: true
  23067. },
  23068. ]
  23069. ))
  23070. characterMakers.push(() => makeCharacter(
  23071. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23072. {
  23073. front: {
  23074. height: math.unit(7 + 5 / 12, "feet"),
  23075. weight: math.unit(300, "lb"),
  23076. name: "Front",
  23077. image: {
  23078. source: "./media/characters/azula/front.svg",
  23079. extra: 3208 / 2880,
  23080. bottom: 80.2 / 3277
  23081. }
  23082. },
  23083. back: {
  23084. height: math.unit(7 + 5 / 12, "feet"),
  23085. weight: math.unit(300, "lb"),
  23086. name: "Back",
  23087. image: {
  23088. source: "./media/characters/azula/back.svg",
  23089. extra: 3169 / 2822,
  23090. bottom: 150.6 / 3321
  23091. }
  23092. },
  23093. },
  23094. [
  23095. {
  23096. name: "Normal",
  23097. height: math.unit(7 + 5 / 12, "feet"),
  23098. default: true
  23099. },
  23100. {
  23101. name: "Big",
  23102. height: math.unit(20, "feet")
  23103. },
  23104. ]
  23105. ))
  23106. characterMakers.push(() => makeCharacter(
  23107. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23108. {
  23109. front: {
  23110. height: math.unit(5 + 1 / 12, "feet"),
  23111. weight: math.unit(110, "lb"),
  23112. name: "Front",
  23113. image: {
  23114. source: "./media/characters/rupert/front.svg",
  23115. extra: 1549 / 1495,
  23116. bottom: 54.2 / 1604.4
  23117. }
  23118. },
  23119. },
  23120. [
  23121. {
  23122. name: "Normal",
  23123. height: math.unit(5 + 1 / 12, "feet"),
  23124. default: true
  23125. },
  23126. ]
  23127. ))
  23128. characterMakers.push(() => makeCharacter(
  23129. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23130. {
  23131. front: {
  23132. height: math.unit(8 + 4 / 12, "feet"),
  23133. weight: math.unit(350, "lb"),
  23134. name: "Front",
  23135. image: {
  23136. source: "./media/characters/sheera-castellar/front.svg",
  23137. extra: 1957 / 1894,
  23138. bottom: 26.97 / 1975.017
  23139. }
  23140. },
  23141. side: {
  23142. height: math.unit(8 + 4 / 12, "feet"),
  23143. weight: math.unit(350, "lb"),
  23144. name: "Side",
  23145. image: {
  23146. source: "./media/characters/sheera-castellar/side.svg",
  23147. extra: 1957 / 1894
  23148. }
  23149. },
  23150. back: {
  23151. height: math.unit(8 + 4 / 12, "feet"),
  23152. weight: math.unit(350, "lb"),
  23153. name: "Back",
  23154. image: {
  23155. source: "./media/characters/sheera-castellar/back.svg",
  23156. extra: 1957 / 1894
  23157. }
  23158. },
  23159. angled: {
  23160. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23161. weight: math.unit(350, "lb"),
  23162. name: "Angled",
  23163. image: {
  23164. source: "./media/characters/sheera-castellar/angled.svg",
  23165. extra: 1807 / 1707,
  23166. bottom: 68 / 1875
  23167. }
  23168. },
  23169. genitals: {
  23170. height: math.unit(2.2, "feet"),
  23171. name: "Genitals",
  23172. image: {
  23173. source: "./media/characters/sheera-castellar/genitals.svg"
  23174. }
  23175. },
  23176. taur: {
  23177. height: math.unit(10 + 6/12, "feet"),
  23178. name: "Taur",
  23179. image: {
  23180. source: "./media/characters/sheera-castellar/taur.svg",
  23181. extra: 2017/1909,
  23182. bottom: 185/2202
  23183. }
  23184. },
  23185. },
  23186. [
  23187. {
  23188. name: "Normal",
  23189. height: math.unit(8 + 4 / 12, "feet")
  23190. },
  23191. {
  23192. name: "Macro",
  23193. height: math.unit(150, "feet"),
  23194. default: true
  23195. },
  23196. {
  23197. name: "Macro+",
  23198. height: math.unit(800, "feet")
  23199. },
  23200. ]
  23201. ))
  23202. characterMakers.push(() => makeCharacter(
  23203. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23204. {
  23205. front: {
  23206. height: math.unit(6, "feet"),
  23207. weight: math.unit(150, "lb"),
  23208. name: "Front",
  23209. image: {
  23210. source: "./media/characters/jaipur/front.svg",
  23211. extra: 3860 / 3731,
  23212. bottom: 287 / 4140
  23213. }
  23214. },
  23215. back: {
  23216. height: math.unit(6, "feet"),
  23217. weight: math.unit(150, "lb"),
  23218. name: "Back",
  23219. image: {
  23220. source: "./media/characters/jaipur/back.svg",
  23221. extra: 4060 / 3930,
  23222. bottom: 151 / 4200
  23223. }
  23224. },
  23225. },
  23226. [
  23227. {
  23228. name: "Normal",
  23229. height: math.unit(1.85, "meters"),
  23230. default: true
  23231. },
  23232. {
  23233. name: "Macro",
  23234. height: math.unit(150, "meters")
  23235. },
  23236. {
  23237. name: "Macro+",
  23238. height: math.unit(0.5, "miles")
  23239. },
  23240. {
  23241. name: "Macro++",
  23242. height: math.unit(2.5, "miles")
  23243. },
  23244. {
  23245. name: "Macro+++",
  23246. height: math.unit(12, "miles")
  23247. },
  23248. {
  23249. name: "Macro++++",
  23250. height: math.unit(120, "miles")
  23251. },
  23252. {
  23253. name: "Macro+++++",
  23254. height: math.unit(1200, "miles")
  23255. },
  23256. ]
  23257. ))
  23258. characterMakers.push(() => makeCharacter(
  23259. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23260. {
  23261. front: {
  23262. height: math.unit(6, "feet"),
  23263. weight: math.unit(150, "lb"),
  23264. name: "Front",
  23265. image: {
  23266. source: "./media/characters/sheila-wolf/front.svg",
  23267. extra: 1931 / 1808,
  23268. bottom: 29.5 / 1960
  23269. }
  23270. },
  23271. dick: {
  23272. height: math.unit(1.464, "feet"),
  23273. name: "Dick",
  23274. image: {
  23275. source: "./media/characters/sheila-wolf/dick.svg"
  23276. }
  23277. },
  23278. muzzle: {
  23279. height: math.unit(0.513, "feet"),
  23280. name: "Muzzle",
  23281. image: {
  23282. source: "./media/characters/sheila-wolf/muzzle.svg"
  23283. }
  23284. },
  23285. },
  23286. [
  23287. {
  23288. name: "Macro",
  23289. height: math.unit(70, "feet"),
  23290. default: true
  23291. },
  23292. ]
  23293. ))
  23294. characterMakers.push(() => makeCharacter(
  23295. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23296. {
  23297. front: {
  23298. height: math.unit(32, "meters"),
  23299. weight: math.unit(300000, "kg"),
  23300. name: "Front",
  23301. image: {
  23302. source: "./media/characters/almor/front.svg",
  23303. extra: 1408 / 1322,
  23304. bottom: 94.6 / 1506.5
  23305. }
  23306. },
  23307. },
  23308. [
  23309. {
  23310. name: "Macro",
  23311. height: math.unit(32, "meters"),
  23312. default: true
  23313. },
  23314. ]
  23315. ))
  23316. characterMakers.push(() => makeCharacter(
  23317. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23318. {
  23319. front: {
  23320. height: math.unit(7, "feet"),
  23321. weight: math.unit(200, "lb"),
  23322. name: "Front",
  23323. image: {
  23324. source: "./media/characters/silver/front.svg",
  23325. extra: 472.1 / 450.5,
  23326. bottom: 26.5 / 499.424
  23327. }
  23328. },
  23329. },
  23330. [
  23331. {
  23332. name: "Normal",
  23333. height: math.unit(7, "feet"),
  23334. default: true
  23335. },
  23336. {
  23337. name: "Macro",
  23338. height: math.unit(800, "feet")
  23339. },
  23340. {
  23341. name: "Megamacro",
  23342. height: math.unit(250, "miles")
  23343. },
  23344. ]
  23345. ))
  23346. characterMakers.push(() => makeCharacter(
  23347. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23348. {
  23349. front: {
  23350. height: math.unit(6, "feet"),
  23351. weight: math.unit(150, "lb"),
  23352. name: "Front",
  23353. image: {
  23354. source: "./media/characters/pliskin/front.svg",
  23355. extra: 1469 / 1359,
  23356. bottom: 70 / 1540
  23357. }
  23358. },
  23359. },
  23360. [
  23361. {
  23362. name: "Micro",
  23363. height: math.unit(3, "inches")
  23364. },
  23365. {
  23366. name: "Normal",
  23367. height: math.unit(5 + 11 / 12, "feet"),
  23368. default: true
  23369. },
  23370. {
  23371. name: "Macro",
  23372. height: math.unit(120, "feet")
  23373. },
  23374. ]
  23375. ))
  23376. characterMakers.push(() => makeCharacter(
  23377. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23378. {
  23379. front: {
  23380. height: math.unit(6, "feet"),
  23381. weight: math.unit(150, "lb"),
  23382. name: "Front",
  23383. image: {
  23384. source: "./media/characters/sammy/front.svg",
  23385. extra: 1193 / 1089,
  23386. bottom: 30.5 / 1226
  23387. }
  23388. },
  23389. },
  23390. [
  23391. {
  23392. name: "Macro",
  23393. height: math.unit(1700, "feet"),
  23394. default: true
  23395. },
  23396. {
  23397. name: "Examacro",
  23398. height: math.unit(2.5e9, "lightyears")
  23399. },
  23400. ]
  23401. ))
  23402. characterMakers.push(() => makeCharacter(
  23403. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23404. {
  23405. front: {
  23406. height: math.unit(21, "meters"),
  23407. weight: math.unit(12, "tonnes"),
  23408. name: "Front",
  23409. image: {
  23410. source: "./media/characters/kuru/front.svg",
  23411. extra: 4301 / 3785,
  23412. bottom: 371.3 / 4691
  23413. }
  23414. },
  23415. },
  23416. [
  23417. {
  23418. name: "Macro",
  23419. height: math.unit(21, "meters"),
  23420. default: true
  23421. },
  23422. ]
  23423. ))
  23424. characterMakers.push(() => makeCharacter(
  23425. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23426. {
  23427. front: {
  23428. height: math.unit(23, "meters"),
  23429. weight: math.unit(12.2, "tonnes"),
  23430. name: "Front",
  23431. image: {
  23432. source: "./media/characters/rakka/front.svg",
  23433. extra: 4670 / 4169,
  23434. bottom: 301 / 4968.7
  23435. }
  23436. },
  23437. },
  23438. [
  23439. {
  23440. name: "Macro",
  23441. height: math.unit(23, "meters"),
  23442. default: true
  23443. },
  23444. ]
  23445. ))
  23446. characterMakers.push(() => makeCharacter(
  23447. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23448. {
  23449. front: {
  23450. height: math.unit(6, "feet"),
  23451. weight: math.unit(150, "lb"),
  23452. name: "Front",
  23453. image: {
  23454. source: "./media/characters/rhys-feline/front.svg",
  23455. extra: 2488 / 2308,
  23456. bottom: 35.67 / 2519.19
  23457. }
  23458. },
  23459. },
  23460. [
  23461. {
  23462. name: "Really Small",
  23463. height: math.unit(1, "nm")
  23464. },
  23465. {
  23466. name: "Micro",
  23467. height: math.unit(4, "inches")
  23468. },
  23469. {
  23470. name: "Normal",
  23471. height: math.unit(4 + 10 / 12, "feet"),
  23472. default: true
  23473. },
  23474. {
  23475. name: "Macro",
  23476. height: math.unit(100, "feet")
  23477. },
  23478. {
  23479. name: "Megamacto",
  23480. height: math.unit(50, "miles")
  23481. },
  23482. ]
  23483. ))
  23484. characterMakers.push(() => makeCharacter(
  23485. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23486. {
  23487. side: {
  23488. height: math.unit(30, "feet"),
  23489. weight: math.unit(35000, "kg"),
  23490. name: "Side",
  23491. image: {
  23492. source: "./media/characters/alydar/side.svg",
  23493. extra: 234 / 222,
  23494. bottom: 6.5 / 241
  23495. }
  23496. },
  23497. front: {
  23498. height: math.unit(30, "feet"),
  23499. weight: math.unit(35000, "kg"),
  23500. name: "Front",
  23501. image: {
  23502. source: "./media/characters/alydar/front.svg",
  23503. extra: 223.37 / 210.2,
  23504. bottom: 22.3 / 246.76
  23505. }
  23506. },
  23507. top: {
  23508. height: math.unit(64.54, "feet"),
  23509. weight: math.unit(35000, "kg"),
  23510. name: "Top",
  23511. image: {
  23512. source: "./media/characters/alydar/top.svg"
  23513. }
  23514. },
  23515. anthro: {
  23516. height: math.unit(30, "feet"),
  23517. weight: math.unit(9000, "kg"),
  23518. name: "Anthro",
  23519. image: {
  23520. source: "./media/characters/alydar/anthro.svg",
  23521. extra: 432 / 421,
  23522. bottom: 7.18 / 440
  23523. }
  23524. },
  23525. maw: {
  23526. height: math.unit(11.693, "feet"),
  23527. name: "Maw",
  23528. image: {
  23529. source: "./media/characters/alydar/maw.svg"
  23530. }
  23531. },
  23532. head: {
  23533. height: math.unit(11.693, "feet"),
  23534. name: "Head",
  23535. image: {
  23536. source: "./media/characters/alydar/head.svg"
  23537. }
  23538. },
  23539. headAlt: {
  23540. height: math.unit(12.861, "feet"),
  23541. name: "Head (Alt)",
  23542. image: {
  23543. source: "./media/characters/alydar/head-alt.svg"
  23544. }
  23545. },
  23546. wing: {
  23547. height: math.unit(20.712, "feet"),
  23548. name: "Wing",
  23549. image: {
  23550. source: "./media/characters/alydar/wing.svg"
  23551. }
  23552. },
  23553. wingFeather: {
  23554. height: math.unit(9.662, "feet"),
  23555. name: "Wing Feather",
  23556. image: {
  23557. source: "./media/characters/alydar/wing-feather.svg"
  23558. }
  23559. },
  23560. countourFeather: {
  23561. height: math.unit(4.154, "feet"),
  23562. name: "Contour Feather",
  23563. image: {
  23564. source: "./media/characters/alydar/contour-feather.svg"
  23565. }
  23566. },
  23567. },
  23568. [
  23569. {
  23570. name: "Diplomatic",
  23571. height: math.unit(13, "feet"),
  23572. default: true
  23573. },
  23574. {
  23575. name: "Small",
  23576. height: math.unit(30, "feet")
  23577. },
  23578. {
  23579. name: "Normal",
  23580. height: math.unit(95, "feet"),
  23581. default: true
  23582. },
  23583. {
  23584. name: "Large",
  23585. height: math.unit(285, "feet")
  23586. },
  23587. {
  23588. name: "Incomprehensible",
  23589. height: math.unit(450, "megameters")
  23590. },
  23591. ]
  23592. ))
  23593. characterMakers.push(() => makeCharacter(
  23594. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23595. {
  23596. side: {
  23597. height: math.unit(11, "feet"),
  23598. weight: math.unit(1750, "kg"),
  23599. name: "Side",
  23600. image: {
  23601. source: "./media/characters/selicia/side.svg",
  23602. extra: 440 / 396,
  23603. bottom: 24.8 / 465.979
  23604. }
  23605. },
  23606. maw: {
  23607. height: math.unit(4.665, "feet"),
  23608. name: "Maw",
  23609. image: {
  23610. source: "./media/characters/selicia/maw.svg"
  23611. }
  23612. },
  23613. },
  23614. [
  23615. {
  23616. name: "Normal",
  23617. height: math.unit(11, "feet"),
  23618. default: true
  23619. },
  23620. ]
  23621. ))
  23622. characterMakers.push(() => makeCharacter(
  23623. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23624. {
  23625. side: {
  23626. height: math.unit(2 + 6 / 12, "feet"),
  23627. weight: math.unit(30, "lb"),
  23628. name: "Side",
  23629. image: {
  23630. source: "./media/characters/layla/side.svg",
  23631. extra: 244 / 188,
  23632. bottom: 18.2 / 262.1
  23633. }
  23634. },
  23635. back: {
  23636. height: math.unit(2 + 6 / 12, "feet"),
  23637. weight: math.unit(30, "lb"),
  23638. name: "Back",
  23639. image: {
  23640. source: "./media/characters/layla/back.svg",
  23641. extra: 308 / 241.5,
  23642. bottom: 8.9 / 316.8
  23643. }
  23644. },
  23645. cumming: {
  23646. height: math.unit(2 + 6 / 12, "feet"),
  23647. weight: math.unit(30, "lb"),
  23648. name: "Cumming",
  23649. image: {
  23650. source: "./media/characters/layla/cumming.svg",
  23651. extra: 342 / 279,
  23652. bottom: 595 / 938
  23653. }
  23654. },
  23655. dickFlaccid: {
  23656. height: math.unit(2.595, "feet"),
  23657. name: "Flaccid Genitals",
  23658. image: {
  23659. source: "./media/characters/layla/dick-flaccid.svg"
  23660. }
  23661. },
  23662. dickErect: {
  23663. height: math.unit(2.359, "feet"),
  23664. name: "Erect Genitals",
  23665. image: {
  23666. source: "./media/characters/layla/dick-erect.svg"
  23667. }
  23668. },
  23669. dragon: {
  23670. height: math.unit(40, "feet"),
  23671. name: "Dragon",
  23672. image: {
  23673. source: "./media/characters/layla/dragon.svg",
  23674. extra: 610/535,
  23675. bottom: 367/977
  23676. }
  23677. },
  23678. taur: {
  23679. height: math.unit(30, "feet"),
  23680. name: "Taur",
  23681. image: {
  23682. source: "./media/characters/layla/taur.svg",
  23683. extra: 1268/1199,
  23684. bottom: 112/1380
  23685. }
  23686. },
  23687. },
  23688. [
  23689. {
  23690. name: "Micro",
  23691. height: math.unit(1, "inch")
  23692. },
  23693. {
  23694. name: "Small",
  23695. height: math.unit(1, "foot")
  23696. },
  23697. {
  23698. name: "Normal",
  23699. height: math.unit(2 + 6 / 12, "feet"),
  23700. default: true
  23701. },
  23702. {
  23703. name: "Macro",
  23704. height: math.unit(200, "feet")
  23705. },
  23706. {
  23707. name: "Megamacro",
  23708. height: math.unit(1000, "miles")
  23709. },
  23710. {
  23711. name: "Planetary",
  23712. height: math.unit(8000, "miles")
  23713. },
  23714. {
  23715. name: "True Layla",
  23716. height: math.unit(200000 * 7, "multiverses")
  23717. },
  23718. ]
  23719. ))
  23720. characterMakers.push(() => makeCharacter(
  23721. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23722. {
  23723. back: {
  23724. height: math.unit(10.5, "feet"),
  23725. weight: math.unit(800, "lb"),
  23726. name: "Back",
  23727. image: {
  23728. source: "./media/characters/knox/back.svg",
  23729. extra: 1486 / 1089,
  23730. bottom: 107 / 1601.4
  23731. }
  23732. },
  23733. side: {
  23734. height: math.unit(10.5, "feet"),
  23735. weight: math.unit(800, "lb"),
  23736. name: "Side",
  23737. image: {
  23738. source: "./media/characters/knox/side.svg",
  23739. extra: 244 / 218,
  23740. bottom: 14 / 260
  23741. }
  23742. },
  23743. },
  23744. [
  23745. {
  23746. name: "Compact",
  23747. height: math.unit(10.5, "feet"),
  23748. default: true
  23749. },
  23750. {
  23751. name: "Dynamax",
  23752. height: math.unit(210, "feet")
  23753. },
  23754. {
  23755. name: "Full Macro",
  23756. height: math.unit(850, "feet")
  23757. },
  23758. ]
  23759. ))
  23760. characterMakers.push(() => makeCharacter(
  23761. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23762. {
  23763. front: {
  23764. height: math.unit(28, "feet"),
  23765. weight: math.unit(10500, "lb"),
  23766. name: "Front",
  23767. image: {
  23768. source: "./media/characters/kayda/front.svg",
  23769. extra: 1536 / 1428,
  23770. bottom: 68.7 / 1603
  23771. }
  23772. },
  23773. back: {
  23774. height: math.unit(28, "feet"),
  23775. weight: math.unit(10500, "lb"),
  23776. name: "Back",
  23777. image: {
  23778. source: "./media/characters/kayda/back.svg",
  23779. extra: 1557 / 1464,
  23780. bottom: 39.5 / 1597.49
  23781. }
  23782. },
  23783. dick: {
  23784. height: math.unit(3.858, "feet"),
  23785. name: "Dick",
  23786. image: {
  23787. source: "./media/characters/kayda/dick.svg"
  23788. }
  23789. },
  23790. },
  23791. [
  23792. {
  23793. name: "Macro",
  23794. height: math.unit(28, "feet"),
  23795. default: true
  23796. },
  23797. ]
  23798. ))
  23799. characterMakers.push(() => makeCharacter(
  23800. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23801. {
  23802. front: {
  23803. height: math.unit(10 + 11 / 12, "feet"),
  23804. weight: math.unit(1400, "lb"),
  23805. name: "Front",
  23806. image: {
  23807. source: "./media/characters/brian/front.svg",
  23808. extra: 737 / 692,
  23809. bottom: 55.4 / 785
  23810. }
  23811. },
  23812. },
  23813. [
  23814. {
  23815. name: "Normal",
  23816. height: math.unit(10 + 11 / 12, "feet"),
  23817. default: true
  23818. },
  23819. ]
  23820. ))
  23821. characterMakers.push(() => makeCharacter(
  23822. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23823. {
  23824. front: {
  23825. height: math.unit(5 + 8 / 12, "feet"),
  23826. weight: math.unit(140, "lb"),
  23827. name: "Front",
  23828. image: {
  23829. source: "./media/characters/khemri/front.svg",
  23830. extra: 4780 / 4059,
  23831. bottom: 80.1 / 4859.25
  23832. }
  23833. },
  23834. },
  23835. [
  23836. {
  23837. name: "Micro",
  23838. height: math.unit(6, "inches")
  23839. },
  23840. {
  23841. name: "Normal",
  23842. height: math.unit(5 + 8 / 12, "feet"),
  23843. default: true
  23844. },
  23845. ]
  23846. ))
  23847. characterMakers.push(() => makeCharacter(
  23848. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23849. {
  23850. front: {
  23851. height: math.unit(13, "feet"),
  23852. weight: math.unit(1700, "lb"),
  23853. name: "Front",
  23854. image: {
  23855. source: "./media/characters/felix-braveheart/front.svg",
  23856. extra: 1222 / 1157,
  23857. bottom: 53.2 / 1280
  23858. }
  23859. },
  23860. back: {
  23861. height: math.unit(13, "feet"),
  23862. weight: math.unit(1700, "lb"),
  23863. name: "Back",
  23864. image: {
  23865. source: "./media/characters/felix-braveheart/back.svg",
  23866. extra: 1277 / 1203,
  23867. bottom: 50.2 / 1327
  23868. }
  23869. },
  23870. feral: {
  23871. height: math.unit(6, "feet"),
  23872. weight: math.unit(400, "lb"),
  23873. name: "Feral",
  23874. image: {
  23875. source: "./media/characters/felix-braveheart/feral.svg",
  23876. extra: 682 / 625,
  23877. bottom: 6.9 / 688
  23878. }
  23879. },
  23880. },
  23881. [
  23882. {
  23883. name: "Normal",
  23884. height: math.unit(13, "feet"),
  23885. default: true
  23886. },
  23887. ]
  23888. ))
  23889. characterMakers.push(() => makeCharacter(
  23890. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23891. {
  23892. side: {
  23893. height: math.unit(5 + 11 / 12, "feet"),
  23894. weight: math.unit(1400, "lb"),
  23895. name: "Side",
  23896. image: {
  23897. source: "./media/characters/shadow-blade/side.svg",
  23898. extra: 1726 / 1267,
  23899. bottom: 58.4 / 1785
  23900. }
  23901. },
  23902. },
  23903. [
  23904. {
  23905. name: "Normal",
  23906. height: math.unit(5 + 11 / 12, "feet"),
  23907. default: true
  23908. },
  23909. ]
  23910. ))
  23911. characterMakers.push(() => makeCharacter(
  23912. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23913. {
  23914. front: {
  23915. height: math.unit(1 + 6 / 12, "feet"),
  23916. weight: math.unit(25, "lb"),
  23917. name: "Front",
  23918. image: {
  23919. source: "./media/characters/karla-halldor/front.svg",
  23920. extra: 1459 / 1383,
  23921. bottom: 12 / 1472
  23922. }
  23923. },
  23924. },
  23925. [
  23926. {
  23927. name: "Normal",
  23928. height: math.unit(1 + 6 / 12, "feet"),
  23929. default: true
  23930. },
  23931. ]
  23932. ))
  23933. characterMakers.push(() => makeCharacter(
  23934. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23935. {
  23936. front: {
  23937. height: math.unit(6 + 2 / 12, "feet"),
  23938. weight: math.unit(160, "lb"),
  23939. name: "Front",
  23940. image: {
  23941. source: "./media/characters/ariam/front.svg",
  23942. extra: 714 / 617,
  23943. bottom: 23.4 / 737,
  23944. }
  23945. },
  23946. squatting: {
  23947. height: math.unit(4.1, "feet"),
  23948. weight: math.unit(160, "lb"),
  23949. name: "Squatting",
  23950. image: {
  23951. source: "./media/characters/ariam/squatting.svg",
  23952. extra: 2617 / 2112,
  23953. bottom: 61.2 / 2681,
  23954. }
  23955. },
  23956. },
  23957. [
  23958. {
  23959. name: "Normal",
  23960. height: math.unit(6 + 2 / 12, "feet"),
  23961. default: true
  23962. },
  23963. {
  23964. name: "Normal+",
  23965. height: math.unit(4, "meters")
  23966. },
  23967. {
  23968. name: "Macro",
  23969. height: math.unit(50, "meters")
  23970. },
  23971. {
  23972. name: "Macro+",
  23973. height: math.unit(100, "meters")
  23974. },
  23975. {
  23976. name: "Megamacro",
  23977. height: math.unit(20, "km")
  23978. },
  23979. ]
  23980. ))
  23981. characterMakers.push(() => makeCharacter(
  23982. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23983. {
  23984. front: {
  23985. height: math.unit(1.67, "meters"),
  23986. weight: math.unit(140, "lb"),
  23987. name: "Front",
  23988. image: {
  23989. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23990. extra: 438 / 410,
  23991. bottom: 0.75 / 439
  23992. }
  23993. },
  23994. },
  23995. [
  23996. {
  23997. name: "Shrunken",
  23998. height: math.unit(7.6, "cm")
  23999. },
  24000. {
  24001. name: "Human Scale",
  24002. height: math.unit(1.67, "meters")
  24003. },
  24004. {
  24005. name: "Wolxi Scale",
  24006. height: math.unit(36.7, "meters"),
  24007. default: true
  24008. },
  24009. ]
  24010. ))
  24011. characterMakers.push(() => makeCharacter(
  24012. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24013. {
  24014. front: {
  24015. height: math.unit(1.73, "meters"),
  24016. weight: math.unit(240, "lb"),
  24017. name: "Front",
  24018. image: {
  24019. source: "./media/characters/izue-two-mothers/front.svg",
  24020. extra: 469 / 437,
  24021. bottom: 1.24 / 470.6
  24022. }
  24023. },
  24024. },
  24025. [
  24026. {
  24027. name: "Shrunken",
  24028. height: math.unit(7.86, "cm")
  24029. },
  24030. {
  24031. name: "Human Scale",
  24032. height: math.unit(1.73, "meters")
  24033. },
  24034. {
  24035. name: "Wolxi Scale",
  24036. height: math.unit(38, "meters"),
  24037. default: true
  24038. },
  24039. ]
  24040. ))
  24041. characterMakers.push(() => makeCharacter(
  24042. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24043. {
  24044. front: {
  24045. height: math.unit(1.55, "meters"),
  24046. weight: math.unit(120, "lb"),
  24047. name: "Front",
  24048. image: {
  24049. source: "./media/characters/teeku-love-shack/front.svg",
  24050. extra: 387 / 362,
  24051. bottom: 1.51 / 388
  24052. }
  24053. },
  24054. },
  24055. [
  24056. {
  24057. name: "Shrunken",
  24058. height: math.unit(7, "cm")
  24059. },
  24060. {
  24061. name: "Human Scale",
  24062. height: math.unit(1.55, "meters")
  24063. },
  24064. {
  24065. name: "Wolxi Scale",
  24066. height: math.unit(34.1, "meters"),
  24067. default: true
  24068. },
  24069. ]
  24070. ))
  24071. characterMakers.push(() => makeCharacter(
  24072. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24073. {
  24074. front: {
  24075. height: math.unit(1.83, "meters"),
  24076. weight: math.unit(135, "lb"),
  24077. name: "Front",
  24078. image: {
  24079. source: "./media/characters/dejma-the-red/front.svg",
  24080. extra: 480 / 458,
  24081. bottom: 1.8 / 482
  24082. }
  24083. },
  24084. },
  24085. [
  24086. {
  24087. name: "Shrunken",
  24088. height: math.unit(8.3, "cm")
  24089. },
  24090. {
  24091. name: "Human Scale",
  24092. height: math.unit(1.83, "meters")
  24093. },
  24094. {
  24095. name: "Wolxi Scale",
  24096. height: math.unit(40, "meters"),
  24097. default: true
  24098. },
  24099. ]
  24100. ))
  24101. characterMakers.push(() => makeCharacter(
  24102. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24103. {
  24104. front: {
  24105. height: math.unit(1.78, "meters"),
  24106. weight: math.unit(65, "kg"),
  24107. name: "Front",
  24108. image: {
  24109. source: "./media/characters/aki/front.svg",
  24110. extra: 452 / 415
  24111. }
  24112. },
  24113. frontNsfw: {
  24114. height: math.unit(1.78, "meters"),
  24115. weight: math.unit(65, "kg"),
  24116. name: "Front (NSFW)",
  24117. image: {
  24118. source: "./media/characters/aki/front-nsfw.svg",
  24119. extra: 452 / 415
  24120. }
  24121. },
  24122. back: {
  24123. height: math.unit(1.78, "meters"),
  24124. weight: math.unit(65, "kg"),
  24125. name: "Back",
  24126. image: {
  24127. source: "./media/characters/aki/back.svg",
  24128. extra: 452 / 415
  24129. }
  24130. },
  24131. rump: {
  24132. height: math.unit(2.05, "feet"),
  24133. name: "Rump",
  24134. image: {
  24135. source: "./media/characters/aki/rump.svg"
  24136. }
  24137. },
  24138. dick: {
  24139. height: math.unit(0.95, "feet"),
  24140. name: "Dick",
  24141. image: {
  24142. source: "./media/characters/aki/dick.svg"
  24143. }
  24144. },
  24145. },
  24146. [
  24147. {
  24148. name: "Micro",
  24149. height: math.unit(15, "cm")
  24150. },
  24151. {
  24152. name: "Normal",
  24153. height: math.unit(178, "cm"),
  24154. default: true
  24155. },
  24156. {
  24157. name: "Macro",
  24158. height: math.unit(214, "m")
  24159. },
  24160. {
  24161. name: "Macro+",
  24162. height: math.unit(534, "m")
  24163. },
  24164. ]
  24165. ))
  24166. characterMakers.push(() => makeCharacter(
  24167. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24168. {
  24169. front: {
  24170. height: math.unit(5 + 5 / 12, "feet"),
  24171. weight: math.unit(120, "lb"),
  24172. name: "Front",
  24173. image: {
  24174. source: "./media/characters/ari/front.svg",
  24175. extra: 714.5 / 682,
  24176. bottom: 8 / 722.5
  24177. }
  24178. },
  24179. },
  24180. [
  24181. {
  24182. name: "Normal",
  24183. height: math.unit(5 + 5 / 12, "feet")
  24184. },
  24185. {
  24186. name: "Macro",
  24187. height: math.unit(100, "feet"),
  24188. default: true
  24189. },
  24190. {
  24191. name: "Megamacro",
  24192. height: math.unit(100, "miles")
  24193. },
  24194. {
  24195. name: "Gigamacro",
  24196. height: math.unit(80000, "miles")
  24197. },
  24198. ]
  24199. ))
  24200. characterMakers.push(() => makeCharacter(
  24201. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24202. {
  24203. side: {
  24204. height: math.unit(9, "feet"),
  24205. weight: math.unit(400, "kg"),
  24206. name: "Side",
  24207. image: {
  24208. source: "./media/characters/bolt/side.svg",
  24209. extra: 1126 / 896,
  24210. bottom: 60 / 1187.3,
  24211. }
  24212. },
  24213. },
  24214. [
  24215. {
  24216. name: "Micro",
  24217. height: math.unit(5, "inches")
  24218. },
  24219. {
  24220. name: "Normal",
  24221. height: math.unit(9, "feet"),
  24222. default: true
  24223. },
  24224. {
  24225. name: "Macro",
  24226. height: math.unit(700, "feet")
  24227. },
  24228. {
  24229. name: "Max Size",
  24230. height: math.unit(1.52e22, "yottameters")
  24231. },
  24232. ]
  24233. ))
  24234. characterMakers.push(() => makeCharacter(
  24235. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24236. {
  24237. front: {
  24238. height: math.unit(4.53, "meters"),
  24239. weight: math.unit(3, "tons"),
  24240. name: "Front",
  24241. image: {
  24242. source: "./media/characters/draekon-sylviar/front.svg",
  24243. extra: 1228 / 1068,
  24244. bottom: 41 / 1270
  24245. }
  24246. },
  24247. tail: {
  24248. height: math.unit(1.772, "meter"),
  24249. name: "Tail",
  24250. image: {
  24251. source: "./media/characters/draekon-sylviar/tail.svg"
  24252. }
  24253. },
  24254. head: {
  24255. height: math.unit(1.331, "meter"),
  24256. name: "Head",
  24257. image: {
  24258. source: "./media/characters/draekon-sylviar/head.svg"
  24259. }
  24260. },
  24261. hand: {
  24262. height: math.unit(0.564, "meter"),
  24263. name: "Hand",
  24264. image: {
  24265. source: "./media/characters/draekon-sylviar/hand.svg"
  24266. }
  24267. },
  24268. foot: {
  24269. height: math.unit(0.621, "meter"),
  24270. name: "Foot",
  24271. image: {
  24272. source: "./media/characters/draekon-sylviar/foot.svg",
  24273. bottom: 32 / 324
  24274. }
  24275. },
  24276. dick: {
  24277. height: math.unit(61, "cm"),
  24278. name: "Dick",
  24279. image: {
  24280. source: "./media/characters/draekon-sylviar/dick.svg"
  24281. }
  24282. },
  24283. dickseparated: {
  24284. height: math.unit(61, "cm"),
  24285. name: "Dick-separated",
  24286. image: {
  24287. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24288. }
  24289. },
  24290. },
  24291. [
  24292. {
  24293. name: "Small",
  24294. height: math.unit(4.53 / 2, "meters"),
  24295. default: true
  24296. },
  24297. {
  24298. name: "Normal",
  24299. height: math.unit(4.53, "meters"),
  24300. default: true
  24301. },
  24302. {
  24303. name: "Large",
  24304. height: math.unit(4.53 * 2, "meters"),
  24305. },
  24306. ]
  24307. ))
  24308. characterMakers.push(() => makeCharacter(
  24309. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24310. {
  24311. front: {
  24312. height: math.unit(6 + 2 / 12, "feet"),
  24313. weight: math.unit(180, "lb"),
  24314. name: "Front",
  24315. image: {
  24316. source: "./media/characters/brawler/front.svg",
  24317. extra: 3301 / 3027,
  24318. bottom: 138 / 3439
  24319. }
  24320. },
  24321. },
  24322. [
  24323. {
  24324. name: "Normal",
  24325. height: math.unit(6 + 2 / 12, "feet"),
  24326. default: true
  24327. },
  24328. ]
  24329. ))
  24330. characterMakers.push(() => makeCharacter(
  24331. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24332. {
  24333. front: {
  24334. height: math.unit(11, "feet"),
  24335. weight: math.unit(1000, "lb"),
  24336. name: "Front",
  24337. image: {
  24338. source: "./media/characters/alex/front.svg",
  24339. bottom: 44.5 / 620
  24340. }
  24341. },
  24342. },
  24343. [
  24344. {
  24345. name: "Micro",
  24346. height: math.unit(5, "inches")
  24347. },
  24348. {
  24349. name: "Normal",
  24350. height: math.unit(11, "feet"),
  24351. default: true
  24352. },
  24353. {
  24354. name: "Macro",
  24355. height: math.unit(9.5e9, "feet")
  24356. },
  24357. {
  24358. name: "Max Size",
  24359. height: math.unit(1.4e283, "yottameters")
  24360. },
  24361. ]
  24362. ))
  24363. characterMakers.push(() => makeCharacter(
  24364. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24365. {
  24366. female: {
  24367. height: math.unit(29.9, "m"),
  24368. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24369. name: "Female",
  24370. image: {
  24371. source: "./media/characters/zenari/female.svg",
  24372. extra: 3281.6 / 3217,
  24373. bottom: 72.2 / 3353
  24374. }
  24375. },
  24376. male: {
  24377. height: math.unit(27.7, "m"),
  24378. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24379. name: "Male",
  24380. image: {
  24381. source: "./media/characters/zenari/male.svg",
  24382. extra: 3008 / 2991,
  24383. bottom: 54.6 / 3069
  24384. }
  24385. },
  24386. },
  24387. [
  24388. {
  24389. name: "Macro",
  24390. height: math.unit(29.7, "meters"),
  24391. default: true
  24392. },
  24393. ]
  24394. ))
  24395. characterMakers.push(() => makeCharacter(
  24396. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24397. {
  24398. female: {
  24399. height: math.unit(23.8, "m"),
  24400. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24401. name: "Female",
  24402. image: {
  24403. source: "./media/characters/mactarian/female.svg",
  24404. extra: 2662 / 2569,
  24405. bottom: 73 / 2736
  24406. }
  24407. },
  24408. male: {
  24409. height: math.unit(23.8, "m"),
  24410. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24411. name: "Male",
  24412. image: {
  24413. source: "./media/characters/mactarian/male.svg",
  24414. extra: 2673 / 2600,
  24415. bottom: 76 / 2750
  24416. }
  24417. },
  24418. },
  24419. [
  24420. {
  24421. name: "Macro",
  24422. height: math.unit(23.8, "meters"),
  24423. default: true
  24424. },
  24425. ]
  24426. ))
  24427. characterMakers.push(() => makeCharacter(
  24428. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24429. {
  24430. female: {
  24431. height: math.unit(19.3, "m"),
  24432. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24433. name: "Female",
  24434. image: {
  24435. source: "./media/characters/umok/female.svg",
  24436. extra: 2186 / 2078,
  24437. bottom: 87 / 2277
  24438. }
  24439. },
  24440. male: {
  24441. height: math.unit(19.5, "m"),
  24442. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24443. name: "Male",
  24444. image: {
  24445. source: "./media/characters/umok/male.svg",
  24446. extra: 2233 / 2140,
  24447. bottom: 24.4 / 2258
  24448. }
  24449. },
  24450. },
  24451. [
  24452. {
  24453. name: "Macro",
  24454. height: math.unit(19.3, "meters"),
  24455. default: true
  24456. },
  24457. ]
  24458. ))
  24459. characterMakers.push(() => makeCharacter(
  24460. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24461. {
  24462. female: {
  24463. height: math.unit(26.15, "m"),
  24464. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24465. name: "Female",
  24466. image: {
  24467. source: "./media/characters/joraxian/female.svg",
  24468. extra: 2912 / 2824,
  24469. bottom: 36 / 2956
  24470. }
  24471. },
  24472. male: {
  24473. height: math.unit(25.4, "m"),
  24474. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24475. name: "Male",
  24476. image: {
  24477. source: "./media/characters/joraxian/male.svg",
  24478. extra: 2877 / 2721,
  24479. bottom: 82 / 2967
  24480. }
  24481. },
  24482. },
  24483. [
  24484. {
  24485. name: "Macro",
  24486. height: math.unit(26.15, "meters"),
  24487. default: true
  24488. },
  24489. ]
  24490. ))
  24491. characterMakers.push(() => makeCharacter(
  24492. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24493. {
  24494. female: {
  24495. height: math.unit(21.6, "m"),
  24496. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24497. name: "Female",
  24498. image: {
  24499. source: "./media/characters/sthara/female.svg",
  24500. extra: 2516 / 2347,
  24501. bottom: 21.5 / 2537
  24502. }
  24503. },
  24504. male: {
  24505. height: math.unit(24, "m"),
  24506. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24507. name: "Male",
  24508. image: {
  24509. source: "./media/characters/sthara/male.svg",
  24510. extra: 2732 / 2607,
  24511. bottom: 23 / 2732
  24512. }
  24513. },
  24514. },
  24515. [
  24516. {
  24517. name: "Macro",
  24518. height: math.unit(21.6, "meters"),
  24519. default: true
  24520. },
  24521. ]
  24522. ))
  24523. characterMakers.push(() => makeCharacter(
  24524. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24525. {
  24526. front: {
  24527. height: math.unit(6 + 4 / 12, "feet"),
  24528. weight: math.unit(175, "lb"),
  24529. name: "Front",
  24530. image: {
  24531. source: "./media/characters/luka-bryzant/front.svg",
  24532. extra: 311 / 289,
  24533. bottom: 4 / 315
  24534. }
  24535. },
  24536. back: {
  24537. height: math.unit(6 + 4 / 12, "feet"),
  24538. weight: math.unit(175, "lb"),
  24539. name: "Back",
  24540. image: {
  24541. source: "./media/characters/luka-bryzant/back.svg",
  24542. extra: 311 / 289,
  24543. bottom: 3.8 / 313.7
  24544. }
  24545. },
  24546. },
  24547. [
  24548. {
  24549. name: "Micro",
  24550. height: math.unit(10, "inches")
  24551. },
  24552. {
  24553. name: "Normal",
  24554. height: math.unit(6 + 4 / 12, "feet"),
  24555. default: true
  24556. },
  24557. {
  24558. name: "Large",
  24559. height: math.unit(12, "feet")
  24560. },
  24561. ]
  24562. ))
  24563. characterMakers.push(() => makeCharacter(
  24564. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24565. {
  24566. front: {
  24567. height: math.unit(5 + 7 / 12, "feet"),
  24568. weight: math.unit(185, "lb"),
  24569. name: "Front",
  24570. image: {
  24571. source: "./media/characters/aman-aquila/front.svg",
  24572. extra: 1013 / 976,
  24573. bottom: 45.6 / 1057
  24574. }
  24575. },
  24576. side: {
  24577. height: math.unit(5 + 7 / 12, "feet"),
  24578. weight: math.unit(185, "lb"),
  24579. name: "Side",
  24580. image: {
  24581. source: "./media/characters/aman-aquila/side.svg",
  24582. extra: 1054 / 1011,
  24583. bottom: 15 / 1070
  24584. }
  24585. },
  24586. back: {
  24587. height: math.unit(5 + 7 / 12, "feet"),
  24588. weight: math.unit(185, "lb"),
  24589. name: "Back",
  24590. image: {
  24591. source: "./media/characters/aman-aquila/back.svg",
  24592. extra: 1026 / 970,
  24593. bottom: 12 / 1039
  24594. }
  24595. },
  24596. head: {
  24597. height: math.unit(1.211, "feet"),
  24598. name: "Head",
  24599. image: {
  24600. source: "./media/characters/aman-aquila/head.svg",
  24601. }
  24602. },
  24603. },
  24604. [
  24605. {
  24606. name: "Minimicro",
  24607. height: math.unit(0.057, "inches")
  24608. },
  24609. {
  24610. name: "Micro",
  24611. height: math.unit(7, "inches")
  24612. },
  24613. {
  24614. name: "Mini",
  24615. height: math.unit(3 + 7 / 12, "feet")
  24616. },
  24617. {
  24618. name: "Normal",
  24619. height: math.unit(5 + 7 / 12, "feet"),
  24620. default: true
  24621. },
  24622. {
  24623. name: "Macro",
  24624. height: math.unit(157 + 7 / 12, "feet")
  24625. },
  24626. {
  24627. name: "Megamacro",
  24628. height: math.unit(1557 + 7 / 12, "feet")
  24629. },
  24630. {
  24631. name: "Gigamacro",
  24632. height: math.unit(15557 + 7 / 12, "feet")
  24633. },
  24634. ]
  24635. ))
  24636. characterMakers.push(() => makeCharacter(
  24637. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24638. {
  24639. front: {
  24640. height: math.unit(3 + 2 / 12, "inches"),
  24641. weight: math.unit(0.3, "ounces"),
  24642. name: "Front",
  24643. image: {
  24644. source: "./media/characters/hiphae/front.svg",
  24645. extra: 1931 / 1683,
  24646. bottom: 24 / 1955
  24647. }
  24648. },
  24649. },
  24650. [
  24651. {
  24652. name: "Normal",
  24653. height: math.unit(3 + 1 / 2, "inches"),
  24654. default: true
  24655. },
  24656. ]
  24657. ))
  24658. characterMakers.push(() => makeCharacter(
  24659. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24660. {
  24661. front: {
  24662. height: math.unit(5 + 10 / 12, "feet"),
  24663. weight: math.unit(165, "lb"),
  24664. name: "Front",
  24665. image: {
  24666. source: "./media/characters/nicky/front.svg",
  24667. extra: 3144 / 2886,
  24668. bottom: 45.6 / 3192
  24669. }
  24670. },
  24671. back: {
  24672. height: math.unit(5 + 10 / 12, "feet"),
  24673. weight: math.unit(165, "lb"),
  24674. name: "Back",
  24675. image: {
  24676. source: "./media/characters/nicky/back.svg",
  24677. extra: 3055 / 2804,
  24678. bottom: 28.4 / 3087
  24679. }
  24680. },
  24681. frontclothed: {
  24682. height: math.unit(5 + 10 / 12, "feet"),
  24683. weight: math.unit(165, "lb"),
  24684. name: "Front-clothed",
  24685. image: {
  24686. source: "./media/characters/nicky/front-clothed.svg",
  24687. extra: 3184.9 / 2926.9,
  24688. bottom: 86.5 / 3239.9
  24689. }
  24690. },
  24691. foot: {
  24692. height: math.unit(1.16, "feet"),
  24693. name: "Foot",
  24694. image: {
  24695. source: "./media/characters/nicky/foot.svg"
  24696. }
  24697. },
  24698. feet: {
  24699. height: math.unit(1.34, "feet"),
  24700. name: "Feet",
  24701. image: {
  24702. source: "./media/characters/nicky/feet.svg"
  24703. }
  24704. },
  24705. maw: {
  24706. height: math.unit(0.9, "feet"),
  24707. name: "Maw",
  24708. image: {
  24709. source: "./media/characters/nicky/maw.svg"
  24710. }
  24711. },
  24712. },
  24713. [
  24714. {
  24715. name: "Normal",
  24716. height: math.unit(5 + 10 / 12, "feet"),
  24717. default: true
  24718. },
  24719. {
  24720. name: "Macro",
  24721. height: math.unit(60, "feet")
  24722. },
  24723. {
  24724. name: "Megamacro",
  24725. height: math.unit(1, "mile")
  24726. },
  24727. ]
  24728. ))
  24729. characterMakers.push(() => makeCharacter(
  24730. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24731. {
  24732. side: {
  24733. height: math.unit(10, "feet"),
  24734. weight: math.unit(600, "lb"),
  24735. name: "Side",
  24736. image: {
  24737. source: "./media/characters/blair/side.svg",
  24738. bottom: 16.6 / 475,
  24739. extra: 458 / 431
  24740. }
  24741. },
  24742. },
  24743. [
  24744. {
  24745. name: "Micro",
  24746. height: math.unit(8, "inches")
  24747. },
  24748. {
  24749. name: "Normal",
  24750. height: math.unit(10, "feet"),
  24751. default: true
  24752. },
  24753. {
  24754. name: "Macro",
  24755. height: math.unit(180, "feet")
  24756. },
  24757. ]
  24758. ))
  24759. characterMakers.push(() => makeCharacter(
  24760. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24761. {
  24762. front: {
  24763. height: math.unit(5 + 4 / 12, "feet"),
  24764. weight: math.unit(125, "lb"),
  24765. name: "Front",
  24766. image: {
  24767. source: "./media/characters/fisher/front.svg",
  24768. extra: 444 / 390,
  24769. bottom: 2 / 444.8
  24770. }
  24771. },
  24772. },
  24773. [
  24774. {
  24775. name: "Micro",
  24776. height: math.unit(4, "inches")
  24777. },
  24778. {
  24779. name: "Normal",
  24780. height: math.unit(5 + 4 / 12, "feet"),
  24781. default: true
  24782. },
  24783. {
  24784. name: "Macro",
  24785. height: math.unit(100, "feet")
  24786. },
  24787. ]
  24788. ))
  24789. characterMakers.push(() => makeCharacter(
  24790. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24791. {
  24792. front: {
  24793. height: math.unit(6.71, "feet"),
  24794. weight: math.unit(200, "lb"),
  24795. capacity: math.unit(1000000, "people"),
  24796. name: "Front",
  24797. image: {
  24798. source: "./media/characters/gliss/front.svg",
  24799. extra: 2347 / 2231,
  24800. bottom: 113 / 2462
  24801. }
  24802. },
  24803. hammerspaceSize: {
  24804. height: math.unit(6.71 * 717, "feet"),
  24805. weight: math.unit(200, "lb"),
  24806. capacity: math.unit(1000000, "people"),
  24807. name: "Hammerspace Size",
  24808. image: {
  24809. source: "./media/characters/gliss/front.svg",
  24810. extra: 2347 / 2231,
  24811. bottom: 113 / 2462
  24812. }
  24813. },
  24814. },
  24815. [
  24816. {
  24817. name: "Normal",
  24818. height: math.unit(6.71, "feet"),
  24819. default: true
  24820. },
  24821. ]
  24822. ))
  24823. characterMakers.push(() => makeCharacter(
  24824. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24825. {
  24826. side: {
  24827. height: math.unit(1.44, "m"),
  24828. weight: math.unit(80, "kg"),
  24829. name: "Side",
  24830. image: {
  24831. source: "./media/characters/dune-anderson/side.svg",
  24832. bottom: 49 / 1426
  24833. }
  24834. },
  24835. },
  24836. [
  24837. {
  24838. name: "Wolf-sized",
  24839. height: math.unit(1.44, "meters")
  24840. },
  24841. {
  24842. name: "Normal",
  24843. height: math.unit(5.05, "meters"),
  24844. default: true
  24845. },
  24846. {
  24847. name: "Big",
  24848. height: math.unit(14.4, "meters")
  24849. },
  24850. {
  24851. name: "Huge",
  24852. height: math.unit(144, "meters")
  24853. },
  24854. ]
  24855. ))
  24856. characterMakers.push(() => makeCharacter(
  24857. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24858. {
  24859. front: {
  24860. height: math.unit(7, "feet"),
  24861. weight: math.unit(425, "lb"),
  24862. name: "Front",
  24863. image: {
  24864. source: "./media/characters/hind/front.svg",
  24865. extra: 2091 / 1860,
  24866. bottom: 129 / 2220
  24867. }
  24868. },
  24869. back: {
  24870. height: math.unit(7, "feet"),
  24871. weight: math.unit(425, "lb"),
  24872. name: "Back",
  24873. image: {
  24874. source: "./media/characters/hind/back.svg",
  24875. extra: 2091 / 1860,
  24876. bottom: 24.6 / 2309
  24877. }
  24878. },
  24879. tail: {
  24880. height: math.unit(2.8, "feet"),
  24881. name: "Tail",
  24882. image: {
  24883. source: "./media/characters/hind/tail.svg"
  24884. }
  24885. },
  24886. head: {
  24887. height: math.unit(2.55, "feet"),
  24888. name: "Head",
  24889. image: {
  24890. source: "./media/characters/hind/head.svg"
  24891. }
  24892. },
  24893. },
  24894. [
  24895. {
  24896. name: "XS",
  24897. height: math.unit(0.7, "feet")
  24898. },
  24899. {
  24900. name: "Normal",
  24901. height: math.unit(7, "feet"),
  24902. default: true
  24903. },
  24904. {
  24905. name: "XL",
  24906. height: math.unit(70, "feet")
  24907. },
  24908. ]
  24909. ))
  24910. characterMakers.push(() => makeCharacter(
  24911. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24912. {
  24913. front: {
  24914. height: math.unit(2.1, "meters"),
  24915. weight: math.unit(150, "lb"),
  24916. name: "Front",
  24917. image: {
  24918. source: "./media/characters/tharquench-sizestealer/front.svg",
  24919. extra: 1605/1470,
  24920. bottom: 36/1641
  24921. }
  24922. },
  24923. frontAlt: {
  24924. height: math.unit(2.1, "meters"),
  24925. weight: math.unit(150, "lb"),
  24926. name: "Front (Alt)",
  24927. image: {
  24928. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  24929. extra: 2318 / 2063,
  24930. bottom: 93.4 / 2410
  24931. }
  24932. },
  24933. },
  24934. [
  24935. {
  24936. name: "Nano",
  24937. height: math.unit(1, "mm")
  24938. },
  24939. {
  24940. name: "Micro",
  24941. height: math.unit(1, "cm")
  24942. },
  24943. {
  24944. name: "Normal",
  24945. height: math.unit(2.1, "meters"),
  24946. default: true
  24947. },
  24948. ]
  24949. ))
  24950. characterMakers.push(() => makeCharacter(
  24951. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24952. {
  24953. front: {
  24954. height: math.unit(7 + 5 / 12, "feet"),
  24955. weight: math.unit(357, "lb"),
  24956. name: "Front",
  24957. image: {
  24958. source: "./media/characters/solex-draconov/front.svg",
  24959. extra: 1993 / 1865,
  24960. bottom: 117 / 2111
  24961. }
  24962. },
  24963. },
  24964. [
  24965. {
  24966. name: "Natural Height",
  24967. height: math.unit(7 + 5 / 12, "feet"),
  24968. default: true
  24969. },
  24970. {
  24971. name: "Macro",
  24972. height: math.unit(350, "feet")
  24973. },
  24974. {
  24975. name: "Macro+",
  24976. height: math.unit(1000, "feet")
  24977. },
  24978. {
  24979. name: "Megamacro",
  24980. height: math.unit(20, "km")
  24981. },
  24982. {
  24983. name: "Megamacro+",
  24984. height: math.unit(1000, "km")
  24985. },
  24986. {
  24987. name: "Gigamacro",
  24988. height: math.unit(2.5, "Gm")
  24989. },
  24990. {
  24991. name: "Teramacro",
  24992. height: math.unit(15, "Tm")
  24993. },
  24994. {
  24995. name: "Galactic",
  24996. height: math.unit(30, "Zm")
  24997. },
  24998. {
  24999. name: "Universal",
  25000. height: math.unit(21000, "Ym")
  25001. },
  25002. {
  25003. name: "Omniversal",
  25004. height: math.unit(9.861e50, "Ym")
  25005. },
  25006. {
  25007. name: "Existential",
  25008. height: math.unit(1e300, "meters")
  25009. },
  25010. ]
  25011. ))
  25012. characterMakers.push(() => makeCharacter(
  25013. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25014. {
  25015. side: {
  25016. height: math.unit(25, "feet"),
  25017. weight: math.unit(90000, "lb"),
  25018. name: "Side",
  25019. image: {
  25020. source: "./media/characters/mandarax/side.svg",
  25021. extra: 614 / 332,
  25022. bottom: 55 / 630
  25023. }
  25024. },
  25025. head: {
  25026. height: math.unit(11.4, "feet"),
  25027. name: "Head",
  25028. image: {
  25029. source: "./media/characters/mandarax/head.svg"
  25030. }
  25031. },
  25032. belly: {
  25033. height: math.unit(33, "feet"),
  25034. name: "Belly",
  25035. capacity: math.unit(500, "people"),
  25036. image: {
  25037. source: "./media/characters/mandarax/belly.svg"
  25038. }
  25039. },
  25040. dick: {
  25041. height: math.unit(8.46, "feet"),
  25042. name: "Dick",
  25043. image: {
  25044. source: "./media/characters/mandarax/dick.svg"
  25045. }
  25046. },
  25047. top: {
  25048. height: math.unit(28, "meters"),
  25049. name: "Top",
  25050. image: {
  25051. source: "./media/characters/mandarax/top.svg"
  25052. }
  25053. },
  25054. },
  25055. [
  25056. {
  25057. name: "Normal",
  25058. height: math.unit(25, "feet"),
  25059. default: true
  25060. },
  25061. ]
  25062. ))
  25063. characterMakers.push(() => makeCharacter(
  25064. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25065. {
  25066. front: {
  25067. height: math.unit(5, "feet"),
  25068. weight: math.unit(90, "lb"),
  25069. name: "Front",
  25070. image: {
  25071. source: "./media/characters/pixil/front.svg",
  25072. extra: 2000 / 1618,
  25073. bottom: 12.3 / 2011
  25074. }
  25075. },
  25076. },
  25077. [
  25078. {
  25079. name: "Normal",
  25080. height: math.unit(5, "feet"),
  25081. default: true
  25082. },
  25083. {
  25084. name: "Megamacro",
  25085. height: math.unit(10, "miles"),
  25086. },
  25087. ]
  25088. ))
  25089. characterMakers.push(() => makeCharacter(
  25090. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25091. {
  25092. front: {
  25093. height: math.unit(7 + 2 / 12, "feet"),
  25094. weight: math.unit(200, "lb"),
  25095. name: "Front",
  25096. image: {
  25097. source: "./media/characters/angel/front.svg",
  25098. extra: 1830 / 1737,
  25099. bottom: 22.6 / 1854,
  25100. }
  25101. },
  25102. },
  25103. [
  25104. {
  25105. name: "Normal",
  25106. height: math.unit(7 + 2 / 12, "feet"),
  25107. default: true
  25108. },
  25109. {
  25110. name: "Macro",
  25111. height: math.unit(1000, "feet")
  25112. },
  25113. {
  25114. name: "Megamacro",
  25115. height: math.unit(2, "miles")
  25116. },
  25117. {
  25118. name: "Gigamacro",
  25119. height: math.unit(20, "earths")
  25120. },
  25121. ]
  25122. ))
  25123. characterMakers.push(() => makeCharacter(
  25124. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25125. {
  25126. front: {
  25127. height: math.unit(5, "feet"),
  25128. weight: math.unit(180, "lb"),
  25129. name: "Front",
  25130. image: {
  25131. source: "./media/characters/mekana/front.svg",
  25132. extra: 1671 / 1605,
  25133. bottom: 3.5 / 1691
  25134. }
  25135. },
  25136. side: {
  25137. height: math.unit(5, "feet"),
  25138. weight: math.unit(180, "lb"),
  25139. name: "Side",
  25140. image: {
  25141. source: "./media/characters/mekana/side.svg",
  25142. extra: 1671 / 1605,
  25143. bottom: 3.5 / 1691
  25144. }
  25145. },
  25146. back: {
  25147. height: math.unit(5, "feet"),
  25148. weight: math.unit(180, "lb"),
  25149. name: "Back",
  25150. image: {
  25151. source: "./media/characters/mekana/back.svg",
  25152. extra: 1671 / 1605,
  25153. bottom: 3.5 / 1691
  25154. }
  25155. },
  25156. },
  25157. [
  25158. {
  25159. name: "Normal",
  25160. height: math.unit(5, "feet"),
  25161. default: true
  25162. },
  25163. ]
  25164. ))
  25165. characterMakers.push(() => makeCharacter(
  25166. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25167. {
  25168. front: {
  25169. height: math.unit(4 + 6 / 12, "feet"),
  25170. weight: math.unit(80, "lb"),
  25171. name: "Front",
  25172. image: {
  25173. source: "./media/characters/pixie/front.svg",
  25174. extra: 1924 / 1825,
  25175. bottom: 22.4 / 1946
  25176. }
  25177. },
  25178. },
  25179. [
  25180. {
  25181. name: "Normal",
  25182. height: math.unit(4 + 6 / 12, "feet"),
  25183. default: true
  25184. },
  25185. {
  25186. name: "Macro",
  25187. height: math.unit(40, "feet")
  25188. },
  25189. ]
  25190. ))
  25191. characterMakers.push(() => makeCharacter(
  25192. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25193. {
  25194. front: {
  25195. height: math.unit(2.1, "meters"),
  25196. weight: math.unit(200, "lb"),
  25197. name: "Front",
  25198. image: {
  25199. source: "./media/characters/the-lascivious/front.svg",
  25200. extra: 1 / 0.893,
  25201. bottom: 3.5 / 573.7
  25202. }
  25203. },
  25204. },
  25205. [
  25206. {
  25207. name: "Human Scale",
  25208. height: math.unit(2.1, "meters")
  25209. },
  25210. {
  25211. name: "Wolxi Scale",
  25212. height: math.unit(46.2, "m"),
  25213. default: true
  25214. },
  25215. {
  25216. name: "Boinker of Buildings",
  25217. height: math.unit(10, "km")
  25218. },
  25219. {
  25220. name: "Shagger of Skyscrapers",
  25221. height: math.unit(40, "km")
  25222. },
  25223. {
  25224. name: "Banger of Boroughs",
  25225. height: math.unit(4000, "km")
  25226. },
  25227. {
  25228. name: "Screwer of States",
  25229. height: math.unit(100000, "km")
  25230. },
  25231. {
  25232. name: "Pounder of Planets",
  25233. height: math.unit(2000000, "km")
  25234. },
  25235. ]
  25236. ))
  25237. characterMakers.push(() => makeCharacter(
  25238. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25239. {
  25240. front: {
  25241. height: math.unit(6, "feet"),
  25242. weight: math.unit(150, "lb"),
  25243. name: "Front",
  25244. image: {
  25245. source: "./media/characters/aj/front.svg",
  25246. extra: 2039 / 1562,
  25247. bottom: 40 / 2079
  25248. }
  25249. },
  25250. },
  25251. [
  25252. {
  25253. name: "Normal",
  25254. height: math.unit(11 + 6 / 12, "feet"),
  25255. default: true
  25256. },
  25257. {
  25258. name: "Megamacro",
  25259. height: math.unit(60, "megameters")
  25260. },
  25261. ]
  25262. ))
  25263. characterMakers.push(() => makeCharacter(
  25264. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25265. {
  25266. side: {
  25267. height: math.unit(31 + 8 / 12, "feet"),
  25268. weight: math.unit(75000, "kg"),
  25269. name: "Side",
  25270. image: {
  25271. source: "./media/characters/koros/side.svg",
  25272. extra: 1442 / 1297,
  25273. bottom: 122.7 / 1562
  25274. }
  25275. },
  25276. dicksKingsCrown: {
  25277. height: math.unit(6, "feet"),
  25278. name: "Dicks (King's Crown)",
  25279. image: {
  25280. source: "./media/characters/koros/dicks-kings-crown.svg"
  25281. }
  25282. },
  25283. dicksTailSet: {
  25284. height: math.unit(3, "feet"),
  25285. name: "Dicks (Tail Set)",
  25286. image: {
  25287. source: "./media/characters/koros/dicks-tail-set.svg"
  25288. }
  25289. },
  25290. dickCumming: {
  25291. height: math.unit(7.98, "feet"),
  25292. name: "Dick (Cumming)",
  25293. image: {
  25294. source: "./media/characters/koros/dick-cumming.svg"
  25295. }
  25296. },
  25297. dicksBack: {
  25298. height: math.unit(5.9, "feet"),
  25299. name: "Dicks (Back)",
  25300. image: {
  25301. source: "./media/characters/koros/dicks-back.svg"
  25302. }
  25303. },
  25304. dicksFront: {
  25305. height: math.unit(3.72, "feet"),
  25306. name: "Dicks (Front)",
  25307. image: {
  25308. source: "./media/characters/koros/dicks-front.svg"
  25309. }
  25310. },
  25311. dicksPeeking: {
  25312. height: math.unit(3.0, "feet"),
  25313. name: "Dicks (Peeking)",
  25314. image: {
  25315. source: "./media/characters/koros/dicks-peeking.svg"
  25316. }
  25317. },
  25318. eye: {
  25319. height: math.unit(1.7, "feet"),
  25320. name: "Eye",
  25321. image: {
  25322. source: "./media/characters/koros/eye.svg"
  25323. }
  25324. },
  25325. headFront: {
  25326. height: math.unit(11.69, "feet"),
  25327. name: "Head (Front)",
  25328. image: {
  25329. source: "./media/characters/koros/head-front.svg"
  25330. }
  25331. },
  25332. headSide: {
  25333. height: math.unit(14, "feet"),
  25334. name: "Head (Side)",
  25335. image: {
  25336. source: "./media/characters/koros/head-side.svg"
  25337. }
  25338. },
  25339. leg: {
  25340. height: math.unit(17, "feet"),
  25341. name: "Leg",
  25342. image: {
  25343. source: "./media/characters/koros/leg.svg"
  25344. }
  25345. },
  25346. mawSide: {
  25347. height: math.unit(12.8, "feet"),
  25348. name: "Maw (Side)",
  25349. image: {
  25350. source: "./media/characters/koros/maw-side.svg"
  25351. }
  25352. },
  25353. mawSpitting: {
  25354. height: math.unit(17, "feet"),
  25355. name: "Maw (Spitting)",
  25356. image: {
  25357. source: "./media/characters/koros/maw-spitting.svg"
  25358. }
  25359. },
  25360. slit: {
  25361. height: math.unit(2.8, "feet"),
  25362. name: "Slit",
  25363. image: {
  25364. source: "./media/characters/koros/slit.svg"
  25365. }
  25366. },
  25367. stomach: {
  25368. height: math.unit(6.8, "feet"),
  25369. capacity: math.unit(20, "people"),
  25370. name: "Stomach",
  25371. image: {
  25372. source: "./media/characters/koros/stomach.svg"
  25373. }
  25374. },
  25375. wingspanBottom: {
  25376. height: math.unit(114, "feet"),
  25377. name: "Wingspan (Bottom)",
  25378. image: {
  25379. source: "./media/characters/koros/wingspan-bottom.svg"
  25380. }
  25381. },
  25382. wingspanTop: {
  25383. height: math.unit(104, "feet"),
  25384. name: "Wingspan (Top)",
  25385. image: {
  25386. source: "./media/characters/koros/wingspan-top.svg"
  25387. }
  25388. },
  25389. },
  25390. [
  25391. {
  25392. name: "Normal",
  25393. height: math.unit(31 + 8 / 12, "feet"),
  25394. default: true
  25395. },
  25396. ]
  25397. ))
  25398. characterMakers.push(() => makeCharacter(
  25399. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25400. {
  25401. front: {
  25402. height: math.unit(18 + 5 / 12, "feet"),
  25403. weight: math.unit(3750, "kg"),
  25404. name: "Front",
  25405. image: {
  25406. source: "./media/characters/vexx/front.svg",
  25407. extra: 426 / 396,
  25408. bottom: 31.5 / 458
  25409. }
  25410. },
  25411. maw: {
  25412. height: math.unit(6, "feet"),
  25413. name: "Maw",
  25414. image: {
  25415. source: "./media/characters/vexx/maw.svg"
  25416. }
  25417. },
  25418. },
  25419. [
  25420. {
  25421. name: "Normal",
  25422. height: math.unit(18 + 5 / 12, "feet"),
  25423. default: true
  25424. },
  25425. ]
  25426. ))
  25427. characterMakers.push(() => makeCharacter(
  25428. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25429. {
  25430. front: {
  25431. height: math.unit(17 + 6 / 12, "feet"),
  25432. weight: math.unit(150, "lb"),
  25433. name: "Front",
  25434. image: {
  25435. source: "./media/characters/baadra/front.svg",
  25436. extra: 3137 / 2890,
  25437. bottom: 168.4 / 3305
  25438. }
  25439. },
  25440. back: {
  25441. height: math.unit(17 + 6 / 12, "feet"),
  25442. weight: math.unit(150, "lb"),
  25443. name: "Back",
  25444. image: {
  25445. source: "./media/characters/baadra/back.svg",
  25446. extra: 3142 / 2890,
  25447. bottom: 220 / 3371
  25448. }
  25449. },
  25450. head: {
  25451. height: math.unit(5.45, "feet"),
  25452. name: "Head",
  25453. image: {
  25454. source: "./media/characters/baadra/head.svg"
  25455. }
  25456. },
  25457. headAngry: {
  25458. height: math.unit(4.95, "feet"),
  25459. name: "Head (Angry)",
  25460. image: {
  25461. source: "./media/characters/baadra/head-angry.svg"
  25462. }
  25463. },
  25464. headOpen: {
  25465. height: math.unit(6, "feet"),
  25466. name: "Head (Open)",
  25467. image: {
  25468. source: "./media/characters/baadra/head-open.svg"
  25469. }
  25470. },
  25471. },
  25472. [
  25473. {
  25474. name: "Normal",
  25475. height: math.unit(17 + 6 / 12, "feet"),
  25476. default: true
  25477. },
  25478. ]
  25479. ))
  25480. characterMakers.push(() => makeCharacter(
  25481. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25482. {
  25483. front: {
  25484. height: math.unit(7 + 3 / 12, "feet"),
  25485. weight: math.unit(180, "lb"),
  25486. name: "Front",
  25487. image: {
  25488. source: "./media/characters/juri/front.svg",
  25489. extra: 1401 / 1237,
  25490. bottom: 18.5 / 1418
  25491. }
  25492. },
  25493. side: {
  25494. height: math.unit(7 + 3 / 12, "feet"),
  25495. weight: math.unit(180, "lb"),
  25496. name: "Side",
  25497. image: {
  25498. source: "./media/characters/juri/side.svg",
  25499. extra: 1424 / 1242,
  25500. bottom: 18.5 / 1447
  25501. }
  25502. },
  25503. sitting: {
  25504. height: math.unit(6, "feet"),
  25505. weight: math.unit(180, "lb"),
  25506. name: "Sitting",
  25507. image: {
  25508. source: "./media/characters/juri/sitting.svg",
  25509. extra: 1270 / 1143,
  25510. bottom: 100 / 1343
  25511. }
  25512. },
  25513. back: {
  25514. height: math.unit(7 + 3 / 12, "feet"),
  25515. weight: math.unit(180, "lb"),
  25516. name: "Back",
  25517. image: {
  25518. source: "./media/characters/juri/back.svg",
  25519. extra: 1377 / 1240,
  25520. bottom: 23.7 / 1405
  25521. }
  25522. },
  25523. maw: {
  25524. height: math.unit(2.8, "feet"),
  25525. name: "Maw",
  25526. image: {
  25527. source: "./media/characters/juri/maw.svg"
  25528. }
  25529. },
  25530. stomach: {
  25531. height: math.unit(0.89, "feet"),
  25532. capacity: math.unit(4, "liters"),
  25533. name: "Stomach",
  25534. image: {
  25535. source: "./media/characters/juri/stomach.svg"
  25536. }
  25537. },
  25538. },
  25539. [
  25540. {
  25541. name: "Normal",
  25542. height: math.unit(7 + 3 / 12, "feet"),
  25543. default: true
  25544. },
  25545. ]
  25546. ))
  25547. characterMakers.push(() => makeCharacter(
  25548. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25549. {
  25550. fox: {
  25551. height: math.unit(5 + 6 / 12, "feet"),
  25552. weight: math.unit(140, "lb"),
  25553. name: "Fox",
  25554. image: {
  25555. source: "./media/characters/maxene-sita/fox.svg",
  25556. extra: 146 / 138,
  25557. bottom: 2.1 / 148.19
  25558. }
  25559. },
  25560. foxLaying: {
  25561. height: math.unit(1.70, "feet"),
  25562. weight: math.unit(140, "lb"),
  25563. name: "Fox (Laying)",
  25564. image: {
  25565. source: "./media/characters/maxene-sita/fox-laying.svg",
  25566. extra: 910 / 572,
  25567. bottom: 71 / 981
  25568. }
  25569. },
  25570. kitsune: {
  25571. height: math.unit(10, "feet"),
  25572. weight: math.unit(800, "lb"),
  25573. name: "Kitsune",
  25574. image: {
  25575. source: "./media/characters/maxene-sita/kitsune.svg",
  25576. extra: 185 / 176,
  25577. bottom: 4.7 / 189.9
  25578. }
  25579. },
  25580. hellhound: {
  25581. height: math.unit(10, "feet"),
  25582. weight: math.unit(700, "lb"),
  25583. name: "Hellhound",
  25584. image: {
  25585. source: "./media/characters/maxene-sita/hellhound.svg",
  25586. extra: 1600 / 1545,
  25587. bottom: 81 / 1681
  25588. }
  25589. },
  25590. },
  25591. [
  25592. {
  25593. name: "Normal",
  25594. height: math.unit(5 + 6 / 12, "feet"),
  25595. default: true
  25596. },
  25597. ]
  25598. ))
  25599. characterMakers.push(() => makeCharacter(
  25600. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25601. {
  25602. front: {
  25603. height: math.unit(3 + 4 / 12, "feet"),
  25604. weight: math.unit(70, "lb"),
  25605. name: "Front",
  25606. image: {
  25607. source: "./media/characters/maia/front.svg",
  25608. extra: 227 / 219.5,
  25609. bottom: 40 / 267
  25610. }
  25611. },
  25612. back: {
  25613. height: math.unit(3 + 4 / 12, "feet"),
  25614. weight: math.unit(70, "lb"),
  25615. name: "Back",
  25616. image: {
  25617. source: "./media/characters/maia/back.svg",
  25618. extra: 237 / 225
  25619. }
  25620. },
  25621. },
  25622. [
  25623. {
  25624. name: "Normal",
  25625. height: math.unit(3 + 4 / 12, "feet"),
  25626. default: true
  25627. },
  25628. ]
  25629. ))
  25630. characterMakers.push(() => makeCharacter(
  25631. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25632. {
  25633. front: {
  25634. height: math.unit(5 + 10 / 12, "feet"),
  25635. weight: math.unit(197, "lb"),
  25636. name: "Front",
  25637. image: {
  25638. source: "./media/characters/jabaro/front.svg",
  25639. extra: 225 / 216,
  25640. bottom: 5.06 / 230
  25641. }
  25642. },
  25643. back: {
  25644. height: math.unit(5 + 10 / 12, "feet"),
  25645. weight: math.unit(197, "lb"),
  25646. name: "Back",
  25647. image: {
  25648. source: "./media/characters/jabaro/back.svg",
  25649. extra: 225 / 219,
  25650. bottom: 1.9 / 227
  25651. }
  25652. },
  25653. },
  25654. [
  25655. {
  25656. name: "Normal",
  25657. height: math.unit(5 + 10 / 12, "feet"),
  25658. default: true
  25659. },
  25660. ]
  25661. ))
  25662. characterMakers.push(() => makeCharacter(
  25663. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25664. {
  25665. front: {
  25666. height: math.unit(5 + 8 / 12, "feet"),
  25667. weight: math.unit(139, "lb"),
  25668. name: "Front",
  25669. image: {
  25670. source: "./media/characters/risa/front.svg",
  25671. extra: 270 / 260,
  25672. bottom: 11.2 / 282
  25673. }
  25674. },
  25675. back: {
  25676. height: math.unit(5 + 8 / 12, "feet"),
  25677. weight: math.unit(139, "lb"),
  25678. name: "Back",
  25679. image: {
  25680. source: "./media/characters/risa/back.svg",
  25681. extra: 264 / 255,
  25682. bottom: 4 / 268
  25683. }
  25684. },
  25685. },
  25686. [
  25687. {
  25688. name: "Normal",
  25689. height: math.unit(5 + 8 / 12, "feet"),
  25690. default: true
  25691. },
  25692. ]
  25693. ))
  25694. characterMakers.push(() => makeCharacter(
  25695. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25696. {
  25697. front: {
  25698. height: math.unit(2 + 11 / 12, "feet"),
  25699. weight: math.unit(30, "lb"),
  25700. name: "Front",
  25701. image: {
  25702. source: "./media/characters/weatley/front.svg",
  25703. bottom: 10.7 / 414,
  25704. extra: 403.5 / 362
  25705. }
  25706. },
  25707. back: {
  25708. height: math.unit(2 + 11 / 12, "feet"),
  25709. weight: math.unit(30, "lb"),
  25710. name: "Back",
  25711. image: {
  25712. source: "./media/characters/weatley/back.svg",
  25713. bottom: 10.7 / 414,
  25714. extra: 403.5 / 362
  25715. }
  25716. },
  25717. },
  25718. [
  25719. {
  25720. name: "Normal",
  25721. height: math.unit(2 + 11 / 12, "feet"),
  25722. default: true
  25723. },
  25724. ]
  25725. ))
  25726. characterMakers.push(() => makeCharacter(
  25727. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25728. {
  25729. front: {
  25730. height: math.unit(5 + 2 / 12, "feet"),
  25731. weight: math.unit(50, "kg"),
  25732. name: "Front",
  25733. image: {
  25734. source: "./media/characters/mercury-crescent/front.svg",
  25735. extra: 1088 / 1033,
  25736. bottom: 18.9 / 1109
  25737. }
  25738. },
  25739. },
  25740. [
  25741. {
  25742. name: "Normal",
  25743. height: math.unit(5 + 2 / 12, "feet"),
  25744. default: true
  25745. },
  25746. ]
  25747. ))
  25748. characterMakers.push(() => makeCharacter(
  25749. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25750. {
  25751. front: {
  25752. height: math.unit(2, "feet"),
  25753. weight: math.unit(15, "kg"),
  25754. name: "Front",
  25755. image: {
  25756. source: "./media/characters/diamond-jones/front.svg",
  25757. extra: 727/723,
  25758. bottom: 46/773
  25759. }
  25760. },
  25761. },
  25762. [
  25763. {
  25764. name: "Normal",
  25765. height: math.unit(2, "feet"),
  25766. default: true
  25767. },
  25768. ]
  25769. ))
  25770. characterMakers.push(() => makeCharacter(
  25771. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25772. {
  25773. front: {
  25774. height: math.unit(3, "feet"),
  25775. weight: math.unit(30, "kg"),
  25776. name: "Front",
  25777. image: {
  25778. source: "./media/characters/sweet-bit/front.svg",
  25779. extra: 675 / 567,
  25780. bottom: 27.7 / 703
  25781. }
  25782. },
  25783. },
  25784. [
  25785. {
  25786. name: "Normal",
  25787. height: math.unit(3, "feet"),
  25788. default: true
  25789. },
  25790. ]
  25791. ))
  25792. characterMakers.push(() => makeCharacter(
  25793. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25794. {
  25795. side: {
  25796. height: math.unit(9.178, "feet"),
  25797. weight: math.unit(500, "lb"),
  25798. name: "Side",
  25799. image: {
  25800. source: "./media/characters/umbrazen/side.svg",
  25801. extra: 1730 / 1473,
  25802. bottom: 34.6 / 1765
  25803. }
  25804. },
  25805. },
  25806. [
  25807. {
  25808. name: "Normal",
  25809. height: math.unit(9.178, "feet"),
  25810. default: true
  25811. },
  25812. ]
  25813. ))
  25814. characterMakers.push(() => makeCharacter(
  25815. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25816. {
  25817. front: {
  25818. height: math.unit(10, "feet"),
  25819. weight: math.unit(750, "lb"),
  25820. name: "Front",
  25821. image: {
  25822. source: "./media/characters/arlist/front.svg",
  25823. extra: 961 / 778,
  25824. bottom: 6.2 / 986
  25825. }
  25826. },
  25827. },
  25828. [
  25829. {
  25830. name: "Normal",
  25831. height: math.unit(10, "feet"),
  25832. default: true
  25833. },
  25834. ]
  25835. ))
  25836. characterMakers.push(() => makeCharacter(
  25837. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25838. {
  25839. front: {
  25840. height: math.unit(5 + 1 / 12, "feet"),
  25841. weight: math.unit(110, "lb"),
  25842. name: "Front",
  25843. image: {
  25844. source: "./media/characters/aradel/front.svg",
  25845. extra: 324 / 303,
  25846. bottom: 3.6 / 329.4
  25847. }
  25848. },
  25849. },
  25850. [
  25851. {
  25852. name: "Normal",
  25853. height: math.unit(5 + 1 / 12, "feet"),
  25854. default: true
  25855. },
  25856. ]
  25857. ))
  25858. characterMakers.push(() => makeCharacter(
  25859. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25860. {
  25861. front: {
  25862. height: math.unit(3 + 8 / 12, "feet"),
  25863. weight: math.unit(50, "lb"),
  25864. name: "Front",
  25865. image: {
  25866. source: "./media/characters/serryn/front.svg",
  25867. extra: 1792 / 1656,
  25868. bottom: 43.5 / 1840
  25869. }
  25870. },
  25871. },
  25872. [
  25873. {
  25874. name: "Normal",
  25875. height: math.unit(3 + 8 / 12, "feet"),
  25876. default: true
  25877. },
  25878. ]
  25879. ))
  25880. characterMakers.push(() => makeCharacter(
  25881. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25882. {
  25883. front: {
  25884. height: math.unit(7 + 10 / 12, "feet"),
  25885. weight: math.unit(255, "lb"),
  25886. name: "Front",
  25887. image: {
  25888. source: "./media/characters/xavier-thyme/front.svg",
  25889. extra: 3733 / 3642,
  25890. bottom: 131 / 3869
  25891. }
  25892. },
  25893. frontRaven: {
  25894. height: math.unit(7 + 10 / 12, "feet"),
  25895. weight: math.unit(255, "lb"),
  25896. name: "Front (Raven)",
  25897. image: {
  25898. source: "./media/characters/xavier-thyme/front-raven.svg",
  25899. extra: 4385 / 3642,
  25900. bottom: 131 / 4517
  25901. }
  25902. },
  25903. },
  25904. [
  25905. {
  25906. name: "Normal",
  25907. height: math.unit(7 + 10 / 12, "feet"),
  25908. default: true
  25909. },
  25910. ]
  25911. ))
  25912. characterMakers.push(() => makeCharacter(
  25913. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25914. {
  25915. front: {
  25916. height: math.unit(1.6, "m"),
  25917. weight: math.unit(50, "kg"),
  25918. name: "Front",
  25919. image: {
  25920. source: "./media/characters/kiki/front.svg",
  25921. extra: 4682 / 3610,
  25922. bottom: 115 / 4777
  25923. }
  25924. },
  25925. },
  25926. [
  25927. {
  25928. name: "Normal",
  25929. height: math.unit(1.6, "meters"),
  25930. default: true
  25931. },
  25932. ]
  25933. ))
  25934. characterMakers.push(() => makeCharacter(
  25935. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25936. {
  25937. front: {
  25938. height: math.unit(50, "m"),
  25939. weight: math.unit(500, "tonnes"),
  25940. name: "Front",
  25941. image: {
  25942. source: "./media/characters/ryoko/front.svg",
  25943. extra: 4632 / 3926,
  25944. bottom: 193 / 4823
  25945. }
  25946. },
  25947. },
  25948. [
  25949. {
  25950. name: "Normal",
  25951. height: math.unit(50, "meters"),
  25952. default: true
  25953. },
  25954. ]
  25955. ))
  25956. characterMakers.push(() => makeCharacter(
  25957. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25958. {
  25959. front: {
  25960. height: math.unit(30, "m"),
  25961. weight: math.unit(22, "tonnes"),
  25962. name: "Front",
  25963. image: {
  25964. source: "./media/characters/elio/front.svg",
  25965. extra: 4582 / 3720,
  25966. bottom: 236 / 4828
  25967. }
  25968. },
  25969. },
  25970. [
  25971. {
  25972. name: "Normal",
  25973. height: math.unit(30, "meters"),
  25974. default: true
  25975. },
  25976. ]
  25977. ))
  25978. characterMakers.push(() => makeCharacter(
  25979. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25980. {
  25981. front: {
  25982. height: math.unit(6 + 3 / 12, "feet"),
  25983. weight: math.unit(120, "lb"),
  25984. name: "Front",
  25985. image: {
  25986. source: "./media/characters/azura/front.svg",
  25987. extra: 1149 / 1135,
  25988. bottom: 45 / 1194
  25989. }
  25990. },
  25991. frontClothed: {
  25992. height: math.unit(6 + 3 / 12, "feet"),
  25993. weight: math.unit(120, "lb"),
  25994. name: "Front (Clothed)",
  25995. image: {
  25996. source: "./media/characters/azura/front-clothed.svg",
  25997. extra: 1149 / 1135,
  25998. bottom: 45 / 1194
  25999. }
  26000. },
  26001. },
  26002. [
  26003. {
  26004. name: "Normal",
  26005. height: math.unit(6 + 3 / 12, "feet"),
  26006. default: true
  26007. },
  26008. {
  26009. name: "Macro",
  26010. height: math.unit(20 + 6 / 12, "feet")
  26011. },
  26012. {
  26013. name: "Megamacro",
  26014. height: math.unit(12, "miles")
  26015. },
  26016. {
  26017. name: "Gigamacro",
  26018. height: math.unit(10000, "miles")
  26019. },
  26020. {
  26021. name: "Teramacro",
  26022. height: math.unit(900000, "miles")
  26023. },
  26024. ]
  26025. ))
  26026. characterMakers.push(() => makeCharacter(
  26027. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26028. {
  26029. front: {
  26030. height: math.unit(12, "feet"),
  26031. weight: math.unit(1, "ton"),
  26032. capacity: math.unit(660000, "gallons"),
  26033. name: "Front",
  26034. image: {
  26035. source: "./media/characters/zeus/front.svg",
  26036. extra: 5005 / 4717,
  26037. bottom: 363 / 5388
  26038. }
  26039. },
  26040. },
  26041. [
  26042. {
  26043. name: "Normal",
  26044. height: math.unit(12, "feet")
  26045. },
  26046. {
  26047. name: "Preferred Size",
  26048. height: math.unit(0.5, "miles"),
  26049. default: true
  26050. },
  26051. {
  26052. name: "Giga Horse",
  26053. height: math.unit(300, "miles")
  26054. },
  26055. {
  26056. name: "Riding Planets",
  26057. height: math.unit(30, "megameters")
  26058. },
  26059. {
  26060. name: "Cosmic Giant",
  26061. height: math.unit(3, "zettameters")
  26062. },
  26063. {
  26064. name: "Breeding God",
  26065. height: math.unit(9.92e22, "yottameters")
  26066. },
  26067. ]
  26068. ))
  26069. characterMakers.push(() => makeCharacter(
  26070. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26071. {
  26072. side: {
  26073. height: math.unit(9, "feet"),
  26074. weight: math.unit(1500, "kg"),
  26075. name: "Side",
  26076. image: {
  26077. source: "./media/characters/fang/side.svg",
  26078. extra: 924 / 866,
  26079. bottom: 47.5 / 972.3
  26080. }
  26081. },
  26082. },
  26083. [
  26084. {
  26085. name: "Normal",
  26086. height: math.unit(9, "feet"),
  26087. default: true
  26088. },
  26089. {
  26090. name: "Macro",
  26091. height: math.unit(75 + 6 / 12, "feet")
  26092. },
  26093. {
  26094. name: "Teramacro",
  26095. height: math.unit(50000, "miles")
  26096. },
  26097. ]
  26098. ))
  26099. characterMakers.push(() => makeCharacter(
  26100. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26101. {
  26102. front: {
  26103. height: math.unit(10, "feet"),
  26104. weight: math.unit(2, "tons"),
  26105. name: "Front",
  26106. image: {
  26107. source: "./media/characters/rekhit/front.svg",
  26108. extra: 2796 / 2590,
  26109. bottom: 225 / 3022
  26110. }
  26111. },
  26112. },
  26113. [
  26114. {
  26115. name: "Normal",
  26116. height: math.unit(10, "feet"),
  26117. default: true
  26118. },
  26119. {
  26120. name: "Macro",
  26121. height: math.unit(500, "feet")
  26122. },
  26123. ]
  26124. ))
  26125. characterMakers.push(() => makeCharacter(
  26126. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26127. {
  26128. front: {
  26129. height: math.unit(7 + 6.451 / 12, "feet"),
  26130. weight: math.unit(310, "lb"),
  26131. name: "Front",
  26132. image: {
  26133. source: "./media/characters/dahlia-verrick/front.svg",
  26134. extra: 1488 / 1365,
  26135. bottom: 6.2 / 1495
  26136. }
  26137. },
  26138. back: {
  26139. height: math.unit(7 + 6.451 / 12, "feet"),
  26140. weight: math.unit(310, "lb"),
  26141. name: "Back",
  26142. image: {
  26143. source: "./media/characters/dahlia-verrick/back.svg",
  26144. extra: 1472 / 1351,
  26145. bottom: 5.28 / 1477
  26146. }
  26147. },
  26148. frontBusiness: {
  26149. height: math.unit(7 + 6.451 / 12, "feet"),
  26150. weight: math.unit(200, "lb"),
  26151. name: "Front (Business)",
  26152. image: {
  26153. source: "./media/characters/dahlia-verrick/front-business.svg",
  26154. extra: 1478 / 1381,
  26155. bottom: 5.5 / 1484
  26156. }
  26157. },
  26158. frontCasual: {
  26159. height: math.unit(7 + 6.451 / 12, "feet"),
  26160. weight: math.unit(200, "lb"),
  26161. name: "Front (Casual)",
  26162. image: {
  26163. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26164. extra: 1478 / 1381,
  26165. bottom: 5.5 / 1484
  26166. }
  26167. },
  26168. },
  26169. [
  26170. {
  26171. name: "Travel-Sized",
  26172. height: math.unit(7.45, "inches")
  26173. },
  26174. {
  26175. name: "Normal",
  26176. height: math.unit(7 + 6.451 / 12, "feet"),
  26177. default: true
  26178. },
  26179. {
  26180. name: "Hitting the Town",
  26181. height: math.unit(37 + 8 / 12, "feet")
  26182. },
  26183. {
  26184. name: "Stomp in the Suburbs",
  26185. height: math.unit(964 + 9.728 / 12, "feet")
  26186. },
  26187. {
  26188. name: "Sit on the City",
  26189. height: math.unit(61747 + 10.592 / 12, "feet")
  26190. },
  26191. {
  26192. name: "Glomp the Globe",
  26193. height: math.unit(252919327 + 4.832 / 12, "feet")
  26194. },
  26195. ]
  26196. ))
  26197. characterMakers.push(() => makeCharacter(
  26198. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26199. {
  26200. front: {
  26201. height: math.unit(6 + 4 / 12, "feet"),
  26202. weight: math.unit(320, "lb"),
  26203. name: "Front",
  26204. image: {
  26205. source: "./media/characters/balina-mahigan/front.svg",
  26206. extra: 447 / 428,
  26207. bottom: 18 / 466
  26208. }
  26209. },
  26210. back: {
  26211. height: math.unit(6 + 4 / 12, "feet"),
  26212. weight: math.unit(320, "lb"),
  26213. name: "Back",
  26214. image: {
  26215. source: "./media/characters/balina-mahigan/back.svg",
  26216. extra: 445 / 428,
  26217. bottom: 4.07 / 448
  26218. }
  26219. },
  26220. arm: {
  26221. height: math.unit(1.88, "feet"),
  26222. name: "Arm",
  26223. image: {
  26224. source: "./media/characters/balina-mahigan/arm.svg"
  26225. }
  26226. },
  26227. backPort: {
  26228. height: math.unit(0.685, "feet"),
  26229. name: "Back Port",
  26230. image: {
  26231. source: "./media/characters/balina-mahigan/back-port.svg"
  26232. }
  26233. },
  26234. hoofpaw: {
  26235. height: math.unit(1.41, "feet"),
  26236. name: "Hoofpaw",
  26237. image: {
  26238. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26239. }
  26240. },
  26241. leftHandBack: {
  26242. height: math.unit(0.938, "feet"),
  26243. name: "Left Hand (Back)",
  26244. image: {
  26245. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26246. }
  26247. },
  26248. leftHandFront: {
  26249. height: math.unit(0.938, "feet"),
  26250. name: "Left Hand (Front)",
  26251. image: {
  26252. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26253. }
  26254. },
  26255. rightHandBack: {
  26256. height: math.unit(0.95, "feet"),
  26257. name: "Right Hand (Back)",
  26258. image: {
  26259. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26260. }
  26261. },
  26262. rightHandFront: {
  26263. height: math.unit(0.95, "feet"),
  26264. name: "Right Hand (Front)",
  26265. image: {
  26266. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26267. }
  26268. },
  26269. },
  26270. [
  26271. {
  26272. name: "Normal",
  26273. height: math.unit(6 + 4 / 12, "feet"),
  26274. default: true
  26275. },
  26276. ]
  26277. ))
  26278. characterMakers.push(() => makeCharacter(
  26279. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26280. {
  26281. front: {
  26282. height: math.unit(6, "feet"),
  26283. weight: math.unit(320, "lb"),
  26284. name: "Front",
  26285. image: {
  26286. source: "./media/characters/balina-mejeri/front.svg",
  26287. extra: 517 / 488,
  26288. bottom: 44.2 / 561
  26289. }
  26290. },
  26291. },
  26292. [
  26293. {
  26294. name: "Normal",
  26295. height: math.unit(6 + 4 / 12, "feet")
  26296. },
  26297. {
  26298. name: "Business",
  26299. height: math.unit(155, "feet"),
  26300. default: true
  26301. },
  26302. ]
  26303. ))
  26304. characterMakers.push(() => makeCharacter(
  26305. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26306. {
  26307. kneeling: {
  26308. height: math.unit(6 + 4 / 12, "feet"),
  26309. weight: math.unit(300 * 20, "lb"),
  26310. name: "Kneeling",
  26311. image: {
  26312. source: "./media/characters/balbarian/kneeling.svg",
  26313. extra: 922 / 862,
  26314. bottom: 42.4 / 965
  26315. }
  26316. },
  26317. },
  26318. [
  26319. {
  26320. name: "Normal",
  26321. height: math.unit(6 + 4 / 12, "feet")
  26322. },
  26323. {
  26324. name: "Treasured",
  26325. height: math.unit(18 + 9 / 12, "feet"),
  26326. default: true
  26327. },
  26328. {
  26329. name: "Macro",
  26330. height: math.unit(900, "feet")
  26331. },
  26332. ]
  26333. ))
  26334. characterMakers.push(() => makeCharacter(
  26335. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26336. {
  26337. front: {
  26338. height: math.unit(6 + 4 / 12, "feet"),
  26339. weight: math.unit(325, "lb"),
  26340. name: "Front",
  26341. image: {
  26342. source: "./media/characters/balina-amarini/front.svg",
  26343. extra: 415 / 403,
  26344. bottom: 19 / 433.4
  26345. }
  26346. },
  26347. back: {
  26348. height: math.unit(6 + 4 / 12, "feet"),
  26349. weight: math.unit(325, "lb"),
  26350. name: "Back",
  26351. image: {
  26352. source: "./media/characters/balina-amarini/back.svg",
  26353. extra: 415 / 403,
  26354. bottom: 13.5 / 432
  26355. }
  26356. },
  26357. overdrive: {
  26358. height: math.unit(6 + 4 / 12, "feet"),
  26359. weight: math.unit(400, "lb"),
  26360. name: "Overdrive",
  26361. image: {
  26362. source: "./media/characters/balina-amarini/overdrive.svg",
  26363. extra: 269 / 259,
  26364. bottom: 12 / 282
  26365. }
  26366. },
  26367. },
  26368. [
  26369. {
  26370. name: "Boom",
  26371. height: math.unit(9 + 10 / 12, "feet"),
  26372. default: true
  26373. },
  26374. {
  26375. name: "Macro",
  26376. height: math.unit(280, "feet")
  26377. },
  26378. ]
  26379. ))
  26380. characterMakers.push(() => makeCharacter(
  26381. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26382. {
  26383. goddess: {
  26384. height: math.unit(600, "feet"),
  26385. weight: math.unit(2000000, "tons"),
  26386. name: "Goddess",
  26387. image: {
  26388. source: "./media/characters/lady-kubwa/goddess.svg",
  26389. extra: 1240.5 / 1223,
  26390. bottom: 22 / 1263
  26391. }
  26392. },
  26393. goddesser: {
  26394. height: math.unit(900, "feet"),
  26395. weight: math.unit(20000000, "lb"),
  26396. name: "Goddess-er",
  26397. image: {
  26398. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26399. extra: 899 / 888,
  26400. bottom: 12.6 / 912
  26401. }
  26402. },
  26403. },
  26404. [
  26405. {
  26406. name: "Macro",
  26407. height: math.unit(600, "feet"),
  26408. default: true
  26409. },
  26410. {
  26411. name: "Megamacro",
  26412. height: math.unit(250, "miles")
  26413. },
  26414. ]
  26415. ))
  26416. characterMakers.push(() => makeCharacter(
  26417. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26418. {
  26419. front: {
  26420. height: math.unit(7 + 7 / 12, "feet"),
  26421. weight: math.unit(250, "lb"),
  26422. name: "Front",
  26423. image: {
  26424. source: "./media/characters/tala-grovehorn/front.svg",
  26425. extra: 2636 / 2525,
  26426. bottom: 147 / 2781
  26427. }
  26428. },
  26429. back: {
  26430. height: math.unit(7 + 7 / 12, "feet"),
  26431. weight: math.unit(250, "lb"),
  26432. name: "Back",
  26433. image: {
  26434. source: "./media/characters/tala-grovehorn/back.svg",
  26435. extra: 2635 / 2539,
  26436. bottom: 100 / 2732.8
  26437. }
  26438. },
  26439. mouth: {
  26440. height: math.unit(1.15, "feet"),
  26441. name: "Mouth",
  26442. image: {
  26443. source: "./media/characters/tala-grovehorn/mouth.svg"
  26444. }
  26445. },
  26446. dick: {
  26447. height: math.unit(2.36, "feet"),
  26448. name: "Dick",
  26449. image: {
  26450. source: "./media/characters/tala-grovehorn/dick.svg"
  26451. }
  26452. },
  26453. slit: {
  26454. height: math.unit(0.61, "feet"),
  26455. name: "Slit",
  26456. image: {
  26457. source: "./media/characters/tala-grovehorn/slit.svg"
  26458. }
  26459. },
  26460. },
  26461. [
  26462. ]
  26463. ))
  26464. characterMakers.push(() => makeCharacter(
  26465. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26466. {
  26467. front: {
  26468. height: math.unit(7 + 7 / 12, "feet"),
  26469. weight: math.unit(225, "lb"),
  26470. name: "Front",
  26471. image: {
  26472. source: "./media/characters/epona/front.svg",
  26473. extra: 2445 / 2290,
  26474. bottom: 251 / 2696
  26475. }
  26476. },
  26477. back: {
  26478. height: math.unit(7 + 7 / 12, "feet"),
  26479. weight: math.unit(225, "lb"),
  26480. name: "Back",
  26481. image: {
  26482. source: "./media/characters/epona/back.svg",
  26483. extra: 2546 / 2408,
  26484. bottom: 44 / 2589
  26485. }
  26486. },
  26487. genitals: {
  26488. height: math.unit(1.5, "feet"),
  26489. name: "Genitals",
  26490. image: {
  26491. source: "./media/characters/epona/genitals.svg"
  26492. }
  26493. },
  26494. },
  26495. [
  26496. {
  26497. name: "Normal",
  26498. height: math.unit(7 + 7 / 12, "feet"),
  26499. default: true
  26500. },
  26501. ]
  26502. ))
  26503. characterMakers.push(() => makeCharacter(
  26504. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26505. {
  26506. front: {
  26507. height: math.unit(7, "feet"),
  26508. weight: math.unit(518, "lb"),
  26509. name: "Front",
  26510. image: {
  26511. source: "./media/characters/avia-bloodbourn/front.svg",
  26512. extra: 1466 / 1350,
  26513. bottom: 65 / 1527
  26514. }
  26515. },
  26516. },
  26517. [
  26518. ]
  26519. ))
  26520. characterMakers.push(() => makeCharacter(
  26521. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26522. {
  26523. front: {
  26524. height: math.unit(9.35, "feet"),
  26525. weight: math.unit(600, "lb"),
  26526. name: "Front",
  26527. image: {
  26528. source: "./media/characters/amera/front.svg",
  26529. extra: 891 / 818,
  26530. bottom: 30 / 922.7
  26531. }
  26532. },
  26533. back: {
  26534. height: math.unit(9.35, "feet"),
  26535. weight: math.unit(600, "lb"),
  26536. name: "Back",
  26537. image: {
  26538. source: "./media/characters/amera/back.svg",
  26539. extra: 876 / 824,
  26540. bottom: 6.8 / 884
  26541. }
  26542. },
  26543. dick: {
  26544. height: math.unit(2.14, "feet"),
  26545. name: "Dick",
  26546. image: {
  26547. source: "./media/characters/amera/dick.svg"
  26548. }
  26549. },
  26550. },
  26551. [
  26552. {
  26553. name: "Normal",
  26554. height: math.unit(9.35, "feet"),
  26555. default: true
  26556. },
  26557. ]
  26558. ))
  26559. characterMakers.push(() => makeCharacter(
  26560. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26561. {
  26562. kneeling: {
  26563. height: math.unit(3 + 4 / 12, "feet"),
  26564. weight: math.unit(90, "lb"),
  26565. name: "Kneeling",
  26566. image: {
  26567. source: "./media/characters/rosewen/kneeling.svg",
  26568. extra: 1835 / 1571,
  26569. bottom: 27.7 / 1862
  26570. }
  26571. },
  26572. },
  26573. [
  26574. {
  26575. name: "Normal",
  26576. height: math.unit(3 + 4 / 12, "feet"),
  26577. default: true
  26578. },
  26579. ]
  26580. ))
  26581. characterMakers.push(() => makeCharacter(
  26582. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26583. {
  26584. front: {
  26585. height: math.unit(5 + 10 / 12, "feet"),
  26586. weight: math.unit(200, "lb"),
  26587. name: "Front",
  26588. image: {
  26589. source: "./media/characters/sabah/front.svg",
  26590. extra: 849 / 763,
  26591. bottom: 33.9 / 881
  26592. }
  26593. },
  26594. },
  26595. [
  26596. {
  26597. name: "Normal",
  26598. height: math.unit(5 + 10 / 12, "feet"),
  26599. default: true
  26600. },
  26601. ]
  26602. ))
  26603. characterMakers.push(() => makeCharacter(
  26604. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26605. {
  26606. front: {
  26607. height: math.unit(3 + 5 / 12, "feet"),
  26608. weight: math.unit(40, "kg"),
  26609. name: "Front",
  26610. image: {
  26611. source: "./media/characters/purple-flame/front.svg",
  26612. extra: 1577 / 1412,
  26613. bottom: 97 / 1694
  26614. }
  26615. },
  26616. frontDressed: {
  26617. height: math.unit(3 + 5 / 12, "feet"),
  26618. weight: math.unit(40, "kg"),
  26619. name: "Front (Dressed)",
  26620. image: {
  26621. source: "./media/characters/purple-flame/front-dressed.svg",
  26622. extra: 1577 / 1412,
  26623. bottom: 97 / 1694
  26624. }
  26625. },
  26626. headphones: {
  26627. height: math.unit(0.85, "feet"),
  26628. name: "Headphones",
  26629. image: {
  26630. source: "./media/characters/purple-flame/headphones.svg"
  26631. }
  26632. },
  26633. },
  26634. [
  26635. {
  26636. name: "Really Small",
  26637. height: math.unit(5, "cm")
  26638. },
  26639. {
  26640. name: "Micro",
  26641. height: math.unit(1 + 5 / 12, "feet")
  26642. },
  26643. {
  26644. name: "Normal",
  26645. height: math.unit(3 + 5 / 12, "feet"),
  26646. default: true
  26647. },
  26648. {
  26649. name: "Minimacro",
  26650. height: math.unit(125, "feet")
  26651. },
  26652. {
  26653. name: "Macro",
  26654. height: math.unit(0.5, "miles")
  26655. },
  26656. {
  26657. name: "Megamacro",
  26658. height: math.unit(50, "miles")
  26659. },
  26660. {
  26661. name: "Gigantic",
  26662. height: math.unit(750, "miles")
  26663. },
  26664. {
  26665. name: "Planetary",
  26666. height: math.unit(15000, "miles")
  26667. },
  26668. ]
  26669. ))
  26670. characterMakers.push(() => makeCharacter(
  26671. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26672. {
  26673. front: {
  26674. height: math.unit(14, "feet"),
  26675. weight: math.unit(959, "lb"),
  26676. name: "Front",
  26677. image: {
  26678. source: "./media/characters/arsenal/front.svg",
  26679. extra: 2357 / 2157,
  26680. bottom: 93 / 2458
  26681. }
  26682. },
  26683. },
  26684. [
  26685. {
  26686. name: "Normal",
  26687. height: math.unit(14, "feet"),
  26688. default: true
  26689. },
  26690. ]
  26691. ))
  26692. characterMakers.push(() => makeCharacter(
  26693. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26694. {
  26695. front: {
  26696. height: math.unit(6, "feet"),
  26697. weight: math.unit(150, "lb"),
  26698. name: "Front",
  26699. image: {
  26700. source: "./media/characters/adira/front.svg",
  26701. extra: 1078 / 1029,
  26702. bottom: 87 / 1166
  26703. }
  26704. },
  26705. },
  26706. [
  26707. {
  26708. name: "Micro",
  26709. height: math.unit(4, "inches"),
  26710. default: true
  26711. },
  26712. {
  26713. name: "Macro",
  26714. height: math.unit(50, "feet")
  26715. },
  26716. ]
  26717. ))
  26718. characterMakers.push(() => makeCharacter(
  26719. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26720. {
  26721. front: {
  26722. height: math.unit(16, "feet"),
  26723. weight: math.unit(1000, "lb"),
  26724. name: "Front",
  26725. image: {
  26726. source: "./media/characters/grim/front.svg",
  26727. extra: 622 / 614,
  26728. bottom: 18.1 / 642
  26729. }
  26730. },
  26731. back: {
  26732. height: math.unit(16, "feet"),
  26733. weight: math.unit(1000, "lb"),
  26734. name: "Back",
  26735. image: {
  26736. source: "./media/characters/grim/back.svg",
  26737. extra: 610.6 / 602,
  26738. bottom: 40.8 / 652
  26739. }
  26740. },
  26741. hunched: {
  26742. height: math.unit(9.75, "feet"),
  26743. weight: math.unit(1000, "lb"),
  26744. name: "Hunched",
  26745. image: {
  26746. source: "./media/characters/grim/hunched.svg",
  26747. extra: 304 / 297,
  26748. bottom: 35.4 / 394
  26749. }
  26750. },
  26751. },
  26752. [
  26753. {
  26754. name: "Normal",
  26755. height: math.unit(16, "feet"),
  26756. default: true
  26757. },
  26758. ]
  26759. ))
  26760. characterMakers.push(() => makeCharacter(
  26761. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26762. {
  26763. front: {
  26764. height: math.unit(2.3, "meters"),
  26765. weight: math.unit(300, "lb"),
  26766. name: "Front",
  26767. image: {
  26768. source: "./media/characters/sinja/front-sfw.svg",
  26769. extra: 1393 / 1294,
  26770. bottom: 70 / 1463
  26771. }
  26772. },
  26773. frontNsfw: {
  26774. height: math.unit(2.3, "meters"),
  26775. weight: math.unit(300, "lb"),
  26776. name: "Front (NSFW)",
  26777. image: {
  26778. source: "./media/characters/sinja/front-nsfw.svg",
  26779. extra: 1393 / 1294,
  26780. bottom: 70 / 1463
  26781. }
  26782. },
  26783. back: {
  26784. height: math.unit(2.3, "meters"),
  26785. weight: math.unit(300, "lb"),
  26786. name: "Back",
  26787. image: {
  26788. source: "./media/characters/sinja/back.svg",
  26789. extra: 1393 / 1294,
  26790. bottom: 70 / 1463
  26791. }
  26792. },
  26793. head: {
  26794. height: math.unit(1.771, "feet"),
  26795. name: "Head",
  26796. image: {
  26797. source: "./media/characters/sinja/head.svg"
  26798. }
  26799. },
  26800. slit: {
  26801. height: math.unit(0.8, "feet"),
  26802. name: "Slit",
  26803. image: {
  26804. source: "./media/characters/sinja/slit.svg"
  26805. }
  26806. },
  26807. },
  26808. [
  26809. {
  26810. name: "Normal",
  26811. height: math.unit(2.3, "meters")
  26812. },
  26813. {
  26814. name: "Macro",
  26815. height: math.unit(91, "meters"),
  26816. default: true
  26817. },
  26818. {
  26819. name: "Megamacro",
  26820. height: math.unit(91440, "meters")
  26821. },
  26822. {
  26823. name: "Gigamacro",
  26824. height: math.unit(60960000, "meters")
  26825. },
  26826. {
  26827. name: "Teramacro",
  26828. height: math.unit(9144000000, "meters")
  26829. },
  26830. ]
  26831. ))
  26832. characterMakers.push(() => makeCharacter(
  26833. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26834. {
  26835. front: {
  26836. height: math.unit(1.7, "meters"),
  26837. weight: math.unit(130, "lb"),
  26838. name: "Front",
  26839. image: {
  26840. source: "./media/characters/kyu/front.svg",
  26841. extra: 415 / 395,
  26842. bottom: 5 / 420
  26843. }
  26844. },
  26845. head: {
  26846. height: math.unit(1.75, "feet"),
  26847. name: "Head",
  26848. image: {
  26849. source: "./media/characters/kyu/head.svg"
  26850. }
  26851. },
  26852. foot: {
  26853. height: math.unit(0.81, "feet"),
  26854. name: "Foot",
  26855. image: {
  26856. source: "./media/characters/kyu/foot.svg"
  26857. }
  26858. },
  26859. },
  26860. [
  26861. {
  26862. name: "Normal",
  26863. height: math.unit(1.7, "meters")
  26864. },
  26865. {
  26866. name: "Macro",
  26867. height: math.unit(131, "feet"),
  26868. default: true
  26869. },
  26870. {
  26871. name: "Megamacro",
  26872. height: math.unit(91440, "meters")
  26873. },
  26874. {
  26875. name: "Gigamacro",
  26876. height: math.unit(60960000, "meters")
  26877. },
  26878. {
  26879. name: "Teramacro",
  26880. height: math.unit(9144000000, "meters")
  26881. },
  26882. ]
  26883. ))
  26884. characterMakers.push(() => makeCharacter(
  26885. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26886. {
  26887. front: {
  26888. height: math.unit(7 + 1 / 12, "feet"),
  26889. weight: math.unit(250, "lb"),
  26890. name: "Front",
  26891. image: {
  26892. source: "./media/characters/joey/front.svg",
  26893. extra: 1791 / 1537,
  26894. bottom: 28 / 1816
  26895. }
  26896. },
  26897. },
  26898. [
  26899. {
  26900. name: "Micro",
  26901. height: math.unit(3, "inches")
  26902. },
  26903. {
  26904. name: "Normal",
  26905. height: math.unit(7 + 1 / 12, "feet"),
  26906. default: true
  26907. },
  26908. ]
  26909. ))
  26910. characterMakers.push(() => makeCharacter(
  26911. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26912. {
  26913. front: {
  26914. height: math.unit(165, "cm"),
  26915. weight: math.unit(140, "lb"),
  26916. name: "Front",
  26917. image: {
  26918. source: "./media/characters/sam-evans/front.svg",
  26919. extra: 3417 / 3230,
  26920. bottom: 41.3 / 3417
  26921. }
  26922. },
  26923. frontSixTails: {
  26924. height: math.unit(165, "cm"),
  26925. weight: math.unit(140, "lb"),
  26926. name: "Front-six-tails",
  26927. image: {
  26928. source: "./media/characters/sam-evans/front-six-tails.svg",
  26929. extra: 3417 / 3230,
  26930. bottom: 41.3 / 3417
  26931. }
  26932. },
  26933. back: {
  26934. height: math.unit(165, "cm"),
  26935. weight: math.unit(140, "lb"),
  26936. name: "Back",
  26937. image: {
  26938. source: "./media/characters/sam-evans/back.svg",
  26939. extra: 3227 / 3032,
  26940. bottom: 6.8 / 3234
  26941. }
  26942. },
  26943. face: {
  26944. height: math.unit(0.68, "feet"),
  26945. name: "Face",
  26946. image: {
  26947. source: "./media/characters/sam-evans/face.svg"
  26948. }
  26949. },
  26950. },
  26951. [
  26952. {
  26953. name: "Normal",
  26954. height: math.unit(165, "cm"),
  26955. default: true
  26956. },
  26957. {
  26958. name: "Macro",
  26959. height: math.unit(100, "meters")
  26960. },
  26961. {
  26962. name: "Macro+",
  26963. height: math.unit(800, "meters")
  26964. },
  26965. {
  26966. name: "Macro++",
  26967. height: math.unit(3, "km")
  26968. },
  26969. {
  26970. name: "Macro+++",
  26971. height: math.unit(30, "km")
  26972. },
  26973. ]
  26974. ))
  26975. characterMakers.push(() => makeCharacter(
  26976. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26977. {
  26978. front: {
  26979. height: math.unit(10, "feet"),
  26980. weight: math.unit(750, "lb"),
  26981. name: "Front",
  26982. image: {
  26983. source: "./media/characters/juliet-a/front.svg",
  26984. extra: 1766 / 1720,
  26985. bottom: 43 / 1809
  26986. }
  26987. },
  26988. back: {
  26989. height: math.unit(10, "feet"),
  26990. weight: math.unit(750, "lb"),
  26991. name: "Back",
  26992. image: {
  26993. source: "./media/characters/juliet-a/back.svg",
  26994. extra: 1781 / 1734,
  26995. bottom: 35 / 1810,
  26996. }
  26997. },
  26998. },
  26999. [
  27000. {
  27001. name: "Normal",
  27002. height: math.unit(10, "feet"),
  27003. default: true
  27004. },
  27005. {
  27006. name: "Dragon Form",
  27007. height: math.unit(250, "feet")
  27008. },
  27009. {
  27010. name: "Macro",
  27011. height: math.unit(1000, "feet")
  27012. },
  27013. {
  27014. name: "Megamacro",
  27015. height: math.unit(10000, "feet")
  27016. }
  27017. ]
  27018. ))
  27019. characterMakers.push(() => makeCharacter(
  27020. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27021. {
  27022. regular: {
  27023. height: math.unit(7 + 3 / 12, "feet"),
  27024. weight: math.unit(260, "lb"),
  27025. name: "Regular",
  27026. image: {
  27027. source: "./media/characters/wild/regular.svg",
  27028. extra: 97.45 / 92,
  27029. bottom: 6.8 / 104.3
  27030. }
  27031. },
  27032. biggums: {
  27033. height: math.unit(8 + 6 / 12, "feet"),
  27034. weight: math.unit(425, "lb"),
  27035. name: "Biggums",
  27036. image: {
  27037. source: "./media/characters/wild/biggums.svg",
  27038. extra: 97.45 / 92,
  27039. bottom: 7.5 / 132.34
  27040. }
  27041. },
  27042. mawRegular: {
  27043. height: math.unit(1.24, "feet"),
  27044. name: "Maw (Regular)",
  27045. image: {
  27046. source: "./media/characters/wild/maw.svg"
  27047. }
  27048. },
  27049. mawBiggums: {
  27050. height: math.unit(1.47, "feet"),
  27051. name: "Maw (Biggums)",
  27052. image: {
  27053. source: "./media/characters/wild/maw.svg"
  27054. }
  27055. },
  27056. },
  27057. [
  27058. {
  27059. name: "Normal",
  27060. height: math.unit(7 + 3 / 12, "feet"),
  27061. default: true
  27062. },
  27063. ]
  27064. ))
  27065. characterMakers.push(() => makeCharacter(
  27066. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27067. {
  27068. front: {
  27069. height: math.unit(2.5, "meters"),
  27070. weight: math.unit(200, "kg"),
  27071. name: "Front",
  27072. image: {
  27073. source: "./media/characters/vidar/front.svg",
  27074. extra: 2994 / 2795,
  27075. bottom: 56 / 3061
  27076. }
  27077. },
  27078. back: {
  27079. height: math.unit(2.5, "meters"),
  27080. weight: math.unit(200, "kg"),
  27081. name: "Back",
  27082. image: {
  27083. source: "./media/characters/vidar/back.svg",
  27084. extra: 3131 / 2928,
  27085. bottom: 13.5 / 3141.5
  27086. }
  27087. },
  27088. feral: {
  27089. height: math.unit(2.5, "meters"),
  27090. weight: math.unit(2000, "kg"),
  27091. name: "Feral",
  27092. image: {
  27093. source: "./media/characters/vidar/feral.svg",
  27094. extra: 2790 / 1765,
  27095. bottom: 6 / 2796
  27096. }
  27097. },
  27098. },
  27099. [
  27100. {
  27101. name: "Normal",
  27102. height: math.unit(2.5, "meters"),
  27103. default: true
  27104. },
  27105. {
  27106. name: "Macro",
  27107. height: math.unit(100, "meters")
  27108. },
  27109. ]
  27110. ))
  27111. characterMakers.push(() => makeCharacter(
  27112. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27113. {
  27114. front: {
  27115. height: math.unit(5 + 9 / 12, "feet"),
  27116. weight: math.unit(120, "lb"),
  27117. name: "Front",
  27118. image: {
  27119. source: "./media/characters/ash/front.svg",
  27120. extra: 2189 / 1961,
  27121. bottom: 5.2 / 2194
  27122. }
  27123. },
  27124. },
  27125. [
  27126. {
  27127. name: "Normal",
  27128. height: math.unit(5 + 9 / 12, "feet"),
  27129. default: true
  27130. },
  27131. ]
  27132. ))
  27133. characterMakers.push(() => makeCharacter(
  27134. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27135. {
  27136. front: {
  27137. height: math.unit(9, "feet"),
  27138. weight: math.unit(10000, "lb"),
  27139. name: "Front",
  27140. image: {
  27141. source: "./media/characters/gygabite/front.svg",
  27142. bottom: 31.7 / 537.8,
  27143. extra: 505 / 370
  27144. }
  27145. },
  27146. },
  27147. [
  27148. {
  27149. name: "Normal",
  27150. height: math.unit(9, "feet"),
  27151. default: true
  27152. },
  27153. ]
  27154. ))
  27155. characterMakers.push(() => makeCharacter(
  27156. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27157. {
  27158. front: {
  27159. height: math.unit(12, "feet"),
  27160. weight: math.unit(35000, "lb"),
  27161. name: "Front",
  27162. image: {
  27163. source: "./media/characters/p0tat0/front.svg",
  27164. extra: 1065 / 921,
  27165. bottom: 55.7 / 1121.25
  27166. }
  27167. },
  27168. },
  27169. [
  27170. {
  27171. name: "Normal",
  27172. height: math.unit(12, "feet"),
  27173. default: true
  27174. },
  27175. ]
  27176. ))
  27177. characterMakers.push(() => makeCharacter(
  27178. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27179. {
  27180. side: {
  27181. height: math.unit(6.5, "feet"),
  27182. weight: math.unit(800, "lb"),
  27183. name: "Side",
  27184. image: {
  27185. source: "./media/characters/dusk/side.svg",
  27186. extra: 615 / 373,
  27187. bottom: 53 / 664
  27188. }
  27189. },
  27190. sitting: {
  27191. height: math.unit(7, "feet"),
  27192. weight: math.unit(800, "lb"),
  27193. name: "Sitting",
  27194. image: {
  27195. source: "./media/characters/dusk/sitting.svg",
  27196. extra: 753 / 425,
  27197. bottom: 33 / 774
  27198. }
  27199. },
  27200. head: {
  27201. height: math.unit(6.1, "feet"),
  27202. name: "Head",
  27203. image: {
  27204. source: "./media/characters/dusk/head.svg"
  27205. }
  27206. },
  27207. },
  27208. [
  27209. {
  27210. name: "Normal",
  27211. height: math.unit(7, "feet"),
  27212. default: true
  27213. },
  27214. ]
  27215. ))
  27216. characterMakers.push(() => makeCharacter(
  27217. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27218. {
  27219. front: {
  27220. height: math.unit(15, "feet"),
  27221. weight: math.unit(7000, "lb"),
  27222. name: "Front",
  27223. image: {
  27224. source: "./media/characters/jay-direwolf/front.svg",
  27225. extra: 1810 / 1732,
  27226. bottom: 66 / 1892
  27227. }
  27228. },
  27229. },
  27230. [
  27231. {
  27232. name: "Normal",
  27233. height: math.unit(15, "feet"),
  27234. default: true
  27235. },
  27236. ]
  27237. ))
  27238. characterMakers.push(() => makeCharacter(
  27239. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27240. {
  27241. front: {
  27242. height: math.unit(4 + 9 / 12, "feet"),
  27243. weight: math.unit(130, "lb"),
  27244. name: "Front",
  27245. image: {
  27246. source: "./media/characters/anchovie/front.svg",
  27247. extra: 382 / 350,
  27248. bottom: 25 / 409
  27249. }
  27250. },
  27251. back: {
  27252. height: math.unit(4 + 9 / 12, "feet"),
  27253. weight: math.unit(130, "lb"),
  27254. name: "Back",
  27255. image: {
  27256. source: "./media/characters/anchovie/back.svg",
  27257. extra: 385 / 352,
  27258. bottom: 16.6 / 402
  27259. }
  27260. },
  27261. frontDressed: {
  27262. height: math.unit(4 + 9 / 12, "feet"),
  27263. weight: math.unit(130, "lb"),
  27264. name: "Front (Dressed)",
  27265. image: {
  27266. source: "./media/characters/anchovie/front-dressed.svg",
  27267. extra: 382 / 350,
  27268. bottom: 25 / 409
  27269. }
  27270. },
  27271. backDressed: {
  27272. height: math.unit(4 + 9 / 12, "feet"),
  27273. weight: math.unit(130, "lb"),
  27274. name: "Back (Dressed)",
  27275. image: {
  27276. source: "./media/characters/anchovie/back-dressed.svg",
  27277. extra: 385 / 352,
  27278. bottom: 16.6 / 402
  27279. }
  27280. },
  27281. },
  27282. [
  27283. {
  27284. name: "Micro",
  27285. height: math.unit(6.4, "inches")
  27286. },
  27287. {
  27288. name: "Normal",
  27289. height: math.unit(4 + 9 / 12, "feet"),
  27290. default: true
  27291. },
  27292. ]
  27293. ))
  27294. characterMakers.push(() => makeCharacter(
  27295. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27296. {
  27297. front: {
  27298. height: math.unit(2, "meters"),
  27299. weight: math.unit(180, "lb"),
  27300. name: "Front",
  27301. image: {
  27302. source: "./media/characters/acidrenamon/front.svg",
  27303. extra: 987 / 890,
  27304. bottom: 22.8 / 1009
  27305. }
  27306. },
  27307. back: {
  27308. height: math.unit(2, "meters"),
  27309. weight: math.unit(180, "lb"),
  27310. name: "Back",
  27311. image: {
  27312. source: "./media/characters/acidrenamon/back.svg",
  27313. extra: 983 / 891,
  27314. bottom: 8.4 / 992
  27315. }
  27316. },
  27317. head: {
  27318. height: math.unit(1.92, "feet"),
  27319. name: "Head",
  27320. image: {
  27321. source: "./media/characters/acidrenamon/head.svg"
  27322. }
  27323. },
  27324. rump: {
  27325. height: math.unit(1.72, "feet"),
  27326. name: "Rump",
  27327. image: {
  27328. source: "./media/characters/acidrenamon/rump.svg"
  27329. }
  27330. },
  27331. tail: {
  27332. height: math.unit(4.2, "feet"),
  27333. name: "Tail",
  27334. image: {
  27335. source: "./media/characters/acidrenamon/tail.svg"
  27336. }
  27337. },
  27338. },
  27339. [
  27340. {
  27341. name: "Normal",
  27342. height: math.unit(2, "meters"),
  27343. default: true
  27344. },
  27345. {
  27346. name: "Minimacro",
  27347. height: math.unit(7, "meters")
  27348. },
  27349. {
  27350. name: "Macro",
  27351. height: math.unit(200, "meters")
  27352. },
  27353. {
  27354. name: "Gigamacro",
  27355. height: math.unit(0.2, "earths")
  27356. },
  27357. ]
  27358. ))
  27359. characterMakers.push(() => makeCharacter(
  27360. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27361. {
  27362. front: {
  27363. height: math.unit(6, "feet"),
  27364. weight: math.unit(150, "lb"),
  27365. name: "Front",
  27366. image: {
  27367. source: "./media/characters/kenzie-lee/front.svg",
  27368. extra: 1525 / 1465,
  27369. bottom: 45 / 1570
  27370. }
  27371. },
  27372. side: {
  27373. height: math.unit(6, "feet"),
  27374. weight: math.unit(150, "lb"),
  27375. name: "Side",
  27376. image: {
  27377. source: "./media/characters/kenzie-lee/side.svg",
  27378. extra: 5505 / 5383,
  27379. bottom: 60 / 5573
  27380. }
  27381. },
  27382. paw: {
  27383. height: math.unit(0.57, "feet"),
  27384. name: "Paw",
  27385. image: {
  27386. source: "./media/characters/kenzie-lee/paw.svg"
  27387. }
  27388. },
  27389. },
  27390. [
  27391. {
  27392. name: "Normal",
  27393. height: math.unit(152, "feet"),
  27394. default: true
  27395. },
  27396. {
  27397. name: "Megamacro",
  27398. height: math.unit(7, "miles")
  27399. },
  27400. {
  27401. name: "Gigamacro",
  27402. height: math.unit(8000, "miles")
  27403. },
  27404. ]
  27405. ))
  27406. characterMakers.push(() => makeCharacter(
  27407. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27408. {
  27409. side: {
  27410. height: math.unit(6, "feet"),
  27411. weight: math.unit(150, "lb"),
  27412. name: "Side",
  27413. image: {
  27414. source: "./media/characters/withers/side.svg",
  27415. extra: 1830 / 1728,
  27416. bottom: 96 / 1927
  27417. }
  27418. },
  27419. front: {
  27420. height: math.unit(6, "feet"),
  27421. weight: math.unit(150, "lb"),
  27422. name: "Front",
  27423. image: {
  27424. source: "./media/characters/withers/front.svg",
  27425. extra: 1514 / 1438,
  27426. bottom: 118 / 1632
  27427. }
  27428. },
  27429. },
  27430. [
  27431. {
  27432. name: "Macro",
  27433. height: math.unit(168, "feet"),
  27434. default: true
  27435. },
  27436. {
  27437. name: "Megamacro",
  27438. height: math.unit(15, "miles")
  27439. }
  27440. ]
  27441. ))
  27442. characterMakers.push(() => makeCharacter(
  27443. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27444. {
  27445. front: {
  27446. height: math.unit(6 + 7 / 12, "feet"),
  27447. weight: math.unit(250, "lb"),
  27448. name: "Front",
  27449. image: {
  27450. source: "./media/characters/nemoskii/front.svg",
  27451. extra: 2270 / 1734,
  27452. bottom: 86 / 2354
  27453. }
  27454. },
  27455. back: {
  27456. height: math.unit(6 + 7 / 12, "feet"),
  27457. weight: math.unit(250, "lb"),
  27458. name: "Back",
  27459. image: {
  27460. source: "./media/characters/nemoskii/back.svg",
  27461. extra: 1845 / 1788,
  27462. bottom: 10.5 / 1852
  27463. }
  27464. },
  27465. head: {
  27466. height: math.unit(1.31, "feet"),
  27467. name: "Head",
  27468. image: {
  27469. source: "./media/characters/nemoskii/head.svg"
  27470. }
  27471. },
  27472. },
  27473. [
  27474. {
  27475. name: "Micro",
  27476. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27477. },
  27478. {
  27479. name: "Normal",
  27480. height: math.unit(6 + 7 / 12, "feet"),
  27481. default: true
  27482. },
  27483. {
  27484. name: "Macro",
  27485. height: math.unit((6 + 7 / 12) * 150, "feet")
  27486. },
  27487. {
  27488. name: "Macro+",
  27489. height: math.unit((6 + 7 / 12) * 500, "feet")
  27490. },
  27491. {
  27492. name: "Megamacro",
  27493. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27494. },
  27495. ]
  27496. ))
  27497. characterMakers.push(() => makeCharacter(
  27498. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27499. {
  27500. front: {
  27501. height: math.unit(1, "mile"),
  27502. weight: math.unit(265261.9, "lb"),
  27503. name: "Front",
  27504. image: {
  27505. source: "./media/characters/shui/front.svg",
  27506. extra: 1633 / 1564,
  27507. bottom: 91.5 / 1726
  27508. }
  27509. },
  27510. },
  27511. [
  27512. {
  27513. name: "Macro",
  27514. height: math.unit(1, "mile"),
  27515. default: true
  27516. },
  27517. ]
  27518. ))
  27519. characterMakers.push(() => makeCharacter(
  27520. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27521. {
  27522. front: {
  27523. height: math.unit(12 + 6 / 12, "feet"),
  27524. weight: math.unit(1342, "lb"),
  27525. name: "Front",
  27526. image: {
  27527. source: "./media/characters/arokh-takakura/front.svg",
  27528. extra: 1089 / 1043,
  27529. bottom: 77.4 / 1176.7
  27530. }
  27531. },
  27532. back: {
  27533. height: math.unit(12 + 6 / 12, "feet"),
  27534. weight: math.unit(1342, "lb"),
  27535. name: "Back",
  27536. image: {
  27537. source: "./media/characters/arokh-takakura/back.svg",
  27538. extra: 1046 / 1019,
  27539. bottom: 102 / 1150
  27540. }
  27541. },
  27542. },
  27543. [
  27544. {
  27545. name: "Big",
  27546. height: math.unit(12 + 6 / 12, "feet"),
  27547. default: true
  27548. },
  27549. ]
  27550. ))
  27551. characterMakers.push(() => makeCharacter(
  27552. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27553. {
  27554. front: {
  27555. height: math.unit(5 + 6 / 12, "feet"),
  27556. weight: math.unit(150, "lb"),
  27557. name: "Front",
  27558. image: {
  27559. source: "./media/characters/theo/front.svg",
  27560. extra: 1184 / 1131,
  27561. bottom: 7.4 / 1191
  27562. }
  27563. },
  27564. },
  27565. [
  27566. {
  27567. name: "Micro",
  27568. height: math.unit(5, "inches")
  27569. },
  27570. {
  27571. name: "Normal",
  27572. height: math.unit(5 + 6 / 12, "feet"),
  27573. default: true
  27574. },
  27575. ]
  27576. ))
  27577. characterMakers.push(() => makeCharacter(
  27578. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27579. {
  27580. front: {
  27581. height: math.unit(5 + 9 / 12, "feet"),
  27582. weight: math.unit(130, "lb"),
  27583. name: "Front",
  27584. image: {
  27585. source: "./media/characters/cecelia-swift/front.svg",
  27586. extra: 502 / 484,
  27587. bottom: 23 / 523
  27588. }
  27589. },
  27590. back: {
  27591. height: math.unit(5 + 9 / 12, "feet"),
  27592. weight: math.unit(130, "lb"),
  27593. name: "Back",
  27594. image: {
  27595. source: "./media/characters/cecelia-swift/back.svg",
  27596. extra: 499 / 485,
  27597. bottom: 12 / 511
  27598. }
  27599. },
  27600. head: {
  27601. height: math.unit(0.90, "feet"),
  27602. name: "Head",
  27603. image: {
  27604. source: "./media/characters/cecelia-swift/head.svg"
  27605. }
  27606. },
  27607. rump: {
  27608. height: math.unit(1.75, "feet"),
  27609. name: "Rump",
  27610. image: {
  27611. source: "./media/characters/cecelia-swift/rump.svg"
  27612. }
  27613. },
  27614. },
  27615. [
  27616. {
  27617. name: "Normal",
  27618. height: math.unit(5 + 9 / 12, "feet"),
  27619. default: true
  27620. },
  27621. {
  27622. name: "Big",
  27623. height: math.unit(50, "feet")
  27624. },
  27625. {
  27626. name: "Macro",
  27627. height: math.unit(100, "feet")
  27628. },
  27629. {
  27630. name: "Macro+",
  27631. height: math.unit(500, "feet")
  27632. },
  27633. {
  27634. name: "Macro++",
  27635. height: math.unit(1000, "feet")
  27636. },
  27637. ]
  27638. ))
  27639. characterMakers.push(() => makeCharacter(
  27640. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27641. {
  27642. front: {
  27643. height: math.unit(6, "feet"),
  27644. weight: math.unit(150, "lb"),
  27645. name: "Front",
  27646. image: {
  27647. source: "./media/characters/kaunan/front.svg",
  27648. extra: 2890 / 2523,
  27649. bottom: 49 / 2939
  27650. }
  27651. },
  27652. },
  27653. [
  27654. {
  27655. name: "Macro",
  27656. height: math.unit(150, "feet"),
  27657. default: true
  27658. },
  27659. ]
  27660. ))
  27661. characterMakers.push(() => makeCharacter(
  27662. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27663. {
  27664. front: {
  27665. height: math.unit(175, "cm"),
  27666. weight: math.unit(60, "kg"),
  27667. name: "Front",
  27668. image: {
  27669. source: "./media/characters/fei/front.svg",
  27670. extra: 1873/1723,
  27671. bottom: 53/1926
  27672. }
  27673. },
  27674. },
  27675. [
  27676. {
  27677. name: "Mortal",
  27678. height: math.unit(175, "cm")
  27679. },
  27680. {
  27681. name: "Normal",
  27682. height: math.unit(3500, "m"),
  27683. default: true
  27684. },
  27685. {
  27686. name: "Stroll",
  27687. height: math.unit(17.5, "km")
  27688. },
  27689. {
  27690. name: "Showoff",
  27691. height: math.unit(175, "km")
  27692. },
  27693. ]
  27694. ))
  27695. characterMakers.push(() => makeCharacter(
  27696. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27697. {
  27698. front: {
  27699. height: math.unit(7, "feet"),
  27700. weight: math.unit(1000, "kg"),
  27701. name: "Front",
  27702. image: {
  27703. source: "./media/characters/edrax/front.svg",
  27704. extra: 2838 / 2550,
  27705. bottom: 130 / 2968
  27706. }
  27707. },
  27708. },
  27709. [
  27710. {
  27711. name: "Small",
  27712. height: math.unit(7, "feet")
  27713. },
  27714. {
  27715. name: "Normal",
  27716. height: math.unit(1500, "meters")
  27717. },
  27718. {
  27719. name: "Mega",
  27720. height: math.unit(12000000, "km"),
  27721. default: true
  27722. },
  27723. {
  27724. name: "Megamacro",
  27725. height: math.unit(10600000, "lightyears")
  27726. },
  27727. {
  27728. name: "Hypermacro",
  27729. height: math.unit(256, "yottameters")
  27730. },
  27731. ]
  27732. ))
  27733. characterMakers.push(() => makeCharacter(
  27734. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27735. {
  27736. front: {
  27737. height: math.unit(10, "feet"),
  27738. weight: math.unit(750, "lb"),
  27739. name: "Front",
  27740. image: {
  27741. source: "./media/characters/clove/front.svg",
  27742. extra: 2031 / 1860,
  27743. bottom: 47.8 / 2080
  27744. }
  27745. },
  27746. back: {
  27747. height: math.unit(10, "feet"),
  27748. weight: math.unit(750, "lb"),
  27749. name: "Back",
  27750. image: {
  27751. source: "./media/characters/clove/back.svg",
  27752. extra: 2025 / 1859,
  27753. bottom: 46 / 2071
  27754. }
  27755. },
  27756. },
  27757. [
  27758. {
  27759. name: "Normal",
  27760. height: math.unit(10, "feet"),
  27761. default: true
  27762. },
  27763. ]
  27764. ))
  27765. characterMakers.push(() => makeCharacter(
  27766. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27767. {
  27768. front: {
  27769. height: math.unit(4, "feet"),
  27770. weight: math.unit(50, "lb"),
  27771. name: "Front",
  27772. image: {
  27773. source: "./media/characters/alex-rabbit/front.svg",
  27774. extra: 507 / 458,
  27775. bottom: 18.5 / 527
  27776. }
  27777. },
  27778. back: {
  27779. height: math.unit(4, "feet"),
  27780. weight: math.unit(50, "lb"),
  27781. name: "Back",
  27782. image: {
  27783. source: "./media/characters/alex-rabbit/back.svg",
  27784. extra: 502 / 460,
  27785. bottom: 18.9 / 521
  27786. }
  27787. },
  27788. },
  27789. [
  27790. {
  27791. name: "Normal",
  27792. height: math.unit(4, "feet"),
  27793. default: true
  27794. },
  27795. ]
  27796. ))
  27797. characterMakers.push(() => makeCharacter(
  27798. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27799. {
  27800. front: {
  27801. height: math.unit(1 + 3 / 12, "feet"),
  27802. weight: math.unit(80, "lb"),
  27803. name: "Front",
  27804. image: {
  27805. source: "./media/characters/zander-rose/front.svg",
  27806. extra: 916 / 797,
  27807. bottom: 17 / 933
  27808. }
  27809. },
  27810. back: {
  27811. height: math.unit(1 + 3 / 12, "feet"),
  27812. weight: math.unit(80, "lb"),
  27813. name: "Back",
  27814. image: {
  27815. source: "./media/characters/zander-rose/back.svg",
  27816. extra: 903 / 779,
  27817. bottom: 31 / 934
  27818. }
  27819. },
  27820. },
  27821. [
  27822. {
  27823. name: "Normal",
  27824. height: math.unit(1 + 3 / 12, "feet"),
  27825. default: true
  27826. },
  27827. ]
  27828. ))
  27829. characterMakers.push(() => makeCharacter(
  27830. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27831. {
  27832. anthro: {
  27833. height: math.unit(6, "feet"),
  27834. weight: math.unit(150, "lb"),
  27835. name: "Anthro",
  27836. image: {
  27837. source: "./media/characters/razz/anthro.svg",
  27838. extra: 1437 / 1343,
  27839. bottom: 48 / 1485
  27840. }
  27841. },
  27842. feral: {
  27843. height: math.unit(6, "feet"),
  27844. weight: math.unit(150, "lb"),
  27845. name: "Feral",
  27846. image: {
  27847. source: "./media/characters/razz/feral.svg",
  27848. extra: 2569 / 1385,
  27849. bottom: 95 / 2664
  27850. }
  27851. },
  27852. },
  27853. [
  27854. {
  27855. name: "Normal",
  27856. height: math.unit(6, "feet"),
  27857. default: true
  27858. },
  27859. ]
  27860. ))
  27861. characterMakers.push(() => makeCharacter(
  27862. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27863. {
  27864. front: {
  27865. height: math.unit(9 + 4 / 12, "feet"),
  27866. weight: math.unit(500, "lb"),
  27867. name: "Front",
  27868. image: {
  27869. source: "./media/characters/morrigan/front.svg",
  27870. extra: 2707 / 2579,
  27871. bottom: 156 / 2863
  27872. }
  27873. },
  27874. },
  27875. [
  27876. {
  27877. name: "Normal",
  27878. height: math.unit(9 + 4 / 12, "feet"),
  27879. default: true
  27880. },
  27881. ]
  27882. ))
  27883. characterMakers.push(() => makeCharacter(
  27884. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27885. {
  27886. front: {
  27887. height: math.unit(5, "stories"),
  27888. weight: math.unit(4000, "lb"),
  27889. name: "Front",
  27890. image: {
  27891. source: "./media/characters/jenene/front.svg",
  27892. extra: 1780 / 1710,
  27893. bottom: 57 / 1837
  27894. }
  27895. },
  27896. },
  27897. [
  27898. {
  27899. name: "Normal",
  27900. height: math.unit(5, "stories"),
  27901. default: true
  27902. },
  27903. ]
  27904. ))
  27905. characterMakers.push(() => makeCharacter(
  27906. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27907. {
  27908. taurSfw: {
  27909. height: math.unit(10, "meters"),
  27910. weight: math.unit(17500, "kg"),
  27911. name: "Taur",
  27912. image: {
  27913. source: "./media/characters/faey/taur-sfw.svg",
  27914. extra: 1200 / 968,
  27915. bottom: 41 / 1241
  27916. }
  27917. },
  27918. chestmaw: {
  27919. height: math.unit(2.01, "meters"),
  27920. name: "Chestmaw",
  27921. image: {
  27922. source: "./media/characters/faey/chestmaw.svg"
  27923. }
  27924. },
  27925. foot: {
  27926. height: math.unit(2.43, "meters"),
  27927. name: "Foot",
  27928. image: {
  27929. source: "./media/characters/faey/foot.svg"
  27930. }
  27931. },
  27932. jaws: {
  27933. height: math.unit(1.66, "meters"),
  27934. name: "Jaws",
  27935. image: {
  27936. source: "./media/characters/faey/jaws.svg"
  27937. }
  27938. },
  27939. tongues: {
  27940. height: math.unit(2.01, "meters"),
  27941. name: "Tongues",
  27942. image: {
  27943. source: "./media/characters/faey/tongues.svg"
  27944. }
  27945. },
  27946. },
  27947. [
  27948. {
  27949. name: "Small",
  27950. height: math.unit(10, "meters"),
  27951. default: true
  27952. },
  27953. {
  27954. name: "Big",
  27955. height: math.unit(500000, "km")
  27956. },
  27957. ]
  27958. ))
  27959. characterMakers.push(() => makeCharacter(
  27960. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27961. {
  27962. front: {
  27963. height: math.unit(7, "feet"),
  27964. weight: math.unit(275, "lb"),
  27965. name: "Front",
  27966. image: {
  27967. source: "./media/characters/roku/front.svg",
  27968. extra: 903 / 878,
  27969. bottom: 37 / 940
  27970. }
  27971. },
  27972. },
  27973. [
  27974. {
  27975. name: "Normal",
  27976. height: math.unit(7, "feet"),
  27977. default: true
  27978. },
  27979. {
  27980. name: "Macro",
  27981. height: math.unit(500, "feet")
  27982. },
  27983. {
  27984. name: "Megamacro",
  27985. height: math.unit(200, "miles")
  27986. },
  27987. ]
  27988. ))
  27989. characterMakers.push(() => makeCharacter(
  27990. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27991. {
  27992. front: {
  27993. height: math.unit(6 + 2 / 12, "feet"),
  27994. weight: math.unit(150, "lb"),
  27995. name: "Front",
  27996. image: {
  27997. source: "./media/characters/lira/front.svg",
  27998. extra: 1727 / 1605,
  27999. bottom: 26 / 1753
  28000. }
  28001. },
  28002. back: {
  28003. height: math.unit(6 + 2 / 12, "feet"),
  28004. weight: math.unit(150, "lb"),
  28005. name: "Back",
  28006. image: {
  28007. source: "./media/characters/lira/back.svg",
  28008. extra: 1713/1621,
  28009. bottom: 20/1733
  28010. }
  28011. },
  28012. hand: {
  28013. height: math.unit(0.75, "feet"),
  28014. name: "Hand",
  28015. image: {
  28016. source: "./media/characters/lira/hand.svg"
  28017. }
  28018. },
  28019. maw: {
  28020. height: math.unit(0.65, "feet"),
  28021. name: "Maw",
  28022. image: {
  28023. source: "./media/characters/lira/maw.svg"
  28024. }
  28025. },
  28026. pawDigi: {
  28027. height: math.unit(1.6, "feet"),
  28028. name: "Paw Digi",
  28029. image: {
  28030. source: "./media/characters/lira/paw-digi.svg"
  28031. }
  28032. },
  28033. pawPlanti: {
  28034. height: math.unit(1.4, "feet"),
  28035. name: "Paw Planti",
  28036. image: {
  28037. source: "./media/characters/lira/paw-planti.svg"
  28038. }
  28039. },
  28040. },
  28041. [
  28042. {
  28043. name: "Normal",
  28044. height: math.unit(6 + 2 / 12, "feet"),
  28045. default: true
  28046. },
  28047. {
  28048. name: "Macro",
  28049. height: math.unit(100, "feet")
  28050. },
  28051. {
  28052. name: "Macro²",
  28053. height: math.unit(1600, "feet")
  28054. },
  28055. {
  28056. name: "Planetary",
  28057. height: math.unit(20, "earths")
  28058. },
  28059. ]
  28060. ))
  28061. characterMakers.push(() => makeCharacter(
  28062. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28063. {
  28064. front: {
  28065. height: math.unit(6, "feet"),
  28066. weight: math.unit(150, "lb"),
  28067. name: "Front",
  28068. image: {
  28069. source: "./media/characters/hadjet/front.svg",
  28070. extra: 1480 / 1346,
  28071. bottom: 26 / 1506
  28072. }
  28073. },
  28074. frontNsfw: {
  28075. height: math.unit(6, "feet"),
  28076. weight: math.unit(150, "lb"),
  28077. name: "Front (NSFW)",
  28078. image: {
  28079. source: "./media/characters/hadjet/front-nsfw.svg",
  28080. extra: 1440 / 1358,
  28081. bottom: 52 / 1492
  28082. }
  28083. },
  28084. },
  28085. [
  28086. {
  28087. name: "Macro",
  28088. height: math.unit(10, "stories"),
  28089. default: true
  28090. },
  28091. {
  28092. name: "Megamacro",
  28093. height: math.unit(1.5, "miles")
  28094. },
  28095. {
  28096. name: "Megamacro+",
  28097. height: math.unit(5, "miles")
  28098. },
  28099. ]
  28100. ))
  28101. characterMakers.push(() => makeCharacter(
  28102. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28103. {
  28104. side: {
  28105. height: math.unit(106, "feet"),
  28106. weight: math.unit(500, "tonnes"),
  28107. name: "Side",
  28108. image: {
  28109. source: "./media/characters/kodran/side.svg",
  28110. extra: 553 / 480,
  28111. bottom: 33 / 586
  28112. }
  28113. },
  28114. front: {
  28115. height: math.unit(132, "feet"),
  28116. weight: math.unit(500, "tonnes"),
  28117. name: "Front",
  28118. image: {
  28119. source: "./media/characters/kodran/front.svg",
  28120. extra: 667 / 643,
  28121. bottom: 42 / 709
  28122. }
  28123. },
  28124. flying: {
  28125. height: math.unit(350, "feet"),
  28126. weight: math.unit(500, "tonnes"),
  28127. name: "Flying",
  28128. image: {
  28129. source: "./media/characters/kodran/flying.svg"
  28130. }
  28131. },
  28132. foot: {
  28133. height: math.unit(33, "feet"),
  28134. name: "Foot",
  28135. image: {
  28136. source: "./media/characters/kodran/foot.svg"
  28137. }
  28138. },
  28139. footFront: {
  28140. height: math.unit(19, "feet"),
  28141. name: "Foot (Front)",
  28142. image: {
  28143. source: "./media/characters/kodran/foot-front.svg",
  28144. extra: 261 / 261,
  28145. bottom: 91 / 352
  28146. }
  28147. },
  28148. headFront: {
  28149. height: math.unit(53, "feet"),
  28150. name: "Head (Front)",
  28151. image: {
  28152. source: "./media/characters/kodran/head-front.svg"
  28153. }
  28154. },
  28155. headSide: {
  28156. height: math.unit(65, "feet"),
  28157. name: "Head (Side)",
  28158. image: {
  28159. source: "./media/characters/kodran/head-side.svg"
  28160. }
  28161. },
  28162. throat: {
  28163. height: math.unit(79, "feet"),
  28164. name: "Throat",
  28165. image: {
  28166. source: "./media/characters/kodran/throat.svg"
  28167. }
  28168. },
  28169. },
  28170. [
  28171. {
  28172. name: "Large",
  28173. height: math.unit(106, "feet"),
  28174. default: true
  28175. },
  28176. ]
  28177. ))
  28178. characterMakers.push(() => makeCharacter(
  28179. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28180. {
  28181. side: {
  28182. height: math.unit(11, "feet"),
  28183. weight: math.unit(150, "lb"),
  28184. name: "Side",
  28185. image: {
  28186. source: "./media/characters/pyxaron/side.svg",
  28187. extra: 305 / 195,
  28188. bottom: 17 / 322
  28189. }
  28190. },
  28191. },
  28192. [
  28193. {
  28194. name: "Normal",
  28195. height: math.unit(11, "feet"),
  28196. default: true
  28197. },
  28198. ]
  28199. ))
  28200. characterMakers.push(() => makeCharacter(
  28201. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28202. {
  28203. front: {
  28204. height: math.unit(6, "feet"),
  28205. weight: math.unit(150, "lb"),
  28206. name: "Front",
  28207. image: {
  28208. source: "./media/characters/meep/front.svg",
  28209. extra: 88 / 80,
  28210. bottom: 6 / 94
  28211. }
  28212. },
  28213. },
  28214. [
  28215. {
  28216. name: "Fun Sized",
  28217. height: math.unit(2, "inches"),
  28218. default: true
  28219. },
  28220. {
  28221. name: "Friend Sized",
  28222. height: math.unit(8, "inches")
  28223. },
  28224. ]
  28225. ))
  28226. characterMakers.push(() => makeCharacter(
  28227. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28228. {
  28229. front: {
  28230. height: math.unit(15, "feet"),
  28231. weight: math.unit(2500, "lb"),
  28232. name: "Front",
  28233. image: {
  28234. source: "./media/characters/holly-rabbit/front.svg",
  28235. extra: 1433 / 1233,
  28236. bottom: 125 / 1558
  28237. }
  28238. },
  28239. dick: {
  28240. height: math.unit(4.6, "feet"),
  28241. name: "Dick",
  28242. image: {
  28243. source: "./media/characters/holly-rabbit/dick.svg"
  28244. }
  28245. },
  28246. },
  28247. [
  28248. {
  28249. name: "Normal",
  28250. height: math.unit(15, "feet"),
  28251. default: true
  28252. },
  28253. {
  28254. name: "Macro",
  28255. height: math.unit(250, "feet")
  28256. },
  28257. {
  28258. name: "Macro+",
  28259. height: math.unit(2500, "feet")
  28260. },
  28261. ]
  28262. ))
  28263. characterMakers.push(() => makeCharacter(
  28264. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28265. {
  28266. front: {
  28267. height: math.unit(3.02, "meters"),
  28268. weight: math.unit(500, "kg"),
  28269. name: "Front",
  28270. image: {
  28271. source: "./media/characters/drena/front.svg",
  28272. extra: 282 / 243,
  28273. bottom: 8 / 290
  28274. }
  28275. },
  28276. side: {
  28277. height: math.unit(3.02, "meters"),
  28278. weight: math.unit(500, "kg"),
  28279. name: "Side",
  28280. image: {
  28281. source: "./media/characters/drena/side.svg",
  28282. extra: 280 / 245,
  28283. bottom: 10 / 290
  28284. }
  28285. },
  28286. back: {
  28287. height: math.unit(3.02, "meters"),
  28288. weight: math.unit(500, "kg"),
  28289. name: "Back",
  28290. image: {
  28291. source: "./media/characters/drena/back.svg",
  28292. extra: 278 / 243,
  28293. bottom: 2 / 280
  28294. }
  28295. },
  28296. foot: {
  28297. height: math.unit(0.75, "meters"),
  28298. name: "Foot",
  28299. image: {
  28300. source: "./media/characters/drena/foot.svg"
  28301. }
  28302. },
  28303. maw: {
  28304. height: math.unit(0.82, "meters"),
  28305. name: "Maw",
  28306. image: {
  28307. source: "./media/characters/drena/maw.svg"
  28308. }
  28309. },
  28310. rump: {
  28311. height: math.unit(0.93, "meters"),
  28312. name: "Rump",
  28313. image: {
  28314. source: "./media/characters/drena/rump.svg"
  28315. }
  28316. },
  28317. },
  28318. [
  28319. {
  28320. name: "Normal",
  28321. height: math.unit(3.02, "meters"),
  28322. default: true
  28323. },
  28324. ]
  28325. ))
  28326. characterMakers.push(() => makeCharacter(
  28327. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28328. {
  28329. front: {
  28330. height: math.unit(6 + 4 / 12, "feet"),
  28331. weight: math.unit(250, "lb"),
  28332. name: "Front",
  28333. image: {
  28334. source: "./media/characters/remmyzilla/front.svg",
  28335. extra: 4033 / 3588,
  28336. bottom: 123 / 4156
  28337. }
  28338. },
  28339. back: {
  28340. height: math.unit(6 + 4 / 12, "feet"),
  28341. weight: math.unit(250, "lb"),
  28342. name: "Back",
  28343. image: {
  28344. source: "./media/characters/remmyzilla/back.svg",
  28345. extra: 2687 / 2555,
  28346. bottom: 48 / 2735
  28347. }
  28348. },
  28349. paw: {
  28350. height: math.unit(1.73, "feet"),
  28351. name: "Paw",
  28352. image: {
  28353. source: "./media/characters/remmyzilla/paw.svg"
  28354. }
  28355. },
  28356. maw: {
  28357. height: math.unit(1.73, "feet"),
  28358. name: "Maw",
  28359. image: {
  28360. source: "./media/characters/remmyzilla/maw.svg"
  28361. }
  28362. },
  28363. },
  28364. [
  28365. {
  28366. name: "Normal",
  28367. height: math.unit(6 + 4 / 12, "feet")
  28368. },
  28369. {
  28370. name: "Minimacro",
  28371. height: math.unit(12 + 8 / 12, "feet")
  28372. },
  28373. {
  28374. name: "Normal",
  28375. height: math.unit(640, "feet"),
  28376. default: true
  28377. },
  28378. {
  28379. name: "Megamacro",
  28380. height: math.unit(6400, "feet")
  28381. },
  28382. {
  28383. name: "Gigamacro",
  28384. height: math.unit(64000, "miles")
  28385. },
  28386. ]
  28387. ))
  28388. characterMakers.push(() => makeCharacter(
  28389. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28390. {
  28391. front: {
  28392. height: math.unit(2.5, "meters"),
  28393. weight: math.unit(300, "lb"),
  28394. name: "Front",
  28395. image: {
  28396. source: "./media/characters/lawrence/front.svg",
  28397. extra: 357 / 335,
  28398. bottom: 30 / 387
  28399. }
  28400. },
  28401. back: {
  28402. height: math.unit(2.5, "meters"),
  28403. weight: math.unit(300, "lb"),
  28404. name: "Back",
  28405. image: {
  28406. source: "./media/characters/lawrence/back.svg",
  28407. extra: 357 / 338,
  28408. bottom: 16 / 373
  28409. }
  28410. },
  28411. head: {
  28412. height: math.unit(0.9, "meter"),
  28413. name: "Head",
  28414. image: {
  28415. source: "./media/characters/lawrence/head.svg"
  28416. }
  28417. },
  28418. maw: {
  28419. height: math.unit(0.7, "meter"),
  28420. name: "Maw",
  28421. image: {
  28422. source: "./media/characters/lawrence/maw.svg"
  28423. }
  28424. },
  28425. footBottom: {
  28426. height: math.unit(0.5, "meter"),
  28427. name: "Foot (Bottom)",
  28428. image: {
  28429. source: "./media/characters/lawrence/foot-bottom.svg"
  28430. }
  28431. },
  28432. footTop: {
  28433. height: math.unit(0.5, "meter"),
  28434. name: "Foot (Top)",
  28435. image: {
  28436. source: "./media/characters/lawrence/foot-top.svg"
  28437. }
  28438. },
  28439. },
  28440. [
  28441. {
  28442. name: "Normal",
  28443. height: math.unit(2.5, "meters"),
  28444. default: true
  28445. },
  28446. {
  28447. name: "Macro",
  28448. height: math.unit(95, "meters")
  28449. },
  28450. {
  28451. name: "Megamacro",
  28452. height: math.unit(150, "km")
  28453. },
  28454. ]
  28455. ))
  28456. characterMakers.push(() => makeCharacter(
  28457. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28458. {
  28459. front: {
  28460. height: math.unit(4.2, "meters"),
  28461. name: "Front",
  28462. image: {
  28463. source: "./media/characters/sydney/front.svg",
  28464. extra: 1323 / 1277,
  28465. bottom: 111 / 1434
  28466. }
  28467. },
  28468. },
  28469. [
  28470. {
  28471. name: "Normal",
  28472. height: math.unit(4.2, "meters"),
  28473. default: true
  28474. },
  28475. ]
  28476. ))
  28477. characterMakers.push(() => makeCharacter(
  28478. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28479. {
  28480. back: {
  28481. height: math.unit(201, "feet"),
  28482. name: "Back",
  28483. image: {
  28484. source: "./media/characters/jessica/back.svg",
  28485. extra: 273 / 259,
  28486. bottom: 7 / 280
  28487. }
  28488. },
  28489. },
  28490. [
  28491. {
  28492. name: "Normal",
  28493. height: math.unit(201, "feet"),
  28494. default: true
  28495. },
  28496. {
  28497. name: "Megamacro",
  28498. height: math.unit(8, "miles")
  28499. },
  28500. ]
  28501. ))
  28502. characterMakers.push(() => makeCharacter(
  28503. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28504. {
  28505. side: {
  28506. height: math.unit(320, "cm"),
  28507. name: "Side",
  28508. image: {
  28509. source: "./media/characters/victoria/side.svg",
  28510. extra: 778 / 346,
  28511. bottom: 56 / 834
  28512. }
  28513. },
  28514. maw: {
  28515. height: math.unit(5.9, "feet"),
  28516. name: "Maw",
  28517. image: {
  28518. source: "./media/characters/victoria/maw.svg"
  28519. }
  28520. },
  28521. },
  28522. [
  28523. {
  28524. name: "Normal",
  28525. height: math.unit(320, "cm"),
  28526. default: true
  28527. },
  28528. ]
  28529. ))
  28530. characterMakers.push(() => makeCharacter(
  28531. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28532. {
  28533. front: {
  28534. height: math.unit(5 + 6 / 12, "feet"),
  28535. name: "Front",
  28536. image: {
  28537. source: "./media/characters/cat/front.svg",
  28538. extra: 1449/1295,
  28539. bottom: 34/1483
  28540. }
  28541. },
  28542. back: {
  28543. height: math.unit(5 + 6 / 12, "feet"),
  28544. name: "Back",
  28545. image: {
  28546. source: "./media/characters/cat/back.svg",
  28547. extra: 1466/1301,
  28548. bottom: 19/1485
  28549. }
  28550. },
  28551. taur: {
  28552. height: math.unit(7, "feet"),
  28553. name: "Taur",
  28554. image: {
  28555. source: "./media/characters/cat/taur.svg",
  28556. extra: 1389/1233,
  28557. bottom: 83/1472
  28558. }
  28559. },
  28560. lucarioFront: {
  28561. height: math.unit(4, "feet"),
  28562. name: "Lucario (Front)",
  28563. image: {
  28564. source: "./media/characters/cat/lucario-front.svg",
  28565. extra: 1149/1019,
  28566. bottom: 84/1233
  28567. }
  28568. },
  28569. lucarioBack: {
  28570. height: math.unit(4, "feet"),
  28571. name: "Lucario (Back)",
  28572. image: {
  28573. source: "./media/characters/cat/lucario-back.svg",
  28574. extra: 1190/1059,
  28575. bottom: 33/1223
  28576. }
  28577. },
  28578. megaLucario: {
  28579. height: math.unit(4, "feet"),
  28580. name: "Mega Lucario",
  28581. image: {
  28582. source: "./media/characters/cat/mega-lucario.svg",
  28583. extra: 1515 / 1319,
  28584. bottom: 63 / 1578
  28585. }
  28586. },
  28587. nickit: {
  28588. height: math.unit(2, "feet"),
  28589. name: "Nickit",
  28590. image: {
  28591. source: "./media/characters/cat/nickit.svg",
  28592. extra: 1980 / 1585,
  28593. bottom: 102 / 2082
  28594. }
  28595. },
  28596. lopunnyFront: {
  28597. height: math.unit(5, "feet"),
  28598. name: "Lopunny (Front)",
  28599. image: {
  28600. source: "./media/characters/cat/lopunny-front.svg",
  28601. extra: 1782 / 1469,
  28602. bottom: 38 / 1820
  28603. }
  28604. },
  28605. lopunnyBack: {
  28606. height: math.unit(5, "feet"),
  28607. name: "Lopunny (Back)",
  28608. image: {
  28609. source: "./media/characters/cat/lopunny-back.svg",
  28610. extra: 1660 / 1490,
  28611. bottom: 25 / 1685
  28612. }
  28613. },
  28614. },
  28615. [
  28616. {
  28617. name: "Really small",
  28618. height: math.unit(1, "nm")
  28619. },
  28620. {
  28621. name: "Micro",
  28622. height: math.unit(5, "inches")
  28623. },
  28624. {
  28625. name: "Normal",
  28626. height: math.unit(5 + 6 / 12, "feet"),
  28627. default: true
  28628. },
  28629. {
  28630. name: "Macro",
  28631. height: math.unit(50, "feet")
  28632. },
  28633. {
  28634. name: "Macro+",
  28635. height: math.unit(150, "feet")
  28636. },
  28637. {
  28638. name: "Megamacro",
  28639. height: math.unit(100, "miles")
  28640. },
  28641. ]
  28642. ))
  28643. characterMakers.push(() => makeCharacter(
  28644. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28645. {
  28646. front: {
  28647. height: math.unit(63.4, "meters"),
  28648. weight: math.unit(3.28349e+6, "kilograms"),
  28649. name: "Front",
  28650. image: {
  28651. source: "./media/characters/kirina-violet/front.svg",
  28652. extra: 2812 / 2725,
  28653. bottom: 0 / 2812
  28654. }
  28655. },
  28656. back: {
  28657. height: math.unit(63.4, "meters"),
  28658. weight: math.unit(3.28349e+6, "kilograms"),
  28659. name: "Back",
  28660. image: {
  28661. source: "./media/characters/kirina-violet/back.svg",
  28662. extra: 2812 / 2725,
  28663. bottom: 0 / 2812
  28664. }
  28665. },
  28666. mouth: {
  28667. height: math.unit(4.35, "meters"),
  28668. name: "Mouth",
  28669. image: {
  28670. source: "./media/characters/kirina-violet/mouth.svg"
  28671. }
  28672. },
  28673. paw: {
  28674. height: math.unit(5.6, "meters"),
  28675. name: "Paw",
  28676. image: {
  28677. source: "./media/characters/kirina-violet/paw.svg"
  28678. }
  28679. },
  28680. tail: {
  28681. height: math.unit(18, "meters"),
  28682. name: "Tail",
  28683. image: {
  28684. source: "./media/characters/kirina-violet/tail.svg"
  28685. }
  28686. },
  28687. },
  28688. [
  28689. {
  28690. name: "Macro",
  28691. height: math.unit(63.4, "meters"),
  28692. default: true
  28693. },
  28694. ]
  28695. ))
  28696. characterMakers.push(() => makeCharacter(
  28697. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28698. {
  28699. front: {
  28700. height: math.unit(75, "feet"),
  28701. name: "Front",
  28702. image: {
  28703. source: "./media/characters/cat-gigachu/front.svg",
  28704. extra: 1239/1027,
  28705. bottom: 32/1271
  28706. }
  28707. },
  28708. back: {
  28709. height: math.unit(75, "feet"),
  28710. name: "Back",
  28711. image: {
  28712. source: "./media/characters/cat-gigachu/back.svg",
  28713. extra: 1229/1030,
  28714. bottom: 9/1238
  28715. }
  28716. },
  28717. },
  28718. [
  28719. {
  28720. name: "Dynamax",
  28721. height: math.unit(75, "feet"),
  28722. default: true
  28723. },
  28724. ]
  28725. ))
  28726. characterMakers.push(() => makeCharacter(
  28727. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28728. {
  28729. front: {
  28730. height: math.unit(6, "feet"),
  28731. weight: math.unit(150, "lb"),
  28732. name: "Front",
  28733. image: {
  28734. source: "./media/characters/sfaiyan/front.svg",
  28735. extra: 999 / 978,
  28736. bottom: 5 / 1004
  28737. }
  28738. },
  28739. },
  28740. [
  28741. {
  28742. name: "Normal",
  28743. height: math.unit(1.82, "meters")
  28744. },
  28745. {
  28746. name: "Giant",
  28747. height: math.unit(2.27, "km"),
  28748. default: true
  28749. },
  28750. ]
  28751. ))
  28752. characterMakers.push(() => makeCharacter(
  28753. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28754. {
  28755. front: {
  28756. height: math.unit(179, "cm"),
  28757. weight: math.unit(100, "kg"),
  28758. name: "Front",
  28759. image: {
  28760. source: "./media/characters/raunehkeli/front.svg",
  28761. extra: 1934 / 1926,
  28762. bottom: 0 / 1934
  28763. }
  28764. },
  28765. },
  28766. [
  28767. {
  28768. name: "Normal",
  28769. height: math.unit(179, "cm")
  28770. },
  28771. {
  28772. name: "Maximum",
  28773. height: math.unit(575, "meters"),
  28774. default: true
  28775. },
  28776. ]
  28777. ))
  28778. characterMakers.push(() => makeCharacter(
  28779. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28780. {
  28781. front: {
  28782. height: math.unit(6, "feet"),
  28783. weight: math.unit(150, "lb"),
  28784. name: "Front",
  28785. image: {
  28786. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28787. extra: 2625 / 2518,
  28788. bottom: 60 / 2685
  28789. }
  28790. },
  28791. },
  28792. [
  28793. {
  28794. name: "Normal",
  28795. height: math.unit(6 + 2 / 12, "feet")
  28796. },
  28797. {
  28798. name: "Macro",
  28799. height: math.unit(1180, "feet"),
  28800. default: true
  28801. },
  28802. ]
  28803. ))
  28804. characterMakers.push(() => makeCharacter(
  28805. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28806. {
  28807. front: {
  28808. height: math.unit(5 + 6 / 12, "feet"),
  28809. weight: math.unit(108, "lb"),
  28810. name: "Front",
  28811. image: {
  28812. source: "./media/characters/lilith-zott/front.svg",
  28813. extra: 2510 / 2238,
  28814. bottom: 100 / 2610
  28815. }
  28816. },
  28817. frontDressed: {
  28818. height: math.unit(5 + 6 / 12, "feet"),
  28819. weight: math.unit(108, "lb"),
  28820. name: "Front (Dressed)",
  28821. image: {
  28822. source: "./media/characters/lilith-zott/front-dressed.svg",
  28823. extra: 2510 / 2238,
  28824. bottom: 100 / 2610
  28825. }
  28826. },
  28827. },
  28828. [
  28829. {
  28830. name: "Normal",
  28831. height: math.unit(5 + 6 / 12, "feet")
  28832. },
  28833. {
  28834. name: "Macro",
  28835. height: math.unit(1030, "feet"),
  28836. default: true
  28837. },
  28838. ]
  28839. ))
  28840. characterMakers.push(() => makeCharacter(
  28841. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28842. {
  28843. front: {
  28844. height: math.unit(6, "feet"),
  28845. weight: math.unit(150, "lb"),
  28846. name: "Front",
  28847. image: {
  28848. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28849. extra: 2567 / 2435,
  28850. bottom: 39 / 2606
  28851. }
  28852. },
  28853. frontSuper: {
  28854. height: math.unit(6, "feet"),
  28855. name: "Front (Super)",
  28856. image: {
  28857. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28858. extra: 2567 / 2435,
  28859. bottom: 39 / 2606
  28860. }
  28861. },
  28862. },
  28863. [
  28864. {
  28865. name: "Normal",
  28866. height: math.unit(5 + 10 / 12, "feet")
  28867. },
  28868. {
  28869. name: "Macro",
  28870. height: math.unit(1100, "feet"),
  28871. default: true
  28872. },
  28873. ]
  28874. ))
  28875. characterMakers.push(() => makeCharacter(
  28876. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28877. {
  28878. front: {
  28879. height: math.unit(100, "miles"),
  28880. name: "Front",
  28881. image: {
  28882. source: "./media/characters/sona/front.svg",
  28883. extra: 2433 / 2201,
  28884. bottom: 53 / 2486
  28885. }
  28886. },
  28887. foot: {
  28888. height: math.unit(16.1, "miles"),
  28889. name: "Foot",
  28890. image: {
  28891. source: "./media/characters/sona/foot.svg"
  28892. }
  28893. },
  28894. },
  28895. [
  28896. {
  28897. name: "Macro",
  28898. height: math.unit(100, "miles"),
  28899. default: true
  28900. },
  28901. ]
  28902. ))
  28903. characterMakers.push(() => makeCharacter(
  28904. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28905. {
  28906. front: {
  28907. height: math.unit(6, "feet"),
  28908. weight: math.unit(150, "lb"),
  28909. name: "Front",
  28910. image: {
  28911. source: "./media/characters/bailey/front.svg",
  28912. extra: 1778 / 1724,
  28913. bottom: 30 / 1808
  28914. }
  28915. },
  28916. },
  28917. [
  28918. {
  28919. name: "Micro",
  28920. height: math.unit(4, "inches")
  28921. },
  28922. {
  28923. name: "Normal",
  28924. height: math.unit(5 + 5 / 12, "feet"),
  28925. default: true
  28926. },
  28927. {
  28928. name: "Macro",
  28929. height: math.unit(250, "feet")
  28930. },
  28931. {
  28932. name: "Megamacro",
  28933. height: math.unit(100, "miles")
  28934. },
  28935. ]
  28936. ))
  28937. characterMakers.push(() => makeCharacter(
  28938. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28939. {
  28940. front: {
  28941. height: math.unit(5 + 2 / 12, "feet"),
  28942. weight: math.unit(120, "lb"),
  28943. name: "Front",
  28944. image: {
  28945. source: "./media/characters/snaps/front.svg",
  28946. extra: 2370 / 2177,
  28947. bottom: 48 / 2418
  28948. }
  28949. },
  28950. back: {
  28951. height: math.unit(5 + 2 / 12, "feet"),
  28952. weight: math.unit(120, "lb"),
  28953. name: "Back",
  28954. image: {
  28955. source: "./media/characters/snaps/back.svg",
  28956. extra: 2408 / 2258,
  28957. bottom: 15 / 2423
  28958. }
  28959. },
  28960. },
  28961. [
  28962. {
  28963. name: "Micro",
  28964. height: math.unit(9, "inches")
  28965. },
  28966. {
  28967. name: "Normal",
  28968. height: math.unit(5 + 2 / 12, "feet"),
  28969. default: true
  28970. },
  28971. {
  28972. name: "Mini Macro",
  28973. height: math.unit(10, "feet")
  28974. },
  28975. ]
  28976. ))
  28977. characterMakers.push(() => makeCharacter(
  28978. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28979. {
  28980. front: {
  28981. height: math.unit(1.8, "meters"),
  28982. weight: math.unit(85, "kg"),
  28983. name: "Front",
  28984. image: {
  28985. source: "./media/characters/azteck/front.svg",
  28986. extra: 2815 / 2625,
  28987. bottom: 89 / 2904
  28988. }
  28989. },
  28990. back: {
  28991. height: math.unit(1.8, "meters"),
  28992. weight: math.unit(85, "kg"),
  28993. name: "Back",
  28994. image: {
  28995. source: "./media/characters/azteck/back.svg",
  28996. extra: 2856 / 2648,
  28997. bottom: 85 / 2941
  28998. }
  28999. },
  29000. frontDressed: {
  29001. height: math.unit(1.8, "meters"),
  29002. weight: math.unit(85, "kg"),
  29003. name: "Front (Dressed)",
  29004. image: {
  29005. source: "./media/characters/azteck/front-dressed.svg",
  29006. extra: 2147 / 2003,
  29007. bottom: 68 / 2215
  29008. }
  29009. },
  29010. head: {
  29011. height: math.unit(0.47, "meters"),
  29012. weight: math.unit(85, "kg"),
  29013. name: "Head",
  29014. image: {
  29015. source: "./media/characters/azteck/head.svg"
  29016. }
  29017. },
  29018. },
  29019. [
  29020. {
  29021. name: "Bite sized",
  29022. height: math.unit(16, "cm")
  29023. },
  29024. {
  29025. name: "Normal",
  29026. height: math.unit(1.8, "meters"),
  29027. default: true
  29028. },
  29029. ]
  29030. ))
  29031. characterMakers.push(() => makeCharacter(
  29032. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29033. {
  29034. front: {
  29035. height: math.unit(6, "feet"),
  29036. weight: math.unit(150, "lb"),
  29037. name: "Front",
  29038. image: {
  29039. source: "./media/characters/pidge/front.svg",
  29040. extra: 620 / 588,
  29041. bottom: 9 / 629
  29042. }
  29043. },
  29044. back: {
  29045. height: math.unit(6, "feet"),
  29046. weight: math.unit(150, "lb"),
  29047. name: "Back",
  29048. image: {
  29049. source: "./media/characters/pidge/back.svg",
  29050. extra: 620 / 588,
  29051. bottom: 9 / 629
  29052. }
  29053. },
  29054. },
  29055. [
  29056. {
  29057. name: "Macro",
  29058. height: math.unit(1, "mile"),
  29059. default: true
  29060. },
  29061. ]
  29062. ))
  29063. characterMakers.push(() => makeCharacter(
  29064. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29065. {
  29066. front: {
  29067. height: math.unit(6, "feet"),
  29068. weight: math.unit(150, "lb"),
  29069. name: "Front",
  29070. image: {
  29071. source: "./media/characters/en/front.svg",
  29072. extra: 1697 / 1563,
  29073. bottom: 103 / 1800
  29074. }
  29075. },
  29076. back: {
  29077. height: math.unit(6, "feet"),
  29078. weight: math.unit(150, "lb"),
  29079. name: "Back",
  29080. image: {
  29081. source: "./media/characters/en/back.svg",
  29082. extra: 1700 / 1570,
  29083. bottom: 51 / 1751
  29084. }
  29085. },
  29086. frontDressed: {
  29087. height: math.unit(6, "feet"),
  29088. weight: math.unit(150, "lb"),
  29089. name: "Front (Dressed)",
  29090. image: {
  29091. source: "./media/characters/en/front-dressed.svg",
  29092. extra: 1697 / 1563,
  29093. bottom: 103 / 1800
  29094. }
  29095. },
  29096. backDressed: {
  29097. height: math.unit(6, "feet"),
  29098. weight: math.unit(150, "lb"),
  29099. name: "Back (Dressed)",
  29100. image: {
  29101. source: "./media/characters/en/back-dressed.svg",
  29102. extra: 1700 / 1570,
  29103. bottom: 51 / 1751
  29104. }
  29105. },
  29106. },
  29107. [
  29108. {
  29109. name: "Macro",
  29110. height: math.unit(210, "feet"),
  29111. default: true
  29112. },
  29113. ]
  29114. ))
  29115. characterMakers.push(() => makeCharacter(
  29116. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29117. {
  29118. front: {
  29119. height: math.unit(6, "feet"),
  29120. weight: math.unit(150, "lb"),
  29121. name: "Front",
  29122. image: {
  29123. source: "./media/characters/haze-orris/front.svg",
  29124. extra: 3975 / 3525,
  29125. bottom: 137 / 4112
  29126. }
  29127. },
  29128. },
  29129. [
  29130. {
  29131. name: "Micro",
  29132. height: math.unit(150, "mm"),
  29133. default: true
  29134. },
  29135. ]
  29136. ))
  29137. characterMakers.push(() => makeCharacter(
  29138. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29139. {
  29140. front: {
  29141. height: math.unit(6, "feet"),
  29142. weight: math.unit(150, "lb"),
  29143. name: "Front",
  29144. image: {
  29145. source: "./media/characters/casselene-yaro/front.svg",
  29146. extra: 4721 / 4541,
  29147. bottom: 82 / 4803
  29148. }
  29149. },
  29150. back: {
  29151. height: math.unit(6, "feet"),
  29152. weight: math.unit(150, "lb"),
  29153. name: "Back",
  29154. image: {
  29155. source: "./media/characters/casselene-yaro/back.svg",
  29156. extra: 4569 / 4377,
  29157. bottom: 69 / 4638
  29158. }
  29159. },
  29160. frontDressed: {
  29161. height: math.unit(6, "feet"),
  29162. weight: math.unit(150, "lb"),
  29163. name: "Front-dressed",
  29164. image: {
  29165. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29166. extra: 4721 / 4541,
  29167. bottom: 82 / 4803
  29168. }
  29169. },
  29170. },
  29171. [
  29172. {
  29173. name: "Macro",
  29174. height: math.unit(190, "feet"),
  29175. default: true
  29176. },
  29177. ]
  29178. ))
  29179. characterMakers.push(() => makeCharacter(
  29180. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29181. {
  29182. front: {
  29183. height: math.unit(6, "feet"),
  29184. weight: math.unit(150, "lb"),
  29185. name: "Front",
  29186. image: {
  29187. source: "./media/characters/myra-rue-delore/front.svg",
  29188. extra: 1340 / 1308,
  29189. bottom: 67 / 1407
  29190. }
  29191. },
  29192. back: {
  29193. height: math.unit(6, "feet"),
  29194. weight: math.unit(150, "lb"),
  29195. name: "Back",
  29196. image: {
  29197. source: "./media/characters/myra-rue-delore/back.svg",
  29198. extra: 1341 / 1310,
  29199. bottom: 40 / 1381
  29200. }
  29201. },
  29202. frontDressed: {
  29203. height: math.unit(6, "feet"),
  29204. weight: math.unit(150, "lb"),
  29205. name: "Front (Dressed)",
  29206. image: {
  29207. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29208. extra: 1340 / 1308,
  29209. bottom: 67 / 1407
  29210. }
  29211. },
  29212. },
  29213. [
  29214. {
  29215. name: "Macro",
  29216. height: math.unit(150, "feet"),
  29217. default: true
  29218. },
  29219. ]
  29220. ))
  29221. characterMakers.push(() => makeCharacter(
  29222. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29223. {
  29224. front: {
  29225. height: math.unit(10, "feet"),
  29226. weight: math.unit(15015, "lb"),
  29227. name: "Front",
  29228. image: {
  29229. source: "./media/characters/fem!plat/front.svg",
  29230. extra: 2799 / 2604,
  29231. bottom: 149 / 2948
  29232. }
  29233. },
  29234. },
  29235. [
  29236. {
  29237. name: "Normal",
  29238. height: math.unit(10, "feet"),
  29239. default: true
  29240. },
  29241. {
  29242. name: "Macro",
  29243. height: math.unit(100, "feet")
  29244. },
  29245. {
  29246. name: "Megamacro",
  29247. height: math.unit(1000, "feet")
  29248. },
  29249. ]
  29250. ))
  29251. characterMakers.push(() => makeCharacter(
  29252. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29253. {
  29254. front: {
  29255. height: math.unit(15 + 5 / 12, "feet"),
  29256. weight: math.unit(4600, "lb"),
  29257. name: "Front",
  29258. image: {
  29259. source: "./media/characters/neapolitan-ananassa/front.svg",
  29260. extra: 2903 / 2736,
  29261. bottom: 0 / 2903
  29262. }
  29263. },
  29264. side: {
  29265. height: math.unit(15 + 5 / 12, "feet"),
  29266. weight: math.unit(4600, "lb"),
  29267. name: "Side",
  29268. image: {
  29269. source: "./media/characters/neapolitan-ananassa/side.svg",
  29270. extra: 2925 / 2719,
  29271. bottom: 0 / 2925
  29272. }
  29273. },
  29274. back: {
  29275. height: math.unit(15 + 5 / 12, "feet"),
  29276. weight: math.unit(4600, "lb"),
  29277. name: "Back",
  29278. image: {
  29279. source: "./media/characters/neapolitan-ananassa/back.svg",
  29280. extra: 2903 / 2736,
  29281. bottom: 0 / 2903
  29282. }
  29283. },
  29284. },
  29285. [
  29286. {
  29287. name: "Normal",
  29288. height: math.unit(15 + 5 / 12, "feet"),
  29289. default: true
  29290. },
  29291. {
  29292. name: "Post-Millenium",
  29293. height: math.unit(35 + 5 / 12, "feet")
  29294. },
  29295. {
  29296. name: "Post-Era",
  29297. height: math.unit(450 + 5 / 12, "feet")
  29298. },
  29299. ]
  29300. ))
  29301. characterMakers.push(() => makeCharacter(
  29302. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29303. {
  29304. front: {
  29305. height: math.unit(300, "meters"),
  29306. weight: math.unit(125000, "tonnes"),
  29307. name: "Front",
  29308. image: {
  29309. source: "./media/characters/pazuzu/front.svg",
  29310. extra: 877 / 794,
  29311. bottom: 47 / 924
  29312. }
  29313. },
  29314. },
  29315. [
  29316. {
  29317. name: "Macro",
  29318. height: math.unit(300, "meters"),
  29319. default: true
  29320. },
  29321. ]
  29322. ))
  29323. characterMakers.push(() => makeCharacter(
  29324. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29325. {
  29326. side: {
  29327. height: math.unit(10 + 7 / 12, "feet"),
  29328. weight: math.unit(2.5, "tons"),
  29329. name: "Side",
  29330. image: {
  29331. source: "./media/characters/aasha/side.svg",
  29332. extra: 1345 / 1245,
  29333. bottom: 111 / 1456
  29334. }
  29335. },
  29336. back: {
  29337. height: math.unit(10 + 7 / 12, "feet"),
  29338. weight: math.unit(2.5, "tons"),
  29339. name: "Back",
  29340. image: {
  29341. source: "./media/characters/aasha/back.svg",
  29342. extra: 1133 / 1057,
  29343. bottom: 257 / 1390
  29344. }
  29345. },
  29346. },
  29347. [
  29348. {
  29349. name: "Normal",
  29350. height: math.unit(10 + 7 / 12, "feet"),
  29351. default: true
  29352. },
  29353. ]
  29354. ))
  29355. characterMakers.push(() => makeCharacter(
  29356. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29357. {
  29358. front: {
  29359. height: math.unit(6 + 3 / 12, "feet"),
  29360. name: "Front",
  29361. image: {
  29362. source: "./media/characters/nevan/front.svg",
  29363. extra: 704 / 704,
  29364. bottom: 28 / 732
  29365. }
  29366. },
  29367. back: {
  29368. height: math.unit(6 + 3 / 12, "feet"),
  29369. name: "Back",
  29370. image: {
  29371. source: "./media/characters/nevan/back.svg",
  29372. extra: 714 / 714,
  29373. bottom: 21 / 735
  29374. }
  29375. },
  29376. frontFlaccid: {
  29377. height: math.unit(6 + 3 / 12, "feet"),
  29378. name: "Front (Flaccid)",
  29379. image: {
  29380. source: "./media/characters/nevan/front-flaccid.svg",
  29381. extra: 704 / 704,
  29382. bottom: 28 / 732
  29383. }
  29384. },
  29385. frontErect: {
  29386. height: math.unit(6 + 3 / 12, "feet"),
  29387. name: "Front (Erect)",
  29388. image: {
  29389. source: "./media/characters/nevan/front-erect.svg",
  29390. extra: 704 / 704,
  29391. bottom: 28 / 732
  29392. }
  29393. },
  29394. backFlaccid: {
  29395. height: math.unit(6 + 3 / 12, "feet"),
  29396. name: "Back (Flaccid)",
  29397. image: {
  29398. source: "./media/characters/nevan/back-flaccid.svg",
  29399. extra: 714 / 714,
  29400. bottom: 21 / 735
  29401. }
  29402. },
  29403. },
  29404. [
  29405. {
  29406. name: "Normal",
  29407. height: math.unit(6 + 3 / 12, "feet"),
  29408. default: true
  29409. },
  29410. ]
  29411. ))
  29412. characterMakers.push(() => makeCharacter(
  29413. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29414. {
  29415. front: {
  29416. height: math.unit(4, "feet"),
  29417. name: "Front",
  29418. image: {
  29419. source: "./media/characters/arhan/front.svg",
  29420. extra: 3368 / 3133,
  29421. bottom: 0 / 3368
  29422. }
  29423. },
  29424. side: {
  29425. height: math.unit(4, "feet"),
  29426. name: "Side",
  29427. image: {
  29428. source: "./media/characters/arhan/side.svg",
  29429. extra: 3347 / 3105,
  29430. bottom: 0 / 3347
  29431. }
  29432. },
  29433. tongue: {
  29434. height: math.unit(1.42, "feet"),
  29435. name: "Tongue",
  29436. image: {
  29437. source: "./media/characters/arhan/tongue.svg"
  29438. }
  29439. },
  29440. head: {
  29441. height: math.unit(0.85, "feet"),
  29442. name: "Head",
  29443. image: {
  29444. source: "./media/characters/arhan/head.svg"
  29445. }
  29446. },
  29447. },
  29448. [
  29449. {
  29450. name: "Normal",
  29451. height: math.unit(4, "feet"),
  29452. default: true
  29453. },
  29454. ]
  29455. ))
  29456. characterMakers.push(() => makeCharacter(
  29457. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29458. {
  29459. front: {
  29460. height: math.unit(5 + 7.5 / 12, "feet"),
  29461. weight: math.unit(120, "lb"),
  29462. name: "Front",
  29463. image: {
  29464. source: "./media/characters/digi-duncan/front.svg",
  29465. extra: 330 / 326,
  29466. bottom: 16 / 346
  29467. }
  29468. },
  29469. side: {
  29470. height: math.unit(5 + 7.5 / 12, "feet"),
  29471. weight: math.unit(120, "lb"),
  29472. name: "Side",
  29473. image: {
  29474. source: "./media/characters/digi-duncan/side.svg",
  29475. extra: 341 / 337,
  29476. bottom: 1 / 342
  29477. }
  29478. },
  29479. back: {
  29480. height: math.unit(5 + 7.5 / 12, "feet"),
  29481. weight: math.unit(120, "lb"),
  29482. name: "Back",
  29483. image: {
  29484. source: "./media/characters/digi-duncan/back.svg",
  29485. extra: 330 / 326,
  29486. bottom: 12 / 342
  29487. }
  29488. },
  29489. },
  29490. [
  29491. {
  29492. name: "Speck",
  29493. height: math.unit(0.25, "mm")
  29494. },
  29495. {
  29496. name: "Micro",
  29497. height: math.unit(5, "mm")
  29498. },
  29499. {
  29500. name: "Tiny",
  29501. height: math.unit(0.5, "inches"),
  29502. default: true
  29503. },
  29504. {
  29505. name: "Human",
  29506. height: math.unit(5 + 7.5 / 12, "feet")
  29507. },
  29508. {
  29509. name: "Minigiant",
  29510. height: math.unit(8 + 5.25, "feet")
  29511. },
  29512. {
  29513. name: "Giant",
  29514. height: math.unit(2000, "feet")
  29515. },
  29516. {
  29517. name: "Mega",
  29518. height: math.unit(371.1, "miles")
  29519. },
  29520. ]
  29521. ))
  29522. characterMakers.push(() => makeCharacter(
  29523. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29524. {
  29525. front: {
  29526. height: math.unit(2, "meters"),
  29527. weight: math.unit(350, "kg"),
  29528. name: "Front",
  29529. image: {
  29530. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29531. extra: 898 / 838,
  29532. bottom: 9 / 907
  29533. }
  29534. },
  29535. },
  29536. [
  29537. {
  29538. name: "Micro",
  29539. height: math.unit(8, "meters")
  29540. },
  29541. {
  29542. name: "Normal",
  29543. height: math.unit(50, "meters"),
  29544. default: true
  29545. },
  29546. {
  29547. name: "Macro",
  29548. height: math.unit(500, "meters")
  29549. },
  29550. ]
  29551. ))
  29552. characterMakers.push(() => makeCharacter(
  29553. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29554. {
  29555. front: {
  29556. height: math.unit(6 + 6 / 12, "feet"),
  29557. name: "Front",
  29558. image: {
  29559. source: "./media/characters/khardesh/front.svg",
  29560. extra: 888 / 797,
  29561. bottom: 25 / 913
  29562. }
  29563. },
  29564. },
  29565. [
  29566. {
  29567. name: "Normal",
  29568. height: math.unit(6 + 6 / 12, "feet"),
  29569. default: true
  29570. },
  29571. {
  29572. name: "Normal+",
  29573. height: math.unit(4, "meters")
  29574. },
  29575. {
  29576. name: "Macro",
  29577. height: math.unit(50, "meters")
  29578. },
  29579. {
  29580. name: "Macro+",
  29581. height: math.unit(100, "meters")
  29582. },
  29583. {
  29584. name: "Megamacro",
  29585. height: math.unit(20, "km")
  29586. },
  29587. ]
  29588. ))
  29589. characterMakers.push(() => makeCharacter(
  29590. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29591. {
  29592. front: {
  29593. height: math.unit(6, "feet"),
  29594. weight: math.unit(150, "lb"),
  29595. name: "Front",
  29596. image: {
  29597. source: "./media/characters/kosho/front.svg",
  29598. extra: 1847 / 1847,
  29599. bottom: 86 / 1933
  29600. }
  29601. },
  29602. },
  29603. [
  29604. {
  29605. name: "Second-stage micro",
  29606. height: math.unit(0.5, "inches")
  29607. },
  29608. {
  29609. name: "First-stage micro",
  29610. height: math.unit(6, "inches")
  29611. },
  29612. {
  29613. name: "Normal",
  29614. height: math.unit(6, "feet"),
  29615. default: true
  29616. },
  29617. {
  29618. name: "First-stage macro",
  29619. height: math.unit(72, "feet")
  29620. },
  29621. {
  29622. name: "Second-stage macro",
  29623. height: math.unit(864, "feet")
  29624. },
  29625. ]
  29626. ))
  29627. characterMakers.push(() => makeCharacter(
  29628. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29629. {
  29630. normal: {
  29631. height: math.unit(4 + 6 / 12, "feet"),
  29632. name: "Normal",
  29633. image: {
  29634. source: "./media/characters/hydra/normal.svg",
  29635. extra: 2833 / 2634,
  29636. bottom: 68 / 2901
  29637. }
  29638. },
  29639. smol: {
  29640. height: math.unit(0.705, "inches"),
  29641. name: "Smol",
  29642. image: {
  29643. source: "./media/characters/hydra/smol.svg",
  29644. extra: 2715 / 2540,
  29645. bottom: 0 / 2715
  29646. }
  29647. },
  29648. },
  29649. [
  29650. {
  29651. name: "Normal",
  29652. height: math.unit(4 + 6 / 12, "feet"),
  29653. default: true
  29654. }
  29655. ]
  29656. ))
  29657. characterMakers.push(() => makeCharacter(
  29658. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29659. {
  29660. front: {
  29661. height: math.unit(0.6, "cm"),
  29662. name: "Front",
  29663. image: {
  29664. source: "./media/characters/daz/front.svg",
  29665. extra: 1682 / 1164,
  29666. bottom: 42 / 1724
  29667. }
  29668. },
  29669. },
  29670. [
  29671. {
  29672. name: "Normal",
  29673. height: math.unit(0.6, "cm"),
  29674. default: true
  29675. },
  29676. ]
  29677. ))
  29678. characterMakers.push(() => makeCharacter(
  29679. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29680. {
  29681. front: {
  29682. height: math.unit(6, "feet"),
  29683. weight: math.unit(235, "lb"),
  29684. name: "Front",
  29685. image: {
  29686. source: "./media/characters/theo-pangolin/front.svg",
  29687. extra: 1996 / 1969,
  29688. bottom: 115 / 2111
  29689. }
  29690. },
  29691. back: {
  29692. height: math.unit(6, "feet"),
  29693. weight: math.unit(235, "lb"),
  29694. name: "Back",
  29695. image: {
  29696. source: "./media/characters/theo-pangolin/back.svg",
  29697. extra: 1979 / 1979,
  29698. bottom: 40 / 2019
  29699. }
  29700. },
  29701. feral: {
  29702. height: math.unit(2, "feet"),
  29703. weight: math.unit(30, "lb"),
  29704. name: "Feral",
  29705. image: {
  29706. source: "./media/characters/theo-pangolin/feral.svg",
  29707. extra: 803 / 791,
  29708. bottom: 181 / 984
  29709. }
  29710. },
  29711. footFive: {
  29712. height: math.unit(1.43, "feet"),
  29713. name: "Foot (Five Toes)",
  29714. image: {
  29715. source: "./media/characters/theo-pangolin/foot-five.svg"
  29716. }
  29717. },
  29718. footFour: {
  29719. height: math.unit(1.43, "feet"),
  29720. name: "Foot (Four Toes)",
  29721. image: {
  29722. source: "./media/characters/theo-pangolin/foot-four.svg"
  29723. }
  29724. },
  29725. handFour: {
  29726. height: math.unit(0.81, "feet"),
  29727. name: "Hand (Four Fingers)",
  29728. image: {
  29729. source: "./media/characters/theo-pangolin/hand-four.svg"
  29730. }
  29731. },
  29732. handThree: {
  29733. height: math.unit(0.81, "feet"),
  29734. name: "Hand (Three Fingers)",
  29735. image: {
  29736. source: "./media/characters/theo-pangolin/hand-three.svg"
  29737. }
  29738. },
  29739. headFront: {
  29740. height: math.unit(1.37, "feet"),
  29741. name: "Head (Front)",
  29742. image: {
  29743. source: "./media/characters/theo-pangolin/head-front.svg"
  29744. }
  29745. },
  29746. headSide: {
  29747. height: math.unit(1.43, "feet"),
  29748. name: "Head (Side)",
  29749. image: {
  29750. source: "./media/characters/theo-pangolin/head-side.svg"
  29751. }
  29752. },
  29753. tongue: {
  29754. height: math.unit(2.29, "feet"),
  29755. name: "Tongue",
  29756. image: {
  29757. source: "./media/characters/theo-pangolin/tongue.svg"
  29758. }
  29759. },
  29760. },
  29761. [
  29762. {
  29763. name: "Normal",
  29764. height: math.unit(6, "feet")
  29765. },
  29766. {
  29767. name: "Macro",
  29768. height: math.unit(400, "feet"),
  29769. default: true
  29770. },
  29771. ]
  29772. ))
  29773. characterMakers.push(() => makeCharacter(
  29774. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29775. {
  29776. front: {
  29777. height: math.unit(6, "inches"),
  29778. weight: math.unit(0.036, "kg"),
  29779. name: "Front",
  29780. image: {
  29781. source: "./media/characters/renée/front.svg",
  29782. extra: 900 / 886,
  29783. bottom: 8 / 908
  29784. }
  29785. },
  29786. },
  29787. [
  29788. {
  29789. name: "Nano",
  29790. height: math.unit(1, "nm")
  29791. },
  29792. {
  29793. name: "Micro",
  29794. height: math.unit(1, "mm")
  29795. },
  29796. {
  29797. name: "Normal",
  29798. height: math.unit(6, "inches")
  29799. },
  29800. {
  29801. name: "Macro",
  29802. height: math.unit(2000, "feet"),
  29803. default: true
  29804. },
  29805. {
  29806. name: "Megamacro",
  29807. height: math.unit(2, "km")
  29808. },
  29809. {
  29810. name: "Gigamacro",
  29811. height: math.unit(2000, "km")
  29812. },
  29813. {
  29814. name: "Teramacro",
  29815. height: math.unit(250000, "km")
  29816. },
  29817. ]
  29818. ))
  29819. characterMakers.push(() => makeCharacter(
  29820. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29821. {
  29822. front: {
  29823. height: math.unit(4, "meters"),
  29824. weight: math.unit(150, "kg"),
  29825. name: "Front",
  29826. image: {
  29827. source: "./media/characters/caledvwlch/front.svg",
  29828. extra: 1760 / 1551,
  29829. bottom: 28 / 1788
  29830. }
  29831. },
  29832. side: {
  29833. height: math.unit(4, "meters"),
  29834. weight: math.unit(150, "kg"),
  29835. name: "Side",
  29836. image: {
  29837. source: "./media/characters/caledvwlch/side.svg",
  29838. extra: 1605 / 1536,
  29839. bottom: 31 / 1636
  29840. }
  29841. },
  29842. back: {
  29843. height: math.unit(4, "meters"),
  29844. weight: math.unit(150, "kg"),
  29845. name: "Back",
  29846. image: {
  29847. source: "./media/characters/caledvwlch/back.svg",
  29848. extra: 1635 / 1565,
  29849. bottom: 27 / 1662
  29850. }
  29851. },
  29852. },
  29853. [
  29854. {
  29855. name: "\"Incognito\"",
  29856. height: math.unit(4, "meters")
  29857. },
  29858. {
  29859. name: "Small rampage",
  29860. height: math.unit(600, "meters")
  29861. },
  29862. {
  29863. name: "Mega",
  29864. height: math.unit(30, "km")
  29865. },
  29866. {
  29867. name: "Home-size",
  29868. height: math.unit(50, "km"),
  29869. default: true
  29870. },
  29871. {
  29872. name: "Giga",
  29873. height: math.unit(300, "km")
  29874. },
  29875. {
  29876. name: "Lounging",
  29877. height: math.unit(11000, "km")
  29878. },
  29879. {
  29880. name: "Planet snacking",
  29881. height: math.unit(2000000, "km")
  29882. },
  29883. ]
  29884. ))
  29885. characterMakers.push(() => makeCharacter(
  29886. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29887. {
  29888. front: {
  29889. height: math.unit(6, "feet"),
  29890. weight: math.unit(215, "lb"),
  29891. name: "Front",
  29892. image: {
  29893. source: "./media/characters/sapphire-svell/front.svg",
  29894. extra: 495 / 455,
  29895. bottom: 20 / 515
  29896. }
  29897. },
  29898. back: {
  29899. height: math.unit(6, "feet"),
  29900. weight: math.unit(216, "lb"),
  29901. name: "Back",
  29902. image: {
  29903. source: "./media/characters/sapphire-svell/back.svg",
  29904. extra: 497 / 477,
  29905. bottom: 7 / 504
  29906. }
  29907. },
  29908. maw: {
  29909. height: math.unit(1.57, "feet"),
  29910. name: "Maw",
  29911. image: {
  29912. source: "./media/characters/sapphire-svell/maw.svg"
  29913. }
  29914. },
  29915. foot: {
  29916. height: math.unit(1.07, "feet"),
  29917. name: "Foot",
  29918. image: {
  29919. source: "./media/characters/sapphire-svell/foot.svg"
  29920. }
  29921. },
  29922. toering: {
  29923. height: math.unit(1.7, "inch"),
  29924. name: "Toering",
  29925. image: {
  29926. source: "./media/characters/sapphire-svell/toering.svg"
  29927. }
  29928. },
  29929. },
  29930. [
  29931. {
  29932. name: "Normal",
  29933. height: math.unit(300, "feet"),
  29934. default: true
  29935. },
  29936. {
  29937. name: "Augmented",
  29938. height: math.unit(1250, "feet")
  29939. },
  29940. {
  29941. name: "Unleashed",
  29942. height: math.unit(3000, "feet")
  29943. },
  29944. ]
  29945. ))
  29946. characterMakers.push(() => makeCharacter(
  29947. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29948. {
  29949. side: {
  29950. height: math.unit(2 + 3 / 12, "feet"),
  29951. weight: math.unit(110, "lb"),
  29952. name: "Side",
  29953. image: {
  29954. source: "./media/characters/glitch-flux/side.svg",
  29955. extra: 997 / 805,
  29956. bottom: 20 / 1017
  29957. }
  29958. },
  29959. },
  29960. [
  29961. {
  29962. name: "Normal",
  29963. height: math.unit(2 + 3 / 12, "feet"),
  29964. default: true
  29965. },
  29966. ]
  29967. ))
  29968. characterMakers.push(() => makeCharacter(
  29969. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29970. {
  29971. front: {
  29972. height: math.unit(4, "meters"),
  29973. name: "Front",
  29974. image: {
  29975. source: "./media/characters/mid/front.svg",
  29976. extra: 507 / 476,
  29977. bottom: 17 / 524
  29978. }
  29979. },
  29980. back: {
  29981. height: math.unit(4, "meters"),
  29982. name: "Back",
  29983. image: {
  29984. source: "./media/characters/mid/back.svg",
  29985. extra: 519 / 487,
  29986. bottom: 7 / 526
  29987. }
  29988. },
  29989. stuck: {
  29990. height: math.unit(2.2, "meters"),
  29991. name: "Stuck",
  29992. image: {
  29993. source: "./media/characters/mid/stuck.svg",
  29994. extra: 1951 / 1869,
  29995. bottom: 88 / 2039
  29996. }
  29997. }
  29998. },
  29999. [
  30000. {
  30001. name: "Normal",
  30002. height: math.unit(4, "meters"),
  30003. default: true
  30004. },
  30005. {
  30006. name: "Big",
  30007. height: math.unit(10, "meters")
  30008. },
  30009. {
  30010. name: "Macro",
  30011. height: math.unit(800, "meters")
  30012. },
  30013. {
  30014. name: "Megamacro",
  30015. height: math.unit(100, "km")
  30016. },
  30017. {
  30018. name: "Overgrown",
  30019. height: math.unit(1, "parsec")
  30020. },
  30021. ]
  30022. ))
  30023. characterMakers.push(() => makeCharacter(
  30024. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30025. {
  30026. front: {
  30027. height: math.unit(2.5, "meters"),
  30028. weight: math.unit(225, "kg"),
  30029. name: "Front",
  30030. image: {
  30031. source: "./media/characters/iris/front.svg",
  30032. extra: 3348 / 3251,
  30033. bottom: 205 / 3553
  30034. }
  30035. },
  30036. maw: {
  30037. height: math.unit(0.56, "meter"),
  30038. name: "Maw",
  30039. image: {
  30040. source: "./media/characters/iris/maw.svg"
  30041. }
  30042. },
  30043. },
  30044. [
  30045. {
  30046. name: "Mewter cat",
  30047. height: math.unit(1.2, "meters")
  30048. },
  30049. {
  30050. name: "Minimacro",
  30051. height: math.unit(2.5, "meters"),
  30052. default: true
  30053. },
  30054. {
  30055. name: "Macro",
  30056. height: math.unit(180, "meters")
  30057. },
  30058. {
  30059. name: "Megamacro",
  30060. height: math.unit(2746, "meters")
  30061. },
  30062. ]
  30063. ))
  30064. characterMakers.push(() => makeCharacter(
  30065. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30066. {
  30067. front: {
  30068. height: math.unit(6, "feet"),
  30069. weight: math.unit(135, "lb"),
  30070. name: "Front",
  30071. image: {
  30072. source: "./media/characters/axel/front.svg",
  30073. extra: 908 / 908,
  30074. bottom: 58 / 966
  30075. }
  30076. },
  30077. side: {
  30078. height: math.unit(6, "feet"),
  30079. weight: math.unit(135, "lb"),
  30080. name: "Side",
  30081. image: {
  30082. source: "./media/characters/axel/side.svg",
  30083. extra: 958 / 958,
  30084. bottom: 11 / 969
  30085. }
  30086. },
  30087. back: {
  30088. height: math.unit(6, "feet"),
  30089. weight: math.unit(135, "lb"),
  30090. name: "Back",
  30091. image: {
  30092. source: "./media/characters/axel/back.svg",
  30093. extra: 887 / 887,
  30094. bottom: 34 / 921
  30095. }
  30096. },
  30097. head: {
  30098. height: math.unit(1.07, "feet"),
  30099. name: "Head",
  30100. image: {
  30101. source: "./media/characters/axel/head.svg"
  30102. }
  30103. },
  30104. beak: {
  30105. height: math.unit(1.4, "feet"),
  30106. name: "Beak",
  30107. image: {
  30108. source: "./media/characters/axel/beak.svg"
  30109. }
  30110. },
  30111. beakSide: {
  30112. height: math.unit(1.4, "feet"),
  30113. name: "Beak Side",
  30114. image: {
  30115. source: "./media/characters/axel/beak-side.svg"
  30116. }
  30117. },
  30118. sheath: {
  30119. height: math.unit(0.5, "feet"),
  30120. name: "Sheath",
  30121. image: {
  30122. source: "./media/characters/axel/sheath.svg"
  30123. }
  30124. },
  30125. dick: {
  30126. height: math.unit(0.98, "feet"),
  30127. name: "Dick",
  30128. image: {
  30129. source: "./media/characters/axel/dick.svg"
  30130. }
  30131. },
  30132. },
  30133. [
  30134. {
  30135. name: "Macro",
  30136. height: math.unit(68, "meters"),
  30137. default: true
  30138. },
  30139. ]
  30140. ))
  30141. characterMakers.push(() => makeCharacter(
  30142. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30143. {
  30144. front: {
  30145. height: math.unit(3.5, "meters"),
  30146. weight: math.unit(1200, "kg"),
  30147. name: "Front",
  30148. image: {
  30149. source: "./media/characters/joanna/front.svg",
  30150. extra: 1596 / 1488,
  30151. bottom: 29 / 1625
  30152. }
  30153. },
  30154. back: {
  30155. height: math.unit(3.5, "meters"),
  30156. weight: math.unit(1200, "kg"),
  30157. name: "Back",
  30158. image: {
  30159. source: "./media/characters/joanna/back.svg",
  30160. extra: 1594 / 1495,
  30161. bottom: 26 / 1620
  30162. }
  30163. },
  30164. frontShorts: {
  30165. height: math.unit(3.5, "meters"),
  30166. weight: math.unit(1200, "kg"),
  30167. name: "Front (Shorts)",
  30168. image: {
  30169. source: "./media/characters/joanna/front-shorts.svg",
  30170. extra: 1596 / 1488,
  30171. bottom: 29 / 1625
  30172. }
  30173. },
  30174. frontBiker: {
  30175. height: math.unit(3.5, "meters"),
  30176. weight: math.unit(1200, "kg"),
  30177. name: "Front (Biker)",
  30178. image: {
  30179. source: "./media/characters/joanna/front-biker.svg",
  30180. extra: 1596 / 1488,
  30181. bottom: 29 / 1625
  30182. }
  30183. },
  30184. backBiker: {
  30185. height: math.unit(3.5, "meters"),
  30186. weight: math.unit(1200, "kg"),
  30187. name: "Back (Biker)",
  30188. image: {
  30189. source: "./media/characters/joanna/back-biker.svg",
  30190. extra: 1594 / 1495,
  30191. bottom: 88 / 1682
  30192. }
  30193. },
  30194. bikeLeft: {
  30195. height: math.unit(2.4, "meters"),
  30196. weight: math.unit(1600, "kg"),
  30197. name: "Bike (Left)",
  30198. image: {
  30199. source: "./media/characters/joanna/bike-left.svg",
  30200. extra: 720 / 720,
  30201. bottom: 8 / 728
  30202. }
  30203. },
  30204. bikeRight: {
  30205. height: math.unit(2.4, "meters"),
  30206. weight: math.unit(1600, "kg"),
  30207. name: "Bike (Right)",
  30208. image: {
  30209. source: "./media/characters/joanna/bike-right.svg",
  30210. extra: 720 / 720,
  30211. bottom: 8 / 728
  30212. }
  30213. },
  30214. },
  30215. [
  30216. {
  30217. name: "Incognito",
  30218. height: math.unit(3.5, "meters")
  30219. },
  30220. {
  30221. name: "Casual Big",
  30222. height: math.unit(200, "meters")
  30223. },
  30224. {
  30225. name: "Macro",
  30226. height: math.unit(600, "meters")
  30227. },
  30228. {
  30229. name: "Original",
  30230. height: math.unit(20, "km"),
  30231. default: true
  30232. },
  30233. {
  30234. name: "Giga",
  30235. height: math.unit(400, "km")
  30236. },
  30237. {
  30238. name: "Lounging",
  30239. height: math.unit(1500, "km")
  30240. },
  30241. {
  30242. name: "Planetary",
  30243. height: math.unit(200000, "km")
  30244. },
  30245. ]
  30246. ))
  30247. characterMakers.push(() => makeCharacter(
  30248. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30249. {
  30250. front: {
  30251. height: math.unit(6, "feet"),
  30252. weight: math.unit(150, "lb"),
  30253. name: "Front",
  30254. image: {
  30255. source: "./media/characters/hugo-sigil/front.svg",
  30256. extra: 522 / 500,
  30257. bottom: 2 / 524
  30258. }
  30259. },
  30260. back: {
  30261. height: math.unit(6, "feet"),
  30262. weight: math.unit(150, "lb"),
  30263. name: "Back",
  30264. image: {
  30265. source: "./media/characters/hugo-sigil/back.svg",
  30266. extra: 519 / 495,
  30267. bottom: 5 / 524
  30268. }
  30269. },
  30270. maw: {
  30271. height: math.unit(1.4, "feet"),
  30272. weight: math.unit(150, "lb"),
  30273. name: "Maw",
  30274. image: {
  30275. source: "./media/characters/hugo-sigil/maw.svg"
  30276. }
  30277. },
  30278. feet: {
  30279. height: math.unit(1.56, "feet"),
  30280. weight: math.unit(150, "lb"),
  30281. name: "Feet",
  30282. image: {
  30283. source: "./media/characters/hugo-sigil/feet.svg",
  30284. extra: 177 / 177,
  30285. bottom: 12 / 189
  30286. }
  30287. },
  30288. },
  30289. [
  30290. {
  30291. name: "Normal",
  30292. height: math.unit(6, "feet")
  30293. },
  30294. {
  30295. name: "Macro",
  30296. height: math.unit(200, "feet"),
  30297. default: true
  30298. },
  30299. ]
  30300. ))
  30301. characterMakers.push(() => makeCharacter(
  30302. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30303. {
  30304. front: {
  30305. height: math.unit(6, "feet"),
  30306. weight: math.unit(150, "lb"),
  30307. name: "Front",
  30308. image: {
  30309. source: "./media/characters/peri/front.svg",
  30310. extra: 2354 / 2233,
  30311. bottom: 49 / 2403
  30312. }
  30313. },
  30314. },
  30315. [
  30316. {
  30317. name: "Really Small",
  30318. height: math.unit(1, "nm")
  30319. },
  30320. {
  30321. name: "Micro",
  30322. height: math.unit(4, "inches")
  30323. },
  30324. {
  30325. name: "Normal",
  30326. height: math.unit(7, "inches"),
  30327. default: true
  30328. },
  30329. {
  30330. name: "Macro",
  30331. height: math.unit(400, "feet")
  30332. },
  30333. {
  30334. name: "Megamacro",
  30335. height: math.unit(100, "miles")
  30336. },
  30337. ]
  30338. ))
  30339. characterMakers.push(() => makeCharacter(
  30340. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30341. {
  30342. frontSlim: {
  30343. height: math.unit(7, "feet"),
  30344. name: "Front (Slim)",
  30345. image: {
  30346. source: "./media/characters/issilora/front-slim.svg",
  30347. extra: 529 / 449,
  30348. bottom: 53 / 582
  30349. }
  30350. },
  30351. sideSlim: {
  30352. height: math.unit(7, "feet"),
  30353. name: "Side (Slim)",
  30354. image: {
  30355. source: "./media/characters/issilora/side-slim.svg",
  30356. extra: 570 / 480,
  30357. bottom: 30 / 600
  30358. }
  30359. },
  30360. backSlim: {
  30361. height: math.unit(7, "feet"),
  30362. name: "Back (Slim)",
  30363. image: {
  30364. source: "./media/characters/issilora/back-slim.svg",
  30365. extra: 537 / 455,
  30366. bottom: 46 / 583
  30367. }
  30368. },
  30369. frontBuff: {
  30370. height: math.unit(7, "feet"),
  30371. name: "Front (Buff)",
  30372. image: {
  30373. source: "./media/characters/issilora/front-buff.svg",
  30374. extra: 2310 / 2035,
  30375. bottom: 335 / 2645
  30376. }
  30377. },
  30378. head: {
  30379. height: math.unit(1.94, "feet"),
  30380. name: "Head",
  30381. image: {
  30382. source: "./media/characters/issilora/head.svg"
  30383. }
  30384. },
  30385. },
  30386. [
  30387. {
  30388. name: "Minimum",
  30389. height: math.unit(7, "feet")
  30390. },
  30391. {
  30392. name: "Comfortable",
  30393. height: math.unit(17, "feet")
  30394. },
  30395. {
  30396. name: "Fun Size",
  30397. height: math.unit(47, "feet")
  30398. },
  30399. {
  30400. name: "Natural Macro",
  30401. height: math.unit(137, "feet"),
  30402. default: true
  30403. },
  30404. {
  30405. name: "Maximum Kaiju",
  30406. height: math.unit(397, "feet")
  30407. },
  30408. ]
  30409. ))
  30410. characterMakers.push(() => makeCharacter(
  30411. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30412. {
  30413. front: {
  30414. height: math.unit(50 + 9/12, "feet"),
  30415. weight: math.unit(32.8, "tons"),
  30416. name: "Front",
  30417. image: {
  30418. source: "./media/characters/irb'iiritaahn/front.svg",
  30419. extra: 1878/1826,
  30420. bottom: 326/2204
  30421. }
  30422. },
  30423. back: {
  30424. height: math.unit(50 + 9/12, "feet"),
  30425. weight: math.unit(32.8, "tons"),
  30426. name: "Back",
  30427. image: {
  30428. source: "./media/characters/irb'iiritaahn/back.svg",
  30429. extra: 2052/2018,
  30430. bottom: 152/2204
  30431. }
  30432. },
  30433. head: {
  30434. height: math.unit(12.86, "feet"),
  30435. name: "Head",
  30436. image: {
  30437. source: "./media/characters/irb'iiritaahn/head.svg"
  30438. }
  30439. },
  30440. maw: {
  30441. height: math.unit(9.66, "feet"),
  30442. name: "Maw",
  30443. image: {
  30444. source: "./media/characters/irb'iiritaahn/maw.svg"
  30445. }
  30446. },
  30447. frontDick: {
  30448. height: math.unit(8.78461, "feet"),
  30449. name: "Front Dick",
  30450. image: {
  30451. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30452. }
  30453. },
  30454. rearDick: {
  30455. height: math.unit(8.78461, "feet"),
  30456. name: "Rear Dick",
  30457. image: {
  30458. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30459. }
  30460. },
  30461. rearDickUnfolded: {
  30462. height: math.unit(8.78, "feet"),
  30463. name: "Rear Dick (Unfolded)",
  30464. image: {
  30465. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30466. }
  30467. },
  30468. wings: {
  30469. height: math.unit(43, "feet"),
  30470. name: "Wings",
  30471. image: {
  30472. source: "./media/characters/irb'iiritaahn/wings.svg"
  30473. }
  30474. },
  30475. },
  30476. [
  30477. {
  30478. name: "Macro",
  30479. height: math.unit(50 + 9/12, "feet"),
  30480. default: true
  30481. },
  30482. ]
  30483. ))
  30484. characterMakers.push(() => makeCharacter(
  30485. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30486. {
  30487. front: {
  30488. height: math.unit(205, "cm"),
  30489. weight: math.unit(102, "kg"),
  30490. name: "Front",
  30491. image: {
  30492. source: "./media/characters/irbisgreif/front.svg",
  30493. extra: 785/706,
  30494. bottom: 13/798
  30495. }
  30496. },
  30497. back: {
  30498. height: math.unit(205, "cm"),
  30499. weight: math.unit(102, "kg"),
  30500. name: "Back",
  30501. image: {
  30502. source: "./media/characters/irbisgreif/back.svg",
  30503. extra: 713/701,
  30504. bottom: 26/739
  30505. }
  30506. },
  30507. frontDressed: {
  30508. height: math.unit(216, "cm"),
  30509. weight: math.unit(102, "kg"),
  30510. name: "Front-dressed",
  30511. image: {
  30512. source: "./media/characters/irbisgreif/front-dressed.svg",
  30513. extra: 902/776,
  30514. bottom: 14/916
  30515. }
  30516. },
  30517. sideDressed: {
  30518. height: math.unit(195, "cm"),
  30519. weight: math.unit(102, "kg"),
  30520. name: "Side-dressed",
  30521. image: {
  30522. source: "./media/characters/irbisgreif/side-dressed.svg",
  30523. extra: 788/688,
  30524. bottom: 21/809
  30525. }
  30526. },
  30527. backDressed: {
  30528. height: math.unit(216, "cm"),
  30529. weight: math.unit(102, "kg"),
  30530. name: "Back-dressed",
  30531. image: {
  30532. source: "./media/characters/irbisgreif/back-dressed.svg",
  30533. extra: 901/783,
  30534. bottom: 10/911
  30535. }
  30536. },
  30537. dick: {
  30538. height: math.unit(0.49, "feet"),
  30539. name: "Dick",
  30540. image: {
  30541. source: "./media/characters/irbisgreif/dick.svg"
  30542. }
  30543. },
  30544. wingTop: {
  30545. height: math.unit(1.93 , "feet"),
  30546. name: "Wing-top",
  30547. image: {
  30548. source: "./media/characters/irbisgreif/wing-top.svg"
  30549. }
  30550. },
  30551. wingBottom: {
  30552. height: math.unit(1.93 , "feet"),
  30553. name: "Wing-bottom",
  30554. image: {
  30555. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30556. }
  30557. },
  30558. },
  30559. [
  30560. {
  30561. name: "Normal",
  30562. height: math.unit(216, "cm"),
  30563. default: true
  30564. },
  30565. ]
  30566. ))
  30567. characterMakers.push(() => makeCharacter(
  30568. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30569. {
  30570. front: {
  30571. height: math.unit(6, "feet"),
  30572. weight: math.unit(150, "lb"),
  30573. name: "Front",
  30574. image: {
  30575. source: "./media/characters/pride/front.svg",
  30576. extra: 1299/1230,
  30577. bottom: 18/1317
  30578. }
  30579. },
  30580. },
  30581. [
  30582. {
  30583. name: "Normal",
  30584. height: math.unit(7, "feet")
  30585. },
  30586. {
  30587. name: "Mini-macro",
  30588. height: math.unit(11, "feet")
  30589. },
  30590. {
  30591. name: "Macro",
  30592. height: math.unit(15, "meters"),
  30593. default: true
  30594. },
  30595. {
  30596. name: "Macro+",
  30597. height: math.unit(40, "meters")
  30598. },
  30599. ]
  30600. ))
  30601. characterMakers.push(() => makeCharacter(
  30602. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30603. {
  30604. front: {
  30605. height: math.unit(4 + 2 / 12, "feet"),
  30606. weight: math.unit(95, "lb"),
  30607. name: "Front",
  30608. image: {
  30609. source: "./media/characters/vaelophis-nyx/front.svg",
  30610. extra: 2532/2330,
  30611. bottom: 0/2532
  30612. }
  30613. },
  30614. back: {
  30615. height: math.unit(4 + 2 / 12, "feet"),
  30616. weight: math.unit(95, "lb"),
  30617. name: "Back",
  30618. image: {
  30619. source: "./media/characters/vaelophis-nyx/back.svg",
  30620. extra: 2484/2361,
  30621. bottom: 0/2484
  30622. }
  30623. },
  30624. feralSide: {
  30625. height: math.unit(2 + 1/12, "feet"),
  30626. weight: math.unit(20, "lb"),
  30627. name: "Feral (Side)",
  30628. image: {
  30629. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30630. extra: 1721/1581,
  30631. bottom: 70/1791
  30632. }
  30633. },
  30634. feralLazing: {
  30635. height: math.unit(1.08, "feet"),
  30636. weight: math.unit(20, "lb"),
  30637. name: "Feral (Lazing)",
  30638. image: {
  30639. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30640. extra: 822/822,
  30641. bottom: 248/1070
  30642. }
  30643. },
  30644. ear: {
  30645. height: math.unit(0.416, "feet"),
  30646. name: "Ear",
  30647. image: {
  30648. source: "./media/characters/vaelophis-nyx/ear.svg"
  30649. }
  30650. },
  30651. eye: {
  30652. height: math.unit(0.0748, "feet"),
  30653. name: "Eye",
  30654. image: {
  30655. source: "./media/characters/vaelophis-nyx/eye.svg"
  30656. }
  30657. },
  30658. mouth: {
  30659. height: math.unit(0.378, "feet"),
  30660. name: "Mouth",
  30661. image: {
  30662. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30663. }
  30664. },
  30665. spade: {
  30666. height: math.unit(0.55, "feet"),
  30667. name: "Spade",
  30668. image: {
  30669. source: "./media/characters/vaelophis-nyx/spade.svg"
  30670. }
  30671. },
  30672. },
  30673. [
  30674. {
  30675. name: "Normal",
  30676. height: math.unit(4 + 2/12, "feet"),
  30677. default: true
  30678. },
  30679. ]
  30680. ))
  30681. characterMakers.push(() => makeCharacter(
  30682. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30683. {
  30684. front: {
  30685. height: math.unit(7, "feet"),
  30686. weight: math.unit(231, "lb"),
  30687. name: "Front",
  30688. image: {
  30689. source: "./media/characters/flux/front.svg",
  30690. extra: 919/871,
  30691. bottom: 0/919
  30692. }
  30693. },
  30694. back: {
  30695. height: math.unit(7, "feet"),
  30696. weight: math.unit(231, "lb"),
  30697. name: "Back",
  30698. image: {
  30699. source: "./media/characters/flux/back.svg",
  30700. extra: 1040/992,
  30701. bottom: 0/1040
  30702. }
  30703. },
  30704. frontDressed: {
  30705. height: math.unit(7, "feet"),
  30706. weight: math.unit(231, "lb"),
  30707. name: "Front (Dressed)",
  30708. image: {
  30709. source: "./media/characters/flux/front-dressed.svg",
  30710. extra: 919/871,
  30711. bottom: 0/919
  30712. }
  30713. },
  30714. feralSide: {
  30715. height: math.unit(5, "feet"),
  30716. weight: math.unit(150, "lb"),
  30717. name: "Feral (Side)",
  30718. image: {
  30719. source: "./media/characters/flux/feral-side.svg",
  30720. extra: 598/528,
  30721. bottom: 28/626
  30722. }
  30723. },
  30724. head: {
  30725. height: math.unit(1.585, "feet"),
  30726. name: "Head",
  30727. image: {
  30728. source: "./media/characters/flux/head.svg"
  30729. }
  30730. },
  30731. headSide: {
  30732. height: math.unit(1.74, "feet"),
  30733. name: "Head (Side)",
  30734. image: {
  30735. source: "./media/characters/flux/head-side.svg"
  30736. }
  30737. },
  30738. headSideFire: {
  30739. height: math.unit(1.76, "feet"),
  30740. name: "Head (Side, Fire)",
  30741. image: {
  30742. source: "./media/characters/flux/head-side-fire.svg"
  30743. }
  30744. },
  30745. },
  30746. [
  30747. {
  30748. name: "Normal",
  30749. height: math.unit(7, "feet"),
  30750. default: true
  30751. },
  30752. ]
  30753. ))
  30754. characterMakers.push(() => makeCharacter(
  30755. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30756. {
  30757. front: {
  30758. height: math.unit(9, "feet"),
  30759. weight: math.unit(1012, "lb"),
  30760. name: "Front",
  30761. image: {
  30762. source: "./media/characters/ulfra-lupae/front.svg",
  30763. extra: 1083/1011,
  30764. bottom: 67/1150
  30765. }
  30766. },
  30767. },
  30768. [
  30769. {
  30770. name: "Micro",
  30771. height: math.unit(6, "inches")
  30772. },
  30773. {
  30774. name: "Socializing",
  30775. height: math.unit(6 + 5/12, "feet")
  30776. },
  30777. {
  30778. name: "Normal",
  30779. height: math.unit(9, "feet"),
  30780. default: true
  30781. },
  30782. {
  30783. name: "Macro",
  30784. height: math.unit(150, "feet")
  30785. },
  30786. ]
  30787. ))
  30788. characterMakers.push(() => makeCharacter(
  30789. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30790. {
  30791. front: {
  30792. height: math.unit(5 + 2/12, "feet"),
  30793. weight: math.unit(120, "lb"),
  30794. name: "Front",
  30795. image: {
  30796. source: "./media/characters/timber/front.svg",
  30797. extra: 2814/2705,
  30798. bottom: 181/2995
  30799. }
  30800. },
  30801. },
  30802. [
  30803. {
  30804. name: "Normal",
  30805. height: math.unit(5 + 2/12, "feet"),
  30806. default: true
  30807. },
  30808. ]
  30809. ))
  30810. characterMakers.push(() => makeCharacter(
  30811. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30812. {
  30813. front: {
  30814. height: math.unit(5 + 7/12, "feet"),
  30815. weight: math.unit(220, "lb"),
  30816. name: "Front",
  30817. image: {
  30818. source: "./media/characters/nicki/front.svg",
  30819. extra: 453/419,
  30820. bottom: 7/460
  30821. }
  30822. },
  30823. frontAlt: {
  30824. height: math.unit(5 + 7/12, "feet"),
  30825. weight: math.unit(220, "lb"),
  30826. name: "Front-alt",
  30827. image: {
  30828. source: "./media/characters/nicki/front-alt.svg",
  30829. extra: 435/411,
  30830. bottom: 12/447
  30831. }
  30832. },
  30833. back: {
  30834. height: math.unit(5 + 7/12, "feet"),
  30835. weight: math.unit(220, "lb"),
  30836. name: "Back",
  30837. image: {
  30838. source: "./media/characters/nicki/back.svg",
  30839. extra: 440/413,
  30840. bottom: 19/459
  30841. }
  30842. },
  30843. taur: {
  30844. height: math.unit(7 + 6/12, "feet"),
  30845. weight: math.unit(700, "lb"),
  30846. name: "Taur",
  30847. image: {
  30848. source: "./media/characters/nicki/taur.svg",
  30849. extra: 975/773,
  30850. bottom: 0/975
  30851. }
  30852. },
  30853. frontNsfw: {
  30854. height: math.unit(5 + 7/12, "feet"),
  30855. weight: math.unit(220, "lb"),
  30856. name: "Front (NSFW)",
  30857. image: {
  30858. source: "./media/characters/nicki/front-nsfw.svg",
  30859. extra: 453/419,
  30860. bottom: 7/460
  30861. }
  30862. },
  30863. frontNsfwAlt: {
  30864. height: math.unit(5 + 7/12, "feet"),
  30865. weight: math.unit(220, "lb"),
  30866. name: "Front (Alt, NSFW)",
  30867. image: {
  30868. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30869. extra: 435/411,
  30870. bottom: 12/447
  30871. }
  30872. },
  30873. backNsfw: {
  30874. height: math.unit(5 + 7/12, "feet"),
  30875. weight: math.unit(220, "lb"),
  30876. name: "Back (NSFW)",
  30877. image: {
  30878. source: "./media/characters/nicki/back-nsfw.svg",
  30879. extra: 440/413,
  30880. bottom: 19/459
  30881. }
  30882. },
  30883. head: {
  30884. height: math.unit(2.1, "feet"),
  30885. name: "Head",
  30886. image: {
  30887. source: "./media/characters/nicki/head.svg"
  30888. }
  30889. },
  30890. paw: {
  30891. height: math.unit(1.88, "feet"),
  30892. name: "Paw",
  30893. image: {
  30894. source: "./media/characters/nicki/paw.svg"
  30895. }
  30896. },
  30897. },
  30898. [
  30899. {
  30900. name: "Normal",
  30901. height: math.unit(5 + 7/12, "feet"),
  30902. default: true
  30903. },
  30904. ]
  30905. ))
  30906. characterMakers.push(() => makeCharacter(
  30907. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30908. {
  30909. front: {
  30910. height: math.unit(7 + 10/12, "feet"),
  30911. weight: math.unit(3.5, "tons"),
  30912. name: "Front",
  30913. image: {
  30914. source: "./media/characters/lee/front.svg",
  30915. extra: 1773/1615,
  30916. bottom: 86/1859
  30917. }
  30918. },
  30919. hand: {
  30920. height: math.unit(1.78, "feet"),
  30921. name: "Hand",
  30922. image: {
  30923. source: "./media/characters/lee/hand.svg"
  30924. }
  30925. },
  30926. maw: {
  30927. height: math.unit(1.18, "feet"),
  30928. name: "Maw",
  30929. image: {
  30930. source: "./media/characters/lee/maw.svg"
  30931. }
  30932. },
  30933. },
  30934. [
  30935. {
  30936. name: "Normal",
  30937. height: math.unit(7 + 10/12, "feet"),
  30938. default: true
  30939. },
  30940. ]
  30941. ))
  30942. characterMakers.push(() => makeCharacter(
  30943. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30944. {
  30945. front: {
  30946. height: math.unit(9, "feet"),
  30947. name: "Front",
  30948. image: {
  30949. source: "./media/characters/guti/front.svg",
  30950. extra: 4551/4355,
  30951. bottom: 123/4674
  30952. }
  30953. },
  30954. tongue: {
  30955. height: math.unit(1, "feet"),
  30956. name: "Tongue",
  30957. image: {
  30958. source: "./media/characters/guti/tongue.svg"
  30959. }
  30960. },
  30961. paw: {
  30962. height: math.unit(1.18, "feet"),
  30963. name: "Paw",
  30964. image: {
  30965. source: "./media/characters/guti/paw.svg"
  30966. }
  30967. },
  30968. },
  30969. [
  30970. {
  30971. name: "Normal",
  30972. height: math.unit(9, "feet"),
  30973. default: true
  30974. },
  30975. ]
  30976. ))
  30977. characterMakers.push(() => makeCharacter(
  30978. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30979. {
  30980. side: {
  30981. height: math.unit(5, "meters"),
  30982. name: "Side",
  30983. image: {
  30984. source: "./media/characters/vesper/side.svg",
  30985. extra: 1605/1518,
  30986. bottom: 0/1605
  30987. }
  30988. },
  30989. },
  30990. [
  30991. {
  30992. name: "Small",
  30993. height: math.unit(5, "meters")
  30994. },
  30995. {
  30996. name: "Sage",
  30997. height: math.unit(100, "meters"),
  30998. default: true
  30999. },
  31000. {
  31001. name: "Fun Size",
  31002. height: math.unit(600, "meters")
  31003. },
  31004. {
  31005. name: "Goddess",
  31006. height: math.unit(20000, "km")
  31007. },
  31008. {
  31009. name: "Maximum",
  31010. height: math.unit(5, "galaxies")
  31011. },
  31012. ]
  31013. ))
  31014. characterMakers.push(() => makeCharacter(
  31015. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31016. {
  31017. front: {
  31018. height: math.unit(6 + 3/12, "feet"),
  31019. weight: math.unit(190, "lb"),
  31020. name: "Front",
  31021. image: {
  31022. source: "./media/characters/gawain/front.svg",
  31023. extra: 2222/2139,
  31024. bottom: 90/2312
  31025. }
  31026. },
  31027. back: {
  31028. height: math.unit(6 + 3/12, "feet"),
  31029. weight: math.unit(190, "lb"),
  31030. name: "Back",
  31031. image: {
  31032. source: "./media/characters/gawain/back.svg",
  31033. extra: 2199/2111,
  31034. bottom: 73/2272
  31035. }
  31036. },
  31037. },
  31038. [
  31039. {
  31040. name: "Normal",
  31041. height: math.unit(6 + 3/12, "feet"),
  31042. default: true
  31043. },
  31044. ]
  31045. ))
  31046. characterMakers.push(() => makeCharacter(
  31047. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31048. {
  31049. side: {
  31050. height: math.unit(3.5, "meters"),
  31051. weight: math.unit(16000, "lb"),
  31052. name: "Side",
  31053. image: {
  31054. source: "./media/characters/dascalti/side.svg",
  31055. extra: 392/273,
  31056. bottom: 47/439
  31057. }
  31058. },
  31059. breath: {
  31060. height: math.unit(7.4, "feet"),
  31061. name: "Breath",
  31062. image: {
  31063. source: "./media/characters/dascalti/breath.svg"
  31064. }
  31065. },
  31066. fed: {
  31067. height: math.unit(3.6, "meters"),
  31068. weight: math.unit(16000, "lb"),
  31069. name: "Fed",
  31070. image: {
  31071. source: "./media/characters/dascalti/fed.svg",
  31072. extra: 1419/820,
  31073. bottom: 95/1514
  31074. }
  31075. },
  31076. },
  31077. [
  31078. {
  31079. name: "Normal",
  31080. height: math.unit(3.5, "meters"),
  31081. default: true
  31082. },
  31083. ]
  31084. ))
  31085. characterMakers.push(() => makeCharacter(
  31086. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31087. {
  31088. front: {
  31089. height: math.unit(3 + 5/12, "feet"),
  31090. name: "Front",
  31091. image: {
  31092. source: "./media/characters/mauve/front.svg",
  31093. extra: 1126/1033,
  31094. bottom: 65/1191
  31095. }
  31096. },
  31097. side: {
  31098. height: math.unit(3 + 5/12, "feet"),
  31099. name: "Side",
  31100. image: {
  31101. source: "./media/characters/mauve/side.svg",
  31102. extra: 1089/1001,
  31103. bottom: 29/1118
  31104. }
  31105. },
  31106. back: {
  31107. height: math.unit(3 + 5/12, "feet"),
  31108. name: "Back",
  31109. image: {
  31110. source: "./media/characters/mauve/back.svg",
  31111. extra: 1173/1053,
  31112. bottom: 109/1282
  31113. }
  31114. },
  31115. },
  31116. [
  31117. {
  31118. name: "Normal",
  31119. height: math.unit(3 + 5/12, "feet"),
  31120. default: true
  31121. },
  31122. ]
  31123. ))
  31124. characterMakers.push(() => makeCharacter(
  31125. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31126. {
  31127. front: {
  31128. height: math.unit(6 + 3/12, "feet"),
  31129. weight: math.unit(430, "lb"),
  31130. name: "Front",
  31131. image: {
  31132. source: "./media/characters/carlos/front.svg",
  31133. extra: 1964/1913,
  31134. bottom: 70/2034
  31135. }
  31136. },
  31137. },
  31138. [
  31139. {
  31140. name: "Normal",
  31141. height: math.unit(6 + 3/12, "feet"),
  31142. default: true
  31143. },
  31144. ]
  31145. ))
  31146. characterMakers.push(() => makeCharacter(
  31147. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31148. {
  31149. back: {
  31150. height: math.unit(5 + 10/12, "feet"),
  31151. weight: math.unit(200, "lb"),
  31152. name: "Back",
  31153. image: {
  31154. source: "./media/characters/jax/back.svg",
  31155. extra: 764/739,
  31156. bottom: 25/789
  31157. }
  31158. },
  31159. },
  31160. [
  31161. {
  31162. name: "Normal",
  31163. height: math.unit(5 + 10/12, "feet"),
  31164. default: true
  31165. },
  31166. ]
  31167. ))
  31168. characterMakers.push(() => makeCharacter(
  31169. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31170. {
  31171. front: {
  31172. height: math.unit(8, "feet"),
  31173. weight: math.unit(250, "lb"),
  31174. name: "Front",
  31175. image: {
  31176. source: "./media/characters/eikthynir/front.svg",
  31177. extra: 1332/1166,
  31178. bottom: 82/1414
  31179. }
  31180. },
  31181. back: {
  31182. height: math.unit(8, "feet"),
  31183. weight: math.unit(250, "lb"),
  31184. name: "Back",
  31185. image: {
  31186. source: "./media/characters/eikthynir/back.svg",
  31187. extra: 1342/1190,
  31188. bottom: 19/1361
  31189. }
  31190. },
  31191. dick: {
  31192. height: math.unit(2.35, "feet"),
  31193. name: "Dick",
  31194. image: {
  31195. source: "./media/characters/eikthynir/dick.svg"
  31196. }
  31197. },
  31198. },
  31199. [
  31200. {
  31201. name: "Normal",
  31202. height: math.unit(8, "feet"),
  31203. default: true
  31204. },
  31205. ]
  31206. ))
  31207. characterMakers.push(() => makeCharacter(
  31208. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31209. {
  31210. front: {
  31211. height: math.unit(99, "meters"),
  31212. weight: math.unit(13000, "tons"),
  31213. name: "Front",
  31214. image: {
  31215. source: "./media/characters/zlmos/front.svg",
  31216. extra: 2202/1992,
  31217. bottom: 315/2517
  31218. }
  31219. },
  31220. },
  31221. [
  31222. {
  31223. name: "Macro",
  31224. height: math.unit(99, "meters"),
  31225. default: true
  31226. },
  31227. ]
  31228. ))
  31229. characterMakers.push(() => makeCharacter(
  31230. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31231. {
  31232. front: {
  31233. height: math.unit(6 + 5/12, "feet"),
  31234. name: "Front",
  31235. image: {
  31236. source: "./media/characters/purri/front.svg",
  31237. extra: 1698/1610,
  31238. bottom: 32/1730
  31239. }
  31240. },
  31241. frontAlt: {
  31242. height: math.unit(6 + 5/12, "feet"),
  31243. name: "Front (Alt)",
  31244. image: {
  31245. source: "./media/characters/purri/front-alt.svg",
  31246. extra: 450/420,
  31247. bottom: 26/476
  31248. }
  31249. },
  31250. boots: {
  31251. height: math.unit(5.5, "feet"),
  31252. name: "Boots",
  31253. image: {
  31254. source: "./media/characters/purri/boots.svg",
  31255. extra: 905/853,
  31256. bottom: 18/923
  31257. }
  31258. },
  31259. lying: {
  31260. height: math.unit(2, "feet"),
  31261. name: "Lying",
  31262. image: {
  31263. source: "./media/characters/purri/lying.svg",
  31264. extra: 940/843,
  31265. bottom: 146/1086
  31266. }
  31267. },
  31268. devious: {
  31269. height: math.unit(1.77, "feet"),
  31270. name: "Devious",
  31271. image: {
  31272. source: "./media/characters/purri/devious.svg",
  31273. extra: 1440/1155,
  31274. bottom: 147/1587
  31275. }
  31276. },
  31277. bean: {
  31278. height: math.unit(1.94, "feet"),
  31279. name: "Bean",
  31280. image: {
  31281. source: "./media/characters/purri/bean.svg"
  31282. }
  31283. },
  31284. },
  31285. [
  31286. {
  31287. name: "Micro",
  31288. height: math.unit(1, "mm")
  31289. },
  31290. {
  31291. name: "Normal",
  31292. height: math.unit(6 + 5/12, "feet"),
  31293. default: true
  31294. },
  31295. {
  31296. name: "Macro :3c",
  31297. height: math.unit(2, "miles")
  31298. },
  31299. ]
  31300. ))
  31301. characterMakers.push(() => makeCharacter(
  31302. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31303. {
  31304. front: {
  31305. height: math.unit(6 + 2/12, "feet"),
  31306. weight: math.unit(250, "lb"),
  31307. name: "Front",
  31308. image: {
  31309. source: "./media/characters/moonlight/front.svg",
  31310. extra: 1044/908,
  31311. bottom: 56/1100
  31312. }
  31313. },
  31314. feral: {
  31315. height: math.unit(3 + 1/12, "feet"),
  31316. weight: math.unit(50, "kg"),
  31317. name: "Feral",
  31318. image: {
  31319. source: "./media/characters/moonlight/feral.svg",
  31320. extra: 3705/2791,
  31321. bottom: 145/3850
  31322. }
  31323. },
  31324. paw: {
  31325. height: math.unit(1, "feet"),
  31326. name: "Paw",
  31327. image: {
  31328. source: "./media/characters/moonlight/paw.svg"
  31329. }
  31330. },
  31331. paws: {
  31332. height: math.unit(0.98, "feet"),
  31333. name: "Paws",
  31334. image: {
  31335. source: "./media/characters/moonlight/paws.svg",
  31336. extra: 939/939,
  31337. bottom: 50/989
  31338. }
  31339. },
  31340. mouth: {
  31341. height: math.unit(0.48, "feet"),
  31342. name: "Mouth",
  31343. image: {
  31344. source: "./media/characters/moonlight/mouth.svg"
  31345. }
  31346. },
  31347. dick: {
  31348. height: math.unit(1.46, "feet"),
  31349. name: "Dick",
  31350. image: {
  31351. source: "./media/characters/moonlight/dick.svg"
  31352. }
  31353. },
  31354. },
  31355. [
  31356. {
  31357. name: "Normal",
  31358. height: math.unit(6 + 2/12, "feet"),
  31359. default: true
  31360. },
  31361. {
  31362. name: "Macro",
  31363. height: math.unit(300, "feet")
  31364. },
  31365. {
  31366. name: "Macro+",
  31367. height: math.unit(1, "mile")
  31368. },
  31369. {
  31370. name: "Mt. Moon",
  31371. height: math.unit(5, "miles")
  31372. },
  31373. {
  31374. name: "Megamacro",
  31375. height: math.unit(15, "miles")
  31376. },
  31377. ]
  31378. ))
  31379. characterMakers.push(() => makeCharacter(
  31380. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31381. {
  31382. back: {
  31383. height: math.unit(6, "feet"),
  31384. weight: math.unit(150, "lb"),
  31385. name: "Back",
  31386. image: {
  31387. source: "./media/characters/sylen/back.svg",
  31388. extra: 1335/1273,
  31389. bottom: 107/1442
  31390. }
  31391. },
  31392. },
  31393. [
  31394. {
  31395. name: "Normal",
  31396. height: math.unit(5 + 5/12, "feet")
  31397. },
  31398. {
  31399. name: "Megamacro",
  31400. height: math.unit(3, "miles"),
  31401. default: true
  31402. },
  31403. ]
  31404. ))
  31405. characterMakers.push(() => makeCharacter(
  31406. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31407. {
  31408. front: {
  31409. height: math.unit(6, "feet"),
  31410. weight: math.unit(190, "lb"),
  31411. name: "Front",
  31412. image: {
  31413. source: "./media/characters/huttser/front.svg",
  31414. extra: 1152/1058,
  31415. bottom: 23/1175
  31416. }
  31417. },
  31418. side: {
  31419. height: math.unit(6, "feet"),
  31420. weight: math.unit(190, "lb"),
  31421. name: "Side",
  31422. image: {
  31423. source: "./media/characters/huttser/side.svg",
  31424. extra: 1174/1065,
  31425. bottom: 18/1192
  31426. }
  31427. },
  31428. back: {
  31429. height: math.unit(6, "feet"),
  31430. weight: math.unit(190, "lb"),
  31431. name: "Back",
  31432. image: {
  31433. source: "./media/characters/huttser/back.svg",
  31434. extra: 1158/1056,
  31435. bottom: 12/1170
  31436. }
  31437. },
  31438. },
  31439. [
  31440. ]
  31441. ))
  31442. characterMakers.push(() => makeCharacter(
  31443. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31444. {
  31445. side: {
  31446. height: math.unit(12 + 9/12, "feet"),
  31447. weight: math.unit(15000, "lb"),
  31448. name: "Side",
  31449. image: {
  31450. source: "./media/characters/faan/side.svg",
  31451. extra: 2747/2697,
  31452. bottom: 0/2747
  31453. }
  31454. },
  31455. front: {
  31456. height: math.unit(12 + 9/12, "feet"),
  31457. weight: math.unit(15000, "lb"),
  31458. name: "Front",
  31459. image: {
  31460. source: "./media/characters/faan/front.svg",
  31461. extra: 607/571,
  31462. bottom: 24/631
  31463. }
  31464. },
  31465. head: {
  31466. height: math.unit(2.85, "feet"),
  31467. name: "Head",
  31468. image: {
  31469. source: "./media/characters/faan/head.svg"
  31470. }
  31471. },
  31472. headAlt: {
  31473. height: math.unit(3.13, "feet"),
  31474. name: "Head-alt",
  31475. image: {
  31476. source: "./media/characters/faan/head-alt.svg"
  31477. }
  31478. },
  31479. },
  31480. [
  31481. {
  31482. name: "Normal",
  31483. height: math.unit(12 + 9/12, "feet"),
  31484. default: true
  31485. },
  31486. ]
  31487. ))
  31488. characterMakers.push(() => makeCharacter(
  31489. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31490. {
  31491. front: {
  31492. height: math.unit(6, "feet"),
  31493. weight: math.unit(300, "lb"),
  31494. name: "Front",
  31495. image: {
  31496. source: "./media/characters/tanio/front.svg",
  31497. extra: 711/673,
  31498. bottom: 25/736
  31499. }
  31500. },
  31501. },
  31502. [
  31503. {
  31504. name: "Normal",
  31505. height: math.unit(6, "feet"),
  31506. default: true
  31507. },
  31508. ]
  31509. ))
  31510. characterMakers.push(() => makeCharacter(
  31511. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31512. {
  31513. front: {
  31514. height: math.unit(3, "inches"),
  31515. name: "Front",
  31516. image: {
  31517. source: "./media/characters/noboru/front.svg",
  31518. extra: 1039/932,
  31519. bottom: 18/1057
  31520. }
  31521. },
  31522. },
  31523. [
  31524. {
  31525. name: "Micro",
  31526. height: math.unit(3, "inches"),
  31527. default: true
  31528. },
  31529. ]
  31530. ))
  31531. characterMakers.push(() => makeCharacter(
  31532. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31533. {
  31534. front: {
  31535. height: math.unit(1.85, "meters"),
  31536. weight: math.unit(80, "kg"),
  31537. name: "Front",
  31538. image: {
  31539. source: "./media/characters/daniel-barrett/front.svg",
  31540. extra: 355/337,
  31541. bottom: 9/364
  31542. }
  31543. },
  31544. },
  31545. [
  31546. {
  31547. name: "Pico",
  31548. height: math.unit(0.0433, "mm")
  31549. },
  31550. {
  31551. name: "Nano",
  31552. height: math.unit(1.5, "mm")
  31553. },
  31554. {
  31555. name: "Micro",
  31556. height: math.unit(5.3, "cm"),
  31557. default: true
  31558. },
  31559. {
  31560. name: "Normal",
  31561. height: math.unit(1.85, "meters")
  31562. },
  31563. {
  31564. name: "Macro",
  31565. height: math.unit(64.7, "meters")
  31566. },
  31567. {
  31568. name: "Megamacro",
  31569. height: math.unit(2.26, "km")
  31570. },
  31571. {
  31572. name: "Gigamacro",
  31573. height: math.unit(79, "km")
  31574. },
  31575. {
  31576. name: "Teramacro",
  31577. height: math.unit(2765, "km")
  31578. },
  31579. {
  31580. name: "Petamacro",
  31581. height: math.unit(96678, "km")
  31582. },
  31583. ]
  31584. ))
  31585. characterMakers.push(() => makeCharacter(
  31586. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31587. {
  31588. front: {
  31589. height: math.unit(30, "meters"),
  31590. weight: math.unit(400, "tons"),
  31591. name: "Front",
  31592. image: {
  31593. source: "./media/characters/zeel/front.svg",
  31594. extra: 2599/2599,
  31595. bottom: 226/2825
  31596. }
  31597. },
  31598. },
  31599. [
  31600. {
  31601. name: "Macro",
  31602. height: math.unit(30, "meters"),
  31603. default: true
  31604. },
  31605. ]
  31606. ))
  31607. characterMakers.push(() => makeCharacter(
  31608. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31609. {
  31610. front: {
  31611. height: math.unit(6 + 7/12, "feet"),
  31612. weight: math.unit(210, "lb"),
  31613. name: "Front",
  31614. image: {
  31615. source: "./media/characters/tarn/front.svg",
  31616. extra: 3517/3220,
  31617. bottom: 91/3608
  31618. }
  31619. },
  31620. back: {
  31621. height: math.unit(6 + 7/12, "feet"),
  31622. weight: math.unit(210, "lb"),
  31623. name: "Back",
  31624. image: {
  31625. source: "./media/characters/tarn/back.svg",
  31626. extra: 3566/3241,
  31627. bottom: 34/3600
  31628. }
  31629. },
  31630. dick: {
  31631. height: math.unit(1.65, "feet"),
  31632. name: "Dick",
  31633. image: {
  31634. source: "./media/characters/tarn/dick.svg"
  31635. }
  31636. },
  31637. paw: {
  31638. height: math.unit(1.80, "feet"),
  31639. name: "Paw",
  31640. image: {
  31641. source: "./media/characters/tarn/paw.svg"
  31642. }
  31643. },
  31644. tongue: {
  31645. height: math.unit(0.97, "feet"),
  31646. name: "Tongue",
  31647. image: {
  31648. source: "./media/characters/tarn/tongue.svg"
  31649. }
  31650. },
  31651. },
  31652. [
  31653. {
  31654. name: "Micro",
  31655. height: math.unit(4, "inches")
  31656. },
  31657. {
  31658. name: "Normal",
  31659. height: math.unit(6 + 7/12, "feet"),
  31660. default: true
  31661. },
  31662. {
  31663. name: "Macro",
  31664. height: math.unit(300, "feet")
  31665. },
  31666. ]
  31667. ))
  31668. characterMakers.push(() => makeCharacter(
  31669. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31670. {
  31671. front: {
  31672. height: math.unit(5 + 7/12, "feet"),
  31673. weight: math.unit(80, "kg"),
  31674. name: "Front",
  31675. image: {
  31676. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31677. extra: 3023/2865,
  31678. bottom: 33/3056
  31679. }
  31680. },
  31681. back: {
  31682. height: math.unit(5 + 7/12, "feet"),
  31683. weight: math.unit(80, "kg"),
  31684. name: "Back",
  31685. image: {
  31686. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31687. extra: 3020/2886,
  31688. bottom: 30/3050
  31689. }
  31690. },
  31691. dick: {
  31692. height: math.unit(0.98, "feet"),
  31693. name: "Dick",
  31694. image: {
  31695. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31696. }
  31697. },
  31698. anatomy: {
  31699. height: math.unit(2.86, "feet"),
  31700. name: "Anatomy",
  31701. image: {
  31702. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31703. }
  31704. },
  31705. },
  31706. [
  31707. {
  31708. name: "Really Small",
  31709. height: math.unit(2, "inches")
  31710. },
  31711. {
  31712. name: "Micro",
  31713. height: math.unit(5.583, "inches")
  31714. },
  31715. {
  31716. name: "Normal",
  31717. height: math.unit(5 + 7/12, "feet"),
  31718. default: true
  31719. },
  31720. {
  31721. name: "Macro",
  31722. height: math.unit(67, "feet")
  31723. },
  31724. {
  31725. name: "Megamacro",
  31726. height: math.unit(134, "feet")
  31727. },
  31728. ]
  31729. ))
  31730. characterMakers.push(() => makeCharacter(
  31731. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31732. {
  31733. front: {
  31734. height: math.unit(9, "feet"),
  31735. weight: math.unit(120, "lb"),
  31736. name: "Front",
  31737. image: {
  31738. source: "./media/characters/sally/front.svg",
  31739. extra: 1506/1349,
  31740. bottom: 66/1572
  31741. }
  31742. },
  31743. },
  31744. [
  31745. {
  31746. name: "Normal",
  31747. height: math.unit(9, "feet"),
  31748. default: true
  31749. },
  31750. ]
  31751. ))
  31752. characterMakers.push(() => makeCharacter(
  31753. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31754. {
  31755. front: {
  31756. height: math.unit(8, "feet"),
  31757. weight: math.unit(900, "lb"),
  31758. name: "Front",
  31759. image: {
  31760. source: "./media/characters/owen/front.svg",
  31761. extra: 1761/1657,
  31762. bottom: 74/1835
  31763. }
  31764. },
  31765. side: {
  31766. height: math.unit(8, "feet"),
  31767. weight: math.unit(900, "lb"),
  31768. name: "Side",
  31769. image: {
  31770. source: "./media/characters/owen/side.svg",
  31771. extra: 1797/1734,
  31772. bottom: 30/1827
  31773. }
  31774. },
  31775. back: {
  31776. height: math.unit(8, "feet"),
  31777. weight: math.unit(900, "lb"),
  31778. name: "Back",
  31779. image: {
  31780. source: "./media/characters/owen/back.svg",
  31781. extra: 1796/1706,
  31782. bottom: 59/1855
  31783. }
  31784. },
  31785. maw: {
  31786. height: math.unit(1.76, "feet"),
  31787. name: "Maw",
  31788. image: {
  31789. source: "./media/characters/owen/maw.svg"
  31790. }
  31791. },
  31792. },
  31793. [
  31794. {
  31795. name: "Normal",
  31796. height: math.unit(8, "feet"),
  31797. default: true
  31798. },
  31799. ]
  31800. ))
  31801. characterMakers.push(() => makeCharacter(
  31802. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31803. {
  31804. front: {
  31805. height: math.unit(4, "feet"),
  31806. weight: math.unit(400, "lb"),
  31807. name: "Front",
  31808. image: {
  31809. source: "./media/characters/ryth/front.svg",
  31810. extra: 1920/1748,
  31811. bottom: 42/1962
  31812. }
  31813. },
  31814. back: {
  31815. height: math.unit(4, "feet"),
  31816. weight: math.unit(400, "lb"),
  31817. name: "Back",
  31818. image: {
  31819. source: "./media/characters/ryth/back.svg",
  31820. extra: 1897/1690,
  31821. bottom: 89/1986
  31822. }
  31823. },
  31824. mouth: {
  31825. height: math.unit(1.39, "feet"),
  31826. name: "Mouth",
  31827. image: {
  31828. source: "./media/characters/ryth/mouth.svg"
  31829. }
  31830. },
  31831. tailmaw: {
  31832. height: math.unit(1.23, "feet"),
  31833. name: "Tailmaw",
  31834. image: {
  31835. source: "./media/characters/ryth/tailmaw.svg"
  31836. }
  31837. },
  31838. goia: {
  31839. height: math.unit(12, "feet"),
  31840. weight: math.unit(10800, "lb"),
  31841. name: "Goia",
  31842. image: {
  31843. source: "./media/characters/ryth/goia.svg",
  31844. extra: 3450/3198,
  31845. bottom: 61/3511
  31846. }
  31847. },
  31848. },
  31849. [
  31850. {
  31851. name: "Normal",
  31852. height: math.unit(4, "feet"),
  31853. default: true
  31854. },
  31855. ]
  31856. ))
  31857. characterMakers.push(() => makeCharacter(
  31858. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31859. {
  31860. front: {
  31861. height: math.unit(7, "feet"),
  31862. weight: math.unit(180, "lb"),
  31863. name: "Front",
  31864. image: {
  31865. source: "./media/characters/necrolance/front.svg",
  31866. extra: 1062/947,
  31867. bottom: 41/1103
  31868. }
  31869. },
  31870. back: {
  31871. height: math.unit(7, "feet"),
  31872. weight: math.unit(180, "lb"),
  31873. name: "Back",
  31874. image: {
  31875. source: "./media/characters/necrolance/back.svg",
  31876. extra: 1045/984,
  31877. bottom: 14/1059
  31878. }
  31879. },
  31880. wing: {
  31881. height: math.unit(2.67, "feet"),
  31882. name: "Wing",
  31883. image: {
  31884. source: "./media/characters/necrolance/wing.svg"
  31885. }
  31886. },
  31887. },
  31888. [
  31889. {
  31890. name: "Normal",
  31891. height: math.unit(7, "feet"),
  31892. default: true
  31893. },
  31894. ]
  31895. ))
  31896. characterMakers.push(() => makeCharacter(
  31897. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31898. {
  31899. front: {
  31900. height: math.unit(76, "meters"),
  31901. weight: math.unit(30000, "tons"),
  31902. name: "Front",
  31903. image: {
  31904. source: "./media/characters/tyler/front.svg",
  31905. extra: 1640/1640,
  31906. bottom: 114/1754
  31907. }
  31908. },
  31909. },
  31910. [
  31911. {
  31912. name: "Macro",
  31913. height: math.unit(76, "meters"),
  31914. default: true
  31915. },
  31916. ]
  31917. ))
  31918. characterMakers.push(() => makeCharacter(
  31919. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31920. {
  31921. front: {
  31922. height: math.unit(4 + 11/12, "feet"),
  31923. weight: math.unit(132, "lb"),
  31924. name: "Front",
  31925. image: {
  31926. source: "./media/characters/icey/front.svg",
  31927. extra: 2750/2550,
  31928. bottom: 33/2783
  31929. }
  31930. },
  31931. back: {
  31932. height: math.unit(4 + 11/12, "feet"),
  31933. weight: math.unit(132, "lb"),
  31934. name: "Back",
  31935. image: {
  31936. source: "./media/characters/icey/back.svg",
  31937. extra: 2624/2481,
  31938. bottom: 35/2659
  31939. }
  31940. },
  31941. },
  31942. [
  31943. {
  31944. name: "Normal",
  31945. height: math.unit(4 + 11/12, "feet"),
  31946. default: true
  31947. },
  31948. ]
  31949. ))
  31950. characterMakers.push(() => makeCharacter(
  31951. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31952. {
  31953. front: {
  31954. height: math.unit(100, "feet"),
  31955. weight: math.unit(0, "lb"),
  31956. name: "Front",
  31957. image: {
  31958. source: "./media/characters/smile/front.svg",
  31959. extra: 2983/2912,
  31960. bottom: 162/3145
  31961. }
  31962. },
  31963. back: {
  31964. height: math.unit(100, "feet"),
  31965. weight: math.unit(0, "lb"),
  31966. name: "Back",
  31967. image: {
  31968. source: "./media/characters/smile/back.svg",
  31969. extra: 3143/3031,
  31970. bottom: 91/3234
  31971. }
  31972. },
  31973. head: {
  31974. height: math.unit(26.3, "feet"),
  31975. weight: math.unit(0, "lb"),
  31976. name: "Head",
  31977. image: {
  31978. source: "./media/characters/smile/head.svg"
  31979. }
  31980. },
  31981. collar: {
  31982. height: math.unit(5.3, "feet"),
  31983. weight: math.unit(0, "lb"),
  31984. name: "Collar",
  31985. image: {
  31986. source: "./media/characters/smile/collar.svg"
  31987. }
  31988. },
  31989. },
  31990. [
  31991. {
  31992. name: "Macro",
  31993. height: math.unit(100, "feet"),
  31994. default: true
  31995. },
  31996. ]
  31997. ))
  31998. characterMakers.push(() => makeCharacter(
  31999. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32000. {
  32001. dragon: {
  32002. height: math.unit(26, "feet"),
  32003. weight: math.unit(36, "tons"),
  32004. name: "Dragon",
  32005. image: {
  32006. source: "./media/characters/arimphae/dragon.svg",
  32007. extra: 1574/983,
  32008. bottom: 357/1931
  32009. }
  32010. },
  32011. drake: {
  32012. height: math.unit(9, "feet"),
  32013. weight: math.unit(1.5, "tons"),
  32014. name: "Drake",
  32015. image: {
  32016. source: "./media/characters/arimphae/drake.svg",
  32017. extra: 1120/925,
  32018. bottom: 435/1555
  32019. }
  32020. },
  32021. },
  32022. [
  32023. {
  32024. name: "Small",
  32025. height: math.unit(26*5/9, "feet")
  32026. },
  32027. {
  32028. name: "Normal",
  32029. height: math.unit(26, "feet"),
  32030. default: true
  32031. },
  32032. ]
  32033. ))
  32034. characterMakers.push(() => makeCharacter(
  32035. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32036. {
  32037. front: {
  32038. height: math.unit(8 + 9/12, "feet"),
  32039. name: "Front",
  32040. image: {
  32041. source: "./media/characters/xander/front.svg",
  32042. extra: 848/673,
  32043. bottom: 62/910
  32044. }
  32045. },
  32046. },
  32047. [
  32048. {
  32049. name: "Normal",
  32050. height: math.unit(8 + 9/12, "feet"),
  32051. default: true
  32052. },
  32053. {
  32054. name: "Gaze Grabber",
  32055. height: math.unit(13 + 8/12, "feet")
  32056. },
  32057. {
  32058. name: "Jaw Dropper",
  32059. height: math.unit(27, "feet")
  32060. },
  32061. {
  32062. name: "Show Stopper",
  32063. height: math.unit(136, "feet")
  32064. },
  32065. {
  32066. name: "Superstar",
  32067. height: math.unit(1.9e6, "miles")
  32068. },
  32069. ]
  32070. ))
  32071. characterMakers.push(() => makeCharacter(
  32072. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32073. {
  32074. side: {
  32075. height: math.unit(2100, "feet"),
  32076. name: "Side",
  32077. image: {
  32078. source: "./media/characters/osiris/side.svg",
  32079. extra: 1105/939,
  32080. bottom: 167/1272
  32081. }
  32082. },
  32083. },
  32084. [
  32085. {
  32086. name: "Macro",
  32087. height: math.unit(2100, "feet"),
  32088. default: true
  32089. },
  32090. ]
  32091. ))
  32092. characterMakers.push(() => makeCharacter(
  32093. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32094. {
  32095. front: {
  32096. height: math.unit(6 + 8/12, "feet"),
  32097. weight: math.unit(225, "lb"),
  32098. name: "Front",
  32099. image: {
  32100. source: "./media/characters/rhys-londe/front.svg",
  32101. extra: 2258/2141,
  32102. bottom: 188/2446
  32103. }
  32104. },
  32105. back: {
  32106. height: math.unit(6 + 8/12, "feet"),
  32107. weight: math.unit(225, "lb"),
  32108. name: "Back",
  32109. image: {
  32110. source: "./media/characters/rhys-londe/back.svg",
  32111. extra: 2237/2137,
  32112. bottom: 63/2300
  32113. }
  32114. },
  32115. frontNsfw: {
  32116. height: math.unit(6 + 8/12, "feet"),
  32117. weight: math.unit(225, "lb"),
  32118. name: "Front (NSFW)",
  32119. image: {
  32120. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32121. extra: 2258/2141,
  32122. bottom: 188/2446
  32123. }
  32124. },
  32125. backNsfw: {
  32126. height: math.unit(6 + 8/12, "feet"),
  32127. weight: math.unit(225, "lb"),
  32128. name: "Back (NSFW)",
  32129. image: {
  32130. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32131. extra: 2237/2137,
  32132. bottom: 63/2300
  32133. }
  32134. },
  32135. dick: {
  32136. height: math.unit(30, "inches"),
  32137. name: "Dick",
  32138. image: {
  32139. source: "./media/characters/rhys-londe/dick.svg"
  32140. }
  32141. },
  32142. maw: {
  32143. height: math.unit(1.6, "feet"),
  32144. name: "Maw",
  32145. image: {
  32146. source: "./media/characters/rhys-londe/maw.svg"
  32147. }
  32148. },
  32149. },
  32150. [
  32151. {
  32152. name: "Normal",
  32153. height: math.unit(6 + 8/12, "feet"),
  32154. default: true
  32155. },
  32156. ]
  32157. ))
  32158. characterMakers.push(() => makeCharacter(
  32159. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32160. {
  32161. front: {
  32162. height: math.unit(3 + 10/12, "feet"),
  32163. weight: math.unit(90, "lb"),
  32164. name: "Front",
  32165. image: {
  32166. source: "./media/characters/taivas-ensim/front.svg",
  32167. extra: 1327/1216,
  32168. bottom: 96/1423
  32169. }
  32170. },
  32171. back: {
  32172. height: math.unit(3 + 10/12, "feet"),
  32173. weight: math.unit(90, "lb"),
  32174. name: "Back",
  32175. image: {
  32176. source: "./media/characters/taivas-ensim/back.svg",
  32177. extra: 1355/1247,
  32178. bottom: 11/1366
  32179. }
  32180. },
  32181. frontNsfw: {
  32182. height: math.unit(3 + 10/12, "feet"),
  32183. weight: math.unit(90, "lb"),
  32184. name: "Front (NSFW)",
  32185. image: {
  32186. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32187. extra: 1327/1216,
  32188. bottom: 96/1423
  32189. }
  32190. },
  32191. backNsfw: {
  32192. height: math.unit(3 + 10/12, "feet"),
  32193. weight: math.unit(90, "lb"),
  32194. name: "Back (NSFW)",
  32195. image: {
  32196. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32197. extra: 1355/1247,
  32198. bottom: 11/1366
  32199. }
  32200. },
  32201. },
  32202. [
  32203. {
  32204. name: "Normal",
  32205. height: math.unit(3 + 10/12, "feet"),
  32206. default: true
  32207. },
  32208. ]
  32209. ))
  32210. characterMakers.push(() => makeCharacter(
  32211. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32212. {
  32213. front: {
  32214. height: math.unit(9 + 6/12, "feet"),
  32215. weight: math.unit(940, "lb"),
  32216. name: "Front",
  32217. image: {
  32218. source: "./media/characters/byliss/front.svg",
  32219. extra: 1327/1290,
  32220. bottom: 82/1409
  32221. }
  32222. },
  32223. back: {
  32224. height: math.unit(9 + 6/12, "feet"),
  32225. weight: math.unit(940, "lb"),
  32226. name: "Back",
  32227. image: {
  32228. source: "./media/characters/byliss/back.svg",
  32229. extra: 1376/1349,
  32230. bottom: 9/1385
  32231. }
  32232. },
  32233. frontNsfw: {
  32234. height: math.unit(9 + 6/12, "feet"),
  32235. weight: math.unit(940, "lb"),
  32236. name: "Front (NSFW)",
  32237. image: {
  32238. source: "./media/characters/byliss/front-nsfw.svg",
  32239. extra: 1327/1290,
  32240. bottom: 82/1409
  32241. }
  32242. },
  32243. backNsfw: {
  32244. height: math.unit(9 + 6/12, "feet"),
  32245. weight: math.unit(940, "lb"),
  32246. name: "Back (NSFW)",
  32247. image: {
  32248. source: "./media/characters/byliss/back-nsfw.svg",
  32249. extra: 1376/1349,
  32250. bottom: 9/1385
  32251. }
  32252. },
  32253. },
  32254. [
  32255. {
  32256. name: "Normal",
  32257. height: math.unit(9 + 6/12, "feet"),
  32258. default: true
  32259. },
  32260. ]
  32261. ))
  32262. characterMakers.push(() => makeCharacter(
  32263. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32264. {
  32265. front: {
  32266. height: math.unit(5 + 2/12, "feet"),
  32267. weight: math.unit(200, "lb"),
  32268. name: "Front",
  32269. image: {
  32270. source: "./media/characters/noraly/front.svg",
  32271. extra: 4985/4773,
  32272. bottom: 150/5135
  32273. }
  32274. },
  32275. full: {
  32276. height: math.unit(5 + 2/12, "feet"),
  32277. weight: math.unit(164, "lb"),
  32278. name: "Full",
  32279. image: {
  32280. source: "./media/characters/noraly/full.svg",
  32281. extra: 1114/1059,
  32282. bottom: 35/1149
  32283. }
  32284. },
  32285. fuller: {
  32286. height: math.unit(5 + 2/12, "feet"),
  32287. weight: math.unit(230, "lb"),
  32288. name: "Fuller",
  32289. image: {
  32290. source: "./media/characters/noraly/fuller.svg",
  32291. extra: 1114/1059,
  32292. bottom: 35/1149
  32293. }
  32294. },
  32295. fullest: {
  32296. height: math.unit(5 + 2/12, "feet"),
  32297. weight: math.unit(300, "lb"),
  32298. name: "Fullest",
  32299. image: {
  32300. source: "./media/characters/noraly/fullest.svg",
  32301. extra: 1114/1059,
  32302. bottom: 35/1149
  32303. }
  32304. },
  32305. },
  32306. [
  32307. {
  32308. name: "Normal",
  32309. height: math.unit(5 + 2/12, "feet"),
  32310. default: true
  32311. },
  32312. ]
  32313. ))
  32314. characterMakers.push(() => makeCharacter(
  32315. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32316. {
  32317. front: {
  32318. height: math.unit(5 + 2/12, "feet"),
  32319. weight: math.unit(210, "lb"),
  32320. name: "Front",
  32321. image: {
  32322. source: "./media/characters/pera/front.svg",
  32323. extra: 1560/1531,
  32324. bottom: 165/1725
  32325. }
  32326. },
  32327. back: {
  32328. height: math.unit(5 + 2/12, "feet"),
  32329. weight: math.unit(210, "lb"),
  32330. name: "Back",
  32331. image: {
  32332. source: "./media/characters/pera/back.svg",
  32333. extra: 1523/1493,
  32334. bottom: 152/1675
  32335. }
  32336. },
  32337. dick: {
  32338. height: math.unit(2.4, "feet"),
  32339. name: "Dick",
  32340. image: {
  32341. source: "./media/characters/pera/dick.svg"
  32342. }
  32343. },
  32344. },
  32345. [
  32346. {
  32347. name: "Normal",
  32348. height: math.unit(5 + 2/12, "feet"),
  32349. default: true
  32350. },
  32351. ]
  32352. ))
  32353. characterMakers.push(() => makeCharacter(
  32354. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32355. {
  32356. front: {
  32357. height: math.unit(12, "feet"),
  32358. weight: math.unit(3200, "lb"),
  32359. name: "Front",
  32360. image: {
  32361. source: "./media/characters/julian/front.svg",
  32362. extra: 2962/2701,
  32363. bottom: 184/3146
  32364. }
  32365. },
  32366. maw: {
  32367. height: math.unit(5.35, "feet"),
  32368. name: "Maw",
  32369. image: {
  32370. source: "./media/characters/julian/maw.svg"
  32371. }
  32372. },
  32373. paw: {
  32374. height: math.unit(3.07, "feet"),
  32375. name: "Paw",
  32376. image: {
  32377. source: "./media/characters/julian/paw.svg"
  32378. }
  32379. },
  32380. },
  32381. [
  32382. {
  32383. name: "Default",
  32384. height: math.unit(12, "feet"),
  32385. default: true
  32386. },
  32387. {
  32388. name: "Big",
  32389. height: math.unit(50, "feet")
  32390. },
  32391. {
  32392. name: "Really Big",
  32393. height: math.unit(1, "mile")
  32394. },
  32395. {
  32396. name: "Extremely Big",
  32397. height: math.unit(100, "miles")
  32398. },
  32399. {
  32400. name: "Planet Hugger",
  32401. height: math.unit(200, "megameters")
  32402. },
  32403. {
  32404. name: "Unreasonably Big",
  32405. height: math.unit(1e300, "meters")
  32406. },
  32407. ]
  32408. ))
  32409. characterMakers.push(() => makeCharacter(
  32410. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32411. {
  32412. solgooleo: {
  32413. height: math.unit(4, "meters"),
  32414. weight: math.unit(6000*1.5, "kg"),
  32415. volume: math.unit(6000, "liters"),
  32416. name: "Solgooleo",
  32417. image: {
  32418. source: "./media/characters/pi/solgooleo.svg",
  32419. extra: 388/331,
  32420. bottom: 29/417
  32421. }
  32422. },
  32423. },
  32424. [
  32425. {
  32426. name: "Normal",
  32427. height: math.unit(4, "meters"),
  32428. default: true
  32429. },
  32430. ]
  32431. ))
  32432. characterMakers.push(() => makeCharacter(
  32433. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32434. {
  32435. front: {
  32436. height: math.unit(8 + 2/12, "feet"),
  32437. weight: math.unit(4, "tons"),
  32438. name: "Front",
  32439. image: {
  32440. source: "./media/characters/shaun/front.svg",
  32441. extra: 1550/1505,
  32442. bottom: 353/1903
  32443. }
  32444. },
  32445. },
  32446. [
  32447. {
  32448. name: "Lorg",
  32449. height: math.unit(8 + 2/12, "feet"),
  32450. default: true
  32451. },
  32452. ]
  32453. ))
  32454. characterMakers.push(() => makeCharacter(
  32455. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32456. {
  32457. front: {
  32458. height: math.unit(7, "feet"),
  32459. name: "Front",
  32460. image: {
  32461. source: "./media/characters/sini/front.svg",
  32462. extra: 726/678,
  32463. bottom: 35/761
  32464. }
  32465. },
  32466. back: {
  32467. height: math.unit(7, "feet"),
  32468. name: "Back",
  32469. image: {
  32470. source: "./media/characters/sini/back.svg",
  32471. extra: 743/701,
  32472. bottom: 12/755
  32473. }
  32474. },
  32475. mawAnthro: {
  32476. height: math.unit(2.14, "feet"),
  32477. name: "Maw (Anthro)",
  32478. image: {
  32479. source: "./media/characters/sini/maw-anthro.svg"
  32480. }
  32481. },
  32482. dick: {
  32483. height: math.unit(1.45, "feet"),
  32484. name: "Dick (Anthro)",
  32485. image: {
  32486. source: "./media/characters/sini/dick-anthro.svg"
  32487. }
  32488. },
  32489. feral: {
  32490. height: math.unit(16, "feet"),
  32491. name: "Feral",
  32492. image: {
  32493. source: "./media/characters/sini/feral.svg",
  32494. extra: 814/605,
  32495. bottom: 11/825
  32496. }
  32497. },
  32498. mawFeral: {
  32499. height: math.unit(5.66, "feet"),
  32500. name: "Maw-feral",
  32501. image: {
  32502. source: "./media/characters/sini/maw-feral.svg"
  32503. }
  32504. },
  32505. footFeral: {
  32506. height: math.unit(5.17, "feet"),
  32507. name: "Foot-feral",
  32508. image: {
  32509. source: "./media/characters/sini/foot-feral.svg"
  32510. }
  32511. },
  32512. },
  32513. [
  32514. {
  32515. name: "Normal",
  32516. height: math.unit(7, "feet"),
  32517. default: true
  32518. },
  32519. ]
  32520. ))
  32521. characterMakers.push(() => makeCharacter(
  32522. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32523. {
  32524. side: {
  32525. height: math.unit(13, "meters"),
  32526. weight: math.unit(9072, "kg"),
  32527. name: "Side",
  32528. image: {
  32529. source: "./media/characters/raylldo/side.svg",
  32530. extra: 403/344,
  32531. bottom: 42/445
  32532. }
  32533. },
  32534. leaping: {
  32535. height: math.unit(12.3, "meters"),
  32536. weight: math.unit(9072, "kg"),
  32537. name: "Leaping",
  32538. image: {
  32539. source: "./media/characters/raylldo/leaping.svg",
  32540. extra: 470/249,
  32541. bottom: 13/483
  32542. }
  32543. },
  32544. flying: {
  32545. height: math.unit(18, "meters"),
  32546. weight: math.unit(9072, "kg"),
  32547. name: "Flying",
  32548. image: {
  32549. source: "./media/characters/raylldo/flying.svg"
  32550. }
  32551. },
  32552. head: {
  32553. height: math.unit(5.85, "meters"),
  32554. name: "Head",
  32555. image: {
  32556. source: "./media/characters/raylldo/head.svg"
  32557. }
  32558. },
  32559. maw: {
  32560. height: math.unit(5.32, "meters"),
  32561. name: "Maw",
  32562. image: {
  32563. source: "./media/characters/raylldo/maw.svg"
  32564. }
  32565. },
  32566. eye: {
  32567. height: math.unit(0.54, "meters"),
  32568. name: "Eye",
  32569. image: {
  32570. source: "./media/characters/raylldo/eye.svg"
  32571. }
  32572. },
  32573. },
  32574. [
  32575. {
  32576. name: "Normal",
  32577. height: math.unit(13, "meters"),
  32578. default: true
  32579. },
  32580. ]
  32581. ))
  32582. characterMakers.push(() => makeCharacter(
  32583. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32584. {
  32585. anthroFront: {
  32586. height: math.unit(9, "feet"),
  32587. weight: math.unit(600, "lb"),
  32588. name: "Anthro (Front)",
  32589. image: {
  32590. source: "./media/characters/glint/anthro-front.svg",
  32591. extra: 1097/1018,
  32592. bottom: 28/1125
  32593. }
  32594. },
  32595. anthroBack: {
  32596. height: math.unit(9, "feet"),
  32597. weight: math.unit(600, "lb"),
  32598. name: "Anthro (Back)",
  32599. image: {
  32600. source: "./media/characters/glint/anthro-back.svg",
  32601. extra: 1154/997,
  32602. bottom: 36/1190
  32603. }
  32604. },
  32605. feral: {
  32606. height: math.unit(11, "feet"),
  32607. weight: math.unit(50000, "lb"),
  32608. name: "Feral",
  32609. image: {
  32610. source: "./media/characters/glint/feral.svg",
  32611. extra: 3035/1585,
  32612. bottom: 1169/4204
  32613. }
  32614. },
  32615. dickAnthro: {
  32616. height: math.unit(0.7, "meters"),
  32617. name: "Dick (Anthro)",
  32618. image: {
  32619. source: "./media/characters/glint/dick-anthro.svg"
  32620. }
  32621. },
  32622. dickFeral: {
  32623. height: math.unit(2.65, "meters"),
  32624. name: "Dick (Feral)",
  32625. image: {
  32626. source: "./media/characters/glint/dick-feral.svg"
  32627. }
  32628. },
  32629. slitHidden: {
  32630. height: math.unit(5.85, "meters"),
  32631. name: "Slit (Hidden)",
  32632. image: {
  32633. source: "./media/characters/glint/slit-hidden.svg"
  32634. }
  32635. },
  32636. slitErect: {
  32637. height: math.unit(5.85, "meters"),
  32638. name: "Slit (Erect)",
  32639. image: {
  32640. source: "./media/characters/glint/slit-erect.svg"
  32641. }
  32642. },
  32643. mawAnthro: {
  32644. height: math.unit(0.63, "meters"),
  32645. name: "Maw (Anthro)",
  32646. image: {
  32647. source: "./media/characters/glint/maw.svg"
  32648. }
  32649. },
  32650. mawFeral: {
  32651. height: math.unit(2.89, "meters"),
  32652. name: "Maw (Feral)",
  32653. image: {
  32654. source: "./media/characters/glint/maw.svg"
  32655. }
  32656. },
  32657. },
  32658. [
  32659. {
  32660. name: "Normal",
  32661. height: math.unit(9, "feet"),
  32662. default: true
  32663. },
  32664. ]
  32665. ))
  32666. characterMakers.push(() => makeCharacter(
  32667. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32668. {
  32669. side: {
  32670. height: math.unit(15, "feet"),
  32671. weight: math.unit(5000, "kg"),
  32672. name: "Side",
  32673. image: {
  32674. source: "./media/characters/kairne/side.svg",
  32675. extra: 979/811,
  32676. bottom: 13/992
  32677. }
  32678. },
  32679. front: {
  32680. height: math.unit(15, "feet"),
  32681. weight: math.unit(5000, "kg"),
  32682. name: "Front",
  32683. image: {
  32684. source: "./media/characters/kairne/front.svg",
  32685. extra: 908/814,
  32686. bottom: 26/934
  32687. }
  32688. },
  32689. sideNsfw: {
  32690. height: math.unit(15, "feet"),
  32691. weight: math.unit(5000, "kg"),
  32692. name: "Side (NSFW)",
  32693. image: {
  32694. source: "./media/characters/kairne/side-nsfw.svg",
  32695. extra: 979/811,
  32696. bottom: 13/992
  32697. }
  32698. },
  32699. frontNsfw: {
  32700. height: math.unit(15, "feet"),
  32701. weight: math.unit(5000, "kg"),
  32702. name: "Front (NSFW)",
  32703. image: {
  32704. source: "./media/characters/kairne/front-nsfw.svg",
  32705. extra: 908/814,
  32706. bottom: 26/934
  32707. }
  32708. },
  32709. dickCaged: {
  32710. height: math.unit(0.65, "meters"),
  32711. name: "Dick-caged",
  32712. image: {
  32713. source: "./media/characters/kairne/dick-caged.svg"
  32714. }
  32715. },
  32716. dick: {
  32717. height: math.unit(0.79, "meters"),
  32718. name: "Dick",
  32719. image: {
  32720. source: "./media/characters/kairne/dick.svg"
  32721. }
  32722. },
  32723. genitals: {
  32724. height: math.unit(1.29, "meters"),
  32725. name: "Genitals",
  32726. image: {
  32727. source: "./media/characters/kairne/genitals.svg"
  32728. }
  32729. },
  32730. maw: {
  32731. height: math.unit(1.73, "meters"),
  32732. name: "Maw",
  32733. image: {
  32734. source: "./media/characters/kairne/maw.svg"
  32735. }
  32736. },
  32737. },
  32738. [
  32739. {
  32740. name: "Normal",
  32741. height: math.unit(15, "feet"),
  32742. default: true
  32743. },
  32744. ]
  32745. ))
  32746. characterMakers.push(() => makeCharacter(
  32747. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32748. {
  32749. front: {
  32750. height: math.unit(5 + 8/12, "feet"),
  32751. weight: math.unit(139, "lb"),
  32752. name: "Front",
  32753. image: {
  32754. source: "./media/characters/biscuit-jackal/front.svg",
  32755. extra: 2106/1961,
  32756. bottom: 58/2164
  32757. }
  32758. },
  32759. back: {
  32760. height: math.unit(5 + 8/12, "feet"),
  32761. weight: math.unit(139, "lb"),
  32762. name: "Back",
  32763. image: {
  32764. source: "./media/characters/biscuit-jackal/back.svg",
  32765. extra: 2132/1976,
  32766. bottom: 57/2189
  32767. }
  32768. },
  32769. werejackal: {
  32770. height: math.unit(6 + 3/12, "feet"),
  32771. weight: math.unit(188, "lb"),
  32772. name: "Werejackal",
  32773. image: {
  32774. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32775. extra: 2373/2178,
  32776. bottom: 53/2426
  32777. }
  32778. },
  32779. },
  32780. [
  32781. {
  32782. name: "Normal",
  32783. height: math.unit(5 + 8/12, "feet"),
  32784. default: true
  32785. },
  32786. ]
  32787. ))
  32788. characterMakers.push(() => makeCharacter(
  32789. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32790. {
  32791. front: {
  32792. height: math.unit(140, "cm"),
  32793. weight: math.unit(45, "kg"),
  32794. name: "Front",
  32795. image: {
  32796. source: "./media/characters/tayra-white/front.svg",
  32797. extra: 2229/2192,
  32798. bottom: 75/2304
  32799. }
  32800. },
  32801. },
  32802. [
  32803. {
  32804. name: "Normal",
  32805. height: math.unit(140, "cm"),
  32806. default: true
  32807. },
  32808. ]
  32809. ))
  32810. characterMakers.push(() => makeCharacter(
  32811. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32812. {
  32813. front: {
  32814. height: math.unit(4 + 5/12, "feet"),
  32815. name: "Front",
  32816. image: {
  32817. source: "./media/characters/scoop/front.svg",
  32818. extra: 1257/1136,
  32819. bottom: 69/1326
  32820. }
  32821. },
  32822. back: {
  32823. height: math.unit(4 + 5/12, "feet"),
  32824. name: "Back",
  32825. image: {
  32826. source: "./media/characters/scoop/back.svg",
  32827. extra: 1321/1152,
  32828. bottom: 32/1353
  32829. }
  32830. },
  32831. maw: {
  32832. height: math.unit(0.68, "feet"),
  32833. name: "Maw",
  32834. image: {
  32835. source: "./media/characters/scoop/maw.svg"
  32836. }
  32837. },
  32838. },
  32839. [
  32840. {
  32841. name: "Really Small",
  32842. height: math.unit(1, "mm")
  32843. },
  32844. {
  32845. name: "Micro",
  32846. height: math.unit(1, "inch")
  32847. },
  32848. {
  32849. name: "Normal",
  32850. height: math.unit(4 + 5/12, "feet"),
  32851. default: true
  32852. },
  32853. {
  32854. name: "Macro",
  32855. height: math.unit(200, "feet")
  32856. },
  32857. {
  32858. name: "Megamacro",
  32859. height: math.unit(3240, "feet")
  32860. },
  32861. {
  32862. name: "Teramacro",
  32863. height: math.unit(2500, "miles")
  32864. },
  32865. ]
  32866. ))
  32867. characterMakers.push(() => makeCharacter(
  32868. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32869. {
  32870. front: {
  32871. height: math.unit(15 + 7/12, "feet"),
  32872. name: "Front",
  32873. image: {
  32874. source: "./media/characters/saphinara/front.svg",
  32875. extra: 604/546,
  32876. bottom: 19/623
  32877. }
  32878. },
  32879. side: {
  32880. height: math.unit(15 + 7/12, "feet"),
  32881. name: "Side",
  32882. image: {
  32883. source: "./media/characters/saphinara/side.svg",
  32884. extra: 605/547,
  32885. bottom: 6/611
  32886. }
  32887. },
  32888. back: {
  32889. height: math.unit(15 + 7/12, "feet"),
  32890. name: "Back",
  32891. image: {
  32892. source: "./media/characters/saphinara/back.svg",
  32893. extra: 591/531,
  32894. bottom: 13/604
  32895. }
  32896. },
  32897. frontTail: {
  32898. height: math.unit(15 + 7/12, "feet"),
  32899. name: "Front (Full Tail)",
  32900. image: {
  32901. source: "./media/characters/saphinara/front-tail.svg",
  32902. extra: 748/547,
  32903. bottom: 66/814
  32904. }
  32905. },
  32906. },
  32907. [
  32908. {
  32909. name: "Normal",
  32910. height: math.unit(15 + 7/12, "feet"),
  32911. default: true
  32912. },
  32913. {
  32914. name: "Angry",
  32915. height: math.unit(30 + 6/12, "feet")
  32916. },
  32917. {
  32918. name: "Enraged",
  32919. height: math.unit(102 + 1/12, "feet")
  32920. },
  32921. ]
  32922. ))
  32923. characterMakers.push(() => makeCharacter(
  32924. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32925. {
  32926. front: {
  32927. height: math.unit(6 + 8/12, "feet"),
  32928. weight: math.unit(300, "lb"),
  32929. name: "Front",
  32930. image: {
  32931. source: "./media/characters/jrain/front.svg",
  32932. extra: 3039/2865,
  32933. bottom: 399/3438
  32934. }
  32935. },
  32936. back: {
  32937. height: math.unit(6 + 8/12, "feet"),
  32938. weight: math.unit(300, "lb"),
  32939. name: "Back",
  32940. image: {
  32941. source: "./media/characters/jrain/back.svg",
  32942. extra: 3089/2938,
  32943. bottom: 172/3261
  32944. }
  32945. },
  32946. head: {
  32947. height: math.unit(2.14, "feet"),
  32948. name: "Head",
  32949. image: {
  32950. source: "./media/characters/jrain/head.svg"
  32951. }
  32952. },
  32953. maw: {
  32954. height: math.unit(1.77, "feet"),
  32955. name: "Maw",
  32956. image: {
  32957. source: "./media/characters/jrain/maw.svg"
  32958. }
  32959. },
  32960. leftHand: {
  32961. height: math.unit(1.1, "feet"),
  32962. name: "Left Hand",
  32963. image: {
  32964. source: "./media/characters/jrain/left-hand.svg"
  32965. }
  32966. },
  32967. rightHand: {
  32968. height: math.unit(1.1, "feet"),
  32969. name: "Right Hand",
  32970. image: {
  32971. source: "./media/characters/jrain/right-hand.svg"
  32972. }
  32973. },
  32974. eye: {
  32975. height: math.unit(0.35, "feet"),
  32976. name: "Eye",
  32977. image: {
  32978. source: "./media/characters/jrain/eye.svg"
  32979. }
  32980. },
  32981. },
  32982. [
  32983. {
  32984. name: "Normal",
  32985. height: math.unit(6 + 8/12, "feet"),
  32986. default: true
  32987. },
  32988. {
  32989. name: "Casually Large",
  32990. height: math.unit(25, "feet")
  32991. },
  32992. {
  32993. name: "Giant",
  32994. height: math.unit(100, "feet")
  32995. },
  32996. {
  32997. name: "Kaiju",
  32998. height: math.unit(300, "feet")
  32999. },
  33000. ]
  33001. ))
  33002. characterMakers.push(() => makeCharacter(
  33003. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33004. {
  33005. dragon: {
  33006. height: math.unit(5, "meters"),
  33007. name: "Dragon",
  33008. image: {
  33009. source: "./media/characters/sabrina/dragon.svg",
  33010. extra: 3670 / 2365,
  33011. bottom: 333 / 4003
  33012. }
  33013. },
  33014. gryphon: {
  33015. height: math.unit(3, "meters"),
  33016. name: "Gryphon",
  33017. image: {
  33018. source: "./media/characters/sabrina/gryphon.svg",
  33019. extra: 1576 / 945,
  33020. bottom: 71 / 1647
  33021. }
  33022. },
  33023. snake: {
  33024. height: math.unit(12, "meters"),
  33025. name: "Snake",
  33026. image: {
  33027. source: "./media/characters/sabrina/snake.svg",
  33028. extra: 1758 / 1320,
  33029. bottom: 186 / 1944
  33030. }
  33031. },
  33032. collar: {
  33033. height: math.unit(1.86, "meters"),
  33034. name: "Collar",
  33035. image: {
  33036. source: "./media/characters/sabrina/collar.svg"
  33037. }
  33038. },
  33039. eye: {
  33040. height: math.unit(0.53, "meters"),
  33041. name: "Eye",
  33042. image: {
  33043. source: "./media/characters/sabrina/eye.svg"
  33044. }
  33045. },
  33046. foot: {
  33047. height: math.unit(1.86, "meters"),
  33048. name: "Foot",
  33049. image: {
  33050. source: "./media/characters/sabrina/foot.svg"
  33051. }
  33052. },
  33053. hand: {
  33054. height: math.unit(1.32, "meters"),
  33055. name: "Hand",
  33056. image: {
  33057. source: "./media/characters/sabrina/hand.svg"
  33058. }
  33059. },
  33060. head: {
  33061. height: math.unit(2.44, "meters"),
  33062. name: "Head",
  33063. image: {
  33064. source: "./media/characters/sabrina/head.svg"
  33065. }
  33066. },
  33067. headAngry: {
  33068. height: math.unit(2.44, "meters"),
  33069. name: "Head (Angry))",
  33070. image: {
  33071. source: "./media/characters/sabrina/head-angry.svg"
  33072. }
  33073. },
  33074. maw: {
  33075. height: math.unit(1.65, "meters"),
  33076. name: "Maw",
  33077. image: {
  33078. source: "./media/characters/sabrina/maw.svg"
  33079. }
  33080. },
  33081. spikes: {
  33082. height: math.unit(1.69, "meters"),
  33083. name: "Spikes",
  33084. image: {
  33085. source: "./media/characters/sabrina/spikes.svg"
  33086. }
  33087. },
  33088. stomach: {
  33089. height: math.unit(1.15, "meters"),
  33090. name: "Stomach",
  33091. image: {
  33092. source: "./media/characters/sabrina/stomach.svg"
  33093. }
  33094. },
  33095. tongue: {
  33096. height: math.unit(1.27, "meters"),
  33097. name: "Tongue",
  33098. image: {
  33099. source: "./media/characters/sabrina/tongue.svg"
  33100. }
  33101. },
  33102. wingDorsal: {
  33103. height: math.unit(4.85, "meters"),
  33104. name: "Wing (Dorsal)",
  33105. image: {
  33106. source: "./media/characters/sabrina/wing-dorsal.svg"
  33107. }
  33108. },
  33109. wingVentral: {
  33110. height: math.unit(4.85, "meters"),
  33111. name: "Wing (Ventral)",
  33112. image: {
  33113. source: "./media/characters/sabrina/wing-ventral.svg"
  33114. }
  33115. },
  33116. },
  33117. [
  33118. {
  33119. name: "Normal",
  33120. height: math.unit(5, "meters"),
  33121. default: true
  33122. },
  33123. ]
  33124. ))
  33125. characterMakers.push(() => makeCharacter(
  33126. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33127. {
  33128. frontMaid: {
  33129. height: math.unit(5 + 5/12, "feet"),
  33130. weight: math.unit(130, "lb"),
  33131. name: "Front (Maid)",
  33132. image: {
  33133. source: "./media/characters/midnight-tales/front-maid.svg",
  33134. extra: 489/454,
  33135. bottom: 61/550
  33136. }
  33137. },
  33138. frontFormal: {
  33139. height: math.unit(5 + 5/12, "feet"),
  33140. weight: math.unit(130, "lb"),
  33141. name: "Front (Formal)",
  33142. image: {
  33143. source: "./media/characters/midnight-tales/front-formal.svg",
  33144. extra: 489/454,
  33145. bottom: 61/550
  33146. }
  33147. },
  33148. back: {
  33149. height: math.unit(5 + 5/12, "feet"),
  33150. weight: math.unit(130, "lb"),
  33151. name: "Back",
  33152. image: {
  33153. source: "./media/characters/midnight-tales/back.svg",
  33154. extra: 498/456,
  33155. bottom: 33/531
  33156. }
  33157. },
  33158. frontBeast: {
  33159. height: math.unit(40, "feet"),
  33160. weight: math.unit(64000, "lb"),
  33161. name: "Front (Beast)",
  33162. image: {
  33163. source: "./media/characters/midnight-tales/front-beast.svg",
  33164. extra: 927/860,
  33165. bottom: 53/980
  33166. }
  33167. },
  33168. backBeast: {
  33169. height: math.unit(40, "feet"),
  33170. weight: math.unit(64000, "lb"),
  33171. name: "Back (Beast)",
  33172. image: {
  33173. source: "./media/characters/midnight-tales/back-beast.svg",
  33174. extra: 929/855,
  33175. bottom: 16/945
  33176. }
  33177. },
  33178. footBeast: {
  33179. height: math.unit(6.7, "feet"),
  33180. name: "Foot (Beast)",
  33181. image: {
  33182. source: "./media/characters/midnight-tales/foot-beast.svg"
  33183. }
  33184. },
  33185. headBeast: {
  33186. height: math.unit(8, "feet"),
  33187. name: "Head (Beast)",
  33188. image: {
  33189. source: "./media/characters/midnight-tales/head-beast.svg"
  33190. }
  33191. },
  33192. },
  33193. [
  33194. {
  33195. name: "Normal",
  33196. height: math.unit(5 + 5 / 12, "feet"),
  33197. default: true
  33198. },
  33199. {
  33200. name: "Macro",
  33201. height: math.unit(25, "feet")
  33202. },
  33203. ]
  33204. ))
  33205. characterMakers.push(() => makeCharacter(
  33206. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33207. {
  33208. front: {
  33209. height: math.unit(5 + 10/12, "feet"),
  33210. name: "Front",
  33211. image: {
  33212. source: "./media/characters/argon/front.svg",
  33213. extra: 2009/1935,
  33214. bottom: 118/2127
  33215. }
  33216. },
  33217. back: {
  33218. height: math.unit(5 + 10/12, "feet"),
  33219. name: "Back",
  33220. image: {
  33221. source: "./media/characters/argon/back.svg",
  33222. extra: 2047/1992,
  33223. bottom: 20/2067
  33224. }
  33225. },
  33226. frontDressed: {
  33227. height: math.unit(5 + 10/12, "feet"),
  33228. name: "Front (Dressed)",
  33229. image: {
  33230. source: "./media/characters/argon/front-dressed.svg",
  33231. extra: 2009/1935,
  33232. bottom: 118/2127
  33233. }
  33234. },
  33235. },
  33236. [
  33237. {
  33238. name: "Normal",
  33239. height: math.unit(5 + 10/12, "feet"),
  33240. default: true
  33241. },
  33242. ]
  33243. ))
  33244. characterMakers.push(() => makeCharacter(
  33245. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33246. {
  33247. front: {
  33248. height: math.unit(8 + 6/12, "feet"),
  33249. weight: math.unit(1150, "lb"),
  33250. name: "Front",
  33251. image: {
  33252. source: "./media/characters/kichi/front.svg",
  33253. extra: 1267/1164,
  33254. bottom: 61/1328
  33255. }
  33256. },
  33257. back: {
  33258. height: math.unit(8 + 6/12, "feet"),
  33259. weight: math.unit(1150, "lb"),
  33260. name: "Back",
  33261. image: {
  33262. source: "./media/characters/kichi/back.svg",
  33263. extra: 1273/1166,
  33264. bottom: 33/1306
  33265. }
  33266. },
  33267. },
  33268. [
  33269. {
  33270. name: "Normal",
  33271. height: math.unit(8 + 6/12, "feet"),
  33272. default: true
  33273. },
  33274. ]
  33275. ))
  33276. characterMakers.push(() => makeCharacter(
  33277. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33278. {
  33279. front: {
  33280. height: math.unit(6, "feet"),
  33281. weight: math.unit(210, "lb"),
  33282. name: "Front",
  33283. image: {
  33284. source: "./media/characters/manetel-greyscale/front.svg",
  33285. extra: 350/312,
  33286. bottom: 8/358
  33287. }
  33288. },
  33289. },
  33290. [
  33291. {
  33292. name: "Micro",
  33293. height: math.unit(2, "inches")
  33294. },
  33295. {
  33296. name: "Normal",
  33297. height: math.unit(6, "feet"),
  33298. default: true
  33299. },
  33300. {
  33301. name: "Minimacro",
  33302. height: math.unit(17, "feet")
  33303. },
  33304. {
  33305. name: "Macro",
  33306. height: math.unit(117, "feet")
  33307. },
  33308. ]
  33309. ))
  33310. characterMakers.push(() => makeCharacter(
  33311. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33312. {
  33313. side: {
  33314. height: math.unit(5 + 1/12, "feet"),
  33315. weight: math.unit(418, "lb"),
  33316. name: "Side",
  33317. image: {
  33318. source: "./media/characters/softpurr/side.svg",
  33319. extra: 1993/1945,
  33320. bottom: 134/2127
  33321. }
  33322. },
  33323. front: {
  33324. height: math.unit(5 + 1/12, "feet"),
  33325. weight: math.unit(418, "lb"),
  33326. name: "Front",
  33327. image: {
  33328. source: "./media/characters/softpurr/front.svg",
  33329. extra: 1950/1856,
  33330. bottom: 174/2124
  33331. }
  33332. },
  33333. paw: {
  33334. height: math.unit(1, "feet"),
  33335. name: "Paw",
  33336. image: {
  33337. source: "./media/characters/softpurr/paw.svg"
  33338. }
  33339. },
  33340. },
  33341. [
  33342. {
  33343. name: "Normal",
  33344. height: math.unit(5 + 1/12, "feet"),
  33345. default: true
  33346. },
  33347. ]
  33348. ))
  33349. characterMakers.push(() => makeCharacter(
  33350. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33351. {
  33352. front: {
  33353. height: math.unit(260, "meters"),
  33354. name: "Front",
  33355. image: {
  33356. source: "./media/characters/anahita/front.svg",
  33357. extra: 665/635,
  33358. bottom: 89/754
  33359. }
  33360. },
  33361. },
  33362. [
  33363. {
  33364. name: "Macro",
  33365. height: math.unit(260, "meters"),
  33366. default: true
  33367. },
  33368. ]
  33369. ))
  33370. characterMakers.push(() => makeCharacter(
  33371. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33372. {
  33373. front: {
  33374. height: math.unit(4 + 10/12, "feet"),
  33375. weight: math.unit(160, "lb"),
  33376. name: "Front",
  33377. image: {
  33378. source: "./media/characters/chip-mouse/front.svg",
  33379. extra: 3528/3408,
  33380. bottom: 0/3528
  33381. }
  33382. },
  33383. frontNsfw: {
  33384. height: math.unit(4 + 10/12, "feet"),
  33385. weight: math.unit(160, "lb"),
  33386. name: "Front (NSFW)",
  33387. image: {
  33388. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33389. extra: 3528/3408,
  33390. bottom: 0/3528
  33391. }
  33392. },
  33393. },
  33394. [
  33395. {
  33396. name: "Normal",
  33397. height: math.unit(4 + 10/12, "feet"),
  33398. default: true
  33399. },
  33400. ]
  33401. ))
  33402. characterMakers.push(() => makeCharacter(
  33403. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33404. {
  33405. side: {
  33406. height: math.unit(10, "feet"),
  33407. weight: math.unit(14000, "lb"),
  33408. name: "Side",
  33409. image: {
  33410. source: "./media/characters/kremm/side.svg",
  33411. extra: 1390/1053,
  33412. bottom: 90/1480
  33413. }
  33414. },
  33415. gut: {
  33416. height: math.unit(5.8, "feet"),
  33417. name: "Gut",
  33418. image: {
  33419. source: "./media/characters/kremm/gut.svg"
  33420. }
  33421. },
  33422. ass: {
  33423. height: math.unit(6.1, "feet"),
  33424. name: "Ass",
  33425. image: {
  33426. source: "./media/characters/kremm/ass.svg"
  33427. }
  33428. },
  33429. jaws: {
  33430. height: math.unit(2.2, "feet"),
  33431. name: "Jaws",
  33432. image: {
  33433. source: "./media/characters/kremm/jaws.svg"
  33434. }
  33435. },
  33436. dick: {
  33437. height: math.unit(4.26, "feet"),
  33438. name: "Dick",
  33439. image: {
  33440. source: "./media/characters/kremm/dick.svg"
  33441. }
  33442. },
  33443. },
  33444. [
  33445. {
  33446. name: "Normal",
  33447. height: math.unit(10, "feet"),
  33448. default: true
  33449. },
  33450. ]
  33451. ))
  33452. characterMakers.push(() => makeCharacter(
  33453. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33454. {
  33455. front: {
  33456. height: math.unit(30, "stories"),
  33457. name: "Front",
  33458. image: {
  33459. source: "./media/characters/kai/front.svg",
  33460. extra: 1892/1718,
  33461. bottom: 162/2054
  33462. }
  33463. },
  33464. },
  33465. [
  33466. {
  33467. name: "Macro",
  33468. height: math.unit(30, "stories"),
  33469. default: true
  33470. },
  33471. ]
  33472. ))
  33473. characterMakers.push(() => makeCharacter(
  33474. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33475. {
  33476. front: {
  33477. height: math.unit(6 + 4/12, "feet"),
  33478. weight: math.unit(145, "lb"),
  33479. name: "Front",
  33480. image: {
  33481. source: "./media/characters/sykes/front.svg",
  33482. extra: 1321 / 1187,
  33483. bottom: 66 / 1387
  33484. }
  33485. },
  33486. back: {
  33487. height: math.unit(6 + 4/12, "feet"),
  33488. weight: math.unit(145, "lb"),
  33489. name: "Back",
  33490. image: {
  33491. source: "./media/characters/sykes/back.svg",
  33492. extra: 1326/1181,
  33493. bottom: 31/1357
  33494. }
  33495. },
  33496. handBack: {
  33497. height: math.unit(0.9, "feet"),
  33498. name: "Hand (Back)",
  33499. image: {
  33500. source: "./media/characters/sykes/hand-back.svg"
  33501. }
  33502. },
  33503. handFront: {
  33504. height: math.unit(0.839, "feet"),
  33505. name: "Hand (Front)",
  33506. image: {
  33507. source: "./media/characters/sykes/hand-front.svg"
  33508. }
  33509. },
  33510. leftFoot: {
  33511. height: math.unit(1.2, "feet"),
  33512. name: "Foot (Left)",
  33513. image: {
  33514. source: "./media/characters/sykes/foot-left.svg"
  33515. }
  33516. },
  33517. rightFoot: {
  33518. height: math.unit(1.2, "feet"),
  33519. name: "Foot (Right)",
  33520. image: {
  33521. source: "./media/characters/sykes/foot-right.svg"
  33522. }
  33523. },
  33524. maw: {
  33525. height: math.unit(1.93, "feet"),
  33526. name: "Maw",
  33527. image: {
  33528. source: "./media/characters/sykes/maw.svg"
  33529. }
  33530. },
  33531. teeth: {
  33532. height: math.unit(0.51, "feet"),
  33533. name: "Teeth",
  33534. image: {
  33535. source: "./media/characters/sykes/teeth.svg"
  33536. }
  33537. },
  33538. tongue: {
  33539. height: math.unit(2.13, "feet"),
  33540. name: "Tongue",
  33541. image: {
  33542. source: "./media/characters/sykes/tongue.svg"
  33543. }
  33544. },
  33545. uvula: {
  33546. height: math.unit(0.16, "feet"),
  33547. name: "Uvula",
  33548. image: {
  33549. source: "./media/characters/sykes/uvula.svg"
  33550. }
  33551. },
  33552. collar: {
  33553. height: math.unit(0.287, "feet"),
  33554. name: "Collar",
  33555. image: {
  33556. source: "./media/characters/sykes/collar.svg"
  33557. }
  33558. },
  33559. },
  33560. [
  33561. {
  33562. name: "Shrunken",
  33563. height: math.unit(5, "inches")
  33564. },
  33565. {
  33566. name: "Normal",
  33567. height: math.unit(6 + 4 / 12, "feet"),
  33568. default: true
  33569. },
  33570. {
  33571. name: "Big",
  33572. height: math.unit(15, "feet")
  33573. },
  33574. ]
  33575. ))
  33576. characterMakers.push(() => makeCharacter(
  33577. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33578. {
  33579. front: {
  33580. height: math.unit(5 + 8/12, "feet"),
  33581. weight: math.unit(190, "lb"),
  33582. name: "Front",
  33583. image: {
  33584. source: "./media/characters/oven-otter/front.svg",
  33585. extra: 1809/1740,
  33586. bottom: 181/1990
  33587. }
  33588. },
  33589. back: {
  33590. height: math.unit(5 + 8/12, "feet"),
  33591. weight: math.unit(190, "lb"),
  33592. name: "Back",
  33593. image: {
  33594. source: "./media/characters/oven-otter/back.svg",
  33595. extra: 1709/1635,
  33596. bottom: 118/1827
  33597. }
  33598. },
  33599. hand: {
  33600. height: math.unit(1.07, "feet"),
  33601. name: "Hand",
  33602. image: {
  33603. source: "./media/characters/oven-otter/hand.svg"
  33604. }
  33605. },
  33606. beans: {
  33607. height: math.unit(1.74, "feet"),
  33608. name: "Beans",
  33609. image: {
  33610. source: "./media/characters/oven-otter/beans.svg"
  33611. }
  33612. },
  33613. },
  33614. [
  33615. {
  33616. name: "Micro",
  33617. height: math.unit(0.5, "inches")
  33618. },
  33619. {
  33620. name: "Normal",
  33621. height: math.unit(5 + 8/12, "feet"),
  33622. default: true
  33623. },
  33624. {
  33625. name: "Macro",
  33626. height: math.unit(250, "feet")
  33627. },
  33628. {
  33629. name: "Really High",
  33630. height: math.unit(420, "feet")
  33631. },
  33632. ]
  33633. ))
  33634. characterMakers.push(() => makeCharacter(
  33635. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33636. {
  33637. front: {
  33638. height: math.unit(5, "meters"),
  33639. weight: math.unit(292000000000000, "kg"),
  33640. name: "Front",
  33641. image: {
  33642. source: "./media/characters/devourer/front.svg",
  33643. extra: 1800/1733,
  33644. bottom: 211/2011
  33645. }
  33646. },
  33647. maw: {
  33648. height: math.unit(1.1, "meter"),
  33649. name: "Maw",
  33650. image: {
  33651. source: "./media/characters/devourer/maw.svg"
  33652. }
  33653. },
  33654. },
  33655. [
  33656. {
  33657. name: "Small",
  33658. height: math.unit(3, "meters")
  33659. },
  33660. {
  33661. name: "Large",
  33662. height: math.unit(5, "meters"),
  33663. default: true
  33664. },
  33665. ]
  33666. ))
  33667. characterMakers.push(() => makeCharacter(
  33668. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33669. {
  33670. front: {
  33671. height: math.unit(6, "feet"),
  33672. weight: math.unit(400, "lb"),
  33673. name: "Front",
  33674. image: {
  33675. source: "./media/characters/ellarby/front.svg",
  33676. extra: 1909/1763,
  33677. bottom: 80/1989
  33678. }
  33679. },
  33680. back: {
  33681. height: math.unit(6, "feet"),
  33682. weight: math.unit(400, "lb"),
  33683. name: "Back",
  33684. image: {
  33685. source: "./media/characters/ellarby/back.svg",
  33686. extra: 1914/1784,
  33687. bottom: 172/2086
  33688. }
  33689. },
  33690. },
  33691. [
  33692. {
  33693. name: "Mischief",
  33694. height: math.unit(18, "inches")
  33695. },
  33696. {
  33697. name: "Trouble",
  33698. height: math.unit(12, "feet")
  33699. },
  33700. {
  33701. name: "Havoc",
  33702. height: math.unit(200, "feet"),
  33703. default: true
  33704. },
  33705. {
  33706. name: "Pandemonium",
  33707. height: math.unit(1, "mile")
  33708. },
  33709. {
  33710. name: "Catastrophe",
  33711. height: math.unit(100, "miles")
  33712. },
  33713. ]
  33714. ))
  33715. characterMakers.push(() => makeCharacter(
  33716. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33717. {
  33718. front: {
  33719. height: math.unit(4.7, "meters"),
  33720. weight: math.unit(6500, "kg"),
  33721. name: "Front",
  33722. image: {
  33723. source: "./media/characters/vex/front.svg",
  33724. extra: 1288/1140,
  33725. bottom: 100/1388
  33726. }
  33727. },
  33728. },
  33729. [
  33730. {
  33731. name: "Normal",
  33732. height: math.unit(4.7, "meters"),
  33733. default: true
  33734. },
  33735. ]
  33736. ))
  33737. characterMakers.push(() => makeCharacter(
  33738. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33739. {
  33740. normal: {
  33741. height: math.unit(6, "feet"),
  33742. weight: math.unit(350, "lb"),
  33743. name: "Normal",
  33744. image: {
  33745. source: "./media/characters/teshy/normal.svg",
  33746. extra: 1795/1735,
  33747. bottom: 16/1811
  33748. }
  33749. },
  33750. monsterFront: {
  33751. height: math.unit(12, "feet"),
  33752. weight: math.unit(4700, "lb"),
  33753. name: "Monster (Front)",
  33754. image: {
  33755. source: "./media/characters/teshy/monster-front.svg",
  33756. extra: 2042/2034,
  33757. bottom: 128/2170
  33758. }
  33759. },
  33760. monsterSide: {
  33761. height: math.unit(12, "feet"),
  33762. weight: math.unit(4700, "lb"),
  33763. name: "Monster (Side)",
  33764. image: {
  33765. source: "./media/characters/teshy/monster-side.svg",
  33766. extra: 2067/2056,
  33767. bottom: 70/2137
  33768. }
  33769. },
  33770. monsterBack: {
  33771. height: math.unit(12, "feet"),
  33772. weight: math.unit(4700, "lb"),
  33773. name: "Monster (Back)",
  33774. image: {
  33775. source: "./media/characters/teshy/monster-back.svg",
  33776. extra: 1921/1914,
  33777. bottom: 171/2092
  33778. }
  33779. },
  33780. },
  33781. [
  33782. {
  33783. name: "Normal",
  33784. height: math.unit(6, "feet"),
  33785. default: true
  33786. },
  33787. ]
  33788. ))
  33789. characterMakers.push(() => makeCharacter(
  33790. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33791. {
  33792. front: {
  33793. height: math.unit(6, "feet"),
  33794. name: "Front",
  33795. image: {
  33796. source: "./media/characters/ramey/front.svg",
  33797. extra: 790/787,
  33798. bottom: 27/817
  33799. }
  33800. },
  33801. },
  33802. [
  33803. {
  33804. name: "Normal",
  33805. height: math.unit(6, "feet"),
  33806. default: true
  33807. },
  33808. ]
  33809. ))
  33810. characterMakers.push(() => makeCharacter(
  33811. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33812. {
  33813. front: {
  33814. height: math.unit(5 + 5/12, "feet"),
  33815. weight: math.unit(120, "lb"),
  33816. name: "Front",
  33817. image: {
  33818. source: "./media/characters/phirae/front.svg",
  33819. extra: 2491/2436,
  33820. bottom: 38/2529
  33821. }
  33822. },
  33823. },
  33824. [
  33825. {
  33826. name: "Normal",
  33827. height: math.unit(5 + 5/12, "feet"),
  33828. default: true
  33829. },
  33830. ]
  33831. ))
  33832. characterMakers.push(() => makeCharacter(
  33833. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33834. {
  33835. front: {
  33836. height: math.unit(6, "feet"),
  33837. weight: math.unit(150, "lb"),
  33838. name: "Front",
  33839. image: {
  33840. source: "./media/characters/stagglas/front.svg",
  33841. extra: 962/882,
  33842. bottom: 53/1015
  33843. }
  33844. },
  33845. },
  33846. [
  33847. {
  33848. name: "Normal",
  33849. height: math.unit(5 + 3/12, "feet"),
  33850. default: true
  33851. },
  33852. ]
  33853. ))
  33854. characterMakers.push(() => makeCharacter(
  33855. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33856. {
  33857. front: {
  33858. height: math.unit(5 + 4/12, "feet"),
  33859. weight: math.unit(145, "lb"),
  33860. name: "Front",
  33861. image: {
  33862. source: "./media/characters/starra/front.svg",
  33863. extra: 1790/1691,
  33864. bottom: 91/1881
  33865. }
  33866. },
  33867. },
  33868. [
  33869. {
  33870. name: "Normal",
  33871. height: math.unit(5 + 4/12, "feet"),
  33872. default: true
  33873. },
  33874. ]
  33875. ))
  33876. characterMakers.push(() => makeCharacter(
  33877. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33878. {
  33879. front: {
  33880. height: math.unit(2.2, "meters"),
  33881. name: "Front",
  33882. image: {
  33883. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33884. extra: 1194/1005,
  33885. bottom: 25/1219
  33886. }
  33887. },
  33888. },
  33889. [
  33890. {
  33891. name: "Normal",
  33892. height: math.unit(2.2, "meters"),
  33893. default: true
  33894. },
  33895. ]
  33896. ))
  33897. characterMakers.push(() => makeCharacter(
  33898. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33899. {
  33900. side: {
  33901. height: math.unit(8 + 2/12, "feet"),
  33902. weight: math.unit(1240, "lb"),
  33903. name: "Side",
  33904. image: {
  33905. source: "./media/characters/mika-valentine/side.svg",
  33906. extra: 2670/2501,
  33907. bottom: 250/2920
  33908. }
  33909. },
  33910. },
  33911. [
  33912. {
  33913. name: "Normal",
  33914. height: math.unit(8 + 2/12, "feet"),
  33915. default: true
  33916. },
  33917. ]
  33918. ))
  33919. characterMakers.push(() => makeCharacter(
  33920. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33921. {
  33922. front: {
  33923. height: math.unit(7 + 2/12, "feet"),
  33924. name: "Front",
  33925. image: {
  33926. source: "./media/characters/xoltol/front.svg",
  33927. extra: 2212/2124,
  33928. bottom: 84/2296
  33929. }
  33930. },
  33931. side: {
  33932. height: math.unit(7 + 2/12, "feet"),
  33933. name: "Side",
  33934. image: {
  33935. source: "./media/characters/xoltol/side.svg",
  33936. extra: 2273/2197,
  33937. bottom: 26/2299
  33938. }
  33939. },
  33940. hand: {
  33941. height: math.unit(2.5, "feet"),
  33942. name: "Hand",
  33943. image: {
  33944. source: "./media/characters/xoltol/hand.svg"
  33945. }
  33946. },
  33947. },
  33948. [
  33949. {
  33950. name: "Small-ish",
  33951. height: math.unit(5 + 11/12, "feet")
  33952. },
  33953. {
  33954. name: "Normal",
  33955. height: math.unit(7 + 2/12, "feet")
  33956. },
  33957. {
  33958. name: "\"Macro\"",
  33959. height: math.unit(14 + 9/12, "feet"),
  33960. default: true
  33961. },
  33962. {
  33963. name: "Alternate Height",
  33964. height: math.unit(20, "feet")
  33965. },
  33966. {
  33967. name: "Actually Macro",
  33968. height: math.unit(100, "feet")
  33969. },
  33970. ]
  33971. ))
  33972. characterMakers.push(() => makeCharacter(
  33973. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33974. {
  33975. front: {
  33976. height: math.unit(5 + 2/12, "feet"),
  33977. name: "Front",
  33978. image: {
  33979. source: "./media/characters/kotetsu-redwood/front.svg",
  33980. extra: 1053/942,
  33981. bottom: 60/1113
  33982. }
  33983. },
  33984. },
  33985. [
  33986. {
  33987. name: "Normal",
  33988. height: math.unit(5 + 2/12, "feet"),
  33989. default: true
  33990. },
  33991. ]
  33992. ))
  33993. characterMakers.push(() => makeCharacter(
  33994. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33995. {
  33996. front: {
  33997. height: math.unit(2.4, "meters"),
  33998. weight: math.unit(125, "kg"),
  33999. name: "Front",
  34000. image: {
  34001. source: "./media/characters/lilith/front.svg",
  34002. extra: 1590/1513,
  34003. bottom: 203/1793
  34004. }
  34005. },
  34006. },
  34007. [
  34008. {
  34009. name: "Humanoid",
  34010. height: math.unit(2.4, "meters")
  34011. },
  34012. {
  34013. name: "Normal",
  34014. height: math.unit(6, "meters"),
  34015. default: true
  34016. },
  34017. {
  34018. name: "Largest",
  34019. height: math.unit(55, "meters")
  34020. },
  34021. ]
  34022. ))
  34023. characterMakers.push(() => makeCharacter(
  34024. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34025. {
  34026. front: {
  34027. height: math.unit(8 + 4/12, "feet"),
  34028. weight: math.unit(535, "lb"),
  34029. name: "Front",
  34030. image: {
  34031. source: "./media/characters/beh'kah-bolger/front.svg",
  34032. extra: 1660/1603,
  34033. bottom: 37/1697
  34034. }
  34035. },
  34036. },
  34037. [
  34038. {
  34039. name: "Normal",
  34040. height: math.unit(8 + 4/12, "feet"),
  34041. default: true
  34042. },
  34043. {
  34044. name: "Kaiju",
  34045. height: math.unit(250, "feet")
  34046. },
  34047. {
  34048. name: "Still Growing",
  34049. height: math.unit(10, "miles")
  34050. },
  34051. {
  34052. name: "Continental",
  34053. height: math.unit(5000, "miles")
  34054. },
  34055. {
  34056. name: "Final Form",
  34057. height: math.unit(2500000, "miles")
  34058. },
  34059. ]
  34060. ))
  34061. characterMakers.push(() => makeCharacter(
  34062. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34063. {
  34064. front: {
  34065. height: math.unit(7 + 2/12, "feet"),
  34066. weight: math.unit(230, "kg"),
  34067. name: "Front",
  34068. image: {
  34069. source: "./media/characters/tatyana-milewska/front.svg",
  34070. extra: 1199/1150,
  34071. bottom: 86/1285
  34072. }
  34073. },
  34074. },
  34075. [
  34076. {
  34077. name: "Normal",
  34078. height: math.unit(7 + 2/12, "feet"),
  34079. default: true
  34080. },
  34081. {
  34082. name: "Big",
  34083. height: math.unit(12, "feet")
  34084. },
  34085. {
  34086. name: "Minimacro",
  34087. height: math.unit(20, "feet")
  34088. },
  34089. {
  34090. name: "Macro",
  34091. height: math.unit(120, "feet")
  34092. },
  34093. ]
  34094. ))
  34095. characterMakers.push(() => makeCharacter(
  34096. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34097. {
  34098. front: {
  34099. height: math.unit(7 + 8/12, "feet"),
  34100. weight: math.unit(152, "kg"),
  34101. name: "Front",
  34102. image: {
  34103. source: "./media/characters/helen-arri/front.svg",
  34104. extra: 440/423,
  34105. bottom: 14/454
  34106. }
  34107. },
  34108. back: {
  34109. height: math.unit(7 + 8/12, "feet"),
  34110. weight: math.unit(152, "kg"),
  34111. name: "Back",
  34112. image: {
  34113. source: "./media/characters/helen-arri/back.svg",
  34114. extra: 443/426,
  34115. bottom: 8/451
  34116. }
  34117. },
  34118. },
  34119. [
  34120. {
  34121. name: "Normal",
  34122. height: math.unit(7 + 8/12, "feet"),
  34123. default: true
  34124. },
  34125. {
  34126. name: "Big",
  34127. height: math.unit(14, "feet")
  34128. },
  34129. {
  34130. name: "Minimacro",
  34131. height: math.unit(24, "feet")
  34132. },
  34133. {
  34134. name: "Macro",
  34135. height: math.unit(140, "feet")
  34136. },
  34137. ]
  34138. ))
  34139. characterMakers.push(() => makeCharacter(
  34140. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34141. {
  34142. front: {
  34143. height: math.unit(6, "meters"),
  34144. name: "Front",
  34145. image: {
  34146. source: "./media/characters/ehanu-rehu/front.svg",
  34147. extra: 1800/1800,
  34148. bottom: 59/1859
  34149. }
  34150. },
  34151. },
  34152. [
  34153. {
  34154. name: "Normal",
  34155. height: math.unit(6, "meters"),
  34156. default: true
  34157. },
  34158. ]
  34159. ))
  34160. characterMakers.push(() => makeCharacter(
  34161. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34162. {
  34163. front: {
  34164. height: math.unit(7 + 3/12, "feet"),
  34165. name: "Front",
  34166. image: {
  34167. source: "./media/characters/renholder/front.svg",
  34168. extra: 3096/2960,
  34169. bottom: 250/3346
  34170. }
  34171. },
  34172. },
  34173. [
  34174. {
  34175. name: "Normal Bat",
  34176. height: math.unit(7 + 3/12, "feet"),
  34177. default: true
  34178. },
  34179. {
  34180. name: "Slightly Tall Bat",
  34181. height: math.unit(100, "feet")
  34182. },
  34183. {
  34184. name: "Big Bat",
  34185. height: math.unit(1000, "feet")
  34186. },
  34187. {
  34188. name: "City-Sized Bat",
  34189. height: math.unit(200000, "feet")
  34190. },
  34191. {
  34192. name: "Bigger Bat",
  34193. height: math.unit(10000, "miles")
  34194. },
  34195. {
  34196. name: "Solar Sized Bat",
  34197. height: math.unit(100, "AU")
  34198. },
  34199. {
  34200. name: "Galactic Bat",
  34201. height: math.unit(200000, "lightyears")
  34202. },
  34203. {
  34204. name: "Universally Known Bat",
  34205. height: math.unit(1, "universe")
  34206. },
  34207. ]
  34208. ))
  34209. characterMakers.push(() => makeCharacter(
  34210. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34211. {
  34212. front: {
  34213. height: math.unit(6 + 11/12, "feet"),
  34214. weight: math.unit(250, "lb"),
  34215. name: "Front",
  34216. image: {
  34217. source: "./media/characters/cookiecat/front.svg",
  34218. extra: 893/827,
  34219. bottom: 14/907
  34220. }
  34221. },
  34222. },
  34223. [
  34224. {
  34225. name: "Micro",
  34226. height: math.unit(3, "inches")
  34227. },
  34228. {
  34229. name: "Normal",
  34230. height: math.unit(6 + 11/12, "feet"),
  34231. default: true
  34232. },
  34233. {
  34234. name: "Macro",
  34235. height: math.unit(100, "feet")
  34236. },
  34237. {
  34238. name: "Macro+",
  34239. height: math.unit(404, "feet")
  34240. },
  34241. {
  34242. name: "Megamacro",
  34243. height: math.unit(165, "miles")
  34244. },
  34245. {
  34246. name: "Planetary",
  34247. height: math.unit(4600, "miles")
  34248. },
  34249. ]
  34250. ))
  34251. characterMakers.push(() => makeCharacter(
  34252. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34253. {
  34254. front: {
  34255. height: math.unit(10 + 3/12, "feet"),
  34256. weight: math.unit(1500, "lb"),
  34257. name: "Front",
  34258. image: {
  34259. source: "./media/characters/tux-kusanagi/front.svg",
  34260. extra: 944/840,
  34261. bottom: 39/983
  34262. }
  34263. },
  34264. back: {
  34265. height: math.unit(10 + 3/12, "feet"),
  34266. weight: math.unit(1500, "lb"),
  34267. name: "Back",
  34268. image: {
  34269. source: "./media/characters/tux-kusanagi/back.svg",
  34270. extra: 941/842,
  34271. bottom: 28/969
  34272. }
  34273. },
  34274. rump: {
  34275. height: math.unit(5.25, "feet"),
  34276. name: "Rump",
  34277. image: {
  34278. source: "./media/characters/tux-kusanagi/rump.svg"
  34279. }
  34280. },
  34281. beak: {
  34282. height: math.unit(1.54, "feet"),
  34283. name: "Beak",
  34284. image: {
  34285. source: "./media/characters/tux-kusanagi/beak.svg"
  34286. }
  34287. },
  34288. },
  34289. [
  34290. {
  34291. name: "Normal",
  34292. height: math.unit(10 + 3/12, "feet"),
  34293. default: true
  34294. },
  34295. ]
  34296. ))
  34297. characterMakers.push(() => makeCharacter(
  34298. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34299. {
  34300. front: {
  34301. height: math.unit(58, "feet"),
  34302. weight: math.unit(200, "tons"),
  34303. name: "Front",
  34304. image: {
  34305. source: "./media/characters/uzarmazari/front.svg",
  34306. extra: 1575/1455,
  34307. bottom: 152/1727
  34308. }
  34309. },
  34310. back: {
  34311. height: math.unit(58, "feet"),
  34312. weight: math.unit(200, "tons"),
  34313. name: "Back",
  34314. image: {
  34315. source: "./media/characters/uzarmazari/back.svg",
  34316. extra: 1585/1510,
  34317. bottom: 157/1742
  34318. }
  34319. },
  34320. head: {
  34321. height: math.unit(26, "feet"),
  34322. name: "Head",
  34323. image: {
  34324. source: "./media/characters/uzarmazari/head.svg"
  34325. }
  34326. },
  34327. },
  34328. [
  34329. {
  34330. name: "Normal",
  34331. height: math.unit(58, "feet"),
  34332. default: true
  34333. },
  34334. ]
  34335. ))
  34336. characterMakers.push(() => makeCharacter(
  34337. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34338. {
  34339. side: {
  34340. height: math.unit(15, "feet"),
  34341. name: "Side",
  34342. image: {
  34343. source: "./media/characters/akitu/side.svg",
  34344. extra: 1421/1321,
  34345. bottom: 157/1578
  34346. }
  34347. },
  34348. front: {
  34349. height: math.unit(15, "feet"),
  34350. name: "Front",
  34351. image: {
  34352. source: "./media/characters/akitu/front.svg",
  34353. extra: 1435/1326,
  34354. bottom: 232/1667
  34355. }
  34356. },
  34357. },
  34358. [
  34359. {
  34360. name: "Normal",
  34361. height: math.unit(15, "feet"),
  34362. default: true
  34363. },
  34364. ]
  34365. ))
  34366. characterMakers.push(() => makeCharacter(
  34367. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34368. {
  34369. front: {
  34370. height: math.unit(10 + 8/12, "feet"),
  34371. name: "Front",
  34372. image: {
  34373. source: "./media/characters/azalie-croixland/front.svg",
  34374. extra: 1972/1856,
  34375. bottom: 31/2003
  34376. }
  34377. },
  34378. },
  34379. [
  34380. {
  34381. name: "Original Height",
  34382. height: math.unit(5 + 4/12, "feet")
  34383. },
  34384. {
  34385. name: "Normal Height",
  34386. height: math.unit(10 + 8/12, "feet"),
  34387. default: true
  34388. },
  34389. ]
  34390. ))
  34391. characterMakers.push(() => makeCharacter(
  34392. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34393. {
  34394. side: {
  34395. height: math.unit(7 + 1/12, "feet"),
  34396. weight: math.unit(245, "lb"),
  34397. name: "Side",
  34398. image: {
  34399. source: "./media/characters/kavus-kazian/side.svg",
  34400. extra: 349/342,
  34401. bottom: 15/364
  34402. }
  34403. },
  34404. },
  34405. [
  34406. {
  34407. name: "Normal",
  34408. height: math.unit(7 + 1/12, "feet"),
  34409. default: true
  34410. },
  34411. ]
  34412. ))
  34413. characterMakers.push(() => makeCharacter(
  34414. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34415. {
  34416. normal: {
  34417. height: math.unit(5 + 11/12, "feet"),
  34418. name: "Normal",
  34419. image: {
  34420. source: "./media/characters/moonlight-rose/normal.svg",
  34421. extra: 1979/1835,
  34422. bottom: 14/1993
  34423. }
  34424. },
  34425. demon: {
  34426. height: math.unit(5, "km"),
  34427. name: "Demon",
  34428. image: {
  34429. source: "./media/characters/moonlight-rose/demon.svg",
  34430. extra: 986/916,
  34431. bottom: 28/1014
  34432. }
  34433. },
  34434. },
  34435. [
  34436. {
  34437. name: "\"Natural\" height",
  34438. height: math.unit(5 + 11/12, "feet")
  34439. },
  34440. {
  34441. name: "Comfortable Size",
  34442. height: math.unit(40, "meters")
  34443. },
  34444. {
  34445. name: "Common Size",
  34446. height: math.unit(50, "km"),
  34447. default: true
  34448. },
  34449. {
  34450. name: "Demonic",
  34451. height: math.unit(1.24415e+21, "meters")
  34452. },
  34453. ]
  34454. ))
  34455. characterMakers.push(() => makeCharacter(
  34456. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34457. {
  34458. front: {
  34459. height: math.unit(16, "feet"),
  34460. weight: math.unit(610, "kg"),
  34461. name: "Front",
  34462. image: {
  34463. source: "./media/characters/huckle/front.svg",
  34464. extra: 1731/1625,
  34465. bottom: 33/1764
  34466. }
  34467. },
  34468. back: {
  34469. height: math.unit(16, "feet"),
  34470. weight: math.unit(610, "kg"),
  34471. name: "Back",
  34472. image: {
  34473. source: "./media/characters/huckle/back.svg",
  34474. extra: 1738/1651,
  34475. bottom: 37/1775
  34476. }
  34477. },
  34478. laughing: {
  34479. height: math.unit(3.75, "feet"),
  34480. name: "Laughing",
  34481. image: {
  34482. source: "./media/characters/huckle/laughing.svg"
  34483. }
  34484. },
  34485. angry: {
  34486. height: math.unit(4.15, "feet"),
  34487. name: "Angry",
  34488. image: {
  34489. source: "./media/characters/huckle/angry.svg"
  34490. }
  34491. },
  34492. },
  34493. [
  34494. {
  34495. name: "Normal",
  34496. height: math.unit(16, "feet"),
  34497. default: true
  34498. },
  34499. {
  34500. name: "Mini Macro",
  34501. height: math.unit(463, "feet")
  34502. },
  34503. {
  34504. name: "Macro",
  34505. height: math.unit(1680, "meters")
  34506. },
  34507. {
  34508. name: "Mega Macro",
  34509. height: math.unit(175, "km")
  34510. },
  34511. {
  34512. name: "Terra Macro",
  34513. height: math.unit(32, "gigameters")
  34514. },
  34515. {
  34516. name: "Multiverse+",
  34517. height: math.unit(2.56e23, "yottameters")
  34518. },
  34519. ]
  34520. ))
  34521. characterMakers.push(() => makeCharacter(
  34522. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34523. {
  34524. front: {
  34525. height: math.unit(6 + 9/12, "feet"),
  34526. weight: math.unit(280, "lb"),
  34527. name: "Front",
  34528. image: {
  34529. source: "./media/characters/candy/front.svg",
  34530. extra: 234/217,
  34531. bottom: 11/245
  34532. }
  34533. },
  34534. },
  34535. [
  34536. {
  34537. name: "Really Small",
  34538. height: math.unit(0.1, "nm")
  34539. },
  34540. {
  34541. name: "Micro",
  34542. height: math.unit(2, "inches")
  34543. },
  34544. {
  34545. name: "Normal",
  34546. height: math.unit(6 + 9/12, "feet"),
  34547. default: true
  34548. },
  34549. {
  34550. name: "Small Macro",
  34551. height: math.unit(69, "feet")
  34552. },
  34553. {
  34554. name: "Macro",
  34555. height: math.unit(160, "feet")
  34556. },
  34557. {
  34558. name: "Megamacro",
  34559. height: math.unit(22000, "miles")
  34560. },
  34561. {
  34562. name: "Gigamacro",
  34563. height: math.unit(50000, "miles")
  34564. },
  34565. ]
  34566. ))
  34567. characterMakers.push(() => makeCharacter(
  34568. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34569. {
  34570. front: {
  34571. height: math.unit(4, "feet"),
  34572. weight: math.unit(90, "lb"),
  34573. name: "Front",
  34574. image: {
  34575. source: "./media/characters/joey-mcdonald/front.svg",
  34576. extra: 1059/852,
  34577. bottom: 33/1092
  34578. }
  34579. },
  34580. back: {
  34581. height: math.unit(4, "feet"),
  34582. weight: math.unit(90, "lb"),
  34583. name: "Back",
  34584. image: {
  34585. source: "./media/characters/joey-mcdonald/back.svg",
  34586. extra: 1077/879,
  34587. bottom: 5/1082
  34588. }
  34589. },
  34590. frontKobold: {
  34591. height: math.unit(4, "feet"),
  34592. weight: math.unit(100, "lb"),
  34593. name: "Front-kobold",
  34594. image: {
  34595. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34596. extra: 1480/1367,
  34597. bottom: 0/1480
  34598. }
  34599. },
  34600. backKobold: {
  34601. height: math.unit(4, "feet"),
  34602. weight: math.unit(100, "lb"),
  34603. name: "Back-kobold",
  34604. image: {
  34605. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34606. extra: 1449/1361,
  34607. bottom: 0/1449
  34608. }
  34609. },
  34610. },
  34611. [
  34612. {
  34613. name: "Normal",
  34614. height: math.unit(4, "feet"),
  34615. default: true
  34616. },
  34617. ]
  34618. ))
  34619. characterMakers.push(() => makeCharacter(
  34620. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34621. {
  34622. front: {
  34623. height: math.unit(12 + 6/12, "feet"),
  34624. name: "Front",
  34625. image: {
  34626. source: "./media/characters/kass-lockheed/front.svg",
  34627. extra: 354/343,
  34628. bottom: 9/363
  34629. }
  34630. },
  34631. back: {
  34632. height: math.unit(12 + 6/12, "feet"),
  34633. name: "Back",
  34634. image: {
  34635. source: "./media/characters/kass-lockheed/back.svg",
  34636. extra: 364/352,
  34637. bottom: 3/367
  34638. }
  34639. },
  34640. dick: {
  34641. height: math.unit(3.12, "feet"),
  34642. name: "Dick",
  34643. image: {
  34644. source: "./media/characters/kass-lockheed/dick.svg"
  34645. }
  34646. },
  34647. head: {
  34648. height: math.unit(2.6, "feet"),
  34649. name: "Head",
  34650. image: {
  34651. source: "./media/characters/kass-lockheed/head.svg"
  34652. }
  34653. },
  34654. bleh: {
  34655. height: math.unit(2.85, "feet"),
  34656. name: "Bleh",
  34657. image: {
  34658. source: "./media/characters/kass-lockheed/bleh.svg"
  34659. }
  34660. },
  34661. smug: {
  34662. height: math.unit(2.85, "feet"),
  34663. name: "Smug",
  34664. image: {
  34665. source: "./media/characters/kass-lockheed/smug.svg"
  34666. }
  34667. },
  34668. },
  34669. [
  34670. {
  34671. name: "Normal",
  34672. height: math.unit(12 + 6/12, "feet"),
  34673. default: true
  34674. },
  34675. ]
  34676. ))
  34677. characterMakers.push(() => makeCharacter(
  34678. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34679. {
  34680. front: {
  34681. height: math.unit(6 + 2/12, "feet"),
  34682. name: "Front",
  34683. image: {
  34684. source: "./media/characters/taylor/front.svg",
  34685. extra: 639/495,
  34686. bottom: 12/651
  34687. }
  34688. },
  34689. },
  34690. [
  34691. {
  34692. name: "Normal",
  34693. height: math.unit(6 + 2/12, "feet"),
  34694. default: true
  34695. },
  34696. {
  34697. name: "Big",
  34698. height: math.unit(15, "feet")
  34699. },
  34700. {
  34701. name: "Lorg",
  34702. height: math.unit(80, "feet")
  34703. },
  34704. {
  34705. name: "Too Lorg",
  34706. height: math.unit(120, "feet")
  34707. },
  34708. ]
  34709. ))
  34710. characterMakers.push(() => makeCharacter(
  34711. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34712. {
  34713. front: {
  34714. height: math.unit(15, "feet"),
  34715. name: "Front",
  34716. image: {
  34717. source: "./media/characters/kaizer/front.svg",
  34718. extra: 1612/1436,
  34719. bottom: 43/1655
  34720. }
  34721. },
  34722. },
  34723. [
  34724. {
  34725. name: "Normal",
  34726. height: math.unit(15, "feet"),
  34727. default: true
  34728. },
  34729. ]
  34730. ))
  34731. characterMakers.push(() => makeCharacter(
  34732. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34733. {
  34734. front: {
  34735. height: math.unit(2, "feet"),
  34736. weight: math.unit(30, "lb"),
  34737. name: "Front",
  34738. image: {
  34739. source: "./media/characters/sandy/front.svg",
  34740. extra: 1439/1307,
  34741. bottom: 194/1633
  34742. }
  34743. },
  34744. },
  34745. [
  34746. {
  34747. name: "Normal",
  34748. height: math.unit(2, "feet"),
  34749. default: true
  34750. },
  34751. ]
  34752. ))
  34753. characterMakers.push(() => makeCharacter(
  34754. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34755. {
  34756. front: {
  34757. height: math.unit(3, "feet"),
  34758. name: "Front",
  34759. image: {
  34760. source: "./media/characters/mellvi/front.svg",
  34761. extra: 1831/1630,
  34762. bottom: 58/1889
  34763. }
  34764. },
  34765. },
  34766. [
  34767. {
  34768. name: "Normal",
  34769. height: math.unit(3, "feet"),
  34770. default: true
  34771. },
  34772. ]
  34773. ))
  34774. characterMakers.push(() => makeCharacter(
  34775. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34776. {
  34777. front: {
  34778. height: math.unit(5 + 11/12, "feet"),
  34779. weight: math.unit(200, "lb"),
  34780. name: "Front",
  34781. image: {
  34782. source: "./media/characters/shirou/front.svg",
  34783. extra: 2491/2383,
  34784. bottom: 189/2680
  34785. }
  34786. },
  34787. back: {
  34788. height: math.unit(5 + 11/12, "feet"),
  34789. weight: math.unit(200, "lb"),
  34790. name: "Back",
  34791. image: {
  34792. source: "./media/characters/shirou/back.svg",
  34793. extra: 2554/2450,
  34794. bottom: 76/2630
  34795. }
  34796. },
  34797. },
  34798. [
  34799. {
  34800. name: "Normal",
  34801. height: math.unit(5 + 11/12, "feet"),
  34802. default: true
  34803. },
  34804. ]
  34805. ))
  34806. characterMakers.push(() => makeCharacter(
  34807. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34808. {
  34809. front: {
  34810. height: math.unit(6 + 3/12, "feet"),
  34811. weight: math.unit(177, "lb"),
  34812. name: "Front",
  34813. image: {
  34814. source: "./media/characters/noryu/front.svg",
  34815. extra: 973/885,
  34816. bottom: 10/983
  34817. }
  34818. },
  34819. },
  34820. [
  34821. {
  34822. name: "Normal",
  34823. height: math.unit(6 + 3/12, "feet"),
  34824. default: true
  34825. },
  34826. ]
  34827. ))
  34828. characterMakers.push(() => makeCharacter(
  34829. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34830. {
  34831. front: {
  34832. height: math.unit(5 + 6/12, "feet"),
  34833. weight: math.unit(170, "lb"),
  34834. name: "Front",
  34835. image: {
  34836. source: "./media/characters/mevolas-rubenido/front.svg",
  34837. extra: 2109/1901,
  34838. bottom: 96/2205
  34839. }
  34840. },
  34841. },
  34842. [
  34843. {
  34844. name: "Normal",
  34845. height: math.unit(5 + 6/12, "feet"),
  34846. default: true
  34847. },
  34848. ]
  34849. ))
  34850. characterMakers.push(() => makeCharacter(
  34851. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34852. {
  34853. front: {
  34854. height: math.unit(100, "feet"),
  34855. name: "Front",
  34856. image: {
  34857. source: "./media/characters/dee/front.svg",
  34858. extra: 2153/2036,
  34859. bottom: 59/2212
  34860. }
  34861. },
  34862. back: {
  34863. height: math.unit(100, "feet"),
  34864. name: "Back",
  34865. image: {
  34866. source: "./media/characters/dee/back.svg",
  34867. extra: 2183/2058,
  34868. bottom: 75/2258
  34869. }
  34870. },
  34871. foot: {
  34872. height: math.unit(19.43, "feet"),
  34873. name: "Foot",
  34874. image: {
  34875. source: "./media/characters/dee/foot.svg"
  34876. }
  34877. },
  34878. hoof: {
  34879. height: math.unit(20.6, "feet"),
  34880. name: "Hoof",
  34881. image: {
  34882. source: "./media/characters/dee/hoof.svg"
  34883. }
  34884. },
  34885. },
  34886. [
  34887. {
  34888. name: "Macro",
  34889. height: math.unit(100, "feet"),
  34890. default: true
  34891. },
  34892. ]
  34893. ))
  34894. characterMakers.push(() => makeCharacter(
  34895. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34896. {
  34897. front: {
  34898. height: math.unit(5 + 6/12, "feet"),
  34899. name: "Front",
  34900. image: {
  34901. source: "./media/characters/teh/front.svg",
  34902. extra: 1002/847,
  34903. bottom: 62/1064
  34904. }
  34905. },
  34906. },
  34907. [
  34908. {
  34909. name: "Normal",
  34910. height: math.unit(5 + 6/12, "feet"),
  34911. default: true
  34912. },
  34913. ]
  34914. ))
  34915. characterMakers.push(() => makeCharacter(
  34916. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34917. {
  34918. side: {
  34919. height: math.unit(6 + 1/12, "feet"),
  34920. weight: math.unit(204, "lb"),
  34921. name: "Side",
  34922. image: {
  34923. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34924. extra: 974/775,
  34925. bottom: 169/1143
  34926. }
  34927. },
  34928. sitting: {
  34929. height: math.unit(6 + 2/12, "feet"),
  34930. weight: math.unit(204, "lb"),
  34931. name: "Sitting",
  34932. image: {
  34933. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34934. extra: 1175/964,
  34935. bottom: 378/1553
  34936. }
  34937. },
  34938. },
  34939. [
  34940. {
  34941. name: "Normal",
  34942. height: math.unit(6 + 1/12, "feet"),
  34943. default: true
  34944. },
  34945. ]
  34946. ))
  34947. characterMakers.push(() => makeCharacter(
  34948. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34949. {
  34950. front: {
  34951. height: math.unit(6, "inches"),
  34952. name: "Front",
  34953. image: {
  34954. source: "./media/characters/tululi/front.svg",
  34955. extra: 1997/1876,
  34956. bottom: 20/2017
  34957. }
  34958. },
  34959. },
  34960. [
  34961. {
  34962. name: "Normal",
  34963. height: math.unit(6, "inches"),
  34964. default: true
  34965. },
  34966. ]
  34967. ))
  34968. characterMakers.push(() => makeCharacter(
  34969. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34970. {
  34971. front: {
  34972. height: math.unit(4 + 1/12, "feet"),
  34973. name: "Front",
  34974. image: {
  34975. source: "./media/characters/star/front.svg",
  34976. extra: 1493/1189,
  34977. bottom: 48/1541
  34978. }
  34979. },
  34980. },
  34981. [
  34982. {
  34983. name: "Normal",
  34984. height: math.unit(4 + 1/12, "feet"),
  34985. default: true
  34986. },
  34987. ]
  34988. ))
  34989. characterMakers.push(() => makeCharacter(
  34990. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34991. {
  34992. front: {
  34993. height: math.unit(6 + 3/12, "feet"),
  34994. name: "Front",
  34995. image: {
  34996. source: "./media/characters/comet/front.svg",
  34997. extra: 1681/1462,
  34998. bottom: 26/1707
  34999. }
  35000. },
  35001. },
  35002. [
  35003. {
  35004. name: "Normal",
  35005. height: math.unit(6 + 3/12, "feet"),
  35006. default: true
  35007. },
  35008. ]
  35009. ))
  35010. characterMakers.push(() => makeCharacter(
  35011. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35012. {
  35013. front: {
  35014. height: math.unit(950, "feet"),
  35015. name: "Front",
  35016. image: {
  35017. source: "./media/characters/vortex/front.svg",
  35018. extra: 1497/1434,
  35019. bottom: 56/1553
  35020. }
  35021. },
  35022. maw: {
  35023. height: math.unit(285, "feet"),
  35024. name: "Maw",
  35025. image: {
  35026. source: "./media/characters/vortex/maw.svg"
  35027. }
  35028. },
  35029. },
  35030. [
  35031. {
  35032. name: "Macro",
  35033. height: math.unit(950, "feet"),
  35034. default: true
  35035. },
  35036. ]
  35037. ))
  35038. characterMakers.push(() => makeCharacter(
  35039. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35040. {
  35041. front: {
  35042. height: math.unit(600, "feet"),
  35043. weight: math.unit(0.02, "grams"),
  35044. name: "Front",
  35045. image: {
  35046. source: "./media/characters/doodle/front.svg",
  35047. extra: 1578/1413,
  35048. bottom: 37/1615
  35049. }
  35050. },
  35051. },
  35052. [
  35053. {
  35054. name: "Macro",
  35055. height: math.unit(600, "feet"),
  35056. default: true
  35057. },
  35058. ]
  35059. ))
  35060. characterMakers.push(() => makeCharacter(
  35061. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35062. {
  35063. front: {
  35064. height: math.unit(6 + 6/12, "feet"),
  35065. name: "Front",
  35066. image: {
  35067. source: "./media/characters/jai/front.svg",
  35068. extra: 1645/1534,
  35069. bottom: 115/1760
  35070. }
  35071. },
  35072. },
  35073. [
  35074. {
  35075. name: "Normal",
  35076. height: math.unit(6 + 6/12, "feet"),
  35077. default: true
  35078. },
  35079. ]
  35080. ))
  35081. characterMakers.push(() => makeCharacter(
  35082. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35083. {
  35084. front: {
  35085. height: math.unit(6 + 8/12, "feet"),
  35086. name: "Front",
  35087. image: {
  35088. source: "./media/characters/pixel/front.svg",
  35089. extra: 1900/1735,
  35090. bottom: 63/1963
  35091. }
  35092. },
  35093. },
  35094. [
  35095. {
  35096. name: "Normal",
  35097. height: math.unit(6 + 8/12, "feet"),
  35098. default: true
  35099. },
  35100. ]
  35101. ))
  35102. characterMakers.push(() => makeCharacter(
  35103. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35104. {
  35105. front: {
  35106. height: math.unit(4 + 11/12, "feet"),
  35107. weight: math.unit(111, "lb"),
  35108. name: "Front",
  35109. image: {
  35110. source: "./media/characters/rhett/front.svg",
  35111. extra: 1682/1586,
  35112. bottom: 92/1774
  35113. }
  35114. },
  35115. },
  35116. [
  35117. {
  35118. name: "Mini",
  35119. height: math.unit(1 + 1/12, "feet")
  35120. },
  35121. {
  35122. name: "Normal",
  35123. height: math.unit(4 + 11/12, "feet"),
  35124. default: true
  35125. },
  35126. ]
  35127. ))
  35128. characterMakers.push(() => makeCharacter(
  35129. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35130. {
  35131. front: {
  35132. height: math.unit(3 + 3/12, "feet"),
  35133. name: "Front",
  35134. image: {
  35135. source: "./media/characters/penny/front.svg",
  35136. extra: 1406/1311,
  35137. bottom: 26/1432
  35138. }
  35139. },
  35140. },
  35141. [
  35142. {
  35143. name: "Normal",
  35144. height: math.unit(3 + 3/12, "feet"),
  35145. default: true
  35146. },
  35147. ]
  35148. ))
  35149. characterMakers.push(() => makeCharacter(
  35150. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35151. {
  35152. front: {
  35153. height: math.unit(4 + 11/12, "feet"),
  35154. name: "Front",
  35155. image: {
  35156. source: "./media/characters/monty/front.svg",
  35157. extra: 1479/1209,
  35158. bottom: 0/1479
  35159. }
  35160. },
  35161. },
  35162. [
  35163. {
  35164. name: "Normal",
  35165. height: math.unit(4 + 11/12, "feet"),
  35166. default: true
  35167. },
  35168. ]
  35169. ))
  35170. characterMakers.push(() => makeCharacter(
  35171. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35172. {
  35173. front: {
  35174. height: math.unit(8 + 4/12, "feet"),
  35175. name: "Front",
  35176. image: {
  35177. source: "./media/characters/sterling/front.svg",
  35178. extra: 1420/1236,
  35179. bottom: 27/1447
  35180. }
  35181. },
  35182. },
  35183. [
  35184. {
  35185. name: "Normal",
  35186. height: math.unit(8 + 4/12, "feet"),
  35187. default: true
  35188. },
  35189. ]
  35190. ))
  35191. characterMakers.push(() => makeCharacter(
  35192. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35193. {
  35194. front: {
  35195. height: math.unit(15, "feet"),
  35196. name: "Front",
  35197. image: {
  35198. source: "./media/characters/marble/front.svg",
  35199. extra: 973/937,
  35200. bottom: 32/1005
  35201. }
  35202. },
  35203. },
  35204. [
  35205. {
  35206. name: "Normal",
  35207. height: math.unit(15, "feet"),
  35208. default: true
  35209. },
  35210. ]
  35211. ))
  35212. characterMakers.push(() => makeCharacter(
  35213. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35214. {
  35215. front: {
  35216. height: math.unit(3, "inches"),
  35217. name: "Front",
  35218. image: {
  35219. source: "./media/characters/powder/front.svg",
  35220. extra: 1504/1334,
  35221. bottom: 518/2022
  35222. }
  35223. },
  35224. },
  35225. [
  35226. {
  35227. name: "Normal",
  35228. height: math.unit(3, "inches"),
  35229. default: true
  35230. },
  35231. ]
  35232. ))
  35233. characterMakers.push(() => makeCharacter(
  35234. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35235. {
  35236. front: {
  35237. height: math.unit(4 + 5/12, "feet"),
  35238. name: "Front",
  35239. image: {
  35240. source: "./media/characters/joey-raccoon/front.svg",
  35241. extra: 1273/1197,
  35242. bottom: 0/1273
  35243. }
  35244. },
  35245. },
  35246. [
  35247. {
  35248. name: "Normal",
  35249. height: math.unit(4 + 5/12, "feet"),
  35250. default: true
  35251. },
  35252. ]
  35253. ))
  35254. characterMakers.push(() => makeCharacter(
  35255. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35256. {
  35257. front: {
  35258. height: math.unit(8 + 4/12, "feet"),
  35259. name: "Front",
  35260. image: {
  35261. source: "./media/characters/vick/front.svg",
  35262. extra: 2187/2118,
  35263. bottom: 47/2234
  35264. }
  35265. },
  35266. },
  35267. [
  35268. {
  35269. name: "Normal",
  35270. height: math.unit(8 + 4/12, "feet"),
  35271. default: true
  35272. },
  35273. ]
  35274. ))
  35275. characterMakers.push(() => makeCharacter(
  35276. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35277. {
  35278. front: {
  35279. height: math.unit(5 + 5/12, "feet"),
  35280. name: "Front",
  35281. image: {
  35282. source: "./media/characters/mitsy/front.svg",
  35283. extra: 1842/1695,
  35284. bottom: 0/1842
  35285. }
  35286. },
  35287. },
  35288. [
  35289. {
  35290. name: "Normal",
  35291. height: math.unit(5 + 5/12, "feet"),
  35292. default: true
  35293. },
  35294. ]
  35295. ))
  35296. characterMakers.push(() => makeCharacter(
  35297. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35298. {
  35299. front: {
  35300. height: math.unit(6 + 3/12, "feet"),
  35301. name: "Front",
  35302. image: {
  35303. source: "./media/characters/silvy/front.svg",
  35304. extra: 1995/1836,
  35305. bottom: 225/2220
  35306. }
  35307. },
  35308. },
  35309. [
  35310. {
  35311. name: "Normal",
  35312. height: math.unit(6 + 3/12, "feet"),
  35313. default: true
  35314. },
  35315. ]
  35316. ))
  35317. characterMakers.push(() => makeCharacter(
  35318. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35319. {
  35320. front: {
  35321. height: math.unit(3 + 8/12, "feet"),
  35322. name: "Front",
  35323. image: {
  35324. source: "./media/characters/rodney/front.svg",
  35325. extra: 1956/1747,
  35326. bottom: 31/1987
  35327. }
  35328. },
  35329. frontDressed: {
  35330. height: math.unit(2.9, "feet"),
  35331. name: "Front (Dressed)",
  35332. image: {
  35333. source: "./media/characters/rodney/front-dressed.svg",
  35334. extra: 1382/1241,
  35335. bottom: 385/1767
  35336. }
  35337. },
  35338. },
  35339. [
  35340. {
  35341. name: "Normal",
  35342. height: math.unit(3 + 8/12, "feet"),
  35343. default: true
  35344. },
  35345. ]
  35346. ))
  35347. characterMakers.push(() => makeCharacter(
  35348. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35349. {
  35350. front: {
  35351. height: math.unit(5 + 9/12, "feet"),
  35352. weight: math.unit(194, "lbs"),
  35353. name: "Front",
  35354. image: {
  35355. source: "./media/characters/zakail-sudekai/front.svg",
  35356. extra: 2696/2533,
  35357. bottom: 248/2944
  35358. }
  35359. },
  35360. maw: {
  35361. height: math.unit(1.35, "feet"),
  35362. name: "Maw",
  35363. image: {
  35364. source: "./media/characters/zakail-sudekai/maw.svg"
  35365. }
  35366. },
  35367. },
  35368. [
  35369. {
  35370. name: "Normal",
  35371. height: math.unit(5 + 9/12, "feet"),
  35372. default: true
  35373. },
  35374. ]
  35375. ))
  35376. characterMakers.push(() => makeCharacter(
  35377. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35378. {
  35379. front: {
  35380. height: math.unit(8 + 4/12, "feet"),
  35381. weight: math.unit(1200, "lb"),
  35382. name: "Front",
  35383. image: {
  35384. source: "./media/characters/eleanor/front.svg",
  35385. extra: 1226/1192,
  35386. bottom: 52/1278
  35387. }
  35388. },
  35389. back: {
  35390. height: math.unit(8 + 4/12, "feet"),
  35391. weight: math.unit(1200, "lb"),
  35392. name: "Back",
  35393. image: {
  35394. source: "./media/characters/eleanor/back.svg",
  35395. extra: 1242/1184,
  35396. bottom: 60/1302
  35397. }
  35398. },
  35399. head: {
  35400. height: math.unit(2.62, "feet"),
  35401. name: "Head",
  35402. image: {
  35403. source: "./media/characters/eleanor/head.svg"
  35404. }
  35405. },
  35406. },
  35407. [
  35408. {
  35409. name: "Normal",
  35410. height: math.unit(8 + 4/12, "feet"),
  35411. default: true
  35412. },
  35413. ]
  35414. ))
  35415. characterMakers.push(() => makeCharacter(
  35416. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35417. {
  35418. front: {
  35419. height: math.unit(8 + 4/12, "feet"),
  35420. weight: math.unit(750, "lb"),
  35421. name: "Front",
  35422. image: {
  35423. source: "./media/characters/tanya/front.svg",
  35424. extra: 1749/1615,
  35425. bottom: 33/1782
  35426. }
  35427. },
  35428. },
  35429. [
  35430. {
  35431. name: "Normal",
  35432. height: math.unit(8 + 4/12, "feet"),
  35433. default: true
  35434. },
  35435. ]
  35436. ))
  35437. characterMakers.push(() => makeCharacter(
  35438. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35439. {
  35440. front: {
  35441. height: math.unit(5, "feet"),
  35442. weight: math.unit(225, "lb"),
  35443. name: "Front",
  35444. image: {
  35445. source: "./media/characters/cindy/front.svg",
  35446. extra: 1320/1250,
  35447. bottom: 42/1362
  35448. }
  35449. },
  35450. frontDressed: {
  35451. height: math.unit(5, "feet"),
  35452. weight: math.unit(225, "lb"),
  35453. name: "Front (Dressed)",
  35454. image: {
  35455. source: "./media/characters/cindy/front-dressed.svg",
  35456. extra: 1320/1250,
  35457. bottom: 42/1362
  35458. }
  35459. },
  35460. back: {
  35461. height: math.unit(5, "feet"),
  35462. weight: math.unit(225, "lb"),
  35463. name: "Back",
  35464. image: {
  35465. source: "./media/characters/cindy/back.svg",
  35466. extra: 1384/1346,
  35467. bottom: 14/1398
  35468. }
  35469. },
  35470. },
  35471. [
  35472. {
  35473. name: "Normal",
  35474. height: math.unit(5, "feet"),
  35475. default: true
  35476. },
  35477. ]
  35478. ))
  35479. characterMakers.push(() => makeCharacter(
  35480. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35481. {
  35482. front: {
  35483. height: math.unit(6 + 9/12, "feet"),
  35484. weight: math.unit(440, "lb"),
  35485. name: "Front",
  35486. image: {
  35487. source: "./media/characters/wilbur-owen/front.svg",
  35488. extra: 1575/1448,
  35489. bottom: 72/1647
  35490. }
  35491. },
  35492. back: {
  35493. height: math.unit(6 + 9/12, "feet"),
  35494. weight: math.unit(440, "lb"),
  35495. name: "Back",
  35496. image: {
  35497. source: "./media/characters/wilbur-owen/back.svg",
  35498. extra: 1578/1445,
  35499. bottom: 36/1614
  35500. }
  35501. },
  35502. },
  35503. [
  35504. {
  35505. name: "Normal",
  35506. height: math.unit(6 + 9/12, "feet"),
  35507. default: true
  35508. },
  35509. ]
  35510. ))
  35511. characterMakers.push(() => makeCharacter(
  35512. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35513. {
  35514. front: {
  35515. height: math.unit(6 + 5/12, "feet"),
  35516. weight: math.unit(650, "lb"),
  35517. name: "Front",
  35518. image: {
  35519. source: "./media/characters/keegan/front.svg",
  35520. extra: 2387/2198,
  35521. bottom: 33/2420
  35522. }
  35523. },
  35524. side: {
  35525. height: math.unit(6 + 5/12, "feet"),
  35526. weight: math.unit(650, "lb"),
  35527. name: "Side",
  35528. image: {
  35529. source: "./media/characters/keegan/side.svg",
  35530. extra: 2390/2202,
  35531. bottom: 47/2437
  35532. }
  35533. },
  35534. back: {
  35535. height: math.unit(6 + 5/12, "feet"),
  35536. weight: math.unit(650, "lb"),
  35537. name: "Back",
  35538. image: {
  35539. source: "./media/characters/keegan/back.svg",
  35540. extra: 2418/2268,
  35541. bottom: 15/2433
  35542. }
  35543. },
  35544. frontSfw: {
  35545. height: math.unit(6 + 5/12, "feet"),
  35546. weight: math.unit(650, "lb"),
  35547. name: "Front (SFW)",
  35548. image: {
  35549. source: "./media/characters/keegan/front-sfw.svg",
  35550. extra: 2387/2198,
  35551. bottom: 33/2420
  35552. }
  35553. },
  35554. beans: {
  35555. height: math.unit(1.85, "feet"),
  35556. name: "Beans",
  35557. image: {
  35558. source: "./media/characters/keegan/beans.svg"
  35559. }
  35560. },
  35561. },
  35562. [
  35563. {
  35564. name: "Normal",
  35565. height: math.unit(6 + 5/12, "feet"),
  35566. default: true
  35567. },
  35568. ]
  35569. ))
  35570. characterMakers.push(() => makeCharacter(
  35571. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35572. {
  35573. front: {
  35574. height: math.unit(9, "feet"),
  35575. name: "Front",
  35576. image: {
  35577. source: "./media/characters/colton/front.svg",
  35578. extra: 1589/1326,
  35579. bottom: 139/1728
  35580. }
  35581. },
  35582. },
  35583. [
  35584. {
  35585. name: "Normal",
  35586. height: math.unit(9, "feet"),
  35587. default: true
  35588. },
  35589. ]
  35590. ))
  35591. characterMakers.push(() => makeCharacter(
  35592. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35593. {
  35594. front: {
  35595. height: math.unit(2 + 9/12, "feet"),
  35596. name: "Front",
  35597. image: {
  35598. source: "./media/characters/bora/front.svg",
  35599. extra: 1265/1250,
  35600. bottom: 24/1289
  35601. }
  35602. },
  35603. },
  35604. [
  35605. {
  35606. name: "Normal",
  35607. height: math.unit(2 + 9/12, "feet"),
  35608. default: true
  35609. },
  35610. ]
  35611. ))
  35612. characterMakers.push(() => makeCharacter(
  35613. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35614. {
  35615. front: {
  35616. height: math.unit(8, "feet"),
  35617. name: "Front",
  35618. image: {
  35619. source: "./media/characters/myu-myu/front.svg",
  35620. extra: 1949/1857,
  35621. bottom: 90/2039
  35622. }
  35623. },
  35624. },
  35625. [
  35626. {
  35627. name: "Normal",
  35628. height: math.unit(8, "feet"),
  35629. default: true
  35630. },
  35631. {
  35632. name: "Big",
  35633. height: math.unit(15, "feet")
  35634. },
  35635. {
  35636. name: "BIG",
  35637. height: math.unit(25, "feet")
  35638. },
  35639. ]
  35640. ))
  35641. characterMakers.push(() => makeCharacter(
  35642. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35643. {
  35644. side: {
  35645. height: math.unit(7 + 5/12, "feet"),
  35646. weight: math.unit(2800, "lb"),
  35647. name: "Side",
  35648. image: {
  35649. source: "./media/characters/haloren/side.svg",
  35650. extra: 1793/409,
  35651. bottom: 59/1852
  35652. }
  35653. },
  35654. frontPaw: {
  35655. height: math.unit(2.36, "feet"),
  35656. name: "Front paw",
  35657. image: {
  35658. source: "./media/characters/haloren/front-paw.svg"
  35659. }
  35660. },
  35661. hindPaw: {
  35662. height: math.unit(3.18, "feet"),
  35663. name: "Hind paw",
  35664. image: {
  35665. source: "./media/characters/haloren/hind-paw.svg"
  35666. }
  35667. },
  35668. maw: {
  35669. height: math.unit(5.05, "feet"),
  35670. name: "Maw",
  35671. image: {
  35672. source: "./media/characters/haloren/maw.svg"
  35673. }
  35674. },
  35675. dick: {
  35676. height: math.unit(2.90, "feet"),
  35677. name: "Dick",
  35678. image: {
  35679. source: "./media/characters/haloren/dick.svg"
  35680. }
  35681. },
  35682. },
  35683. [
  35684. {
  35685. name: "Normal",
  35686. height: math.unit(7 + 5/12, "feet"),
  35687. default: true
  35688. },
  35689. {
  35690. name: "Enhanced",
  35691. height: math.unit(14 + 3/12, "feet")
  35692. },
  35693. ]
  35694. ))
  35695. characterMakers.push(() => makeCharacter(
  35696. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35697. {
  35698. front: {
  35699. height: math.unit(171, "cm"),
  35700. name: "Front",
  35701. image: {
  35702. source: "./media/characters/kimmy/front.svg",
  35703. extra: 1491/1435,
  35704. bottom: 53/1544
  35705. }
  35706. },
  35707. },
  35708. [
  35709. {
  35710. name: "Small",
  35711. height: math.unit(9, "cm")
  35712. },
  35713. {
  35714. name: "Normal",
  35715. height: math.unit(171, "cm"),
  35716. default: true
  35717. },
  35718. ]
  35719. ))
  35720. characterMakers.push(() => makeCharacter(
  35721. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35722. {
  35723. front: {
  35724. height: math.unit(8, "feet"),
  35725. weight: math.unit(300, "lb"),
  35726. name: "Front",
  35727. image: {
  35728. source: "./media/characters/galeboomer/front.svg",
  35729. extra: 4651/4415,
  35730. bottom: 162/4813
  35731. }
  35732. },
  35733. back: {
  35734. height: math.unit(8, "feet"),
  35735. weight: math.unit(300, "lb"),
  35736. name: "Back",
  35737. image: {
  35738. source: "./media/characters/galeboomer/back.svg",
  35739. extra: 4544/4314,
  35740. bottom: 16/4560
  35741. }
  35742. },
  35743. frontAlt: {
  35744. height: math.unit(8, "feet"),
  35745. weight: math.unit(300, "lb"),
  35746. name: "Front (Alt)",
  35747. image: {
  35748. source: "./media/characters/galeboomer/front-alt.svg",
  35749. extra: 4458/4228,
  35750. bottom: 68/4526
  35751. }
  35752. },
  35753. maw: {
  35754. height: math.unit(1.2, "feet"),
  35755. name: "Maw",
  35756. image: {
  35757. source: "./media/characters/galeboomer/maw.svg"
  35758. }
  35759. },
  35760. },
  35761. [
  35762. {
  35763. name: "Normal",
  35764. height: math.unit(8, "feet"),
  35765. default: true
  35766. },
  35767. ]
  35768. ))
  35769. characterMakers.push(() => makeCharacter(
  35770. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35771. {
  35772. front: {
  35773. height: math.unit(5 + 9/12, "feet"),
  35774. weight: math.unit(120, "lb"),
  35775. name: "Front",
  35776. image: {
  35777. source: "./media/characters/chyr/front.svg",
  35778. extra: 1323/1254,
  35779. bottom: 63/1386
  35780. }
  35781. },
  35782. back: {
  35783. height: math.unit(5 + 9/12, "feet"),
  35784. weight: math.unit(120, "lb"),
  35785. name: "Back",
  35786. image: {
  35787. source: "./media/characters/chyr/back.svg",
  35788. extra: 1323/1252,
  35789. bottom: 48/1371
  35790. }
  35791. },
  35792. },
  35793. [
  35794. {
  35795. name: "Normal",
  35796. height: math.unit(5 + 9/12, "feet"),
  35797. default: true
  35798. },
  35799. ]
  35800. ))
  35801. characterMakers.push(() => makeCharacter(
  35802. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35803. {
  35804. front: {
  35805. height: math.unit(7, "feet"),
  35806. weight: math.unit(310, "lb"),
  35807. name: "Front",
  35808. image: {
  35809. source: "./media/characters/solarus/front.svg",
  35810. extra: 2415/2021,
  35811. bottom: 103/2518
  35812. }
  35813. },
  35814. back: {
  35815. height: math.unit(7, "feet"),
  35816. weight: math.unit(310, "lb"),
  35817. name: "Back",
  35818. image: {
  35819. source: "./media/characters/solarus/back.svg",
  35820. extra: 2463/2089,
  35821. bottom: 79/2542
  35822. }
  35823. },
  35824. },
  35825. [
  35826. {
  35827. name: "Normal",
  35828. height: math.unit(7, "feet"),
  35829. default: true
  35830. },
  35831. ]
  35832. ))
  35833. characterMakers.push(() => makeCharacter(
  35834. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35835. {
  35836. front: {
  35837. height: math.unit(16, "feet"),
  35838. name: "Front",
  35839. image: {
  35840. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35841. extra: 1844/1780,
  35842. bottom: 58/1902
  35843. }
  35844. },
  35845. winterCoat: {
  35846. height: math.unit(16, "feet"),
  35847. name: "Winter Coat",
  35848. image: {
  35849. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35850. extra: 1807/1775,
  35851. bottom: 69/1876
  35852. }
  35853. },
  35854. },
  35855. [
  35856. {
  35857. name: "Normal",
  35858. height: math.unit(16, "feet"),
  35859. default: true
  35860. },
  35861. {
  35862. name: "Chicago Size",
  35863. height: math.unit(560, "feet")
  35864. },
  35865. ]
  35866. ))
  35867. characterMakers.push(() => makeCharacter(
  35868. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35869. {
  35870. front: {
  35871. height: math.unit(11 + 6/12, "feet"),
  35872. weight: math.unit(1366, "lb"),
  35873. name: "Front",
  35874. image: {
  35875. source: "./media/characters/lexor/front.svg",
  35876. extra: 1560/1481,
  35877. bottom: 211/1771
  35878. }
  35879. },
  35880. back: {
  35881. height: math.unit(11 + 6/12, "feet"),
  35882. weight: math.unit(1366, "lb"),
  35883. name: "Back",
  35884. image: {
  35885. source: "./media/characters/lexor/back.svg",
  35886. extra: 1614/1533,
  35887. bottom: 76/1690
  35888. }
  35889. },
  35890. maw: {
  35891. height: math.unit(3, "feet"),
  35892. name: "Maw",
  35893. image: {
  35894. source: "./media/characters/lexor/maw.svg"
  35895. }
  35896. },
  35897. dick: {
  35898. height: math.unit(2.59, "feet"),
  35899. name: "Dick",
  35900. image: {
  35901. source: "./media/characters/lexor/dick.svg"
  35902. }
  35903. },
  35904. },
  35905. [
  35906. {
  35907. name: "Normal",
  35908. height: math.unit(11 + 6/12, "feet"),
  35909. default: true
  35910. },
  35911. ]
  35912. ))
  35913. characterMakers.push(() => makeCharacter(
  35914. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35915. {
  35916. front: {
  35917. height: math.unit(5 + 8/12, "feet"),
  35918. name: "Front",
  35919. image: {
  35920. source: "./media/characters/magnum/front.svg",
  35921. extra: 942/855,
  35922. bottom: 26/968
  35923. }
  35924. },
  35925. },
  35926. [
  35927. {
  35928. name: "Normal",
  35929. height: math.unit(5 + 8/12, "feet"),
  35930. default: true
  35931. },
  35932. ]
  35933. ))
  35934. characterMakers.push(() => makeCharacter(
  35935. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35936. {
  35937. front: {
  35938. height: math.unit(18 + 4/12, "feet"),
  35939. weight: math.unit(1500, "kg"),
  35940. name: "Front",
  35941. image: {
  35942. source: "./media/characters/solas-sharpsman/front.svg",
  35943. extra: 1698/1589,
  35944. bottom: 0/1698
  35945. }
  35946. },
  35947. },
  35948. [
  35949. {
  35950. name: "Normal",
  35951. height: math.unit(18 + 4/12, "feet"),
  35952. default: true
  35953. },
  35954. ]
  35955. ))
  35956. characterMakers.push(() => makeCharacter(
  35957. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35958. {
  35959. front: {
  35960. height: math.unit(5 + 5/12, "feet"),
  35961. weight: math.unit(180, "lb"),
  35962. name: "Front",
  35963. image: {
  35964. source: "./media/characters/october/front.svg",
  35965. extra: 1800/1650,
  35966. bottom: 0/1800
  35967. }
  35968. },
  35969. frontNsfw: {
  35970. height: math.unit(5 + 5/12, "feet"),
  35971. weight: math.unit(180, "lb"),
  35972. name: "Front (NSFW)",
  35973. image: {
  35974. source: "./media/characters/october/front-nsfw.svg",
  35975. extra: 1392/1307,
  35976. bottom: 42/1434
  35977. }
  35978. },
  35979. },
  35980. [
  35981. {
  35982. name: "Normal",
  35983. height: math.unit(5 + 5/12, "feet"),
  35984. default: true
  35985. },
  35986. ]
  35987. ))
  35988. characterMakers.push(() => makeCharacter(
  35989. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35990. {
  35991. front: {
  35992. height: math.unit(8 + 6/12, "feet"),
  35993. name: "Front",
  35994. image: {
  35995. source: "./media/characters/essynkardi/front.svg",
  35996. extra: 1914/1846,
  35997. bottom: 22/1936
  35998. }
  35999. },
  36000. },
  36001. [
  36002. {
  36003. name: "Normal",
  36004. height: math.unit(8 + 6/12, "feet"),
  36005. default: true
  36006. },
  36007. ]
  36008. ))
  36009. characterMakers.push(() => makeCharacter(
  36010. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36011. {
  36012. front: {
  36013. height: math.unit(6 + 6/12, "feet"),
  36014. weight: math.unit(7, "lb"),
  36015. name: "Front",
  36016. image: {
  36017. source: "./media/characters/icky/front.svg",
  36018. extra: 813/782,
  36019. bottom: 66/879
  36020. }
  36021. },
  36022. back: {
  36023. height: math.unit(6 + 6/12, "feet"),
  36024. weight: math.unit(7, "lb"),
  36025. name: "Back",
  36026. image: {
  36027. source: "./media/characters/icky/back.svg",
  36028. extra: 754/735,
  36029. bottom: 56/810
  36030. }
  36031. },
  36032. },
  36033. [
  36034. {
  36035. name: "Normal",
  36036. height: math.unit(6 + 6/12, "feet"),
  36037. default: true
  36038. },
  36039. ]
  36040. ))
  36041. characterMakers.push(() => makeCharacter(
  36042. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36043. {
  36044. front: {
  36045. height: math.unit(15, "feet"),
  36046. name: "Front",
  36047. image: {
  36048. source: "./media/characters/rojas/front.svg",
  36049. extra: 1462/1408,
  36050. bottom: 95/1557
  36051. }
  36052. },
  36053. back: {
  36054. height: math.unit(15, "feet"),
  36055. name: "Back",
  36056. image: {
  36057. source: "./media/characters/rojas/back.svg",
  36058. extra: 1023/954,
  36059. bottom: 28/1051
  36060. }
  36061. },
  36062. },
  36063. [
  36064. {
  36065. name: "Normal",
  36066. height: math.unit(15, "feet"),
  36067. default: true
  36068. },
  36069. ]
  36070. ))
  36071. characterMakers.push(() => makeCharacter(
  36072. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36073. {
  36074. frontHuman: {
  36075. height: math.unit(5 + 7/12, "feet"),
  36076. name: "Front (Human)",
  36077. image: {
  36078. source: "./media/characters/alek-dryagan/front-human.svg",
  36079. extra: 1687/1667,
  36080. bottom: 69/1756
  36081. }
  36082. },
  36083. backHuman: {
  36084. height: math.unit(5 + 7/12, "feet"),
  36085. name: "Back (Human)",
  36086. image: {
  36087. source: "./media/characters/alek-dryagan/back-human.svg",
  36088. extra: 1670/1649,
  36089. bottom: 65/1735
  36090. }
  36091. },
  36092. frontDemi: {
  36093. height: math.unit(65, "feet"),
  36094. name: "Front (Demi)",
  36095. image: {
  36096. source: "./media/characters/alek-dryagan/front-demi.svg",
  36097. extra: 1669/1642,
  36098. bottom: 49/1718
  36099. }
  36100. },
  36101. backDemi: {
  36102. height: math.unit(65, "feet"),
  36103. name: "Back (Demi)",
  36104. image: {
  36105. source: "./media/characters/alek-dryagan/back-demi.svg",
  36106. extra: 1658/1637,
  36107. bottom: 40/1698
  36108. }
  36109. },
  36110. mawHuman: {
  36111. height: math.unit(0.3, "feet"),
  36112. name: "Maw (Human)",
  36113. image: {
  36114. source: "./media/characters/alek-dryagan/maw-human.svg"
  36115. }
  36116. },
  36117. mawDemi: {
  36118. height: math.unit(3.8, "feet"),
  36119. name: "Maw (Demi)",
  36120. image: {
  36121. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36122. }
  36123. },
  36124. },
  36125. [
  36126. {
  36127. name: "Normal",
  36128. height: math.unit(5 + 7/12, "feet"),
  36129. default: true
  36130. },
  36131. ]
  36132. ))
  36133. characterMakers.push(() => makeCharacter(
  36134. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36135. {
  36136. frontHuman: {
  36137. height: math.unit(5 + 2/12, "feet"),
  36138. name: "Front (Human)",
  36139. image: {
  36140. source: "./media/characters/gen/front-human.svg",
  36141. extra: 1627/1538,
  36142. bottom: 71/1698
  36143. }
  36144. },
  36145. backHuman: {
  36146. height: math.unit(5 + 2/12, "feet"),
  36147. name: "Back (Human)",
  36148. image: {
  36149. source: "./media/characters/gen/back-human.svg",
  36150. extra: 1638/1548,
  36151. bottom: 69/1707
  36152. }
  36153. },
  36154. frontDemi: {
  36155. height: math.unit(5 + 2/12, "feet"),
  36156. name: "Front (Demi)",
  36157. image: {
  36158. source: "./media/characters/gen/front-demi.svg",
  36159. extra: 1627/1538,
  36160. bottom: 71/1698
  36161. }
  36162. },
  36163. backDemi: {
  36164. height: math.unit(5 + 2/12, "feet"),
  36165. name: "Back (Demi)",
  36166. image: {
  36167. source: "./media/characters/gen/back-demi.svg",
  36168. extra: 1638/1548,
  36169. bottom: 69/1707
  36170. }
  36171. },
  36172. },
  36173. [
  36174. {
  36175. name: "Normal",
  36176. height: math.unit(5 + 2/12, "feet"),
  36177. default: true
  36178. },
  36179. ]
  36180. ))
  36181. characterMakers.push(() => makeCharacter(
  36182. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36183. {
  36184. frontImp: {
  36185. height: math.unit(1 + 11/12, "feet"),
  36186. name: "Front (Imp)",
  36187. image: {
  36188. source: "./media/characters/max-kobold/front-imp.svg",
  36189. extra: 1238/1134,
  36190. bottom: 81/1319
  36191. }
  36192. },
  36193. backImp: {
  36194. height: math.unit(1 + 11/12, "feet"),
  36195. name: "Back (Imp)",
  36196. image: {
  36197. source: "./media/characters/max-kobold/back-imp.svg",
  36198. extra: 1334/1175,
  36199. bottom: 34/1368
  36200. }
  36201. },
  36202. frontDemi: {
  36203. height: math.unit(5 + 9/12, "feet"),
  36204. name: "Front (Demi)",
  36205. image: {
  36206. source: "./media/characters/max-kobold/front-demi.svg",
  36207. extra: 1715/1685,
  36208. bottom: 54/1769
  36209. }
  36210. },
  36211. backDemi: {
  36212. height: math.unit(5 + 9/12, "feet"),
  36213. name: "Back (Demi)",
  36214. image: {
  36215. source: "./media/characters/max-kobold/back-demi.svg",
  36216. extra: 1752/1729,
  36217. bottom: 41/1793
  36218. }
  36219. },
  36220. handImp: {
  36221. height: math.unit(0.45, "feet"),
  36222. name: "Hand (Imp)",
  36223. image: {
  36224. source: "./media/characters/max-kobold/hand.svg"
  36225. }
  36226. },
  36227. pawImp: {
  36228. height: math.unit(0.46, "feet"),
  36229. name: "Paw (Imp)",
  36230. image: {
  36231. source: "./media/characters/max-kobold/paw.svg"
  36232. }
  36233. },
  36234. handDemi: {
  36235. height: math.unit(0.80, "feet"),
  36236. name: "Hand (Demi)",
  36237. image: {
  36238. source: "./media/characters/max-kobold/hand.svg"
  36239. }
  36240. },
  36241. pawDemi: {
  36242. height: math.unit(1.1, "feet"),
  36243. name: "Paw (Demi)",
  36244. image: {
  36245. source: "./media/characters/max-kobold/paw.svg"
  36246. }
  36247. },
  36248. headImp: {
  36249. height: math.unit(1.33, "feet"),
  36250. name: "Head (Imp)",
  36251. image: {
  36252. source: "./media/characters/max-kobold/head-imp.svg"
  36253. }
  36254. },
  36255. mawImp: {
  36256. height: math.unit(0.75, "feet"),
  36257. name: "Maw (Imp)",
  36258. image: {
  36259. source: "./media/characters/max-kobold/maw-imp.svg"
  36260. }
  36261. },
  36262. mawDemi: {
  36263. height: math.unit(0.42, "feet"),
  36264. name: "Maw (Demi)",
  36265. image: {
  36266. source: "./media/characters/max-kobold/maw-demi.svg"
  36267. }
  36268. },
  36269. },
  36270. [
  36271. {
  36272. name: "Normal",
  36273. height: math.unit(1 + 11/12, "feet"),
  36274. default: true
  36275. },
  36276. ]
  36277. ))
  36278. characterMakers.push(() => makeCharacter(
  36279. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36280. {
  36281. front: {
  36282. height: math.unit(7 + 5/12, "feet"),
  36283. name: "Front",
  36284. image: {
  36285. source: "./media/characters/carbon/front.svg",
  36286. extra: 1754/1689,
  36287. bottom: 65/1819
  36288. }
  36289. },
  36290. back: {
  36291. height: math.unit(7 + 5/12, "feet"),
  36292. name: "Back",
  36293. image: {
  36294. source: "./media/characters/carbon/back.svg",
  36295. extra: 1762/1695,
  36296. bottom: 24/1786
  36297. }
  36298. },
  36299. frontGigantamax: {
  36300. height: math.unit(150, "feet"),
  36301. name: "Front (Gigantamax)",
  36302. image: {
  36303. source: "./media/characters/carbon/front-gigantamax.svg",
  36304. extra: 1826/1669,
  36305. bottom: 59/1885
  36306. }
  36307. },
  36308. backGigantamax: {
  36309. height: math.unit(150, "feet"),
  36310. name: "Back (Gigantamax)",
  36311. image: {
  36312. source: "./media/characters/carbon/back-gigantamax.svg",
  36313. extra: 1796/1653,
  36314. bottom: 53/1849
  36315. }
  36316. },
  36317. maw: {
  36318. height: math.unit(0.48, "feet"),
  36319. name: "Maw",
  36320. image: {
  36321. source: "./media/characters/carbon/maw.svg"
  36322. }
  36323. },
  36324. mawGigantamax: {
  36325. height: math.unit(7.5, "feet"),
  36326. name: "Maw (Gigantamax)",
  36327. image: {
  36328. source: "./media/characters/carbon/maw-gigantamax.svg"
  36329. }
  36330. },
  36331. },
  36332. [
  36333. {
  36334. name: "Normal",
  36335. height: math.unit(7 + 5/12, "feet"),
  36336. default: true
  36337. },
  36338. ]
  36339. ))
  36340. characterMakers.push(() => makeCharacter(
  36341. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36342. {
  36343. front: {
  36344. height: math.unit(6, "feet"),
  36345. name: "Front",
  36346. image: {
  36347. source: "./media/characters/maverick/front.svg",
  36348. extra: 1672/1661,
  36349. bottom: 85/1757
  36350. }
  36351. },
  36352. back: {
  36353. height: math.unit(6, "feet"),
  36354. name: "Back",
  36355. image: {
  36356. source: "./media/characters/maverick/back.svg",
  36357. extra: 1642/1631,
  36358. bottom: 38/1680
  36359. }
  36360. },
  36361. },
  36362. [
  36363. {
  36364. name: "Normal",
  36365. height: math.unit(6, "feet"),
  36366. default: true
  36367. },
  36368. ]
  36369. ))
  36370. characterMakers.push(() => makeCharacter(
  36371. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36372. {
  36373. front: {
  36374. height: math.unit(15, "feet"),
  36375. weight: math.unit(615, "lb"),
  36376. name: "Front",
  36377. image: {
  36378. source: "./media/characters/grockle/front.svg",
  36379. extra: 1535/1427,
  36380. bottom: 56/1591
  36381. }
  36382. },
  36383. },
  36384. [
  36385. {
  36386. name: "Normal",
  36387. height: math.unit(15, "feet"),
  36388. default: true
  36389. },
  36390. {
  36391. name: "Large",
  36392. height: math.unit(150, "feet")
  36393. },
  36394. {
  36395. name: "Macro",
  36396. height: math.unit(1876, "feet")
  36397. },
  36398. {
  36399. name: "Mega Macro",
  36400. height: math.unit(121940, "feet")
  36401. },
  36402. {
  36403. name: "Giga Macro",
  36404. height: math.unit(750, "km")
  36405. },
  36406. {
  36407. name: "Tera Macro",
  36408. height: math.unit(750000, "km")
  36409. },
  36410. {
  36411. name: "Galactic",
  36412. height: math.unit(1.4e5, "km")
  36413. },
  36414. {
  36415. name: "Godlike",
  36416. height: math.unit(9.8e280, "galaxies")
  36417. },
  36418. ]
  36419. ))
  36420. characterMakers.push(() => makeCharacter(
  36421. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36422. {
  36423. front: {
  36424. height: math.unit(11, "meters"),
  36425. weight: math.unit(20, "tonnes"),
  36426. name: "Front",
  36427. image: {
  36428. source: "./media/characters/alistair/front.svg",
  36429. extra: 1265/1009,
  36430. bottom: 93/1358
  36431. }
  36432. },
  36433. },
  36434. [
  36435. {
  36436. name: "Normal",
  36437. height: math.unit(11, "meters"),
  36438. default: true
  36439. },
  36440. ]
  36441. ))
  36442. characterMakers.push(() => makeCharacter(
  36443. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36444. {
  36445. front: {
  36446. height: math.unit(5 + 8/12, "feet"),
  36447. name: "Front",
  36448. image: {
  36449. source: "./media/characters/haruka/front.svg",
  36450. extra: 2012/1952,
  36451. bottom: 0/2012
  36452. }
  36453. },
  36454. },
  36455. [
  36456. {
  36457. name: "Normal",
  36458. height: math.unit(5 + 8/12, "feet"),
  36459. default: true
  36460. },
  36461. ]
  36462. ))
  36463. characterMakers.push(() => makeCharacter(
  36464. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36465. {
  36466. back: {
  36467. height: math.unit(9, "feet"),
  36468. name: "Back",
  36469. image: {
  36470. source: "./media/characters/vivian-sylveon/back.svg",
  36471. extra: 1853/1714,
  36472. bottom: 0/1853
  36473. }
  36474. },
  36475. },
  36476. [
  36477. {
  36478. name: "Normal",
  36479. height: math.unit(9, "feet"),
  36480. default: true
  36481. },
  36482. {
  36483. name: "Macro",
  36484. height: math.unit(500, "feet")
  36485. },
  36486. {
  36487. name: "Megamacro",
  36488. height: math.unit(600, "miles")
  36489. },
  36490. {
  36491. name: "Gigamacro",
  36492. height: math.unit(30000, "miles")
  36493. },
  36494. ]
  36495. ))
  36496. characterMakers.push(() => makeCharacter(
  36497. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36498. {
  36499. anthro: {
  36500. height: math.unit(5 + 10/12, "feet"),
  36501. weight: math.unit(100, "lb"),
  36502. name: "Anthro",
  36503. image: {
  36504. source: "./media/characters/daiki/anthro.svg",
  36505. extra: 1115/1027,
  36506. bottom: 69/1184
  36507. }
  36508. },
  36509. feral: {
  36510. height: math.unit(200, "feet"),
  36511. name: "Feral",
  36512. image: {
  36513. source: "./media/characters/daiki/feral.svg",
  36514. extra: 1256/313,
  36515. bottom: 39/1295
  36516. }
  36517. },
  36518. feralHead: {
  36519. height: math.unit(171, "feet"),
  36520. name: "Feral Head",
  36521. image: {
  36522. source: "./media/characters/daiki/feral-head.svg"
  36523. }
  36524. },
  36525. manaDragon: {
  36526. height: math.unit(170, "meters"),
  36527. name: "Mana-dragon",
  36528. image: {
  36529. source: "./media/characters/daiki/mana-dragon.svg",
  36530. extra: 763/420,
  36531. bottom: 97/860
  36532. }
  36533. },
  36534. },
  36535. [
  36536. {
  36537. name: "Normal",
  36538. height: math.unit(5 + 10/12, "feet"),
  36539. default: true
  36540. },
  36541. ]
  36542. ))
  36543. characterMakers.push(() => makeCharacter(
  36544. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36545. {
  36546. fullyEquippedFront: {
  36547. height: math.unit(3 + 1/12, "feet"),
  36548. weight: math.unit(24, "lb"),
  36549. name: "Fully Equipped (Front)",
  36550. image: {
  36551. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36552. extra: 687/605,
  36553. bottom: 18/705
  36554. }
  36555. },
  36556. fullyEquippedBack: {
  36557. height: math.unit(3 + 1/12, "feet"),
  36558. weight: math.unit(24, "lb"),
  36559. name: "Fully Equipped (Back)",
  36560. image: {
  36561. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36562. extra: 689/590,
  36563. bottom: 18/707
  36564. }
  36565. },
  36566. dailyWear: {
  36567. height: math.unit(3 + 1/12, "feet"),
  36568. weight: math.unit(24, "lb"),
  36569. name: "Daily Wear",
  36570. image: {
  36571. source: "./media/characters/tea-spot/daily-wear.svg",
  36572. extra: 701/620,
  36573. bottom: 21/722
  36574. }
  36575. },
  36576. maidWork: {
  36577. height: math.unit(3 + 1/12, "feet"),
  36578. weight: math.unit(24, "lb"),
  36579. name: "Maid Work",
  36580. image: {
  36581. source: "./media/characters/tea-spot/maid-work.svg",
  36582. extra: 693/609,
  36583. bottom: 15/708
  36584. }
  36585. },
  36586. },
  36587. [
  36588. {
  36589. name: "Normal",
  36590. height: math.unit(3 + 1/12, "feet"),
  36591. default: true
  36592. },
  36593. ]
  36594. ))
  36595. characterMakers.push(() => makeCharacter(
  36596. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36597. {
  36598. front: {
  36599. height: math.unit(175, "cm"),
  36600. weight: math.unit(75, "kg"),
  36601. name: "Front",
  36602. image: {
  36603. source: "./media/characters/chee/front.svg",
  36604. extra: 1796/1740,
  36605. bottom: 40/1836
  36606. }
  36607. },
  36608. },
  36609. [
  36610. {
  36611. name: "Micro-Micro",
  36612. height: math.unit(1, "nm")
  36613. },
  36614. {
  36615. name: "Micro-erst",
  36616. height: math.unit(1, "micrometer")
  36617. },
  36618. {
  36619. name: "Micro-er",
  36620. height: math.unit(1, "cm")
  36621. },
  36622. {
  36623. name: "Normal",
  36624. height: math.unit(175, "cm"),
  36625. default: true
  36626. },
  36627. {
  36628. name: "Macro",
  36629. height: math.unit(100, "m")
  36630. },
  36631. {
  36632. name: "Macro-er",
  36633. height: math.unit(1, "km")
  36634. },
  36635. {
  36636. name: "Macro-erst",
  36637. height: math.unit(10, "km")
  36638. },
  36639. {
  36640. name: "Macro-Macro",
  36641. height: math.unit(100, "km")
  36642. },
  36643. ]
  36644. ))
  36645. characterMakers.push(() => makeCharacter(
  36646. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36647. {
  36648. front: {
  36649. height: math.unit(11 + 9/12, "feet"),
  36650. weight: math.unit(935, "lb"),
  36651. name: "Front",
  36652. image: {
  36653. source: "./media/characters/kingsley/front.svg",
  36654. extra: 1803/1674,
  36655. bottom: 127/1930
  36656. }
  36657. },
  36658. frontNude: {
  36659. height: math.unit(11 + 9/12, "feet"),
  36660. weight: math.unit(935, "lb"),
  36661. name: "Front (Nude)",
  36662. image: {
  36663. source: "./media/characters/kingsley/front-nude.svg",
  36664. extra: 1803/1674,
  36665. bottom: 127/1930
  36666. }
  36667. },
  36668. },
  36669. [
  36670. {
  36671. name: "Normal",
  36672. height: math.unit(11 + 9/12, "feet"),
  36673. default: true
  36674. },
  36675. ]
  36676. ))
  36677. characterMakers.push(() => makeCharacter(
  36678. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36679. {
  36680. side: {
  36681. height: math.unit(9, "feet"),
  36682. name: "Side",
  36683. image: {
  36684. source: "./media/characters/rymel/side.svg",
  36685. extra: 792/469,
  36686. bottom: 121/913
  36687. }
  36688. },
  36689. maw: {
  36690. height: math.unit(2.4, "meters"),
  36691. name: "Maw",
  36692. image: {
  36693. source: "./media/characters/rymel/maw.svg"
  36694. }
  36695. },
  36696. },
  36697. [
  36698. {
  36699. name: "House Drake",
  36700. height: math.unit(2, "feet")
  36701. },
  36702. {
  36703. name: "Reduced",
  36704. height: math.unit(4.5, "feet")
  36705. },
  36706. {
  36707. name: "Normal",
  36708. height: math.unit(9, "feet"),
  36709. default: true
  36710. },
  36711. ]
  36712. ))
  36713. characterMakers.push(() => makeCharacter(
  36714. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36715. {
  36716. front: {
  36717. height: math.unit(1.74, "meters"),
  36718. weight: math.unit(55, "kg"),
  36719. name: "Front",
  36720. image: {
  36721. source: "./media/characters/rubus/front.svg",
  36722. extra: 1894/1742,
  36723. bottom: 44/1938
  36724. }
  36725. },
  36726. },
  36727. [
  36728. {
  36729. name: "Normal",
  36730. height: math.unit(1.74, "meters"),
  36731. default: true
  36732. },
  36733. ]
  36734. ))
  36735. characterMakers.push(() => makeCharacter(
  36736. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36737. {
  36738. front: {
  36739. height: math.unit(5 + 2/12, "feet"),
  36740. weight: math.unit(112, "lb"),
  36741. name: "Front",
  36742. image: {
  36743. source: "./media/characters/cassie-kingston/front.svg",
  36744. extra: 1438/1390,
  36745. bottom: 47/1485
  36746. }
  36747. },
  36748. },
  36749. [
  36750. {
  36751. name: "Normal",
  36752. height: math.unit(5 + 2/12, "feet"),
  36753. default: true
  36754. },
  36755. {
  36756. name: "Macro",
  36757. height: math.unit(128, "feet")
  36758. },
  36759. {
  36760. name: "Megamacro",
  36761. height: math.unit(2.56, "miles")
  36762. },
  36763. ]
  36764. ))
  36765. characterMakers.push(() => makeCharacter(
  36766. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36767. {
  36768. front: {
  36769. height: math.unit(7, "feet"),
  36770. name: "Front",
  36771. image: {
  36772. source: "./media/characters/fox/front.svg",
  36773. extra: 1798/1703,
  36774. bottom: 55/1853
  36775. }
  36776. },
  36777. back: {
  36778. height: math.unit(7, "feet"),
  36779. name: "Back",
  36780. image: {
  36781. source: "./media/characters/fox/back.svg",
  36782. extra: 1748/1649,
  36783. bottom: 32/1780
  36784. }
  36785. },
  36786. head: {
  36787. height: math.unit(1.95, "feet"),
  36788. name: "Head",
  36789. image: {
  36790. source: "./media/characters/fox/head.svg"
  36791. }
  36792. },
  36793. dick: {
  36794. height: math.unit(1.33, "feet"),
  36795. name: "Dick",
  36796. image: {
  36797. source: "./media/characters/fox/dick.svg"
  36798. }
  36799. },
  36800. foot: {
  36801. height: math.unit(1, "feet"),
  36802. name: "Foot",
  36803. image: {
  36804. source: "./media/characters/fox/foot.svg"
  36805. }
  36806. },
  36807. paw: {
  36808. height: math.unit(0.92, "feet"),
  36809. name: "Paw",
  36810. image: {
  36811. source: "./media/characters/fox/paw.svg"
  36812. }
  36813. },
  36814. },
  36815. [
  36816. {
  36817. name: "Small",
  36818. height: math.unit(3, "inches")
  36819. },
  36820. {
  36821. name: "\"Realistic\"",
  36822. height: math.unit(7, "feet")
  36823. },
  36824. {
  36825. name: "Normal",
  36826. height: math.unit(150, "feet"),
  36827. default: true
  36828. },
  36829. {
  36830. name: "BIG",
  36831. height: math.unit(1200, "feet")
  36832. },
  36833. {
  36834. name: "👀",
  36835. height: math.unit(5, "miles")
  36836. },
  36837. {
  36838. name: "👀👀👀",
  36839. height: math.unit(64, "miles")
  36840. },
  36841. ]
  36842. ))
  36843. characterMakers.push(() => makeCharacter(
  36844. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36845. {
  36846. front: {
  36847. height: math.unit(625, "feet"),
  36848. name: "Front",
  36849. image: {
  36850. source: "./media/characters/asonja-rossa/front.svg",
  36851. extra: 1833/1686,
  36852. bottom: 24/1857
  36853. }
  36854. },
  36855. back: {
  36856. height: math.unit(625, "feet"),
  36857. name: "Back",
  36858. image: {
  36859. source: "./media/characters/asonja-rossa/back.svg",
  36860. extra: 1852/1753,
  36861. bottom: 26/1878
  36862. }
  36863. },
  36864. },
  36865. [
  36866. {
  36867. name: "Macro",
  36868. height: math.unit(625, "feet"),
  36869. default: true
  36870. },
  36871. ]
  36872. ))
  36873. characterMakers.push(() => makeCharacter(
  36874. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36875. {
  36876. side: {
  36877. height: math.unit(8, "feet"),
  36878. name: "Side",
  36879. image: {
  36880. source: "./media/characters/rezukii/side.svg",
  36881. extra: 979/542,
  36882. bottom: 87/1066
  36883. }
  36884. },
  36885. sitting: {
  36886. height: math.unit(14.6, "feet"),
  36887. name: "Sitting",
  36888. image: {
  36889. source: "./media/characters/rezukii/sitting.svg",
  36890. extra: 1023/813,
  36891. bottom: 45/1068
  36892. }
  36893. },
  36894. },
  36895. [
  36896. {
  36897. name: "Tiny",
  36898. height: math.unit(2, "feet")
  36899. },
  36900. {
  36901. name: "Smol",
  36902. height: math.unit(4, "feet")
  36903. },
  36904. {
  36905. name: "Normal",
  36906. height: math.unit(8, "feet"),
  36907. default: true
  36908. },
  36909. {
  36910. name: "Big",
  36911. height: math.unit(12, "feet")
  36912. },
  36913. {
  36914. name: "Macro",
  36915. height: math.unit(30, "feet")
  36916. },
  36917. ]
  36918. ))
  36919. characterMakers.push(() => makeCharacter(
  36920. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36921. {
  36922. front: {
  36923. height: math.unit(14, "feet"),
  36924. weight: math.unit(9.5, "tonnes"),
  36925. name: "Front",
  36926. image: {
  36927. source: "./media/characters/dawnheart/front.svg",
  36928. extra: 2792/2675,
  36929. bottom: 64/2856
  36930. }
  36931. },
  36932. },
  36933. [
  36934. {
  36935. name: "Normal",
  36936. height: math.unit(14, "feet"),
  36937. default: true
  36938. },
  36939. ]
  36940. ))
  36941. characterMakers.push(() => makeCharacter(
  36942. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36943. {
  36944. front: {
  36945. height: math.unit(1.7, "m"),
  36946. name: "Front",
  36947. image: {
  36948. source: "./media/characters/gladi/front.svg",
  36949. extra: 1460/1362,
  36950. bottom: 19/1479
  36951. }
  36952. },
  36953. back: {
  36954. height: math.unit(1.7, "m"),
  36955. name: "Back",
  36956. image: {
  36957. source: "./media/characters/gladi/back.svg",
  36958. extra: 1459/1357,
  36959. bottom: 12/1471
  36960. }
  36961. },
  36962. feral: {
  36963. height: math.unit(2.05, "m"),
  36964. name: "Feral",
  36965. image: {
  36966. source: "./media/characters/gladi/feral.svg",
  36967. extra: 821/557,
  36968. bottom: 91/912
  36969. }
  36970. },
  36971. },
  36972. [
  36973. {
  36974. name: "Shortest",
  36975. height: math.unit(70, "cm")
  36976. },
  36977. {
  36978. name: "Normal",
  36979. height: math.unit(1.7, "m")
  36980. },
  36981. {
  36982. name: "Macro",
  36983. height: math.unit(10, "m"),
  36984. default: true
  36985. },
  36986. {
  36987. name: "Tallest",
  36988. height: math.unit(200, "m")
  36989. },
  36990. ]
  36991. ))
  36992. characterMakers.push(() => makeCharacter(
  36993. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36994. {
  36995. front: {
  36996. height: math.unit(5 + 7/12, "feet"),
  36997. weight: math.unit(2, "tons"),
  36998. name: "Front",
  36999. image: {
  37000. source: "./media/characters/erdno/front.svg",
  37001. extra: 1234/1129,
  37002. bottom: 35/1269
  37003. }
  37004. },
  37005. angled: {
  37006. height: math.unit(5 + 7/12, "feet"),
  37007. weight: math.unit(2, "tons"),
  37008. name: "Angled",
  37009. image: {
  37010. source: "./media/characters/erdno/angled.svg",
  37011. extra: 1185/1139,
  37012. bottom: 36/1221
  37013. }
  37014. },
  37015. side: {
  37016. height: math.unit(5 + 7/12, "feet"),
  37017. weight: math.unit(2, "tons"),
  37018. name: "Side",
  37019. image: {
  37020. source: "./media/characters/erdno/side.svg",
  37021. extra: 1191/1144,
  37022. bottom: 40/1231
  37023. }
  37024. },
  37025. back: {
  37026. height: math.unit(5 + 7/12, "feet"),
  37027. weight: math.unit(2, "tons"),
  37028. name: "Back",
  37029. image: {
  37030. source: "./media/characters/erdno/back.svg",
  37031. extra: 1202/1146,
  37032. bottom: 17/1219
  37033. }
  37034. },
  37035. frontNsfw: {
  37036. height: math.unit(5 + 7/12, "feet"),
  37037. weight: math.unit(2, "tons"),
  37038. name: "Front (NSFW)",
  37039. image: {
  37040. source: "./media/characters/erdno/front-nsfw.svg",
  37041. extra: 1234/1129,
  37042. bottom: 35/1269
  37043. }
  37044. },
  37045. angledNsfw: {
  37046. height: math.unit(5 + 7/12, "feet"),
  37047. weight: math.unit(2, "tons"),
  37048. name: "Angled (NSFW)",
  37049. image: {
  37050. source: "./media/characters/erdno/angled-nsfw.svg",
  37051. extra: 1185/1139,
  37052. bottom: 36/1221
  37053. }
  37054. },
  37055. sideNsfw: {
  37056. height: math.unit(5 + 7/12, "feet"),
  37057. weight: math.unit(2, "tons"),
  37058. name: "Side (NSFW)",
  37059. image: {
  37060. source: "./media/characters/erdno/side-nsfw.svg",
  37061. extra: 1191/1144,
  37062. bottom: 40/1231
  37063. }
  37064. },
  37065. backNsfw: {
  37066. height: math.unit(5 + 7/12, "feet"),
  37067. weight: math.unit(2, "tons"),
  37068. name: "Back (NSFW)",
  37069. image: {
  37070. source: "./media/characters/erdno/back-nsfw.svg",
  37071. extra: 1202/1146,
  37072. bottom: 17/1219
  37073. }
  37074. },
  37075. frontHyper: {
  37076. height: math.unit(5 + 7/12, "feet"),
  37077. weight: math.unit(2, "tons"),
  37078. name: "Front (Hyper)",
  37079. image: {
  37080. source: "./media/characters/erdno/front-hyper.svg",
  37081. extra: 1298/1136,
  37082. bottom: 35/1333
  37083. }
  37084. },
  37085. },
  37086. [
  37087. {
  37088. name: "Normal",
  37089. height: math.unit(5 + 7/12, "feet"),
  37090. default: true
  37091. },
  37092. {
  37093. name: "Big",
  37094. height: math.unit(5.7, "meters")
  37095. },
  37096. {
  37097. name: "Macro",
  37098. height: math.unit(5.7, "kilometers")
  37099. },
  37100. {
  37101. name: "Megamacro",
  37102. height: math.unit(5.7, "earths")
  37103. },
  37104. ]
  37105. ))
  37106. characterMakers.push(() => makeCharacter(
  37107. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37108. {
  37109. front: {
  37110. height: math.unit(5 + 10/12, "feet"),
  37111. weight: math.unit(150, "lb"),
  37112. name: "Front",
  37113. image: {
  37114. source: "./media/characters/jamie/front.svg",
  37115. extra: 1908/1768,
  37116. bottom: 19/1927
  37117. }
  37118. },
  37119. },
  37120. [
  37121. {
  37122. name: "Minimum",
  37123. height: math.unit(2, "cm")
  37124. },
  37125. {
  37126. name: "Micro",
  37127. height: math.unit(3, "inches")
  37128. },
  37129. {
  37130. name: "Normal",
  37131. height: math.unit(5 + 10/12, "feet"),
  37132. default: true
  37133. },
  37134. {
  37135. name: "Macro",
  37136. height: math.unit(150, "feet")
  37137. },
  37138. {
  37139. name: "Megamacro",
  37140. height: math.unit(10000, "m")
  37141. },
  37142. ]
  37143. ))
  37144. characterMakers.push(() => makeCharacter(
  37145. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37146. {
  37147. front: {
  37148. height: math.unit(2, "meters"),
  37149. weight: math.unit(100, "kg"),
  37150. name: "Front",
  37151. image: {
  37152. source: "./media/characters/shiron/front.svg",
  37153. extra: 2103/1985,
  37154. bottom: 98/2201
  37155. }
  37156. },
  37157. back: {
  37158. height: math.unit(2, "meters"),
  37159. weight: math.unit(100, "kg"),
  37160. name: "Back",
  37161. image: {
  37162. source: "./media/characters/shiron/back.svg",
  37163. extra: 2110/2015,
  37164. bottom: 89/2199
  37165. }
  37166. },
  37167. hand: {
  37168. height: math.unit(0.96, "feet"),
  37169. name: "Hand",
  37170. image: {
  37171. source: "./media/characters/shiron/hand.svg"
  37172. }
  37173. },
  37174. foot: {
  37175. height: math.unit(1.464, "feet"),
  37176. name: "Foot",
  37177. image: {
  37178. source: "./media/characters/shiron/foot.svg"
  37179. }
  37180. },
  37181. },
  37182. [
  37183. {
  37184. name: "Normal",
  37185. height: math.unit(2, "meters")
  37186. },
  37187. {
  37188. name: "Macro",
  37189. height: math.unit(500, "meters"),
  37190. default: true
  37191. },
  37192. {
  37193. name: "Megamacro",
  37194. height: math.unit(20, "km")
  37195. },
  37196. ]
  37197. ))
  37198. characterMakers.push(() => makeCharacter(
  37199. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37200. {
  37201. front: {
  37202. height: math.unit(6, "feet"),
  37203. name: "Front",
  37204. image: {
  37205. source: "./media/characters/sam/front.svg",
  37206. extra: 849/826,
  37207. bottom: 19/868
  37208. }
  37209. },
  37210. },
  37211. [
  37212. {
  37213. name: "Normal",
  37214. height: math.unit(6, "feet"),
  37215. default: true
  37216. },
  37217. ]
  37218. ))
  37219. characterMakers.push(() => makeCharacter(
  37220. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37221. {
  37222. front: {
  37223. height: math.unit(8 + 4/12, "feet"),
  37224. weight: math.unit(122, "kg"),
  37225. name: "Front",
  37226. image: {
  37227. source: "./media/characters/namori-kurogawa/front.svg",
  37228. extra: 1894/1576,
  37229. bottom: 34/1928
  37230. }
  37231. },
  37232. },
  37233. [
  37234. {
  37235. name: "Normal",
  37236. height: math.unit(8 + 4/12, "feet"),
  37237. default: true
  37238. },
  37239. ]
  37240. ))
  37241. characterMakers.push(() => makeCharacter(
  37242. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37243. {
  37244. front: {
  37245. height: math.unit(9, "feet"),
  37246. weight: math.unit(621, "lb"),
  37247. name: "Front",
  37248. image: {
  37249. source: "./media/characters/unmru/front.svg",
  37250. extra: 1853/1747,
  37251. bottom: 73/1926
  37252. }
  37253. },
  37254. side: {
  37255. height: math.unit(9, "feet"),
  37256. weight: math.unit(621, "lb"),
  37257. name: "Side",
  37258. image: {
  37259. source: "./media/characters/unmru/side.svg",
  37260. extra: 1781/1671,
  37261. bottom: 127/1908
  37262. }
  37263. },
  37264. back: {
  37265. height: math.unit(9, "feet"),
  37266. weight: math.unit(621, "lb"),
  37267. name: "Back",
  37268. image: {
  37269. source: "./media/characters/unmru/back.svg",
  37270. extra: 1894/1765,
  37271. bottom: 75/1969
  37272. }
  37273. },
  37274. dick: {
  37275. height: math.unit(3, "feet"),
  37276. weight: math.unit(35, "lb"),
  37277. name: "Dick",
  37278. image: {
  37279. source: "./media/characters/unmru/dick.svg"
  37280. }
  37281. },
  37282. },
  37283. [
  37284. {
  37285. name: "Normal",
  37286. height: math.unit(9, "feet")
  37287. },
  37288. {
  37289. name: "Natural",
  37290. height: math.unit(27, "feet"),
  37291. default: true
  37292. },
  37293. {
  37294. name: "Giant",
  37295. height: math.unit(90, "feet")
  37296. },
  37297. {
  37298. name: "Kaiju",
  37299. height: math.unit(270, "feet")
  37300. },
  37301. {
  37302. name: "Macro",
  37303. height: math.unit(900, "feet")
  37304. },
  37305. {
  37306. name: "Macro+",
  37307. height: math.unit(2700, "feet")
  37308. },
  37309. {
  37310. name: "Megamacro",
  37311. height: math.unit(9000, "feet")
  37312. },
  37313. {
  37314. name: "City-Crushing",
  37315. height: math.unit(27000, "feet")
  37316. },
  37317. {
  37318. name: "Mountain-Mashing",
  37319. height: math.unit(90000, "feet")
  37320. },
  37321. {
  37322. name: "Earth-Eclipsing",
  37323. height: math.unit(2.7e8, "feet")
  37324. },
  37325. {
  37326. name: "Sol-Swallowing",
  37327. height: math.unit(9e10, "feet")
  37328. },
  37329. {
  37330. name: "Majoris-Munching",
  37331. height: math.unit(2.7e13, "feet")
  37332. },
  37333. ]
  37334. ))
  37335. characterMakers.push(() => makeCharacter(
  37336. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37337. {
  37338. front: {
  37339. height: math.unit(1, "inch"),
  37340. name: "Front",
  37341. image: {
  37342. source: "./media/characters/squeaks-mouse/front.svg",
  37343. extra: 352/308,
  37344. bottom: 25/377
  37345. }
  37346. },
  37347. },
  37348. [
  37349. {
  37350. name: "Micro",
  37351. height: math.unit(1, "inch"),
  37352. default: true
  37353. },
  37354. ]
  37355. ))
  37356. characterMakers.push(() => makeCharacter(
  37357. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37358. {
  37359. side: {
  37360. height: math.unit(35, "feet"),
  37361. name: "Side",
  37362. image: {
  37363. source: "./media/characters/sayko/side.svg",
  37364. extra: 1697/1021,
  37365. bottom: 82/1779
  37366. }
  37367. },
  37368. head: {
  37369. height: math.unit(16, "feet"),
  37370. name: "Head",
  37371. image: {
  37372. source: "./media/characters/sayko/head.svg"
  37373. }
  37374. },
  37375. forepaw: {
  37376. height: math.unit(7.85, "feet"),
  37377. name: "Forepaw",
  37378. image: {
  37379. source: "./media/characters/sayko/forepaw.svg"
  37380. }
  37381. },
  37382. hindpaw: {
  37383. height: math.unit(8.8, "feet"),
  37384. name: "Hindpaw",
  37385. image: {
  37386. source: "./media/characters/sayko/hindpaw.svg"
  37387. }
  37388. },
  37389. },
  37390. [
  37391. {
  37392. name: "Normal",
  37393. height: math.unit(35, "feet"),
  37394. default: true
  37395. },
  37396. {
  37397. name: "Colossus",
  37398. height: math.unit(100, "meters")
  37399. },
  37400. {
  37401. name: "\"Small\" Deity",
  37402. height: math.unit(1, "km")
  37403. },
  37404. {
  37405. name: "\"Large\" Deity",
  37406. height: math.unit(15, "km")
  37407. },
  37408. ]
  37409. ))
  37410. characterMakers.push(() => makeCharacter(
  37411. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37412. {
  37413. front: {
  37414. height: math.unit(6, "feet"),
  37415. weight: math.unit(250, "lb"),
  37416. name: "Front",
  37417. image: {
  37418. source: "./media/characters/mukiro/front.svg",
  37419. extra: 1368/1310,
  37420. bottom: 34/1402
  37421. }
  37422. },
  37423. },
  37424. [
  37425. {
  37426. name: "Normal",
  37427. height: math.unit(6, "feet"),
  37428. default: true
  37429. },
  37430. ]
  37431. ))
  37432. characterMakers.push(() => makeCharacter(
  37433. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37434. {
  37435. front: {
  37436. height: math.unit(12 + 4/12, "feet"),
  37437. name: "Front",
  37438. image: {
  37439. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37440. extra: 1346/1311,
  37441. bottom: 65/1411
  37442. }
  37443. },
  37444. },
  37445. [
  37446. {
  37447. name: "Base",
  37448. height: math.unit(12 + 4/12, "feet"),
  37449. default: true
  37450. },
  37451. {
  37452. name: "Macro",
  37453. height: math.unit(150, "feet")
  37454. },
  37455. {
  37456. name: "Mega",
  37457. height: math.unit(2, "miles")
  37458. },
  37459. {
  37460. name: "Demi God",
  37461. height: math.unit(4, "AU")
  37462. },
  37463. {
  37464. name: "God Size",
  37465. height: math.unit(1, "universe")
  37466. },
  37467. ]
  37468. ))
  37469. characterMakers.push(() => makeCharacter(
  37470. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37471. {
  37472. front: {
  37473. height: math.unit(3 + 3/12, "feet"),
  37474. weight: math.unit(88, "lb"),
  37475. name: "Front",
  37476. image: {
  37477. source: "./media/characters/trey/front.svg",
  37478. extra: 1815/1509,
  37479. bottom: 60/1875
  37480. }
  37481. },
  37482. },
  37483. [
  37484. {
  37485. name: "Normal",
  37486. height: math.unit(3 + 3/12, "feet"),
  37487. default: true
  37488. },
  37489. ]
  37490. ))
  37491. characterMakers.push(() => makeCharacter(
  37492. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37493. {
  37494. front: {
  37495. height: math.unit(4, "meters"),
  37496. name: "Front",
  37497. image: {
  37498. source: "./media/characters/adelonda/front.svg",
  37499. extra: 1077/982,
  37500. bottom: 39/1116
  37501. }
  37502. },
  37503. back: {
  37504. height: math.unit(4, "meters"),
  37505. name: "Back",
  37506. image: {
  37507. source: "./media/characters/adelonda/back.svg",
  37508. extra: 1105/1003,
  37509. bottom: 25/1130
  37510. }
  37511. },
  37512. },
  37513. [
  37514. {
  37515. name: "Normal",
  37516. height: math.unit(4, "meters"),
  37517. default: true
  37518. },
  37519. ]
  37520. ))
  37521. characterMakers.push(() => makeCharacter(
  37522. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37523. {
  37524. front: {
  37525. height: math.unit(8 + 4/12, "feet"),
  37526. weight: math.unit(670, "lb"),
  37527. name: "Front",
  37528. image: {
  37529. source: "./media/characters/acadiel/front.svg",
  37530. extra: 1901/1595,
  37531. bottom: 142/2043
  37532. }
  37533. },
  37534. },
  37535. [
  37536. {
  37537. name: "Normal",
  37538. height: math.unit(8 + 4/12, "feet"),
  37539. default: true
  37540. },
  37541. {
  37542. name: "Macro",
  37543. height: math.unit(200, "feet")
  37544. },
  37545. ]
  37546. ))
  37547. characterMakers.push(() => makeCharacter(
  37548. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37549. {
  37550. front: {
  37551. height: math.unit(6 + 2/12, "feet"),
  37552. weight: math.unit(185, "lb"),
  37553. name: "Front",
  37554. image: {
  37555. source: "./media/characters/kayne-ein/front.svg",
  37556. extra: 1780/1560,
  37557. bottom: 81/1861
  37558. }
  37559. },
  37560. },
  37561. [
  37562. {
  37563. name: "Normal",
  37564. height: math.unit(6 + 2/12, "feet"),
  37565. default: true
  37566. },
  37567. {
  37568. name: "Transformation Stage",
  37569. height: math.unit(15, "feet")
  37570. },
  37571. {
  37572. name: "Macro",
  37573. height: math.unit(150, "feet")
  37574. },
  37575. {
  37576. name: "Earth's Shadow",
  37577. height: math.unit(6200, "miles")
  37578. },
  37579. {
  37580. name: "Universal Demon",
  37581. height: math.unit(28e9, "parsecs")
  37582. },
  37583. {
  37584. name: "Multiverse God",
  37585. height: math.unit(3, "multiverses")
  37586. },
  37587. ]
  37588. ))
  37589. characterMakers.push(() => makeCharacter(
  37590. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37591. {
  37592. front: {
  37593. height: math.unit(5 + 5/12, "feet"),
  37594. name: "Front",
  37595. image: {
  37596. source: "./media/characters/fawn/front.svg",
  37597. extra: 1873/1731,
  37598. bottom: 95/1968
  37599. }
  37600. },
  37601. back: {
  37602. height: math.unit(5 + 5/12, "feet"),
  37603. name: "Back",
  37604. image: {
  37605. source: "./media/characters/fawn/back.svg",
  37606. extra: 1813/1700,
  37607. bottom: 14/1827
  37608. }
  37609. },
  37610. hoof: {
  37611. height: math.unit(1.45, "feet"),
  37612. name: "Hoof",
  37613. image: {
  37614. source: "./media/characters/fawn/hoof.svg"
  37615. }
  37616. },
  37617. },
  37618. [
  37619. {
  37620. name: "Normal",
  37621. height: math.unit(5 + 5/12, "feet"),
  37622. default: true
  37623. },
  37624. ]
  37625. ))
  37626. characterMakers.push(() => makeCharacter(
  37627. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37628. {
  37629. front: {
  37630. height: math.unit(2 + 5/12, "feet"),
  37631. name: "Front",
  37632. image: {
  37633. source: "./media/characters/orion/front.svg",
  37634. extra: 1366/1304,
  37635. bottom: 43/1409
  37636. }
  37637. },
  37638. paw: {
  37639. height: math.unit(0.52, "feet"),
  37640. name: "Paw",
  37641. image: {
  37642. source: "./media/characters/orion/paw.svg"
  37643. }
  37644. },
  37645. },
  37646. [
  37647. {
  37648. name: "Normal",
  37649. height: math.unit(2 + 5/12, "feet"),
  37650. default: true
  37651. },
  37652. ]
  37653. ))
  37654. characterMakers.push(() => makeCharacter(
  37655. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37656. {
  37657. front: {
  37658. height: math.unit(5 + 10/12, "feet"),
  37659. name: "Front",
  37660. image: {
  37661. source: "./media/characters/vera/front.svg",
  37662. extra: 1680/1575,
  37663. bottom: 49/1729
  37664. }
  37665. },
  37666. back: {
  37667. height: math.unit(5 + 10/12, "feet"),
  37668. name: "Back",
  37669. image: {
  37670. source: "./media/characters/vera/back.svg",
  37671. extra: 1700/1588,
  37672. bottom: 18/1718
  37673. }
  37674. },
  37675. arcanine: {
  37676. height: math.unit(6 + 8/12, "feet"),
  37677. name: "Arcanine",
  37678. image: {
  37679. source: "./media/characters/vera/arcanine.svg",
  37680. extra: 1590/1511,
  37681. bottom: 71/1661
  37682. }
  37683. },
  37684. maw: {
  37685. height: math.unit(0.82, "feet"),
  37686. name: "Maw",
  37687. image: {
  37688. source: "./media/characters/vera/maw.svg"
  37689. }
  37690. },
  37691. mawArcanine: {
  37692. height: math.unit(0.97, "feet"),
  37693. name: "Maw (Arcanine)",
  37694. image: {
  37695. source: "./media/characters/vera/maw-arcanine.svg"
  37696. }
  37697. },
  37698. paw: {
  37699. height: math.unit(0.75, "feet"),
  37700. name: "Paw",
  37701. image: {
  37702. source: "./media/characters/vera/paw.svg"
  37703. }
  37704. },
  37705. pawprint: {
  37706. height: math.unit(0.52, "feet"),
  37707. name: "Pawprint",
  37708. image: {
  37709. source: "./media/characters/vera/pawprint.svg"
  37710. }
  37711. },
  37712. },
  37713. [
  37714. {
  37715. name: "Normal",
  37716. height: math.unit(5 + 10/12, "feet"),
  37717. default: true
  37718. },
  37719. {
  37720. name: "Macro",
  37721. height: math.unit(75, "feet")
  37722. },
  37723. ]
  37724. ))
  37725. characterMakers.push(() => makeCharacter(
  37726. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37727. {
  37728. front: {
  37729. height: math.unit(4, "feet"),
  37730. weight: math.unit(40, "lb"),
  37731. name: "Front",
  37732. image: {
  37733. source: "./media/characters/orvan-rabbit/front.svg",
  37734. extra: 1896/1642,
  37735. bottom: 29/1925
  37736. }
  37737. },
  37738. },
  37739. [
  37740. {
  37741. name: "Normal",
  37742. height: math.unit(4, "feet"),
  37743. default: true
  37744. },
  37745. ]
  37746. ))
  37747. characterMakers.push(() => makeCharacter(
  37748. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37749. {
  37750. front: {
  37751. height: math.unit(6, "feet"),
  37752. weight: math.unit(168, "lb"),
  37753. name: "Front",
  37754. image: {
  37755. source: "./media/characters/lisa/front.svg",
  37756. extra: 2065/1867,
  37757. bottom: 46/2111
  37758. }
  37759. },
  37760. back: {
  37761. height: math.unit(6, "feet"),
  37762. weight: math.unit(168, "lb"),
  37763. name: "Back",
  37764. image: {
  37765. source: "./media/characters/lisa/back.svg",
  37766. extra: 1982/1838,
  37767. bottom: 29/2011
  37768. }
  37769. },
  37770. maw: {
  37771. height: math.unit(0.81, "feet"),
  37772. name: "Maw",
  37773. image: {
  37774. source: "./media/characters/lisa/maw.svg"
  37775. }
  37776. },
  37777. paw: {
  37778. height: math.unit(0.9, "feet"),
  37779. name: "Paw",
  37780. image: {
  37781. source: "./media/characters/lisa/paw.svg"
  37782. }
  37783. },
  37784. caribousune: {
  37785. height: math.unit(7 + 2/12, "feet"),
  37786. weight: math.unit(268, "lb"),
  37787. name: "Caribousune",
  37788. image: {
  37789. source: "./media/characters/lisa/caribousune.svg",
  37790. extra: 1843/1633,
  37791. bottom: 29/1872
  37792. }
  37793. },
  37794. frontCaribousune: {
  37795. height: math.unit(7 + 2/12, "feet"),
  37796. weight: math.unit(268, "lb"),
  37797. name: "Front (Caribousune)",
  37798. image: {
  37799. source: "./media/characters/lisa/front-caribousune.svg",
  37800. extra: 1818/1638,
  37801. bottom: 52/1870
  37802. }
  37803. },
  37804. sideCaribousune: {
  37805. height: math.unit(7 + 2/12, "feet"),
  37806. weight: math.unit(268, "lb"),
  37807. name: "Side (Caribousune)",
  37808. image: {
  37809. source: "./media/characters/lisa/side-caribousune.svg",
  37810. extra: 1851/1635,
  37811. bottom: 16/1867
  37812. }
  37813. },
  37814. backCaribousune: {
  37815. height: math.unit(7 + 2/12, "feet"),
  37816. weight: math.unit(268, "lb"),
  37817. name: "Back (Caribousune)",
  37818. image: {
  37819. source: "./media/characters/lisa/back-caribousune.svg",
  37820. extra: 1801/1604,
  37821. bottom: 44/1845
  37822. }
  37823. },
  37824. caribou: {
  37825. height: math.unit(7 + 2/12, "feet"),
  37826. weight: math.unit(268, "lb"),
  37827. name: "Caribou",
  37828. image: {
  37829. source: "./media/characters/lisa/caribou.svg",
  37830. extra: 1843/1633,
  37831. bottom: 29/1872
  37832. }
  37833. },
  37834. frontCaribou: {
  37835. height: math.unit(7 + 2/12, "feet"),
  37836. weight: math.unit(268, "lb"),
  37837. name: "Front (Caribou)",
  37838. image: {
  37839. source: "./media/characters/lisa/front-caribou.svg",
  37840. extra: 1818/1638,
  37841. bottom: 52/1870
  37842. }
  37843. },
  37844. sideCaribou: {
  37845. height: math.unit(7 + 2/12, "feet"),
  37846. weight: math.unit(268, "lb"),
  37847. name: "Side (Caribou)",
  37848. image: {
  37849. source: "./media/characters/lisa/side-caribou.svg",
  37850. extra: 1851/1635,
  37851. bottom: 16/1867
  37852. }
  37853. },
  37854. backCaribou: {
  37855. height: math.unit(7 + 2/12, "feet"),
  37856. weight: math.unit(268, "lb"),
  37857. name: "Back (Caribou)",
  37858. image: {
  37859. source: "./media/characters/lisa/back-caribou.svg",
  37860. extra: 1801/1604,
  37861. bottom: 44/1845
  37862. }
  37863. },
  37864. mawCaribou: {
  37865. height: math.unit(1.45, "feet"),
  37866. name: "Maw (Caribou)",
  37867. image: {
  37868. source: "./media/characters/lisa/maw-caribou.svg"
  37869. }
  37870. },
  37871. mawCaribousune: {
  37872. height: math.unit(1.45, "feet"),
  37873. name: "Maw (Caribousune)",
  37874. image: {
  37875. source: "./media/characters/lisa/maw-caribousune.svg"
  37876. }
  37877. },
  37878. pawCaribousune: {
  37879. height: math.unit(1.61, "feet"),
  37880. name: "Paw (Caribou)",
  37881. image: {
  37882. source: "./media/characters/lisa/paw-caribousune.svg"
  37883. }
  37884. },
  37885. },
  37886. [
  37887. {
  37888. name: "Normal",
  37889. height: math.unit(6, "feet")
  37890. },
  37891. {
  37892. name: "God Size",
  37893. height: math.unit(72, "feet"),
  37894. default: true
  37895. },
  37896. {
  37897. name: "Towering",
  37898. height: math.unit(288, "feet")
  37899. },
  37900. {
  37901. name: "City Size",
  37902. height: math.unit(48384, "feet")
  37903. },
  37904. {
  37905. name: "Continental",
  37906. height: math.unit(4200, "miles")
  37907. },
  37908. {
  37909. name: "Planet Eater",
  37910. height: math.unit(42, "earths")
  37911. },
  37912. {
  37913. name: "Star Swallower",
  37914. height: math.unit(42, "solarradii")
  37915. },
  37916. {
  37917. name: "System Swallower",
  37918. height: math.unit(84000, "AU")
  37919. },
  37920. {
  37921. name: "Galaxy Gobbler",
  37922. height: math.unit(42, "galaxies")
  37923. },
  37924. {
  37925. name: "Universe Devourer",
  37926. height: math.unit(42, "universes")
  37927. },
  37928. {
  37929. name: "Multiverse Muncher",
  37930. height: math.unit(42, "multiverses")
  37931. },
  37932. ]
  37933. ))
  37934. characterMakers.push(() => makeCharacter(
  37935. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37936. {
  37937. front: {
  37938. height: math.unit(36, "feet"),
  37939. name: "Front",
  37940. image: {
  37941. source: "./media/characters/shadow-rat/front.svg",
  37942. extra: 1845/1758,
  37943. bottom: 83/1928
  37944. }
  37945. },
  37946. },
  37947. [
  37948. {
  37949. name: "Macro",
  37950. height: math.unit(36, "feet"),
  37951. default: true
  37952. },
  37953. ]
  37954. ))
  37955. characterMakers.push(() => makeCharacter(
  37956. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37957. {
  37958. side: {
  37959. height: math.unit(8, "feet"),
  37960. weight: math.unit(2630, "lb"),
  37961. name: "Side",
  37962. image: {
  37963. source: "./media/characters/torallia/side.svg",
  37964. extra: 2164/2021,
  37965. bottom: 371/2535
  37966. }
  37967. },
  37968. },
  37969. [
  37970. {
  37971. name: "Mortal Interaction",
  37972. height: math.unit(8, "feet")
  37973. },
  37974. {
  37975. name: "Natural",
  37976. height: math.unit(24, "feet"),
  37977. default: true
  37978. },
  37979. {
  37980. name: "Giant",
  37981. height: math.unit(80, "feet")
  37982. },
  37983. {
  37984. name: "Kaiju",
  37985. height: math.unit(240, "feet")
  37986. },
  37987. {
  37988. name: "Macro",
  37989. height: math.unit(800, "feet")
  37990. },
  37991. {
  37992. name: "Macro+",
  37993. height: math.unit(2400, "feet")
  37994. },
  37995. {
  37996. name: "Macro++",
  37997. height: math.unit(8000, "feet")
  37998. },
  37999. {
  38000. name: "City-Crushing",
  38001. height: math.unit(24000, "feet")
  38002. },
  38003. {
  38004. name: "Mountain-Mashing",
  38005. height: math.unit(80000, "feet")
  38006. },
  38007. {
  38008. name: "District Demolisher",
  38009. height: math.unit(240000, "feet")
  38010. },
  38011. {
  38012. name: "Tri-County Terror",
  38013. height: math.unit(800000, "feet")
  38014. },
  38015. {
  38016. name: "State Smasher",
  38017. height: math.unit(2.4e6, "feet")
  38018. },
  38019. {
  38020. name: "Nation Nemesis",
  38021. height: math.unit(8e6, "feet")
  38022. },
  38023. {
  38024. name: "Continent Cracker",
  38025. height: math.unit(2.4e7, "feet")
  38026. },
  38027. {
  38028. name: "Planet-Pillaging",
  38029. height: math.unit(8e7, "feet")
  38030. },
  38031. {
  38032. name: "Earth-Eclipsing",
  38033. height: math.unit(2.4e8, "feet")
  38034. },
  38035. {
  38036. name: "Jovian-Jostling",
  38037. height: math.unit(8e8, "feet")
  38038. },
  38039. {
  38040. name: "Gas Giant Gulper",
  38041. height: math.unit(2.4e9, "feet")
  38042. },
  38043. {
  38044. name: "Astral Annihilator",
  38045. height: math.unit(8e9, "feet")
  38046. },
  38047. {
  38048. name: "Celestial Conqueror",
  38049. height: math.unit(2.4e10, "feet")
  38050. },
  38051. {
  38052. name: "Sol-Swallowing",
  38053. height: math.unit(8e10, "feet")
  38054. },
  38055. {
  38056. name: "Hunter of the Heavens",
  38057. height: math.unit(2.4e13, "feet")
  38058. },
  38059. ]
  38060. ))
  38061. characterMakers.push(() => makeCharacter(
  38062. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38063. {
  38064. front: {
  38065. height: math.unit(6 + 8/12, "feet"),
  38066. name: "Front",
  38067. image: {
  38068. source: "./media/characters/rebecca-pawlson/front.svg",
  38069. extra: 1737/1596,
  38070. bottom: 107/1844
  38071. }
  38072. },
  38073. back: {
  38074. height: math.unit(6 + 8/12, "feet"),
  38075. name: "Back",
  38076. image: {
  38077. source: "./media/characters/rebecca-pawlson/back.svg",
  38078. extra: 1702/1523,
  38079. bottom: 86/1788
  38080. }
  38081. },
  38082. },
  38083. [
  38084. {
  38085. name: "Normal",
  38086. height: math.unit(6 + 8/12, "feet")
  38087. },
  38088. {
  38089. name: "Mini Macro",
  38090. height: math.unit(10, "feet"),
  38091. default: true
  38092. },
  38093. {
  38094. name: "Macro",
  38095. height: math.unit(100, "feet")
  38096. },
  38097. {
  38098. name: "Mega Macro",
  38099. height: math.unit(2500, "feet")
  38100. },
  38101. {
  38102. name: "Giga Macro",
  38103. height: math.unit(50, "miles")
  38104. },
  38105. ]
  38106. ))
  38107. characterMakers.push(() => makeCharacter(
  38108. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38109. {
  38110. front: {
  38111. height: math.unit(7 + 6/12, "feet"),
  38112. weight: math.unit(600, "lb"),
  38113. name: "Front",
  38114. image: {
  38115. source: "./media/characters/moxie-nova/front.svg",
  38116. extra: 1734/1652,
  38117. bottom: 41/1775
  38118. }
  38119. },
  38120. },
  38121. [
  38122. {
  38123. name: "Normal",
  38124. height: math.unit(7 + 6/12, "feet"),
  38125. default: true
  38126. },
  38127. ]
  38128. ))
  38129. characterMakers.push(() => makeCharacter(
  38130. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38131. {
  38132. goat: {
  38133. height: math.unit(4, "feet"),
  38134. weight: math.unit(180, "lb"),
  38135. name: "Goat",
  38136. image: {
  38137. source: "./media/characters/tiffany/goat.svg",
  38138. extra: 1845/1595,
  38139. bottom: 106/1951
  38140. }
  38141. },
  38142. front: {
  38143. height: math.unit(5, "feet"),
  38144. weight: math.unit(150, "lb"),
  38145. name: "Foxcoon",
  38146. image: {
  38147. source: "./media/characters/tiffany/foxcoon.svg",
  38148. extra: 1941/1845,
  38149. bottom: 58/1999
  38150. }
  38151. },
  38152. },
  38153. [
  38154. {
  38155. name: "Normal",
  38156. height: math.unit(5, "feet"),
  38157. default: true
  38158. },
  38159. ]
  38160. ))
  38161. characterMakers.push(() => makeCharacter(
  38162. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38163. {
  38164. front: {
  38165. height: math.unit(8, "feet"),
  38166. weight: math.unit(300, "lb"),
  38167. name: "Front",
  38168. image: {
  38169. source: "./media/characters/raxinath/front.svg",
  38170. extra: 1407/1309,
  38171. bottom: 39/1446
  38172. }
  38173. },
  38174. back: {
  38175. height: math.unit(8, "feet"),
  38176. weight: math.unit(300, "lb"),
  38177. name: "Back",
  38178. image: {
  38179. source: "./media/characters/raxinath/back.svg",
  38180. extra: 1405/1315,
  38181. bottom: 9/1414
  38182. }
  38183. },
  38184. },
  38185. [
  38186. {
  38187. name: "Speck",
  38188. height: math.unit(0.5, "nm")
  38189. },
  38190. {
  38191. name: "Micro",
  38192. height: math.unit(3, "inches")
  38193. },
  38194. {
  38195. name: "Kobold",
  38196. height: math.unit(3, "feet")
  38197. },
  38198. {
  38199. name: "Normal",
  38200. height: math.unit(8, "feet"),
  38201. default: true
  38202. },
  38203. {
  38204. name: "Giant",
  38205. height: math.unit(50, "feet")
  38206. },
  38207. {
  38208. name: "Macro",
  38209. height: math.unit(1000, "feet")
  38210. },
  38211. {
  38212. name: "Megamacro",
  38213. height: math.unit(1, "mile")
  38214. },
  38215. ]
  38216. ))
  38217. characterMakers.push(() => makeCharacter(
  38218. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38219. {
  38220. front: {
  38221. height: math.unit(10, "feet"),
  38222. weight: math.unit(1442, "lb"),
  38223. name: "Front",
  38224. image: {
  38225. source: "./media/characters/mal-dragon/front.svg",
  38226. extra: 1515/1444,
  38227. bottom: 113/1628
  38228. }
  38229. },
  38230. back: {
  38231. height: math.unit(10, "feet"),
  38232. weight: math.unit(1442, "lb"),
  38233. name: "Back",
  38234. image: {
  38235. source: "./media/characters/mal-dragon/back.svg",
  38236. extra: 1527/1434,
  38237. bottom: 25/1552
  38238. }
  38239. },
  38240. },
  38241. [
  38242. {
  38243. name: "Mortal Interaction",
  38244. height: math.unit(10, "feet"),
  38245. default: true
  38246. },
  38247. {
  38248. name: "Large",
  38249. height: math.unit(30, "feet")
  38250. },
  38251. {
  38252. name: "Kaiju",
  38253. height: math.unit(300, "feet")
  38254. },
  38255. {
  38256. name: "Megamacro",
  38257. height: math.unit(10000, "feet")
  38258. },
  38259. {
  38260. name: "Continent Cracker",
  38261. height: math.unit(30000000, "feet")
  38262. },
  38263. {
  38264. name: "Sol-Swallowing",
  38265. height: math.unit(1e11, "feet")
  38266. },
  38267. {
  38268. name: "Light Universal",
  38269. height: math.unit(5, "universes")
  38270. },
  38271. {
  38272. name: "Universe Atoms",
  38273. height: math.unit(1.829e9, "universes")
  38274. },
  38275. {
  38276. name: "Light Multiversal",
  38277. height: math.unit(5, "multiverses")
  38278. },
  38279. {
  38280. name: "Multiverse Atoms",
  38281. height: math.unit(1.829e9, "multiverses")
  38282. },
  38283. {
  38284. name: "Fabric of Time",
  38285. height: math.unit(1e262, "multiverses")
  38286. },
  38287. ]
  38288. ))
  38289. characterMakers.push(() => makeCharacter(
  38290. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38291. {
  38292. front: {
  38293. height: math.unit(9, "feet"),
  38294. weight: math.unit(1050, "lb"),
  38295. name: "Front",
  38296. image: {
  38297. source: "./media/characters/tabitha/front.svg",
  38298. extra: 2083/1994,
  38299. bottom: 68/2151
  38300. }
  38301. },
  38302. },
  38303. [
  38304. {
  38305. name: "Baseline",
  38306. height: math.unit(9, "feet"),
  38307. default: true
  38308. },
  38309. {
  38310. name: "Giant",
  38311. height: math.unit(90, "feet")
  38312. },
  38313. {
  38314. name: "Macro",
  38315. height: math.unit(900, "feet")
  38316. },
  38317. {
  38318. name: "Megamacro",
  38319. height: math.unit(9000, "feet")
  38320. },
  38321. {
  38322. name: "City-Crushing",
  38323. height: math.unit(27000, "feet")
  38324. },
  38325. {
  38326. name: "Mountain-Mashing",
  38327. height: math.unit(90000, "feet")
  38328. },
  38329. {
  38330. name: "Nation Nemesis",
  38331. height: math.unit(9e6, "feet")
  38332. },
  38333. {
  38334. name: "Continent Cracker",
  38335. height: math.unit(27e6, "feet")
  38336. },
  38337. {
  38338. name: "Earth-Eclipsing",
  38339. height: math.unit(2.7e8, "feet")
  38340. },
  38341. {
  38342. name: "Gas Giant Gulper",
  38343. height: math.unit(2.7e9, "feet")
  38344. },
  38345. {
  38346. name: "Sol-Swallowing",
  38347. height: math.unit(9e10, "feet")
  38348. },
  38349. {
  38350. name: "Galaxy Gulper",
  38351. height: math.unit(9, "galaxies")
  38352. },
  38353. {
  38354. name: "Cosmos Churner",
  38355. height: math.unit(9, "universes")
  38356. },
  38357. ]
  38358. ))
  38359. characterMakers.push(() => makeCharacter(
  38360. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38361. {
  38362. front: {
  38363. height: math.unit(160, "cm"),
  38364. weight: math.unit(55, "kg"),
  38365. name: "Front",
  38366. image: {
  38367. source: "./media/characters/tow/front.svg",
  38368. extra: 1751/1722,
  38369. bottom: 74/1825
  38370. }
  38371. },
  38372. },
  38373. [
  38374. {
  38375. name: "Norm",
  38376. height: math.unit(160, "cm")
  38377. },
  38378. {
  38379. name: "Casual",
  38380. height: math.unit(3200, "m"),
  38381. default: true
  38382. },
  38383. {
  38384. name: "Show-Off",
  38385. height: math.unit(160, "km")
  38386. },
  38387. ]
  38388. ))
  38389. characterMakers.push(() => makeCharacter(
  38390. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38391. {
  38392. front: {
  38393. height: math.unit(7 + 11/12, "feet"),
  38394. weight: math.unit(342.8, "lb"),
  38395. name: "Front",
  38396. image: {
  38397. source: "./media/characters/vivian-orca-dragon/front.svg",
  38398. extra: 1890/1865,
  38399. bottom: 28/1918
  38400. }
  38401. },
  38402. },
  38403. [
  38404. {
  38405. name: "Micro",
  38406. height: math.unit(5, "inches")
  38407. },
  38408. {
  38409. name: "Normal",
  38410. height: math.unit(7 + 11/12, "feet"),
  38411. default: true
  38412. },
  38413. {
  38414. name: "Macro",
  38415. height: math.unit(395 + 7/12, "feet")
  38416. },
  38417. ]
  38418. ))
  38419. characterMakers.push(() => makeCharacter(
  38420. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38421. {
  38422. side: {
  38423. height: math.unit(10, "feet"),
  38424. weight: math.unit(1442, "lb"),
  38425. name: "Side",
  38426. image: {
  38427. source: "./media/characters/lotherakon/side.svg",
  38428. extra: 1604/1497,
  38429. bottom: 89/1693
  38430. }
  38431. },
  38432. },
  38433. [
  38434. {
  38435. name: "Mortal Interaction",
  38436. height: math.unit(10, "feet")
  38437. },
  38438. {
  38439. name: "Large",
  38440. height: math.unit(30, "feet"),
  38441. default: true
  38442. },
  38443. {
  38444. name: "Giant",
  38445. height: math.unit(100, "feet")
  38446. },
  38447. {
  38448. name: "Kaiju",
  38449. height: math.unit(300, "feet")
  38450. },
  38451. {
  38452. name: "Macro",
  38453. height: math.unit(1000, "feet")
  38454. },
  38455. {
  38456. name: "Macro+",
  38457. height: math.unit(3000, "feet")
  38458. },
  38459. {
  38460. name: "Megamacro",
  38461. height: math.unit(10000, "feet")
  38462. },
  38463. {
  38464. name: "City-Crushing",
  38465. height: math.unit(30000, "feet")
  38466. },
  38467. {
  38468. name: "Continent Cracker",
  38469. height: math.unit(30e6, "feet")
  38470. },
  38471. {
  38472. name: "Earth Eclipsing",
  38473. height: math.unit(3e8, "feet")
  38474. },
  38475. {
  38476. name: "Gas Giant Gulper",
  38477. height: math.unit(3e9, "feet")
  38478. },
  38479. {
  38480. name: "Sol-Swallowing",
  38481. height: math.unit(1e11, "feet")
  38482. },
  38483. {
  38484. name: "System Swallower",
  38485. height: math.unit(3e14, "feet")
  38486. },
  38487. {
  38488. name: "Galaxy Gulper",
  38489. height: math.unit(10, "galaxies")
  38490. },
  38491. {
  38492. name: "Light Universal",
  38493. height: math.unit(5, "universes")
  38494. },
  38495. {
  38496. name: "Universe Palm",
  38497. height: math.unit(20, "universes")
  38498. },
  38499. {
  38500. name: "Light Multiversal",
  38501. height: math.unit(5, "multiverses")
  38502. },
  38503. {
  38504. name: "Multiverse Palm",
  38505. height: math.unit(20, "multiverses")
  38506. },
  38507. {
  38508. name: "Inferno Incarnate",
  38509. height: math.unit(1e7, "multiverses")
  38510. },
  38511. ]
  38512. ))
  38513. characterMakers.push(() => makeCharacter(
  38514. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38515. {
  38516. front: {
  38517. height: math.unit(8, "feet"),
  38518. weight: math.unit(1200, "lb"),
  38519. name: "Front",
  38520. image: {
  38521. source: "./media/characters/malithee/front.svg",
  38522. extra: 1675/1640,
  38523. bottom: 162/1837
  38524. }
  38525. },
  38526. },
  38527. [
  38528. {
  38529. name: "Mortal Interaction",
  38530. height: math.unit(8, "feet"),
  38531. default: true
  38532. },
  38533. {
  38534. name: "Large",
  38535. height: math.unit(24, "feet")
  38536. },
  38537. {
  38538. name: "Kaiju",
  38539. height: math.unit(240, "feet")
  38540. },
  38541. {
  38542. name: "Megamacro",
  38543. height: math.unit(8000, "feet")
  38544. },
  38545. {
  38546. name: "Continent Cracker",
  38547. height: math.unit(24e6, "feet")
  38548. },
  38549. {
  38550. name: "Earth-Eclipsing",
  38551. height: math.unit(2.4e8, "feet")
  38552. },
  38553. {
  38554. name: "Sol-Swallowing",
  38555. height: math.unit(8e10, "feet")
  38556. },
  38557. {
  38558. name: "Galaxy Gulper",
  38559. height: math.unit(8, "galaxies")
  38560. },
  38561. {
  38562. name: "Light Universal",
  38563. height: math.unit(4, "universes")
  38564. },
  38565. {
  38566. name: "Universe Atoms",
  38567. height: math.unit(1.829e9, "universes")
  38568. },
  38569. {
  38570. name: "Light Multiversal",
  38571. height: math.unit(4, "multiverses")
  38572. },
  38573. {
  38574. name: "Multiverse Atoms",
  38575. height: math.unit(1.829e9, "multiverses")
  38576. },
  38577. {
  38578. name: "Nigh-Omnipresence",
  38579. height: math.unit(8e261, "multiverses")
  38580. },
  38581. ]
  38582. ))
  38583. characterMakers.push(() => makeCharacter(
  38584. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38585. {
  38586. front: {
  38587. height: math.unit(10, "feet"),
  38588. weight: math.unit(1500, "lb"),
  38589. name: "Front",
  38590. image: {
  38591. source: "./media/characters/miles-thestia/front.svg",
  38592. extra: 1812/1727,
  38593. bottom: 86/1898
  38594. }
  38595. },
  38596. back: {
  38597. height: math.unit(10, "feet"),
  38598. weight: math.unit(1500, "lb"),
  38599. name: "Back",
  38600. image: {
  38601. source: "./media/characters/miles-thestia/back.svg",
  38602. extra: 1799/1690,
  38603. bottom: 47/1846
  38604. }
  38605. },
  38606. frontNsfw: {
  38607. height: math.unit(10, "feet"),
  38608. weight: math.unit(1500, "lb"),
  38609. name: "Front (NSFW)",
  38610. image: {
  38611. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38612. extra: 1812/1727,
  38613. bottom: 86/1898
  38614. }
  38615. },
  38616. },
  38617. [
  38618. {
  38619. name: "Mini-Macro",
  38620. height: math.unit(10, "feet"),
  38621. default: true
  38622. },
  38623. ]
  38624. ))
  38625. characterMakers.push(() => makeCharacter(
  38626. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38627. {
  38628. front: {
  38629. height: math.unit(25, "feet"),
  38630. name: "Front",
  38631. image: {
  38632. source: "./media/characters/titan-s-wulf/front.svg",
  38633. extra: 1560/1484,
  38634. bottom: 76/1636
  38635. }
  38636. },
  38637. },
  38638. [
  38639. {
  38640. name: "Smallest",
  38641. height: math.unit(25, "feet"),
  38642. default: true
  38643. },
  38644. {
  38645. name: "Normal",
  38646. height: math.unit(200, "feet")
  38647. },
  38648. {
  38649. name: "Macro",
  38650. height: math.unit(200000, "feet")
  38651. },
  38652. {
  38653. name: "Multiversal Original",
  38654. height: math.unit(10000, "multiverses")
  38655. },
  38656. ]
  38657. ))
  38658. characterMakers.push(() => makeCharacter(
  38659. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38660. {
  38661. front: {
  38662. height: math.unit(8, "feet"),
  38663. weight: math.unit(553, "lb"),
  38664. name: "Front",
  38665. image: {
  38666. source: "./media/characters/tawendeh/front.svg",
  38667. extra: 2365/2268,
  38668. bottom: 83/2448
  38669. }
  38670. },
  38671. frontClothed: {
  38672. height: math.unit(8, "feet"),
  38673. weight: math.unit(553, "lb"),
  38674. name: "Front (Clothed)",
  38675. image: {
  38676. source: "./media/characters/tawendeh/front-clothed.svg",
  38677. extra: 2365/2268,
  38678. bottom: 83/2448
  38679. }
  38680. },
  38681. back: {
  38682. height: math.unit(8, "feet"),
  38683. weight: math.unit(553, "lb"),
  38684. name: "Back",
  38685. image: {
  38686. source: "./media/characters/tawendeh/back.svg",
  38687. extra: 2397/2294,
  38688. bottom: 42/2439
  38689. }
  38690. },
  38691. },
  38692. [
  38693. {
  38694. name: "Mortal Interaction",
  38695. height: math.unit(8, "feet"),
  38696. default: true
  38697. },
  38698. {
  38699. name: "Giant",
  38700. height: math.unit(80, "feet")
  38701. },
  38702. {
  38703. name: "Macro",
  38704. height: math.unit(800, "feet")
  38705. },
  38706. {
  38707. name: "Megamacro",
  38708. height: math.unit(8000, "feet")
  38709. },
  38710. {
  38711. name: "City-Crushing",
  38712. height: math.unit(24000, "feet")
  38713. },
  38714. {
  38715. name: "Mountain-Mashing",
  38716. height: math.unit(80000, "feet")
  38717. },
  38718. {
  38719. name: "Nation Nemesis",
  38720. height: math.unit(8e6, "feet")
  38721. },
  38722. {
  38723. name: "Continent Cracker",
  38724. height: math.unit(24e6, "feet")
  38725. },
  38726. {
  38727. name: "Earth-Eclipsing",
  38728. height: math.unit(2.4e8, "feet")
  38729. },
  38730. {
  38731. name: "Gas Giant Gulper",
  38732. height: math.unit(2.4e9, "feet")
  38733. },
  38734. {
  38735. name: "Sol-Swallowing",
  38736. height: math.unit(8e10, "feet")
  38737. },
  38738. {
  38739. name: "Galaxy Gulper",
  38740. height: math.unit(8, "galaxies")
  38741. },
  38742. {
  38743. name: "Cosmos Churner",
  38744. height: math.unit(8, "universes")
  38745. },
  38746. {
  38747. name: "Omnipotent Otter",
  38748. height: math.unit(80, "universes")
  38749. },
  38750. ]
  38751. ))
  38752. characterMakers.push(() => makeCharacter(
  38753. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38754. {
  38755. front: {
  38756. height: math.unit(2.6, "meters"),
  38757. weight: math.unit(900, "kg"),
  38758. name: "Front",
  38759. image: {
  38760. source: "./media/characters/neesha/front.svg",
  38761. extra: 1803/1653,
  38762. bottom: 128/1931
  38763. }
  38764. },
  38765. },
  38766. [
  38767. {
  38768. name: "Normal",
  38769. height: math.unit(2.6, "meters"),
  38770. default: true
  38771. },
  38772. {
  38773. name: "Macro",
  38774. height: math.unit(50, "meters")
  38775. },
  38776. ]
  38777. ))
  38778. characterMakers.push(() => makeCharacter(
  38779. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38780. {
  38781. front: {
  38782. height: math.unit(5, "feet"),
  38783. weight: math.unit(185, "lb"),
  38784. name: "Front",
  38785. image: {
  38786. source: "./media/characters/kyera/front.svg",
  38787. extra: 1875/1790,
  38788. bottom: 96/1971
  38789. }
  38790. },
  38791. },
  38792. [
  38793. {
  38794. name: "Normal",
  38795. height: math.unit(5, "feet"),
  38796. default: true
  38797. },
  38798. ]
  38799. ))
  38800. characterMakers.push(() => makeCharacter(
  38801. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38802. {
  38803. front: {
  38804. height: math.unit(7 + 6/12, "feet"),
  38805. weight: math.unit(540, "lb"),
  38806. name: "Front",
  38807. image: {
  38808. source: "./media/characters/yuko/front.svg",
  38809. extra: 1282/1222,
  38810. bottom: 101/1383
  38811. }
  38812. },
  38813. frontClothed: {
  38814. height: math.unit(7 + 6/12, "feet"),
  38815. weight: math.unit(540, "lb"),
  38816. name: "Front (Clothed)",
  38817. image: {
  38818. source: "./media/characters/yuko/front-clothed.svg",
  38819. extra: 1282/1222,
  38820. bottom: 101/1383
  38821. }
  38822. },
  38823. },
  38824. [
  38825. {
  38826. name: "Normal",
  38827. height: math.unit(7 + 6/12, "feet"),
  38828. default: true
  38829. },
  38830. {
  38831. name: "Macro",
  38832. height: math.unit(26 + 9/12, "feet")
  38833. },
  38834. {
  38835. name: "Megamacro",
  38836. height: math.unit(300, "feet")
  38837. },
  38838. {
  38839. name: "Gigamacro",
  38840. height: math.unit(5000, "feet")
  38841. },
  38842. {
  38843. name: "Planetary",
  38844. height: math.unit(10000, "miles")
  38845. },
  38846. ]
  38847. ))
  38848. characterMakers.push(() => makeCharacter(
  38849. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38850. {
  38851. front: {
  38852. height: math.unit(8 + 2/12, "feet"),
  38853. weight: math.unit(600, "lb"),
  38854. name: "Front",
  38855. image: {
  38856. source: "./media/characters/deam-nitrel/front.svg",
  38857. extra: 1308/1234,
  38858. bottom: 125/1433
  38859. }
  38860. },
  38861. },
  38862. [
  38863. {
  38864. name: "Normal",
  38865. height: math.unit(8 + 2/12, "feet"),
  38866. default: true
  38867. },
  38868. ]
  38869. ))
  38870. characterMakers.push(() => makeCharacter(
  38871. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38872. {
  38873. front: {
  38874. height: math.unit(6.1, "feet"),
  38875. weight: math.unit(180, "lb"),
  38876. name: "Front",
  38877. image: {
  38878. source: "./media/characters/skyress/front.svg",
  38879. extra: 1045/915,
  38880. bottom: 28/1073
  38881. }
  38882. },
  38883. maw: {
  38884. height: math.unit(1, "feet"),
  38885. name: "Maw",
  38886. image: {
  38887. source: "./media/characters/skyress/maw.svg"
  38888. }
  38889. },
  38890. },
  38891. [
  38892. {
  38893. name: "Normal",
  38894. height: math.unit(6.1, "feet"),
  38895. default: true
  38896. },
  38897. {
  38898. name: "Macro",
  38899. height: math.unit(200, "feet")
  38900. },
  38901. ]
  38902. ))
  38903. characterMakers.push(() => makeCharacter(
  38904. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38905. {
  38906. front: {
  38907. height: math.unit(4 + 2/12, "feet"),
  38908. weight: math.unit(40, "kg"),
  38909. name: "Front",
  38910. image: {
  38911. source: "./media/characters/amethyst-jones/front.svg",
  38912. extra: 1220/1150,
  38913. bottom: 101/1321
  38914. }
  38915. },
  38916. },
  38917. [
  38918. {
  38919. name: "Normal",
  38920. height: math.unit(4 + 2/12, "feet"),
  38921. default: true
  38922. },
  38923. ]
  38924. ))
  38925. characterMakers.push(() => makeCharacter(
  38926. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38927. {
  38928. front: {
  38929. height: math.unit(1.7, "m"),
  38930. weight: math.unit(135, "lb"),
  38931. name: "Front",
  38932. image: {
  38933. source: "./media/characters/jade/front.svg",
  38934. extra: 1818/1767,
  38935. bottom: 32/1850
  38936. }
  38937. },
  38938. back: {
  38939. height: math.unit(1.7, "m"),
  38940. weight: math.unit(135, "lb"),
  38941. name: "Back",
  38942. image: {
  38943. source: "./media/characters/jade/back.svg",
  38944. extra: 1869/1809,
  38945. bottom: 35/1904
  38946. }
  38947. },
  38948. hand: {
  38949. height: math.unit(0.24, "m"),
  38950. name: "Hand",
  38951. image: {
  38952. source: "./media/characters/jade/hand.svg"
  38953. }
  38954. },
  38955. foot: {
  38956. height: math.unit(0.263, "m"),
  38957. name: "Foot",
  38958. image: {
  38959. source: "./media/characters/jade/foot.svg"
  38960. }
  38961. },
  38962. dick: {
  38963. height: math.unit(0.47, "m"),
  38964. name: "Dick",
  38965. image: {
  38966. source: "./media/characters/jade/dick.svg"
  38967. }
  38968. },
  38969. },
  38970. [
  38971. {
  38972. name: "Micro",
  38973. height: math.unit(22, "cm")
  38974. },
  38975. {
  38976. name: "Normal",
  38977. height: math.unit(1.7, "m"),
  38978. default: true
  38979. },
  38980. {
  38981. name: "Macro",
  38982. height: math.unit(152, "m")
  38983. },
  38984. ]
  38985. ))
  38986. characterMakers.push(() => makeCharacter(
  38987. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38988. {
  38989. front: {
  38990. height: math.unit(100, "miles"),
  38991. weight: math.unit(20000, "tons"),
  38992. name: "Front",
  38993. image: {
  38994. source: "./media/characters/cookie/front.svg",
  38995. extra: 1125/1070,
  38996. bottom: 30/1155
  38997. }
  38998. },
  38999. },
  39000. [
  39001. {
  39002. name: "Big",
  39003. height: math.unit(50, "feet")
  39004. },
  39005. {
  39006. name: "Macro",
  39007. height: math.unit(100, "miles"),
  39008. default: true
  39009. },
  39010. {
  39011. name: "Megamacro",
  39012. height: math.unit(90000, "miles")
  39013. },
  39014. ]
  39015. ))
  39016. characterMakers.push(() => makeCharacter(
  39017. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39018. {
  39019. front: {
  39020. height: math.unit(6, "feet"),
  39021. weight: math.unit(145, "lb"),
  39022. name: "Front",
  39023. image: {
  39024. source: "./media/characters/farzian/front.svg",
  39025. extra: 1902/1693,
  39026. bottom: 108/2010
  39027. }
  39028. },
  39029. },
  39030. [
  39031. {
  39032. name: "Macro",
  39033. height: math.unit(500, "feet"),
  39034. default: true
  39035. },
  39036. ]
  39037. ))
  39038. characterMakers.push(() => makeCharacter(
  39039. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39040. {
  39041. front: {
  39042. height: math.unit(3 + 6/12, "feet"),
  39043. weight: math.unit(50, "lb"),
  39044. name: "Front",
  39045. image: {
  39046. source: "./media/characters/kimberly-tilson/front.svg",
  39047. extra: 1400/1322,
  39048. bottom: 36/1436
  39049. }
  39050. },
  39051. back: {
  39052. height: math.unit(3 + 6/12, "feet"),
  39053. weight: math.unit(50, "lb"),
  39054. name: "Back",
  39055. image: {
  39056. source: "./media/characters/kimberly-tilson/back.svg",
  39057. extra: 1370/1307,
  39058. bottom: 20/1390
  39059. }
  39060. },
  39061. },
  39062. [
  39063. {
  39064. name: "Normal",
  39065. height: math.unit(3 + 6/12, "feet"),
  39066. default: true
  39067. },
  39068. ]
  39069. ))
  39070. characterMakers.push(() => makeCharacter(
  39071. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39072. {
  39073. front: {
  39074. height: math.unit(1148, "feet"),
  39075. weight: math.unit(34057, "lb"),
  39076. name: "Front",
  39077. image: {
  39078. source: "./media/characters/harthos/front.svg",
  39079. extra: 1391/1339,
  39080. bottom: 13/1404
  39081. }
  39082. },
  39083. },
  39084. [
  39085. {
  39086. name: "Macro",
  39087. height: math.unit(1148, "feet"),
  39088. default: true
  39089. },
  39090. ]
  39091. ))
  39092. characterMakers.push(() => makeCharacter(
  39093. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39094. {
  39095. front: {
  39096. height: math.unit(15, "feet"),
  39097. name: "Front",
  39098. image: {
  39099. source: "./media/characters/hypatia/front.svg",
  39100. extra: 1653/1591,
  39101. bottom: 79/1732
  39102. }
  39103. },
  39104. },
  39105. [
  39106. {
  39107. name: "Normal",
  39108. height: math.unit(15, "feet")
  39109. },
  39110. {
  39111. name: "Small",
  39112. height: math.unit(300, "feet")
  39113. },
  39114. {
  39115. name: "Macro",
  39116. height: math.unit(2500, "feet"),
  39117. default: true
  39118. },
  39119. {
  39120. name: "Mega Macro",
  39121. height: math.unit(1500, "miles")
  39122. },
  39123. {
  39124. name: "Giga Macro",
  39125. height: math.unit(1.5e6, "miles")
  39126. },
  39127. ]
  39128. ))
  39129. characterMakers.push(() => makeCharacter(
  39130. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39131. {
  39132. front: {
  39133. height: math.unit(6, "feet"),
  39134. weight: math.unit(200, "lb"),
  39135. name: "Front",
  39136. image: {
  39137. source: "./media/characters/wulver/front.svg",
  39138. extra: 1724/1632,
  39139. bottom: 130/1854
  39140. }
  39141. },
  39142. frontNsfw: {
  39143. height: math.unit(6, "feet"),
  39144. weight: math.unit(200, "lb"),
  39145. name: "Front (NSFW)",
  39146. image: {
  39147. source: "./media/characters/wulver/front-nsfw.svg",
  39148. extra: 1724/1632,
  39149. bottom: 130/1854
  39150. }
  39151. },
  39152. },
  39153. [
  39154. {
  39155. name: "Human-Sized",
  39156. height: math.unit(6, "feet")
  39157. },
  39158. {
  39159. name: "Normal",
  39160. height: math.unit(4, "meters"),
  39161. default: true
  39162. },
  39163. {
  39164. name: "Large",
  39165. height: math.unit(6, "m")
  39166. },
  39167. ]
  39168. ))
  39169. characterMakers.push(() => makeCharacter(
  39170. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39171. {
  39172. front: {
  39173. height: math.unit(7, "feet"),
  39174. name: "Front",
  39175. image: {
  39176. source: "./media/characters/maru/front.svg",
  39177. extra: 1595/1570,
  39178. bottom: 0/1595
  39179. }
  39180. },
  39181. },
  39182. [
  39183. {
  39184. name: "Normal",
  39185. height: math.unit(7, "feet"),
  39186. default: true
  39187. },
  39188. {
  39189. name: "Macro",
  39190. height: math.unit(700, "feet")
  39191. },
  39192. {
  39193. name: "Mega Macro",
  39194. height: math.unit(25, "miles")
  39195. },
  39196. ]
  39197. ))
  39198. characterMakers.push(() => makeCharacter(
  39199. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39200. {
  39201. front: {
  39202. height: math.unit(6, "feet"),
  39203. weight: math.unit(170, "lb"),
  39204. name: "Front",
  39205. image: {
  39206. source: "./media/characters/xenon/front.svg",
  39207. extra: 1376/1305,
  39208. bottom: 56/1432
  39209. }
  39210. },
  39211. back: {
  39212. height: math.unit(6, "feet"),
  39213. weight: math.unit(170, "lb"),
  39214. name: "Back",
  39215. image: {
  39216. source: "./media/characters/xenon/back.svg",
  39217. extra: 1328/1259,
  39218. bottom: 95/1423
  39219. }
  39220. },
  39221. maw: {
  39222. height: math.unit(0.52, "feet"),
  39223. name: "Maw",
  39224. image: {
  39225. source: "./media/characters/xenon/maw.svg"
  39226. }
  39227. },
  39228. hand: {
  39229. height: math.unit(0.82, "feet"),
  39230. name: "Hand",
  39231. image: {
  39232. source: "./media/characters/xenon/hand.svg"
  39233. }
  39234. },
  39235. foot: {
  39236. height: math.unit(1.13, "feet"),
  39237. name: "Foot",
  39238. image: {
  39239. source: "./media/characters/xenon/foot.svg"
  39240. }
  39241. },
  39242. },
  39243. [
  39244. {
  39245. name: "Micro",
  39246. height: math.unit(0.8, "inches")
  39247. },
  39248. {
  39249. name: "Normal",
  39250. height: math.unit(6, "feet")
  39251. },
  39252. {
  39253. name: "Macro",
  39254. height: math.unit(50, "feet"),
  39255. default: true
  39256. },
  39257. {
  39258. name: "Macro+",
  39259. height: math.unit(250, "feet")
  39260. },
  39261. {
  39262. name: "Megamacro",
  39263. height: math.unit(1500, "feet")
  39264. },
  39265. ]
  39266. ))
  39267. characterMakers.push(() => makeCharacter(
  39268. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39269. {
  39270. front: {
  39271. height: math.unit(7 + 5/12, "feet"),
  39272. name: "Front",
  39273. image: {
  39274. source: "./media/characters/zane/front.svg",
  39275. extra: 1260/1203,
  39276. bottom: 94/1354
  39277. }
  39278. },
  39279. back: {
  39280. height: math.unit(5.05, "feet"),
  39281. name: "Back",
  39282. image: {
  39283. source: "./media/characters/zane/back.svg",
  39284. extra: 893/829,
  39285. bottom: 30/923
  39286. }
  39287. },
  39288. werewolf: {
  39289. height: math.unit(11, "feet"),
  39290. name: "Werewolf",
  39291. image: {
  39292. source: "./media/characters/zane/werewolf.svg",
  39293. extra: 1383/1323,
  39294. bottom: 89/1472
  39295. }
  39296. },
  39297. foot: {
  39298. height: math.unit(1.46, "feet"),
  39299. name: "Foot",
  39300. image: {
  39301. source: "./media/characters/zane/foot.svg"
  39302. }
  39303. },
  39304. footFront: {
  39305. height: math.unit(0.784, "feet"),
  39306. name: "Foot (Front)",
  39307. image: {
  39308. source: "./media/characters/zane/foot-front.svg"
  39309. }
  39310. },
  39311. dick: {
  39312. height: math.unit(1.95, "feet"),
  39313. name: "Dick",
  39314. image: {
  39315. source: "./media/characters/zane/dick.svg"
  39316. }
  39317. },
  39318. dickWerewolf: {
  39319. height: math.unit(3.77, "feet"),
  39320. name: "Dick (Werewolf)",
  39321. image: {
  39322. source: "./media/characters/zane/dick.svg"
  39323. }
  39324. },
  39325. },
  39326. [
  39327. {
  39328. name: "Normal",
  39329. height: math.unit(7 + 5/12, "feet"),
  39330. default: true
  39331. },
  39332. ]
  39333. ))
  39334. characterMakers.push(() => makeCharacter(
  39335. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39336. {
  39337. front: {
  39338. height: math.unit(6 + 2/12, "feet"),
  39339. weight: math.unit(284, "lb"),
  39340. name: "Front",
  39341. image: {
  39342. source: "./media/characters/benni-desparque/front.svg",
  39343. extra: 1353/1126,
  39344. bottom: 69/1422
  39345. }
  39346. },
  39347. },
  39348. [
  39349. {
  39350. name: "Civilian",
  39351. height: math.unit(6 + 2/12, "feet")
  39352. },
  39353. {
  39354. name: "Normal",
  39355. height: math.unit(98, "feet"),
  39356. default: true
  39357. },
  39358. {
  39359. name: "Kaiju Fighter",
  39360. height: math.unit(268, "feet")
  39361. },
  39362. ]
  39363. ))
  39364. characterMakers.push(() => makeCharacter(
  39365. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39366. {
  39367. front: {
  39368. height: math.unit(5, "feet"),
  39369. weight: math.unit(105, "lb"),
  39370. name: "Front",
  39371. image: {
  39372. source: "./media/characters/maxine/front.svg",
  39373. extra: 1386/1250,
  39374. bottom: 71/1457
  39375. }
  39376. },
  39377. },
  39378. [
  39379. {
  39380. name: "Normal",
  39381. height: math.unit(5, "feet"),
  39382. default: true
  39383. },
  39384. ]
  39385. ))
  39386. characterMakers.push(() => makeCharacter(
  39387. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39388. {
  39389. front: {
  39390. height: math.unit(11 + 7/12, "feet"),
  39391. weight: math.unit(9576, "lb"),
  39392. name: "Front",
  39393. image: {
  39394. source: "./media/characters/scaly/front.svg",
  39395. extra: 888/867,
  39396. bottom: 36/924
  39397. }
  39398. },
  39399. },
  39400. [
  39401. {
  39402. name: "Normal",
  39403. height: math.unit(11 + 7/12, "feet"),
  39404. default: true
  39405. },
  39406. ]
  39407. ))
  39408. characterMakers.push(() => makeCharacter(
  39409. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39410. {
  39411. front: {
  39412. height: math.unit(9, "inches"),
  39413. name: "Front",
  39414. image: {
  39415. source: "./media/characters/saelria/front.svg",
  39416. extra: 662/621,
  39417. bottom: 12/674
  39418. }
  39419. },
  39420. },
  39421. [
  39422. {
  39423. name: "Tiny",
  39424. height: math.unit(9, "inches"),
  39425. default: true
  39426. },
  39427. ]
  39428. ))
  39429. characterMakers.push(() => makeCharacter(
  39430. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39431. {
  39432. front: {
  39433. height: math.unit(80, "meters"),
  39434. weight: math.unit(7000, "tonnes"),
  39435. name: "Front",
  39436. image: {
  39437. source: "./media/characters/tef/front.svg",
  39438. extra: 2036/1991,
  39439. bottom: 54/2090
  39440. }
  39441. },
  39442. back: {
  39443. height: math.unit(80, "meters"),
  39444. weight: math.unit(7000, "tonnes"),
  39445. name: "Back",
  39446. image: {
  39447. source: "./media/characters/tef/back.svg",
  39448. extra: 2036/1991,
  39449. bottom: 54/2090
  39450. }
  39451. },
  39452. },
  39453. [
  39454. {
  39455. name: "Macro",
  39456. height: math.unit(80, "meters"),
  39457. default: true
  39458. },
  39459. ]
  39460. ))
  39461. characterMakers.push(() => makeCharacter(
  39462. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39463. {
  39464. front: {
  39465. height: math.unit(13, "feet"),
  39466. weight: math.unit(6, "tons"),
  39467. name: "Front",
  39468. image: {
  39469. source: "./media/characters/rover/front.svg",
  39470. extra: 1233/1156,
  39471. bottom: 50/1283
  39472. }
  39473. },
  39474. back: {
  39475. height: math.unit(13, "feet"),
  39476. weight: math.unit(6, "tons"),
  39477. name: "Back",
  39478. image: {
  39479. source: "./media/characters/rover/back.svg",
  39480. extra: 1327/1258,
  39481. bottom: 39/1366
  39482. }
  39483. },
  39484. },
  39485. [
  39486. {
  39487. name: "Normal",
  39488. height: math.unit(13, "feet"),
  39489. default: true
  39490. },
  39491. {
  39492. name: "Macro",
  39493. height: math.unit(1300, "feet")
  39494. },
  39495. {
  39496. name: "Megamacro",
  39497. height: math.unit(1300, "miles")
  39498. },
  39499. {
  39500. name: "Gigamacro",
  39501. height: math.unit(1300000, "miles")
  39502. },
  39503. ]
  39504. ))
  39505. characterMakers.push(() => makeCharacter(
  39506. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39507. {
  39508. front: {
  39509. height: math.unit(6, "feet"),
  39510. weight: math.unit(150, "lb"),
  39511. name: "Front",
  39512. image: {
  39513. source: "./media/characters/ariz/front.svg",
  39514. extra: 1401/1346,
  39515. bottom: 5/1406
  39516. }
  39517. },
  39518. },
  39519. [
  39520. {
  39521. name: "Normal",
  39522. height: math.unit(10, "feet"),
  39523. default: true
  39524. },
  39525. ]
  39526. ))
  39527. characterMakers.push(() => makeCharacter(
  39528. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39529. {
  39530. front: {
  39531. height: math.unit(6, "feet"),
  39532. weight: math.unit(140, "lb"),
  39533. name: "Front",
  39534. image: {
  39535. source: "./media/characters/sigrun/front.svg",
  39536. extra: 1418/1359,
  39537. bottom: 27/1445
  39538. }
  39539. },
  39540. },
  39541. [
  39542. {
  39543. name: "Macro",
  39544. height: math.unit(35, "feet"),
  39545. default: true
  39546. },
  39547. ]
  39548. ))
  39549. characterMakers.push(() => makeCharacter(
  39550. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39551. {
  39552. front: {
  39553. height: math.unit(6, "feet"),
  39554. weight: math.unit(150, "lb"),
  39555. name: "Front",
  39556. image: {
  39557. source: "./media/characters/numin/front.svg",
  39558. extra: 1433/1388,
  39559. bottom: 12/1445
  39560. }
  39561. },
  39562. },
  39563. [
  39564. {
  39565. name: "Macro",
  39566. height: math.unit(21.5, "km"),
  39567. default: true
  39568. },
  39569. ]
  39570. ))
  39571. characterMakers.push(() => makeCharacter(
  39572. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39573. {
  39574. front: {
  39575. height: math.unit(6, "feet"),
  39576. weight: math.unit(463, "lb"),
  39577. name: "Front",
  39578. image: {
  39579. source: "./media/characters/melwa/front.svg",
  39580. extra: 1307/1248,
  39581. bottom: 93/1400
  39582. }
  39583. },
  39584. },
  39585. [
  39586. {
  39587. name: "Macro",
  39588. height: math.unit(50, "meters"),
  39589. default: true
  39590. },
  39591. ]
  39592. ))
  39593. characterMakers.push(() => makeCharacter(
  39594. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39595. {
  39596. front: {
  39597. height: math.unit(325, "feet"),
  39598. name: "Front",
  39599. image: {
  39600. source: "./media/characters/zorkaiju/front.svg",
  39601. extra: 1955/1814,
  39602. bottom: 40/1995
  39603. }
  39604. },
  39605. frontExtended: {
  39606. height: math.unit(325, "feet"),
  39607. name: "Front (Extended)",
  39608. image: {
  39609. source: "./media/characters/zorkaiju/front-extended.svg",
  39610. extra: 1955/1814,
  39611. bottom: 40/1995
  39612. }
  39613. },
  39614. side: {
  39615. height: math.unit(325, "feet"),
  39616. name: "Side",
  39617. image: {
  39618. source: "./media/characters/zorkaiju/side.svg",
  39619. extra: 1495/1396,
  39620. bottom: 17/1512
  39621. }
  39622. },
  39623. sideExtended: {
  39624. height: math.unit(325, "feet"),
  39625. name: "Side (Extended)",
  39626. image: {
  39627. source: "./media/characters/zorkaiju/side-extended.svg",
  39628. extra: 1495/1396,
  39629. bottom: 17/1512
  39630. }
  39631. },
  39632. back: {
  39633. height: math.unit(325, "feet"),
  39634. name: "Back",
  39635. image: {
  39636. source: "./media/characters/zorkaiju/back.svg",
  39637. extra: 1959/1821,
  39638. bottom: 31/1990
  39639. }
  39640. },
  39641. backExtended: {
  39642. height: math.unit(325, "feet"),
  39643. name: "Back (Extended)",
  39644. image: {
  39645. source: "./media/characters/zorkaiju/back-extended.svg",
  39646. extra: 1959/1821,
  39647. bottom: 31/1990
  39648. }
  39649. },
  39650. hand: {
  39651. height: math.unit(58.4, "feet"),
  39652. name: "Hand",
  39653. image: {
  39654. source: "./media/characters/zorkaiju/hand.svg"
  39655. }
  39656. },
  39657. handExtended: {
  39658. height: math.unit(61.4, "feet"),
  39659. name: "Hand (Extended)",
  39660. image: {
  39661. source: "./media/characters/zorkaiju/hand-extended.svg"
  39662. }
  39663. },
  39664. foot: {
  39665. height: math.unit(95, "feet"),
  39666. name: "Foot",
  39667. image: {
  39668. source: "./media/characters/zorkaiju/foot.svg"
  39669. }
  39670. },
  39671. leftArm: {
  39672. height: math.unit(59, "feet"),
  39673. name: "Left Arm",
  39674. image: {
  39675. source: "./media/characters/zorkaiju/left-arm.svg"
  39676. }
  39677. },
  39678. rightArm: {
  39679. height: math.unit(59, "feet"),
  39680. name: "Right Arm",
  39681. image: {
  39682. source: "./media/characters/zorkaiju/right-arm.svg"
  39683. }
  39684. },
  39685. tail: {
  39686. height: math.unit(104, "feet"),
  39687. name: "Tail",
  39688. image: {
  39689. source: "./media/characters/zorkaiju/tail.svg"
  39690. }
  39691. },
  39692. tailExtended: {
  39693. height: math.unit(104, "feet"),
  39694. name: "Tail (Extended)",
  39695. image: {
  39696. source: "./media/characters/zorkaiju/tail-extended.svg"
  39697. }
  39698. },
  39699. tailBottom: {
  39700. height: math.unit(104, "feet"),
  39701. name: "Tail Bottom",
  39702. image: {
  39703. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39704. }
  39705. },
  39706. crystal: {
  39707. height: math.unit(27.54, "feet"),
  39708. name: "Crystal",
  39709. image: {
  39710. source: "./media/characters/zorkaiju/crystal.svg"
  39711. }
  39712. },
  39713. },
  39714. [
  39715. {
  39716. name: "Kaiju",
  39717. height: math.unit(325, "feet"),
  39718. default: true
  39719. },
  39720. ]
  39721. ))
  39722. characterMakers.push(() => makeCharacter(
  39723. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39724. {
  39725. front: {
  39726. height: math.unit(6 + 1/12, "feet"),
  39727. weight: math.unit(115, "lb"),
  39728. name: "Front",
  39729. image: {
  39730. source: "./media/characters/bailey-belfry/front.svg",
  39731. extra: 1240/1121,
  39732. bottom: 101/1341
  39733. }
  39734. },
  39735. },
  39736. [
  39737. {
  39738. name: "Normal",
  39739. height: math.unit(6 + 1/12, "feet"),
  39740. default: true
  39741. },
  39742. ]
  39743. ))
  39744. characterMakers.push(() => makeCharacter(
  39745. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39746. {
  39747. side: {
  39748. height: math.unit(4, "meters"),
  39749. weight: math.unit(250, "kg"),
  39750. name: "Side",
  39751. image: {
  39752. source: "./media/characters/blacky/side.svg",
  39753. extra: 1027/919,
  39754. bottom: 43/1070
  39755. }
  39756. },
  39757. maw: {
  39758. height: math.unit(1, "meters"),
  39759. name: "Maw",
  39760. image: {
  39761. source: "./media/characters/blacky/maw.svg"
  39762. }
  39763. },
  39764. paw: {
  39765. height: math.unit(1, "meters"),
  39766. name: "Paw",
  39767. image: {
  39768. source: "./media/characters/blacky/paw.svg"
  39769. }
  39770. },
  39771. },
  39772. [
  39773. {
  39774. name: "Normal",
  39775. height: math.unit(4, "meters"),
  39776. default: true
  39777. },
  39778. ]
  39779. ))
  39780. characterMakers.push(() => makeCharacter(
  39781. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39782. {
  39783. front: {
  39784. height: math.unit(170, "cm"),
  39785. weight: math.unit(66, "kg"),
  39786. name: "Front",
  39787. image: {
  39788. source: "./media/characters/thux-ei/front.svg",
  39789. extra: 1109/1011,
  39790. bottom: 8/1117
  39791. }
  39792. },
  39793. },
  39794. [
  39795. {
  39796. name: "Normal",
  39797. height: math.unit(170, "cm"),
  39798. default: true
  39799. },
  39800. ]
  39801. ))
  39802. characterMakers.push(() => makeCharacter(
  39803. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39804. {
  39805. front: {
  39806. height: math.unit(5, "feet"),
  39807. weight: math.unit(120, "lb"),
  39808. name: "Front",
  39809. image: {
  39810. source: "./media/characters/roxanne-voltaire/front.svg",
  39811. extra: 1901/1779,
  39812. bottom: 53/1954
  39813. }
  39814. },
  39815. },
  39816. [
  39817. {
  39818. name: "Normal",
  39819. height: math.unit(5, "feet"),
  39820. default: true
  39821. },
  39822. {
  39823. name: "Giant",
  39824. height: math.unit(50, "feet")
  39825. },
  39826. {
  39827. name: "Titan",
  39828. height: math.unit(500, "feet")
  39829. },
  39830. {
  39831. name: "Macro",
  39832. height: math.unit(5000, "feet")
  39833. },
  39834. {
  39835. name: "Megamacro",
  39836. height: math.unit(50000, "feet")
  39837. },
  39838. {
  39839. name: "Gigamacro",
  39840. height: math.unit(500000, "feet")
  39841. },
  39842. {
  39843. name: "Teramacro",
  39844. height: math.unit(5e6, "feet")
  39845. },
  39846. ]
  39847. ))
  39848. characterMakers.push(() => makeCharacter(
  39849. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39850. {
  39851. front: {
  39852. height: math.unit(6 + 2/12, "feet"),
  39853. name: "Front",
  39854. image: {
  39855. source: "./media/characters/squeaks/front.svg",
  39856. extra: 1823/1768,
  39857. bottom: 138/1961
  39858. }
  39859. },
  39860. },
  39861. [
  39862. {
  39863. name: "Micro",
  39864. height: math.unit(0.5, "inches")
  39865. },
  39866. {
  39867. name: "Normal",
  39868. height: math.unit(6 + 2/12, "feet"),
  39869. default: true
  39870. },
  39871. {
  39872. name: "Macro",
  39873. height: math.unit(600, "feet")
  39874. },
  39875. ]
  39876. ))
  39877. characterMakers.push(() => makeCharacter(
  39878. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39879. {
  39880. front: {
  39881. height: math.unit(1.72, "meters"),
  39882. name: "Front",
  39883. image: {
  39884. source: "./media/characters/archinger/front.svg",
  39885. extra: 1861/1675,
  39886. bottom: 125/1986
  39887. }
  39888. },
  39889. back: {
  39890. height: math.unit(1.72, "meters"),
  39891. name: "Back",
  39892. image: {
  39893. source: "./media/characters/archinger/back.svg",
  39894. extra: 1844/1701,
  39895. bottom: 104/1948
  39896. }
  39897. },
  39898. cock: {
  39899. height: math.unit(0.59, "feet"),
  39900. name: "Cock",
  39901. image: {
  39902. source: "./media/characters/archinger/cock.svg"
  39903. }
  39904. },
  39905. },
  39906. [
  39907. {
  39908. name: "Normal",
  39909. height: math.unit(1.72, "meters"),
  39910. default: true
  39911. },
  39912. {
  39913. name: "Macro",
  39914. height: math.unit(84, "meters")
  39915. },
  39916. {
  39917. name: "Macro+",
  39918. height: math.unit(112, "meters")
  39919. },
  39920. {
  39921. name: "Macro++",
  39922. height: math.unit(960, "meters")
  39923. },
  39924. {
  39925. name: "Macro+++",
  39926. height: math.unit(4, "km")
  39927. },
  39928. {
  39929. name: "Macro++++",
  39930. height: math.unit(48, "km")
  39931. },
  39932. {
  39933. name: "Macro+++++",
  39934. height: math.unit(4500, "km")
  39935. },
  39936. ]
  39937. ))
  39938. characterMakers.push(() => makeCharacter(
  39939. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39940. {
  39941. front: {
  39942. height: math.unit(5 + 5/12, "feet"),
  39943. name: "Front",
  39944. image: {
  39945. source: "./media/characters/alsnapz/front.svg",
  39946. extra: 1157/1065,
  39947. bottom: 42/1199
  39948. }
  39949. },
  39950. },
  39951. [
  39952. {
  39953. name: "Normal",
  39954. height: math.unit(5 + 5/12, "feet"),
  39955. default: true
  39956. },
  39957. ]
  39958. ))
  39959. characterMakers.push(() => makeCharacter(
  39960. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39961. {
  39962. side: {
  39963. height: math.unit(3.2, "earths"),
  39964. name: "Side",
  39965. image: {
  39966. source: "./media/characters/mag/side.svg",
  39967. extra: 1331/1008,
  39968. bottom: 52/1383
  39969. }
  39970. },
  39971. wing: {
  39972. height: math.unit(1.94, "earths"),
  39973. name: "Wing",
  39974. image: {
  39975. source: "./media/characters/mag/wing.svg"
  39976. }
  39977. },
  39978. dick: {
  39979. height: math.unit(1.8, "earths"),
  39980. name: "Dick",
  39981. image: {
  39982. source: "./media/characters/mag/dick.svg"
  39983. }
  39984. },
  39985. ass: {
  39986. height: math.unit(1.33, "earths"),
  39987. name: "Ass",
  39988. image: {
  39989. source: "./media/characters/mag/ass.svg"
  39990. }
  39991. },
  39992. head: {
  39993. height: math.unit(1.1, "earths"),
  39994. name: "Head",
  39995. image: {
  39996. source: "./media/characters/mag/head.svg"
  39997. }
  39998. },
  39999. maw: {
  40000. height: math.unit(1.62, "earths"),
  40001. name: "Maw",
  40002. image: {
  40003. source: "./media/characters/mag/maw.svg"
  40004. }
  40005. },
  40006. },
  40007. [
  40008. {
  40009. name: "Small",
  40010. height: math.unit(162, "feet")
  40011. },
  40012. {
  40013. name: "Normal",
  40014. height: math.unit(3.2, "earths"),
  40015. default: true
  40016. },
  40017. ]
  40018. ))
  40019. characterMakers.push(() => makeCharacter(
  40020. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40021. {
  40022. front: {
  40023. height: math.unit(512, "feet"),
  40024. weight: math.unit(63509, "tonnes"),
  40025. name: "Front",
  40026. image: {
  40027. source: "./media/characters/vorrel-harroc/front.svg",
  40028. extra: 1075/1063,
  40029. bottom: 62/1137
  40030. }
  40031. },
  40032. },
  40033. [
  40034. {
  40035. name: "Normal",
  40036. height: math.unit(10, "feet")
  40037. },
  40038. {
  40039. name: "Macro",
  40040. height: math.unit(512, "feet"),
  40041. default: true
  40042. },
  40043. {
  40044. name: "Megamacro",
  40045. height: math.unit(256, "miles")
  40046. },
  40047. {
  40048. name: "Gigamacro",
  40049. height: math.unit(4096, "miles")
  40050. },
  40051. ]
  40052. ))
  40053. characterMakers.push(() => makeCharacter(
  40054. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40055. {
  40056. side: {
  40057. height: math.unit(50, "feet"),
  40058. name: "Side",
  40059. image: {
  40060. source: "./media/characters/froimar/side.svg",
  40061. extra: 855/638,
  40062. bottom: 99/954
  40063. }
  40064. },
  40065. },
  40066. [
  40067. {
  40068. name: "Macro",
  40069. height: math.unit(50, "feet"),
  40070. default: true
  40071. },
  40072. ]
  40073. ))
  40074. characterMakers.push(() => makeCharacter(
  40075. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40076. {
  40077. front: {
  40078. height: math.unit(210, "miles"),
  40079. name: "Front",
  40080. image: {
  40081. source: "./media/characters/timothy/front.svg",
  40082. extra: 1007/943,
  40083. bottom: 62/1069
  40084. }
  40085. },
  40086. frontSkirt: {
  40087. height: math.unit(210, "miles"),
  40088. name: "Front (Skirt)",
  40089. image: {
  40090. source: "./media/characters/timothy/front-skirt.svg",
  40091. extra: 1007/943,
  40092. bottom: 62/1069
  40093. }
  40094. },
  40095. frontCoat: {
  40096. height: math.unit(210, "miles"),
  40097. name: "Front (Coat)",
  40098. image: {
  40099. source: "./media/characters/timothy/front-coat.svg",
  40100. extra: 1007/943,
  40101. bottom: 62/1069
  40102. }
  40103. },
  40104. },
  40105. [
  40106. {
  40107. name: "Macro",
  40108. height: math.unit(210, "miles"),
  40109. default: true
  40110. },
  40111. {
  40112. name: "Megamacro",
  40113. height: math.unit(210000, "miles")
  40114. },
  40115. ]
  40116. ))
  40117. characterMakers.push(() => makeCharacter(
  40118. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40119. {
  40120. front: {
  40121. height: math.unit(188, "feet"),
  40122. name: "Front",
  40123. image: {
  40124. source: "./media/characters/pyotr/front.svg",
  40125. extra: 1912/1826,
  40126. bottom: 18/1930
  40127. }
  40128. },
  40129. },
  40130. [
  40131. {
  40132. name: "Macro",
  40133. height: math.unit(188, "feet"),
  40134. default: true
  40135. },
  40136. {
  40137. name: "Megamacro",
  40138. height: math.unit(8, "miles")
  40139. },
  40140. ]
  40141. ))
  40142. characterMakers.push(() => makeCharacter(
  40143. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40144. {
  40145. side: {
  40146. height: math.unit(10, "feet"),
  40147. weight: math.unit(4500, "lb"),
  40148. name: "Side",
  40149. image: {
  40150. source: "./media/characters/ackart/side.svg",
  40151. extra: 1776/1668,
  40152. bottom: 116/1892
  40153. }
  40154. },
  40155. },
  40156. [
  40157. {
  40158. name: "Normal",
  40159. height: math.unit(10, "feet"),
  40160. default: true
  40161. },
  40162. ]
  40163. ))
  40164. characterMakers.push(() => makeCharacter(
  40165. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40166. {
  40167. side: {
  40168. height: math.unit(21, "feet"),
  40169. name: "Side",
  40170. image: {
  40171. source: "./media/characters/nolow/side.svg",
  40172. extra: 1484/1434,
  40173. bottom: 85/1569
  40174. }
  40175. },
  40176. sideErect: {
  40177. height: math.unit(21, "feet"),
  40178. name: "Side-erect",
  40179. image: {
  40180. source: "./media/characters/nolow/side-erect.svg",
  40181. extra: 1484/1434,
  40182. bottom: 85/1569
  40183. }
  40184. },
  40185. },
  40186. [
  40187. {
  40188. name: "Regular",
  40189. height: math.unit(12, "feet")
  40190. },
  40191. {
  40192. name: "Big Chee",
  40193. height: math.unit(21, "feet"),
  40194. default: true
  40195. },
  40196. ]
  40197. ))
  40198. characterMakers.push(() => makeCharacter(
  40199. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40200. {
  40201. front: {
  40202. height: math.unit(7, "feet"),
  40203. weight: math.unit(250, "lb"),
  40204. name: "Front",
  40205. image: {
  40206. source: "./media/characters/nines/front.svg",
  40207. extra: 1741/1607,
  40208. bottom: 41/1782
  40209. }
  40210. },
  40211. side: {
  40212. height: math.unit(7, "feet"),
  40213. weight: math.unit(250, "lb"),
  40214. name: "Side",
  40215. image: {
  40216. source: "./media/characters/nines/side.svg",
  40217. extra: 1854/1735,
  40218. bottom: 93/1947
  40219. }
  40220. },
  40221. back: {
  40222. height: math.unit(7, "feet"),
  40223. weight: math.unit(250, "lb"),
  40224. name: "Back",
  40225. image: {
  40226. source: "./media/characters/nines/back.svg",
  40227. extra: 1748/1615,
  40228. bottom: 20/1768
  40229. }
  40230. },
  40231. },
  40232. [
  40233. {
  40234. name: "Megamacro",
  40235. height: math.unit(99, "km"),
  40236. default: true
  40237. },
  40238. ]
  40239. ))
  40240. characterMakers.push(() => makeCharacter(
  40241. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40242. {
  40243. front: {
  40244. height: math.unit(5 + 10/12, "feet"),
  40245. weight: math.unit(210, "lb"),
  40246. name: "Front",
  40247. image: {
  40248. source: "./media/characters/zenith/front.svg",
  40249. extra: 1531/1452,
  40250. bottom: 198/1729
  40251. }
  40252. },
  40253. back: {
  40254. height: math.unit(5 + 10/12, "feet"),
  40255. weight: math.unit(210, "lb"),
  40256. name: "Back",
  40257. image: {
  40258. source: "./media/characters/zenith/back.svg",
  40259. extra: 1571/1487,
  40260. bottom: 75/1646
  40261. }
  40262. },
  40263. },
  40264. [
  40265. {
  40266. name: "Normal",
  40267. height: math.unit(5 + 10/12, "feet"),
  40268. default: true
  40269. }
  40270. ]
  40271. ))
  40272. characterMakers.push(() => makeCharacter(
  40273. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40274. {
  40275. front: {
  40276. height: math.unit(4, "feet"),
  40277. weight: math.unit(60, "lb"),
  40278. name: "Front",
  40279. image: {
  40280. source: "./media/characters/jasper/front.svg",
  40281. extra: 1450/1379,
  40282. bottom: 19/1469
  40283. }
  40284. },
  40285. },
  40286. [
  40287. {
  40288. name: "Normal",
  40289. height: math.unit(4, "feet"),
  40290. default: true
  40291. },
  40292. ]
  40293. ))
  40294. characterMakers.push(() => makeCharacter(
  40295. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40296. {
  40297. front: {
  40298. height: math.unit(6 + 5/12, "feet"),
  40299. weight: math.unit(290, "lb"),
  40300. name: "Front",
  40301. image: {
  40302. source: "./media/characters/tiberius-thyben/front.svg",
  40303. extra: 757/739,
  40304. bottom: 39/796
  40305. }
  40306. },
  40307. },
  40308. [
  40309. {
  40310. name: "Micro",
  40311. height: math.unit(1.5, "inches")
  40312. },
  40313. {
  40314. name: "Normal",
  40315. height: math.unit(6 + 5/12, "feet"),
  40316. default: true
  40317. },
  40318. {
  40319. name: "Macro",
  40320. height: math.unit(300, "feet")
  40321. },
  40322. ]
  40323. ))
  40324. characterMakers.push(() => makeCharacter(
  40325. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40326. {
  40327. front: {
  40328. height: math.unit(5 + 6/12, "feet"),
  40329. weight: math.unit(60, "kg"),
  40330. name: "Front",
  40331. image: {
  40332. source: "./media/characters/sabre/front.svg",
  40333. extra: 738/671,
  40334. bottom: 27/765
  40335. }
  40336. },
  40337. },
  40338. [
  40339. {
  40340. name: "Teeny",
  40341. height: math.unit(2, "inches")
  40342. },
  40343. {
  40344. name: "Smol",
  40345. height: math.unit(8, "inches")
  40346. },
  40347. {
  40348. name: "Normal",
  40349. height: math.unit(5 + 6/12, "feet"),
  40350. default: true
  40351. },
  40352. {
  40353. name: "Mini-Macro",
  40354. height: math.unit(15, "feet")
  40355. },
  40356. {
  40357. name: "Macro",
  40358. height: math.unit(50, "feet")
  40359. },
  40360. ]
  40361. ))
  40362. characterMakers.push(() => makeCharacter(
  40363. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40364. {
  40365. front: {
  40366. height: math.unit(6 + 4/12, "feet"),
  40367. weight: math.unit(170, "lb"),
  40368. name: "Front",
  40369. image: {
  40370. source: "./media/characters/charlie/front.svg",
  40371. extra: 1348/1228,
  40372. bottom: 15/1363
  40373. }
  40374. },
  40375. },
  40376. [
  40377. {
  40378. name: "Macro",
  40379. height: math.unit(1700, "meters"),
  40380. default: true
  40381. },
  40382. {
  40383. name: "MegaMacro",
  40384. height: math.unit(20400, "meters")
  40385. },
  40386. ]
  40387. ))
  40388. characterMakers.push(() => makeCharacter(
  40389. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40390. {
  40391. front: {
  40392. height: math.unit(6 + 3/12, "feet"),
  40393. weight: math.unit(185, "lb"),
  40394. name: "Front",
  40395. image: {
  40396. source: "./media/characters/susan-grant/front.svg",
  40397. extra: 1351/1327,
  40398. bottom: 26/1377
  40399. }
  40400. },
  40401. },
  40402. [
  40403. {
  40404. name: "Normal",
  40405. height: math.unit(6 + 3/12, "feet"),
  40406. default: true
  40407. },
  40408. {
  40409. name: "Macro",
  40410. height: math.unit(225, "feet")
  40411. },
  40412. {
  40413. name: "Macro+",
  40414. height: math.unit(900, "feet")
  40415. },
  40416. {
  40417. name: "MegaMacro",
  40418. height: math.unit(14400, "feet")
  40419. },
  40420. ]
  40421. ))
  40422. characterMakers.push(() => makeCharacter(
  40423. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40424. {
  40425. front: {
  40426. height: math.unit(5 + 4/12, "feet"),
  40427. weight: math.unit(110, "lb"),
  40428. name: "Front",
  40429. image: {
  40430. source: "./media/characters/axel-isanov/front.svg",
  40431. extra: 1096/1065,
  40432. bottom: 13/1109
  40433. }
  40434. },
  40435. },
  40436. [
  40437. {
  40438. name: "Normal",
  40439. height: math.unit(5 + 4/12, "feet"),
  40440. default: true
  40441. },
  40442. ]
  40443. ))
  40444. characterMakers.push(() => makeCharacter(
  40445. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40446. {
  40447. front: {
  40448. height: math.unit(9, "feet"),
  40449. weight: math.unit(467, "lb"),
  40450. name: "Front",
  40451. image: {
  40452. source: "./media/characters/necahual/front.svg",
  40453. extra: 920/873,
  40454. bottom: 26/946
  40455. }
  40456. },
  40457. back: {
  40458. height: math.unit(9, "feet"),
  40459. weight: math.unit(467, "lb"),
  40460. name: "Back",
  40461. image: {
  40462. source: "./media/characters/necahual/back.svg",
  40463. extra: 930/884,
  40464. bottom: 16/946
  40465. }
  40466. },
  40467. frontUnderwear: {
  40468. height: math.unit(9, "feet"),
  40469. weight: math.unit(467, "lb"),
  40470. name: "Front (Underwear)",
  40471. image: {
  40472. source: "./media/characters/necahual/front-underwear.svg",
  40473. extra: 920/873,
  40474. bottom: 26/946
  40475. }
  40476. },
  40477. frontDressed: {
  40478. height: math.unit(9, "feet"),
  40479. weight: math.unit(467, "lb"),
  40480. name: "Front (Dressed)",
  40481. image: {
  40482. source: "./media/characters/necahual/front-dressed.svg",
  40483. extra: 920/873,
  40484. bottom: 26/946
  40485. }
  40486. },
  40487. },
  40488. [
  40489. {
  40490. name: "Comprsesed",
  40491. height: math.unit(9, "feet")
  40492. },
  40493. {
  40494. name: "Natural",
  40495. height: math.unit(15, "feet"),
  40496. default: true
  40497. },
  40498. {
  40499. name: "Boosted",
  40500. height: math.unit(50, "feet")
  40501. },
  40502. {
  40503. name: "Boosted+",
  40504. height: math.unit(150, "feet")
  40505. },
  40506. {
  40507. name: "Max",
  40508. height: math.unit(500, "feet")
  40509. },
  40510. ]
  40511. ))
  40512. characterMakers.push(() => makeCharacter(
  40513. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40514. {
  40515. front: {
  40516. height: math.unit(22 + 1/12, "feet"),
  40517. weight: math.unit(3200, "lb"),
  40518. name: "Front",
  40519. image: {
  40520. source: "./media/characters/theo-acacia/front.svg",
  40521. extra: 1796/1741,
  40522. bottom: 83/1879
  40523. }
  40524. },
  40525. frontUnderwear: {
  40526. height: math.unit(22 + 1/12, "feet"),
  40527. weight: math.unit(3200, "lb"),
  40528. name: "Front (Underwear)",
  40529. image: {
  40530. source: "./media/characters/theo-acacia/front-underwear.svg",
  40531. extra: 1796/1741,
  40532. bottom: 83/1879
  40533. }
  40534. },
  40535. frontNude: {
  40536. height: math.unit(22 + 1/12, "feet"),
  40537. weight: math.unit(3200, "lb"),
  40538. name: "Front (Nude)",
  40539. image: {
  40540. source: "./media/characters/theo-acacia/front-nude.svg",
  40541. extra: 1796/1741,
  40542. bottom: 83/1879
  40543. }
  40544. },
  40545. },
  40546. [
  40547. {
  40548. name: "Normal",
  40549. height: math.unit(22 + 1/12, "feet"),
  40550. default: true
  40551. },
  40552. ]
  40553. ))
  40554. characterMakers.push(() => makeCharacter(
  40555. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40556. {
  40557. front: {
  40558. height: math.unit(20, "feet"),
  40559. name: "Front",
  40560. image: {
  40561. source: "./media/characters/astra/front.svg",
  40562. extra: 1850/1714,
  40563. bottom: 106/1956
  40564. }
  40565. },
  40566. frontUndressed: {
  40567. height: math.unit(20, "feet"),
  40568. name: "Front (Undressed)",
  40569. image: {
  40570. source: "./media/characters/astra/front-undressed.svg",
  40571. extra: 1926/1749,
  40572. bottom: 0/1926
  40573. }
  40574. },
  40575. hand: {
  40576. height: math.unit(1.53, "feet"),
  40577. name: "Hand",
  40578. image: {
  40579. source: "./media/characters/astra/hand.svg"
  40580. }
  40581. },
  40582. paw: {
  40583. height: math.unit(1.53, "feet"),
  40584. name: "Paw",
  40585. image: {
  40586. source: "./media/characters/astra/paw.svg"
  40587. }
  40588. },
  40589. },
  40590. [
  40591. {
  40592. name: "Smallest",
  40593. height: math.unit(20, "feet")
  40594. },
  40595. {
  40596. name: "Normal",
  40597. height: math.unit(1e9, "miles"),
  40598. default: true
  40599. },
  40600. {
  40601. name: "Larger",
  40602. height: math.unit(5, "multiverses")
  40603. },
  40604. {
  40605. name: "Largest",
  40606. height: math.unit(1e9, "multiverses")
  40607. },
  40608. ]
  40609. ))
  40610. characterMakers.push(() => makeCharacter(
  40611. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40612. {
  40613. front: {
  40614. height: math.unit(8, "feet"),
  40615. name: "Front",
  40616. image: {
  40617. source: "./media/characters/breanna/front.svg",
  40618. extra: 1912/1632,
  40619. bottom: 33/1945
  40620. }
  40621. },
  40622. },
  40623. [
  40624. {
  40625. name: "Smallest",
  40626. height: math.unit(8, "feet")
  40627. },
  40628. {
  40629. name: "Normal",
  40630. height: math.unit(1, "mile"),
  40631. default: true
  40632. },
  40633. {
  40634. name: "Maximum",
  40635. height: math.unit(1500000000000, "lightyears")
  40636. },
  40637. ]
  40638. ))
  40639. characterMakers.push(() => makeCharacter(
  40640. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40641. {
  40642. front: {
  40643. height: math.unit(5 + 11/12, "feet"),
  40644. weight: math.unit(155, "lb"),
  40645. name: "Front",
  40646. image: {
  40647. source: "./media/characters/cai/front.svg",
  40648. extra: 1823/1702,
  40649. bottom: 32/1855
  40650. }
  40651. },
  40652. back: {
  40653. height: math.unit(5 + 11/12, "feet"),
  40654. weight: math.unit(155, "lb"),
  40655. name: "Back",
  40656. image: {
  40657. source: "./media/characters/cai/back.svg",
  40658. extra: 1809/1708,
  40659. bottom: 31/1840
  40660. }
  40661. },
  40662. },
  40663. [
  40664. {
  40665. name: "Normal",
  40666. height: math.unit(5 + 11/12, "feet"),
  40667. default: true
  40668. },
  40669. {
  40670. name: "Big",
  40671. height: math.unit(15, "feet")
  40672. },
  40673. {
  40674. name: "Macro",
  40675. height: math.unit(200, "feet")
  40676. },
  40677. ]
  40678. ))
  40679. characterMakers.push(() => makeCharacter(
  40680. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40681. {
  40682. front: {
  40683. height: math.unit(5 + 6/12, "feet"),
  40684. weight: math.unit(160, "lb"),
  40685. name: "Front",
  40686. image: {
  40687. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40688. extra: 1227/1174,
  40689. bottom: 37/1264
  40690. }
  40691. },
  40692. },
  40693. [
  40694. {
  40695. name: "Macro",
  40696. height: math.unit(444, "meters"),
  40697. default: true
  40698. },
  40699. ]
  40700. ))
  40701. characterMakers.push(() => makeCharacter(
  40702. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40703. {
  40704. front: {
  40705. height: math.unit(18 + 7/12, "feet"),
  40706. name: "Front",
  40707. image: {
  40708. source: "./media/characters/rex/front.svg",
  40709. extra: 1941/1807,
  40710. bottom: 66/2007
  40711. }
  40712. },
  40713. back: {
  40714. height: math.unit(18 + 7/12, "feet"),
  40715. name: "Back",
  40716. image: {
  40717. source: "./media/characters/rex/back.svg",
  40718. extra: 1937/1822,
  40719. bottom: 42/1979
  40720. }
  40721. },
  40722. boot: {
  40723. height: math.unit(3.45, "feet"),
  40724. name: "Boot",
  40725. image: {
  40726. source: "./media/characters/rex/boot.svg"
  40727. }
  40728. },
  40729. paw: {
  40730. height: math.unit(4.17, "feet"),
  40731. name: "Paw",
  40732. image: {
  40733. source: "./media/characters/rex/paw.svg"
  40734. }
  40735. },
  40736. head: {
  40737. height: math.unit(6.728, "feet"),
  40738. name: "Head",
  40739. image: {
  40740. source: "./media/characters/rex/head.svg"
  40741. }
  40742. },
  40743. },
  40744. [
  40745. {
  40746. name: "Nano",
  40747. height: math.unit(18 + 7/12, "feet")
  40748. },
  40749. {
  40750. name: "Micro",
  40751. height: math.unit(1.5, "megameters")
  40752. },
  40753. {
  40754. name: "Normal",
  40755. height: math.unit(440, "megameters"),
  40756. default: true
  40757. },
  40758. {
  40759. name: "Macro",
  40760. height: math.unit(2.5, "gigameters")
  40761. },
  40762. {
  40763. name: "Gigamacro",
  40764. height: math.unit(2, "galaxies")
  40765. },
  40766. ]
  40767. ))
  40768. characterMakers.push(() => makeCharacter(
  40769. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40770. {
  40771. side: {
  40772. height: math.unit(32, "feet"),
  40773. weight: math.unit(250000, "lb"),
  40774. name: "Side",
  40775. image: {
  40776. source: "./media/characters/silverwing/side.svg",
  40777. extra: 1100/1019,
  40778. bottom: 204/1304
  40779. }
  40780. },
  40781. },
  40782. [
  40783. {
  40784. name: "Normal",
  40785. height: math.unit(32, "feet"),
  40786. default: true
  40787. },
  40788. ]
  40789. ))
  40790. characterMakers.push(() => makeCharacter(
  40791. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40792. {
  40793. front: {
  40794. height: math.unit(6 + 6/12, "feet"),
  40795. weight: math.unit(350, "lb"),
  40796. name: "Front",
  40797. image: {
  40798. source: "./media/characters/tristan-hawthorne/front.svg",
  40799. extra: 1159/1124,
  40800. bottom: 37/1196
  40801. }
  40802. },
  40803. },
  40804. [
  40805. {
  40806. name: "Normal",
  40807. height: math.unit(6 + 6/12, "feet"),
  40808. default: true
  40809. },
  40810. ]
  40811. ))
  40812. characterMakers.push(() => makeCharacter(
  40813. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40814. {
  40815. front: {
  40816. height: math.unit(5 + 11/12, "feet"),
  40817. weight: math.unit(190, "lb"),
  40818. name: "Front",
  40819. image: {
  40820. source: "./media/characters/mizu/front.svg",
  40821. extra: 1988/1788,
  40822. bottom: 14/2002
  40823. }
  40824. },
  40825. },
  40826. [
  40827. {
  40828. name: "Normal",
  40829. height: math.unit(5 + 11/12, "feet"),
  40830. default: true
  40831. },
  40832. ]
  40833. ))
  40834. characterMakers.push(() => makeCharacter(
  40835. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40836. {
  40837. front: {
  40838. height: math.unit(6, "feet"),
  40839. name: "Front",
  40840. image: {
  40841. source: "./media/characters/moonlight-rose-terra/front.svg",
  40842. extra: 1434/1252,
  40843. bottom: 48/1482
  40844. }
  40845. },
  40846. },
  40847. [
  40848. {
  40849. name: "TRAPPIST-1D",
  40850. height: math.unit(4992*2, "km")
  40851. },
  40852. {
  40853. name: "Earth",
  40854. height: math.unit(6367*2, "km"),
  40855. default: true
  40856. },
  40857. {
  40858. name: "Kepler-22b",
  40859. height: math.unit(15282*2, "km")
  40860. },
  40861. ]
  40862. ))
  40863. characterMakers.push(() => makeCharacter(
  40864. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40865. {
  40866. front: {
  40867. height: math.unit(6, "feet"),
  40868. name: "Front",
  40869. image: {
  40870. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40871. extra: 1851/1712,
  40872. bottom: 0/1851
  40873. }
  40874. },
  40875. },
  40876. [
  40877. {
  40878. name: "Enceladus",
  40879. height: math.unit(513*2, "km")
  40880. },
  40881. {
  40882. name: "Europe",
  40883. height: math.unit(1560*2, "km")
  40884. },
  40885. {
  40886. name: "Neptune",
  40887. height: math.unit(24622*2, "km"),
  40888. default: true
  40889. },
  40890. {
  40891. name: "CoRoT-9b",
  40892. height: math.unit(75067*2, "km")
  40893. },
  40894. ]
  40895. ))
  40896. characterMakers.push(() => makeCharacter(
  40897. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40898. {
  40899. front: {
  40900. height: math.unit(6, "feet"),
  40901. name: "Front",
  40902. image: {
  40903. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40904. extra: 1367/1286,
  40905. bottom: 55/1422
  40906. }
  40907. },
  40908. },
  40909. [
  40910. {
  40911. name: "Saturn",
  40912. height: math.unit(58232*2, "km")
  40913. },
  40914. {
  40915. name: "Jupiter",
  40916. height: math.unit(69911*2, "km"),
  40917. default: true
  40918. },
  40919. {
  40920. name: "HD 100546 b",
  40921. height: math.unit(482938, "km")
  40922. },
  40923. ]
  40924. ))
  40925. characterMakers.push(() => makeCharacter(
  40926. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40927. {
  40928. front: {
  40929. height: math.unit(1.7, "feet"),
  40930. weight: math.unit(50, "lb"),
  40931. name: "Front",
  40932. image: {
  40933. source: "./media/characters/dechroma/front.svg",
  40934. extra: 1095/859,
  40935. bottom: 64/1159
  40936. }
  40937. },
  40938. },
  40939. [
  40940. {
  40941. name: "Normal",
  40942. height: math.unit(1.7, "feet"),
  40943. default: true
  40944. },
  40945. ]
  40946. ))
  40947. characterMakers.push(() => makeCharacter(
  40948. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40949. {
  40950. side: {
  40951. height: math.unit(30, "feet"),
  40952. name: "Side",
  40953. image: {
  40954. source: "./media/characters/veluren-thanazel/side.svg",
  40955. extra: 1611/633,
  40956. bottom: 118/1729
  40957. }
  40958. },
  40959. front: {
  40960. height: math.unit(30, "feet"),
  40961. name: "Front",
  40962. image: {
  40963. source: "./media/characters/veluren-thanazel/front.svg",
  40964. extra: 1486/636,
  40965. bottom: 238/1724
  40966. }
  40967. },
  40968. head: {
  40969. height: math.unit(21.4, "feet"),
  40970. name: "Head",
  40971. image: {
  40972. source: "./media/characters/veluren-thanazel/head.svg"
  40973. }
  40974. },
  40975. genitals: {
  40976. height: math.unit(19.4, "feet"),
  40977. name: "Genitals",
  40978. image: {
  40979. source: "./media/characters/veluren-thanazel/genitals.svg"
  40980. }
  40981. },
  40982. },
  40983. [
  40984. {
  40985. name: "Social",
  40986. height: math.unit(6, "feet")
  40987. },
  40988. {
  40989. name: "Play",
  40990. height: math.unit(12, "feet")
  40991. },
  40992. {
  40993. name: "True",
  40994. height: math.unit(30, "feet"),
  40995. default: true
  40996. },
  40997. ]
  40998. ))
  40999. characterMakers.push(() => makeCharacter(
  41000. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41001. {
  41002. front: {
  41003. height: math.unit(7 + 6/12, "feet"),
  41004. weight: math.unit(500, "kg"),
  41005. name: "Front",
  41006. image: {
  41007. source: "./media/characters/arcturas/front.svg",
  41008. extra: 1700/1500,
  41009. bottom: 145/1845
  41010. }
  41011. },
  41012. },
  41013. [
  41014. {
  41015. name: "Normal",
  41016. height: math.unit(7 + 6/12, "feet"),
  41017. default: true
  41018. },
  41019. ]
  41020. ))
  41021. characterMakers.push(() => makeCharacter(
  41022. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41023. {
  41024. side: {
  41025. height: math.unit(6, "feet"),
  41026. weight: math.unit(2, "tons"),
  41027. name: "Side",
  41028. image: {
  41029. source: "./media/characters/vitaen/side.svg",
  41030. extra: 1157/617,
  41031. bottom: 122/1279
  41032. }
  41033. },
  41034. },
  41035. [
  41036. {
  41037. name: "Normal",
  41038. height: math.unit(6, "feet"),
  41039. default: true
  41040. },
  41041. ]
  41042. ))
  41043. characterMakers.push(() => makeCharacter(
  41044. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41045. {
  41046. front: {
  41047. height: math.unit(19, "feet"),
  41048. name: "Front",
  41049. image: {
  41050. source: "./media/characters/fia-dreamweaver/front.svg",
  41051. extra: 1630/1504,
  41052. bottom: 25/1655
  41053. }
  41054. },
  41055. },
  41056. [
  41057. {
  41058. name: "Normal",
  41059. height: math.unit(19, "feet"),
  41060. default: true
  41061. },
  41062. ]
  41063. ))
  41064. characterMakers.push(() => makeCharacter(
  41065. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41066. {
  41067. front: {
  41068. height: math.unit(5 + 4/12, "feet"),
  41069. name: "Front",
  41070. image: {
  41071. source: "./media/characters/artan/front.svg",
  41072. extra: 1618/1535,
  41073. bottom: 46/1664
  41074. }
  41075. },
  41076. back: {
  41077. height: math.unit(5 + 4/12, "feet"),
  41078. name: "Back",
  41079. image: {
  41080. source: "./media/characters/artan/back.svg",
  41081. extra: 1618/1543,
  41082. bottom: 31/1649
  41083. }
  41084. },
  41085. },
  41086. [
  41087. {
  41088. name: "Normal",
  41089. height: math.unit(5 + 4/12, "feet"),
  41090. default: true
  41091. },
  41092. ]
  41093. ))
  41094. characterMakers.push(() => makeCharacter(
  41095. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41096. {
  41097. side: {
  41098. height: math.unit(182, "cm"),
  41099. weight: math.unit(1000, "lb"),
  41100. name: "Side",
  41101. image: {
  41102. source: "./media/characters/silver-dragon/side.svg",
  41103. extra: 710/287,
  41104. bottom: 88/798
  41105. }
  41106. },
  41107. },
  41108. [
  41109. {
  41110. name: "Normal",
  41111. height: math.unit(182, "cm"),
  41112. default: true
  41113. },
  41114. ]
  41115. ))
  41116. characterMakers.push(() => makeCharacter(
  41117. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41118. {
  41119. side: {
  41120. height: math.unit(6 + 6/12, "feet"),
  41121. weight: math.unit(1.5, "tons"),
  41122. name: "Side",
  41123. image: {
  41124. source: "./media/characters/zephyr/side.svg",
  41125. extra: 1433/586,
  41126. bottom: 109/1542
  41127. }
  41128. },
  41129. },
  41130. [
  41131. {
  41132. name: "Normal",
  41133. height: math.unit(6 + 6/12, "feet"),
  41134. default: true
  41135. },
  41136. ]
  41137. ))
  41138. characterMakers.push(() => makeCharacter(
  41139. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41140. {
  41141. side: {
  41142. height: math.unit(1, "feet"),
  41143. name: "Side",
  41144. image: {
  41145. source: "./media/characters/vixye/side.svg",
  41146. extra: 632/541,
  41147. bottom: 0/632
  41148. }
  41149. },
  41150. },
  41151. [
  41152. {
  41153. name: "Normal",
  41154. height: math.unit(1, "feet"),
  41155. default: true
  41156. },
  41157. {
  41158. name: "True",
  41159. height: math.unit(1e15, "multiverses")
  41160. },
  41161. ]
  41162. ))
  41163. characterMakers.push(() => makeCharacter(
  41164. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41165. {
  41166. front: {
  41167. height: math.unit(8 + 2/12, "feet"),
  41168. weight: math.unit(650, "lb"),
  41169. name: "Front",
  41170. image: {
  41171. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41172. extra: 1174/1137,
  41173. bottom: 82/1256
  41174. }
  41175. },
  41176. back: {
  41177. height: math.unit(8 + 2/12, "feet"),
  41178. weight: math.unit(650, "lb"),
  41179. name: "Back",
  41180. image: {
  41181. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41182. extra: 1204/1157,
  41183. bottom: 46/1250
  41184. }
  41185. },
  41186. },
  41187. [
  41188. {
  41189. name: "Wildform",
  41190. height: math.unit(8 + 2/12, "feet"),
  41191. default: true
  41192. },
  41193. ]
  41194. ))
  41195. characterMakers.push(() => makeCharacter(
  41196. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41197. {
  41198. front: {
  41199. height: math.unit(18, "feet"),
  41200. name: "Front",
  41201. image: {
  41202. source: "./media/characters/cyphin/front.svg",
  41203. extra: 970/886,
  41204. bottom: 42/1012
  41205. }
  41206. },
  41207. back: {
  41208. height: math.unit(18, "feet"),
  41209. name: "Back",
  41210. image: {
  41211. source: "./media/characters/cyphin/back.svg",
  41212. extra: 1009/894,
  41213. bottom: 24/1033
  41214. }
  41215. },
  41216. head: {
  41217. height: math.unit(5.05, "feet"),
  41218. name: "Head",
  41219. image: {
  41220. source: "./media/characters/cyphin/head.svg"
  41221. }
  41222. },
  41223. tailbud: {
  41224. height: math.unit(5, "feet"),
  41225. name: "Tailbud",
  41226. image: {
  41227. source: "./media/characters/cyphin/tailbud.svg"
  41228. }
  41229. },
  41230. },
  41231. [
  41232. ]
  41233. ))
  41234. characterMakers.push(() => makeCharacter(
  41235. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41236. {
  41237. side: {
  41238. height: math.unit(10, "feet"),
  41239. weight: math.unit(6, "tons"),
  41240. name: "Side",
  41241. image: {
  41242. source: "./media/characters/raijin/side.svg",
  41243. extra: 1529/613,
  41244. bottom: 337/1866
  41245. }
  41246. },
  41247. },
  41248. [
  41249. {
  41250. name: "Normal",
  41251. height: math.unit(10, "feet"),
  41252. default: true
  41253. },
  41254. ]
  41255. ))
  41256. characterMakers.push(() => makeCharacter(
  41257. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41258. {
  41259. side: {
  41260. height: math.unit(9, "feet"),
  41261. name: "Side",
  41262. image: {
  41263. source: "./media/characters/nilghais/side.svg",
  41264. extra: 1047/744,
  41265. bottom: 91/1138
  41266. }
  41267. },
  41268. head: {
  41269. height: math.unit(3.14, "feet"),
  41270. name: "Head",
  41271. image: {
  41272. source: "./media/characters/nilghais/head.svg"
  41273. }
  41274. },
  41275. mouth: {
  41276. height: math.unit(4.6, "feet"),
  41277. name: "Mouth",
  41278. image: {
  41279. source: "./media/characters/nilghais/mouth.svg"
  41280. }
  41281. },
  41282. wings: {
  41283. height: math.unit(24, "feet"),
  41284. name: "Wings",
  41285. image: {
  41286. source: "./media/characters/nilghais/wings.svg"
  41287. }
  41288. },
  41289. ass: {
  41290. height: math.unit(6.12, "feet"),
  41291. name: "Ass",
  41292. image: {
  41293. source: "./media/characters/nilghais/ass.svg"
  41294. }
  41295. },
  41296. },
  41297. [
  41298. {
  41299. name: "Normal",
  41300. height: math.unit(9, "feet"),
  41301. default: true
  41302. },
  41303. ]
  41304. ))
  41305. characterMakers.push(() => makeCharacter(
  41306. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41307. {
  41308. regular: {
  41309. height: math.unit(16 + 2/12, "feet"),
  41310. weight: math.unit(2300, "lb"),
  41311. name: "Regular",
  41312. image: {
  41313. source: "./media/characters/zolgar/regular.svg",
  41314. extra: 1246/1004,
  41315. bottom: 124/1370
  41316. }
  41317. },
  41318. boxers: {
  41319. height: math.unit(16 + 2/12, "feet"),
  41320. weight: math.unit(2300, "lb"),
  41321. name: "Boxers",
  41322. image: {
  41323. source: "./media/characters/zolgar/boxers.svg",
  41324. extra: 1246/1004,
  41325. bottom: 124/1370
  41326. }
  41327. },
  41328. armored: {
  41329. height: math.unit(16 + 2/12, "feet"),
  41330. weight: math.unit(2300, "lb"),
  41331. name: "Armored",
  41332. image: {
  41333. source: "./media/characters/zolgar/armored.svg",
  41334. extra: 1246/1004,
  41335. bottom: 124/1370
  41336. }
  41337. },
  41338. goth: {
  41339. height: math.unit(16 + 2/12, "feet"),
  41340. weight: math.unit(2300, "lb"),
  41341. name: "Goth",
  41342. image: {
  41343. source: "./media/characters/zolgar/goth.svg",
  41344. extra: 1246/1004,
  41345. bottom: 124/1370
  41346. }
  41347. },
  41348. },
  41349. [
  41350. {
  41351. name: "Shrunken Down",
  41352. height: math.unit(9 + 2/12, "feet")
  41353. },
  41354. {
  41355. name: "Normal",
  41356. height: math.unit(16 + 2/12, "feet"),
  41357. default: true
  41358. },
  41359. ]
  41360. ))
  41361. characterMakers.push(() => makeCharacter(
  41362. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41363. {
  41364. front: {
  41365. height: math.unit(6, "feet"),
  41366. weight: math.unit(168, "lb"),
  41367. name: "Front",
  41368. image: {
  41369. source: "./media/characters/luca/front.svg",
  41370. extra: 841/667,
  41371. bottom: 102/943
  41372. }
  41373. },
  41374. },
  41375. [
  41376. {
  41377. name: "Normal",
  41378. height: math.unit(6, "feet"),
  41379. default: true
  41380. },
  41381. ]
  41382. ))
  41383. characterMakers.push(() => makeCharacter(
  41384. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41385. {
  41386. side: {
  41387. height: math.unit(7 + 3/12, "feet"),
  41388. weight: math.unit(312, "lb"),
  41389. name: "Side",
  41390. image: {
  41391. source: "./media/characters/zezo/side.svg",
  41392. extra: 1192/1067,
  41393. bottom: 63/1255
  41394. }
  41395. },
  41396. },
  41397. [
  41398. {
  41399. name: "Normal",
  41400. height: math.unit(7 + 3/12, "feet"),
  41401. default: true
  41402. },
  41403. ]
  41404. ))
  41405. characterMakers.push(() => makeCharacter(
  41406. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41407. {
  41408. front: {
  41409. height: math.unit(5 + 5/12, "feet"),
  41410. weight: math.unit(170, "lb"),
  41411. name: "Front",
  41412. image: {
  41413. source: "./media/characters/mayso/front.svg",
  41414. extra: 1215/1108,
  41415. bottom: 16/1231
  41416. }
  41417. },
  41418. },
  41419. [
  41420. {
  41421. name: "Normal",
  41422. height: math.unit(5 + 5/12, "feet"),
  41423. default: true
  41424. },
  41425. ]
  41426. ))
  41427. characterMakers.push(() => makeCharacter(
  41428. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41429. {
  41430. front: {
  41431. height: math.unit(4 + 3/12, "feet"),
  41432. weight: math.unit(80, "lb"),
  41433. name: "Front",
  41434. image: {
  41435. source: "./media/characters/hess/front.svg",
  41436. extra: 1200/1123,
  41437. bottom: 16/1216
  41438. }
  41439. },
  41440. },
  41441. [
  41442. {
  41443. name: "Normal",
  41444. height: math.unit(4 + 3/12, "feet"),
  41445. default: true
  41446. },
  41447. ]
  41448. ))
  41449. characterMakers.push(() => makeCharacter(
  41450. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41451. {
  41452. front: {
  41453. height: math.unit(1.9, "meters"),
  41454. name: "Front",
  41455. image: {
  41456. source: "./media/characters/ashgar/front.svg",
  41457. extra: 1177/1146,
  41458. bottom: 99/1276
  41459. }
  41460. },
  41461. back: {
  41462. height: math.unit(1.9, "meters"),
  41463. name: "Back",
  41464. image: {
  41465. source: "./media/characters/ashgar/back.svg",
  41466. extra: 1201/1183,
  41467. bottom: 53/1254
  41468. }
  41469. },
  41470. feral: {
  41471. height: math.unit(1.4, "meters"),
  41472. name: "Feral",
  41473. image: {
  41474. source: "./media/characters/ashgar/feral.svg",
  41475. extra: 370/345,
  41476. bottom: 45/415
  41477. }
  41478. },
  41479. },
  41480. [
  41481. {
  41482. name: "Normal",
  41483. height: math.unit(1.9, "meters"),
  41484. default: true
  41485. },
  41486. ]
  41487. ))
  41488. characterMakers.push(() => makeCharacter(
  41489. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41490. {
  41491. regular: {
  41492. height: math.unit(6, "feet"),
  41493. weight: math.unit(220, "lb"),
  41494. name: "Regular",
  41495. image: {
  41496. source: "./media/characters/phillip/regular.svg",
  41497. extra: 1373/1277,
  41498. bottom: 75/1448
  41499. }
  41500. },
  41501. dressed: {
  41502. height: math.unit(6, "feet"),
  41503. weight: math.unit(220, "lb"),
  41504. name: "Dressed",
  41505. image: {
  41506. source: "./media/characters/phillip/dressed.svg",
  41507. extra: 1373/1277,
  41508. bottom: 75/1448
  41509. }
  41510. },
  41511. paw: {
  41512. height: math.unit(1.44, "feet"),
  41513. name: "Paw",
  41514. image: {
  41515. source: "./media/characters/phillip/paw.svg"
  41516. }
  41517. },
  41518. },
  41519. [
  41520. {
  41521. name: "Normal",
  41522. height: math.unit(6, "feet"),
  41523. default: true
  41524. },
  41525. ]
  41526. ))
  41527. characterMakers.push(() => makeCharacter(
  41528. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41529. {
  41530. side: {
  41531. height: math.unit(42, "feet"),
  41532. name: "Side",
  41533. image: {
  41534. source: "./media/characters/uvula/side.svg",
  41535. extra: 683/586,
  41536. bottom: 60/743
  41537. }
  41538. },
  41539. front: {
  41540. height: math.unit(42, "feet"),
  41541. name: "Front",
  41542. image: {
  41543. source: "./media/characters/uvula/front.svg",
  41544. extra: 705/613,
  41545. bottom: 54/759
  41546. }
  41547. },
  41548. maw: {
  41549. height: math.unit(23.5, "feet"),
  41550. name: "Maw",
  41551. image: {
  41552. source: "./media/characters/uvula/maw.svg"
  41553. }
  41554. },
  41555. },
  41556. [
  41557. {
  41558. name: "Original Size",
  41559. height: math.unit(14, "inches")
  41560. },
  41561. {
  41562. name: "Human Size",
  41563. height: math.unit(6, "feet")
  41564. },
  41565. {
  41566. name: "Big",
  41567. height: math.unit(42, "feet"),
  41568. default: true
  41569. },
  41570. {
  41571. name: "Bigger",
  41572. height: math.unit(100, "feet")
  41573. },
  41574. ]
  41575. ))
  41576. characterMakers.push(() => makeCharacter(
  41577. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41578. {
  41579. front: {
  41580. height: math.unit(5 + 11/12, "feet"),
  41581. name: "Front",
  41582. image: {
  41583. source: "./media/characters/lannah/front.svg",
  41584. extra: 1208/1113,
  41585. bottom: 97/1305
  41586. }
  41587. },
  41588. },
  41589. [
  41590. {
  41591. name: "Normal",
  41592. height: math.unit(5 + 11/12, "feet"),
  41593. default: true
  41594. },
  41595. ]
  41596. ))
  41597. characterMakers.push(() => makeCharacter(
  41598. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41599. {
  41600. front: {
  41601. height: math.unit(6 + 3/12, "feet"),
  41602. weight: math.unit(3.5, "tons"),
  41603. name: "Front",
  41604. image: {
  41605. source: "./media/characters/emberflame/front.svg",
  41606. extra: 1198/672,
  41607. bottom: 82/1280
  41608. }
  41609. },
  41610. side: {
  41611. height: math.unit(6 + 3/12, "feet"),
  41612. weight: math.unit(3.5, "tons"),
  41613. name: "Side",
  41614. image: {
  41615. source: "./media/characters/emberflame/side.svg",
  41616. extra: 938/527,
  41617. bottom: 56/994
  41618. }
  41619. },
  41620. },
  41621. [
  41622. {
  41623. name: "Normal",
  41624. height: math.unit(6 + 3/12, "feet"),
  41625. default: true
  41626. },
  41627. ]
  41628. ))
  41629. characterMakers.push(() => makeCharacter(
  41630. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41631. {
  41632. side: {
  41633. height: math.unit(17.5, "feet"),
  41634. weight: math.unit(35, "tons"),
  41635. name: "Side",
  41636. image: {
  41637. source: "./media/characters/sophie-ambrose/side.svg",
  41638. extra: 1573/1242,
  41639. bottom: 71/1644
  41640. }
  41641. },
  41642. maw: {
  41643. height: math.unit(7.4, "feet"),
  41644. name: "Maw",
  41645. image: {
  41646. source: "./media/characters/sophie-ambrose/maw.svg"
  41647. }
  41648. },
  41649. },
  41650. [
  41651. {
  41652. name: "Normal",
  41653. height: math.unit(17.5, "feet"),
  41654. default: true
  41655. },
  41656. ]
  41657. ))
  41658. characterMakers.push(() => makeCharacter(
  41659. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41660. {
  41661. front: {
  41662. height: math.unit(280, "feet"),
  41663. weight: math.unit(550, "tons"),
  41664. name: "Front",
  41665. image: {
  41666. source: "./media/characters/king-mugi/front.svg",
  41667. extra: 1102/947,
  41668. bottom: 104/1206
  41669. }
  41670. },
  41671. },
  41672. [
  41673. {
  41674. name: "King Mugi",
  41675. height: math.unit(280, "feet"),
  41676. default: true
  41677. },
  41678. ]
  41679. ))
  41680. characterMakers.push(() => makeCharacter(
  41681. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41682. {
  41683. front: {
  41684. height: math.unit(64, "meters"),
  41685. name: "Front",
  41686. image: {
  41687. source: "./media/characters/nova-fox/front.svg",
  41688. extra: 1310/1246,
  41689. bottom: 65/1375
  41690. }
  41691. },
  41692. },
  41693. [
  41694. {
  41695. name: "Macro",
  41696. height: math.unit(64, "meters"),
  41697. default: true
  41698. },
  41699. ]
  41700. ))
  41701. characterMakers.push(() => makeCharacter(
  41702. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41703. {
  41704. front: {
  41705. height: math.unit(6 + 3/12, "feet"),
  41706. weight: math.unit(170, "lb"),
  41707. name: "Front",
  41708. image: {
  41709. source: "./media/characters/sam-bat/front.svg",
  41710. extra: 1601/1411,
  41711. bottom: 125/1726
  41712. }
  41713. },
  41714. back: {
  41715. height: math.unit(6 + 3/12, "feet"),
  41716. weight: math.unit(170, "lb"),
  41717. name: "Back",
  41718. image: {
  41719. source: "./media/characters/sam-bat/back.svg",
  41720. extra: 1577/1405,
  41721. bottom: 58/1635
  41722. }
  41723. },
  41724. },
  41725. [
  41726. {
  41727. name: "Normal",
  41728. height: math.unit(6 + 3/12, "feet"),
  41729. default: true
  41730. },
  41731. ]
  41732. ))
  41733. characterMakers.push(() => makeCharacter(
  41734. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41735. {
  41736. front: {
  41737. height: math.unit(59, "feet"),
  41738. weight: math.unit(40000, "lb"),
  41739. name: "Front",
  41740. image: {
  41741. source: "./media/characters/inari/front.svg",
  41742. extra: 1884/1350,
  41743. bottom: 95/1979
  41744. }
  41745. },
  41746. },
  41747. [
  41748. {
  41749. name: "Gigantamax",
  41750. height: math.unit(59, "feet"),
  41751. default: true
  41752. },
  41753. ]
  41754. ))
  41755. characterMakers.push(() => makeCharacter(
  41756. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41757. {
  41758. front: {
  41759. height: math.unit(5 + 8/12, "feet"),
  41760. name: "Front",
  41761. image: {
  41762. source: "./media/characters/elizabeth/front.svg",
  41763. extra: 1395/1298,
  41764. bottom: 54/1449
  41765. }
  41766. },
  41767. mouth: {
  41768. height: math.unit(1.97, "feet"),
  41769. name: "Mouth",
  41770. image: {
  41771. source: "./media/characters/elizabeth/mouth.svg"
  41772. }
  41773. },
  41774. foot: {
  41775. height: math.unit(1.17, "feet"),
  41776. name: "Foot",
  41777. image: {
  41778. source: "./media/characters/elizabeth/foot.svg"
  41779. }
  41780. },
  41781. },
  41782. [
  41783. {
  41784. name: "Normal",
  41785. height: math.unit(5 + 8/12, "feet"),
  41786. default: true
  41787. },
  41788. {
  41789. name: "Minimacro",
  41790. height: math.unit(18, "feet")
  41791. },
  41792. {
  41793. name: "Macro",
  41794. height: math.unit(180, "feet")
  41795. },
  41796. ]
  41797. ))
  41798. characterMakers.push(() => makeCharacter(
  41799. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41800. {
  41801. front: {
  41802. height: math.unit(5 + 2/12, "feet"),
  41803. name: "Front",
  41804. image: {
  41805. source: "./media/characters/october-gossamer/front.svg",
  41806. extra: 505/454,
  41807. bottom: 7/512
  41808. }
  41809. },
  41810. back: {
  41811. height: math.unit(5 + 2/12, "feet"),
  41812. name: "Back",
  41813. image: {
  41814. source: "./media/characters/october-gossamer/back.svg",
  41815. extra: 501/454,
  41816. bottom: 11/512
  41817. }
  41818. },
  41819. },
  41820. [
  41821. {
  41822. name: "Normal",
  41823. height: math.unit(5 + 2/12, "feet"),
  41824. default: true
  41825. },
  41826. ]
  41827. ))
  41828. characterMakers.push(() => makeCharacter(
  41829. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41830. {
  41831. front: {
  41832. height: math.unit(5, "feet"),
  41833. name: "Front",
  41834. image: {
  41835. source: "./media/characters/epiglottis/front.svg",
  41836. extra: 923/849,
  41837. bottom: 17/940
  41838. }
  41839. },
  41840. },
  41841. [
  41842. {
  41843. name: "Original Size",
  41844. height: math.unit(10, "inches")
  41845. },
  41846. {
  41847. name: "Human Size",
  41848. height: math.unit(5, "feet"),
  41849. default: true
  41850. },
  41851. {
  41852. name: "Big",
  41853. height: math.unit(25, "feet")
  41854. },
  41855. {
  41856. name: "Bigger",
  41857. height: math.unit(50, "feet")
  41858. },
  41859. {
  41860. name: "oh lawd",
  41861. height: math.unit(75, "feet")
  41862. },
  41863. ]
  41864. ))
  41865. characterMakers.push(() => makeCharacter(
  41866. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  41867. {
  41868. front: {
  41869. height: math.unit(2 + 4/12, "feet"),
  41870. weight: math.unit(60, "lb"),
  41871. name: "Front",
  41872. image: {
  41873. source: "./media/characters/lerm/front.svg",
  41874. extra: 796/790,
  41875. bottom: 79/875
  41876. }
  41877. },
  41878. },
  41879. [
  41880. {
  41881. name: "Normal",
  41882. height: math.unit(2 + 4/12, "feet"),
  41883. default: true
  41884. },
  41885. ]
  41886. ))
  41887. characterMakers.push(() => makeCharacter(
  41888. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  41889. {
  41890. front: {
  41891. height: math.unit(5.5, "feet"),
  41892. weight: math.unit(130, "lb"),
  41893. name: "Front",
  41894. image: {
  41895. source: "./media/characters/xena-nebadon/front.svg",
  41896. extra: 1828/1730,
  41897. bottom: 79/1907
  41898. }
  41899. },
  41900. },
  41901. [
  41902. {
  41903. name: "Tiny Puppy",
  41904. height: math.unit(3, "inches")
  41905. },
  41906. {
  41907. name: "Normal",
  41908. height: math.unit(5.5, "feet"),
  41909. default: true
  41910. },
  41911. {
  41912. name: "Lotta Lady",
  41913. height: math.unit(12, "feet")
  41914. },
  41915. {
  41916. name: "Pretty Big",
  41917. height: math.unit(100, "feet")
  41918. },
  41919. {
  41920. name: "Big",
  41921. height: math.unit(500, "feet")
  41922. },
  41923. {
  41924. name: "Skyscraper Toys",
  41925. height: math.unit(2500, "feet")
  41926. },
  41927. {
  41928. name: "Plane Catcher",
  41929. height: math.unit(8, "miles")
  41930. },
  41931. {
  41932. name: "Planet Toys",
  41933. height: math.unit(15, "earths")
  41934. },
  41935. {
  41936. name: "Stardust",
  41937. height: math.unit(0.25, "galaxies")
  41938. },
  41939. {
  41940. name: "Snacks",
  41941. height: math.unit(70, "universes")
  41942. },
  41943. ]
  41944. ))
  41945. characterMakers.push(() => makeCharacter(
  41946. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  41947. {
  41948. front: {
  41949. height: math.unit(1.6, "meters"),
  41950. weight: math.unit(60, "kg"),
  41951. name: "Front",
  41952. image: {
  41953. source: "./media/characters/bounty/front.svg",
  41954. extra: 1426/1308,
  41955. bottom: 15/1441
  41956. }
  41957. },
  41958. },
  41959. [
  41960. {
  41961. name: "Normal",
  41962. height: math.unit(1.6, "meters"),
  41963. default: true
  41964. },
  41965. {
  41966. name: "Macro",
  41967. height: math.unit(300, "meters")
  41968. },
  41969. ]
  41970. ))
  41971. characterMakers.push(() => makeCharacter(
  41972. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  41973. {
  41974. front: {
  41975. height: math.unit(2 + 8/12, "feet"),
  41976. weight: math.unit(15, "lb"),
  41977. name: "Front",
  41978. image: {
  41979. source: "./media/characters/mochi/front.svg",
  41980. extra: 1022/852,
  41981. bottom: 435/1457
  41982. }
  41983. },
  41984. back: {
  41985. height: math.unit(2 + 8/12, "feet"),
  41986. weight: math.unit(15, "lb"),
  41987. name: "Back",
  41988. image: {
  41989. source: "./media/characters/mochi/back.svg",
  41990. extra: 1335/1119,
  41991. bottom: 39/1374
  41992. }
  41993. },
  41994. bird: {
  41995. height: math.unit(2 + 8/12, "feet"),
  41996. weight: math.unit(15, "lb"),
  41997. name: "Bird",
  41998. image: {
  41999. source: "./media/characters/mochi/bird.svg",
  42000. extra: 1251/1113,
  42001. bottom: 178/1429
  42002. }
  42003. },
  42004. kaiju: {
  42005. height: math.unit(154, "feet"),
  42006. weight: math.unit(1e7, "lb"),
  42007. name: "Kaiju",
  42008. image: {
  42009. source: "./media/characters/mochi/kaiju.svg",
  42010. extra: 460/324,
  42011. bottom: 40/500
  42012. }
  42013. },
  42014. head: {
  42015. height: math.unit(1.21, "feet"),
  42016. name: "Head",
  42017. image: {
  42018. source: "./media/characters/mochi/head.svg"
  42019. }
  42020. },
  42021. alternateTail: {
  42022. height: math.unit(2 + 8/12, "feet"),
  42023. weight: math.unit(45, "lb"),
  42024. name: "Alternate Tail",
  42025. image: {
  42026. source: "./media/characters/mochi/alternate-tail.svg",
  42027. extra: 139/76,
  42028. bottom: 45/184
  42029. }
  42030. },
  42031. },
  42032. [
  42033. {
  42034. name: "Micro",
  42035. height: math.unit(2, "inches")
  42036. },
  42037. {
  42038. name: "Normal",
  42039. height: math.unit(2 + 8/12, "feet"),
  42040. default: true
  42041. },
  42042. {
  42043. name: "Macro",
  42044. height: math.unit(106, "feet")
  42045. },
  42046. ]
  42047. ))
  42048. characterMakers.push(() => makeCharacter(
  42049. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42050. {
  42051. front: {
  42052. height: math.unit(5.67, "feet"),
  42053. weight: math.unit(135, "lb"),
  42054. name: "Front",
  42055. image: {
  42056. source: "./media/characters/sarel/front.svg",
  42057. extra: 865/788,
  42058. bottom: 97/962
  42059. }
  42060. },
  42061. back: {
  42062. height: math.unit(5.67, "feet"),
  42063. weight: math.unit(135, "lb"),
  42064. name: "Back",
  42065. image: {
  42066. source: "./media/characters/sarel/back.svg",
  42067. extra: 857/777,
  42068. bottom: 32/889
  42069. }
  42070. },
  42071. chozoan: {
  42072. height: math.unit(5.67, "feet"),
  42073. weight: math.unit(135, "lb"),
  42074. name: "Chozoan",
  42075. image: {
  42076. source: "./media/characters/sarel/chozoan.svg",
  42077. extra: 865/788,
  42078. bottom: 97/962
  42079. }
  42080. },
  42081. current: {
  42082. height: math.unit(5.67, "feet"),
  42083. weight: math.unit(135, "lb"),
  42084. name: "Current",
  42085. image: {
  42086. source: "./media/characters/sarel/current.svg",
  42087. extra: 865/788,
  42088. bottom: 97/962
  42089. }
  42090. },
  42091. head: {
  42092. height: math.unit(1.77, "feet"),
  42093. name: "Head",
  42094. image: {
  42095. source: "./media/characters/sarel/head.svg"
  42096. }
  42097. },
  42098. claws: {
  42099. height: math.unit(1.8, "feet"),
  42100. name: "Claws",
  42101. image: {
  42102. source: "./media/characters/sarel/claws.svg"
  42103. }
  42104. },
  42105. clawsAlt: {
  42106. height: math.unit(1.8, "feet"),
  42107. name: "Claws-alt",
  42108. image: {
  42109. source: "./media/characters/sarel/claws-alt.svg"
  42110. }
  42111. },
  42112. },
  42113. [
  42114. {
  42115. name: "Normal",
  42116. height: math.unit(5.67, "feet"),
  42117. default: true
  42118. },
  42119. ]
  42120. ))
  42121. characterMakers.push(() => makeCharacter(
  42122. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42123. {
  42124. front: {
  42125. height: math.unit(5500, "feet"),
  42126. name: "Front",
  42127. image: {
  42128. source: "./media/characters/alyonia/front.svg",
  42129. extra: 1200/1135,
  42130. bottom: 29/1229
  42131. }
  42132. },
  42133. back: {
  42134. height: math.unit(5500, "feet"),
  42135. name: "Back",
  42136. image: {
  42137. source: "./media/characters/alyonia/back.svg",
  42138. extra: 1205/1138,
  42139. bottom: 10/1215
  42140. }
  42141. },
  42142. },
  42143. [
  42144. {
  42145. name: "Small",
  42146. height: math.unit(10, "feet")
  42147. },
  42148. {
  42149. name: "Macro",
  42150. height: math.unit(500, "feet")
  42151. },
  42152. {
  42153. name: "Mega Macro",
  42154. height: math.unit(5500, "feet"),
  42155. default: true
  42156. },
  42157. {
  42158. name: "Mega Macro+",
  42159. height: math.unit(500000, "feet")
  42160. },
  42161. {
  42162. name: "Giga Macro",
  42163. height: math.unit(3000, "miles")
  42164. },
  42165. {
  42166. name: "Tera Macro",
  42167. height: math.unit(2.8e6, "miles")
  42168. },
  42169. {
  42170. name: "Galactic",
  42171. height: math.unit(120000, "lightyears")
  42172. },
  42173. ]
  42174. ))
  42175. characterMakers.push(() => makeCharacter(
  42176. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42177. {
  42178. werewolf: {
  42179. height: math.unit(8, "feet"),
  42180. weight: math.unit(425, "lb"),
  42181. name: "Werewolf",
  42182. image: {
  42183. source: "./media/characters/autumn/werewolf.svg",
  42184. extra: 2154/2031,
  42185. bottom: 160/2314
  42186. }
  42187. },
  42188. human: {
  42189. height: math.unit(5 + 8/12, "feet"),
  42190. weight: math.unit(150, "lb"),
  42191. name: "Human",
  42192. image: {
  42193. source: "./media/characters/autumn/human.svg",
  42194. extra: 1200/1149,
  42195. bottom: 30/1230
  42196. }
  42197. },
  42198. },
  42199. [
  42200. {
  42201. name: "Normal",
  42202. height: math.unit(8, "feet"),
  42203. default: true
  42204. },
  42205. ]
  42206. ))
  42207. characterMakers.push(() => makeCharacter(
  42208. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42209. {
  42210. front: {
  42211. height: math.unit(8 + 5/12, "feet"),
  42212. weight: math.unit(825, "lb"),
  42213. name: "Front",
  42214. image: {
  42215. source: "./media/characters/cobalt-charizard/front.svg",
  42216. extra: 1268/1155,
  42217. bottom: 122/1390
  42218. }
  42219. },
  42220. side: {
  42221. height: math.unit(8 + 5/12, "feet"),
  42222. weight: math.unit(825, "lb"),
  42223. name: "Side",
  42224. image: {
  42225. source: "./media/characters/cobalt-charizard/side.svg",
  42226. extra: 1348/1257,
  42227. bottom: 58/1406
  42228. }
  42229. },
  42230. gMax: {
  42231. height: math.unit(134 + 11/12, "feet"),
  42232. name: "G-Max",
  42233. image: {
  42234. source: "./media/characters/cobalt-charizard/g-max.svg",
  42235. extra: 1835/1541,
  42236. bottom: 151/1986
  42237. }
  42238. },
  42239. },
  42240. [
  42241. {
  42242. name: "Normal",
  42243. height: math.unit(8 + 5/12, "feet"),
  42244. default: true
  42245. },
  42246. ]
  42247. ))
  42248. characterMakers.push(() => makeCharacter(
  42249. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42250. {
  42251. front: {
  42252. height: math.unit(6 + 3/12, "feet"),
  42253. weight: math.unit(210, "lb"),
  42254. name: "Front",
  42255. image: {
  42256. source: "./media/characters/stella/front.svg",
  42257. extra: 3549/3335,
  42258. bottom: 51/3600
  42259. }
  42260. },
  42261. },
  42262. [
  42263. {
  42264. name: "Normal",
  42265. height: math.unit(6 + 3/12, "feet"),
  42266. default: true
  42267. },
  42268. ]
  42269. ))
  42270. characterMakers.push(() => makeCharacter(
  42271. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42272. {
  42273. front: {
  42274. height: math.unit(5, "feet"),
  42275. weight: math.unit(90, "lb"),
  42276. name: "Front",
  42277. image: {
  42278. source: "./media/characters/riley-bishop/front.svg",
  42279. extra: 1450/1428,
  42280. bottom: 152/1602
  42281. }
  42282. },
  42283. },
  42284. [
  42285. {
  42286. name: "Normal",
  42287. height: math.unit(5, "feet"),
  42288. default: true
  42289. },
  42290. ]
  42291. ))
  42292. characterMakers.push(() => makeCharacter(
  42293. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42294. {
  42295. side: {
  42296. height: math.unit(8 + 2/12, "feet"),
  42297. weight: math.unit(500, "kg"),
  42298. name: "Side",
  42299. image: {
  42300. source: "./media/characters/theo-arcanine/side.svg",
  42301. extra: 1342/1074,
  42302. bottom: 111/1453
  42303. }
  42304. },
  42305. },
  42306. [
  42307. {
  42308. name: "Normal",
  42309. height: math.unit(8 + 2/12, "feet"),
  42310. default: true
  42311. },
  42312. ]
  42313. ))
  42314. characterMakers.push(() => makeCharacter(
  42315. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42316. {
  42317. front: {
  42318. height: math.unit(4, "feet"),
  42319. name: "Front",
  42320. image: {
  42321. source: "./media/characters/kali/front.svg",
  42322. extra: 1921/1357,
  42323. bottom: 70/1991
  42324. }
  42325. },
  42326. },
  42327. [
  42328. {
  42329. name: "Normal",
  42330. height: math.unit(4, "feet"),
  42331. default: true
  42332. },
  42333. {
  42334. name: "Macro",
  42335. height: math.unit(32, "meters")
  42336. },
  42337. {
  42338. name: "Macro+",
  42339. height: math.unit(150, "meters")
  42340. },
  42341. {
  42342. name: "Megamacro",
  42343. height: math.unit(7500, "meters")
  42344. },
  42345. {
  42346. name: "Megamacro+",
  42347. height: math.unit(80, "kilometers")
  42348. },
  42349. ]
  42350. ))
  42351. characterMakers.push(() => makeCharacter(
  42352. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42353. {
  42354. side: {
  42355. height: math.unit(5 + 11/12, "feet"),
  42356. weight: math.unit(236, "lb"),
  42357. name: "Side",
  42358. image: {
  42359. source: "./media/characters/gapp/side.svg",
  42360. extra: 775/340,
  42361. bottom: 58/833
  42362. }
  42363. },
  42364. mouth: {
  42365. height: math.unit(2.98, "feet"),
  42366. name: "Mouth",
  42367. image: {
  42368. source: "./media/characters/gapp/mouth.svg"
  42369. }
  42370. },
  42371. },
  42372. [
  42373. {
  42374. name: "Normal",
  42375. height: math.unit(5 + 1/12, "feet"),
  42376. default: true
  42377. },
  42378. ]
  42379. ))
  42380. characterMakers.push(() => makeCharacter(
  42381. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42382. {
  42383. front: {
  42384. height: math.unit(6, "feet"),
  42385. name: "Front",
  42386. image: {
  42387. source: "./media/characters/persephone/front.svg",
  42388. extra: 1895/1717,
  42389. bottom: 96/1991
  42390. }
  42391. },
  42392. back: {
  42393. height: math.unit(6, "feet"),
  42394. name: "Back",
  42395. image: {
  42396. source: "./media/characters/persephone/back.svg",
  42397. extra: 1868/1679,
  42398. bottom: 26/1894
  42399. }
  42400. },
  42401. casual: {
  42402. height: math.unit(6, "feet"),
  42403. name: "Casual",
  42404. image: {
  42405. source: "./media/characters/persephone/casual.svg",
  42406. extra: 1713/1541,
  42407. bottom: 76/1789
  42408. }
  42409. },
  42410. },
  42411. [
  42412. {
  42413. name: "Human Size",
  42414. height: math.unit(6, "feet"),
  42415. default: true
  42416. },
  42417. {
  42418. name: "Galaxy Brain",
  42419. height: math.unit(1, "zettameter")
  42420. },
  42421. ]
  42422. ))
  42423. characterMakers.push(() => makeCharacter(
  42424. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42425. {
  42426. front: {
  42427. height: math.unit(1.85, "meters"),
  42428. name: "Front",
  42429. image: {
  42430. source: "./media/characters/riley-foxthing/front.svg",
  42431. extra: 1495/1354,
  42432. bottom: 122/1617
  42433. }
  42434. },
  42435. frontAlt: {
  42436. height: math.unit(1.85, "meters"),
  42437. name: "Front (Alt)",
  42438. image: {
  42439. source: "./media/characters/riley-foxthing/front-alt.svg",
  42440. extra: 1572/1389,
  42441. bottom: 116/1688
  42442. }
  42443. },
  42444. },
  42445. [
  42446. {
  42447. name: "Normal Sized",
  42448. height: math.unit(1.85, "meters"),
  42449. default: true
  42450. },
  42451. {
  42452. name: "Quite Sizable",
  42453. height: math.unit(5, "meters")
  42454. },
  42455. {
  42456. name: "Rather Large",
  42457. height: math.unit(20, "meters")
  42458. },
  42459. {
  42460. name: "Macro",
  42461. height: math.unit(450, "meters")
  42462. },
  42463. {
  42464. name: "Giga",
  42465. height: math.unit(5, "km")
  42466. },
  42467. ]
  42468. ))
  42469. characterMakers.push(() => makeCharacter(
  42470. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42471. {
  42472. front: {
  42473. height: math.unit(6, "feet"),
  42474. weight: math.unit(200, "lb"),
  42475. name: "Front",
  42476. image: {
  42477. source: "./media/characters/blizzard/front.svg",
  42478. extra: 1136/990,
  42479. bottom: 136/1272
  42480. }
  42481. },
  42482. back: {
  42483. height: math.unit(6, "feet"),
  42484. weight: math.unit(200, "lb"),
  42485. name: "Back",
  42486. image: {
  42487. source: "./media/characters/blizzard/back.svg",
  42488. extra: 1175/1034,
  42489. bottom: 97/1272
  42490. }
  42491. },
  42492. sitting: {
  42493. height: math.unit(3.725, "feet"),
  42494. weight: math.unit(200, "lb"),
  42495. name: "Sitting",
  42496. image: {
  42497. source: "./media/characters/blizzard/sitting.svg",
  42498. extra: 581/485,
  42499. bottom: 90/671
  42500. }
  42501. },
  42502. frontWizard: {
  42503. height: math.unit(7.9, "feet"),
  42504. weight: math.unit(200, "lb"),
  42505. name: "Front (Wizard)",
  42506. image: {
  42507. source: "./media/characters/blizzard/front-wizard.svg"
  42508. }
  42509. },
  42510. backWizard: {
  42511. height: math.unit(7.9, "feet"),
  42512. weight: math.unit(200, "lb"),
  42513. name: "Back (Wizard)",
  42514. image: {
  42515. source: "./media/characters/blizzard/back-wizard.svg"
  42516. }
  42517. },
  42518. frontNsfw: {
  42519. height: math.unit(6, "feet"),
  42520. weight: math.unit(200, "lb"),
  42521. name: "Front (NSFW)",
  42522. image: {
  42523. source: "./media/characters/blizzard/front-nsfw.svg",
  42524. extra: 1136/990,
  42525. bottom: 136/1272
  42526. }
  42527. },
  42528. backNsfw: {
  42529. height: math.unit(6, "feet"),
  42530. weight: math.unit(200, "lb"),
  42531. name: "Back (NSFW)",
  42532. image: {
  42533. source: "./media/characters/blizzard/back-nsfw.svg",
  42534. extra: 1175/1034,
  42535. bottom: 97/1272
  42536. }
  42537. },
  42538. sittingNsfw: {
  42539. height: math.unit(3.725, "feet"),
  42540. weight: math.unit(200, "lb"),
  42541. name: "Sitting (NSFW)",
  42542. image: {
  42543. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42544. extra: 581/485,
  42545. bottom: 90/671
  42546. }
  42547. },
  42548. wizardFrontNsfw: {
  42549. height: math.unit(7.9, "feet"),
  42550. weight: math.unit(200, "lb"),
  42551. name: "Wizard (Front, NSFW)",
  42552. image: {
  42553. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42554. }
  42555. },
  42556. },
  42557. [
  42558. {
  42559. name: "Normal",
  42560. height: math.unit(6, "feet"),
  42561. default: true
  42562. },
  42563. ]
  42564. ))
  42565. characterMakers.push(() => makeCharacter(
  42566. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42567. {
  42568. front: {
  42569. height: math.unit(5 + 2/12, "feet"),
  42570. name: "Front",
  42571. image: {
  42572. source: "./media/characters/lumi/front.svg",
  42573. extra: 1328/1268,
  42574. bottom: 103/1431
  42575. }
  42576. },
  42577. back: {
  42578. height: math.unit(5 + 2/12, "feet"),
  42579. name: "Back",
  42580. image: {
  42581. source: "./media/characters/lumi/back.svg",
  42582. extra: 1381/1327,
  42583. bottom: 43/1424
  42584. }
  42585. },
  42586. },
  42587. [
  42588. {
  42589. name: "Normal",
  42590. height: math.unit(5 + 2/12, "feet"),
  42591. default: true
  42592. },
  42593. ]
  42594. ))
  42595. characterMakers.push(() => makeCharacter(
  42596. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42597. {
  42598. front: {
  42599. height: math.unit(5 + 9/12, "feet"),
  42600. name: "Front",
  42601. image: {
  42602. source: "./media/characters/aliya-cotton/front.svg",
  42603. extra: 577/564,
  42604. bottom: 29/606
  42605. }
  42606. },
  42607. },
  42608. [
  42609. {
  42610. name: "Normal",
  42611. height: math.unit(5 + 9/12, "feet"),
  42612. default: true
  42613. },
  42614. ]
  42615. ))
  42616. characterMakers.push(() => makeCharacter(
  42617. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  42618. {
  42619. front: {
  42620. height: math.unit(2.7, "meters"),
  42621. weight: math.unit(25000, "lb"),
  42622. name: "Front",
  42623. image: {
  42624. source: "./media/characters/noah-luxray/front.svg",
  42625. extra: 1644/825,
  42626. bottom: 339/1983
  42627. }
  42628. },
  42629. side: {
  42630. height: math.unit(2.97, "meters"),
  42631. weight: math.unit(25000, "lb"),
  42632. name: "Side",
  42633. image: {
  42634. source: "./media/characters/noah-luxray/side.svg",
  42635. extra: 1319/650,
  42636. bottom: 163/1482
  42637. }
  42638. },
  42639. dick: {
  42640. height: math.unit(7.4, "feet"),
  42641. weight: math.unit(2500, "lb"),
  42642. name: "Dick",
  42643. image: {
  42644. source: "./media/characters/noah-luxray/dick.svg"
  42645. }
  42646. },
  42647. dickAlt: {
  42648. height: math.unit(10.83, "feet"),
  42649. weight: math.unit(2500, "lb"),
  42650. name: "Dick-alt",
  42651. image: {
  42652. source: "./media/characters/noah-luxray/dick-alt.svg"
  42653. }
  42654. },
  42655. },
  42656. [
  42657. {
  42658. name: "BIG",
  42659. height: math.unit(2.7, "meters"),
  42660. default: true
  42661. },
  42662. ]
  42663. ))
  42664. characterMakers.push(() => makeCharacter(
  42665. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  42666. {
  42667. standing: {
  42668. height: math.unit(183, "cm"),
  42669. weight: math.unit(68, "kg"),
  42670. name: "Standing",
  42671. image: {
  42672. source: "./media/characters/arion/standing.svg",
  42673. extra: 1869/1807,
  42674. bottom: 93/1962
  42675. }
  42676. },
  42677. reclining: {
  42678. height: math.unit(70.5, "cm"),
  42679. weight: math.unit(68, "lb"),
  42680. name: "Reclining",
  42681. image: {
  42682. source: "./media/characters/arion/reclining.svg",
  42683. extra: 937/870,
  42684. bottom: 63/1000
  42685. }
  42686. },
  42687. },
  42688. [
  42689. {
  42690. name: "Colossus Size, Low",
  42691. height: math.unit(33, "meters"),
  42692. default: true
  42693. },
  42694. {
  42695. name: "Colossus Size, Mid",
  42696. height: math.unit(52, "meters")
  42697. },
  42698. {
  42699. name: "Colossus Size, High",
  42700. height: math.unit(60, "meters")
  42701. },
  42702. {
  42703. name: "Titan Size, Low",
  42704. height: math.unit(91, "meters"),
  42705. },
  42706. {
  42707. name: "Titan Size, Mid",
  42708. height: math.unit(122, "meters")
  42709. },
  42710. {
  42711. name: "Titan Size, High",
  42712. height: math.unit(162, "meters")
  42713. },
  42714. ]
  42715. ))
  42716. characterMakers.push(() => makeCharacter(
  42717. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  42718. {
  42719. front: {
  42720. height: math.unit(53, "meters"),
  42721. name: "Front",
  42722. image: {
  42723. source: "./media/characters/stellar-marbey/front.svg",
  42724. extra: 1913/1805,
  42725. bottom: 92/2005
  42726. }
  42727. },
  42728. back: {
  42729. height: math.unit(53, "meters"),
  42730. name: "Back",
  42731. image: {
  42732. source: "./media/characters/stellar-marbey/back.svg",
  42733. extra: 1960/1851,
  42734. bottom: 28/1988
  42735. }
  42736. },
  42737. mouth: {
  42738. height: math.unit(3.5, "meters"),
  42739. name: "Mouth",
  42740. image: {
  42741. source: "./media/characters/stellar-marbey/mouth.svg"
  42742. }
  42743. },
  42744. },
  42745. [
  42746. {
  42747. name: "Macro",
  42748. height: math.unit(53, "meters"),
  42749. default: true
  42750. },
  42751. ]
  42752. ))
  42753. characterMakers.push(() => makeCharacter(
  42754. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  42755. {
  42756. front: {
  42757. height: math.unit(8 + 1/12, "feet"),
  42758. weight: math.unit(233, "lb"),
  42759. name: "Front",
  42760. image: {
  42761. source: "./media/characters/matsu/front.svg",
  42762. extra: 832/772,
  42763. bottom: 40/872
  42764. }
  42765. },
  42766. back: {
  42767. height: math.unit(8 + 1/12, "feet"),
  42768. weight: math.unit(233, "lb"),
  42769. name: "Back",
  42770. image: {
  42771. source: "./media/characters/matsu/back.svg",
  42772. extra: 839/780,
  42773. bottom: 47/886
  42774. }
  42775. },
  42776. },
  42777. [
  42778. {
  42779. name: "Normal",
  42780. height: math.unit(8 + 1/12, "feet"),
  42781. default: true
  42782. },
  42783. ]
  42784. ))
  42785. characterMakers.push(() => makeCharacter(
  42786. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  42787. {
  42788. front: {
  42789. height: math.unit(4, "feet"),
  42790. weight: math.unit(148, "lb"),
  42791. name: "Front",
  42792. image: {
  42793. source: "./media/characters/thiz/front.svg",
  42794. extra: 1913/1748,
  42795. bottom: 62/1975
  42796. }
  42797. },
  42798. },
  42799. [
  42800. {
  42801. name: "Normal",
  42802. height: math.unit(4, "feet"),
  42803. default: true
  42804. },
  42805. ]
  42806. ))
  42807. //characters
  42808. function makeCharacters() {
  42809. const results = [];
  42810. characterMakers.forEach(character => {
  42811. results.push(character());
  42812. });
  42813. return results;
  42814. }