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

44601 строка
1.1 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. "arctic-fox": {
  1759. name: "Arctic Fox",
  1760. parents: ["fox"]
  1761. },
  1762. "snow-tiger": {
  1763. name: "Snow Tiger",
  1764. parents: ["tiger"]
  1765. },
  1766. "marble-fox": {
  1767. name: "Marble Fox",
  1768. parents: ["fox"]
  1769. },
  1770. "king-wickerbeast": {
  1771. name: "King Wickerbeast",
  1772. parents: ["wickerbeast"]
  1773. },
  1774. "wickerbeast": {
  1775. name: "Wickerbeast",
  1776. parents: ["mammal"]
  1777. },
  1778. "european-polecat": {
  1779. name: "European Polecat",
  1780. parents: ["mustelid"]
  1781. },
  1782. "teshari": {
  1783. name: "Teshari",
  1784. parents: ["avian", "raptor"]
  1785. },
  1786. "alicorn": {
  1787. name: "Alicorn",
  1788. parents: ["horse"]
  1789. },
  1790. }
  1791. //species
  1792. function getSpeciesInfo(speciesList) {
  1793. let result = new Set();
  1794. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1795. result.add(entry)
  1796. });
  1797. return Array.from(result);
  1798. };
  1799. function getSpeciesInfoHelper(species) {
  1800. if (!speciesData[species]) {
  1801. console.warn(species + " doesn't exist");
  1802. return [];
  1803. }
  1804. if (speciesData[species].parents) {
  1805. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1806. } else {
  1807. return [species];
  1808. }
  1809. }
  1810. characterMakers.push(() => makeCharacter(
  1811. {
  1812. name: "Fen",
  1813. species: ["crux"],
  1814. description: {
  1815. title: "Bio",
  1816. text: "Very furry. Sheds on everything."
  1817. },
  1818. tags: [
  1819. "anthro",
  1820. "goo"
  1821. ]
  1822. },
  1823. {
  1824. back: {
  1825. height: math.unit(2.2428, "meter"),
  1826. weight: math.unit(124.738, "kg"),
  1827. name: "Back",
  1828. image: {
  1829. source: "./media/characters/fen/back.svg",
  1830. },
  1831. info: {
  1832. description: {
  1833. mode: "append",
  1834. text: "\n\nHe is not currently looking at you."
  1835. }
  1836. }
  1837. },
  1838. full: {
  1839. height: math.unit(0.91, "meter"),
  1840. weight: math.unit(225, "kg"),
  1841. name: "Full",
  1842. image: {
  1843. source: "./media/characters/fen/full.svg",
  1844. extra: 1133/859,
  1845. bottom: 145/1278
  1846. },
  1847. info: {
  1848. description: {
  1849. mode: "append",
  1850. text: "\n\nMunch."
  1851. }
  1852. }
  1853. },
  1854. kneeling: {
  1855. height: math.unit(5.4, "feet"),
  1856. weight: math.unit(124.738, "kg"),
  1857. name: "Kneeling",
  1858. image: {
  1859. source: "./media/characters/fen/kneeling.svg",
  1860. extra: 563 / 507
  1861. }
  1862. },
  1863. goo: {
  1864. height: math.unit(2.8, "feet"),
  1865. weight: math.unit(125, "kg"),
  1866. capacity: math.unit(1, "people"),
  1867. name: "Goo",
  1868. image: {
  1869. source: "./media/characters/fen/goo.svg",
  1870. bottom: 116 / 613
  1871. }
  1872. },
  1873. lounging: {
  1874. height: math.unit(6.5, "feet"),
  1875. weight: math.unit(125, "kg"),
  1876. name: "Lounging",
  1877. image: {
  1878. source: "./media/characters/fen/lounging.svg"
  1879. }
  1880. },
  1881. },
  1882. [
  1883. {
  1884. name: "Normal",
  1885. height: math.unit(2.2428, "meter")
  1886. },
  1887. {
  1888. name: "Big",
  1889. height: math.unit(12, "feet")
  1890. },
  1891. {
  1892. name: "Minimacro",
  1893. height: math.unit(40, "feet"),
  1894. default: true,
  1895. info: {
  1896. description: {
  1897. mode: "append",
  1898. text: "\n\nTOO DAMN BIG"
  1899. }
  1900. }
  1901. },
  1902. {
  1903. name: "Macro",
  1904. height: math.unit(100, "feet"),
  1905. info: {
  1906. description: {
  1907. mode: "append",
  1908. text: "\n\nTOO DAMN BIG"
  1909. }
  1910. }
  1911. },
  1912. {
  1913. name: "Macro+",
  1914. height: math.unit(300, "feet")
  1915. },
  1916. {
  1917. name: "Megamacro",
  1918. height: math.unit(2, "miles")
  1919. }
  1920. ]
  1921. ))
  1922. characterMakers.push(() => makeCharacter(
  1923. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1924. {
  1925. front: {
  1926. height: math.unit(183, "cm"),
  1927. weight: math.unit(80, "kg"),
  1928. name: "Front",
  1929. image: {
  1930. source: "./media/characters/sofia-fluttertail/front.svg",
  1931. bottom: 0.01,
  1932. extra: 2154 / 2081
  1933. }
  1934. },
  1935. frontAlt: {
  1936. height: math.unit(183, "cm"),
  1937. weight: math.unit(80, "kg"),
  1938. name: "Front (alt)",
  1939. image: {
  1940. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1941. }
  1942. },
  1943. back: {
  1944. height: math.unit(183, "cm"),
  1945. weight: math.unit(80, "kg"),
  1946. name: "Back",
  1947. image: {
  1948. source: "./media/characters/sofia-fluttertail/back.svg"
  1949. }
  1950. },
  1951. kneeling: {
  1952. height: math.unit(125, "cm"),
  1953. weight: math.unit(80, "kg"),
  1954. name: "Kneeling",
  1955. image: {
  1956. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1957. extra: 1033 / 977,
  1958. bottom: 23.7 / 1057
  1959. }
  1960. },
  1961. maw: {
  1962. height: math.unit(183 / 5, "cm"),
  1963. name: "Maw",
  1964. image: {
  1965. source: "./media/characters/sofia-fluttertail/maw.svg"
  1966. }
  1967. },
  1968. mawcloseup: {
  1969. height: math.unit(183 / 5 * 0.41, "cm"),
  1970. name: "Maw (Closeup)",
  1971. image: {
  1972. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1973. }
  1974. },
  1975. paws: {
  1976. height: math.unit(1.17, "feet"),
  1977. name: "Paws",
  1978. image: {
  1979. source: "./media/characters/sofia-fluttertail/paws.svg",
  1980. extra: 851 / 851,
  1981. bottom: 17 / 868
  1982. }
  1983. },
  1984. },
  1985. [
  1986. {
  1987. name: "Normal",
  1988. height: math.unit(1.83, "meter")
  1989. },
  1990. {
  1991. name: "Size Thief",
  1992. height: math.unit(18, "feet")
  1993. },
  1994. {
  1995. name: "50 Foot Collie",
  1996. height: math.unit(50, "feet")
  1997. },
  1998. {
  1999. name: "Macro",
  2000. height: math.unit(96, "feet"),
  2001. default: true
  2002. },
  2003. {
  2004. name: "Megamerger",
  2005. height: math.unit(650, "feet")
  2006. },
  2007. ]
  2008. ))
  2009. characterMakers.push(() => makeCharacter(
  2010. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2011. {
  2012. front: {
  2013. height: math.unit(7, "feet"),
  2014. weight: math.unit(100, "kg"),
  2015. name: "Front",
  2016. image: {
  2017. source: "./media/characters/march/front.svg",
  2018. extra: 1992/1851,
  2019. bottom: 39/2031
  2020. }
  2021. },
  2022. foot: {
  2023. height: math.unit(0.9, "feet"),
  2024. name: "Foot",
  2025. image: {
  2026. source: "./media/characters/march/foot.svg"
  2027. }
  2028. },
  2029. },
  2030. [
  2031. {
  2032. name: "Normal",
  2033. height: math.unit(7.9, "feet")
  2034. },
  2035. {
  2036. name: "Macro",
  2037. height: math.unit(220, "meters")
  2038. },
  2039. {
  2040. name: "Megamacro",
  2041. height: math.unit(2.98, "km"),
  2042. default: true
  2043. },
  2044. {
  2045. name: "Gigamacro",
  2046. height: math.unit(15963, "km")
  2047. },
  2048. {
  2049. name: "Teramacro",
  2050. height: math.unit(2980000000, "km")
  2051. },
  2052. {
  2053. name: "Examacro",
  2054. height: math.unit(250, "parsecs")
  2055. },
  2056. ]
  2057. ))
  2058. characterMakers.push(() => makeCharacter(
  2059. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2060. {
  2061. front: {
  2062. height: math.unit(6, "feet"),
  2063. weight: math.unit(60, "kg"),
  2064. name: "Front",
  2065. image: {
  2066. source: "./media/characters/noir/front.svg",
  2067. extra: 1,
  2068. bottom: 0.032
  2069. }
  2070. },
  2071. },
  2072. [
  2073. {
  2074. name: "Normal",
  2075. height: math.unit(6.6, "feet")
  2076. },
  2077. {
  2078. name: "Macro",
  2079. height: math.unit(500, "feet")
  2080. },
  2081. {
  2082. name: "Megamacro",
  2083. height: math.unit(2.5, "km"),
  2084. default: true
  2085. },
  2086. {
  2087. name: "Gigamacro",
  2088. height: math.unit(22500, "km")
  2089. },
  2090. {
  2091. name: "Teramacro",
  2092. height: math.unit(2500000000, "km")
  2093. },
  2094. {
  2095. name: "Examacro",
  2096. height: math.unit(200, "parsecs")
  2097. },
  2098. ]
  2099. ))
  2100. characterMakers.push(() => makeCharacter(
  2101. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2102. {
  2103. front: {
  2104. height: math.unit(7, "feet"),
  2105. weight: math.unit(100, "kg"),
  2106. name: "Front",
  2107. image: {
  2108. source: "./media/characters/okuri/front.svg",
  2109. extra: 1,
  2110. bottom: 0.037
  2111. }
  2112. },
  2113. back: {
  2114. height: math.unit(7, "feet"),
  2115. weight: math.unit(100, "kg"),
  2116. name: "Back",
  2117. image: {
  2118. source: "./media/characters/okuri/back.svg",
  2119. extra: 1,
  2120. bottom: 0.007
  2121. }
  2122. },
  2123. },
  2124. [
  2125. {
  2126. name: "Megamacro",
  2127. height: math.unit(100, "miles"),
  2128. default: true
  2129. },
  2130. ]
  2131. ))
  2132. characterMakers.push(() => makeCharacter(
  2133. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2134. {
  2135. front: {
  2136. height: math.unit(7, "feet"),
  2137. weight: math.unit(100, "kg"),
  2138. name: "Front",
  2139. image: {
  2140. source: "./media/characters/manny/front.svg",
  2141. extra: 1,
  2142. bottom: 0.06
  2143. }
  2144. },
  2145. back: {
  2146. height: math.unit(7, "feet"),
  2147. weight: math.unit(100, "kg"),
  2148. name: "Back",
  2149. image: {
  2150. source: "./media/characters/manny/back.svg",
  2151. extra: 1,
  2152. bottom: 0.014
  2153. }
  2154. },
  2155. },
  2156. [
  2157. {
  2158. name: "Normal",
  2159. height: math.unit(7, "feet"),
  2160. },
  2161. {
  2162. name: "Macro",
  2163. height: math.unit(78, "feet"),
  2164. default: true
  2165. },
  2166. {
  2167. name: "Macro+",
  2168. height: math.unit(300, "meters")
  2169. },
  2170. {
  2171. name: "Macro++",
  2172. height: math.unit(2400, "meters")
  2173. },
  2174. {
  2175. name: "Megamacro",
  2176. height: math.unit(5167, "meters")
  2177. },
  2178. {
  2179. name: "Gigamacro",
  2180. height: math.unit(41769, "miles")
  2181. },
  2182. ]
  2183. ))
  2184. characterMakers.push(() => makeCharacter(
  2185. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2186. {
  2187. front: {
  2188. height: math.unit(7, "feet"),
  2189. weight: math.unit(100, "kg"),
  2190. name: "Front",
  2191. image: {
  2192. source: "./media/characters/adake/front-1.svg"
  2193. }
  2194. },
  2195. frontAlt: {
  2196. height: math.unit(7, "feet"),
  2197. weight: math.unit(100, "kg"),
  2198. name: "Front (Alt)",
  2199. image: {
  2200. source: "./media/characters/adake/front-2.svg",
  2201. extra: 1,
  2202. bottom: 0.01
  2203. }
  2204. },
  2205. back: {
  2206. height: math.unit(7, "feet"),
  2207. weight: math.unit(100, "kg"),
  2208. name: "Back",
  2209. image: {
  2210. source: "./media/characters/adake/back.svg",
  2211. }
  2212. },
  2213. kneel: {
  2214. height: math.unit(5.385, "feet"),
  2215. weight: math.unit(100, "kg"),
  2216. name: "Kneeling",
  2217. image: {
  2218. source: "./media/characters/adake/kneel.svg",
  2219. bottom: 0.052
  2220. }
  2221. },
  2222. },
  2223. [
  2224. {
  2225. name: "Normal",
  2226. height: math.unit(7, "feet"),
  2227. },
  2228. {
  2229. name: "Macro",
  2230. height: math.unit(78, "feet"),
  2231. default: true
  2232. },
  2233. {
  2234. name: "Macro+",
  2235. height: math.unit(300, "meters")
  2236. },
  2237. {
  2238. name: "Macro++",
  2239. height: math.unit(2400, "meters")
  2240. },
  2241. {
  2242. name: "Megamacro",
  2243. height: math.unit(5167, "meters")
  2244. },
  2245. {
  2246. name: "Gigamacro",
  2247. height: math.unit(41769, "miles")
  2248. },
  2249. ]
  2250. ))
  2251. characterMakers.push(() => makeCharacter(
  2252. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2253. {
  2254. front: {
  2255. height: math.unit(1.65, "meters"),
  2256. weight: math.unit(50, "kg"),
  2257. name: "Front",
  2258. image: {
  2259. source: "./media/characters/elijah/front.svg",
  2260. extra: 858 / 830,
  2261. bottom: 95.5 / 953.8559
  2262. }
  2263. },
  2264. back: {
  2265. height: math.unit(1.65, "meters"),
  2266. weight: math.unit(50, "kg"),
  2267. name: "Back",
  2268. image: {
  2269. source: "./media/characters/elijah/back.svg",
  2270. extra: 895 / 850,
  2271. bottom: 5.3 / 897.956
  2272. }
  2273. },
  2274. frontNsfw: {
  2275. height: math.unit(1.65, "meters"),
  2276. weight: math.unit(50, "kg"),
  2277. name: "Front (NSFW)",
  2278. image: {
  2279. source: "./media/characters/elijah/front-nsfw.svg",
  2280. extra: 858 / 830,
  2281. bottom: 95.5 / 953.8559
  2282. }
  2283. },
  2284. backNsfw: {
  2285. height: math.unit(1.65, "meters"),
  2286. weight: math.unit(50, "kg"),
  2287. name: "Back (NSFW)",
  2288. image: {
  2289. source: "./media/characters/elijah/back-nsfw.svg",
  2290. extra: 895 / 850,
  2291. bottom: 5.3 / 897.956
  2292. }
  2293. },
  2294. dick: {
  2295. height: math.unit(1, "feet"),
  2296. name: "Dick",
  2297. image: {
  2298. source: "./media/characters/elijah/dick.svg"
  2299. }
  2300. },
  2301. beakOpen: {
  2302. height: math.unit(1.25, "feet"),
  2303. name: "Beak (Open)",
  2304. image: {
  2305. source: "./media/characters/elijah/beak-open.svg"
  2306. }
  2307. },
  2308. beakShut: {
  2309. height: math.unit(1.25, "feet"),
  2310. name: "Beak (Shut)",
  2311. image: {
  2312. source: "./media/characters/elijah/beak-shut.svg"
  2313. }
  2314. },
  2315. footFlexing: {
  2316. height: math.unit(1.61, "feet"),
  2317. name: "Foot (Flexing)",
  2318. image: {
  2319. source: "./media/characters/elijah/foot-flexing.svg"
  2320. }
  2321. },
  2322. footStepping: {
  2323. height: math.unit(1.44, "feet"),
  2324. name: "Foot (Stepping)",
  2325. image: {
  2326. source: "./media/characters/elijah/foot-stepping.svg"
  2327. }
  2328. },
  2329. plantigradeLeg: {
  2330. height: math.unit(2.34, "feet"),
  2331. name: "Plantigrade Leg",
  2332. image: {
  2333. source: "./media/characters/elijah/plantigrade-leg.svg"
  2334. }
  2335. },
  2336. plantigradeFootLeft: {
  2337. height: math.unit(0.9, "feet"),
  2338. name: "Plantigrade Foot (Left)",
  2339. image: {
  2340. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2341. }
  2342. },
  2343. plantigradeFootRight: {
  2344. height: math.unit(0.9, "feet"),
  2345. name: "Plantigrade Foot (Right)",
  2346. image: {
  2347. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2348. }
  2349. },
  2350. },
  2351. [
  2352. {
  2353. name: "Normal",
  2354. height: math.unit(1.65, "meters")
  2355. },
  2356. {
  2357. name: "Macro",
  2358. height: math.unit(55, "meters"),
  2359. default: true
  2360. },
  2361. {
  2362. name: "Macro+",
  2363. height: math.unit(105, "meters")
  2364. },
  2365. ]
  2366. ))
  2367. characterMakers.push(() => makeCharacter(
  2368. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2369. {
  2370. front: {
  2371. height: math.unit(11, "feet"),
  2372. weight: math.unit(320, "kg"),
  2373. name: "Front",
  2374. image: {
  2375. source: "./media/characters/rai/front.svg",
  2376. extra: 1802/1696,
  2377. bottom: 68/1870
  2378. }
  2379. },
  2380. frontDressed: {
  2381. height: math.unit(11, "feet"),
  2382. weight: math.unit(320, "kg"),
  2383. name: "Front (Dressed)",
  2384. image: {
  2385. source: "./media/characters/rai/front-dressed.svg",
  2386. extra: 1802/1696,
  2387. bottom: 68/1870
  2388. }
  2389. },
  2390. side: {
  2391. height: math.unit(11, "feet"),
  2392. weight: math.unit(320, "kg"),
  2393. name: "Side",
  2394. image: {
  2395. source: "./media/characters/rai/side.svg",
  2396. extra: 1789/1710,
  2397. bottom: 115/1904
  2398. }
  2399. },
  2400. back: {
  2401. height: math.unit(11, "feet"),
  2402. weight: math.unit(320, "kg"),
  2403. name: "Back",
  2404. image: {
  2405. source: "./media/characters/rai/back.svg",
  2406. extra: 1770/1707,
  2407. bottom: 28/1798
  2408. }
  2409. },
  2410. feral: {
  2411. height: math.unit(11, "feet"),
  2412. weight: math.unit(640, "kg"),
  2413. name: "Feral",
  2414. image: {
  2415. source: "./media/characters/rai/feral.svg",
  2416. extra: 1035/642,
  2417. bottom: 86/1121
  2418. }
  2419. },
  2420. dragon: {
  2421. height: math.unit(23, "feet"),
  2422. weight: math.unit(50000, "lb"),
  2423. name: "Dragon",
  2424. image: {
  2425. source: "./media/characters/rai/dragon.svg",
  2426. extra: 2498 / 2030,
  2427. bottom: 85.2 / 2584
  2428. }
  2429. },
  2430. maw: {
  2431. height: math.unit(6 / 3.81416, "feet"),
  2432. name: "Maw",
  2433. image: {
  2434. source: "./media/characters/rai/maw.svg"
  2435. }
  2436. },
  2437. },
  2438. [
  2439. {
  2440. name: "Normal",
  2441. height: math.unit(11, "feet")
  2442. },
  2443. {
  2444. name: "Macro",
  2445. height: math.unit(302, "feet"),
  2446. default: true
  2447. },
  2448. ]
  2449. ))
  2450. characterMakers.push(() => makeCharacter(
  2451. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2452. {
  2453. frontDressed: {
  2454. height: math.unit(216, "feet"),
  2455. weight: math.unit(7000000, "lb"),
  2456. name: "Front (Dressed)",
  2457. image: {
  2458. source: "./media/characters/jazzy/front-dressed.svg",
  2459. extra: 2738 / 2651,
  2460. bottom: 41.8 / 2786
  2461. }
  2462. },
  2463. backDressed: {
  2464. height: math.unit(216, "feet"),
  2465. weight: math.unit(7000000, "lb"),
  2466. name: "Back (Dressed)",
  2467. image: {
  2468. source: "./media/characters/jazzy/back-dressed.svg",
  2469. extra: 2775 / 2673,
  2470. bottom: 36.8 / 2817
  2471. }
  2472. },
  2473. front: {
  2474. height: math.unit(216, "feet"),
  2475. weight: math.unit(7000000, "lb"),
  2476. name: "Front",
  2477. image: {
  2478. source: "./media/characters/jazzy/front.svg",
  2479. extra: 2738 / 2651,
  2480. bottom: 41.8 / 2786
  2481. }
  2482. },
  2483. back: {
  2484. height: math.unit(216, "feet"),
  2485. weight: math.unit(7000000, "lb"),
  2486. name: "Back",
  2487. image: {
  2488. source: "./media/characters/jazzy/back.svg",
  2489. extra: 2775 / 2673,
  2490. bottom: 36.8 / 2817
  2491. }
  2492. },
  2493. maw: {
  2494. height: math.unit(20, "feet"),
  2495. name: "Maw",
  2496. image: {
  2497. source: "./media/characters/jazzy/maw.svg"
  2498. }
  2499. },
  2500. paws: {
  2501. height: math.unit(27.5, "feet"),
  2502. name: "Paws",
  2503. image: {
  2504. source: "./media/characters/jazzy/paws.svg"
  2505. }
  2506. },
  2507. eye: {
  2508. height: math.unit(4.4, "feet"),
  2509. name: "Eye",
  2510. image: {
  2511. source: "./media/characters/jazzy/eye.svg"
  2512. }
  2513. },
  2514. droneOffense: {
  2515. height: math.unit(9.5, "inches"),
  2516. name: "Drone (Offense)",
  2517. image: {
  2518. source: "./media/characters/jazzy/drone-offense.svg"
  2519. }
  2520. },
  2521. droneRecon: {
  2522. height: math.unit(9.5, "inches"),
  2523. name: "Drone (Recon)",
  2524. image: {
  2525. source: "./media/characters/jazzy/drone-recon.svg"
  2526. }
  2527. },
  2528. droneDefense: {
  2529. height: math.unit(9.5, "inches"),
  2530. name: "Drone (Defense)",
  2531. image: {
  2532. source: "./media/characters/jazzy/drone-defense.svg"
  2533. }
  2534. },
  2535. },
  2536. [
  2537. {
  2538. name: "Macro",
  2539. height: math.unit(216, "feet"),
  2540. default: true
  2541. },
  2542. ]
  2543. ))
  2544. characterMakers.push(() => makeCharacter(
  2545. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2546. {
  2547. front: {
  2548. height: math.unit(9 + 6/12, "feet"),
  2549. weight: math.unit(700, "lb"),
  2550. name: "Front",
  2551. image: {
  2552. source: "./media/characters/flamm/front.svg",
  2553. extra: 1751/1632,
  2554. bottom: 46/1797
  2555. }
  2556. },
  2557. buff: {
  2558. height: math.unit(9 + 6/12, "feet"),
  2559. weight: math.unit(950, "lb"),
  2560. name: "Buff",
  2561. image: {
  2562. source: "./media/characters/flamm/buff.svg",
  2563. extra: 3018/2874,
  2564. bottom: 221/3239
  2565. }
  2566. },
  2567. },
  2568. [
  2569. {
  2570. name: "Normal",
  2571. height: math.unit(9.5, "feet")
  2572. },
  2573. {
  2574. name: "Macro",
  2575. height: math.unit(200, "feet"),
  2576. default: true
  2577. },
  2578. ]
  2579. ))
  2580. characterMakers.push(() => makeCharacter(
  2581. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2582. {
  2583. front: {
  2584. height: math.unit(5 + 3/12, "feet"),
  2585. weight: math.unit(60, "kg"),
  2586. name: "Front",
  2587. image: {
  2588. source: "./media/characters/zephiro/front.svg",
  2589. extra: 2309 / 2162,
  2590. bottom: 0.069
  2591. }
  2592. },
  2593. side: {
  2594. height: math.unit(5 + 3/12, "feet"),
  2595. weight: math.unit(60, "kg"),
  2596. name: "Side",
  2597. image: {
  2598. source: "./media/characters/zephiro/side.svg",
  2599. extra: 2403 / 2279,
  2600. bottom: 0.015
  2601. }
  2602. },
  2603. back: {
  2604. height: math.unit(5 + 3/12, "feet"),
  2605. weight: math.unit(60, "kg"),
  2606. name: "Back",
  2607. image: {
  2608. source: "./media/characters/zephiro/back.svg",
  2609. extra: 2373 / 2244,
  2610. bottom: 0.013
  2611. }
  2612. },
  2613. hand: {
  2614. height: math.unit(0.68, "feet"),
  2615. name: "Hand",
  2616. image: {
  2617. source: "./media/characters/zephiro/hand.svg"
  2618. }
  2619. },
  2620. paw: {
  2621. height: math.unit(1, "feet"),
  2622. name: "Paw",
  2623. image: {
  2624. source: "./media/characters/zephiro/paw.svg"
  2625. }
  2626. },
  2627. beans: {
  2628. height: math.unit(0.93, "feet"),
  2629. name: "Beans",
  2630. image: {
  2631. source: "./media/characters/zephiro/beans.svg"
  2632. }
  2633. },
  2634. },
  2635. [
  2636. {
  2637. name: "Micro",
  2638. height: math.unit(3, "inches")
  2639. },
  2640. {
  2641. name: "Normal",
  2642. height: math.unit(5 + 3 / 12, "feet"),
  2643. default: true
  2644. },
  2645. {
  2646. name: "Macro",
  2647. height: math.unit(118, "feet")
  2648. },
  2649. ]
  2650. ))
  2651. characterMakers.push(() => makeCharacter(
  2652. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2653. {
  2654. front: {
  2655. height: math.unit(5, "feet"),
  2656. weight: math.unit(90, "kg"),
  2657. name: "Front",
  2658. image: {
  2659. source: "./media/characters/fory/front.svg",
  2660. extra: 2862 / 2674,
  2661. bottom: 180 / 3043.8
  2662. }
  2663. },
  2664. back: {
  2665. height: math.unit(5, "feet"),
  2666. weight: math.unit(90, "kg"),
  2667. name: "Back",
  2668. image: {
  2669. source: "./media/characters/fory/back.svg",
  2670. extra: 2962 / 2791,
  2671. bottom: 106 / 3071.8
  2672. }
  2673. },
  2674. foot: {
  2675. height: math.unit(2.14, "feet"),
  2676. name: "Foot",
  2677. image: {
  2678. source: "./media/characters/fory/foot.svg"
  2679. }
  2680. },
  2681. },
  2682. [
  2683. {
  2684. name: "Normal",
  2685. height: math.unit(5, "feet")
  2686. },
  2687. {
  2688. name: "Macro",
  2689. height: math.unit(50, "feet"),
  2690. default: true
  2691. },
  2692. {
  2693. name: "Megamacro",
  2694. height: math.unit(10, "miles")
  2695. },
  2696. {
  2697. name: "Gigamacro",
  2698. height: math.unit(5, "earths")
  2699. },
  2700. ]
  2701. ))
  2702. characterMakers.push(() => makeCharacter(
  2703. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2704. {
  2705. front: {
  2706. height: math.unit(7, "feet"),
  2707. weight: math.unit(90, "kg"),
  2708. name: "Front",
  2709. image: {
  2710. source: "./media/characters/kurrikage/front.svg",
  2711. extra: 1,
  2712. bottom: 0.035
  2713. }
  2714. },
  2715. back: {
  2716. height: math.unit(7, "feet"),
  2717. weight: math.unit(90, "lb"),
  2718. name: "Back",
  2719. image: {
  2720. source: "./media/characters/kurrikage/back.svg"
  2721. }
  2722. },
  2723. paw: {
  2724. height: math.unit(1.5, "feet"),
  2725. name: "Paw",
  2726. image: {
  2727. source: "./media/characters/kurrikage/paw.svg"
  2728. }
  2729. },
  2730. staff: {
  2731. height: math.unit(6.7, "feet"),
  2732. name: "Staff",
  2733. image: {
  2734. source: "./media/characters/kurrikage/staff.svg"
  2735. }
  2736. },
  2737. peek: {
  2738. height: math.unit(1.05, "feet"),
  2739. name: "Peeking",
  2740. image: {
  2741. source: "./media/characters/kurrikage/peek.svg",
  2742. bottom: 0.08
  2743. }
  2744. },
  2745. },
  2746. [
  2747. {
  2748. name: "Normal",
  2749. height: math.unit(12, "feet"),
  2750. default: true
  2751. },
  2752. {
  2753. name: "Big",
  2754. height: math.unit(20, "feet")
  2755. },
  2756. {
  2757. name: "Macro",
  2758. height: math.unit(500, "feet")
  2759. },
  2760. {
  2761. name: "Megamacro",
  2762. height: math.unit(20, "miles")
  2763. },
  2764. ]
  2765. ))
  2766. characterMakers.push(() => makeCharacter(
  2767. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2768. {
  2769. front: {
  2770. height: math.unit(6, "feet"),
  2771. weight: math.unit(75, "kg"),
  2772. name: "Front",
  2773. image: {
  2774. source: "./media/characters/shingo/front.svg",
  2775. extra: 1900/1825,
  2776. bottom: 82/1982
  2777. }
  2778. },
  2779. side: {
  2780. height: math.unit(6, "feet"),
  2781. weight: math.unit(75, "kg"),
  2782. name: "Side",
  2783. image: {
  2784. source: "./media/characters/shingo/side.svg",
  2785. extra: 1930/1865,
  2786. bottom: 16/1946
  2787. }
  2788. },
  2789. back: {
  2790. height: math.unit(6, "feet"),
  2791. weight: math.unit(75, "kg"),
  2792. name: "Back",
  2793. image: {
  2794. source: "./media/characters/shingo/back.svg",
  2795. extra: 1922/1852,
  2796. bottom: 16/1938
  2797. }
  2798. },
  2799. frontDressed: {
  2800. height: math.unit(6, "feet"),
  2801. weight: math.unit(150, "lb"),
  2802. name: "Front-dressed",
  2803. image: {
  2804. source: "./media/characters/shingo/front-dressed.svg",
  2805. extra: 1900/1825,
  2806. bottom: 82/1982
  2807. }
  2808. },
  2809. paw: {
  2810. height: math.unit(1.29, "feet"),
  2811. name: "Paw",
  2812. image: {
  2813. source: "./media/characters/shingo/paw.svg"
  2814. }
  2815. },
  2816. hand: {
  2817. height: math.unit(1.07, "feet"),
  2818. name: "Hand",
  2819. image: {
  2820. source: "./media/characters/shingo/hand.svg"
  2821. }
  2822. },
  2823. frontAlt: {
  2824. height: math.unit(6, "feet"),
  2825. weight: math.unit(75, "kg"),
  2826. name: "Front (Alt)",
  2827. image: {
  2828. source: "./media/characters/shingo/front-alt.svg",
  2829. extra: 3511 / 3338,
  2830. bottom: 0.005
  2831. }
  2832. },
  2833. frontAlt2: {
  2834. height: math.unit(6, "feet"),
  2835. weight: math.unit(75, "kg"),
  2836. name: "Front (Alt 2)",
  2837. image: {
  2838. source: "./media/characters/shingo/front-alt-2.svg",
  2839. extra: 706/681,
  2840. bottom: 11/717
  2841. }
  2842. },
  2843. pawAlt: {
  2844. height: math.unit(1, "feet"),
  2845. name: "Paw (Alt)",
  2846. image: {
  2847. source: "./media/characters/shingo/paw-alt.svg"
  2848. }
  2849. },
  2850. },
  2851. [
  2852. {
  2853. name: "Micro",
  2854. height: math.unit(4, "inches")
  2855. },
  2856. {
  2857. name: "Normal",
  2858. height: math.unit(6, "feet"),
  2859. default: true
  2860. },
  2861. {
  2862. name: "Macro",
  2863. height: math.unit(108, "feet")
  2864. },
  2865. {
  2866. name: "Macro+",
  2867. height: math.unit(1500, "feet")
  2868. },
  2869. ]
  2870. ))
  2871. characterMakers.push(() => makeCharacter(
  2872. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2873. {
  2874. side: {
  2875. height: math.unit(6, "feet"),
  2876. weight: math.unit(75, "kg"),
  2877. name: "Side",
  2878. image: {
  2879. source: "./media/characters/aigey/side.svg"
  2880. }
  2881. },
  2882. },
  2883. [
  2884. {
  2885. name: "Macro",
  2886. height: math.unit(200, "feet"),
  2887. default: true
  2888. },
  2889. {
  2890. name: "Megamacro",
  2891. height: math.unit(100, "miles")
  2892. },
  2893. ]
  2894. )
  2895. )
  2896. characterMakers.push(() => makeCharacter(
  2897. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2898. {
  2899. front: {
  2900. height: math.unit(5 + 5 / 12, "feet"),
  2901. weight: math.unit(75, "kg"),
  2902. name: "Front",
  2903. image: {
  2904. source: "./media/characters/natasha/front.svg",
  2905. extra: 859 / 824,
  2906. bottom: 23 / 879.6
  2907. }
  2908. },
  2909. frontNsfw: {
  2910. height: math.unit(5 + 5 / 12, "feet"),
  2911. weight: math.unit(75, "kg"),
  2912. name: "Front (NSFW)",
  2913. image: {
  2914. source: "./media/characters/natasha/front-nsfw.svg",
  2915. extra: 859 / 824,
  2916. bottom: 23 / 879.6
  2917. }
  2918. },
  2919. frontErect: {
  2920. height: math.unit(5 + 5 / 12, "feet"),
  2921. weight: math.unit(75, "kg"),
  2922. name: "Front (Erect)",
  2923. image: {
  2924. source: "./media/characters/natasha/front-erect.svg",
  2925. extra: 859 / 824,
  2926. bottom: 23 / 879.6
  2927. }
  2928. },
  2929. back: {
  2930. height: math.unit(5 + 5 / 12, "feet"),
  2931. weight: math.unit(75, "kg"),
  2932. name: "Back",
  2933. image: {
  2934. source: "./media/characters/natasha/back.svg",
  2935. extra: 887.9 / 852.6,
  2936. bottom: 9.7 / 896.4
  2937. }
  2938. },
  2939. backAlt: {
  2940. height: math.unit(5 + 5 / 12, "feet"),
  2941. weight: math.unit(75, "kg"),
  2942. name: "Back (Alt)",
  2943. image: {
  2944. source: "./media/characters/natasha/back-alt.svg",
  2945. extra: 1236.7 / 1192,
  2946. bottom: 22.3 / 1258.2
  2947. }
  2948. },
  2949. dick: {
  2950. height: math.unit(1.772, "feet"),
  2951. name: "Dick",
  2952. image: {
  2953. source: "./media/characters/natasha/dick.svg"
  2954. }
  2955. },
  2956. paw: {
  2957. height: math.unit(0.250, "meters"),
  2958. name: "Paw",
  2959. image: {
  2960. source: "./media/characters/natasha/paw.svg"
  2961. }
  2962. },
  2963. },
  2964. [
  2965. {
  2966. name: "Normal",
  2967. height: math.unit(5 + 5 / 12, "feet")
  2968. },
  2969. {
  2970. name: "Large",
  2971. height: math.unit(12, "feet")
  2972. },
  2973. {
  2974. name: "Macro",
  2975. height: math.unit(100, "feet"),
  2976. default: true
  2977. },
  2978. {
  2979. name: "Macro+",
  2980. height: math.unit(260, "feet")
  2981. },
  2982. {
  2983. name: "Macro++",
  2984. height: math.unit(1, "mile")
  2985. },
  2986. ]
  2987. ))
  2988. characterMakers.push(() => makeCharacter(
  2989. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2990. {
  2991. front: {
  2992. height: math.unit(6, "feet"),
  2993. weight: math.unit(75, "kg"),
  2994. name: "Front",
  2995. image: {
  2996. source: "./media/characters/malik/front.svg"
  2997. }
  2998. },
  2999. side: {
  3000. height: math.unit(6, "feet"),
  3001. weight: math.unit(75, "kg"),
  3002. name: "Side",
  3003. image: {
  3004. source: "./media/characters/malik/side.svg",
  3005. extra: 1.1539
  3006. }
  3007. },
  3008. back: {
  3009. height: math.unit(6, "feet"),
  3010. weight: math.unit(75, "kg"),
  3011. name: "Back",
  3012. image: {
  3013. source: "./media/characters/malik/back.svg"
  3014. }
  3015. },
  3016. },
  3017. [
  3018. {
  3019. name: "Macro",
  3020. height: math.unit(156, "feet"),
  3021. default: true
  3022. },
  3023. {
  3024. name: "Macro+",
  3025. height: math.unit(1188, "feet")
  3026. },
  3027. ]
  3028. ))
  3029. characterMakers.push(() => makeCharacter(
  3030. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3031. {
  3032. front: {
  3033. height: math.unit(6, "feet"),
  3034. weight: math.unit(75, "kg"),
  3035. name: "Front",
  3036. image: {
  3037. source: "./media/characters/sefer/front.svg",
  3038. extra: 848 / 659,
  3039. bottom: 28.3 / 876.442
  3040. }
  3041. },
  3042. back: {
  3043. height: math.unit(6, "feet"),
  3044. weight: math.unit(75, "kg"),
  3045. name: "Back",
  3046. image: {
  3047. source: "./media/characters/sefer/back.svg",
  3048. extra: 864 / 695,
  3049. bottom: 10 / 871
  3050. }
  3051. },
  3052. frontDressed: {
  3053. height: math.unit(6, "feet"),
  3054. weight: math.unit(75, "kg"),
  3055. name: "Front (Dressed)",
  3056. image: {
  3057. source: "./media/characters/sefer/front-dressed.svg",
  3058. extra: 839 / 653,
  3059. bottom: 37.6 / 878
  3060. }
  3061. },
  3062. },
  3063. [
  3064. {
  3065. name: "Normal",
  3066. height: math.unit(6, "feet"),
  3067. default: true
  3068. },
  3069. ]
  3070. ))
  3071. characterMakers.push(() => makeCharacter(
  3072. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3073. {
  3074. body: {
  3075. height: math.unit(2.2428, "meter"),
  3076. weight: math.unit(124.738, "kg"),
  3077. name: "Body",
  3078. image: {
  3079. extra: 1225 / 1050,
  3080. source: "./media/characters/north/front.svg"
  3081. }
  3082. }
  3083. },
  3084. [
  3085. {
  3086. name: "Micro",
  3087. height: math.unit(4, "inches")
  3088. },
  3089. {
  3090. name: "Macro",
  3091. height: math.unit(63, "meters")
  3092. },
  3093. {
  3094. name: "Megamacro",
  3095. height: math.unit(101, "miles"),
  3096. default: true
  3097. }
  3098. ]
  3099. ))
  3100. characterMakers.push(() => makeCharacter(
  3101. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3102. {
  3103. angled: {
  3104. height: math.unit(4, "meter"),
  3105. weight: math.unit(150, "kg"),
  3106. name: "Angled",
  3107. image: {
  3108. source: "./media/characters/talan/angled-sfw.svg",
  3109. bottom: 29 / 3734
  3110. }
  3111. },
  3112. angledNsfw: {
  3113. height: math.unit(4, "meter"),
  3114. weight: math.unit(150, "kg"),
  3115. name: "Angled (NSFW)",
  3116. image: {
  3117. source: "./media/characters/talan/angled-nsfw.svg",
  3118. bottom: 29 / 3734
  3119. }
  3120. },
  3121. frontNsfw: {
  3122. height: math.unit(4, "meter"),
  3123. weight: math.unit(150, "kg"),
  3124. name: "Front (NSFW)",
  3125. image: {
  3126. source: "./media/characters/talan/front-nsfw.svg",
  3127. bottom: 29 / 3734
  3128. }
  3129. },
  3130. sideNsfw: {
  3131. height: math.unit(4, "meter"),
  3132. weight: math.unit(150, "kg"),
  3133. name: "Side (NSFW)",
  3134. image: {
  3135. source: "./media/characters/talan/side-nsfw.svg",
  3136. bottom: 29 / 3734
  3137. }
  3138. },
  3139. back: {
  3140. height: math.unit(4, "meter"),
  3141. weight: math.unit(150, "kg"),
  3142. name: "Back",
  3143. image: {
  3144. source: "./media/characters/talan/back.svg"
  3145. }
  3146. },
  3147. dickBottom: {
  3148. height: math.unit(0.621, "meter"),
  3149. name: "Dick (Bottom)",
  3150. image: {
  3151. source: "./media/characters/talan/dick-bottom.svg"
  3152. }
  3153. },
  3154. dickTop: {
  3155. height: math.unit(0.621, "meter"),
  3156. name: "Dick (Top)",
  3157. image: {
  3158. source: "./media/characters/talan/dick-top.svg"
  3159. }
  3160. },
  3161. dickSide: {
  3162. height: math.unit(0.305, "meter"),
  3163. name: "Dick (Side)",
  3164. image: {
  3165. source: "./media/characters/talan/dick-side.svg"
  3166. }
  3167. },
  3168. dickFront: {
  3169. height: math.unit(0.305, "meter"),
  3170. name: "Dick (Front)",
  3171. image: {
  3172. source: "./media/characters/talan/dick-front.svg"
  3173. }
  3174. },
  3175. },
  3176. [
  3177. {
  3178. name: "Normal",
  3179. height: math.unit(4, "meters")
  3180. },
  3181. {
  3182. name: "Macro",
  3183. height: math.unit(100, "meters")
  3184. },
  3185. {
  3186. name: "Megamacro",
  3187. height: math.unit(2, "miles"),
  3188. default: true
  3189. },
  3190. {
  3191. name: "Gigamacro",
  3192. height: math.unit(5000, "miles")
  3193. },
  3194. {
  3195. name: "Teramacro",
  3196. height: math.unit(100, "parsecs")
  3197. }
  3198. ]
  3199. ))
  3200. characterMakers.push(() => makeCharacter(
  3201. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3202. {
  3203. front: {
  3204. height: math.unit(2, "meter"),
  3205. weight: math.unit(90, "kg"),
  3206. name: "Front",
  3207. image: {
  3208. source: "./media/characters/gael'rathus/front.svg"
  3209. }
  3210. },
  3211. frontAlt: {
  3212. height: math.unit(2, "meter"),
  3213. weight: math.unit(90, "kg"),
  3214. name: "Front (alt)",
  3215. image: {
  3216. source: "./media/characters/gael'rathus/front-alt.svg"
  3217. }
  3218. },
  3219. frontAlt2: {
  3220. height: math.unit(2, "meter"),
  3221. weight: math.unit(90, "kg"),
  3222. name: "Front (alt 2)",
  3223. image: {
  3224. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3225. }
  3226. }
  3227. },
  3228. [
  3229. {
  3230. name: "Normal",
  3231. height: math.unit(9, "feet"),
  3232. default: true
  3233. },
  3234. {
  3235. name: "Large",
  3236. height: math.unit(25, "feet")
  3237. },
  3238. {
  3239. name: "Macro",
  3240. height: math.unit(0.25, "miles")
  3241. },
  3242. {
  3243. name: "Megamacro",
  3244. height: math.unit(10, "miles")
  3245. }
  3246. ]
  3247. ))
  3248. characterMakers.push(() => makeCharacter(
  3249. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3250. {
  3251. side: {
  3252. height: math.unit(2, "meter"),
  3253. weight: math.unit(140, "kg"),
  3254. name: "Side",
  3255. image: {
  3256. source: "./media/characters/sosha/side.svg",
  3257. bottom: 0.042
  3258. }
  3259. },
  3260. },
  3261. [
  3262. {
  3263. name: "Normal",
  3264. height: math.unit(12, "feet"),
  3265. default: true
  3266. }
  3267. ]
  3268. ))
  3269. characterMakers.push(() => makeCharacter(
  3270. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3271. {
  3272. side: {
  3273. height: math.unit(5 + 5 / 12, "feet"),
  3274. weight: math.unit(170, "kg"),
  3275. name: "Side",
  3276. image: {
  3277. source: "./media/characters/runnola/side.svg",
  3278. extra: 741 / 448,
  3279. bottom: 0.05
  3280. }
  3281. },
  3282. },
  3283. [
  3284. {
  3285. name: "Small",
  3286. height: math.unit(3, "feet")
  3287. },
  3288. {
  3289. name: "Normal",
  3290. height: math.unit(5 + 5 / 12, "feet"),
  3291. default: true
  3292. },
  3293. {
  3294. name: "Big",
  3295. height: math.unit(10, "feet")
  3296. },
  3297. ]
  3298. ))
  3299. characterMakers.push(() => makeCharacter(
  3300. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3301. {
  3302. front: {
  3303. height: math.unit(2, "meter"),
  3304. weight: math.unit(50, "kg"),
  3305. name: "Front",
  3306. image: {
  3307. source: "./media/characters/kurribird/front.svg",
  3308. bottom: 0.015
  3309. }
  3310. },
  3311. frontAlt: {
  3312. height: math.unit(1.5, "meter"),
  3313. weight: math.unit(50, "kg"),
  3314. name: "Front (Alt)",
  3315. image: {
  3316. source: "./media/characters/kurribird/front-alt.svg",
  3317. extra: 1.45
  3318. }
  3319. },
  3320. },
  3321. [
  3322. {
  3323. name: "Normal",
  3324. height: math.unit(7, "feet")
  3325. },
  3326. {
  3327. name: "Big",
  3328. height: math.unit(12, "feet"),
  3329. default: true
  3330. },
  3331. {
  3332. name: "Macro",
  3333. height: math.unit(1500, "feet")
  3334. },
  3335. {
  3336. name: "Megamacro",
  3337. height: math.unit(2, "miles")
  3338. }
  3339. ]
  3340. ))
  3341. characterMakers.push(() => makeCharacter(
  3342. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3343. {
  3344. front: {
  3345. height: math.unit(2, "meter"),
  3346. weight: math.unit(80, "kg"),
  3347. name: "Front",
  3348. image: {
  3349. source: "./media/characters/elbial/front.svg",
  3350. extra: 1643 / 1556,
  3351. bottom: 60.2 / 1696
  3352. }
  3353. },
  3354. side: {
  3355. height: math.unit(2, "meter"),
  3356. weight: math.unit(80, "kg"),
  3357. name: "Side",
  3358. image: {
  3359. source: "./media/characters/elbial/side.svg",
  3360. extra: 1630 / 1565,
  3361. bottom: 71.5 / 1697
  3362. }
  3363. },
  3364. back: {
  3365. height: math.unit(2, "meter"),
  3366. weight: math.unit(80, "kg"),
  3367. name: "Back",
  3368. image: {
  3369. source: "./media/characters/elbial/back.svg",
  3370. extra: 1668 / 1595,
  3371. bottom: 5.6 / 1672
  3372. }
  3373. },
  3374. frontDressed: {
  3375. height: math.unit(2, "meter"),
  3376. weight: math.unit(80, "kg"),
  3377. name: "Front (Dressed)",
  3378. image: {
  3379. source: "./media/characters/elbial/front-dressed.svg",
  3380. extra: 1653 / 1584,
  3381. bottom: 57 / 1708
  3382. }
  3383. },
  3384. genitals: {
  3385. height: math.unit(2 / 3.367, "meter"),
  3386. name: "Genitals",
  3387. image: {
  3388. source: "./media/characters/elbial/genitals.svg"
  3389. }
  3390. },
  3391. },
  3392. [
  3393. {
  3394. name: "Large",
  3395. height: math.unit(100, "feet")
  3396. },
  3397. {
  3398. name: "Macro",
  3399. height: math.unit(500, "feet"),
  3400. default: true
  3401. },
  3402. {
  3403. name: "Megamacro",
  3404. height: math.unit(10, "miles")
  3405. },
  3406. {
  3407. name: "Gigamacro",
  3408. height: math.unit(25000, "miles")
  3409. },
  3410. {
  3411. name: "Full-Size",
  3412. height: math.unit(8000000, "gigaparsecs")
  3413. }
  3414. ]
  3415. ))
  3416. characterMakers.push(() => makeCharacter(
  3417. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3418. {
  3419. front: {
  3420. height: math.unit(2, "meter"),
  3421. weight: math.unit(60, "kg"),
  3422. name: "Front",
  3423. image: {
  3424. source: "./media/characters/noah/front.svg"
  3425. }
  3426. },
  3427. talons: {
  3428. height: math.unit(0.315, "meter"),
  3429. name: "Talons",
  3430. image: {
  3431. source: "./media/characters/noah/talons.svg"
  3432. }
  3433. }
  3434. },
  3435. [
  3436. {
  3437. name: "Large",
  3438. height: math.unit(50, "feet")
  3439. },
  3440. {
  3441. name: "Macro",
  3442. height: math.unit(750, "feet"),
  3443. default: true
  3444. },
  3445. {
  3446. name: "Megamacro",
  3447. height: math.unit(50, "miles")
  3448. },
  3449. {
  3450. name: "Gigamacro",
  3451. height: math.unit(100000, "miles")
  3452. },
  3453. {
  3454. name: "Full-Size",
  3455. height: math.unit(3000000000, "miles")
  3456. }
  3457. ]
  3458. ))
  3459. characterMakers.push(() => makeCharacter(
  3460. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3461. {
  3462. front: {
  3463. height: math.unit(2, "meter"),
  3464. weight: math.unit(80, "kg"),
  3465. name: "Front",
  3466. image: {
  3467. source: "./media/characters/natalya/front.svg"
  3468. }
  3469. },
  3470. back: {
  3471. height: math.unit(2, "meter"),
  3472. weight: math.unit(80, "kg"),
  3473. name: "Back",
  3474. image: {
  3475. source: "./media/characters/natalya/back.svg"
  3476. }
  3477. }
  3478. },
  3479. [
  3480. {
  3481. name: "Normal",
  3482. height: math.unit(150, "feet"),
  3483. default: true
  3484. },
  3485. {
  3486. name: "Megamacro",
  3487. height: math.unit(5, "miles")
  3488. },
  3489. {
  3490. name: "Full-Size",
  3491. height: math.unit(600, "kiloparsecs")
  3492. }
  3493. ]
  3494. ))
  3495. characterMakers.push(() => makeCharacter(
  3496. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3497. {
  3498. front: {
  3499. height: math.unit(2, "meter"),
  3500. weight: math.unit(50, "kg"),
  3501. name: "Front",
  3502. image: {
  3503. source: "./media/characters/erestrebah/front.svg",
  3504. extra: 208 / 193,
  3505. bottom: 0.055
  3506. }
  3507. },
  3508. back: {
  3509. height: math.unit(2, "meter"),
  3510. weight: math.unit(50, "kg"),
  3511. name: "Back",
  3512. image: {
  3513. source: "./media/characters/erestrebah/back.svg",
  3514. extra: 1.3
  3515. }
  3516. }
  3517. },
  3518. [
  3519. {
  3520. name: "Normal",
  3521. height: math.unit(10, "feet")
  3522. },
  3523. {
  3524. name: "Large",
  3525. height: math.unit(50, "feet"),
  3526. default: true
  3527. },
  3528. {
  3529. name: "Macro",
  3530. height: math.unit(300, "feet")
  3531. },
  3532. {
  3533. name: "Macro+",
  3534. height: math.unit(750, "feet")
  3535. },
  3536. {
  3537. name: "Megamacro",
  3538. height: math.unit(3, "miles")
  3539. }
  3540. ]
  3541. ))
  3542. characterMakers.push(() => makeCharacter(
  3543. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3544. {
  3545. front: {
  3546. height: math.unit(2, "meter"),
  3547. weight: math.unit(80, "kg"),
  3548. name: "Front",
  3549. image: {
  3550. source: "./media/characters/jennifer/front.svg",
  3551. bottom: 0.11,
  3552. extra: 1.16
  3553. }
  3554. },
  3555. frontAlt: {
  3556. height: math.unit(2, "meter"),
  3557. weight: math.unit(80, "kg"),
  3558. name: "Front (Alt)",
  3559. image: {
  3560. source: "./media/characters/jennifer/front-alt.svg"
  3561. }
  3562. }
  3563. },
  3564. [
  3565. {
  3566. name: "Canon Height",
  3567. height: math.unit(120, "feet"),
  3568. default: true
  3569. },
  3570. {
  3571. name: "Macro+",
  3572. height: math.unit(300, "feet")
  3573. },
  3574. {
  3575. name: "Megamacro",
  3576. height: math.unit(20000, "feet")
  3577. }
  3578. ]
  3579. ))
  3580. characterMakers.push(() => makeCharacter(
  3581. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3582. {
  3583. front: {
  3584. height: math.unit(2, "meter"),
  3585. weight: math.unit(50, "kg"),
  3586. name: "Front",
  3587. image: {
  3588. source: "./media/characters/kalista/front.svg",
  3589. extra: 1947 / 1700,
  3590. bottom: 76.6 / 1412.98
  3591. }
  3592. },
  3593. back: {
  3594. height: math.unit(2, "meter"),
  3595. weight: math.unit(50, "kg"),
  3596. name: "Back",
  3597. image: {
  3598. source: "./media/characters/kalista/back.svg",
  3599. extra: 1366 / 1156,
  3600. bottom: 33.9 / 1362.78
  3601. }
  3602. }
  3603. },
  3604. [
  3605. {
  3606. name: "Uncomfortably Small",
  3607. height: math.unit(10, "feet")
  3608. },
  3609. {
  3610. name: "Small",
  3611. height: math.unit(30, "feet")
  3612. },
  3613. {
  3614. name: "Macro",
  3615. height: math.unit(100, "feet"),
  3616. default: true
  3617. },
  3618. {
  3619. name: "Macro+",
  3620. height: math.unit(2000, "feet")
  3621. },
  3622. {
  3623. name: "True Form",
  3624. height: math.unit(8924, "miles")
  3625. }
  3626. ]
  3627. ))
  3628. characterMakers.push(() => makeCharacter(
  3629. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3630. {
  3631. front: {
  3632. height: math.unit(2, "meter"),
  3633. weight: math.unit(120, "kg"),
  3634. name: "Front",
  3635. image: {
  3636. source: "./media/characters/ggv/front.svg"
  3637. }
  3638. },
  3639. side: {
  3640. height: math.unit(2, "meter"),
  3641. weight: math.unit(120, "kg"),
  3642. name: "Side",
  3643. image: {
  3644. source: "./media/characters/ggv/side.svg"
  3645. }
  3646. }
  3647. },
  3648. [
  3649. {
  3650. name: "Extremely Puny",
  3651. height: math.unit(9 + 5 / 12, "feet")
  3652. },
  3653. {
  3654. name: "Horribly Small",
  3655. height: math.unit(47.7, "miles"),
  3656. default: true
  3657. },
  3658. {
  3659. name: "Reasonably Sized",
  3660. height: math.unit(25000, "parsecs")
  3661. },
  3662. {
  3663. name: "Slightly Uncompressed",
  3664. height: math.unit(7.77e31, "parsecs")
  3665. },
  3666. {
  3667. name: "Omniversal",
  3668. height: math.unit(1e300, "meters")
  3669. },
  3670. ]
  3671. ))
  3672. characterMakers.push(() => makeCharacter(
  3673. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3674. {
  3675. front: {
  3676. height: math.unit(2, "meter"),
  3677. weight: math.unit(75, "lb"),
  3678. name: "Front",
  3679. image: {
  3680. source: "./media/characters/napalm/front.svg"
  3681. }
  3682. },
  3683. back: {
  3684. height: math.unit(2, "meter"),
  3685. weight: math.unit(75, "lb"),
  3686. name: "Back",
  3687. image: {
  3688. source: "./media/characters/napalm/back.svg"
  3689. }
  3690. }
  3691. },
  3692. [
  3693. {
  3694. name: "Standard",
  3695. height: math.unit(55, "feet"),
  3696. default: true
  3697. }
  3698. ]
  3699. ))
  3700. characterMakers.push(() => makeCharacter(
  3701. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3702. {
  3703. front: {
  3704. height: math.unit(7 + 5 / 6, "feet"),
  3705. weight: math.unit(325, "lb"),
  3706. name: "Front",
  3707. image: {
  3708. source: "./media/characters/asana/front.svg",
  3709. extra: 1133 / 1060,
  3710. bottom: 15.2 / 1148.6
  3711. }
  3712. },
  3713. back: {
  3714. height: math.unit(7 + 5 / 6, "feet"),
  3715. weight: math.unit(325, "lb"),
  3716. name: "Back",
  3717. image: {
  3718. source: "./media/characters/asana/back.svg",
  3719. extra: 1114 / 1043,
  3720. bottom: 5 / 1120
  3721. }
  3722. },
  3723. dressedDark: {
  3724. height: math.unit(7 + 5 / 6, "feet"),
  3725. weight: math.unit(325, "lb"),
  3726. name: "Dressed (Dark)",
  3727. image: {
  3728. source: "./media/characters/asana/dressed-dark.svg",
  3729. extra: 1133 / 1060,
  3730. bottom: 15.2 / 1148.6
  3731. }
  3732. },
  3733. dressedLight: {
  3734. height: math.unit(7 + 5 / 6, "feet"),
  3735. weight: math.unit(325, "lb"),
  3736. name: "Dressed (Light)",
  3737. image: {
  3738. source: "./media/characters/asana/dressed-light.svg",
  3739. extra: 1133 / 1060,
  3740. bottom: 15.2 / 1148.6
  3741. }
  3742. },
  3743. },
  3744. [
  3745. {
  3746. name: "Standard",
  3747. height: math.unit(7 + 5 / 6, "feet"),
  3748. default: true
  3749. },
  3750. {
  3751. name: "Large",
  3752. height: math.unit(10, "meters")
  3753. },
  3754. {
  3755. name: "Macro",
  3756. height: math.unit(2500, "meters")
  3757. },
  3758. {
  3759. name: "Megamacro",
  3760. height: math.unit(5e6, "meters")
  3761. },
  3762. {
  3763. name: "Examacro",
  3764. height: math.unit(5e12, "lightyears")
  3765. },
  3766. {
  3767. name: "Max Size",
  3768. height: math.unit(1e31, "lightyears")
  3769. }
  3770. ]
  3771. ))
  3772. characterMakers.push(() => makeCharacter(
  3773. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3774. {
  3775. front: {
  3776. height: math.unit(2, "meter"),
  3777. weight: math.unit(60, "kg"),
  3778. name: "Front",
  3779. image: {
  3780. source: "./media/characters/ebony/front.svg",
  3781. bottom: 0.03,
  3782. extra: 1045 / 810 + 0.03
  3783. }
  3784. },
  3785. side: {
  3786. height: math.unit(2, "meter"),
  3787. weight: math.unit(60, "kg"),
  3788. name: "Side",
  3789. image: {
  3790. source: "./media/characters/ebony/side.svg",
  3791. bottom: 0.03,
  3792. extra: 1045 / 810 + 0.03
  3793. }
  3794. },
  3795. back: {
  3796. height: math.unit(2, "meter"),
  3797. weight: math.unit(60, "kg"),
  3798. name: "Back",
  3799. image: {
  3800. source: "./media/characters/ebony/back.svg",
  3801. bottom: 0.01,
  3802. extra: 1045 / 810 + 0.01
  3803. }
  3804. },
  3805. },
  3806. [
  3807. // TODO check why I did this lol
  3808. {
  3809. name: "Standard",
  3810. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3811. default: true
  3812. },
  3813. {
  3814. name: "Macro",
  3815. height: math.unit(200, "feet")
  3816. },
  3817. {
  3818. name: "Gigamacro",
  3819. height: math.unit(13000, "km")
  3820. }
  3821. ]
  3822. ))
  3823. characterMakers.push(() => makeCharacter(
  3824. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3825. {
  3826. front: {
  3827. height: math.unit(6, "feet"),
  3828. weight: math.unit(175, "lb"),
  3829. name: "Front",
  3830. image: {
  3831. source: "./media/characters/mountain/front.svg",
  3832. extra: 972 / 955,
  3833. bottom: 64 / 1036.6
  3834. }
  3835. },
  3836. back: {
  3837. height: math.unit(6, "feet"),
  3838. weight: math.unit(175, "lb"),
  3839. name: "Back",
  3840. image: {
  3841. source: "./media/characters/mountain/back.svg",
  3842. extra: 970 / 950,
  3843. bottom: 28.25 / 999
  3844. }
  3845. },
  3846. },
  3847. [
  3848. {
  3849. name: "Large",
  3850. height: math.unit(20, "meters")
  3851. },
  3852. {
  3853. name: "Macro",
  3854. height: math.unit(300, "meters")
  3855. },
  3856. {
  3857. name: "Gigamacro",
  3858. height: math.unit(10000, "km"),
  3859. default: true
  3860. },
  3861. {
  3862. name: "Examacro",
  3863. height: math.unit(10e9, "lightyears")
  3864. }
  3865. ]
  3866. ))
  3867. characterMakers.push(() => makeCharacter(
  3868. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3869. {
  3870. front: {
  3871. height: math.unit(8, "feet"),
  3872. weight: math.unit(500, "lb"),
  3873. name: "Front",
  3874. image: {
  3875. source: "./media/characters/rick/front.svg"
  3876. }
  3877. }
  3878. },
  3879. [
  3880. {
  3881. name: "Normal",
  3882. height: math.unit(8, "feet"),
  3883. default: true
  3884. },
  3885. {
  3886. name: "Macro",
  3887. height: math.unit(5, "km")
  3888. }
  3889. ]
  3890. ))
  3891. characterMakers.push(() => makeCharacter(
  3892. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3893. {
  3894. front: {
  3895. height: math.unit(8, "feet"),
  3896. weight: math.unit(120, "lb"),
  3897. name: "Front",
  3898. image: {
  3899. source: "./media/characters/ona/front.svg"
  3900. }
  3901. },
  3902. frontAlt: {
  3903. height: math.unit(8, "feet"),
  3904. weight: math.unit(120, "lb"),
  3905. name: "Front (Alt)",
  3906. image: {
  3907. source: "./media/characters/ona/front-alt.svg"
  3908. }
  3909. },
  3910. back: {
  3911. height: math.unit(8, "feet"),
  3912. weight: math.unit(120, "lb"),
  3913. name: "Back",
  3914. image: {
  3915. source: "./media/characters/ona/back.svg"
  3916. }
  3917. },
  3918. foot: {
  3919. height: math.unit(1.1, "feet"),
  3920. name: "Foot",
  3921. image: {
  3922. source: "./media/characters/ona/foot.svg"
  3923. }
  3924. }
  3925. },
  3926. [
  3927. {
  3928. name: "Megamacro",
  3929. height: math.unit(70, "km"),
  3930. default: true
  3931. },
  3932. {
  3933. name: "Gigamacro",
  3934. height: math.unit(681818, "miles")
  3935. },
  3936. {
  3937. name: "Examacro",
  3938. height: math.unit(3800000, "lightyears")
  3939. },
  3940. ]
  3941. ))
  3942. characterMakers.push(() => makeCharacter(
  3943. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3944. {
  3945. front: {
  3946. height: math.unit(12, "feet"),
  3947. weight: math.unit(3000, "lb"),
  3948. name: "Front",
  3949. image: {
  3950. source: "./media/characters/mech/front.svg",
  3951. extra: 2900 / 2770,
  3952. bottom: 110 / 3010
  3953. }
  3954. },
  3955. back: {
  3956. height: math.unit(12, "feet"),
  3957. weight: math.unit(3000, "lb"),
  3958. name: "Back",
  3959. image: {
  3960. source: "./media/characters/mech/back.svg",
  3961. extra: 3011 / 2890,
  3962. bottom: 94 / 3105
  3963. }
  3964. },
  3965. maw: {
  3966. height: math.unit(3.07, "feet"),
  3967. name: "Maw",
  3968. image: {
  3969. source: "./media/characters/mech/maw.svg"
  3970. }
  3971. },
  3972. head: {
  3973. height: math.unit(2.82, "feet"),
  3974. name: "Head",
  3975. image: {
  3976. source: "./media/characters/mech/head.svg"
  3977. }
  3978. },
  3979. dick: {
  3980. height: math.unit(1.43, "feet"),
  3981. name: "Dick",
  3982. image: {
  3983. source: "./media/characters/mech/dick.svg"
  3984. }
  3985. },
  3986. },
  3987. [
  3988. {
  3989. name: "Normal",
  3990. height: math.unit(12, "feet")
  3991. },
  3992. {
  3993. name: "Macro",
  3994. height: math.unit(300, "feet"),
  3995. default: true
  3996. },
  3997. {
  3998. name: "Macro+",
  3999. height: math.unit(1500, "feet")
  4000. },
  4001. ]
  4002. ))
  4003. characterMakers.push(() => makeCharacter(
  4004. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4005. {
  4006. front: {
  4007. height: math.unit(1.3, "meter"),
  4008. weight: math.unit(30, "kg"),
  4009. name: "Front",
  4010. image: {
  4011. source: "./media/characters/gregory/front.svg",
  4012. }
  4013. }
  4014. },
  4015. [
  4016. {
  4017. name: "Normal",
  4018. height: math.unit(1.3, "meter"),
  4019. default: true
  4020. },
  4021. {
  4022. name: "Macro",
  4023. height: math.unit(20, "meter")
  4024. }
  4025. ]
  4026. ))
  4027. characterMakers.push(() => makeCharacter(
  4028. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4029. {
  4030. front: {
  4031. height: math.unit(2.8, "meter"),
  4032. weight: math.unit(200, "kg"),
  4033. name: "Front",
  4034. image: {
  4035. source: "./media/characters/elory/front.svg",
  4036. }
  4037. }
  4038. },
  4039. [
  4040. {
  4041. name: "Normal",
  4042. height: math.unit(2.8, "meter"),
  4043. default: true
  4044. },
  4045. {
  4046. name: "Macro",
  4047. height: math.unit(38, "meter")
  4048. }
  4049. ]
  4050. ))
  4051. characterMakers.push(() => makeCharacter(
  4052. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4053. {
  4054. front: {
  4055. height: math.unit(470, "feet"),
  4056. weight: math.unit(924, "tons"),
  4057. name: "Front",
  4058. image: {
  4059. source: "./media/characters/angelpatamon/front.svg",
  4060. }
  4061. }
  4062. },
  4063. [
  4064. {
  4065. name: "Normal",
  4066. height: math.unit(470, "feet"),
  4067. default: true
  4068. },
  4069. {
  4070. name: "Deity Size I",
  4071. height: math.unit(28651.2, "km")
  4072. },
  4073. {
  4074. name: "Deity Size II",
  4075. height: math.unit(171907.2, "km")
  4076. }
  4077. ]
  4078. ))
  4079. characterMakers.push(() => makeCharacter(
  4080. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4081. {
  4082. side: {
  4083. height: math.unit(7.2, "meter"),
  4084. weight: math.unit(8.2, "tons"),
  4085. name: "Side",
  4086. image: {
  4087. source: "./media/characters/cryae/side.svg",
  4088. extra: 3500 / 1500
  4089. }
  4090. }
  4091. },
  4092. [
  4093. {
  4094. name: "Normal",
  4095. height: math.unit(7.2, "meter"),
  4096. default: true
  4097. }
  4098. ]
  4099. ))
  4100. characterMakers.push(() => makeCharacter(
  4101. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4102. {
  4103. front: {
  4104. height: math.unit(6, "feet"),
  4105. weight: math.unit(175, "lb"),
  4106. name: "Front",
  4107. image: {
  4108. source: "./media/characters/xera/front.svg",
  4109. extra: 2377 / 1972,
  4110. bottom: 75.5 / 2452
  4111. }
  4112. },
  4113. side: {
  4114. height: math.unit(6, "feet"),
  4115. weight: math.unit(175, "lb"),
  4116. name: "Side",
  4117. image: {
  4118. source: "./media/characters/xera/side.svg",
  4119. extra: 2345 / 2019,
  4120. bottom: 39.7 / 2384
  4121. }
  4122. },
  4123. back: {
  4124. height: math.unit(6, "feet"),
  4125. weight: math.unit(175, "lb"),
  4126. name: "Back",
  4127. image: {
  4128. source: "./media/characters/xera/back.svg",
  4129. extra: 2095 / 1984,
  4130. bottom: 67 / 2166
  4131. }
  4132. },
  4133. },
  4134. [
  4135. {
  4136. name: "Small",
  4137. height: math.unit(10, "feet")
  4138. },
  4139. {
  4140. name: "Macro",
  4141. height: math.unit(500, "meters"),
  4142. default: true
  4143. },
  4144. {
  4145. name: "Macro+",
  4146. height: math.unit(10, "km")
  4147. },
  4148. {
  4149. name: "Gigamacro",
  4150. height: math.unit(25000, "km")
  4151. },
  4152. {
  4153. name: "Teramacro",
  4154. height: math.unit(3e6, "km")
  4155. }
  4156. ]
  4157. ))
  4158. characterMakers.push(() => makeCharacter(
  4159. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4160. {
  4161. front: {
  4162. height: math.unit(6, "feet"),
  4163. weight: math.unit(175, "lb"),
  4164. name: "Front",
  4165. image: {
  4166. source: "./media/characters/nebula/front.svg",
  4167. extra: 2566 / 2362,
  4168. bottom: 81 / 2644
  4169. }
  4170. }
  4171. },
  4172. [
  4173. {
  4174. name: "Small",
  4175. height: math.unit(4.5, "meters")
  4176. },
  4177. {
  4178. name: "Macro",
  4179. height: math.unit(1500, "meters"),
  4180. default: true
  4181. },
  4182. {
  4183. name: "Megamacro",
  4184. height: math.unit(150, "km")
  4185. },
  4186. {
  4187. name: "Gigamacro",
  4188. height: math.unit(27000, "km")
  4189. }
  4190. ]
  4191. ))
  4192. characterMakers.push(() => makeCharacter(
  4193. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4194. {
  4195. front: {
  4196. height: math.unit(6, "feet"),
  4197. weight: math.unit(225, "lb"),
  4198. name: "Front",
  4199. image: {
  4200. source: "./media/characters/abysgar/front.svg"
  4201. }
  4202. }
  4203. },
  4204. [
  4205. {
  4206. name: "Small",
  4207. height: math.unit(4.5, "meters")
  4208. },
  4209. {
  4210. name: "Macro",
  4211. height: math.unit(1250, "meters"),
  4212. default: true
  4213. },
  4214. {
  4215. name: "Megamacro",
  4216. height: math.unit(125, "km")
  4217. },
  4218. {
  4219. name: "Gigamacro",
  4220. height: math.unit(26000, "km")
  4221. }
  4222. ]
  4223. ))
  4224. characterMakers.push(() => makeCharacter(
  4225. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4226. {
  4227. front: {
  4228. height: math.unit(6, "feet"),
  4229. weight: math.unit(180, "lb"),
  4230. name: "Front",
  4231. image: {
  4232. source: "./media/characters/yakuz/front.svg"
  4233. }
  4234. }
  4235. },
  4236. [
  4237. {
  4238. name: "Small",
  4239. height: math.unit(5, "meters")
  4240. },
  4241. {
  4242. name: "Macro",
  4243. height: math.unit(1500, "meters"),
  4244. default: true
  4245. },
  4246. {
  4247. name: "Megamacro",
  4248. height: math.unit(200, "km")
  4249. },
  4250. {
  4251. name: "Gigamacro",
  4252. height: math.unit(100000, "km")
  4253. }
  4254. ]
  4255. ))
  4256. characterMakers.push(() => makeCharacter(
  4257. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4258. {
  4259. front: {
  4260. height: math.unit(6, "feet"),
  4261. weight: math.unit(175, "lb"),
  4262. name: "Front",
  4263. image: {
  4264. source: "./media/characters/mirova/front.svg",
  4265. extra: 3334 / 3071,
  4266. bottom: 42 / 3375.6
  4267. }
  4268. }
  4269. },
  4270. [
  4271. {
  4272. name: "Small",
  4273. height: math.unit(5, "meters")
  4274. },
  4275. {
  4276. name: "Macro",
  4277. height: math.unit(900, "meters"),
  4278. default: true
  4279. },
  4280. {
  4281. name: "Megamacro",
  4282. height: math.unit(135, "km")
  4283. },
  4284. {
  4285. name: "Gigamacro",
  4286. height: math.unit(20000, "km")
  4287. }
  4288. ]
  4289. ))
  4290. characterMakers.push(() => makeCharacter(
  4291. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4292. {
  4293. side: {
  4294. height: math.unit(28.35, "feet"),
  4295. weight: math.unit(99.75, "tons"),
  4296. name: "Side",
  4297. image: {
  4298. source: "./media/characters/asana-mech/side.svg",
  4299. extra: 923 / 699,
  4300. bottom: 50 / 975
  4301. }
  4302. },
  4303. chaingun: {
  4304. height: math.unit(7, "feet"),
  4305. weight: math.unit(2400, "lb"),
  4306. name: "Chaingun",
  4307. image: {
  4308. source: "./media/characters/asana-mech/chaingun.svg"
  4309. }
  4310. },
  4311. laser: {
  4312. height: math.unit(7.12, "feet"),
  4313. weight: math.unit(2000, "lb"),
  4314. name: "Laser",
  4315. image: {
  4316. source: "./media/characters/asana-mech/laser.svg"
  4317. }
  4318. },
  4319. },
  4320. [
  4321. {
  4322. name: "Normal",
  4323. height: math.unit(28.35, "feet"),
  4324. default: true
  4325. },
  4326. {
  4327. name: "Macro",
  4328. height: math.unit(2500, "feet")
  4329. },
  4330. {
  4331. name: "Megamacro",
  4332. height: math.unit(25, "miles")
  4333. },
  4334. {
  4335. name: "Examacro",
  4336. height: math.unit(6e8, "lightyears")
  4337. },
  4338. ]
  4339. ))
  4340. characterMakers.push(() => makeCharacter(
  4341. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4342. {
  4343. front: {
  4344. height: math.unit(5, "meters"),
  4345. weight: math.unit(1000, "kg"),
  4346. name: "Front",
  4347. image: {
  4348. source: "./media/characters/asche/front.svg",
  4349. extra: 1258 / 1190,
  4350. bottom: 47 / 1305
  4351. }
  4352. },
  4353. frontUnderwear: {
  4354. height: math.unit(5, "meters"),
  4355. weight: math.unit(1000, "kg"),
  4356. name: "Front (Underwear)",
  4357. image: {
  4358. source: "./media/characters/asche/front-underwear.svg",
  4359. extra: 1258 / 1190,
  4360. bottom: 47 / 1305
  4361. }
  4362. },
  4363. frontDressed: {
  4364. height: math.unit(5, "meters"),
  4365. weight: math.unit(1000, "kg"),
  4366. name: "Front (Dressed)",
  4367. image: {
  4368. source: "./media/characters/asche/front-dressed.svg",
  4369. extra: 1258 / 1190,
  4370. bottom: 47 / 1305
  4371. }
  4372. },
  4373. frontArmor: {
  4374. height: math.unit(5, "meters"),
  4375. weight: math.unit(1000, "kg"),
  4376. name: "Front (Armored)",
  4377. image: {
  4378. source: "./media/characters/asche/front-armored.svg",
  4379. extra: 1374 / 1308,
  4380. bottom: 23 / 1397
  4381. }
  4382. },
  4383. mp724: {
  4384. height: math.unit(0.96, "meters"),
  4385. weight: math.unit(38, "kg"),
  4386. name: "H&K MP724",
  4387. image: {
  4388. source: "./media/characters/asche/h&k-mp724.svg"
  4389. }
  4390. },
  4391. side: {
  4392. height: math.unit(5, "meters"),
  4393. weight: math.unit(1000, "kg"),
  4394. name: "Side",
  4395. image: {
  4396. source: "./media/characters/asche/side.svg",
  4397. extra: 1717 / 1609,
  4398. bottom: 0.005
  4399. }
  4400. },
  4401. back: {
  4402. height: math.unit(5, "meters"),
  4403. weight: math.unit(1000, "kg"),
  4404. name: "Back",
  4405. image: {
  4406. source: "./media/characters/asche/back.svg",
  4407. extra: 1570 / 1501
  4408. }
  4409. },
  4410. },
  4411. [
  4412. {
  4413. name: "DEFCON 5",
  4414. height: math.unit(5, "meters")
  4415. },
  4416. {
  4417. name: "DEFCON 4",
  4418. height: math.unit(500, "meters"),
  4419. default: true
  4420. },
  4421. {
  4422. name: "DEFCON 3",
  4423. height: math.unit(5, "km")
  4424. },
  4425. {
  4426. name: "DEFCON 2",
  4427. height: math.unit(500, "km")
  4428. },
  4429. {
  4430. name: "DEFCON 1",
  4431. height: math.unit(500000, "km")
  4432. },
  4433. {
  4434. name: "DEFCON 0",
  4435. height: math.unit(3, "gigaparsecs")
  4436. },
  4437. ]
  4438. ))
  4439. characterMakers.push(() => makeCharacter(
  4440. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4441. {
  4442. front: {
  4443. height: math.unit(2, "meters"),
  4444. weight: math.unit(76, "kg"),
  4445. name: "Front",
  4446. image: {
  4447. source: "./media/characters/gale/front.svg"
  4448. }
  4449. },
  4450. frontAlt1: {
  4451. height: math.unit(2, "meters"),
  4452. weight: math.unit(76, "kg"),
  4453. name: "Front (Alt 1)",
  4454. image: {
  4455. source: "./media/characters/gale/front-alt-1.svg"
  4456. }
  4457. },
  4458. frontAlt2: {
  4459. height: math.unit(2, "meters"),
  4460. weight: math.unit(76, "kg"),
  4461. name: "Front (Alt 2)",
  4462. image: {
  4463. source: "./media/characters/gale/front-alt-2.svg"
  4464. }
  4465. },
  4466. },
  4467. [
  4468. {
  4469. name: "Normal",
  4470. height: math.unit(7, "feet")
  4471. },
  4472. {
  4473. name: "Macro",
  4474. height: math.unit(150, "feet"),
  4475. default: true
  4476. },
  4477. {
  4478. name: "Macro+",
  4479. height: math.unit(300, "feet")
  4480. },
  4481. ]
  4482. ))
  4483. characterMakers.push(() => makeCharacter(
  4484. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4485. {
  4486. front: {
  4487. height: math.unit(2, "meters"),
  4488. weight: math.unit(76, "kg"),
  4489. name: "Front",
  4490. image: {
  4491. source: "./media/characters/draylen/front.svg"
  4492. }
  4493. }
  4494. },
  4495. [
  4496. {
  4497. name: "Macro",
  4498. height: math.unit(150, "feet"),
  4499. default: true
  4500. }
  4501. ]
  4502. ))
  4503. characterMakers.push(() => makeCharacter(
  4504. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4505. {
  4506. front: {
  4507. height: math.unit(7 + 9 / 12, "feet"),
  4508. weight: math.unit(379, "lbs"),
  4509. name: "Front",
  4510. image: {
  4511. source: "./media/characters/chez/front.svg"
  4512. }
  4513. },
  4514. side: {
  4515. height: math.unit(7 + 9 / 12, "feet"),
  4516. weight: math.unit(379, "lbs"),
  4517. name: "Side",
  4518. image: {
  4519. source: "./media/characters/chez/side.svg"
  4520. }
  4521. }
  4522. },
  4523. [
  4524. {
  4525. name: "Normal",
  4526. height: math.unit(7 + 9 / 12, "feet"),
  4527. default: true
  4528. },
  4529. {
  4530. name: "God King",
  4531. height: math.unit(9750000, "meters")
  4532. }
  4533. ]
  4534. ))
  4535. characterMakers.push(() => makeCharacter(
  4536. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4537. {
  4538. front: {
  4539. height: math.unit(6, "feet"),
  4540. weight: math.unit(275, "lbs"),
  4541. name: "Front",
  4542. image: {
  4543. source: "./media/characters/kaylum/front.svg",
  4544. bottom: 0.01,
  4545. extra: 1166 / 1031
  4546. }
  4547. },
  4548. frontWingless: {
  4549. height: math.unit(6, "feet"),
  4550. weight: math.unit(275, "lbs"),
  4551. name: "Front (Wingless)",
  4552. image: {
  4553. source: "./media/characters/kaylum/front-wingless.svg",
  4554. bottom: 0.01,
  4555. extra: 1117 / 1031
  4556. }
  4557. }
  4558. },
  4559. [
  4560. {
  4561. name: "Normal",
  4562. height: math.unit(3.05, "meters")
  4563. },
  4564. {
  4565. name: "Master",
  4566. height: math.unit(5.5, "meters")
  4567. },
  4568. {
  4569. name: "Rampage",
  4570. height: math.unit(19, "meters")
  4571. },
  4572. {
  4573. name: "Macro Lite",
  4574. height: math.unit(37, "meters")
  4575. },
  4576. {
  4577. name: "Hyper Predator",
  4578. height: math.unit(61, "meters")
  4579. },
  4580. {
  4581. name: "Macro",
  4582. height: math.unit(138, "meters"),
  4583. default: true
  4584. }
  4585. ]
  4586. ))
  4587. characterMakers.push(() => makeCharacter(
  4588. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4589. {
  4590. front: {
  4591. height: math.unit(6, "feet"),
  4592. weight: math.unit(150, "lbs"),
  4593. name: "Front",
  4594. image: {
  4595. source: "./media/characters/geta/front.svg"
  4596. }
  4597. }
  4598. },
  4599. [
  4600. {
  4601. name: "Micro",
  4602. height: math.unit(3, "inches"),
  4603. default: true
  4604. },
  4605. {
  4606. name: "Normal",
  4607. height: math.unit(5 + 5 / 12, "feet")
  4608. }
  4609. ]
  4610. ))
  4611. characterMakers.push(() => makeCharacter(
  4612. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4613. {
  4614. front: {
  4615. height: math.unit(6, "feet"),
  4616. weight: math.unit(300, "lbs"),
  4617. name: "Front",
  4618. image: {
  4619. source: "./media/characters/tyrnn/front.svg"
  4620. }
  4621. }
  4622. },
  4623. [
  4624. {
  4625. name: "Main Height",
  4626. height: math.unit(355, "feet"),
  4627. default: true
  4628. },
  4629. {
  4630. name: "Fave. Height",
  4631. height: math.unit(2400, "feet")
  4632. }
  4633. ]
  4634. ))
  4635. characterMakers.push(() => makeCharacter(
  4636. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4637. {
  4638. front: {
  4639. height: math.unit(6, "feet"),
  4640. weight: math.unit(300, "lbs"),
  4641. name: "Front",
  4642. image: {
  4643. source: "./media/characters/appledectomy/front.svg"
  4644. }
  4645. }
  4646. },
  4647. [
  4648. {
  4649. name: "Macro",
  4650. height: math.unit(2500, "feet")
  4651. },
  4652. {
  4653. name: "Megamacro",
  4654. height: math.unit(50, "miles"),
  4655. default: true
  4656. },
  4657. {
  4658. name: "Gigamacro",
  4659. height: math.unit(5000, "miles")
  4660. },
  4661. {
  4662. name: "Teramacro",
  4663. height: math.unit(250000, "miles")
  4664. },
  4665. ]
  4666. ))
  4667. characterMakers.push(() => makeCharacter(
  4668. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4669. {
  4670. front: {
  4671. height: math.unit(6, "feet"),
  4672. weight: math.unit(200, "lbs"),
  4673. name: "Front",
  4674. image: {
  4675. source: "./media/characters/vulpes/front.svg",
  4676. extra: 573 / 543,
  4677. bottom: 0.033
  4678. }
  4679. },
  4680. side: {
  4681. height: math.unit(6, "feet"),
  4682. weight: math.unit(200, "lbs"),
  4683. name: "Side",
  4684. image: {
  4685. source: "./media/characters/vulpes/side.svg",
  4686. extra: 577 / 549,
  4687. bottom: 11 / 588
  4688. }
  4689. },
  4690. back: {
  4691. height: math.unit(6, "feet"),
  4692. weight: math.unit(200, "lbs"),
  4693. name: "Back",
  4694. image: {
  4695. source: "./media/characters/vulpes/back.svg",
  4696. extra: 573 / 549,
  4697. bottom: 20 / 593
  4698. }
  4699. },
  4700. feet: {
  4701. height: math.unit(1.276, "feet"),
  4702. name: "Feet",
  4703. image: {
  4704. source: "./media/characters/vulpes/feet.svg"
  4705. }
  4706. },
  4707. maw: {
  4708. height: math.unit(1.18, "feet"),
  4709. name: "Maw",
  4710. image: {
  4711. source: "./media/characters/vulpes/maw.svg"
  4712. }
  4713. },
  4714. },
  4715. [
  4716. {
  4717. name: "Micro",
  4718. height: math.unit(2, "inches")
  4719. },
  4720. {
  4721. name: "Normal",
  4722. height: math.unit(6.3, "feet")
  4723. },
  4724. {
  4725. name: "Macro",
  4726. height: math.unit(850, "feet")
  4727. },
  4728. {
  4729. name: "Megamacro",
  4730. height: math.unit(7500, "feet"),
  4731. default: true
  4732. },
  4733. {
  4734. name: "Gigamacro",
  4735. height: math.unit(570000, "miles")
  4736. }
  4737. ]
  4738. ))
  4739. characterMakers.push(() => makeCharacter(
  4740. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4741. {
  4742. front: {
  4743. height: math.unit(6, "feet"),
  4744. weight: math.unit(210, "lbs"),
  4745. name: "Front",
  4746. image: {
  4747. source: "./media/characters/rain-fallen/front.svg"
  4748. }
  4749. },
  4750. side: {
  4751. height: math.unit(6, "feet"),
  4752. weight: math.unit(210, "lbs"),
  4753. name: "Side",
  4754. image: {
  4755. source: "./media/characters/rain-fallen/side.svg"
  4756. }
  4757. },
  4758. back: {
  4759. height: math.unit(6, "feet"),
  4760. weight: math.unit(210, "lbs"),
  4761. name: "Back",
  4762. image: {
  4763. source: "./media/characters/rain-fallen/back.svg"
  4764. }
  4765. },
  4766. feral: {
  4767. height: math.unit(9, "feet"),
  4768. weight: math.unit(700, "lbs"),
  4769. name: "Feral",
  4770. image: {
  4771. source: "./media/characters/rain-fallen/feral.svg"
  4772. }
  4773. },
  4774. },
  4775. [
  4776. {
  4777. name: "Meddling with Mortals",
  4778. height: math.unit(8 + 8/12, "feet")
  4779. },
  4780. {
  4781. name: "Normal",
  4782. height: math.unit(5, "meter")
  4783. },
  4784. {
  4785. name: "Macro",
  4786. height: math.unit(150, "meter"),
  4787. default: true
  4788. },
  4789. {
  4790. name: "Megamacro",
  4791. height: math.unit(278e6, "meter")
  4792. },
  4793. {
  4794. name: "Gigamacro",
  4795. height: math.unit(2e9, "meter")
  4796. },
  4797. {
  4798. name: "Teramacro",
  4799. height: math.unit(8e12, "meter")
  4800. },
  4801. {
  4802. name: "Devourer",
  4803. height: math.unit(14, "zettameters")
  4804. },
  4805. {
  4806. name: "Scarlet King",
  4807. height: math.unit(18, "yottameters")
  4808. },
  4809. {
  4810. name: "Void",
  4811. height: math.unit(1e88, "yottameters")
  4812. }
  4813. ]
  4814. ))
  4815. characterMakers.push(() => makeCharacter(
  4816. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4817. {
  4818. standing: {
  4819. height: math.unit(6, "feet"),
  4820. weight: math.unit(180, "lbs"),
  4821. name: "Standing",
  4822. image: {
  4823. source: "./media/characters/zaakira/standing.svg",
  4824. extra: 1599/1504,
  4825. bottom: 39/1638
  4826. }
  4827. },
  4828. laying: {
  4829. height: math.unit(3, "feet"),
  4830. weight: math.unit(180, "lbs"),
  4831. name: "Laying",
  4832. image: {
  4833. source: "./media/characters/zaakira/laying.svg"
  4834. }
  4835. },
  4836. },
  4837. [
  4838. {
  4839. name: "Normal",
  4840. height: math.unit(12, "feet")
  4841. },
  4842. {
  4843. name: "Macro",
  4844. height: math.unit(279, "feet"),
  4845. default: true
  4846. }
  4847. ]
  4848. ))
  4849. characterMakers.push(() => makeCharacter(
  4850. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4851. {
  4852. femSfw: {
  4853. height: math.unit(8, "feet"),
  4854. weight: math.unit(350, "lb"),
  4855. name: "Fem",
  4856. image: {
  4857. source: "./media/characters/sigvald/fem-sfw.svg",
  4858. extra: 182 / 164,
  4859. bottom: 8.7 / 190.5
  4860. }
  4861. },
  4862. femNsfw: {
  4863. height: math.unit(8, "feet"),
  4864. weight: math.unit(350, "lb"),
  4865. name: "Fem (NSFW)",
  4866. image: {
  4867. source: "./media/characters/sigvald/fem-nsfw.svg",
  4868. extra: 182 / 164,
  4869. bottom: 8.7 / 190.5
  4870. }
  4871. },
  4872. maleNsfw: {
  4873. height: math.unit(8, "feet"),
  4874. weight: math.unit(350, "lb"),
  4875. name: "Male (NSFW)",
  4876. image: {
  4877. source: "./media/characters/sigvald/male-nsfw.svg",
  4878. extra: 182 / 164,
  4879. bottom: 8.7 / 190.5
  4880. }
  4881. },
  4882. hermNsfw: {
  4883. height: math.unit(8, "feet"),
  4884. weight: math.unit(350, "lb"),
  4885. name: "Herm (NSFW)",
  4886. image: {
  4887. source: "./media/characters/sigvald/herm-nsfw.svg",
  4888. extra: 182 / 164,
  4889. bottom: 8.7 / 190.5
  4890. }
  4891. },
  4892. dick: {
  4893. height: math.unit(2.36, "feet"),
  4894. name: "Dick",
  4895. image: {
  4896. source: "./media/characters/sigvald/dick.svg"
  4897. }
  4898. },
  4899. eye: {
  4900. height: math.unit(0.31, "feet"),
  4901. name: "Eye",
  4902. image: {
  4903. source: "./media/characters/sigvald/eye.svg"
  4904. }
  4905. },
  4906. mouth: {
  4907. height: math.unit(0.92, "feet"),
  4908. name: "Mouth",
  4909. image: {
  4910. source: "./media/characters/sigvald/mouth.svg"
  4911. }
  4912. },
  4913. paws: {
  4914. height: math.unit(2.2, "feet"),
  4915. name: "Paws",
  4916. image: {
  4917. source: "./media/characters/sigvald/paws.svg"
  4918. }
  4919. }
  4920. },
  4921. [
  4922. {
  4923. name: "Normal",
  4924. height: math.unit(8, "feet")
  4925. },
  4926. {
  4927. name: "Large",
  4928. height: math.unit(12, "feet")
  4929. },
  4930. {
  4931. name: "Larger",
  4932. height: math.unit(20, "feet")
  4933. },
  4934. {
  4935. name: "Macro",
  4936. height: math.unit(150, "feet")
  4937. },
  4938. {
  4939. name: "Macro+",
  4940. height: math.unit(200, "feet"),
  4941. default: true
  4942. },
  4943. ]
  4944. ))
  4945. characterMakers.push(() => makeCharacter(
  4946. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4947. {
  4948. side: {
  4949. height: math.unit(12, "feet"),
  4950. weight: math.unit(2000, "kg"),
  4951. name: "Side",
  4952. image: {
  4953. source: "./media/characters/scott/side.svg",
  4954. extra: 754 / 724,
  4955. bottom: 0.069
  4956. }
  4957. },
  4958. upright: {
  4959. height: math.unit(12, "feet"),
  4960. weight: math.unit(2000, "kg"),
  4961. name: "Upright",
  4962. image: {
  4963. source: "./media/characters/scott/upright.svg",
  4964. extra: 3881 / 3722,
  4965. bottom: 0.05
  4966. }
  4967. },
  4968. },
  4969. [
  4970. {
  4971. name: "Normal",
  4972. height: math.unit(12, "feet"),
  4973. default: true
  4974. },
  4975. ]
  4976. ))
  4977. characterMakers.push(() => makeCharacter(
  4978. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4979. {
  4980. side: {
  4981. height: math.unit(8, "meters"),
  4982. weight: math.unit(84755, "lbs"),
  4983. name: "Side",
  4984. image: {
  4985. source: "./media/characters/tobias/side.svg",
  4986. extra: 1474 / 1096,
  4987. bottom: 38.9 / 1513.1235
  4988. }
  4989. },
  4990. },
  4991. [
  4992. {
  4993. name: "Normal",
  4994. height: math.unit(8, "meters"),
  4995. default: true
  4996. },
  4997. ]
  4998. ))
  4999. characterMakers.push(() => makeCharacter(
  5000. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5001. {
  5002. front: {
  5003. height: math.unit(5.5, "feet"),
  5004. weight: math.unit(400, "lbs"),
  5005. name: "Front",
  5006. image: {
  5007. source: "./media/characters/kieran/front.svg",
  5008. extra: 2694 / 2364,
  5009. bottom: 217 / 2908
  5010. }
  5011. },
  5012. side: {
  5013. height: math.unit(5.5, "feet"),
  5014. weight: math.unit(400, "lbs"),
  5015. name: "Side",
  5016. image: {
  5017. source: "./media/characters/kieran/side.svg",
  5018. extra: 875 / 777,
  5019. bottom: 84.6 / 959
  5020. }
  5021. },
  5022. },
  5023. [
  5024. {
  5025. name: "Normal",
  5026. height: math.unit(5.5, "feet"),
  5027. default: true
  5028. },
  5029. ]
  5030. ))
  5031. characterMakers.push(() => makeCharacter(
  5032. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5033. {
  5034. side: {
  5035. height: math.unit(2, "meters"),
  5036. weight: math.unit(70, "kg"),
  5037. name: "Side",
  5038. image: {
  5039. source: "./media/characters/sanya/side.svg",
  5040. bottom: 0.02,
  5041. extra: 1.02
  5042. }
  5043. },
  5044. },
  5045. [
  5046. {
  5047. name: "Small",
  5048. height: math.unit(2, "meters")
  5049. },
  5050. {
  5051. name: "Normal",
  5052. height: math.unit(3, "meters")
  5053. },
  5054. {
  5055. name: "Macro",
  5056. height: math.unit(16, "meters"),
  5057. default: true
  5058. },
  5059. ]
  5060. ))
  5061. characterMakers.push(() => makeCharacter(
  5062. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5063. {
  5064. front: {
  5065. height: math.unit(2, "meters"),
  5066. weight: math.unit(120, "kg"),
  5067. name: "Front",
  5068. image: {
  5069. source: "./media/characters/miranda/front.svg",
  5070. extra: 195 / 185,
  5071. bottom: 10.9 / 206.5
  5072. }
  5073. },
  5074. back: {
  5075. height: math.unit(2, "meters"),
  5076. weight: math.unit(120, "kg"),
  5077. name: "Back",
  5078. image: {
  5079. source: "./media/characters/miranda/back.svg",
  5080. extra: 201 / 193,
  5081. bottom: 2.3 / 203.7
  5082. }
  5083. },
  5084. },
  5085. [
  5086. {
  5087. name: "Normal",
  5088. height: math.unit(10, "feet"),
  5089. default: true
  5090. }
  5091. ]
  5092. ))
  5093. characterMakers.push(() => makeCharacter(
  5094. { name: "James", species: ["deer"], tags: ["anthro"] },
  5095. {
  5096. side: {
  5097. height: math.unit(2, "meters"),
  5098. weight: math.unit(100, "kg"),
  5099. name: "Front",
  5100. image: {
  5101. source: "./media/characters/james/front.svg",
  5102. extra: 10 / 8.5
  5103. }
  5104. },
  5105. },
  5106. [
  5107. {
  5108. name: "Normal",
  5109. height: math.unit(8.5, "feet"),
  5110. default: true
  5111. }
  5112. ]
  5113. ))
  5114. characterMakers.push(() => makeCharacter(
  5115. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5116. {
  5117. side: {
  5118. height: math.unit(9.5, "feet"),
  5119. weight: math.unit(2500, "lbs"),
  5120. name: "Side",
  5121. image: {
  5122. source: "./media/characters/heather/side.svg"
  5123. }
  5124. },
  5125. },
  5126. [
  5127. {
  5128. name: "Normal",
  5129. height: math.unit(9.5, "feet"),
  5130. default: true
  5131. }
  5132. ]
  5133. ))
  5134. characterMakers.push(() => makeCharacter(
  5135. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5136. {
  5137. side: {
  5138. height: math.unit(6.5, "feet"),
  5139. weight: math.unit(400, "lbs"),
  5140. name: "Side",
  5141. image: {
  5142. source: "./media/characters/lukas/side.svg",
  5143. extra: 7.25 / 6.5
  5144. }
  5145. },
  5146. },
  5147. [
  5148. {
  5149. name: "Normal",
  5150. height: math.unit(6.5, "feet"),
  5151. default: true
  5152. }
  5153. ]
  5154. ))
  5155. characterMakers.push(() => makeCharacter(
  5156. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5157. {
  5158. side: {
  5159. height: math.unit(5, "feet"),
  5160. weight: math.unit(3000, "lbs"),
  5161. name: "Side",
  5162. image: {
  5163. source: "./media/characters/louise/side.svg"
  5164. }
  5165. },
  5166. },
  5167. [
  5168. {
  5169. name: "Normal",
  5170. height: math.unit(5, "feet"),
  5171. default: true
  5172. }
  5173. ]
  5174. ))
  5175. characterMakers.push(() => makeCharacter(
  5176. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5177. {
  5178. side: {
  5179. height: math.unit(6, "feet"),
  5180. weight: math.unit(150, "lbs"),
  5181. name: "Side",
  5182. image: {
  5183. source: "./media/characters/ramona/side.svg"
  5184. }
  5185. },
  5186. },
  5187. [
  5188. {
  5189. name: "Normal",
  5190. height: math.unit(5.3, "meters"),
  5191. default: true
  5192. },
  5193. {
  5194. name: "Macro",
  5195. height: math.unit(20, "stories")
  5196. },
  5197. {
  5198. name: "Macro+",
  5199. height: math.unit(50, "stories")
  5200. },
  5201. ]
  5202. ))
  5203. characterMakers.push(() => makeCharacter(
  5204. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5205. {
  5206. standing: {
  5207. height: math.unit(5.75, "feet"),
  5208. weight: math.unit(160, "lbs"),
  5209. name: "Standing",
  5210. image: {
  5211. source: "./media/characters/deerpuff/standing.svg",
  5212. extra: 682 / 624
  5213. }
  5214. },
  5215. sitting: {
  5216. height: math.unit(5.75 / 1.79, "feet"),
  5217. weight: math.unit(160, "lbs"),
  5218. name: "Sitting",
  5219. image: {
  5220. source: "./media/characters/deerpuff/sitting.svg",
  5221. bottom: 44 / 400,
  5222. extra: 1
  5223. }
  5224. },
  5225. taurLaying: {
  5226. height: math.unit(6, "feet"),
  5227. weight: math.unit(400, "lbs"),
  5228. name: "Taur (Laying)",
  5229. image: {
  5230. source: "./media/characters/deerpuff/taur-laying.svg"
  5231. }
  5232. },
  5233. },
  5234. [
  5235. {
  5236. name: "Puffball",
  5237. height: math.unit(6, "inches")
  5238. },
  5239. {
  5240. name: "Normalpuff",
  5241. height: math.unit(5.75, "feet")
  5242. },
  5243. {
  5244. name: "Macropuff",
  5245. height: math.unit(1500, "feet"),
  5246. default: true
  5247. },
  5248. {
  5249. name: "Megapuff",
  5250. height: math.unit(500, "miles")
  5251. },
  5252. {
  5253. name: "Gigapuff",
  5254. height: math.unit(250000, "miles")
  5255. },
  5256. {
  5257. name: "Omegapuff",
  5258. height: math.unit(1000, "lightyears")
  5259. },
  5260. ]
  5261. ))
  5262. characterMakers.push(() => makeCharacter(
  5263. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5264. {
  5265. stomping: {
  5266. height: math.unit(6, "feet"),
  5267. weight: math.unit(170, "lbs"),
  5268. name: "Stomping",
  5269. image: {
  5270. source: "./media/characters/vivian/stomping.svg"
  5271. }
  5272. },
  5273. sitting: {
  5274. height: math.unit(6 / 1.75, "feet"),
  5275. weight: math.unit(170, "lbs"),
  5276. name: "Sitting",
  5277. image: {
  5278. source: "./media/characters/vivian/sitting.svg",
  5279. bottom: 1 / 6.4,
  5280. extra: 1,
  5281. }
  5282. },
  5283. },
  5284. [
  5285. {
  5286. name: "Normal",
  5287. height: math.unit(7, "feet"),
  5288. default: true
  5289. },
  5290. {
  5291. name: "Macro",
  5292. height: math.unit(10, "stories")
  5293. },
  5294. {
  5295. name: "Macro+",
  5296. height: math.unit(30, "stories")
  5297. },
  5298. {
  5299. name: "Megamacro",
  5300. height: math.unit(10, "miles")
  5301. },
  5302. {
  5303. name: "Megamacro+",
  5304. height: math.unit(2750000, "meters")
  5305. },
  5306. ]
  5307. ))
  5308. characterMakers.push(() => makeCharacter(
  5309. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5310. {
  5311. front: {
  5312. height: math.unit(6, "feet"),
  5313. weight: math.unit(160, "lbs"),
  5314. name: "Front",
  5315. image: {
  5316. source: "./media/characters/prince/front.svg",
  5317. extra: 3400 / 3000
  5318. }
  5319. },
  5320. jumping: {
  5321. height: math.unit(6, "feet"),
  5322. weight: math.unit(160, "lbs"),
  5323. name: "Jumping",
  5324. image: {
  5325. source: "./media/characters/prince/jump.svg",
  5326. extra: 2555 / 2134
  5327. }
  5328. },
  5329. },
  5330. [
  5331. {
  5332. name: "Normal",
  5333. height: math.unit(7.75, "feet"),
  5334. default: true
  5335. },
  5336. {
  5337. name: "Not cute",
  5338. height: math.unit(17, "feet")
  5339. },
  5340. {
  5341. name: "I said NOT",
  5342. height: math.unit(91, "feet")
  5343. },
  5344. {
  5345. name: "Please stop",
  5346. height: math.unit(560, "feet")
  5347. },
  5348. {
  5349. name: "What have you done",
  5350. height: math.unit(2200, "feet")
  5351. },
  5352. {
  5353. name: "Deer God",
  5354. height: math.unit(3.6, "miles")
  5355. },
  5356. ]
  5357. ))
  5358. characterMakers.push(() => makeCharacter(
  5359. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5360. {
  5361. standing: {
  5362. height: math.unit(6, "feet"),
  5363. weight: math.unit(300, "lbs"),
  5364. name: "Standing",
  5365. image: {
  5366. source: "./media/characters/psymon/standing.svg",
  5367. extra: 1888 / 1810,
  5368. bottom: 0.05
  5369. }
  5370. },
  5371. slithering: {
  5372. height: math.unit(6, "feet"),
  5373. weight: math.unit(300, "lbs"),
  5374. name: "Slithering",
  5375. image: {
  5376. source: "./media/characters/psymon/slithering.svg",
  5377. extra: 1330 / 1224
  5378. }
  5379. },
  5380. slitheringAlt: {
  5381. height: math.unit(6, "feet"),
  5382. weight: math.unit(300, "lbs"),
  5383. name: "Slithering (Alt)",
  5384. image: {
  5385. source: "./media/characters/psymon/slithering-alt.svg",
  5386. extra: 1330 / 1224
  5387. }
  5388. },
  5389. },
  5390. [
  5391. {
  5392. name: "Normal",
  5393. height: math.unit(11.25, "feet"),
  5394. default: true
  5395. },
  5396. {
  5397. name: "Large",
  5398. height: math.unit(27, "feet")
  5399. },
  5400. {
  5401. name: "Giant",
  5402. height: math.unit(87, "feet")
  5403. },
  5404. {
  5405. name: "Macro",
  5406. height: math.unit(365, "feet")
  5407. },
  5408. {
  5409. name: "Megamacro",
  5410. height: math.unit(3, "miles")
  5411. },
  5412. {
  5413. name: "World Serpent",
  5414. height: math.unit(8000, "miles")
  5415. },
  5416. ]
  5417. ))
  5418. characterMakers.push(() => makeCharacter(
  5419. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5420. {
  5421. front: {
  5422. height: math.unit(6, "feet"),
  5423. weight: math.unit(180, "lbs"),
  5424. name: "Front",
  5425. image: {
  5426. source: "./media/characters/daimos/front.svg",
  5427. extra: 4160 / 3897,
  5428. bottom: 0.021
  5429. }
  5430. }
  5431. },
  5432. [
  5433. {
  5434. name: "Normal",
  5435. height: math.unit(8, "feet"),
  5436. default: true
  5437. },
  5438. {
  5439. name: "Big Dog",
  5440. height: math.unit(22, "feet")
  5441. },
  5442. {
  5443. name: "Macro",
  5444. height: math.unit(127, "feet")
  5445. },
  5446. {
  5447. name: "Megamacro",
  5448. height: math.unit(3600, "feet")
  5449. },
  5450. ]
  5451. ))
  5452. characterMakers.push(() => makeCharacter(
  5453. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5454. {
  5455. side: {
  5456. height: math.unit(6, "feet"),
  5457. weight: math.unit(180, "lbs"),
  5458. name: "Side",
  5459. image: {
  5460. source: "./media/characters/blake/side.svg",
  5461. extra: 1212 / 1120,
  5462. bottom: 0.05
  5463. }
  5464. },
  5465. crouched: {
  5466. height: math.unit(6 * 0.57, "feet"),
  5467. weight: math.unit(180, "lbs"),
  5468. name: "Crouched",
  5469. image: {
  5470. source: "./media/characters/blake/crouched.svg",
  5471. extra: 840 / 587,
  5472. bottom: 0.04
  5473. }
  5474. },
  5475. bent: {
  5476. height: math.unit(6 * 0.75, "feet"),
  5477. weight: math.unit(180, "lbs"),
  5478. name: "Bent",
  5479. image: {
  5480. source: "./media/characters/blake/bent.svg",
  5481. extra: 592 / 544,
  5482. bottom: 0.035
  5483. }
  5484. },
  5485. },
  5486. [
  5487. {
  5488. name: "Normal",
  5489. height: math.unit(8 + 1 / 6, "feet"),
  5490. default: true
  5491. },
  5492. {
  5493. name: "Big Backside",
  5494. height: math.unit(37, "feet")
  5495. },
  5496. {
  5497. name: "Subway Shredder",
  5498. height: math.unit(72, "feet")
  5499. },
  5500. {
  5501. name: "City Carver",
  5502. height: math.unit(1675, "feet")
  5503. },
  5504. {
  5505. name: "Tectonic Tweaker",
  5506. height: math.unit(2300, "miles")
  5507. },
  5508. ]
  5509. ))
  5510. characterMakers.push(() => makeCharacter(
  5511. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5512. {
  5513. front: {
  5514. height: math.unit(6, "feet"),
  5515. weight: math.unit(180, "lbs"),
  5516. name: "Front",
  5517. image: {
  5518. source: "./media/characters/guisetto/front.svg",
  5519. extra: 856 / 817,
  5520. bottom: 0.06
  5521. }
  5522. },
  5523. airborne: {
  5524. height: math.unit(6, "feet"),
  5525. weight: math.unit(180, "lbs"),
  5526. name: "Airborne",
  5527. image: {
  5528. source: "./media/characters/guisetto/airborne.svg",
  5529. extra: 584 / 525
  5530. }
  5531. },
  5532. },
  5533. [
  5534. {
  5535. name: "Normal",
  5536. height: math.unit(10 + 11 / 12, "feet"),
  5537. default: true
  5538. },
  5539. {
  5540. name: "Large",
  5541. height: math.unit(35, "feet")
  5542. },
  5543. {
  5544. name: "Macro",
  5545. height: math.unit(475, "feet")
  5546. },
  5547. ]
  5548. ))
  5549. characterMakers.push(() => makeCharacter(
  5550. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5551. {
  5552. front: {
  5553. height: math.unit(6, "feet"),
  5554. weight: math.unit(180, "lbs"),
  5555. name: "Front",
  5556. image: {
  5557. source: "./media/characters/luxor/front.svg",
  5558. extra: 2940 / 2152
  5559. }
  5560. },
  5561. back: {
  5562. height: math.unit(6, "feet"),
  5563. weight: math.unit(180, "lbs"),
  5564. name: "Back",
  5565. image: {
  5566. source: "./media/characters/luxor/back.svg",
  5567. extra: 1083 / 960
  5568. }
  5569. },
  5570. },
  5571. [
  5572. {
  5573. name: "Normal",
  5574. height: math.unit(5 + 5 / 6, "feet"),
  5575. default: true
  5576. },
  5577. {
  5578. name: "Lamp",
  5579. height: math.unit(50, "feet")
  5580. },
  5581. {
  5582. name: "Lämp",
  5583. height: math.unit(300, "feet")
  5584. },
  5585. {
  5586. name: "The sun is a lamp",
  5587. height: math.unit(250000, "miles")
  5588. },
  5589. ]
  5590. ))
  5591. characterMakers.push(() => makeCharacter(
  5592. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5593. {
  5594. front: {
  5595. height: math.unit(6, "feet"),
  5596. weight: math.unit(50, "lbs"),
  5597. name: "Front",
  5598. image: {
  5599. source: "./media/characters/huoyan/front.svg"
  5600. }
  5601. },
  5602. side: {
  5603. height: math.unit(6, "feet"),
  5604. weight: math.unit(180, "lbs"),
  5605. name: "Side",
  5606. image: {
  5607. source: "./media/characters/huoyan/side.svg"
  5608. }
  5609. },
  5610. },
  5611. [
  5612. {
  5613. name: "Chef",
  5614. height: math.unit(9, "feet")
  5615. },
  5616. {
  5617. name: "Normal",
  5618. height: math.unit(65, "feet"),
  5619. default: true
  5620. },
  5621. {
  5622. name: "Macro",
  5623. height: math.unit(780, "feet")
  5624. },
  5625. {
  5626. name: "Flaming Mountain",
  5627. height: math.unit(4.8, "miles")
  5628. },
  5629. {
  5630. name: "Celestial",
  5631. height: math.unit(765000, "miles")
  5632. },
  5633. ]
  5634. ))
  5635. characterMakers.push(() => makeCharacter(
  5636. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5637. {
  5638. front: {
  5639. height: math.unit(5 + 3 / 4, "feet"),
  5640. weight: math.unit(120, "lbs"),
  5641. name: "Front",
  5642. image: {
  5643. source: "./media/characters/tails/front.svg"
  5644. }
  5645. }
  5646. },
  5647. [
  5648. {
  5649. name: "Normal",
  5650. height: math.unit(5 + 3 / 4, "feet"),
  5651. default: true
  5652. }
  5653. ]
  5654. ))
  5655. characterMakers.push(() => makeCharacter(
  5656. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5657. {
  5658. front: {
  5659. height: math.unit(4, "feet"),
  5660. weight: math.unit(50, "lbs"),
  5661. name: "Front",
  5662. image: {
  5663. source: "./media/characters/rainy/front.svg"
  5664. }
  5665. }
  5666. },
  5667. [
  5668. {
  5669. name: "Macro",
  5670. height: math.unit(800, "feet"),
  5671. default: true
  5672. }
  5673. ]
  5674. ))
  5675. characterMakers.push(() => makeCharacter(
  5676. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5677. {
  5678. front: {
  5679. height: math.unit(6, "feet"),
  5680. weight: math.unit(150, "lbs"),
  5681. name: "Front",
  5682. image: {
  5683. source: "./media/characters/rainier/front.svg"
  5684. }
  5685. }
  5686. },
  5687. [
  5688. {
  5689. name: "Micro",
  5690. height: math.unit(2, "mm"),
  5691. default: true
  5692. }
  5693. ]
  5694. ))
  5695. characterMakers.push(() => makeCharacter(
  5696. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5697. {
  5698. front: {
  5699. height: math.unit(8 + 4/12, "feet"),
  5700. name: "Front",
  5701. image: {
  5702. source: "./media/characters/andy-renard/front.svg",
  5703. extra: 1839/1726,
  5704. bottom: 134/1973
  5705. }
  5706. },
  5707. back: {
  5708. height: math.unit(8 + 4/12, "feet"),
  5709. name: "Back",
  5710. image: {
  5711. source: "./media/characters/andy-renard/back.svg",
  5712. extra: 1838/1710,
  5713. bottom: 105/1943
  5714. }
  5715. },
  5716. },
  5717. [
  5718. {
  5719. name: "Tall",
  5720. height: math.unit(8 + 4/12, "feet")
  5721. },
  5722. {
  5723. name: "Mini Macro",
  5724. height: math.unit(15, "feet"),
  5725. default: true
  5726. },
  5727. {
  5728. name: "Macro",
  5729. height: math.unit(100, "feet")
  5730. },
  5731. {
  5732. name: "Mega Macro",
  5733. height: math.unit(1000, "feet")
  5734. },
  5735. {
  5736. name: "Giga Macro",
  5737. height: math.unit(10, "miles")
  5738. },
  5739. {
  5740. name: "God Macro",
  5741. height: math.unit(1, "multiverse")
  5742. },
  5743. ]
  5744. ))
  5745. characterMakers.push(() => makeCharacter(
  5746. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5747. {
  5748. front: {
  5749. height: math.unit(6, "feet"),
  5750. weight: math.unit(210, "lbs"),
  5751. name: "Front",
  5752. image: {
  5753. source: "./media/characters/cimmaron/front-sfw.svg",
  5754. extra: 701 / 676,
  5755. bottom: 0.046
  5756. }
  5757. },
  5758. back: {
  5759. height: math.unit(6, "feet"),
  5760. weight: math.unit(210, "lbs"),
  5761. name: "Back",
  5762. image: {
  5763. source: "./media/characters/cimmaron/back-sfw.svg",
  5764. extra: 701 / 676,
  5765. bottom: 0.046
  5766. }
  5767. },
  5768. frontNsfw: {
  5769. height: math.unit(6, "feet"),
  5770. weight: math.unit(210, "lbs"),
  5771. name: "Front (NSFW)",
  5772. image: {
  5773. source: "./media/characters/cimmaron/front-nsfw.svg",
  5774. extra: 701 / 676,
  5775. bottom: 0.046
  5776. }
  5777. },
  5778. backNsfw: {
  5779. height: math.unit(6, "feet"),
  5780. weight: math.unit(210, "lbs"),
  5781. name: "Back (NSFW)",
  5782. image: {
  5783. source: "./media/characters/cimmaron/back-nsfw.svg",
  5784. extra: 701 / 676,
  5785. bottom: 0.046
  5786. }
  5787. },
  5788. dick: {
  5789. height: math.unit(1.714, "feet"),
  5790. name: "Dick",
  5791. image: {
  5792. source: "./media/characters/cimmaron/dick.svg"
  5793. }
  5794. },
  5795. },
  5796. [
  5797. {
  5798. name: "Normal",
  5799. height: math.unit(6, "feet"),
  5800. default: true
  5801. },
  5802. {
  5803. name: "Macro Mayor",
  5804. height: math.unit(350, "meters")
  5805. },
  5806. ]
  5807. ))
  5808. characterMakers.push(() => makeCharacter(
  5809. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5810. {
  5811. front: {
  5812. height: math.unit(6, "feet"),
  5813. weight: math.unit(200, "lbs"),
  5814. name: "Front",
  5815. image: {
  5816. source: "./media/characters/akari/front.svg",
  5817. extra: 962 / 901,
  5818. bottom: 0.04
  5819. }
  5820. }
  5821. },
  5822. [
  5823. {
  5824. name: "Micro",
  5825. height: math.unit(5, "inches"),
  5826. default: true
  5827. },
  5828. {
  5829. name: "Normal",
  5830. height: math.unit(7, "feet")
  5831. },
  5832. ]
  5833. ))
  5834. characterMakers.push(() => makeCharacter(
  5835. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5836. {
  5837. front: {
  5838. height: math.unit(6, "feet"),
  5839. weight: math.unit(140, "lbs"),
  5840. name: "Front",
  5841. image: {
  5842. source: "./media/characters/cynosura/front.svg",
  5843. extra: 896 / 847
  5844. }
  5845. },
  5846. back: {
  5847. height: math.unit(6, "feet"),
  5848. weight: math.unit(140, "lbs"),
  5849. name: "Back",
  5850. image: {
  5851. source: "./media/characters/cynosura/back.svg",
  5852. extra: 1365 / 1250
  5853. }
  5854. },
  5855. },
  5856. [
  5857. {
  5858. name: "Micro",
  5859. height: math.unit(4, "inches")
  5860. },
  5861. {
  5862. name: "Normal",
  5863. height: math.unit(5.75, "feet"),
  5864. default: true
  5865. },
  5866. {
  5867. name: "Tall",
  5868. height: math.unit(10, "feet")
  5869. },
  5870. {
  5871. name: "Big",
  5872. height: math.unit(20, "feet")
  5873. },
  5874. {
  5875. name: "Macro",
  5876. height: math.unit(50, "feet")
  5877. },
  5878. ]
  5879. ))
  5880. characterMakers.push(() => makeCharacter(
  5881. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5882. {
  5883. front: {
  5884. height: math.unit(13 + 2/12, "feet"),
  5885. weight: math.unit(800, "kg"),
  5886. name: "Front",
  5887. image: {
  5888. source: "./media/characters/gin/front.svg",
  5889. extra: 1312/1191,
  5890. bottom: 45/1357
  5891. }
  5892. },
  5893. mouth: {
  5894. height: math.unit(2.39 * 1.8, "feet"),
  5895. name: "Mouth",
  5896. image: {
  5897. source: "./media/characters/gin/mouth.svg"
  5898. }
  5899. },
  5900. hand: {
  5901. height: math.unit(1.57 * 2.19, "feet"),
  5902. name: "Hand",
  5903. image: {
  5904. source: "./media/characters/gin/hand.svg"
  5905. }
  5906. },
  5907. foot: {
  5908. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5909. name: "Foot",
  5910. image: {
  5911. source: "./media/characters/gin/foot.svg"
  5912. }
  5913. },
  5914. sole: {
  5915. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5916. name: "Sole",
  5917. image: {
  5918. source: "./media/characters/gin/sole.svg"
  5919. }
  5920. },
  5921. },
  5922. [
  5923. {
  5924. name: "Very Small",
  5925. height: math.unit(13 + 2 / 12, "feet")
  5926. },
  5927. {
  5928. name: "Micro",
  5929. height: math.unit(600, "miles")
  5930. },
  5931. {
  5932. name: "Regular",
  5933. height: math.unit(20, "earths"),
  5934. default: true
  5935. },
  5936. {
  5937. name: "Macro",
  5938. height: math.unit(2.2, "solarradii")
  5939. },
  5940. {
  5941. name: "Teramacro",
  5942. height: math.unit(1.2, "galaxies")
  5943. },
  5944. {
  5945. name: "Omegamacro",
  5946. height: math.unit(200, "universes")
  5947. },
  5948. ]
  5949. ))
  5950. characterMakers.push(() => makeCharacter(
  5951. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5952. {
  5953. front: {
  5954. height: math.unit(6 + 1 / 6, "feet"),
  5955. weight: math.unit(178, "lbs"),
  5956. name: "Front",
  5957. image: {
  5958. source: "./media/characters/guy/front.svg"
  5959. }
  5960. }
  5961. },
  5962. [
  5963. {
  5964. name: "Normal",
  5965. height: math.unit(6 + 1 / 6, "feet"),
  5966. default: true
  5967. },
  5968. {
  5969. name: "Large",
  5970. height: math.unit(25 + 7 / 12, "feet")
  5971. },
  5972. {
  5973. name: "Macro",
  5974. height: math.unit(60 + 9 / 12, "feet")
  5975. },
  5976. {
  5977. name: "Macro+",
  5978. height: math.unit(246, "feet")
  5979. },
  5980. {
  5981. name: "Macro++",
  5982. height: math.unit(878, "feet")
  5983. }
  5984. ]
  5985. ))
  5986. characterMakers.push(() => makeCharacter(
  5987. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5988. {
  5989. front: {
  5990. height: math.unit(9, "feet"),
  5991. weight: math.unit(800, "lbs"),
  5992. name: "Front",
  5993. image: {
  5994. source: "./media/characters/tiberius/front.svg",
  5995. extra: 2295 / 2071
  5996. }
  5997. },
  5998. back: {
  5999. height: math.unit(9, "feet"),
  6000. weight: math.unit(800, "lbs"),
  6001. name: "Back",
  6002. image: {
  6003. source: "./media/characters/tiberius/back.svg",
  6004. extra: 2373 / 2160
  6005. }
  6006. },
  6007. },
  6008. [
  6009. {
  6010. name: "Normal",
  6011. height: math.unit(9, "feet"),
  6012. default: true
  6013. }
  6014. ]
  6015. ))
  6016. characterMakers.push(() => makeCharacter(
  6017. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6018. {
  6019. front: {
  6020. height: math.unit(6, "feet"),
  6021. weight: math.unit(600, "lbs"),
  6022. name: "Front",
  6023. image: {
  6024. source: "./media/characters/surgo/front.svg",
  6025. extra: 3591 / 2227
  6026. }
  6027. },
  6028. back: {
  6029. height: math.unit(6, "feet"),
  6030. weight: math.unit(600, "lbs"),
  6031. name: "Back",
  6032. image: {
  6033. source: "./media/characters/surgo/back.svg",
  6034. extra: 3557 / 2228
  6035. }
  6036. },
  6037. laying: {
  6038. height: math.unit(6 * 0.85, "feet"),
  6039. weight: math.unit(600, "lbs"),
  6040. name: "Laying",
  6041. image: {
  6042. source: "./media/characters/surgo/laying.svg"
  6043. }
  6044. },
  6045. },
  6046. [
  6047. {
  6048. name: "Normal",
  6049. height: math.unit(6, "feet"),
  6050. default: true
  6051. }
  6052. ]
  6053. ))
  6054. characterMakers.push(() => makeCharacter(
  6055. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6056. {
  6057. side: {
  6058. height: math.unit(6, "feet"),
  6059. weight: math.unit(150, "lbs"),
  6060. name: "Side",
  6061. image: {
  6062. source: "./media/characters/cibus/side.svg",
  6063. extra: 800 / 400
  6064. }
  6065. },
  6066. },
  6067. [
  6068. {
  6069. name: "Normal",
  6070. height: math.unit(6, "feet"),
  6071. default: true
  6072. }
  6073. ]
  6074. ))
  6075. characterMakers.push(() => makeCharacter(
  6076. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6077. {
  6078. front: {
  6079. height: math.unit(6, "feet"),
  6080. weight: math.unit(240, "lbs"),
  6081. name: "Front",
  6082. image: {
  6083. source: "./media/characters/nibbles/front.svg"
  6084. }
  6085. },
  6086. side: {
  6087. height: math.unit(6, "feet"),
  6088. weight: math.unit(240, "lbs"),
  6089. name: "Side",
  6090. image: {
  6091. source: "./media/characters/nibbles/side.svg"
  6092. }
  6093. },
  6094. },
  6095. [
  6096. {
  6097. name: "Normal",
  6098. height: math.unit(9, "feet"),
  6099. default: true
  6100. }
  6101. ]
  6102. ))
  6103. characterMakers.push(() => makeCharacter(
  6104. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6105. {
  6106. side: {
  6107. height: math.unit(5 + 1 / 6, "feet"),
  6108. weight: math.unit(130, "lbs"),
  6109. name: "Side",
  6110. image: {
  6111. source: "./media/characters/rikky/side.svg",
  6112. extra: 851 / 801
  6113. }
  6114. },
  6115. },
  6116. [
  6117. {
  6118. name: "Normal",
  6119. height: math.unit(5 + 1 / 6, "feet")
  6120. },
  6121. {
  6122. name: "Macro",
  6123. height: math.unit(152, "feet"),
  6124. default: true
  6125. },
  6126. {
  6127. name: "Megamacro",
  6128. height: math.unit(7, "miles")
  6129. }
  6130. ]
  6131. ))
  6132. characterMakers.push(() => makeCharacter(
  6133. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6134. {
  6135. side: {
  6136. height: math.unit(370, "cm"),
  6137. weight: math.unit(350, "lbs"),
  6138. name: "Side",
  6139. image: {
  6140. source: "./media/characters/malfressa/side.svg"
  6141. }
  6142. },
  6143. walking: {
  6144. height: math.unit(370, "cm"),
  6145. weight: math.unit(350, "lbs"),
  6146. name: "Walking",
  6147. image: {
  6148. source: "./media/characters/malfressa/walking.svg"
  6149. }
  6150. },
  6151. feral: {
  6152. height: math.unit(2500, "cm"),
  6153. weight: math.unit(100000, "lbs"),
  6154. name: "Feral",
  6155. image: {
  6156. source: "./media/characters/malfressa/feral.svg",
  6157. extra: 2108 / 837,
  6158. bottom: 0.02
  6159. }
  6160. },
  6161. },
  6162. [
  6163. {
  6164. name: "Normal",
  6165. height: math.unit(370, "cm")
  6166. },
  6167. {
  6168. name: "Macro",
  6169. height: math.unit(300, "meters"),
  6170. default: true
  6171. }
  6172. ]
  6173. ))
  6174. characterMakers.push(() => makeCharacter(
  6175. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6176. {
  6177. front: {
  6178. height: math.unit(6, "feet"),
  6179. weight: math.unit(60, "kg"),
  6180. name: "Front",
  6181. image: {
  6182. source: "./media/characters/jaro/front.svg"
  6183. }
  6184. },
  6185. back: {
  6186. height: math.unit(6, "feet"),
  6187. weight: math.unit(60, "kg"),
  6188. name: "Back",
  6189. image: {
  6190. source: "./media/characters/jaro/back.svg"
  6191. }
  6192. },
  6193. },
  6194. [
  6195. {
  6196. name: "Micro",
  6197. height: math.unit(7, "inches")
  6198. },
  6199. {
  6200. name: "Normal",
  6201. height: math.unit(5.5, "feet"),
  6202. default: true
  6203. },
  6204. {
  6205. name: "Minimacro",
  6206. height: math.unit(20, "feet")
  6207. },
  6208. {
  6209. name: "Macro",
  6210. height: math.unit(200, "meters")
  6211. }
  6212. ]
  6213. ))
  6214. characterMakers.push(() => makeCharacter(
  6215. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6216. {
  6217. front: {
  6218. height: math.unit(6, "feet"),
  6219. weight: math.unit(195, "lb"),
  6220. name: "Front",
  6221. image: {
  6222. source: "./media/characters/rogue/front.svg"
  6223. }
  6224. },
  6225. },
  6226. [
  6227. {
  6228. name: "Macro",
  6229. height: math.unit(90, "feet"),
  6230. default: true
  6231. },
  6232. ]
  6233. ))
  6234. characterMakers.push(() => makeCharacter(
  6235. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6236. {
  6237. front: {
  6238. height: math.unit(5 + 8 / 12, "feet"),
  6239. weight: math.unit(140, "lb"),
  6240. name: "Front",
  6241. image: {
  6242. source: "./media/characters/piper/front.svg",
  6243. extra: 3948/3655,
  6244. bottom: 0/3948
  6245. }
  6246. },
  6247. },
  6248. [
  6249. {
  6250. name: "Micro",
  6251. height: math.unit(2, "inches")
  6252. },
  6253. {
  6254. name: "Normal",
  6255. height: math.unit(5 + 8 / 12, "feet")
  6256. },
  6257. {
  6258. name: "Macro",
  6259. height: math.unit(250, "feet"),
  6260. default: true
  6261. },
  6262. {
  6263. name: "Megamacro",
  6264. height: math.unit(7, "miles")
  6265. },
  6266. ]
  6267. ))
  6268. characterMakers.push(() => makeCharacter(
  6269. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6270. {
  6271. front: {
  6272. height: math.unit(6, "feet"),
  6273. weight: math.unit(220, "lb"),
  6274. name: "Front",
  6275. image: {
  6276. source: "./media/characters/gemini/front.svg"
  6277. }
  6278. },
  6279. back: {
  6280. height: math.unit(6, "feet"),
  6281. weight: math.unit(220, "lb"),
  6282. name: "Back",
  6283. image: {
  6284. source: "./media/characters/gemini/back.svg"
  6285. }
  6286. },
  6287. kneeling: {
  6288. height: math.unit(6 / 1.5, "feet"),
  6289. weight: math.unit(220, "lb"),
  6290. name: "Kneeling",
  6291. image: {
  6292. source: "./media/characters/gemini/kneeling.svg",
  6293. bottom: 0.02
  6294. }
  6295. },
  6296. },
  6297. [
  6298. {
  6299. name: "Macro",
  6300. height: math.unit(300, "meters"),
  6301. default: true
  6302. },
  6303. {
  6304. name: "Megamacro",
  6305. height: math.unit(6900, "meters")
  6306. },
  6307. ]
  6308. ))
  6309. characterMakers.push(() => makeCharacter(
  6310. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6311. {
  6312. anthro: {
  6313. height: math.unit(2.35, "meters"),
  6314. weight: math.unit(73, "kg"),
  6315. name: "Anthro",
  6316. image: {
  6317. source: "./media/characters/alicia/anthro.svg",
  6318. extra: 2571 / 2385,
  6319. bottom: 75 / 2648
  6320. }
  6321. },
  6322. paw: {
  6323. height: math.unit(1.32, "feet"),
  6324. name: "Paw",
  6325. image: {
  6326. source: "./media/characters/alicia/paw.svg"
  6327. }
  6328. },
  6329. feral: {
  6330. height: math.unit(1.69, "meters"),
  6331. weight: math.unit(73, "kg"),
  6332. name: "Feral",
  6333. image: {
  6334. source: "./media/characters/alicia/feral.svg",
  6335. extra: 2123 / 1715,
  6336. bottom: 222 / 2349
  6337. }
  6338. },
  6339. },
  6340. [
  6341. {
  6342. name: "Normal",
  6343. height: math.unit(2.35, "meters")
  6344. },
  6345. {
  6346. name: "Macro",
  6347. height: math.unit(60, "meters"),
  6348. default: true
  6349. },
  6350. {
  6351. name: "Megamacro",
  6352. height: math.unit(10000, "kilometers")
  6353. },
  6354. ]
  6355. ))
  6356. characterMakers.push(() => makeCharacter(
  6357. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6358. {
  6359. front: {
  6360. height: math.unit(7, "feet"),
  6361. weight: math.unit(250, "lbs"),
  6362. name: "Front",
  6363. image: {
  6364. source: "./media/characters/archy/front.svg"
  6365. }
  6366. }
  6367. },
  6368. [
  6369. {
  6370. name: "Micro",
  6371. height: math.unit(1, "inch")
  6372. },
  6373. {
  6374. name: "Shorty",
  6375. height: math.unit(5, "feet")
  6376. },
  6377. {
  6378. name: "Normal",
  6379. height: math.unit(7, "feet")
  6380. },
  6381. {
  6382. name: "Macro",
  6383. height: math.unit(600, "meters"),
  6384. default: true
  6385. },
  6386. {
  6387. name: "Megamacro",
  6388. height: math.unit(1, "mile")
  6389. },
  6390. ]
  6391. ))
  6392. characterMakers.push(() => makeCharacter(
  6393. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6394. {
  6395. front: {
  6396. height: math.unit(1.65, "meters"),
  6397. weight: math.unit(74, "kg"),
  6398. name: "Front",
  6399. image: {
  6400. source: "./media/characters/berri/front.svg",
  6401. extra: 857 / 837,
  6402. bottom: 18 / 877
  6403. }
  6404. },
  6405. bum: {
  6406. height: math.unit(1.46, "feet"),
  6407. name: "Bum",
  6408. image: {
  6409. source: "./media/characters/berri/bum.svg"
  6410. }
  6411. },
  6412. mouth: {
  6413. height: math.unit(0.44, "feet"),
  6414. name: "Mouth",
  6415. image: {
  6416. source: "./media/characters/berri/mouth.svg"
  6417. }
  6418. },
  6419. paw: {
  6420. height: math.unit(0.826, "feet"),
  6421. name: "Paw",
  6422. image: {
  6423. source: "./media/characters/berri/paw.svg"
  6424. }
  6425. },
  6426. },
  6427. [
  6428. {
  6429. name: "Normal",
  6430. height: math.unit(1.65, "meters")
  6431. },
  6432. {
  6433. name: "Macro",
  6434. height: math.unit(60, "m"),
  6435. default: true
  6436. },
  6437. {
  6438. name: "Megamacro",
  6439. height: math.unit(9.213, "km")
  6440. },
  6441. {
  6442. name: "Planet Eater",
  6443. height: math.unit(489, "megameters")
  6444. },
  6445. {
  6446. name: "Teramacro",
  6447. height: math.unit(2471635000000, "meters")
  6448. },
  6449. {
  6450. name: "Examacro",
  6451. height: math.unit(8.0624e+26, "meters")
  6452. }
  6453. ]
  6454. ))
  6455. characterMakers.push(() => makeCharacter(
  6456. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6457. {
  6458. front: {
  6459. height: math.unit(1.72, "meters"),
  6460. weight: math.unit(68, "kg"),
  6461. name: "Front",
  6462. image: {
  6463. source: "./media/characters/lexi/front.svg"
  6464. }
  6465. }
  6466. },
  6467. [
  6468. {
  6469. name: "Very Smol",
  6470. height: math.unit(10, "mm")
  6471. },
  6472. {
  6473. name: "Micro",
  6474. height: math.unit(6.8, "cm"),
  6475. default: true
  6476. },
  6477. {
  6478. name: "Normal",
  6479. height: math.unit(1.72, "m")
  6480. }
  6481. ]
  6482. ))
  6483. characterMakers.push(() => makeCharacter(
  6484. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6485. {
  6486. front: {
  6487. height: math.unit(1.69, "meters"),
  6488. weight: math.unit(68, "kg"),
  6489. name: "Front",
  6490. image: {
  6491. source: "./media/characters/martin/front.svg",
  6492. extra: 596 / 581
  6493. }
  6494. }
  6495. },
  6496. [
  6497. {
  6498. name: "Micro",
  6499. height: math.unit(6.85, "cm"),
  6500. default: true
  6501. },
  6502. {
  6503. name: "Normal",
  6504. height: math.unit(1.69, "m")
  6505. }
  6506. ]
  6507. ))
  6508. characterMakers.push(() => makeCharacter(
  6509. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6510. {
  6511. front: {
  6512. height: math.unit(1.69, "meters"),
  6513. weight: math.unit(68, "kg"),
  6514. name: "Front",
  6515. image: {
  6516. source: "./media/characters/juno/front.svg"
  6517. }
  6518. }
  6519. },
  6520. [
  6521. {
  6522. name: "Micro",
  6523. height: math.unit(7, "cm")
  6524. },
  6525. {
  6526. name: "Normal",
  6527. height: math.unit(1.89, "m")
  6528. },
  6529. {
  6530. name: "Macro",
  6531. height: math.unit(353, "meters"),
  6532. default: true
  6533. }
  6534. ]
  6535. ))
  6536. characterMakers.push(() => makeCharacter(
  6537. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6538. {
  6539. front: {
  6540. height: math.unit(1.93, "meters"),
  6541. weight: math.unit(83, "kg"),
  6542. name: "Front",
  6543. image: {
  6544. source: "./media/characters/samantha/front.svg"
  6545. }
  6546. },
  6547. frontClothed: {
  6548. height: math.unit(1.93, "meters"),
  6549. weight: math.unit(83, "kg"),
  6550. name: "Front (Clothed)",
  6551. image: {
  6552. source: "./media/characters/samantha/front-clothed.svg"
  6553. }
  6554. },
  6555. back: {
  6556. height: math.unit(1.93, "meters"),
  6557. weight: math.unit(83, "kg"),
  6558. name: "Back",
  6559. image: {
  6560. source: "./media/characters/samantha/back.svg"
  6561. }
  6562. },
  6563. },
  6564. [
  6565. {
  6566. name: "Normal",
  6567. height: math.unit(1.93, "m")
  6568. },
  6569. {
  6570. name: "Macro",
  6571. height: math.unit(74, "meters"),
  6572. default: true
  6573. },
  6574. {
  6575. name: "Macro+",
  6576. height: math.unit(223, "meters"),
  6577. },
  6578. {
  6579. name: "Megamacro",
  6580. height: math.unit(8381, "meters"),
  6581. },
  6582. {
  6583. name: "Megamacro+",
  6584. height: math.unit(12000, "kilometers")
  6585. },
  6586. ]
  6587. ))
  6588. characterMakers.push(() => makeCharacter(
  6589. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6590. {
  6591. front: {
  6592. height: math.unit(1.92, "meters"),
  6593. weight: math.unit(80, "kg"),
  6594. name: "Front",
  6595. image: {
  6596. source: "./media/characters/dr-clay/front.svg"
  6597. }
  6598. },
  6599. frontClothed: {
  6600. height: math.unit(1.92, "meters"),
  6601. weight: math.unit(80, "kg"),
  6602. name: "Front (Clothed)",
  6603. image: {
  6604. source: "./media/characters/dr-clay/front-clothed.svg"
  6605. }
  6606. }
  6607. },
  6608. [
  6609. {
  6610. name: "Normal",
  6611. height: math.unit(1.92, "m")
  6612. },
  6613. {
  6614. name: "Macro",
  6615. height: math.unit(214, "meters"),
  6616. default: true
  6617. },
  6618. {
  6619. name: "Macro+",
  6620. height: math.unit(12.237, "meters"),
  6621. },
  6622. {
  6623. name: "Megamacro",
  6624. height: math.unit(557, "megameters"),
  6625. },
  6626. {
  6627. name: "Unimaginable",
  6628. height: math.unit(120e9, "lightyears")
  6629. },
  6630. ]
  6631. ))
  6632. characterMakers.push(() => makeCharacter(
  6633. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6634. {
  6635. front: {
  6636. height: math.unit(2, "meters"),
  6637. weight: math.unit(80, "kg"),
  6638. name: "Front",
  6639. image: {
  6640. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6641. }
  6642. }
  6643. },
  6644. [
  6645. {
  6646. name: "Teramacro",
  6647. height: math.unit(500000, "lightyears"),
  6648. default: true
  6649. },
  6650. ]
  6651. ))
  6652. characterMakers.push(() => makeCharacter(
  6653. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6654. {
  6655. crux: {
  6656. height: math.unit(2, "meters"),
  6657. weight: math.unit(150, "kg"),
  6658. name: "Crux",
  6659. image: {
  6660. source: "./media/characters/vemus/crux.svg",
  6661. extra: 1074/936,
  6662. bottom: 23/1097
  6663. }
  6664. },
  6665. skunkTanuki: {
  6666. height: math.unit(2, "meters"),
  6667. weight: math.unit(150, "kg"),
  6668. name: "Skunk-Tanuki",
  6669. image: {
  6670. source: "./media/characters/vemus/skunk-tanuki.svg",
  6671. extra: 926/893,
  6672. bottom: 20/946
  6673. }
  6674. },
  6675. },
  6676. [
  6677. {
  6678. name: "Normal",
  6679. height: math.unit(3.75, "meters"),
  6680. default: true
  6681. },
  6682. {
  6683. name: "Big",
  6684. height: math.unit(8, "meters")
  6685. },
  6686. {
  6687. name: "Macro",
  6688. height: math.unit(100, "meters")
  6689. },
  6690. {
  6691. name: "Macro+",
  6692. height: math.unit(1500, "meters")
  6693. },
  6694. {
  6695. name: "Stellar",
  6696. height: math.unit(14e8, "meters")
  6697. },
  6698. ]
  6699. ))
  6700. characterMakers.push(() => makeCharacter(
  6701. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6702. {
  6703. front: {
  6704. height: math.unit(2, "meters"),
  6705. weight: math.unit(70, "kg"),
  6706. name: "Front",
  6707. image: {
  6708. source: "./media/characters/beherit/front.svg",
  6709. extra: 1408 / 1242
  6710. }
  6711. }
  6712. },
  6713. [
  6714. {
  6715. name: "Normal",
  6716. height: math.unit(6, "feet")
  6717. },
  6718. {
  6719. name: "Lorg",
  6720. height: math.unit(25, "feet"),
  6721. default: true
  6722. },
  6723. {
  6724. name: "Lorger",
  6725. height: math.unit(75, "feet")
  6726. },
  6727. {
  6728. name: "Macro",
  6729. height: math.unit(200, "meters")
  6730. },
  6731. ]
  6732. ))
  6733. characterMakers.push(() => makeCharacter(
  6734. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6735. {
  6736. front: {
  6737. height: math.unit(2, "meters"),
  6738. weight: math.unit(150, "kg"),
  6739. name: "Front",
  6740. image: {
  6741. source: "./media/characters/everett/front.svg",
  6742. extra: 2038 / 1737,
  6743. bottom: 0.03
  6744. }
  6745. },
  6746. paw: {
  6747. height: math.unit(2 / 3.6, "meters"),
  6748. name: "Paw",
  6749. image: {
  6750. source: "./media/characters/everett/paw.svg"
  6751. }
  6752. },
  6753. },
  6754. [
  6755. {
  6756. name: "Normal",
  6757. height: math.unit(15, "feet"),
  6758. default: true
  6759. },
  6760. {
  6761. name: "Lorg",
  6762. height: math.unit(70, "feet"),
  6763. default: true
  6764. },
  6765. {
  6766. name: "Lorger",
  6767. height: math.unit(250, "feet")
  6768. },
  6769. {
  6770. name: "Macro",
  6771. height: math.unit(500, "meters")
  6772. },
  6773. ]
  6774. ))
  6775. characterMakers.push(() => makeCharacter(
  6776. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6777. {
  6778. front: {
  6779. height: math.unit(2, "meters"),
  6780. weight: math.unit(86, "kg"),
  6781. name: "Front",
  6782. image: {
  6783. source: "./media/characters/rose/front.svg",
  6784. extra: 1785/1636,
  6785. bottom: 30/1815
  6786. }
  6787. },
  6788. frontSporty: {
  6789. height: math.unit(2, "meters"),
  6790. weight: math.unit(86, "kg"),
  6791. name: "Front (Sporty)",
  6792. image: {
  6793. source: "./media/characters/rose/front-sporty.svg",
  6794. extra: 350/335,
  6795. bottom: 10/360
  6796. }
  6797. },
  6798. frontAlt: {
  6799. height: math.unit(1.6, "meters"),
  6800. weight: math.unit(86, "kg"),
  6801. name: "Front (Alt)",
  6802. image: {
  6803. source: "./media/characters/rose/front-alt.svg",
  6804. extra: 299/283,
  6805. bottom: 3/302
  6806. }
  6807. },
  6808. plush: {
  6809. height: math.unit(2, "meters"),
  6810. weight: math.unit(86/3, "kg"),
  6811. name: "Plush",
  6812. image: {
  6813. source: "./media/characters/rose/plush.svg",
  6814. extra: 361/337,
  6815. bottom: 11/372
  6816. }
  6817. },
  6818. },
  6819. [
  6820. {
  6821. name: "True Micro",
  6822. height: math.unit(9, "cm")
  6823. },
  6824. {
  6825. name: "Micro",
  6826. height: math.unit(16, "cm")
  6827. },
  6828. {
  6829. name: "Normal",
  6830. height: math.unit(1.85, "meters"),
  6831. default: true
  6832. },
  6833. {
  6834. name: "Mini-Macro",
  6835. height: math.unit(5, "meters")
  6836. },
  6837. {
  6838. name: "Macro",
  6839. height: math.unit(15, "meters")
  6840. },
  6841. {
  6842. name: "True Macro",
  6843. height: math.unit(40, "meters")
  6844. },
  6845. {
  6846. name: "City Scale",
  6847. height: math.unit(1, "km")
  6848. },
  6849. ]
  6850. ))
  6851. characterMakers.push(() => makeCharacter(
  6852. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6853. {
  6854. front: {
  6855. height: math.unit(2, "meters"),
  6856. weight: math.unit(350, "lbs"),
  6857. name: "Front",
  6858. image: {
  6859. source: "./media/characters/regal/front.svg"
  6860. }
  6861. },
  6862. back: {
  6863. height: math.unit(2, "meters"),
  6864. weight: math.unit(350, "lbs"),
  6865. name: "Back",
  6866. image: {
  6867. source: "./media/characters/regal/back.svg"
  6868. }
  6869. },
  6870. },
  6871. [
  6872. {
  6873. name: "Macro",
  6874. height: math.unit(350, "feet"),
  6875. default: true
  6876. }
  6877. ]
  6878. ))
  6879. characterMakers.push(() => makeCharacter(
  6880. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6881. {
  6882. front: {
  6883. height: math.unit(4 + 11 / 12, "feet"),
  6884. weight: math.unit(100, "lbs"),
  6885. name: "Front",
  6886. image: {
  6887. source: "./media/characters/opal/front.svg"
  6888. }
  6889. },
  6890. frontAlt: {
  6891. height: math.unit(4 + 11 / 12, "feet"),
  6892. weight: math.unit(100, "lbs"),
  6893. name: "Front (Alt)",
  6894. image: {
  6895. source: "./media/characters/opal/front-alt.svg"
  6896. }
  6897. },
  6898. },
  6899. [
  6900. {
  6901. name: "Small",
  6902. height: math.unit(4 + 11 / 12, "feet")
  6903. },
  6904. {
  6905. name: "Normal",
  6906. height: math.unit(20, "feet"),
  6907. default: true
  6908. },
  6909. {
  6910. name: "Macro",
  6911. height: math.unit(120, "feet")
  6912. },
  6913. {
  6914. name: "Megamacro",
  6915. height: math.unit(80, "miles")
  6916. },
  6917. {
  6918. name: "True Size",
  6919. height: math.unit(100000, "lightyears")
  6920. },
  6921. ]
  6922. ))
  6923. characterMakers.push(() => makeCharacter(
  6924. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6925. {
  6926. front: {
  6927. height: math.unit(6, "feet"),
  6928. weight: math.unit(200, "lbs"),
  6929. name: "Front",
  6930. image: {
  6931. source: "./media/characters/vector-wuff/front.svg"
  6932. }
  6933. }
  6934. },
  6935. [
  6936. {
  6937. name: "Normal",
  6938. height: math.unit(2.8, "meters")
  6939. },
  6940. {
  6941. name: "Macro",
  6942. height: math.unit(450, "meters"),
  6943. default: true
  6944. },
  6945. {
  6946. name: "Megamacro",
  6947. height: math.unit(15, "kilometers")
  6948. }
  6949. ]
  6950. ))
  6951. characterMakers.push(() => makeCharacter(
  6952. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6953. {
  6954. front: {
  6955. height: math.unit(6, "feet"),
  6956. weight: math.unit(256, "lbs"),
  6957. name: "Front",
  6958. image: {
  6959. source: "./media/characters/dannik/front.svg"
  6960. }
  6961. }
  6962. },
  6963. [
  6964. {
  6965. name: "Macro",
  6966. height: math.unit(69.57, "meters"),
  6967. default: true
  6968. },
  6969. ]
  6970. ))
  6971. characterMakers.push(() => makeCharacter(
  6972. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6973. {
  6974. front: {
  6975. height: math.unit(6, "feet"),
  6976. weight: math.unit(120, "lbs"),
  6977. name: "Front",
  6978. image: {
  6979. source: "./media/characters/azura-saharah/front.svg"
  6980. }
  6981. },
  6982. back: {
  6983. height: math.unit(6, "feet"),
  6984. weight: math.unit(120, "lbs"),
  6985. name: "Back",
  6986. image: {
  6987. source: "./media/characters/azura-saharah/back.svg"
  6988. }
  6989. },
  6990. },
  6991. [
  6992. {
  6993. name: "Macro",
  6994. height: math.unit(100, "feet"),
  6995. default: true
  6996. },
  6997. ]
  6998. ))
  6999. characterMakers.push(() => makeCharacter(
  7000. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7001. {
  7002. side: {
  7003. height: math.unit(5 + 4 / 12, "feet"),
  7004. weight: math.unit(163, "lbs"),
  7005. name: "Side",
  7006. image: {
  7007. source: "./media/characters/kennedy/side.svg"
  7008. }
  7009. }
  7010. },
  7011. [
  7012. {
  7013. name: "Standard Doggo",
  7014. height: math.unit(5 + 4 / 12, "feet")
  7015. },
  7016. {
  7017. name: "Big Doggo",
  7018. height: math.unit(25 + 3 / 12, "feet"),
  7019. default: true
  7020. },
  7021. ]
  7022. ))
  7023. characterMakers.push(() => makeCharacter(
  7024. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7025. {
  7026. front: {
  7027. height: math.unit(6, "feet"),
  7028. weight: math.unit(90, "lbs"),
  7029. name: "Front",
  7030. image: {
  7031. source: "./media/characters/odi-lunar/front.svg"
  7032. }
  7033. }
  7034. },
  7035. [
  7036. {
  7037. name: "Micro",
  7038. height: math.unit(3, "inches"),
  7039. default: true
  7040. },
  7041. {
  7042. name: "Normal",
  7043. height: math.unit(5.5, "feet")
  7044. }
  7045. ]
  7046. ))
  7047. characterMakers.push(() => makeCharacter(
  7048. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7049. {
  7050. back: {
  7051. height: math.unit(6, "feet"),
  7052. weight: math.unit(220, "lbs"),
  7053. name: "Back",
  7054. image: {
  7055. source: "./media/characters/mandake/back.svg"
  7056. }
  7057. }
  7058. },
  7059. [
  7060. {
  7061. name: "Normal",
  7062. height: math.unit(7, "feet"),
  7063. default: true
  7064. },
  7065. {
  7066. name: "Macro",
  7067. height: math.unit(78, "feet")
  7068. },
  7069. {
  7070. name: "Macro+",
  7071. height: math.unit(300, "meters")
  7072. },
  7073. {
  7074. name: "Macro++",
  7075. height: math.unit(2400, "feet")
  7076. },
  7077. {
  7078. name: "Megamacro",
  7079. height: math.unit(5167, "meters")
  7080. },
  7081. {
  7082. name: "Gigamacro",
  7083. height: math.unit(41769, "miles")
  7084. },
  7085. ]
  7086. ))
  7087. characterMakers.push(() => makeCharacter(
  7088. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7089. {
  7090. front: {
  7091. height: math.unit(6, "feet"),
  7092. weight: math.unit(120, "lbs"),
  7093. name: "Front",
  7094. image: {
  7095. source: "./media/characters/yozey/front.svg"
  7096. }
  7097. },
  7098. frontAlt: {
  7099. height: math.unit(6, "feet"),
  7100. weight: math.unit(120, "lbs"),
  7101. name: "Front (Alt)",
  7102. image: {
  7103. source: "./media/characters/yozey/front-alt.svg"
  7104. }
  7105. },
  7106. side: {
  7107. height: math.unit(6, "feet"),
  7108. weight: math.unit(120, "lbs"),
  7109. name: "Side",
  7110. image: {
  7111. source: "./media/characters/yozey/side.svg"
  7112. }
  7113. },
  7114. },
  7115. [
  7116. {
  7117. name: "Micro",
  7118. height: math.unit(3, "inches"),
  7119. default: true
  7120. },
  7121. {
  7122. name: "Normal",
  7123. height: math.unit(6, "feet")
  7124. }
  7125. ]
  7126. ))
  7127. characterMakers.push(() => makeCharacter(
  7128. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7129. {
  7130. front: {
  7131. height: math.unit(6, "feet"),
  7132. weight: math.unit(103, "lbs"),
  7133. name: "Front",
  7134. image: {
  7135. source: "./media/characters/valeska-voss/front.svg"
  7136. }
  7137. }
  7138. },
  7139. [
  7140. {
  7141. name: "Mini-Sized Sub",
  7142. height: math.unit(3.1, "inches")
  7143. },
  7144. {
  7145. name: "Mid-Sized Sub",
  7146. height: math.unit(6.2, "inches")
  7147. },
  7148. {
  7149. name: "Full-Sized Sub",
  7150. height: math.unit(9.3, "inches")
  7151. },
  7152. {
  7153. name: "Normal",
  7154. height: math.unit(5 + 2 / 12, "foot"),
  7155. default: true
  7156. },
  7157. ]
  7158. ))
  7159. characterMakers.push(() => makeCharacter(
  7160. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7161. {
  7162. front: {
  7163. height: math.unit(6, "feet"),
  7164. weight: math.unit(160, "lbs"),
  7165. name: "Front",
  7166. image: {
  7167. source: "./media/characters/gene-zeta/front.svg",
  7168. extra: 3006 / 2826,
  7169. bottom: 182 / 3188
  7170. }
  7171. }
  7172. },
  7173. [
  7174. {
  7175. name: "Micro",
  7176. height: math.unit(6, "inches")
  7177. },
  7178. {
  7179. name: "Normal",
  7180. height: math.unit(5 + 11 / 12, "foot"),
  7181. default: true
  7182. },
  7183. {
  7184. name: "Macro",
  7185. height: math.unit(140, "feet")
  7186. },
  7187. {
  7188. name: "Supercharged",
  7189. height: math.unit(2500, "feet")
  7190. },
  7191. ]
  7192. ))
  7193. characterMakers.push(() => makeCharacter(
  7194. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7195. {
  7196. front: {
  7197. height: math.unit(6, "feet"),
  7198. weight: math.unit(350, "lbs"),
  7199. name: "Front",
  7200. image: {
  7201. source: "./media/characters/razinox/front.svg",
  7202. extra: 1686 / 1548,
  7203. bottom: 28.2 / 1868
  7204. }
  7205. },
  7206. back: {
  7207. height: math.unit(6, "feet"),
  7208. weight: math.unit(350, "lbs"),
  7209. name: "Back",
  7210. image: {
  7211. source: "./media/characters/razinox/back.svg",
  7212. extra: 1660 / 1590,
  7213. bottom: 15 / 1665
  7214. }
  7215. },
  7216. },
  7217. [
  7218. {
  7219. name: "Normal",
  7220. height: math.unit(10 + 8 / 12, "foot")
  7221. },
  7222. {
  7223. name: "Minimacro",
  7224. height: math.unit(15, "foot")
  7225. },
  7226. {
  7227. name: "Macro",
  7228. height: math.unit(60, "foot"),
  7229. default: true
  7230. },
  7231. {
  7232. name: "Megamacro",
  7233. height: math.unit(5, "miles")
  7234. },
  7235. {
  7236. name: "Gigamacro",
  7237. height: math.unit(6000, "miles")
  7238. },
  7239. ]
  7240. ))
  7241. characterMakers.push(() => makeCharacter(
  7242. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7243. {
  7244. front: {
  7245. height: math.unit(6, "feet"),
  7246. weight: math.unit(150, "lbs"),
  7247. name: "Front",
  7248. image: {
  7249. source: "./media/characters/cobalt/front.svg"
  7250. }
  7251. }
  7252. },
  7253. [
  7254. {
  7255. name: "Normal",
  7256. height: math.unit(8 + 1 / 12, "foot")
  7257. },
  7258. {
  7259. name: "Macro",
  7260. height: math.unit(111, "foot"),
  7261. default: true
  7262. },
  7263. {
  7264. name: "Supracosmic",
  7265. height: math.unit(1e42, "feet")
  7266. },
  7267. ]
  7268. ))
  7269. characterMakers.push(() => makeCharacter(
  7270. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7271. {
  7272. front: {
  7273. height: math.unit(6, "feet"),
  7274. weight: math.unit(140, "lbs"),
  7275. name: "Front",
  7276. image: {
  7277. source: "./media/characters/amanda/front.svg"
  7278. }
  7279. }
  7280. },
  7281. [
  7282. {
  7283. name: "Micro",
  7284. height: math.unit(5, "inches"),
  7285. default: true
  7286. },
  7287. ]
  7288. ))
  7289. characterMakers.push(() => makeCharacter(
  7290. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7291. {
  7292. front: {
  7293. height: math.unit(2.75, "meters"),
  7294. weight: math.unit(1200, "lb"),
  7295. name: "Front",
  7296. image: {
  7297. source: "./media/characters/teal/front.svg",
  7298. extra: 2463 / 2320,
  7299. bottom: 166 / 2629
  7300. }
  7301. },
  7302. back: {
  7303. height: math.unit(2.75, "meters"),
  7304. weight: math.unit(1200, "lb"),
  7305. name: "Back",
  7306. image: {
  7307. source: "./media/characters/teal/back.svg",
  7308. extra: 2580 / 2489,
  7309. bottom: 151 / 2731
  7310. }
  7311. },
  7312. sitting: {
  7313. height: math.unit(1.9, "meters"),
  7314. weight: math.unit(1200, "lb"),
  7315. name: "Sitting",
  7316. image: {
  7317. source: "./media/characters/teal/sitting.svg",
  7318. extra: 623 / 590,
  7319. bottom: 121 / 744
  7320. }
  7321. },
  7322. standing: {
  7323. height: math.unit(2.75, "meters"),
  7324. weight: math.unit(1200, "lb"),
  7325. name: "Standing",
  7326. image: {
  7327. source: "./media/characters/teal/standing.svg",
  7328. extra: 923 / 893,
  7329. bottom: 60 / 983
  7330. }
  7331. },
  7332. stretching: {
  7333. height: math.unit(3.65, "meters"),
  7334. weight: math.unit(1200, "lb"),
  7335. name: "Stretching",
  7336. image: {
  7337. source: "./media/characters/teal/stretching.svg",
  7338. extra: 1276 / 1244,
  7339. bottom: 0 / 1276
  7340. }
  7341. },
  7342. legged: {
  7343. height: math.unit(1.3, "meters"),
  7344. weight: math.unit(100, "lb"),
  7345. name: "Legged",
  7346. image: {
  7347. source: "./media/characters/teal/legged.svg",
  7348. extra: 462 / 437,
  7349. bottom: 24 / 486
  7350. }
  7351. },
  7352. naga: {
  7353. height: math.unit(5.4, "meters"),
  7354. weight: math.unit(4000, "lb"),
  7355. name: "Naga",
  7356. image: {
  7357. source: "./media/characters/teal/naga.svg",
  7358. extra: 1902 / 1858,
  7359. bottom: 0 / 1902
  7360. }
  7361. },
  7362. hand: {
  7363. height: math.unit(0.52, "meters"),
  7364. name: "Hand",
  7365. image: {
  7366. source: "./media/characters/teal/hand.svg"
  7367. }
  7368. },
  7369. maw: {
  7370. height: math.unit(0.43, "meters"),
  7371. name: "Maw",
  7372. image: {
  7373. source: "./media/characters/teal/maw.svg"
  7374. }
  7375. },
  7376. slit: {
  7377. height: math.unit(0.25, "meters"),
  7378. name: "Slit",
  7379. image: {
  7380. source: "./media/characters/teal/slit.svg"
  7381. }
  7382. },
  7383. },
  7384. [
  7385. {
  7386. name: "Normal",
  7387. height: math.unit(2.75, "meters"),
  7388. default: true
  7389. },
  7390. {
  7391. name: "Macro",
  7392. height: math.unit(300, "feet")
  7393. },
  7394. {
  7395. name: "Macro+",
  7396. height: math.unit(2000, "feet")
  7397. },
  7398. ]
  7399. ))
  7400. characterMakers.push(() => makeCharacter(
  7401. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7402. {
  7403. frontCat: {
  7404. height: math.unit(6, "feet"),
  7405. weight: math.unit(180, "lbs"),
  7406. name: "Front (Cat)",
  7407. image: {
  7408. source: "./media/characters/ravin-amulet/front-cat.svg"
  7409. }
  7410. },
  7411. frontCatAlt: {
  7412. height: math.unit(6, "feet"),
  7413. weight: math.unit(180, "lbs"),
  7414. name: "Front (Alt, Cat)",
  7415. image: {
  7416. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7417. }
  7418. },
  7419. frontWerewolf: {
  7420. height: math.unit(6 * 1.2, "feet"),
  7421. weight: math.unit(225, "lbs"),
  7422. name: "Front (Werewolf)",
  7423. image: {
  7424. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7425. }
  7426. },
  7427. backWerewolf: {
  7428. height: math.unit(6 * 1.2, "feet"),
  7429. weight: math.unit(225, "lbs"),
  7430. name: "Back (Werewolf)",
  7431. image: {
  7432. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7433. }
  7434. },
  7435. },
  7436. [
  7437. {
  7438. name: "Nano",
  7439. height: math.unit(1, "micrometer")
  7440. },
  7441. {
  7442. name: "Micro",
  7443. height: math.unit(1, "inch")
  7444. },
  7445. {
  7446. name: "Normal",
  7447. height: math.unit(6, "feet"),
  7448. default: true
  7449. },
  7450. {
  7451. name: "Macro",
  7452. height: math.unit(60, "feet")
  7453. }
  7454. ]
  7455. ))
  7456. characterMakers.push(() => makeCharacter(
  7457. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7458. {
  7459. front: {
  7460. height: math.unit(6, "feet"),
  7461. weight: math.unit(165, "lbs"),
  7462. name: "Front",
  7463. image: {
  7464. source: "./media/characters/fluoresce/front.svg"
  7465. }
  7466. }
  7467. },
  7468. [
  7469. {
  7470. name: "Micro",
  7471. height: math.unit(6, "cm")
  7472. },
  7473. {
  7474. name: "Normal",
  7475. height: math.unit(5 + 7 / 12, "feet"),
  7476. default: true
  7477. },
  7478. {
  7479. name: "Macro",
  7480. height: math.unit(56, "feet")
  7481. },
  7482. {
  7483. name: "Megamacro",
  7484. height: math.unit(1.9, "miles")
  7485. },
  7486. ]
  7487. ))
  7488. characterMakers.push(() => makeCharacter(
  7489. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7490. {
  7491. front: {
  7492. height: math.unit(9 + 6 / 12, "feet"),
  7493. weight: math.unit(523, "lbs"),
  7494. name: "Side",
  7495. image: {
  7496. source: "./media/characters/aurora/side.svg"
  7497. }
  7498. }
  7499. },
  7500. [
  7501. {
  7502. name: "Normal",
  7503. height: math.unit(9 + 6 / 12, "feet")
  7504. },
  7505. {
  7506. name: "Macro",
  7507. height: math.unit(96, "feet"),
  7508. default: true
  7509. },
  7510. {
  7511. name: "Macro+",
  7512. height: math.unit(243, "feet")
  7513. },
  7514. ]
  7515. ))
  7516. characterMakers.push(() => makeCharacter(
  7517. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7518. {
  7519. front: {
  7520. height: math.unit(194, "cm"),
  7521. weight: math.unit(90, "kg"),
  7522. name: "Front",
  7523. image: {
  7524. source: "./media/characters/ranek/front.svg"
  7525. }
  7526. },
  7527. side: {
  7528. height: math.unit(194, "cm"),
  7529. weight: math.unit(90, "kg"),
  7530. name: "Side",
  7531. image: {
  7532. source: "./media/characters/ranek/side.svg"
  7533. }
  7534. },
  7535. back: {
  7536. height: math.unit(194, "cm"),
  7537. weight: math.unit(90, "kg"),
  7538. name: "Back",
  7539. image: {
  7540. source: "./media/characters/ranek/back.svg"
  7541. }
  7542. },
  7543. feral: {
  7544. height: math.unit(30, "cm"),
  7545. weight: math.unit(1.6, "lbs"),
  7546. name: "Feral",
  7547. image: {
  7548. source: "./media/characters/ranek/feral.svg"
  7549. }
  7550. },
  7551. },
  7552. [
  7553. {
  7554. name: "Normal",
  7555. height: math.unit(194, "cm"),
  7556. default: true
  7557. },
  7558. {
  7559. name: "Macro",
  7560. height: math.unit(100, "meters")
  7561. },
  7562. ]
  7563. ))
  7564. characterMakers.push(() => makeCharacter(
  7565. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7566. {
  7567. front: {
  7568. height: math.unit(5 + 6 / 12, "feet"),
  7569. weight: math.unit(153, "lbs"),
  7570. name: "Front",
  7571. image: {
  7572. source: "./media/characters/andrew-cooper/front.svg"
  7573. }
  7574. },
  7575. },
  7576. [
  7577. {
  7578. name: "Nano",
  7579. height: math.unit(1, "mm")
  7580. },
  7581. {
  7582. name: "Micro",
  7583. height: math.unit(2, "inches")
  7584. },
  7585. {
  7586. name: "Normal",
  7587. height: math.unit(5 + 6 / 12, "feet"),
  7588. default: true
  7589. }
  7590. ]
  7591. ))
  7592. characterMakers.push(() => makeCharacter(
  7593. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7594. {
  7595. front: {
  7596. height: math.unit(6, "feet"),
  7597. weight: math.unit(180, "lbs"),
  7598. name: "Front",
  7599. image: {
  7600. source: "./media/characters/akane-sato/front.svg",
  7601. extra: 1219 / 1140
  7602. }
  7603. },
  7604. back: {
  7605. height: math.unit(6, "feet"),
  7606. weight: math.unit(180, "lbs"),
  7607. name: "Back",
  7608. image: {
  7609. source: "./media/characters/akane-sato/back.svg",
  7610. extra: 1219 / 1170
  7611. }
  7612. },
  7613. },
  7614. [
  7615. {
  7616. name: "Normal",
  7617. height: math.unit(2.5, "meters")
  7618. },
  7619. {
  7620. name: "Macro",
  7621. height: math.unit(250, "meters"),
  7622. default: true
  7623. },
  7624. {
  7625. name: "Megamacro",
  7626. height: math.unit(25, "km")
  7627. },
  7628. ]
  7629. ))
  7630. characterMakers.push(() => makeCharacter(
  7631. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7632. {
  7633. front: {
  7634. height: math.unit(6, "feet"),
  7635. weight: math.unit(65, "kg"),
  7636. name: "Front",
  7637. image: {
  7638. source: "./media/characters/rook/front.svg",
  7639. extra: 960 / 950
  7640. }
  7641. }
  7642. },
  7643. [
  7644. {
  7645. name: "Normal",
  7646. height: math.unit(8.8, "feet")
  7647. },
  7648. {
  7649. name: "Macro",
  7650. height: math.unit(88, "feet"),
  7651. default: true
  7652. },
  7653. {
  7654. name: "Megamacro",
  7655. height: math.unit(8, "miles")
  7656. },
  7657. ]
  7658. ))
  7659. characterMakers.push(() => makeCharacter(
  7660. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7661. {
  7662. front: {
  7663. height: math.unit(12 + 2 / 12, "feet"),
  7664. weight: math.unit(808, "lbs"),
  7665. name: "Front",
  7666. image: {
  7667. source: "./media/characters/prodigy/front.svg"
  7668. }
  7669. }
  7670. },
  7671. [
  7672. {
  7673. name: "Normal",
  7674. height: math.unit(12 + 2 / 12, "feet"),
  7675. default: true
  7676. },
  7677. {
  7678. name: "Macro",
  7679. height: math.unit(143, "feet")
  7680. },
  7681. {
  7682. name: "Macro+",
  7683. height: math.unit(400, "feet")
  7684. },
  7685. ]
  7686. ))
  7687. characterMakers.push(() => makeCharacter(
  7688. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7689. {
  7690. front: {
  7691. height: math.unit(6, "feet"),
  7692. weight: math.unit(225, "lbs"),
  7693. name: "Front",
  7694. image: {
  7695. source: "./media/characters/daniel/front.svg"
  7696. }
  7697. },
  7698. leaning: {
  7699. height: math.unit(6, "feet"),
  7700. weight: math.unit(225, "lbs"),
  7701. name: "Leaning",
  7702. image: {
  7703. source: "./media/characters/daniel/leaning.svg"
  7704. }
  7705. },
  7706. },
  7707. [
  7708. {
  7709. name: "Macro",
  7710. height: math.unit(1000, "feet"),
  7711. default: true
  7712. },
  7713. ]
  7714. ))
  7715. characterMakers.push(() => makeCharacter(
  7716. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7717. {
  7718. front: {
  7719. height: math.unit(6, "feet"),
  7720. weight: math.unit(88, "lbs"),
  7721. name: "Front",
  7722. image: {
  7723. source: "./media/characters/chiros/front.svg",
  7724. extra: 306 / 226
  7725. }
  7726. },
  7727. side: {
  7728. height: math.unit(6, "feet"),
  7729. weight: math.unit(88, "lbs"),
  7730. name: "Side",
  7731. image: {
  7732. source: "./media/characters/chiros/side.svg",
  7733. extra: 306 / 226
  7734. }
  7735. },
  7736. },
  7737. [
  7738. {
  7739. name: "Normal",
  7740. height: math.unit(6, "cm"),
  7741. default: true
  7742. },
  7743. ]
  7744. ))
  7745. characterMakers.push(() => makeCharacter(
  7746. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7747. {
  7748. front: {
  7749. height: math.unit(6, "feet"),
  7750. weight: math.unit(100, "lbs"),
  7751. name: "Front",
  7752. image: {
  7753. source: "./media/characters/selka/front.svg",
  7754. extra: 947 / 887
  7755. }
  7756. }
  7757. },
  7758. [
  7759. {
  7760. name: "Normal",
  7761. height: math.unit(5, "cm"),
  7762. default: true
  7763. },
  7764. ]
  7765. ))
  7766. characterMakers.push(() => makeCharacter(
  7767. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7768. {
  7769. front: {
  7770. height: math.unit(8 + 3 / 12, "feet"),
  7771. weight: math.unit(424, "lbs"),
  7772. name: "Front",
  7773. image: {
  7774. source: "./media/characters/verin/front.svg",
  7775. extra: 1845 / 1550
  7776. }
  7777. },
  7778. frontArmored: {
  7779. height: math.unit(8 + 3 / 12, "feet"),
  7780. weight: math.unit(424, "lbs"),
  7781. name: "Front (Armored)",
  7782. image: {
  7783. source: "./media/characters/verin/front-armor.svg",
  7784. extra: 1845 / 1550,
  7785. bottom: 0.01
  7786. }
  7787. },
  7788. back: {
  7789. height: math.unit(8 + 3 / 12, "feet"),
  7790. weight: math.unit(424, "lbs"),
  7791. name: "Back",
  7792. image: {
  7793. source: "./media/characters/verin/back.svg",
  7794. bottom: 0.1,
  7795. extra: 1
  7796. }
  7797. },
  7798. foot: {
  7799. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7800. name: "Foot",
  7801. image: {
  7802. source: "./media/characters/verin/foot.svg"
  7803. }
  7804. },
  7805. },
  7806. [
  7807. {
  7808. name: "Normal",
  7809. height: math.unit(8 + 3 / 12, "feet")
  7810. },
  7811. {
  7812. name: "Minimacro",
  7813. height: math.unit(21, "feet"),
  7814. default: true
  7815. },
  7816. {
  7817. name: "Macro",
  7818. height: math.unit(626, "feet")
  7819. },
  7820. ]
  7821. ))
  7822. characterMakers.push(() => makeCharacter(
  7823. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7824. {
  7825. front: {
  7826. height: math.unit(2.718, "meters"),
  7827. weight: math.unit(150, "lbs"),
  7828. name: "Front",
  7829. image: {
  7830. source: "./media/characters/sovrim-terraquian/front.svg"
  7831. }
  7832. },
  7833. back: {
  7834. height: math.unit(2.718, "meters"),
  7835. weight: math.unit(150, "lbs"),
  7836. name: "Back",
  7837. image: {
  7838. source: "./media/characters/sovrim-terraquian/back.svg"
  7839. }
  7840. }
  7841. },
  7842. [
  7843. {
  7844. name: "Micro",
  7845. height: math.unit(2, "inches")
  7846. },
  7847. {
  7848. name: "Small",
  7849. height: math.unit(1, "meter")
  7850. },
  7851. {
  7852. name: "Normal",
  7853. height: math.unit(Math.E, "meters"),
  7854. default: true
  7855. },
  7856. {
  7857. name: "Macro",
  7858. height: math.unit(20, "meters")
  7859. },
  7860. {
  7861. name: "Macro+",
  7862. height: math.unit(400, "meters")
  7863. },
  7864. ]
  7865. ))
  7866. characterMakers.push(() => makeCharacter(
  7867. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7868. {
  7869. front: {
  7870. height: math.unit(7, "feet"),
  7871. weight: math.unit(489, "lbs"),
  7872. name: "Front",
  7873. image: {
  7874. source: "./media/characters/reece-silvermane/front.svg",
  7875. bottom: 0.02,
  7876. extra: 1
  7877. }
  7878. },
  7879. },
  7880. [
  7881. {
  7882. name: "Macro",
  7883. height: math.unit(1.5, "miles"),
  7884. default: true
  7885. },
  7886. ]
  7887. ))
  7888. characterMakers.push(() => makeCharacter(
  7889. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7890. {
  7891. front: {
  7892. height: math.unit(6, "feet"),
  7893. weight: math.unit(78, "kg"),
  7894. name: "Front",
  7895. image: {
  7896. source: "./media/characters/kane/front.svg",
  7897. extra: 978 / 899
  7898. }
  7899. },
  7900. },
  7901. [
  7902. {
  7903. name: "Normal",
  7904. height: math.unit(2.1, "m"),
  7905. },
  7906. {
  7907. name: "Macro",
  7908. height: math.unit(1, "km"),
  7909. default: true
  7910. },
  7911. ]
  7912. ))
  7913. characterMakers.push(() => makeCharacter(
  7914. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7915. {
  7916. front: {
  7917. height: math.unit(6, "feet"),
  7918. weight: math.unit(200, "kg"),
  7919. name: "Front",
  7920. image: {
  7921. source: "./media/characters/tegon/front.svg",
  7922. bottom: 0.01,
  7923. extra: 1
  7924. }
  7925. },
  7926. },
  7927. [
  7928. {
  7929. name: "Micro",
  7930. height: math.unit(1, "inch")
  7931. },
  7932. {
  7933. name: "Normal",
  7934. height: math.unit(6 + 3 / 12, "feet"),
  7935. default: true
  7936. },
  7937. {
  7938. name: "Macro",
  7939. height: math.unit(300, "feet")
  7940. },
  7941. {
  7942. name: "Megamacro",
  7943. height: math.unit(69, "miles")
  7944. },
  7945. ]
  7946. ))
  7947. characterMakers.push(() => makeCharacter(
  7948. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7949. {
  7950. side: {
  7951. height: math.unit(6, "feet"),
  7952. weight: math.unit(2304, "lbs"),
  7953. name: "Side",
  7954. image: {
  7955. source: "./media/characters/arcturax/side.svg",
  7956. extra: 790 / 376,
  7957. bottom: 0.01
  7958. }
  7959. },
  7960. },
  7961. [
  7962. {
  7963. name: "Micro",
  7964. height: math.unit(2, "inch")
  7965. },
  7966. {
  7967. name: "Normal",
  7968. height: math.unit(6, "feet")
  7969. },
  7970. {
  7971. name: "Macro",
  7972. height: math.unit(39, "feet"),
  7973. default: true
  7974. },
  7975. {
  7976. name: "Megamacro",
  7977. height: math.unit(7, "miles")
  7978. },
  7979. ]
  7980. ))
  7981. characterMakers.push(() => makeCharacter(
  7982. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7983. {
  7984. front: {
  7985. height: math.unit(6, "feet"),
  7986. weight: math.unit(50, "lbs"),
  7987. name: "Front",
  7988. image: {
  7989. source: "./media/characters/sentri/front.svg",
  7990. extra: 1750 / 1570,
  7991. bottom: 0.025
  7992. }
  7993. },
  7994. frontAlt: {
  7995. height: math.unit(6, "feet"),
  7996. weight: math.unit(50, "lbs"),
  7997. name: "Front (Alt)",
  7998. image: {
  7999. source: "./media/characters/sentri/front-alt.svg",
  8000. extra: 1750 / 1570,
  8001. bottom: 0.025
  8002. }
  8003. },
  8004. },
  8005. [
  8006. {
  8007. name: "Normal",
  8008. height: math.unit(15, "feet"),
  8009. default: true
  8010. },
  8011. {
  8012. name: "Macro",
  8013. height: math.unit(2500, "feet")
  8014. }
  8015. ]
  8016. ))
  8017. characterMakers.push(() => makeCharacter(
  8018. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8019. {
  8020. front: {
  8021. height: math.unit(5 + 8 / 12, "feet"),
  8022. weight: math.unit(130, "lbs"),
  8023. name: "Front",
  8024. image: {
  8025. source: "./media/characters/corvin/front.svg",
  8026. extra: 1803 / 1629
  8027. }
  8028. },
  8029. frontShirt: {
  8030. height: math.unit(5 + 8 / 12, "feet"),
  8031. weight: math.unit(130, "lbs"),
  8032. name: "Front (Shirt)",
  8033. image: {
  8034. source: "./media/characters/corvin/front-shirt.svg",
  8035. extra: 1803 / 1629
  8036. }
  8037. },
  8038. frontPoncho: {
  8039. height: math.unit(5 + 8 / 12, "feet"),
  8040. weight: math.unit(130, "lbs"),
  8041. name: "Front (Poncho)",
  8042. image: {
  8043. source: "./media/characters/corvin/front-poncho.svg",
  8044. extra: 1803 / 1629
  8045. }
  8046. },
  8047. side: {
  8048. height: math.unit(5 + 8 / 12, "feet"),
  8049. weight: math.unit(130, "lbs"),
  8050. name: "Side",
  8051. image: {
  8052. source: "./media/characters/corvin/side.svg",
  8053. extra: 1012 / 945
  8054. }
  8055. },
  8056. back: {
  8057. height: math.unit(5 + 8 / 12, "feet"),
  8058. weight: math.unit(130, "lbs"),
  8059. name: "Back",
  8060. image: {
  8061. source: "./media/characters/corvin/back.svg",
  8062. extra: 1803 / 1629
  8063. }
  8064. },
  8065. },
  8066. [
  8067. {
  8068. name: "Micro",
  8069. height: math.unit(3, "inches")
  8070. },
  8071. {
  8072. name: "Normal",
  8073. height: math.unit(5 + 8 / 12, "feet")
  8074. },
  8075. {
  8076. name: "Macro",
  8077. height: math.unit(300, "feet"),
  8078. default: true
  8079. },
  8080. {
  8081. name: "Megamacro",
  8082. height: math.unit(500, "miles")
  8083. }
  8084. ]
  8085. ))
  8086. characterMakers.push(() => makeCharacter(
  8087. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8088. {
  8089. front: {
  8090. height: math.unit(6, "feet"),
  8091. weight: math.unit(135, "lbs"),
  8092. name: "Front",
  8093. image: {
  8094. source: "./media/characters/q/front.svg",
  8095. extra: 854 / 752,
  8096. bottom: 0.005
  8097. }
  8098. },
  8099. back: {
  8100. height: math.unit(6, "feet"),
  8101. weight: math.unit(130, "lbs"),
  8102. name: "Back",
  8103. image: {
  8104. source: "./media/characters/q/back.svg",
  8105. extra: 854 / 752
  8106. }
  8107. },
  8108. },
  8109. [
  8110. {
  8111. name: "Macro",
  8112. height: math.unit(90, "feet"),
  8113. default: true
  8114. },
  8115. {
  8116. name: "Extra Macro",
  8117. height: math.unit(300, "feet"),
  8118. },
  8119. {
  8120. name: "BIG WALF",
  8121. height: math.unit(750, "feet"),
  8122. },
  8123. ]
  8124. ))
  8125. characterMakers.push(() => makeCharacter(
  8126. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8127. {
  8128. front: {
  8129. height: math.unit(6, "feet"),
  8130. weight: math.unit(150, "lbs"),
  8131. name: "Front",
  8132. image: {
  8133. source: "./media/characters/carley/front.svg",
  8134. extra: 3927 / 3540,
  8135. bottom: 29.2 / 735
  8136. }
  8137. }
  8138. },
  8139. [
  8140. {
  8141. name: "Normal",
  8142. height: math.unit(6 + 3 / 12, "feet")
  8143. },
  8144. {
  8145. name: "Macro",
  8146. height: math.unit(185, "feet"),
  8147. default: true
  8148. },
  8149. {
  8150. name: "Megamacro",
  8151. height: math.unit(8, "miles"),
  8152. },
  8153. ]
  8154. ))
  8155. characterMakers.push(() => makeCharacter(
  8156. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8157. {
  8158. front: {
  8159. height: math.unit(3, "feet"),
  8160. weight: math.unit(28, "lbs"),
  8161. name: "Front",
  8162. image: {
  8163. source: "./media/characters/citrine/front.svg"
  8164. }
  8165. }
  8166. },
  8167. [
  8168. {
  8169. name: "Normal",
  8170. height: math.unit(3, "feet"),
  8171. default: true
  8172. }
  8173. ]
  8174. ))
  8175. characterMakers.push(() => makeCharacter(
  8176. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8177. {
  8178. front: {
  8179. height: math.unit(14, "feet"),
  8180. weight: math.unit(1450, "kg"),
  8181. capacity: math.unit(15, "people"),
  8182. name: "Front",
  8183. image: {
  8184. source: "./media/characters/aura-starwind/front.svg",
  8185. extra: 1440/1327,
  8186. bottom: 11/1451
  8187. }
  8188. },
  8189. side: {
  8190. height: math.unit(14, "feet"),
  8191. weight: math.unit(1450, "kg"),
  8192. capacity: math.unit(15, "people"),
  8193. name: "Side",
  8194. image: {
  8195. source: "./media/characters/aura-starwind/side.svg",
  8196. extra: 1654 / 1497
  8197. }
  8198. },
  8199. taur: {
  8200. height: math.unit(18, "feet"),
  8201. weight: math.unit(5500, "kg"),
  8202. capacity: math.unit(50, "people"),
  8203. name: "Taur",
  8204. image: {
  8205. source: "./media/characters/aura-starwind/taur.svg",
  8206. extra: 1760 / 1650
  8207. }
  8208. },
  8209. feral: {
  8210. height: math.unit(46, "feet"),
  8211. weight: math.unit(25000, "kg"),
  8212. capacity: math.unit(120, "people"),
  8213. name: "Feral",
  8214. image: {
  8215. source: "./media/characters/aura-starwind/feral.svg"
  8216. }
  8217. },
  8218. },
  8219. [
  8220. {
  8221. name: "Normal",
  8222. height: math.unit(14, "feet"),
  8223. default: true
  8224. },
  8225. {
  8226. name: "Macro",
  8227. height: math.unit(50, "meters")
  8228. },
  8229. {
  8230. name: "Megamacro",
  8231. height: math.unit(5000, "meters")
  8232. },
  8233. {
  8234. name: "Gigamacro",
  8235. height: math.unit(100000, "kilometers")
  8236. },
  8237. ]
  8238. ))
  8239. characterMakers.push(() => makeCharacter(
  8240. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8241. {
  8242. front: {
  8243. height: math.unit(2 + 7 / 12, "feet"),
  8244. weight: math.unit(32, "lbs"),
  8245. name: "Front",
  8246. image: {
  8247. source: "./media/characters/rivet/front.svg",
  8248. extra: 1716 / 1658,
  8249. bottom: 0.03
  8250. }
  8251. },
  8252. foot: {
  8253. height: math.unit(0.551, "feet"),
  8254. name: "Rivet's Foot",
  8255. image: {
  8256. source: "./media/characters/rivet/foot.svg"
  8257. },
  8258. rename: true
  8259. }
  8260. },
  8261. [
  8262. {
  8263. name: "Micro",
  8264. height: math.unit(1.5, "inches"),
  8265. },
  8266. {
  8267. name: "Normal",
  8268. height: math.unit(2 + 7 / 12, "feet"),
  8269. default: true
  8270. },
  8271. {
  8272. name: "Macro",
  8273. height: math.unit(85, "feet")
  8274. },
  8275. {
  8276. name: "Megamacro",
  8277. height: math.unit(2.2, "km")
  8278. }
  8279. ]
  8280. ))
  8281. characterMakers.push(() => makeCharacter(
  8282. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8283. {
  8284. front: {
  8285. height: math.unit(5 + 9 / 12, "feet"),
  8286. weight: math.unit(150, "lbs"),
  8287. name: "Front",
  8288. image: {
  8289. source: "./media/characters/coffee/front.svg",
  8290. extra: 3666 / 3032,
  8291. bottom: 0.04
  8292. }
  8293. },
  8294. foot: {
  8295. height: math.unit(1.29, "feet"),
  8296. name: "Foot",
  8297. image: {
  8298. source: "./media/characters/coffee/foot.svg"
  8299. }
  8300. },
  8301. },
  8302. [
  8303. {
  8304. name: "Micro",
  8305. height: math.unit(2, "inches"),
  8306. },
  8307. {
  8308. name: "Normal",
  8309. height: math.unit(5 + 9 / 12, "feet"),
  8310. default: true
  8311. },
  8312. {
  8313. name: "Macro",
  8314. height: math.unit(800, "feet")
  8315. },
  8316. {
  8317. name: "Megamacro",
  8318. height: math.unit(25, "miles")
  8319. }
  8320. ]
  8321. ))
  8322. characterMakers.push(() => makeCharacter(
  8323. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8324. {
  8325. front: {
  8326. height: math.unit(6, "feet"),
  8327. weight: math.unit(200, "lbs"),
  8328. name: "Front",
  8329. image: {
  8330. source: "./media/characters/chari-gal/front.svg",
  8331. extra: 1568 / 1385,
  8332. bottom: 0.047
  8333. }
  8334. },
  8335. gigantamax: {
  8336. height: math.unit(6 * 16, "feet"),
  8337. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8338. name: "Gigantamax",
  8339. image: {
  8340. source: "./media/characters/chari-gal/gigantamax.svg",
  8341. extra: 1124 / 888,
  8342. bottom: 0.03
  8343. }
  8344. },
  8345. },
  8346. [
  8347. {
  8348. name: "Normal",
  8349. height: math.unit(5 + 7 / 12, "feet")
  8350. },
  8351. {
  8352. name: "Macro",
  8353. height: math.unit(200, "feet"),
  8354. default: true
  8355. }
  8356. ]
  8357. ))
  8358. characterMakers.push(() => makeCharacter(
  8359. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8360. {
  8361. front: {
  8362. height: math.unit(6, "feet"),
  8363. weight: math.unit(150, "lbs"),
  8364. name: "Front",
  8365. image: {
  8366. source: "./media/characters/nova/front.svg",
  8367. extra: 5000 / 4722,
  8368. bottom: 0.02
  8369. }
  8370. }
  8371. },
  8372. [
  8373. {
  8374. name: "Micro-",
  8375. height: math.unit(0.8, "inches")
  8376. },
  8377. {
  8378. name: "Micro",
  8379. height: math.unit(2, "inches"),
  8380. default: true
  8381. },
  8382. ]
  8383. ))
  8384. characterMakers.push(() => makeCharacter(
  8385. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8386. {
  8387. front: {
  8388. height: math.unit(3 + 1 / 12, "feet"),
  8389. weight: math.unit(21.7, "lbs"),
  8390. name: "Front",
  8391. image: {
  8392. source: "./media/characters/argent/front.svg",
  8393. extra: 1471 / 1331,
  8394. bottom: 100.8 / 1575.5
  8395. }
  8396. }
  8397. },
  8398. [
  8399. {
  8400. name: "Micro",
  8401. height: math.unit(2, "inches")
  8402. },
  8403. {
  8404. name: "Normal",
  8405. height: math.unit(3 + 1 / 12, "feet"),
  8406. default: true
  8407. },
  8408. {
  8409. name: "Macro",
  8410. height: math.unit(120, "feet")
  8411. },
  8412. ]
  8413. ))
  8414. characterMakers.push(() => makeCharacter(
  8415. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8416. {
  8417. lamp: {
  8418. height: math.unit(7 * 1559 / 989, "feet"),
  8419. name: "Magic Lamp",
  8420. image: {
  8421. source: "./media/characters/mira-al-cul/lamp.svg",
  8422. extra: 1617 / 1559
  8423. }
  8424. },
  8425. front: {
  8426. height: math.unit(7, "feet"),
  8427. name: "Front",
  8428. image: {
  8429. source: "./media/characters/mira-al-cul/front.svg",
  8430. extra: 1044 / 990
  8431. }
  8432. },
  8433. },
  8434. [
  8435. {
  8436. name: "Heavily Restricted",
  8437. height: math.unit(7 * 1559 / 989, "feet")
  8438. },
  8439. {
  8440. name: "Freshly Freed",
  8441. height: math.unit(50 * 1559 / 989, "feet")
  8442. },
  8443. {
  8444. name: "World Encompassing",
  8445. height: math.unit(10000 * 1559 / 989, "miles")
  8446. },
  8447. {
  8448. name: "Galactic",
  8449. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8450. },
  8451. {
  8452. name: "Palmed Universe",
  8453. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8454. default: true
  8455. },
  8456. {
  8457. name: "Multiversal Matriarch",
  8458. height: math.unit(8.87e10, "yottameters")
  8459. },
  8460. {
  8461. name: "Void Mother",
  8462. height: math.unit(3.14e110, "yottaparsecs")
  8463. },
  8464. {
  8465. name: "Toying with Transcendence",
  8466. height: math.unit(1e307, "meters")
  8467. },
  8468. ]
  8469. ))
  8470. characterMakers.push(() => makeCharacter(
  8471. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8472. {
  8473. front: {
  8474. height: math.unit(17 + 1 / 12, "feet"),
  8475. weight: math.unit(476.2 * 5, "lbs"),
  8476. name: "Front",
  8477. image: {
  8478. source: "./media/characters/kuro-shi-uchū/front.svg",
  8479. extra: 2329 / 1835,
  8480. bottom: 0.02
  8481. }
  8482. },
  8483. },
  8484. [
  8485. {
  8486. name: "Micro",
  8487. height: math.unit(2, "inches")
  8488. },
  8489. {
  8490. name: "Normal",
  8491. height: math.unit(12, "meters")
  8492. },
  8493. {
  8494. name: "Planetary",
  8495. height: math.unit(0.00929, "AU"),
  8496. default: true
  8497. },
  8498. {
  8499. name: "Universal",
  8500. height: math.unit(20, "gigaparsecs")
  8501. },
  8502. ]
  8503. ))
  8504. characterMakers.push(() => makeCharacter(
  8505. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8506. {
  8507. front: {
  8508. height: math.unit(5 + 2 / 12, "feet"),
  8509. weight: math.unit(120, "lbs"),
  8510. name: "Front",
  8511. image: {
  8512. source: "./media/characters/katherine/front.svg",
  8513. extra: 2075 / 1969
  8514. }
  8515. },
  8516. dress: {
  8517. height: math.unit(5 + 2 / 12, "feet"),
  8518. weight: math.unit(120, "lbs"),
  8519. name: "Dress",
  8520. image: {
  8521. source: "./media/characters/katherine/dress.svg",
  8522. extra: 2258 / 2064
  8523. }
  8524. },
  8525. },
  8526. [
  8527. {
  8528. name: "Micro",
  8529. height: math.unit(1, "inches"),
  8530. default: true
  8531. },
  8532. {
  8533. name: "Normal",
  8534. height: math.unit(5 + 2 / 12, "feet")
  8535. },
  8536. {
  8537. name: "Macro",
  8538. height: math.unit(100, "meters")
  8539. },
  8540. {
  8541. name: "Megamacro",
  8542. height: math.unit(80, "miles")
  8543. },
  8544. ]
  8545. ))
  8546. characterMakers.push(() => makeCharacter(
  8547. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8548. {
  8549. front: {
  8550. height: math.unit(7 + 8 / 12, "feet"),
  8551. weight: math.unit(250, "lbs"),
  8552. name: "Front",
  8553. image: {
  8554. source: "./media/characters/yevis/front.svg",
  8555. extra: 1938 / 1755
  8556. }
  8557. }
  8558. },
  8559. [
  8560. {
  8561. name: "Mortal",
  8562. height: math.unit(7 + 8 / 12, "feet")
  8563. },
  8564. {
  8565. name: "Battle",
  8566. height: math.unit(25 + 11 / 12, "feet")
  8567. },
  8568. {
  8569. name: "Wrath",
  8570. height: math.unit(1654 + 11 / 12, "feet")
  8571. },
  8572. {
  8573. name: "Planet Destroyer",
  8574. height: math.unit(12000, "miles")
  8575. },
  8576. {
  8577. name: "Galaxy Conqueror",
  8578. height: math.unit(1.45, "zettameters"),
  8579. default: true
  8580. },
  8581. {
  8582. name: "Universal War",
  8583. height: math.unit(184, "gigaparsecs")
  8584. },
  8585. {
  8586. name: "Eternity War",
  8587. height: math.unit(1.98e55, "yottaparsecs")
  8588. },
  8589. ]
  8590. ))
  8591. characterMakers.push(() => makeCharacter(
  8592. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8593. {
  8594. front: {
  8595. height: math.unit(5 + 8 / 12, "feet"),
  8596. weight: math.unit(63, "kg"),
  8597. name: "Front",
  8598. image: {
  8599. source: "./media/characters/xavier/front.svg",
  8600. extra: 944 / 883
  8601. }
  8602. },
  8603. frontStretch: {
  8604. height: math.unit(5 + 8 / 12, "feet"),
  8605. weight: math.unit(63, "kg"),
  8606. name: "Stretching",
  8607. image: {
  8608. source: "./media/characters/xavier/front-stretch.svg",
  8609. extra: 962 / 820
  8610. }
  8611. },
  8612. },
  8613. [
  8614. {
  8615. name: "Normal",
  8616. height: math.unit(5 + 8 / 12, "feet")
  8617. },
  8618. {
  8619. name: "Macro",
  8620. height: math.unit(100, "meters"),
  8621. default: true
  8622. },
  8623. {
  8624. name: "McLargeHuge",
  8625. height: math.unit(10, "miles")
  8626. },
  8627. ]
  8628. ))
  8629. characterMakers.push(() => makeCharacter(
  8630. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8631. {
  8632. front: {
  8633. height: math.unit(5 + 5 / 12, "feet"),
  8634. weight: math.unit(150, "lb"),
  8635. name: "Front",
  8636. image: {
  8637. source: "./media/characters/joshii/front.svg",
  8638. extra: 765 / 653,
  8639. bottom: 51 / 816
  8640. }
  8641. },
  8642. foot: {
  8643. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8644. name: "Foot",
  8645. image: {
  8646. source: "./media/characters/joshii/foot.svg"
  8647. }
  8648. },
  8649. },
  8650. [
  8651. {
  8652. name: "Micro",
  8653. height: math.unit(2, "inches"),
  8654. default: true
  8655. },
  8656. {
  8657. name: "Normal",
  8658. height: math.unit(5 + 5 / 12, "feet")
  8659. },
  8660. {
  8661. name: "Macro",
  8662. height: math.unit(785, "feet")
  8663. },
  8664. {
  8665. name: "Megamacro",
  8666. height: math.unit(24.5, "miles")
  8667. },
  8668. ]
  8669. ))
  8670. characterMakers.push(() => makeCharacter(
  8671. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8672. {
  8673. front: {
  8674. height: math.unit(6, "feet"),
  8675. weight: math.unit(150, "lb"),
  8676. name: "Front",
  8677. image: {
  8678. source: "./media/characters/goddess-elizabeth/front.svg",
  8679. extra: 1800 / 1525,
  8680. bottom: 0.005
  8681. }
  8682. },
  8683. foot: {
  8684. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8685. name: "Foot",
  8686. image: {
  8687. source: "./media/characters/goddess-elizabeth/foot.svg"
  8688. }
  8689. },
  8690. mouth: {
  8691. height: math.unit(6, "feet"),
  8692. name: "Mouth",
  8693. image: {
  8694. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8695. }
  8696. },
  8697. },
  8698. [
  8699. {
  8700. name: "Micro",
  8701. height: math.unit(12, "feet")
  8702. },
  8703. {
  8704. name: "Normal",
  8705. height: math.unit(80, "miles"),
  8706. default: true
  8707. },
  8708. {
  8709. name: "Macro",
  8710. height: math.unit(15000, "parsecs")
  8711. },
  8712. ]
  8713. ))
  8714. characterMakers.push(() => makeCharacter(
  8715. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8716. {
  8717. front: {
  8718. height: math.unit(5 + 9 / 12, "feet"),
  8719. weight: math.unit(144, "lb"),
  8720. name: "Front",
  8721. image: {
  8722. source: "./media/characters/kara/front.svg"
  8723. }
  8724. },
  8725. feet: {
  8726. height: math.unit(6 / 6.765, "feet"),
  8727. name: "Kara's Feet",
  8728. rename: true,
  8729. image: {
  8730. source: "./media/characters/kara/feet.svg"
  8731. }
  8732. },
  8733. },
  8734. [
  8735. {
  8736. name: "Normal",
  8737. height: math.unit(5 + 9 / 12, "feet")
  8738. },
  8739. {
  8740. name: "Macro",
  8741. height: math.unit(174, "feet"),
  8742. default: true
  8743. },
  8744. ]
  8745. ))
  8746. characterMakers.push(() => makeCharacter(
  8747. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8748. {
  8749. front: {
  8750. height: math.unit(18, "feet"),
  8751. weight: math.unit(4050, "lb"),
  8752. name: "Front",
  8753. image: {
  8754. source: "./media/characters/tyrone/front.svg",
  8755. extra: 2405 / 2270,
  8756. bottom: 182 / 2587
  8757. }
  8758. },
  8759. },
  8760. [
  8761. {
  8762. name: "Normal",
  8763. height: math.unit(18, "feet"),
  8764. default: true
  8765. },
  8766. {
  8767. name: "Macro",
  8768. height: math.unit(300, "feet")
  8769. },
  8770. {
  8771. name: "Megamacro",
  8772. height: math.unit(15, "km")
  8773. },
  8774. {
  8775. name: "Gigamacro",
  8776. height: math.unit(500, "km")
  8777. },
  8778. {
  8779. name: "Teramacro",
  8780. height: math.unit(0.5, "gigameters")
  8781. },
  8782. {
  8783. name: "Omnimacro",
  8784. height: math.unit(1e252, "yottauniverse")
  8785. },
  8786. ]
  8787. ))
  8788. characterMakers.push(() => makeCharacter(
  8789. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8790. {
  8791. front: {
  8792. height: math.unit(7 + 8 / 12, "feet"),
  8793. weight: math.unit(120, "lb"),
  8794. name: "Front",
  8795. image: {
  8796. source: "./media/characters/danny/front.svg",
  8797. extra: 1490 / 1350
  8798. }
  8799. },
  8800. back: {
  8801. height: math.unit(7 + 8 / 12, "feet"),
  8802. weight: math.unit(120, "lb"),
  8803. name: "Back",
  8804. image: {
  8805. source: "./media/characters/danny/back.svg",
  8806. extra: 1490 / 1350
  8807. }
  8808. },
  8809. },
  8810. [
  8811. {
  8812. name: "Normal",
  8813. height: math.unit(7 + 8 / 12, "feet"),
  8814. default: true
  8815. },
  8816. ]
  8817. ))
  8818. characterMakers.push(() => makeCharacter(
  8819. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8820. {
  8821. front: {
  8822. height: math.unit(3.5, "inches"),
  8823. weight: math.unit(19, "grams"),
  8824. name: "Front",
  8825. image: {
  8826. source: "./media/characters/mallow/front.svg",
  8827. extra: 471 / 431
  8828. }
  8829. },
  8830. back: {
  8831. height: math.unit(3.5, "inches"),
  8832. weight: math.unit(19, "grams"),
  8833. name: "Back",
  8834. image: {
  8835. source: "./media/characters/mallow/back.svg",
  8836. extra: 471 / 431
  8837. }
  8838. },
  8839. },
  8840. [
  8841. {
  8842. name: "Normal",
  8843. height: math.unit(3.5, "inches"),
  8844. default: true
  8845. },
  8846. ]
  8847. ))
  8848. characterMakers.push(() => makeCharacter(
  8849. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8850. {
  8851. front: {
  8852. height: math.unit(9, "feet"),
  8853. weight: math.unit(230, "kg"),
  8854. name: "Front",
  8855. image: {
  8856. source: "./media/characters/starry-aqua/front.svg"
  8857. }
  8858. },
  8859. back: {
  8860. height: math.unit(9, "feet"),
  8861. weight: math.unit(230, "kg"),
  8862. name: "Back",
  8863. image: {
  8864. source: "./media/characters/starry-aqua/back.svg"
  8865. }
  8866. },
  8867. hand: {
  8868. height: math.unit(9 * 0.1168, "feet"),
  8869. name: "Hand",
  8870. image: {
  8871. source: "./media/characters/starry-aqua/hand.svg"
  8872. }
  8873. },
  8874. foot: {
  8875. height: math.unit(9 * 0.18, "feet"),
  8876. name: "Foot",
  8877. image: {
  8878. source: "./media/characters/starry-aqua/foot.svg"
  8879. }
  8880. }
  8881. },
  8882. [
  8883. {
  8884. name: "Micro",
  8885. height: math.unit(3, "inches")
  8886. },
  8887. {
  8888. name: "Normal",
  8889. height: math.unit(9, "feet")
  8890. },
  8891. {
  8892. name: "Macro",
  8893. height: math.unit(300, "feet"),
  8894. default: true
  8895. },
  8896. {
  8897. name: "Megamacro",
  8898. height: math.unit(3200, "feet")
  8899. }
  8900. ]
  8901. ))
  8902. characterMakers.push(() => makeCharacter(
  8903. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8904. {
  8905. front: {
  8906. height: math.unit(6, "feet"),
  8907. weight: math.unit(230, "lb"),
  8908. name: "Front",
  8909. image: {
  8910. source: "./media/characters/luka/front.svg",
  8911. extra: 1,
  8912. bottom: 0.025
  8913. }
  8914. },
  8915. },
  8916. [
  8917. {
  8918. name: "Normal",
  8919. height: math.unit(12 + 8 / 12, "feet"),
  8920. default: true
  8921. },
  8922. {
  8923. name: "Minimacro",
  8924. height: math.unit(20, "feet")
  8925. },
  8926. {
  8927. name: "Macro",
  8928. height: math.unit(250, "feet")
  8929. },
  8930. {
  8931. name: "Megamacro",
  8932. height: math.unit(5, "miles")
  8933. },
  8934. {
  8935. name: "Gigamacro",
  8936. height: math.unit(8000, "miles")
  8937. },
  8938. ]
  8939. ))
  8940. characterMakers.push(() => makeCharacter(
  8941. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8942. {
  8943. front: {
  8944. height: math.unit(6, "feet"),
  8945. weight: math.unit(150, "lb"),
  8946. name: "Front",
  8947. image: {
  8948. source: "./media/characters/natalie-nightring/front.svg",
  8949. extra: 1,
  8950. bottom: 0.06
  8951. }
  8952. },
  8953. },
  8954. [
  8955. {
  8956. name: "Uh Oh",
  8957. height: math.unit(0.1, "mm")
  8958. },
  8959. {
  8960. name: "Small",
  8961. height: math.unit(3, "inches")
  8962. },
  8963. {
  8964. name: "Human Scale",
  8965. height: math.unit(6, "feet")
  8966. },
  8967. {
  8968. name: "Librarian",
  8969. height: math.unit(50, "feet"),
  8970. default: true
  8971. },
  8972. {
  8973. name: "Immense",
  8974. height: math.unit(200, "miles")
  8975. },
  8976. ]
  8977. ))
  8978. characterMakers.push(() => makeCharacter(
  8979. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8980. {
  8981. front: {
  8982. height: math.unit(6, "feet"),
  8983. weight: math.unit(180, "lbs"),
  8984. name: "Front",
  8985. image: {
  8986. source: "./media/characters/danni-rosie/front.svg",
  8987. extra: 1260 / 1128,
  8988. bottom: 0.022
  8989. }
  8990. },
  8991. },
  8992. [
  8993. {
  8994. name: "Micro",
  8995. height: math.unit(2, "inches"),
  8996. default: true
  8997. },
  8998. ]
  8999. ))
  9000. characterMakers.push(() => makeCharacter(
  9001. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9002. {
  9003. front: {
  9004. height: math.unit(5 + 9 / 12, "feet"),
  9005. weight: math.unit(220, "lb"),
  9006. name: "Front",
  9007. image: {
  9008. source: "./media/characters/samantha-kruse/front.svg",
  9009. extra: (985 / 935),
  9010. bottom: 0.03
  9011. }
  9012. },
  9013. frontUndressed: {
  9014. height: math.unit(5 + 9 / 12, "feet"),
  9015. weight: math.unit(220, "lb"),
  9016. name: "Front (Undressed)",
  9017. image: {
  9018. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9019. extra: (973 / 923),
  9020. bottom: 0.025
  9021. }
  9022. },
  9023. fat: {
  9024. height: math.unit(5 + 9 / 12, "feet"),
  9025. weight: math.unit(900, "lb"),
  9026. name: "Front (Fat)",
  9027. image: {
  9028. source: "./media/characters/samantha-kruse/fat.svg",
  9029. extra: 2688 / 2561
  9030. }
  9031. },
  9032. },
  9033. [
  9034. {
  9035. name: "Normal",
  9036. height: math.unit(5 + 9 / 12, "feet"),
  9037. default: true
  9038. }
  9039. ]
  9040. ))
  9041. characterMakers.push(() => makeCharacter(
  9042. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9043. {
  9044. back: {
  9045. height: math.unit(5 + 4 / 12, "feet"),
  9046. weight: math.unit(4963, "lb"),
  9047. name: "Back",
  9048. image: {
  9049. source: "./media/characters/amelia-rosie/back.svg",
  9050. extra: 1113 / 963,
  9051. bottom: 0.01
  9052. }
  9053. },
  9054. },
  9055. [
  9056. {
  9057. name: "Level 0",
  9058. height: math.unit(5 + 4 / 12, "feet")
  9059. },
  9060. {
  9061. name: "Level 1",
  9062. height: math.unit(164597, "feet"),
  9063. default: true
  9064. },
  9065. {
  9066. name: "Level 2",
  9067. height: math.unit(956243, "miles")
  9068. },
  9069. {
  9070. name: "Level 3",
  9071. height: math.unit(29421709423, "miles")
  9072. },
  9073. {
  9074. name: "Level 4",
  9075. height: math.unit(154, "lightyears")
  9076. },
  9077. {
  9078. name: "Level 5",
  9079. height: math.unit(4738272, "lightyears")
  9080. },
  9081. {
  9082. name: "Level 6",
  9083. height: math.unit(145787152896, "lightyears")
  9084. },
  9085. ]
  9086. ))
  9087. characterMakers.push(() => makeCharacter(
  9088. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9089. {
  9090. front: {
  9091. height: math.unit(5 + 11 / 12, "feet"),
  9092. weight: math.unit(65, "kg"),
  9093. name: "Front",
  9094. image: {
  9095. source: "./media/characters/rook-kitara/front.svg",
  9096. extra: 1347 / 1274,
  9097. bottom: 0.005
  9098. }
  9099. },
  9100. },
  9101. [
  9102. {
  9103. name: "Totally Unfair",
  9104. height: math.unit(1.8, "mm")
  9105. },
  9106. {
  9107. name: "Lap Rookie",
  9108. height: math.unit(1.4, "feet")
  9109. },
  9110. {
  9111. name: "Normal",
  9112. height: math.unit(5 + 11 / 12, "feet"),
  9113. default: true
  9114. },
  9115. {
  9116. name: "How Did This Happen",
  9117. height: math.unit(80, "miles")
  9118. }
  9119. ]
  9120. ))
  9121. characterMakers.push(() => makeCharacter(
  9122. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9123. {
  9124. front: {
  9125. height: math.unit(7, "feet"),
  9126. weight: math.unit(300, "lb"),
  9127. name: "Front",
  9128. image: {
  9129. source: "./media/characters/pisces/front.svg",
  9130. extra: 2255 / 2115,
  9131. bottom: 0.03
  9132. }
  9133. },
  9134. back: {
  9135. height: math.unit(7, "feet"),
  9136. weight: math.unit(300, "lb"),
  9137. name: "Back",
  9138. image: {
  9139. source: "./media/characters/pisces/back.svg",
  9140. extra: 2146 / 2055,
  9141. bottom: 0.04
  9142. }
  9143. },
  9144. },
  9145. [
  9146. {
  9147. name: "Normal",
  9148. height: math.unit(7, "feet"),
  9149. default: true
  9150. },
  9151. {
  9152. name: "Swimming Pool",
  9153. height: math.unit(12.2, "meters")
  9154. },
  9155. {
  9156. name: "Olympic Swimming Pool",
  9157. height: math.unit(56.3, "meters")
  9158. },
  9159. {
  9160. name: "Lake Superior",
  9161. height: math.unit(93900, "meters")
  9162. },
  9163. {
  9164. name: "Mediterranean Sea",
  9165. height: math.unit(644457, "meters")
  9166. },
  9167. {
  9168. name: "World's Oceans",
  9169. height: math.unit(4567491, "meters")
  9170. },
  9171. ]
  9172. ))
  9173. characterMakers.push(() => makeCharacter(
  9174. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9175. {
  9176. front: {
  9177. height: math.unit(2.3, "meters"),
  9178. weight: math.unit(120, "kg"),
  9179. name: "Front",
  9180. image: {
  9181. source: "./media/characters/zelas/front.svg"
  9182. }
  9183. },
  9184. side: {
  9185. height: math.unit(2.3, "meters"),
  9186. weight: math.unit(120, "kg"),
  9187. name: "Side",
  9188. image: {
  9189. source: "./media/characters/zelas/side.svg"
  9190. }
  9191. },
  9192. back: {
  9193. height: math.unit(2.3, "meters"),
  9194. weight: math.unit(120, "kg"),
  9195. name: "Back",
  9196. image: {
  9197. source: "./media/characters/zelas/back.svg"
  9198. }
  9199. },
  9200. foot: {
  9201. height: math.unit(1.116, "feet"),
  9202. name: "Foot",
  9203. image: {
  9204. source: "./media/characters/zelas/foot.svg"
  9205. }
  9206. },
  9207. },
  9208. [
  9209. {
  9210. name: "Normal",
  9211. height: math.unit(2.3, "meters")
  9212. },
  9213. {
  9214. name: "Macro",
  9215. height: math.unit(30, "meters"),
  9216. default: true
  9217. },
  9218. ]
  9219. ))
  9220. characterMakers.push(() => makeCharacter(
  9221. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9222. {
  9223. front: {
  9224. height: math.unit(1, "inch"),
  9225. weight: math.unit(0.21, "grams"),
  9226. name: "Front",
  9227. image: {
  9228. source: "./media/characters/talbot/front.svg",
  9229. extra: 594 / 544
  9230. }
  9231. },
  9232. },
  9233. [
  9234. {
  9235. name: "Micro",
  9236. height: math.unit(1, "inch"),
  9237. default: true
  9238. },
  9239. ]
  9240. ))
  9241. characterMakers.push(() => makeCharacter(
  9242. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9243. {
  9244. front: {
  9245. height: math.unit(3 + 3 / 12, "feet"),
  9246. weight: math.unit(51.8, "lb"),
  9247. name: "Front",
  9248. image: {
  9249. source: "./media/characters/fliss/front.svg",
  9250. extra: 840 / 640
  9251. }
  9252. },
  9253. },
  9254. [
  9255. {
  9256. name: "Teeny Tiny",
  9257. height: math.unit(1, "mm")
  9258. },
  9259. {
  9260. name: "Small",
  9261. height: math.unit(1, "inch"),
  9262. default: true
  9263. },
  9264. {
  9265. name: "Standard Sylveon",
  9266. height: math.unit(3 + 3 / 12, "feet")
  9267. },
  9268. {
  9269. name: "Large Nuisance",
  9270. height: math.unit(33, "feet")
  9271. },
  9272. {
  9273. name: "City Filler",
  9274. height: math.unit(3000, "feet")
  9275. },
  9276. {
  9277. name: "New Horizon",
  9278. height: math.unit(6000, "miles")
  9279. },
  9280. ]
  9281. ))
  9282. characterMakers.push(() => makeCharacter(
  9283. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9284. {
  9285. front: {
  9286. height: math.unit(5, "cm"),
  9287. weight: math.unit(1.94, "g"),
  9288. name: "Front",
  9289. image: {
  9290. source: "./media/characters/fleta/front.svg",
  9291. extra: 835 / 803
  9292. }
  9293. },
  9294. back: {
  9295. height: math.unit(5, "cm"),
  9296. weight: math.unit(1.94, "g"),
  9297. name: "Back",
  9298. image: {
  9299. source: "./media/characters/fleta/back.svg",
  9300. extra: 835 / 803
  9301. }
  9302. },
  9303. },
  9304. [
  9305. {
  9306. name: "Micro",
  9307. height: math.unit(5, "cm"),
  9308. default: true
  9309. },
  9310. ]
  9311. ))
  9312. characterMakers.push(() => makeCharacter(
  9313. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9314. {
  9315. front: {
  9316. height: math.unit(6, "feet"),
  9317. weight: math.unit(225, "lb"),
  9318. name: "Front",
  9319. image: {
  9320. source: "./media/characters/dominic/front.svg",
  9321. extra: 1770 / 1620,
  9322. bottom: 0.025
  9323. }
  9324. },
  9325. back: {
  9326. height: math.unit(6, "feet"),
  9327. weight: math.unit(225, "lb"),
  9328. name: "Back",
  9329. image: {
  9330. source: "./media/characters/dominic/back.svg",
  9331. extra: 1745 / 1620,
  9332. bottom: 0.065
  9333. }
  9334. },
  9335. },
  9336. [
  9337. {
  9338. name: "Nano",
  9339. height: math.unit(0.1, "mm")
  9340. },
  9341. {
  9342. name: "Micro-",
  9343. height: math.unit(1, "mm")
  9344. },
  9345. {
  9346. name: "Micro",
  9347. height: math.unit(4, "inches")
  9348. },
  9349. {
  9350. name: "Normal",
  9351. height: math.unit(6 + 4 / 12, "feet"),
  9352. default: true
  9353. },
  9354. {
  9355. name: "Macro",
  9356. height: math.unit(115, "feet")
  9357. },
  9358. {
  9359. name: "Macro+",
  9360. height: math.unit(955, "feet")
  9361. },
  9362. {
  9363. name: "Megamacro",
  9364. height: math.unit(8990, "feet")
  9365. },
  9366. {
  9367. name: "Gigmacro",
  9368. height: math.unit(9310, "miles")
  9369. },
  9370. {
  9371. name: "Teramacro",
  9372. height: math.unit(1567005010, "miles")
  9373. },
  9374. {
  9375. name: "Examacro",
  9376. height: math.unit(1425, "parsecs")
  9377. },
  9378. ]
  9379. ))
  9380. characterMakers.push(() => makeCharacter(
  9381. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9382. {
  9383. front: {
  9384. height: math.unit(400, "feet"),
  9385. weight: math.unit(44444444, "lb"),
  9386. name: "Front",
  9387. image: {
  9388. source: "./media/characters/major-colonel/front.svg"
  9389. }
  9390. },
  9391. back: {
  9392. height: math.unit(400, "feet"),
  9393. weight: math.unit(44444444, "lb"),
  9394. name: "Back",
  9395. image: {
  9396. source: "./media/characters/major-colonel/back.svg"
  9397. }
  9398. },
  9399. },
  9400. [
  9401. {
  9402. name: "Macro",
  9403. height: math.unit(400, "feet"),
  9404. default: true
  9405. },
  9406. ]
  9407. ))
  9408. characterMakers.push(() => makeCharacter(
  9409. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9410. {
  9411. catFront: {
  9412. height: math.unit(6, "feet"),
  9413. weight: math.unit(120, "lb"),
  9414. name: "Front (Cat Side)",
  9415. image: {
  9416. source: "./media/characters/axel-lycan/cat-front.svg",
  9417. extra: 430 / 402,
  9418. bottom: 43 / 472.35
  9419. }
  9420. },
  9421. catBack: {
  9422. height: math.unit(6, "feet"),
  9423. weight: math.unit(120, "lb"),
  9424. name: "Back (Cat Side)",
  9425. image: {
  9426. source: "./media/characters/axel-lycan/cat-back.svg",
  9427. extra: 447 / 419,
  9428. bottom: 23.3 / 469
  9429. }
  9430. },
  9431. wolfFront: {
  9432. height: math.unit(6, "feet"),
  9433. weight: math.unit(120, "lb"),
  9434. name: "Front (Wolf Side)",
  9435. image: {
  9436. source: "./media/characters/axel-lycan/wolf-front.svg",
  9437. extra: 485 / 456,
  9438. bottom: 19 / 504
  9439. }
  9440. },
  9441. wolfBack: {
  9442. height: math.unit(6, "feet"),
  9443. weight: math.unit(120, "lb"),
  9444. name: "Back (Wolf Side)",
  9445. image: {
  9446. source: "./media/characters/axel-lycan/wolf-back.svg",
  9447. extra: 475 / 438,
  9448. bottom: 39.2 / 514
  9449. }
  9450. },
  9451. },
  9452. [
  9453. {
  9454. name: "Macro",
  9455. height: math.unit(1, "km"),
  9456. default: true
  9457. },
  9458. ]
  9459. ))
  9460. characterMakers.push(() => makeCharacter(
  9461. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9462. {
  9463. front: {
  9464. height: math.unit(5 + 9 / 12, "feet"),
  9465. weight: math.unit(175, "lb"),
  9466. name: "Front",
  9467. image: {
  9468. source: "./media/characters/vanrel-hyena/front.svg",
  9469. extra: 1086 / 1010,
  9470. bottom: 0.04
  9471. }
  9472. },
  9473. },
  9474. [
  9475. {
  9476. name: "Normal",
  9477. height: math.unit(5 + 9 / 12, "feet"),
  9478. default: true
  9479. },
  9480. ]
  9481. ))
  9482. characterMakers.push(() => makeCharacter(
  9483. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9484. {
  9485. front: {
  9486. height: math.unit(6, "feet"),
  9487. weight: math.unit(103, "lb"),
  9488. name: "Front",
  9489. image: {
  9490. source: "./media/characters/abbott-absol/front.svg",
  9491. extra: 2010 / 1842
  9492. }
  9493. },
  9494. },
  9495. [
  9496. {
  9497. name: "Megamicro",
  9498. height: math.unit(0.1, "mm")
  9499. },
  9500. {
  9501. name: "Micro",
  9502. height: math.unit(1, "inch")
  9503. },
  9504. {
  9505. name: "Normal",
  9506. height: math.unit(6, "feet"),
  9507. default: true
  9508. },
  9509. ]
  9510. ))
  9511. characterMakers.push(() => makeCharacter(
  9512. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9513. {
  9514. front: {
  9515. height: math.unit(6, "feet"),
  9516. weight: math.unit(264, "lb"),
  9517. name: "Front",
  9518. image: {
  9519. source: "./media/characters/hector/front.svg",
  9520. extra: 2280 / 2130,
  9521. bottom: 0.07
  9522. }
  9523. },
  9524. },
  9525. [
  9526. {
  9527. name: "Normal",
  9528. height: math.unit(12.25, "foot"),
  9529. default: true
  9530. },
  9531. {
  9532. name: "Macro",
  9533. height: math.unit(160, "feet")
  9534. },
  9535. ]
  9536. ))
  9537. characterMakers.push(() => makeCharacter(
  9538. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9539. {
  9540. front: {
  9541. height: math.unit(6, "feet"),
  9542. weight: math.unit(150, "lb"),
  9543. name: "Front",
  9544. image: {
  9545. source: "./media/characters/sal/front.svg",
  9546. extra: 1846 / 1699,
  9547. bottom: 0.04
  9548. }
  9549. },
  9550. },
  9551. [
  9552. {
  9553. name: "Megamacro",
  9554. height: math.unit(10, "miles"),
  9555. default: true
  9556. },
  9557. ]
  9558. ))
  9559. characterMakers.push(() => makeCharacter(
  9560. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9561. {
  9562. front: {
  9563. height: math.unit(3, "meters"),
  9564. weight: math.unit(450, "kg"),
  9565. name: "front",
  9566. image: {
  9567. source: "./media/characters/ranger/front.svg",
  9568. extra: 2401 / 2243,
  9569. bottom: 0.05
  9570. }
  9571. },
  9572. },
  9573. [
  9574. {
  9575. name: "Normal",
  9576. height: math.unit(3, "meters"),
  9577. default: true
  9578. },
  9579. ]
  9580. ))
  9581. characterMakers.push(() => makeCharacter(
  9582. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9583. {
  9584. front: {
  9585. height: math.unit(14, "feet"),
  9586. weight: math.unit(800, "kg"),
  9587. name: "Front",
  9588. image: {
  9589. source: "./media/characters/theresa/front.svg",
  9590. extra: 3575 / 3346,
  9591. bottom: 0.03
  9592. }
  9593. },
  9594. },
  9595. [
  9596. {
  9597. name: "Normal",
  9598. height: math.unit(14, "feet"),
  9599. default: true
  9600. },
  9601. ]
  9602. ))
  9603. characterMakers.push(() => makeCharacter(
  9604. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9605. {
  9606. front: {
  9607. height: math.unit(6, "feet"),
  9608. weight: math.unit(3, "kg"),
  9609. name: "Front",
  9610. image: {
  9611. source: "./media/characters/ine/front.svg",
  9612. extra: 678 / 539,
  9613. bottom: 0.023
  9614. }
  9615. },
  9616. },
  9617. [
  9618. {
  9619. name: "Normal",
  9620. height: math.unit(2.265, "feet"),
  9621. default: true
  9622. },
  9623. ]
  9624. ))
  9625. characterMakers.push(() => makeCharacter(
  9626. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9627. {
  9628. front: {
  9629. height: math.unit(5, "feet"),
  9630. weight: math.unit(30, "kg"),
  9631. name: "Front",
  9632. image: {
  9633. source: "./media/characters/vial/front.svg",
  9634. extra: 1365 / 1277,
  9635. bottom: 0.04
  9636. }
  9637. },
  9638. },
  9639. [
  9640. {
  9641. name: "Normal",
  9642. height: math.unit(5, "feet"),
  9643. default: true
  9644. },
  9645. ]
  9646. ))
  9647. characterMakers.push(() => makeCharacter(
  9648. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9649. {
  9650. side: {
  9651. height: math.unit(3.4, "meters"),
  9652. weight: math.unit(1000, "lb"),
  9653. name: "Side",
  9654. image: {
  9655. source: "./media/characters/rovoska/side.svg",
  9656. extra: 4403 / 1515
  9657. }
  9658. },
  9659. },
  9660. [
  9661. {
  9662. name: "Normal",
  9663. height: math.unit(3.4, "meters"),
  9664. default: true
  9665. },
  9666. ]
  9667. ))
  9668. characterMakers.push(() => makeCharacter(
  9669. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9670. {
  9671. front: {
  9672. height: math.unit(8, "feet"),
  9673. weight: math.unit(315, "lb"),
  9674. name: "Front",
  9675. image: {
  9676. source: "./media/characters/gunner-rotthbauer/front.svg"
  9677. }
  9678. },
  9679. back: {
  9680. height: math.unit(8, "feet"),
  9681. weight: math.unit(315, "lb"),
  9682. name: "Back",
  9683. image: {
  9684. source: "./media/characters/gunner-rotthbauer/back.svg"
  9685. }
  9686. },
  9687. },
  9688. [
  9689. {
  9690. name: "Micro",
  9691. height: math.unit(3.5, "inches")
  9692. },
  9693. {
  9694. name: "Normal",
  9695. height: math.unit(8, "feet"),
  9696. default: true
  9697. },
  9698. {
  9699. name: "Macro",
  9700. height: math.unit(250, "feet")
  9701. },
  9702. {
  9703. name: "Megamacro",
  9704. height: math.unit(1, "AU")
  9705. },
  9706. ]
  9707. ))
  9708. characterMakers.push(() => makeCharacter(
  9709. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9710. {
  9711. front: {
  9712. height: math.unit(5 + 5 / 12, "feet"),
  9713. weight: math.unit(140, "lb"),
  9714. name: "Front",
  9715. image: {
  9716. source: "./media/characters/allatia/front.svg",
  9717. extra: 1227 / 1180,
  9718. bottom: 0.027
  9719. }
  9720. },
  9721. },
  9722. [
  9723. {
  9724. name: "Normal",
  9725. height: math.unit(5 + 5 / 12, "feet")
  9726. },
  9727. {
  9728. name: "Macro",
  9729. height: math.unit(250, "feet"),
  9730. default: true
  9731. },
  9732. {
  9733. name: "Megamacro",
  9734. height: math.unit(8, "miles")
  9735. }
  9736. ]
  9737. ))
  9738. characterMakers.push(() => makeCharacter(
  9739. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9740. {
  9741. front: {
  9742. height: math.unit(6, "feet"),
  9743. weight: math.unit(120, "lb"),
  9744. name: "Front",
  9745. image: {
  9746. source: "./media/characters/tene/front.svg",
  9747. extra: 1728 / 1578,
  9748. bottom: 0.022
  9749. }
  9750. },
  9751. stomping: {
  9752. height: math.unit(2.025, "meters"),
  9753. weight: math.unit(120, "lb"),
  9754. name: "Stomping",
  9755. image: {
  9756. source: "./media/characters/tene/stomping.svg",
  9757. extra: 938 / 873,
  9758. bottom: 0.01
  9759. }
  9760. },
  9761. sitting: {
  9762. height: math.unit(1, "meter"),
  9763. weight: math.unit(120, "lb"),
  9764. name: "Sitting",
  9765. image: {
  9766. source: "./media/characters/tene/sitting.svg",
  9767. extra: 437 / 415,
  9768. bottom: 0.1
  9769. }
  9770. },
  9771. feral: {
  9772. height: math.unit(3.9, "feet"),
  9773. weight: math.unit(250, "lb"),
  9774. name: "Feral",
  9775. image: {
  9776. source: "./media/characters/tene/feral.svg",
  9777. extra: 717 / 458,
  9778. bottom: 0.179
  9779. }
  9780. },
  9781. },
  9782. [
  9783. {
  9784. name: "Normal",
  9785. height: math.unit(6, "feet")
  9786. },
  9787. {
  9788. name: "Macro",
  9789. height: math.unit(300, "feet"),
  9790. default: true
  9791. },
  9792. {
  9793. name: "Megamacro",
  9794. height: math.unit(5, "miles")
  9795. },
  9796. ]
  9797. ))
  9798. characterMakers.push(() => makeCharacter(
  9799. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9800. {
  9801. side: {
  9802. height: math.unit(6, "feet"),
  9803. name: "Side",
  9804. image: {
  9805. source: "./media/characters/evander/side.svg",
  9806. extra: 877 / 477
  9807. }
  9808. },
  9809. },
  9810. [
  9811. {
  9812. name: "Normal",
  9813. height: math.unit(0.83, "meters"),
  9814. default: true
  9815. },
  9816. ]
  9817. ))
  9818. characterMakers.push(() => makeCharacter(
  9819. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9820. {
  9821. front: {
  9822. height: math.unit(12, "feet"),
  9823. weight: math.unit(1000, "lb"),
  9824. name: "Front",
  9825. image: {
  9826. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9827. extra: 1762 / 1611
  9828. }
  9829. },
  9830. back: {
  9831. height: math.unit(12, "feet"),
  9832. weight: math.unit(1000, "lb"),
  9833. name: "Back",
  9834. image: {
  9835. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9836. extra: 1762 / 1611
  9837. }
  9838. },
  9839. },
  9840. [
  9841. {
  9842. name: "Normal",
  9843. height: math.unit(12, "feet"),
  9844. default: true
  9845. },
  9846. {
  9847. name: "Kaiju",
  9848. height: math.unit(150, "feet")
  9849. },
  9850. ]
  9851. ))
  9852. characterMakers.push(() => makeCharacter(
  9853. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9854. {
  9855. front: {
  9856. height: math.unit(6, "feet"),
  9857. weight: math.unit(150, "lb"),
  9858. name: "Front",
  9859. image: {
  9860. source: "./media/characters/zero-alurus/front.svg"
  9861. }
  9862. },
  9863. back: {
  9864. height: math.unit(6, "feet"),
  9865. weight: math.unit(150, "lb"),
  9866. name: "Back",
  9867. image: {
  9868. source: "./media/characters/zero-alurus/back.svg"
  9869. }
  9870. },
  9871. },
  9872. [
  9873. {
  9874. name: "Normal",
  9875. height: math.unit(5 + 10 / 12, "feet")
  9876. },
  9877. {
  9878. name: "Macro",
  9879. height: math.unit(60, "feet"),
  9880. default: true
  9881. },
  9882. {
  9883. name: "Macro+",
  9884. height: math.unit(450, "feet")
  9885. },
  9886. ]
  9887. ))
  9888. characterMakers.push(() => makeCharacter(
  9889. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9890. {
  9891. front: {
  9892. height: math.unit(6, "feet"),
  9893. weight: math.unit(200, "lb"),
  9894. name: "Front",
  9895. image: {
  9896. source: "./media/characters/mega-shi/front.svg",
  9897. extra: 1279 / 1250,
  9898. bottom: 0.02
  9899. }
  9900. },
  9901. back: {
  9902. height: math.unit(6, "feet"),
  9903. weight: math.unit(200, "lb"),
  9904. name: "Back",
  9905. image: {
  9906. source: "./media/characters/mega-shi/back.svg",
  9907. extra: 1279 / 1250,
  9908. bottom: 0.02
  9909. }
  9910. },
  9911. },
  9912. [
  9913. {
  9914. name: "Micro",
  9915. height: math.unit(16 + 6 / 12, "feet")
  9916. },
  9917. {
  9918. name: "Third Dimension",
  9919. height: math.unit(40, "meters")
  9920. },
  9921. {
  9922. name: "Normal",
  9923. height: math.unit(660, "feet"),
  9924. default: true
  9925. },
  9926. {
  9927. name: "Megamacro",
  9928. height: math.unit(10, "miles")
  9929. },
  9930. {
  9931. name: "Planetary Launch",
  9932. height: math.unit(500, "miles")
  9933. },
  9934. {
  9935. name: "Interstellar",
  9936. height: math.unit(1e9, "miles")
  9937. },
  9938. {
  9939. name: "Leaving the Universe",
  9940. height: math.unit(1, "gigaparsec")
  9941. },
  9942. {
  9943. name: "Travelling Universes",
  9944. height: math.unit(30e15, "parsecs")
  9945. },
  9946. ]
  9947. ))
  9948. characterMakers.push(() => makeCharacter(
  9949. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9950. {
  9951. front: {
  9952. height: math.unit(6, "feet"),
  9953. weight: math.unit(150, "lb"),
  9954. name: "Front",
  9955. image: {
  9956. source: "./media/characters/odyssey/front.svg",
  9957. extra: 1782 / 1582,
  9958. bottom: 0.01
  9959. }
  9960. },
  9961. side: {
  9962. height: math.unit(5.7, "feet"),
  9963. weight: math.unit(140, "lb"),
  9964. name: "Side",
  9965. image: {
  9966. source: "./media/characters/odyssey/side.svg",
  9967. extra: 6462 / 5700
  9968. }
  9969. },
  9970. },
  9971. [
  9972. {
  9973. name: "Normal",
  9974. height: math.unit(5 + 4 / 12, "feet")
  9975. },
  9976. {
  9977. name: "Macro",
  9978. height: math.unit(1, "km")
  9979. },
  9980. {
  9981. name: "Megamacro",
  9982. height: math.unit(3000, "km")
  9983. },
  9984. {
  9985. name: "Gigamacro",
  9986. height: math.unit(1, "AU"),
  9987. default: true
  9988. },
  9989. {
  9990. name: "Omniversal",
  9991. height: math.unit(100e14, "lightyears")
  9992. },
  9993. ]
  9994. ))
  9995. characterMakers.push(() => makeCharacter(
  9996. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9997. {
  9998. front: {
  9999. height: math.unit(6, "feet"),
  10000. weight: math.unit(300, "lb"),
  10001. name: "Front",
  10002. image: {
  10003. source: "./media/characters/mekuto/front.svg",
  10004. extra: 921 / 832,
  10005. bottom: 0.03
  10006. }
  10007. },
  10008. hand: {
  10009. height: math.unit(6 / 10.24, "feet"),
  10010. name: "Hand",
  10011. image: {
  10012. source: "./media/characters/mekuto/hand.svg"
  10013. }
  10014. },
  10015. foot: {
  10016. height: math.unit(6 / 5.05, "feet"),
  10017. name: "Foot",
  10018. image: {
  10019. source: "./media/characters/mekuto/foot.svg"
  10020. }
  10021. },
  10022. },
  10023. [
  10024. {
  10025. name: "Minimicro",
  10026. height: math.unit(0.2, "inches")
  10027. },
  10028. {
  10029. name: "Micro",
  10030. height: math.unit(1.5, "inches")
  10031. },
  10032. {
  10033. name: "Normal",
  10034. height: math.unit(5 + 11 / 12, "feet"),
  10035. default: true
  10036. },
  10037. {
  10038. name: "Minimacro",
  10039. height: math.unit(17 + 9 / 12, "feet")
  10040. },
  10041. {
  10042. name: "Macro",
  10043. height: math.unit(177.5, "feet")
  10044. },
  10045. {
  10046. name: "Megamacro",
  10047. height: math.unit(152, "miles")
  10048. },
  10049. ]
  10050. ))
  10051. characterMakers.push(() => makeCharacter(
  10052. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10053. {
  10054. front: {
  10055. height: math.unit(6.5, "inches"),
  10056. weight: math.unit(13, "oz"),
  10057. name: "Front",
  10058. image: {
  10059. source: "./media/characters/dafydd-tomos/front.svg",
  10060. extra: 2990 / 2603,
  10061. bottom: 0.03
  10062. }
  10063. },
  10064. },
  10065. [
  10066. {
  10067. name: "Micro",
  10068. height: math.unit(6.5, "inches"),
  10069. default: true
  10070. },
  10071. ]
  10072. ))
  10073. characterMakers.push(() => makeCharacter(
  10074. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10075. {
  10076. front: {
  10077. height: math.unit(6, "feet"),
  10078. weight: math.unit(150, "lb"),
  10079. name: "Front",
  10080. image: {
  10081. source: "./media/characters/splinter/front.svg",
  10082. extra: 2990 / 2882,
  10083. bottom: 0.04
  10084. }
  10085. },
  10086. back: {
  10087. height: math.unit(6, "feet"),
  10088. weight: math.unit(150, "lb"),
  10089. name: "Back",
  10090. image: {
  10091. source: "./media/characters/splinter/back.svg",
  10092. extra: 2990 / 2882,
  10093. bottom: 0.04
  10094. }
  10095. },
  10096. },
  10097. [
  10098. {
  10099. name: "Normal",
  10100. height: math.unit(6, "feet")
  10101. },
  10102. {
  10103. name: "Macro",
  10104. height: math.unit(230, "meters"),
  10105. default: true
  10106. },
  10107. ]
  10108. ))
  10109. characterMakers.push(() => makeCharacter(
  10110. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10111. {
  10112. front: {
  10113. height: math.unit(4 + 10 / 12, "feet"),
  10114. weight: math.unit(480, "lb"),
  10115. name: "Front",
  10116. image: {
  10117. source: "./media/characters/snow-gabumon/front.svg",
  10118. extra: 1140 / 963,
  10119. bottom: 0.058
  10120. }
  10121. },
  10122. back: {
  10123. height: math.unit(4 + 10 / 12, "feet"),
  10124. weight: math.unit(480, "lb"),
  10125. name: "Back",
  10126. image: {
  10127. source: "./media/characters/snow-gabumon/back.svg",
  10128. extra: 1115 / 962,
  10129. bottom: 0.041
  10130. }
  10131. },
  10132. frontUndresed: {
  10133. height: math.unit(4 + 10 / 12, "feet"),
  10134. weight: math.unit(480, "lb"),
  10135. name: "Front (Undressed)",
  10136. image: {
  10137. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10138. extra: 1061 / 960,
  10139. bottom: 0.045
  10140. }
  10141. },
  10142. },
  10143. [
  10144. {
  10145. name: "Micro",
  10146. height: math.unit(1, "inch")
  10147. },
  10148. {
  10149. name: "Normal",
  10150. height: math.unit(4 + 10 / 12, "feet"),
  10151. default: true
  10152. },
  10153. {
  10154. name: "Macro",
  10155. height: math.unit(200, "feet")
  10156. },
  10157. {
  10158. name: "Megamacro",
  10159. height: math.unit(120, "miles")
  10160. },
  10161. {
  10162. name: "Gigamacro",
  10163. height: math.unit(9800, "miles")
  10164. },
  10165. ]
  10166. ))
  10167. characterMakers.push(() => makeCharacter(
  10168. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10169. {
  10170. front: {
  10171. height: math.unit(1.7, "meters"),
  10172. weight: math.unit(140, "lb"),
  10173. name: "Front",
  10174. image: {
  10175. source: "./media/characters/moody/front.svg",
  10176. extra: 3226 / 3007,
  10177. bottom: 0.087
  10178. }
  10179. },
  10180. },
  10181. [
  10182. {
  10183. name: "Micro",
  10184. height: math.unit(1, "mm")
  10185. },
  10186. {
  10187. name: "Normal",
  10188. height: math.unit(1.7, "meters"),
  10189. default: true
  10190. },
  10191. {
  10192. name: "Macro",
  10193. height: math.unit(80, "meters")
  10194. },
  10195. {
  10196. name: "Macro+",
  10197. height: math.unit(500, "meters")
  10198. },
  10199. ]
  10200. ))
  10201. characterMakers.push(() => makeCharacter(
  10202. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10203. {
  10204. front: {
  10205. height: math.unit(6, "feet"),
  10206. weight: math.unit(150, "lb"),
  10207. name: "Front",
  10208. image: {
  10209. source: "./media/characters/zyas/front.svg",
  10210. extra: 1180 / 1120,
  10211. bottom: 0.045
  10212. }
  10213. },
  10214. },
  10215. [
  10216. {
  10217. name: "Normal",
  10218. height: math.unit(10, "feet"),
  10219. default: true
  10220. },
  10221. {
  10222. name: "Macro",
  10223. height: math.unit(500, "feet")
  10224. },
  10225. {
  10226. name: "Megamacro",
  10227. height: math.unit(5, "miles")
  10228. },
  10229. {
  10230. name: "Teramacro",
  10231. height: math.unit(150000, "miles")
  10232. },
  10233. ]
  10234. ))
  10235. characterMakers.push(() => makeCharacter(
  10236. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10237. {
  10238. front: {
  10239. height: math.unit(6, "feet"),
  10240. weight: math.unit(150, "lb"),
  10241. name: "Front",
  10242. image: {
  10243. source: "./media/characters/cuon/front.svg",
  10244. extra: 1390 / 1320,
  10245. bottom: 0.008
  10246. }
  10247. },
  10248. },
  10249. [
  10250. {
  10251. name: "Micro",
  10252. height: math.unit(3, "inches")
  10253. },
  10254. {
  10255. name: "Normal",
  10256. height: math.unit(18 + 9 / 12, "feet"),
  10257. default: true
  10258. },
  10259. {
  10260. name: "Macro",
  10261. height: math.unit(360, "feet")
  10262. },
  10263. {
  10264. name: "Megamacro",
  10265. height: math.unit(360, "miles")
  10266. },
  10267. ]
  10268. ))
  10269. characterMakers.push(() => makeCharacter(
  10270. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10271. {
  10272. front: {
  10273. height: math.unit(2.4, "meters"),
  10274. weight: math.unit(70, "kg"),
  10275. name: "Front",
  10276. image: {
  10277. source: "./media/characters/nyanuxk/front.svg",
  10278. extra: 1172 / 1084,
  10279. bottom: 0.065
  10280. }
  10281. },
  10282. side: {
  10283. height: math.unit(2.4, "meters"),
  10284. weight: math.unit(70, "kg"),
  10285. name: "Side",
  10286. image: {
  10287. source: "./media/characters/nyanuxk/side.svg",
  10288. extra: 1190 / 1132,
  10289. bottom: 0.007
  10290. }
  10291. },
  10292. back: {
  10293. height: math.unit(2.4, "meters"),
  10294. weight: math.unit(70, "kg"),
  10295. name: "Back",
  10296. image: {
  10297. source: "./media/characters/nyanuxk/back.svg",
  10298. extra: 1200 / 1141,
  10299. bottom: 0.015
  10300. }
  10301. },
  10302. foot: {
  10303. height: math.unit(0.52, "meters"),
  10304. name: "Foot",
  10305. image: {
  10306. source: "./media/characters/nyanuxk/foot.svg"
  10307. }
  10308. },
  10309. },
  10310. [
  10311. {
  10312. name: "Micro",
  10313. height: math.unit(2, "cm")
  10314. },
  10315. {
  10316. name: "Normal",
  10317. height: math.unit(2.4, "meters"),
  10318. default: true
  10319. },
  10320. {
  10321. name: "Smaller Macro",
  10322. height: math.unit(120, "meters")
  10323. },
  10324. {
  10325. name: "Bigger Macro",
  10326. height: math.unit(1.2, "km")
  10327. },
  10328. {
  10329. name: "Megamacro",
  10330. height: math.unit(15, "kilometers")
  10331. },
  10332. {
  10333. name: "Gigamacro",
  10334. height: math.unit(2000, "km")
  10335. },
  10336. {
  10337. name: "Teramacro",
  10338. height: math.unit(500000, "km")
  10339. },
  10340. ]
  10341. ))
  10342. characterMakers.push(() => makeCharacter(
  10343. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10344. {
  10345. side: {
  10346. height: math.unit(6, "feet"),
  10347. name: "Side",
  10348. image: {
  10349. source: "./media/characters/ailbhe/side.svg",
  10350. extra: 757 / 464,
  10351. bottom: 0.041
  10352. }
  10353. },
  10354. },
  10355. [
  10356. {
  10357. name: "Normal",
  10358. height: math.unit(1.07, "meters"),
  10359. default: true
  10360. },
  10361. ]
  10362. ))
  10363. characterMakers.push(() => makeCharacter(
  10364. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10365. {
  10366. front: {
  10367. height: math.unit(6, "feet"),
  10368. weight: math.unit(120, "kg"),
  10369. name: "Front",
  10370. image: {
  10371. source: "./media/characters/zevulfius/front.svg",
  10372. extra: 965 / 903
  10373. }
  10374. },
  10375. side: {
  10376. height: math.unit(6, "feet"),
  10377. weight: math.unit(120, "kg"),
  10378. name: "Side",
  10379. image: {
  10380. source: "./media/characters/zevulfius/side.svg",
  10381. extra: 939 / 900
  10382. }
  10383. },
  10384. back: {
  10385. height: math.unit(6, "feet"),
  10386. weight: math.unit(120, "kg"),
  10387. name: "Back",
  10388. image: {
  10389. source: "./media/characters/zevulfius/back.svg",
  10390. extra: 918 / 854,
  10391. bottom: 0.005
  10392. }
  10393. },
  10394. foot: {
  10395. height: math.unit(6 / 3.72, "feet"),
  10396. name: "Foot",
  10397. image: {
  10398. source: "./media/characters/zevulfius/foot.svg"
  10399. }
  10400. },
  10401. },
  10402. [
  10403. {
  10404. name: "Macro",
  10405. height: math.unit(750, "meters")
  10406. },
  10407. {
  10408. name: "Megamacro",
  10409. height: math.unit(20, "km"),
  10410. default: true
  10411. },
  10412. {
  10413. name: "Gigamacro",
  10414. height: math.unit(2000, "km")
  10415. },
  10416. {
  10417. name: "Teramacro",
  10418. height: math.unit(250000, "km")
  10419. },
  10420. ]
  10421. ))
  10422. characterMakers.push(() => makeCharacter(
  10423. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10424. {
  10425. front: {
  10426. height: math.unit(100, "feet"),
  10427. weight: math.unit(350, "kg"),
  10428. name: "Front",
  10429. image: {
  10430. source: "./media/characters/rikes/front.svg",
  10431. extra: 1565 / 1483,
  10432. bottom: 0.017
  10433. }
  10434. },
  10435. },
  10436. [
  10437. {
  10438. name: "Macro",
  10439. height: math.unit(100, "feet"),
  10440. default: true
  10441. },
  10442. ]
  10443. ))
  10444. characterMakers.push(() => makeCharacter(
  10445. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10446. {
  10447. anthro: {
  10448. height: math.unit(8, "feet"),
  10449. weight: math.unit(120, "kg"),
  10450. name: "Anthro",
  10451. image: {
  10452. source: "./media/characters/adam-silver-mane/anthro.svg",
  10453. extra: 5743 / 5339,
  10454. bottom: 0.07
  10455. }
  10456. },
  10457. taur: {
  10458. height: math.unit(16, "feet"),
  10459. weight: math.unit(1500, "kg"),
  10460. name: "Taur",
  10461. image: {
  10462. source: "./media/characters/adam-silver-mane/taur.svg",
  10463. extra: 1713 / 1571,
  10464. bottom: 0.01
  10465. }
  10466. },
  10467. },
  10468. [
  10469. {
  10470. name: "Normal",
  10471. height: math.unit(8, "feet")
  10472. },
  10473. {
  10474. name: "Minimacro",
  10475. height: math.unit(80, "feet")
  10476. },
  10477. {
  10478. name: "Macro",
  10479. height: math.unit(800, "feet"),
  10480. default: true
  10481. },
  10482. {
  10483. name: "Megamacro",
  10484. height: math.unit(8000, "feet")
  10485. },
  10486. {
  10487. name: "Gigamacro",
  10488. height: math.unit(800, "miles")
  10489. },
  10490. {
  10491. name: "Teramacro",
  10492. height: math.unit(80000, "miles")
  10493. },
  10494. {
  10495. name: "Celestial",
  10496. height: math.unit(8e6, "miles")
  10497. },
  10498. {
  10499. name: "Star Dragon",
  10500. height: math.unit(800000, "parsecs")
  10501. },
  10502. {
  10503. name: "Godly",
  10504. height: math.unit(800, "teraparsecs")
  10505. },
  10506. ]
  10507. ))
  10508. characterMakers.push(() => makeCharacter(
  10509. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10510. {
  10511. front: {
  10512. height: math.unit(6, "feet"),
  10513. weight: math.unit(150, "lb"),
  10514. name: "Front",
  10515. image: {
  10516. source: "./media/characters/ky'owin/front.svg",
  10517. extra: 3888 / 3068,
  10518. bottom: 0.015
  10519. }
  10520. },
  10521. },
  10522. [
  10523. {
  10524. name: "Normal",
  10525. height: math.unit(6 + 8 / 12, "feet")
  10526. },
  10527. {
  10528. name: "Large",
  10529. height: math.unit(68, "feet")
  10530. },
  10531. {
  10532. name: "Macro",
  10533. height: math.unit(132, "feet")
  10534. },
  10535. {
  10536. name: "Macro+",
  10537. height: math.unit(340, "feet")
  10538. },
  10539. {
  10540. name: "Macro++",
  10541. height: math.unit(680, "feet"),
  10542. default: true
  10543. },
  10544. {
  10545. name: "Megamacro",
  10546. height: math.unit(1, "mile")
  10547. },
  10548. {
  10549. name: "Megamacro+",
  10550. height: math.unit(10, "miles")
  10551. },
  10552. ]
  10553. ))
  10554. characterMakers.push(() => makeCharacter(
  10555. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10556. {
  10557. front: {
  10558. height: math.unit(4, "feet"),
  10559. weight: math.unit(50, "lb"),
  10560. name: "Front",
  10561. image: {
  10562. source: "./media/characters/mal/front.svg",
  10563. extra: 785 / 724,
  10564. bottom: 0.07
  10565. }
  10566. },
  10567. },
  10568. [
  10569. {
  10570. name: "Micro",
  10571. height: math.unit(4, "inches")
  10572. },
  10573. {
  10574. name: "Normal",
  10575. height: math.unit(4, "feet"),
  10576. default: true
  10577. },
  10578. {
  10579. name: "Macro",
  10580. height: math.unit(200, "feet")
  10581. },
  10582. ]
  10583. ))
  10584. characterMakers.push(() => makeCharacter(
  10585. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10586. {
  10587. front: {
  10588. height: math.unit(6, "feet"),
  10589. weight: math.unit(150, "lb"),
  10590. name: "Front",
  10591. image: {
  10592. source: "./media/characters/jordan-deware/front.svg",
  10593. extra: 1191 / 1012
  10594. }
  10595. },
  10596. },
  10597. [
  10598. {
  10599. name: "Nano",
  10600. height: math.unit(0.01, "mm")
  10601. },
  10602. {
  10603. name: "Minimicro",
  10604. height: math.unit(1, "mm")
  10605. },
  10606. {
  10607. name: "Micro",
  10608. height: math.unit(0.5, "inches")
  10609. },
  10610. {
  10611. name: "Normal",
  10612. height: math.unit(4, "feet"),
  10613. default: true
  10614. },
  10615. {
  10616. name: "Minimacro",
  10617. height: math.unit(40, "meters")
  10618. },
  10619. {
  10620. name: "Small Macro",
  10621. height: math.unit(400, "meters")
  10622. },
  10623. {
  10624. name: "Macro",
  10625. height: math.unit(4, "miles")
  10626. },
  10627. {
  10628. name: "Megamacro",
  10629. height: math.unit(40, "miles")
  10630. },
  10631. {
  10632. name: "Megamacro+",
  10633. height: math.unit(400, "miles")
  10634. },
  10635. {
  10636. name: "Gigamacro",
  10637. height: math.unit(400000, "miles")
  10638. },
  10639. ]
  10640. ))
  10641. characterMakers.push(() => makeCharacter(
  10642. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10643. {
  10644. side: {
  10645. height: math.unit(6, "feet"),
  10646. weight: math.unit(150, "lb"),
  10647. name: "Side",
  10648. image: {
  10649. source: "./media/characters/kimiko/side.svg",
  10650. extra: 600 / 358
  10651. }
  10652. },
  10653. },
  10654. [
  10655. {
  10656. name: "Normal",
  10657. height: math.unit(15, "feet"),
  10658. default: true
  10659. },
  10660. {
  10661. name: "Macro",
  10662. height: math.unit(220, "feet")
  10663. },
  10664. {
  10665. name: "Macro+",
  10666. height: math.unit(1450, "feet")
  10667. },
  10668. {
  10669. name: "Megamacro",
  10670. height: math.unit(11500, "feet")
  10671. },
  10672. {
  10673. name: "Gigamacro",
  10674. height: math.unit(9500, "miles")
  10675. },
  10676. {
  10677. name: "Teramacro",
  10678. height: math.unit(2208005005, "miles")
  10679. },
  10680. {
  10681. name: "Examacro",
  10682. height: math.unit(2750, "parsecs")
  10683. },
  10684. {
  10685. name: "Zettamacro",
  10686. height: math.unit(101500, "parsecs")
  10687. },
  10688. ]
  10689. ))
  10690. characterMakers.push(() => makeCharacter(
  10691. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10692. {
  10693. front: {
  10694. height: math.unit(6, "feet"),
  10695. weight: math.unit(70, "kg"),
  10696. name: "Front",
  10697. image: {
  10698. source: "./media/characters/andrew-sleepy/front.svg"
  10699. }
  10700. },
  10701. side: {
  10702. height: math.unit(6, "feet"),
  10703. weight: math.unit(70, "kg"),
  10704. name: "Side",
  10705. image: {
  10706. source: "./media/characters/andrew-sleepy/side.svg"
  10707. }
  10708. },
  10709. },
  10710. [
  10711. {
  10712. name: "Micro",
  10713. height: math.unit(1, "mm"),
  10714. default: true
  10715. },
  10716. ]
  10717. ))
  10718. characterMakers.push(() => makeCharacter(
  10719. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10720. {
  10721. front: {
  10722. height: math.unit(6, "feet"),
  10723. weight: math.unit(150, "lb"),
  10724. name: "Front",
  10725. image: {
  10726. source: "./media/characters/judio/front.svg",
  10727. extra: 1258 / 1110
  10728. }
  10729. },
  10730. },
  10731. [
  10732. {
  10733. name: "Normal",
  10734. height: math.unit(5 + 6 / 12, "feet")
  10735. },
  10736. {
  10737. name: "Macro",
  10738. height: math.unit(1000, "feet"),
  10739. default: true
  10740. },
  10741. {
  10742. name: "Megamacro",
  10743. height: math.unit(10, "miles")
  10744. },
  10745. ]
  10746. ))
  10747. characterMakers.push(() => makeCharacter(
  10748. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10749. {
  10750. front: {
  10751. height: math.unit(6, "feet"),
  10752. weight: math.unit(68, "kg"),
  10753. name: "Front",
  10754. image: {
  10755. source: "./media/characters/nomaxice/front.svg",
  10756. extra: 1498 / 1073,
  10757. bottom: 0.075
  10758. }
  10759. },
  10760. foot: {
  10761. height: math.unit(1.1, "feet"),
  10762. name: "Foot",
  10763. image: {
  10764. source: "./media/characters/nomaxice/foot.svg"
  10765. }
  10766. },
  10767. },
  10768. [
  10769. {
  10770. name: "Micro",
  10771. height: math.unit(8, "cm")
  10772. },
  10773. {
  10774. name: "Norm",
  10775. height: math.unit(1.82, "m")
  10776. },
  10777. {
  10778. name: "Norm+",
  10779. height: math.unit(8.8, "feet")
  10780. },
  10781. {
  10782. name: "Big",
  10783. height: math.unit(8, "meters"),
  10784. default: true
  10785. },
  10786. {
  10787. name: "Macro",
  10788. height: math.unit(18, "meters")
  10789. },
  10790. {
  10791. name: "Macro+",
  10792. height: math.unit(88, "meters")
  10793. },
  10794. ]
  10795. ))
  10796. characterMakers.push(() => makeCharacter(
  10797. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10798. {
  10799. front: {
  10800. height: math.unit(12, "feet"),
  10801. weight: math.unit(1.5, "tons"),
  10802. name: "Front",
  10803. image: {
  10804. source: "./media/characters/dydros/front.svg",
  10805. extra: 863 / 800,
  10806. bottom: 0.015
  10807. }
  10808. },
  10809. back: {
  10810. height: math.unit(12, "feet"),
  10811. weight: math.unit(1.5, "tons"),
  10812. name: "Back",
  10813. image: {
  10814. source: "./media/characters/dydros/back.svg",
  10815. extra: 900 / 843,
  10816. bottom: 0.005
  10817. }
  10818. },
  10819. },
  10820. [
  10821. {
  10822. name: "Normal",
  10823. height: math.unit(12, "feet"),
  10824. default: true
  10825. },
  10826. ]
  10827. ))
  10828. characterMakers.push(() => makeCharacter(
  10829. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10830. {
  10831. front: {
  10832. height: math.unit(6, "feet"),
  10833. weight: math.unit(100, "kg"),
  10834. name: "Front",
  10835. image: {
  10836. source: "./media/characters/riggi/front.svg",
  10837. extra: 5787 / 5303
  10838. }
  10839. },
  10840. hyper: {
  10841. height: math.unit(6 * 5 / 3, "feet"),
  10842. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10843. name: "Hyper",
  10844. image: {
  10845. source: "./media/characters/riggi/hyper.svg",
  10846. extra: 3595 / 3485
  10847. }
  10848. },
  10849. },
  10850. [
  10851. {
  10852. name: "Small Macro",
  10853. height: math.unit(50, "feet")
  10854. },
  10855. {
  10856. name: "Default",
  10857. height: math.unit(200, "feet"),
  10858. default: true
  10859. },
  10860. {
  10861. name: "Loom",
  10862. height: math.unit(10000, "feet")
  10863. },
  10864. {
  10865. name: "Cruising Altitude",
  10866. height: math.unit(30000, "feet")
  10867. },
  10868. {
  10869. name: "Megamacro",
  10870. height: math.unit(100, "miles")
  10871. },
  10872. {
  10873. name: "Continent Sized",
  10874. height: math.unit(2800, "miles")
  10875. },
  10876. {
  10877. name: "Earth Sized",
  10878. height: math.unit(8000, "miles")
  10879. },
  10880. ]
  10881. ))
  10882. characterMakers.push(() => makeCharacter(
  10883. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10884. {
  10885. front: {
  10886. height: math.unit(6, "feet"),
  10887. weight: math.unit(250, "lb"),
  10888. name: "Front",
  10889. image: {
  10890. source: "./media/characters/alexi/front.svg",
  10891. extra: 3483 / 3291,
  10892. bottom: 0.04
  10893. }
  10894. },
  10895. back: {
  10896. height: math.unit(6, "feet"),
  10897. weight: math.unit(250, "lb"),
  10898. name: "Back",
  10899. image: {
  10900. source: "./media/characters/alexi/back.svg",
  10901. extra: 3533 / 3356,
  10902. bottom: 0.021
  10903. }
  10904. },
  10905. frontTransforming: {
  10906. height: math.unit(8.58, "feet"),
  10907. weight: math.unit(1300, "lb"),
  10908. name: "Transforming",
  10909. image: {
  10910. source: "./media/characters/alexi/front-transforming.svg",
  10911. extra: 437 / 409,
  10912. bottom: 19 / 458.66
  10913. }
  10914. },
  10915. frontTransformed: {
  10916. height: math.unit(12.5, "feet"),
  10917. weight: math.unit(4000, "lb"),
  10918. name: "Transformed",
  10919. image: {
  10920. source: "./media/characters/alexi/front-transformed.svg",
  10921. extra: 639 / 614,
  10922. bottom: 30.55 / 671
  10923. }
  10924. },
  10925. },
  10926. [
  10927. {
  10928. name: "Normal",
  10929. height: math.unit(14, "feet"),
  10930. default: true
  10931. },
  10932. {
  10933. name: "Minimacro",
  10934. height: math.unit(30, "meters")
  10935. },
  10936. {
  10937. name: "Macro",
  10938. height: math.unit(500, "meters")
  10939. },
  10940. {
  10941. name: "Megamacro",
  10942. height: math.unit(9000, "km")
  10943. },
  10944. {
  10945. name: "Teramacro",
  10946. height: math.unit(384000, "km")
  10947. },
  10948. ]
  10949. ))
  10950. characterMakers.push(() => makeCharacter(
  10951. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10952. {
  10953. front: {
  10954. height: math.unit(6, "feet"),
  10955. weight: math.unit(150, "lb"),
  10956. name: "Front",
  10957. image: {
  10958. source: "./media/characters/kayroo/front.svg",
  10959. extra: 1153 / 1038,
  10960. bottom: 0.06
  10961. }
  10962. },
  10963. foot: {
  10964. height: math.unit(6, "feet"),
  10965. weight: math.unit(150, "lb"),
  10966. name: "Foot",
  10967. image: {
  10968. source: "./media/characters/kayroo/foot.svg"
  10969. }
  10970. },
  10971. },
  10972. [
  10973. {
  10974. name: "Normal",
  10975. height: math.unit(8, "feet"),
  10976. default: true
  10977. },
  10978. {
  10979. name: "Minimacro",
  10980. height: math.unit(250, "feet")
  10981. },
  10982. {
  10983. name: "Macro",
  10984. height: math.unit(2800, "feet")
  10985. },
  10986. {
  10987. name: "Megamacro",
  10988. height: math.unit(5200, "feet")
  10989. },
  10990. {
  10991. name: "Gigamacro",
  10992. height: math.unit(27000, "feet")
  10993. },
  10994. {
  10995. name: "Omega",
  10996. height: math.unit(45000, "feet")
  10997. },
  10998. ]
  10999. ))
  11000. characterMakers.push(() => makeCharacter(
  11001. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11002. {
  11003. front: {
  11004. height: math.unit(18, "feet"),
  11005. weight: math.unit(5800, "lb"),
  11006. name: "Front",
  11007. image: {
  11008. source: "./media/characters/rhys/front.svg",
  11009. extra: 3386 / 3090,
  11010. bottom: 0.07
  11011. }
  11012. },
  11013. },
  11014. [
  11015. {
  11016. name: "Normal",
  11017. height: math.unit(18, "feet"),
  11018. default: true
  11019. },
  11020. {
  11021. name: "Working Size",
  11022. height: math.unit(200, "feet")
  11023. },
  11024. {
  11025. name: "Demolition Size",
  11026. height: math.unit(2000, "feet")
  11027. },
  11028. {
  11029. name: "Maximum Licensed Size",
  11030. height: math.unit(5, "miles")
  11031. },
  11032. {
  11033. name: "Maximum Observed Size",
  11034. height: math.unit(10, "yottameters")
  11035. },
  11036. ]
  11037. ))
  11038. characterMakers.push(() => makeCharacter(
  11039. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11040. {
  11041. front: {
  11042. height: math.unit(6, "feet"),
  11043. weight: math.unit(250, "lb"),
  11044. name: "Front",
  11045. image: {
  11046. source: "./media/characters/toto/front.svg",
  11047. extra: 527 / 479,
  11048. bottom: 0.05
  11049. }
  11050. },
  11051. },
  11052. [
  11053. {
  11054. name: "Micro",
  11055. height: math.unit(3, "feet")
  11056. },
  11057. {
  11058. name: "Normal",
  11059. height: math.unit(10, "feet")
  11060. },
  11061. {
  11062. name: "Macro",
  11063. height: math.unit(150, "feet"),
  11064. default: true
  11065. },
  11066. {
  11067. name: "Megamacro",
  11068. height: math.unit(1200, "feet")
  11069. },
  11070. ]
  11071. ))
  11072. characterMakers.push(() => makeCharacter(
  11073. { name: "King", species: ["lion"], tags: ["anthro"] },
  11074. {
  11075. back: {
  11076. height: math.unit(6, "feet"),
  11077. weight: math.unit(150, "lb"),
  11078. name: "Back",
  11079. image: {
  11080. source: "./media/characters/king/back.svg"
  11081. }
  11082. },
  11083. },
  11084. [
  11085. {
  11086. name: "Micro",
  11087. height: math.unit(2, "inches")
  11088. },
  11089. {
  11090. name: "Normal",
  11091. height: math.unit(8, "feet")
  11092. },
  11093. {
  11094. name: "Macro",
  11095. height: math.unit(200, "feet"),
  11096. default: true
  11097. },
  11098. {
  11099. name: "Megamacro",
  11100. height: math.unit(50, "miles")
  11101. },
  11102. ]
  11103. ))
  11104. characterMakers.push(() => makeCharacter(
  11105. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11106. {
  11107. anthro: {
  11108. height: math.unit(6 + 5 / 12, "feet"),
  11109. weight: math.unit(280, "lb"),
  11110. name: "Anthro",
  11111. image: {
  11112. source: "./media/characters/cordite/anthro.svg",
  11113. extra: 1986 / 1905,
  11114. bottom: 0.025
  11115. }
  11116. },
  11117. feral: {
  11118. height: math.unit(2, "feet"),
  11119. weight: math.unit(90, "lb"),
  11120. name: "Feral",
  11121. image: {
  11122. source: "./media/characters/cordite/feral.svg",
  11123. extra: 1260 / 755,
  11124. bottom: 0.05
  11125. }
  11126. },
  11127. },
  11128. [
  11129. {
  11130. name: "Normal",
  11131. height: math.unit(6 + 5 / 12, "feet"),
  11132. default: true
  11133. },
  11134. ]
  11135. ))
  11136. characterMakers.push(() => makeCharacter(
  11137. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11138. {
  11139. front: {
  11140. height: math.unit(6, "feet"),
  11141. weight: math.unit(150, "lb"),
  11142. name: "Front",
  11143. image: {
  11144. source: "./media/characters/pianostrong/front.svg",
  11145. extra: 6577 / 6254,
  11146. bottom: 0.02
  11147. }
  11148. },
  11149. side: {
  11150. height: math.unit(6, "feet"),
  11151. weight: math.unit(150, "lb"),
  11152. name: "Side",
  11153. image: {
  11154. source: "./media/characters/pianostrong/side.svg",
  11155. extra: 6106 / 5730
  11156. }
  11157. },
  11158. back: {
  11159. height: math.unit(6, "feet"),
  11160. weight: math.unit(150, "lb"),
  11161. name: "Back",
  11162. image: {
  11163. source: "./media/characters/pianostrong/back.svg",
  11164. extra: 6085 / 5733,
  11165. bottom: 0.01
  11166. }
  11167. },
  11168. },
  11169. [
  11170. {
  11171. name: "Macro",
  11172. height: math.unit(100, "feet")
  11173. },
  11174. {
  11175. name: "Macro+",
  11176. height: math.unit(300, "feet"),
  11177. default: true
  11178. },
  11179. {
  11180. name: "Macro++",
  11181. height: math.unit(1000, "feet")
  11182. },
  11183. ]
  11184. ))
  11185. characterMakers.push(() => makeCharacter(
  11186. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11187. {
  11188. front: {
  11189. height: math.unit(6, "feet"),
  11190. weight: math.unit(150, "lb"),
  11191. name: "Front",
  11192. image: {
  11193. source: "./media/characters/kona/front.svg",
  11194. extra: 2960 / 2629,
  11195. bottom: 0.005
  11196. }
  11197. },
  11198. },
  11199. [
  11200. {
  11201. name: "Normal",
  11202. height: math.unit(11 + 8 / 12, "feet")
  11203. },
  11204. {
  11205. name: "Macro",
  11206. height: math.unit(850, "feet"),
  11207. default: true
  11208. },
  11209. {
  11210. name: "Macro+",
  11211. height: math.unit(1.5, "km"),
  11212. default: true
  11213. },
  11214. {
  11215. name: "Megamacro",
  11216. height: math.unit(80, "miles")
  11217. },
  11218. {
  11219. name: "Gigamacro",
  11220. height: math.unit(3500, "miles")
  11221. },
  11222. ]
  11223. ))
  11224. characterMakers.push(() => makeCharacter(
  11225. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11226. {
  11227. side: {
  11228. height: math.unit(1.9, "meters"),
  11229. weight: math.unit(326, "kg"),
  11230. name: "Side",
  11231. image: {
  11232. source: "./media/characters/levi/side.svg",
  11233. extra: 1704 / 1334,
  11234. bottom: 0.02
  11235. }
  11236. },
  11237. },
  11238. [
  11239. {
  11240. name: "Normal",
  11241. height: math.unit(1.9, "meters"),
  11242. default: true
  11243. },
  11244. {
  11245. name: "Macro",
  11246. height: math.unit(20, "meters")
  11247. },
  11248. {
  11249. name: "Macro+",
  11250. height: math.unit(200, "meters")
  11251. },
  11252. {
  11253. name: "Megamacro",
  11254. height: math.unit(2, "km")
  11255. },
  11256. {
  11257. name: "Megamacro+",
  11258. height: math.unit(20, "km")
  11259. },
  11260. {
  11261. name: "Gigamacro",
  11262. height: math.unit(2500, "km")
  11263. },
  11264. {
  11265. name: "Gigamacro+",
  11266. height: math.unit(120000, "km")
  11267. },
  11268. {
  11269. name: "Teramacro",
  11270. height: math.unit(7.77e6, "km")
  11271. },
  11272. ]
  11273. ))
  11274. characterMakers.push(() => makeCharacter(
  11275. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11276. {
  11277. front: {
  11278. height: math.unit(6 + 4/12, "feet"),
  11279. weight: math.unit(190, "lb"),
  11280. name: "Front",
  11281. image: {
  11282. source: "./media/characters/bmc/front.svg",
  11283. extra: 1626/1472,
  11284. bottom: 79/1705
  11285. }
  11286. },
  11287. back: {
  11288. height: math.unit(6 + 4/12, "feet"),
  11289. weight: math.unit(190, "lb"),
  11290. name: "Back",
  11291. image: {
  11292. source: "./media/characters/bmc/back.svg",
  11293. extra: 1640/1479,
  11294. bottom: 45/1685
  11295. }
  11296. },
  11297. frontArmor: {
  11298. height: math.unit(6 + 4/12, "feet"),
  11299. weight: math.unit(190, "lb"),
  11300. name: "Front-armor",
  11301. image: {
  11302. source: "./media/characters/bmc/front-armor.svg",
  11303. extra: 1538/1468,
  11304. bottom: 79/1617
  11305. }
  11306. },
  11307. },
  11308. [
  11309. {
  11310. name: "Human-sized",
  11311. height: math.unit(6 + 4 / 12, "feet")
  11312. },
  11313. {
  11314. name: "Interactive Size",
  11315. height: math.unit(25, "feet")
  11316. },
  11317. {
  11318. name: "Small",
  11319. height: math.unit(250, "feet")
  11320. },
  11321. {
  11322. name: "Normal",
  11323. height: math.unit(1250, "feet"),
  11324. default: true
  11325. },
  11326. {
  11327. name: "Good Day",
  11328. height: math.unit(88, "miles")
  11329. },
  11330. {
  11331. name: "Largest Measured Size",
  11332. height: math.unit(105.960, "galaxies")
  11333. },
  11334. ]
  11335. ))
  11336. characterMakers.push(() => makeCharacter(
  11337. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11338. {
  11339. front: {
  11340. height: math.unit(20, "feet"),
  11341. weight: math.unit(2016, "kg"),
  11342. name: "Front",
  11343. image: {
  11344. source: "./media/characters/sven-the-kaiju/front.svg",
  11345. extra: 1277/1250,
  11346. bottom: 35/1312
  11347. }
  11348. },
  11349. mouth: {
  11350. height: math.unit(1.85, "feet"),
  11351. name: "Mouth",
  11352. image: {
  11353. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11354. }
  11355. },
  11356. },
  11357. [
  11358. {
  11359. name: "Fairy",
  11360. height: math.unit(6, "inches")
  11361. },
  11362. {
  11363. name: "Normal",
  11364. height: math.unit(20, "feet"),
  11365. default: true
  11366. },
  11367. {
  11368. name: "Rampage",
  11369. height: math.unit(200, "feet")
  11370. },
  11371. {
  11372. name: "Archfey Forest Guardian",
  11373. height: math.unit(1, "mile")
  11374. },
  11375. ]
  11376. ))
  11377. characterMakers.push(() => makeCharacter(
  11378. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11379. {
  11380. front: {
  11381. height: math.unit(4, "meters"),
  11382. weight: math.unit(2, "tons"),
  11383. name: "Front",
  11384. image: {
  11385. source: "./media/characters/marik/front.svg",
  11386. extra: 1057 / 1003,
  11387. bottom: 0.08
  11388. }
  11389. },
  11390. },
  11391. [
  11392. {
  11393. name: "Normal",
  11394. height: math.unit(4, "meters"),
  11395. default: true
  11396. },
  11397. {
  11398. name: "Macro",
  11399. height: math.unit(20, "meters")
  11400. },
  11401. {
  11402. name: "Megamacro",
  11403. height: math.unit(50, "km")
  11404. },
  11405. {
  11406. name: "Gigamacro",
  11407. height: math.unit(100, "km")
  11408. },
  11409. {
  11410. name: "Alpha Macro",
  11411. height: math.unit(7.88e7, "yottameters")
  11412. },
  11413. ]
  11414. ))
  11415. characterMakers.push(() => makeCharacter(
  11416. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11417. {
  11418. front: {
  11419. height: math.unit(6, "feet"),
  11420. weight: math.unit(110, "lb"),
  11421. name: "Front",
  11422. image: {
  11423. source: "./media/characters/mel/front.svg",
  11424. extra: 736 / 617,
  11425. bottom: 0.017
  11426. }
  11427. },
  11428. },
  11429. [
  11430. {
  11431. name: "Pico",
  11432. height: math.unit(3, "pm")
  11433. },
  11434. {
  11435. name: "Nano",
  11436. height: math.unit(3, "nm")
  11437. },
  11438. {
  11439. name: "Micro",
  11440. height: math.unit(0.3, "mm"),
  11441. default: true
  11442. },
  11443. {
  11444. name: "Micro+",
  11445. height: math.unit(3, "mm")
  11446. },
  11447. {
  11448. name: "Normal",
  11449. height: math.unit(5 + 10.5 / 12, "feet")
  11450. },
  11451. ]
  11452. ))
  11453. characterMakers.push(() => makeCharacter(
  11454. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11455. {
  11456. kaiju: {
  11457. height: math.unit(1.75, "meters"),
  11458. weight: math.unit(55, "kg"),
  11459. name: "Kaiju",
  11460. image: {
  11461. source: "./media/characters/lykonous/kaiju.svg",
  11462. extra: 1055 / 946,
  11463. bottom: 0.135
  11464. }
  11465. },
  11466. },
  11467. [
  11468. {
  11469. name: "Normal",
  11470. height: math.unit(2.5, "meters"),
  11471. default: true
  11472. },
  11473. {
  11474. name: "Kaiju Dragon",
  11475. height: math.unit(60, "meters")
  11476. },
  11477. {
  11478. name: "Mega Kaiju",
  11479. height: math.unit(120, "km")
  11480. },
  11481. {
  11482. name: "Giga Kaiju",
  11483. height: math.unit(200, "megameters")
  11484. },
  11485. {
  11486. name: "Terra Kaiju",
  11487. height: math.unit(400, "gigameters")
  11488. },
  11489. {
  11490. name: "Kaiju Dragon God",
  11491. height: math.unit(13000, "exaparsecs")
  11492. },
  11493. ]
  11494. ))
  11495. characterMakers.push(() => makeCharacter(
  11496. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11497. {
  11498. front: {
  11499. height: math.unit(6, "feet"),
  11500. weight: math.unit(150, "lb"),
  11501. name: "Front",
  11502. image: {
  11503. source: "./media/characters/blü/front.svg",
  11504. extra: 1883 / 1564,
  11505. bottom: 0.031
  11506. }
  11507. },
  11508. },
  11509. [
  11510. {
  11511. name: "Normal",
  11512. height: math.unit(13, "feet"),
  11513. default: true
  11514. },
  11515. {
  11516. name: "Big Boi",
  11517. height: math.unit(150, "meters")
  11518. },
  11519. {
  11520. name: "Mini Stomper",
  11521. height: math.unit(300, "meters")
  11522. },
  11523. {
  11524. name: "Macro",
  11525. height: math.unit(1000, "meters")
  11526. },
  11527. {
  11528. name: "Megamacro",
  11529. height: math.unit(11000, "meters")
  11530. },
  11531. {
  11532. name: "Gigamacro",
  11533. height: math.unit(11000, "km")
  11534. },
  11535. {
  11536. name: "Teramacro",
  11537. height: math.unit(420000, "km")
  11538. },
  11539. {
  11540. name: "Examacro",
  11541. height: math.unit(120, "parsecs")
  11542. },
  11543. {
  11544. name: "God Tho",
  11545. height: math.unit(98000000000, "parsecs")
  11546. },
  11547. ]
  11548. ))
  11549. characterMakers.push(() => makeCharacter(
  11550. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11551. {
  11552. taurFront: {
  11553. height: math.unit(6, "feet"),
  11554. weight: math.unit(200, "lb"),
  11555. name: "Taur (Front)",
  11556. image: {
  11557. source: "./media/characters/scales/taur-front.svg",
  11558. extra: 1,
  11559. bottom: 0.05
  11560. }
  11561. },
  11562. taurBack: {
  11563. height: math.unit(6, "feet"),
  11564. weight: math.unit(200, "lb"),
  11565. name: "Taur (Back)",
  11566. image: {
  11567. source: "./media/characters/scales/taur-back.svg",
  11568. extra: 1,
  11569. bottom: 0.08
  11570. }
  11571. },
  11572. anthro: {
  11573. height: math.unit(6 * 7 / 12, "feet"),
  11574. weight: math.unit(100, "lb"),
  11575. name: "Anthro",
  11576. image: {
  11577. source: "./media/characters/scales/anthro.svg",
  11578. extra: 1,
  11579. bottom: 0.06
  11580. }
  11581. },
  11582. },
  11583. [
  11584. {
  11585. name: "Normal",
  11586. height: math.unit(12, "feet"),
  11587. default: true
  11588. },
  11589. ]
  11590. ))
  11591. characterMakers.push(() => makeCharacter(
  11592. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11593. {
  11594. front: {
  11595. height: math.unit(6, "feet"),
  11596. weight: math.unit(150, "lb"),
  11597. name: "Front",
  11598. image: {
  11599. source: "./media/characters/koragos/front.svg",
  11600. extra: 841 / 794,
  11601. bottom: 0.035
  11602. }
  11603. },
  11604. back: {
  11605. height: math.unit(6, "feet"),
  11606. weight: math.unit(150, "lb"),
  11607. name: "Back",
  11608. image: {
  11609. source: "./media/characters/koragos/back.svg",
  11610. extra: 841 / 810,
  11611. bottom: 0.022
  11612. }
  11613. },
  11614. },
  11615. [
  11616. {
  11617. name: "Normal",
  11618. height: math.unit(6 + 11 / 12, "feet"),
  11619. default: true
  11620. },
  11621. {
  11622. name: "Macro",
  11623. height: math.unit(490, "feet")
  11624. },
  11625. {
  11626. name: "Megamacro",
  11627. height: math.unit(10, "miles")
  11628. },
  11629. {
  11630. name: "Gigamacro",
  11631. height: math.unit(50, "miles")
  11632. },
  11633. ]
  11634. ))
  11635. characterMakers.push(() => makeCharacter(
  11636. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11637. {
  11638. front: {
  11639. height: math.unit(6, "feet"),
  11640. weight: math.unit(250, "lb"),
  11641. name: "Front",
  11642. image: {
  11643. source: "./media/characters/xylrem/front.svg",
  11644. extra: 3323 / 3050,
  11645. bottom: 0.065
  11646. }
  11647. },
  11648. },
  11649. [
  11650. {
  11651. name: "Micro",
  11652. height: math.unit(4, "feet")
  11653. },
  11654. {
  11655. name: "Normal",
  11656. height: math.unit(16, "feet"),
  11657. default: true
  11658. },
  11659. {
  11660. name: "Macro",
  11661. height: math.unit(2720, "feet")
  11662. },
  11663. {
  11664. name: "Megamacro",
  11665. height: math.unit(25000, "miles")
  11666. },
  11667. ]
  11668. ))
  11669. characterMakers.push(() => makeCharacter(
  11670. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11671. {
  11672. front: {
  11673. height: math.unit(8, "feet"),
  11674. weight: math.unit(250, "kg"),
  11675. name: "Front",
  11676. image: {
  11677. source: "./media/characters/ikideru/front.svg",
  11678. extra: 930 / 870,
  11679. bottom: 0.087
  11680. }
  11681. },
  11682. back: {
  11683. height: math.unit(8, "feet"),
  11684. weight: math.unit(250, "kg"),
  11685. name: "Back",
  11686. image: {
  11687. source: "./media/characters/ikideru/back.svg",
  11688. extra: 919 / 852,
  11689. bottom: 0.055
  11690. }
  11691. },
  11692. },
  11693. [
  11694. {
  11695. name: "Rare",
  11696. height: math.unit(8, "feet"),
  11697. default: true
  11698. },
  11699. {
  11700. name: "Playful Loom",
  11701. height: math.unit(80, "feet")
  11702. },
  11703. {
  11704. name: "City Leaner",
  11705. height: math.unit(230, "feet")
  11706. },
  11707. {
  11708. name: "Megamacro",
  11709. height: math.unit(2500, "feet")
  11710. },
  11711. {
  11712. name: "Gigamacro",
  11713. height: math.unit(26400, "feet")
  11714. },
  11715. {
  11716. name: "Tectonic Shifter",
  11717. height: math.unit(1.7, "megameters")
  11718. },
  11719. {
  11720. name: "Planet Carer",
  11721. height: math.unit(21, "megameters")
  11722. },
  11723. {
  11724. name: "God",
  11725. height: math.unit(11157.22, "parsecs")
  11726. },
  11727. ]
  11728. ))
  11729. characterMakers.push(() => makeCharacter(
  11730. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11731. {
  11732. front: {
  11733. height: math.unit(6, "feet"),
  11734. weight: math.unit(120, "lb"),
  11735. name: "Front",
  11736. image: {
  11737. source: "./media/characters/neo/front.svg"
  11738. }
  11739. },
  11740. },
  11741. [
  11742. {
  11743. name: "Micro",
  11744. height: math.unit(2, "inches"),
  11745. default: true
  11746. },
  11747. {
  11748. name: "Human Size",
  11749. height: math.unit(5 + 8 / 12, "feet")
  11750. },
  11751. ]
  11752. ))
  11753. characterMakers.push(() => makeCharacter(
  11754. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11755. {
  11756. front: {
  11757. height: math.unit(13 + 10 / 12, "feet"),
  11758. weight: math.unit(5320, "lb"),
  11759. name: "Front",
  11760. image: {
  11761. source: "./media/characters/chauncey-chantz/front.svg",
  11762. extra: 1587 / 1435,
  11763. bottom: 0.02
  11764. }
  11765. },
  11766. },
  11767. [
  11768. {
  11769. name: "Normal",
  11770. height: math.unit(13 + 10 / 12, "feet"),
  11771. default: true
  11772. },
  11773. {
  11774. name: "Macro",
  11775. height: math.unit(45, "feet")
  11776. },
  11777. {
  11778. name: "Megamacro",
  11779. height: math.unit(250, "miles")
  11780. },
  11781. {
  11782. name: "Planetary",
  11783. height: math.unit(10000, "miles")
  11784. },
  11785. {
  11786. name: "Galactic",
  11787. height: math.unit(40000, "parsecs")
  11788. },
  11789. {
  11790. name: "Universal",
  11791. height: math.unit(1, "yottameter")
  11792. },
  11793. ]
  11794. ))
  11795. characterMakers.push(() => makeCharacter(
  11796. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11797. {
  11798. front: {
  11799. height: math.unit(6, "feet"),
  11800. weight: math.unit(150, "lb"),
  11801. name: "Front",
  11802. image: {
  11803. source: "./media/characters/epifox/front.svg",
  11804. extra: 1,
  11805. bottom: 0.075
  11806. }
  11807. },
  11808. },
  11809. [
  11810. {
  11811. name: "Micro",
  11812. height: math.unit(6, "inches")
  11813. },
  11814. {
  11815. name: "Normal",
  11816. height: math.unit(12, "feet"),
  11817. default: true
  11818. },
  11819. {
  11820. name: "Macro",
  11821. height: math.unit(3810, "feet")
  11822. },
  11823. {
  11824. name: "Megamacro",
  11825. height: math.unit(500, "miles")
  11826. },
  11827. ]
  11828. ))
  11829. characterMakers.push(() => makeCharacter(
  11830. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11831. {
  11832. front: {
  11833. height: math.unit(1.8796, "m"),
  11834. weight: math.unit(230, "lb"),
  11835. name: "Front",
  11836. image: {
  11837. source: "./media/characters/colin-t/front.svg",
  11838. extra: 1272 / 1193,
  11839. bottom: 0.07
  11840. }
  11841. },
  11842. },
  11843. [
  11844. {
  11845. name: "Micro",
  11846. height: math.unit(0.571, "meters")
  11847. },
  11848. {
  11849. name: "Normal",
  11850. height: math.unit(1.8796, "meters"),
  11851. default: true
  11852. },
  11853. {
  11854. name: "Tall",
  11855. height: math.unit(4, "meters")
  11856. },
  11857. {
  11858. name: "Macro",
  11859. height: math.unit(67.241, "meters")
  11860. },
  11861. {
  11862. name: "Megamacro",
  11863. height: math.unit(371.856, "meters")
  11864. },
  11865. {
  11866. name: "Planetary",
  11867. height: math.unit(12631.5689, "km")
  11868. },
  11869. ]
  11870. ))
  11871. characterMakers.push(() => makeCharacter(
  11872. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11873. {
  11874. front: {
  11875. height: math.unit(1.85, "meters"),
  11876. weight: math.unit(80, "kg"),
  11877. name: "Front",
  11878. image: {
  11879. source: "./media/characters/matvei/front.svg",
  11880. extra: 614 / 594,
  11881. bottom: 0.01
  11882. }
  11883. },
  11884. },
  11885. [
  11886. {
  11887. name: "Normal",
  11888. height: math.unit(1.85, "meters"),
  11889. default: true
  11890. },
  11891. ]
  11892. ))
  11893. characterMakers.push(() => makeCharacter(
  11894. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11895. {
  11896. front: {
  11897. height: math.unit(5 + 9 / 12, "feet"),
  11898. weight: math.unit(70, "lb"),
  11899. name: "Front",
  11900. image: {
  11901. source: "./media/characters/quincy/front.svg",
  11902. extra: 3041 / 2751
  11903. }
  11904. },
  11905. back: {
  11906. height: math.unit(5 + 9 / 12, "feet"),
  11907. weight: math.unit(70, "lb"),
  11908. name: "Back",
  11909. image: {
  11910. source: "./media/characters/quincy/back.svg",
  11911. extra: 3041 / 2751
  11912. }
  11913. },
  11914. flying: {
  11915. height: math.unit(5 + 4 / 12, "feet"),
  11916. weight: math.unit(70, "lb"),
  11917. name: "Flying",
  11918. image: {
  11919. source: "./media/characters/quincy/flying.svg",
  11920. extra: 1044 / 930
  11921. }
  11922. },
  11923. },
  11924. [
  11925. {
  11926. name: "Micro",
  11927. height: math.unit(3, "cm")
  11928. },
  11929. {
  11930. name: "Normal",
  11931. height: math.unit(5 + 9 / 12, "feet")
  11932. },
  11933. {
  11934. name: "Macro",
  11935. height: math.unit(200, "meters"),
  11936. default: true
  11937. },
  11938. {
  11939. name: "Megamacro",
  11940. height: math.unit(1000, "meters")
  11941. },
  11942. ]
  11943. ))
  11944. characterMakers.push(() => makeCharacter(
  11945. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11946. {
  11947. front: {
  11948. height: math.unit(3 + 11/12, "feet"),
  11949. weight: math.unit(50, "lb"),
  11950. name: "Front",
  11951. image: {
  11952. source: "./media/characters/vanrel/front.svg",
  11953. extra: 1104/949,
  11954. bottom: 52/1156
  11955. }
  11956. },
  11957. back: {
  11958. height: math.unit(3 + 11/12, "feet"),
  11959. weight: math.unit(50, "lb"),
  11960. name: "Back",
  11961. image: {
  11962. source: "./media/characters/vanrel/back.svg",
  11963. extra: 1119/976,
  11964. bottom: 37/1156
  11965. }
  11966. },
  11967. tome: {
  11968. height: math.unit(1.35, "feet"),
  11969. weight: math.unit(10, "lb"),
  11970. name: "Vanrel's Tome",
  11971. rename: true,
  11972. image: {
  11973. source: "./media/characters/vanrel/tome.svg"
  11974. }
  11975. },
  11976. beans: {
  11977. height: math.unit(0.89, "feet"),
  11978. name: "Beans",
  11979. image: {
  11980. source: "./media/characters/vanrel/beans.svg"
  11981. }
  11982. },
  11983. },
  11984. [
  11985. {
  11986. name: "Normal",
  11987. height: math.unit(3 + 11/12, "feet"),
  11988. default: true
  11989. },
  11990. ]
  11991. ))
  11992. characterMakers.push(() => makeCharacter(
  11993. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11994. {
  11995. front: {
  11996. height: math.unit(7 + 5 / 12, "feet"),
  11997. name: "Front",
  11998. image: {
  11999. source: "./media/characters/kuiper-vanrel/front.svg",
  12000. extra: 1219/1169,
  12001. bottom: 69/1288
  12002. }
  12003. },
  12004. back: {
  12005. height: math.unit(7 + 5 / 12, "feet"),
  12006. name: "Back",
  12007. image: {
  12008. source: "./media/characters/kuiper-vanrel/back.svg",
  12009. extra: 1236/1193,
  12010. bottom: 27/1263
  12011. }
  12012. },
  12013. foot: {
  12014. height: math.unit(0.55, "meters"),
  12015. name: "Foot",
  12016. image: {
  12017. source: "./media/characters/kuiper-vanrel/foot.svg",
  12018. }
  12019. },
  12020. battle: {
  12021. height: math.unit(6.824, "feet"),
  12022. name: "Battle",
  12023. image: {
  12024. source: "./media/characters/kuiper-vanrel/battle.svg",
  12025. extra: 1466 / 1327,
  12026. bottom: 29 / 1492.5
  12027. }
  12028. },
  12029. meerkui: {
  12030. height: math.unit(18, "inches"),
  12031. name: "Meerkui",
  12032. image: {
  12033. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12034. extra: 1354/1289,
  12035. bottom: 69/1423
  12036. }
  12037. },
  12038. },
  12039. [
  12040. {
  12041. name: "Normal",
  12042. height: math.unit(7 + 5 / 12, "feet"),
  12043. default: true
  12044. },
  12045. ]
  12046. ))
  12047. characterMakers.push(() => makeCharacter(
  12048. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12049. {
  12050. front: {
  12051. height: math.unit(8 + 5 / 12, "feet"),
  12052. name: "Front",
  12053. image: {
  12054. source: "./media/characters/keset-vanrel/front.svg",
  12055. extra: 1231/1148,
  12056. bottom: 82/1313
  12057. }
  12058. },
  12059. back: {
  12060. height: math.unit(8 + 5 / 12, "feet"),
  12061. name: "Back",
  12062. image: {
  12063. source: "./media/characters/keset-vanrel/back.svg",
  12064. extra: 1240/1174,
  12065. bottom: 33/1273
  12066. }
  12067. },
  12068. hand: {
  12069. height: math.unit(0.6, "meters"),
  12070. name: "Hand",
  12071. image: {
  12072. source: "./media/characters/keset-vanrel/hand.svg"
  12073. }
  12074. },
  12075. foot: {
  12076. height: math.unit(0.94978, "meters"),
  12077. name: "Foot",
  12078. image: {
  12079. source: "./media/characters/keset-vanrel/foot.svg"
  12080. }
  12081. },
  12082. battle: {
  12083. height: math.unit(7.408, "feet"),
  12084. name: "Battle",
  12085. image: {
  12086. source: "./media/characters/keset-vanrel/battle.svg",
  12087. extra: 1890 / 1386,
  12088. bottom: 73.28 / 1970
  12089. }
  12090. },
  12091. },
  12092. [
  12093. {
  12094. name: "Normal",
  12095. height: math.unit(8 + 5 / 12, "feet"),
  12096. default: true
  12097. },
  12098. ]
  12099. ))
  12100. characterMakers.push(() => makeCharacter(
  12101. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12102. {
  12103. front: {
  12104. height: math.unit(6, "feet"),
  12105. weight: math.unit(150, "lb"),
  12106. name: "Front",
  12107. image: {
  12108. source: "./media/characters/neos/front.svg",
  12109. extra: 1696 / 992,
  12110. bottom: 0.14
  12111. }
  12112. },
  12113. },
  12114. [
  12115. {
  12116. name: "Normal",
  12117. height: math.unit(54, "cm"),
  12118. default: true
  12119. },
  12120. {
  12121. name: "Macro",
  12122. height: math.unit(100, "m")
  12123. },
  12124. {
  12125. name: "Megamacro",
  12126. height: math.unit(10, "km")
  12127. },
  12128. {
  12129. name: "Megamacro+",
  12130. height: math.unit(100, "km")
  12131. },
  12132. {
  12133. name: "Gigamacro",
  12134. height: math.unit(100, "Mm")
  12135. },
  12136. {
  12137. name: "Teramacro",
  12138. height: math.unit(100, "Gm")
  12139. },
  12140. {
  12141. name: "Examacro",
  12142. height: math.unit(100, "Em")
  12143. },
  12144. {
  12145. name: "Godly",
  12146. height: math.unit(10000, "Ym")
  12147. },
  12148. {
  12149. name: "Beyond Godly",
  12150. height: math.unit(25, "multiverses")
  12151. },
  12152. ]
  12153. ))
  12154. characterMakers.push(() => makeCharacter(
  12155. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12156. {
  12157. feminine: {
  12158. height: math.unit(5, "feet"),
  12159. weight: math.unit(100, "lb"),
  12160. name: "Feminine",
  12161. image: {
  12162. source: "./media/characters/sammy-mouse/feminine.svg",
  12163. extra: 2526 / 2425,
  12164. bottom: 0.123
  12165. }
  12166. },
  12167. masculine: {
  12168. height: math.unit(5, "feet"),
  12169. weight: math.unit(100, "lb"),
  12170. name: "Masculine",
  12171. image: {
  12172. source: "./media/characters/sammy-mouse/masculine.svg",
  12173. extra: 2526 / 2425,
  12174. bottom: 0.123
  12175. }
  12176. },
  12177. },
  12178. [
  12179. {
  12180. name: "Micro",
  12181. height: math.unit(5, "inches")
  12182. },
  12183. {
  12184. name: "Normal",
  12185. height: math.unit(5, "feet"),
  12186. default: true
  12187. },
  12188. {
  12189. name: "Macro",
  12190. height: math.unit(60, "feet")
  12191. },
  12192. ]
  12193. ))
  12194. characterMakers.push(() => makeCharacter(
  12195. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12196. {
  12197. front: {
  12198. height: math.unit(4, "feet"),
  12199. weight: math.unit(50, "lb"),
  12200. name: "Front",
  12201. image: {
  12202. source: "./media/characters/kole/front.svg",
  12203. extra: 1423 / 1303,
  12204. bottom: 0.025
  12205. }
  12206. },
  12207. back: {
  12208. height: math.unit(4, "feet"),
  12209. weight: math.unit(50, "lb"),
  12210. name: "Back",
  12211. image: {
  12212. source: "./media/characters/kole/back.svg",
  12213. extra: 1426 / 1280,
  12214. bottom: 0.02
  12215. }
  12216. },
  12217. },
  12218. [
  12219. {
  12220. name: "Normal",
  12221. height: math.unit(4, "feet"),
  12222. default: true
  12223. },
  12224. ]
  12225. ))
  12226. characterMakers.push(() => makeCharacter(
  12227. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12228. {
  12229. front: {
  12230. height: math.unit(2.5, "feet"),
  12231. weight: math.unit(32, "lb"),
  12232. name: "Front",
  12233. image: {
  12234. source: "./media/characters/rufran/front.svg",
  12235. extra: 1313/885,
  12236. bottom: 94/1407
  12237. }
  12238. },
  12239. side: {
  12240. height: math.unit(2.5, "feet"),
  12241. weight: math.unit(32, "lb"),
  12242. name: "Side",
  12243. image: {
  12244. source: "./media/characters/rufran/side.svg",
  12245. extra: 1109/852,
  12246. bottom: 118/1227
  12247. }
  12248. },
  12249. back: {
  12250. height: math.unit(2.5, "feet"),
  12251. weight: math.unit(32, "lb"),
  12252. name: "Back",
  12253. image: {
  12254. source: "./media/characters/rufran/back.svg",
  12255. extra: 1280/878,
  12256. bottom: 131/1411
  12257. }
  12258. },
  12259. mouth: {
  12260. height: math.unit(1.13, "feet"),
  12261. name: "Mouth",
  12262. image: {
  12263. source: "./media/characters/rufran/mouth.svg"
  12264. }
  12265. },
  12266. foot: {
  12267. height: math.unit(1.33, "feet"),
  12268. name: "Foot",
  12269. image: {
  12270. source: "./media/characters/rufran/foot.svg"
  12271. }
  12272. },
  12273. koboldFront: {
  12274. height: math.unit(2 + 6 / 12, "feet"),
  12275. weight: math.unit(20, "lb"),
  12276. name: "Front (Kobold)",
  12277. image: {
  12278. source: "./media/characters/rufran/kobold-front.svg",
  12279. extra: 2041 / 1839,
  12280. bottom: 0.055
  12281. }
  12282. },
  12283. koboldBack: {
  12284. height: math.unit(2 + 6 / 12, "feet"),
  12285. weight: math.unit(20, "lb"),
  12286. name: "Back (Kobold)",
  12287. image: {
  12288. source: "./media/characters/rufran/kobold-back.svg",
  12289. extra: 2054 / 1839,
  12290. bottom: 0.01
  12291. }
  12292. },
  12293. koboldHand: {
  12294. height: math.unit(0.2166, "meters"),
  12295. name: "Hand (Kobold)",
  12296. image: {
  12297. source: "./media/characters/rufran/kobold-hand.svg"
  12298. }
  12299. },
  12300. koboldFoot: {
  12301. height: math.unit(0.185, "meters"),
  12302. name: "Foot (Kobold)",
  12303. image: {
  12304. source: "./media/characters/rufran/kobold-foot.svg"
  12305. }
  12306. },
  12307. },
  12308. [
  12309. {
  12310. name: "Micro",
  12311. height: math.unit(1, "inch")
  12312. },
  12313. {
  12314. name: "Normal",
  12315. height: math.unit(2 + 6 / 12, "feet"),
  12316. default: true
  12317. },
  12318. {
  12319. name: "Big",
  12320. height: math.unit(60, "feet")
  12321. },
  12322. {
  12323. name: "Macro",
  12324. height: math.unit(325, "feet")
  12325. },
  12326. ]
  12327. ))
  12328. characterMakers.push(() => makeCharacter(
  12329. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12330. {
  12331. front: {
  12332. height: math.unit(0.3, "meters"),
  12333. weight: math.unit(3.5, "kg"),
  12334. name: "Front",
  12335. image: {
  12336. source: "./media/characters/chip/front.svg",
  12337. extra: 748 / 674
  12338. }
  12339. },
  12340. },
  12341. [
  12342. {
  12343. name: "Micro",
  12344. height: math.unit(1, "inch"),
  12345. default: true
  12346. },
  12347. ]
  12348. ))
  12349. characterMakers.push(() => makeCharacter(
  12350. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12351. {
  12352. side: {
  12353. height: math.unit(2.3, "meters"),
  12354. weight: math.unit(3500, "lb"),
  12355. name: "Side",
  12356. image: {
  12357. source: "./media/characters/torvid/side.svg",
  12358. extra: 1972 / 722,
  12359. bottom: 0.035
  12360. }
  12361. },
  12362. },
  12363. [
  12364. {
  12365. name: "Normal",
  12366. height: math.unit(2.3, "meters"),
  12367. default: true
  12368. },
  12369. ]
  12370. ))
  12371. characterMakers.push(() => makeCharacter(
  12372. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12373. {
  12374. front: {
  12375. height: math.unit(2, "meters"),
  12376. weight: math.unit(150.5, "kg"),
  12377. name: "Front",
  12378. image: {
  12379. source: "./media/characters/susan/front.svg",
  12380. extra: 693 / 635,
  12381. bottom: 0.05
  12382. }
  12383. },
  12384. },
  12385. [
  12386. {
  12387. name: "Megamacro",
  12388. height: math.unit(505, "miles"),
  12389. default: true
  12390. },
  12391. ]
  12392. ))
  12393. characterMakers.push(() => makeCharacter(
  12394. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12395. {
  12396. front: {
  12397. height: math.unit(6, "feet"),
  12398. weight: math.unit(150, "lb"),
  12399. name: "Front",
  12400. image: {
  12401. source: "./media/characters/raindrops/front.svg",
  12402. extra: 2655 / 2461,
  12403. bottom: 49 / 2705
  12404. }
  12405. },
  12406. back: {
  12407. height: math.unit(6, "feet"),
  12408. weight: math.unit(150, "lb"),
  12409. name: "Back",
  12410. image: {
  12411. source: "./media/characters/raindrops/back.svg",
  12412. extra: 2574 / 2400,
  12413. bottom: 65 / 2634
  12414. }
  12415. },
  12416. },
  12417. [
  12418. {
  12419. name: "Micro",
  12420. height: math.unit(6, "inches")
  12421. },
  12422. {
  12423. name: "Normal",
  12424. height: math.unit(6 + 2 / 12, "feet")
  12425. },
  12426. {
  12427. name: "Macro",
  12428. height: math.unit(131, "feet"),
  12429. default: true
  12430. },
  12431. {
  12432. name: "Megamacro",
  12433. height: math.unit(15, "miles")
  12434. },
  12435. {
  12436. name: "Gigamacro",
  12437. height: math.unit(4000, "miles")
  12438. },
  12439. {
  12440. name: "Teramacro",
  12441. height: math.unit(315000, "miles")
  12442. },
  12443. ]
  12444. ))
  12445. characterMakers.push(() => makeCharacter(
  12446. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12447. {
  12448. front: {
  12449. height: math.unit(2.794, "meters"),
  12450. weight: math.unit(325, "kg"),
  12451. name: "Front",
  12452. image: {
  12453. source: "./media/characters/tezwa/front.svg",
  12454. extra: 2083 / 1906,
  12455. bottom: 0.031
  12456. }
  12457. },
  12458. foot: {
  12459. height: math.unit(0.687, "meters"),
  12460. name: "Foot",
  12461. image: {
  12462. source: "./media/characters/tezwa/foot.svg"
  12463. }
  12464. },
  12465. },
  12466. [
  12467. {
  12468. name: "Normal",
  12469. height: math.unit(9 + 2 / 12, "feet"),
  12470. default: true
  12471. },
  12472. ]
  12473. ))
  12474. characterMakers.push(() => makeCharacter(
  12475. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12476. {
  12477. front: {
  12478. height: math.unit(58, "feet"),
  12479. weight: math.unit(89000, "lb"),
  12480. name: "Front",
  12481. image: {
  12482. source: "./media/characters/typhus/front.svg",
  12483. extra: 816 / 800,
  12484. bottom: 0.065
  12485. }
  12486. },
  12487. },
  12488. [
  12489. {
  12490. name: "Macro",
  12491. height: math.unit(58, "feet"),
  12492. default: true
  12493. },
  12494. ]
  12495. ))
  12496. characterMakers.push(() => makeCharacter(
  12497. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12498. {
  12499. front: {
  12500. height: math.unit(12, "feet"),
  12501. weight: math.unit(6, "tonnes"),
  12502. name: "Front",
  12503. image: {
  12504. source: "./media/characters/lyra-von-wulf/front.svg",
  12505. extra: 1,
  12506. bottom: 0.10
  12507. }
  12508. },
  12509. frontMecha: {
  12510. height: math.unit(12, "feet"),
  12511. weight: math.unit(12, "tonnes"),
  12512. name: "Front (Mecha)",
  12513. image: {
  12514. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12515. extra: 1,
  12516. bottom: 0.042
  12517. }
  12518. },
  12519. maw: {
  12520. height: math.unit(2.2, "feet"),
  12521. name: "Maw",
  12522. image: {
  12523. source: "./media/characters/lyra-von-wulf/maw.svg"
  12524. }
  12525. },
  12526. },
  12527. [
  12528. {
  12529. name: "Normal",
  12530. height: math.unit(12, "feet"),
  12531. default: true
  12532. },
  12533. {
  12534. name: "Classic",
  12535. height: math.unit(50, "feet")
  12536. },
  12537. {
  12538. name: "Macro",
  12539. height: math.unit(500, "feet")
  12540. },
  12541. {
  12542. name: "Megamacro",
  12543. height: math.unit(1, "mile")
  12544. },
  12545. {
  12546. name: "Gigamacro",
  12547. height: math.unit(400, "miles")
  12548. },
  12549. {
  12550. name: "Teramacro",
  12551. height: math.unit(22000, "miles")
  12552. },
  12553. {
  12554. name: "Solarmacro",
  12555. height: math.unit(8600000, "miles")
  12556. },
  12557. {
  12558. name: "Galactic",
  12559. height: math.unit(1057000, "lightyears")
  12560. },
  12561. ]
  12562. ))
  12563. characterMakers.push(() => makeCharacter(
  12564. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12565. {
  12566. front: {
  12567. height: math.unit(6 + 10 / 12, "feet"),
  12568. weight: math.unit(150, "lb"),
  12569. name: "Front",
  12570. image: {
  12571. source: "./media/characters/dixon/front.svg",
  12572. extra: 3361 / 3209,
  12573. bottom: 0.01
  12574. }
  12575. },
  12576. },
  12577. [
  12578. {
  12579. name: "Normal",
  12580. height: math.unit(6 + 10 / 12, "feet"),
  12581. default: true
  12582. },
  12583. {
  12584. name: "Big",
  12585. height: math.unit(12, "meters")
  12586. },
  12587. {
  12588. name: "Macro",
  12589. height: math.unit(500, "meters")
  12590. },
  12591. {
  12592. name: "Megamacro",
  12593. height: math.unit(2, "km")
  12594. },
  12595. ]
  12596. ))
  12597. characterMakers.push(() => makeCharacter(
  12598. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12599. {
  12600. front: {
  12601. height: math.unit(185, "cm"),
  12602. weight: math.unit(68, "kg"),
  12603. name: "Front",
  12604. image: {
  12605. source: "./media/characters/kauko/front.svg",
  12606. extra: 1455 / 1421,
  12607. bottom: 0.03
  12608. }
  12609. },
  12610. back: {
  12611. height: math.unit(185, "cm"),
  12612. weight: math.unit(68, "kg"),
  12613. name: "Back",
  12614. image: {
  12615. source: "./media/characters/kauko/back.svg",
  12616. extra: 1455 / 1421,
  12617. bottom: 0.004
  12618. }
  12619. },
  12620. },
  12621. [
  12622. {
  12623. name: "Normal",
  12624. height: math.unit(185, "cm"),
  12625. default: true
  12626. },
  12627. ]
  12628. ))
  12629. characterMakers.push(() => makeCharacter(
  12630. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12631. {
  12632. front: {
  12633. height: math.unit(6, "feet"),
  12634. weight: math.unit(150, "kg"),
  12635. name: "Front",
  12636. image: {
  12637. source: "./media/characters/varg/front.svg",
  12638. extra: 1108 / 1018,
  12639. bottom: 0.0375
  12640. }
  12641. },
  12642. },
  12643. [
  12644. {
  12645. name: "Normal",
  12646. height: math.unit(5, "meters")
  12647. },
  12648. {
  12649. name: "Macro",
  12650. height: math.unit(200, "meters")
  12651. },
  12652. {
  12653. name: "Megamacro",
  12654. height: math.unit(20, "kilometers")
  12655. },
  12656. {
  12657. name: "True Size",
  12658. height: math.unit(211, "km"),
  12659. default: true
  12660. },
  12661. {
  12662. name: "Gigamacro",
  12663. height: math.unit(1000, "km")
  12664. },
  12665. {
  12666. name: "Gigamacro+",
  12667. height: math.unit(8000, "km")
  12668. },
  12669. {
  12670. name: "Teramacro",
  12671. height: math.unit(1000000, "km")
  12672. },
  12673. ]
  12674. ))
  12675. characterMakers.push(() => makeCharacter(
  12676. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12677. {
  12678. front: {
  12679. height: math.unit(7 + 7 / 12, "feet"),
  12680. weight: math.unit(267, "lb"),
  12681. name: "Front",
  12682. image: {
  12683. source: "./media/characters/dayza/front.svg",
  12684. extra: 1262 / 1200,
  12685. bottom: 0.035
  12686. }
  12687. },
  12688. side: {
  12689. height: math.unit(7 + 7 / 12, "feet"),
  12690. weight: math.unit(267, "lb"),
  12691. name: "Side",
  12692. image: {
  12693. source: "./media/characters/dayza/side.svg",
  12694. extra: 1295 / 1245,
  12695. bottom: 0.05
  12696. }
  12697. },
  12698. back: {
  12699. height: math.unit(7 + 7 / 12, "feet"),
  12700. weight: math.unit(267, "lb"),
  12701. name: "Back",
  12702. image: {
  12703. source: "./media/characters/dayza/back.svg",
  12704. extra: 1241 / 1170
  12705. }
  12706. },
  12707. },
  12708. [
  12709. {
  12710. name: "Normal",
  12711. height: math.unit(7 + 7 / 12, "feet"),
  12712. default: true
  12713. },
  12714. {
  12715. name: "Macro",
  12716. height: math.unit(155, "feet")
  12717. },
  12718. ]
  12719. ))
  12720. characterMakers.push(() => makeCharacter(
  12721. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12722. {
  12723. front: {
  12724. height: math.unit(6 + 5 / 12, "feet"),
  12725. weight: math.unit(160, "lb"),
  12726. name: "Front",
  12727. image: {
  12728. source: "./media/characters/xanthos/front.svg",
  12729. extra: 1,
  12730. bottom: 0.04
  12731. }
  12732. },
  12733. back: {
  12734. height: math.unit(6 + 5 / 12, "feet"),
  12735. weight: math.unit(160, "lb"),
  12736. name: "Back",
  12737. image: {
  12738. source: "./media/characters/xanthos/back.svg",
  12739. extra: 1,
  12740. bottom: 0.03
  12741. }
  12742. },
  12743. hand: {
  12744. height: math.unit(0.928, "feet"),
  12745. name: "Hand",
  12746. image: {
  12747. source: "./media/characters/xanthos/hand.svg"
  12748. }
  12749. },
  12750. foot: {
  12751. height: math.unit(1.286, "feet"),
  12752. name: "Foot",
  12753. image: {
  12754. source: "./media/characters/xanthos/foot.svg"
  12755. }
  12756. },
  12757. },
  12758. [
  12759. {
  12760. name: "Normal",
  12761. height: math.unit(6 + 5 / 12, "feet"),
  12762. default: true
  12763. },
  12764. {
  12765. name: "Normal+",
  12766. height: math.unit(6, "meters")
  12767. },
  12768. {
  12769. name: "Macro",
  12770. height: math.unit(40, "feet")
  12771. },
  12772. {
  12773. name: "Macro+",
  12774. height: math.unit(200, "meters")
  12775. },
  12776. {
  12777. name: "Megamacro",
  12778. height: math.unit(20, "km")
  12779. },
  12780. {
  12781. name: "Megamacro+",
  12782. height: math.unit(100, "km")
  12783. },
  12784. {
  12785. name: "Gigamacro",
  12786. height: math.unit(200, "megameters")
  12787. },
  12788. {
  12789. name: "Gigamacro+",
  12790. height: math.unit(1.5, "gigameters")
  12791. },
  12792. ]
  12793. ))
  12794. characterMakers.push(() => makeCharacter(
  12795. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12796. {
  12797. front: {
  12798. height: math.unit(6 + 3 / 12, "feet"),
  12799. weight: math.unit(215, "lb"),
  12800. name: "Front",
  12801. image: {
  12802. source: "./media/characters/grynn/front.svg",
  12803. extra: 4627 / 4209,
  12804. bottom: 0.047
  12805. }
  12806. },
  12807. },
  12808. [
  12809. {
  12810. name: "Micro",
  12811. height: math.unit(6, "inches")
  12812. },
  12813. {
  12814. name: "Normal",
  12815. height: math.unit(6 + 3 / 12, "feet"),
  12816. default: true
  12817. },
  12818. {
  12819. name: "Big",
  12820. height: math.unit(104, "feet")
  12821. },
  12822. {
  12823. name: "Macro",
  12824. height: math.unit(944, "feet")
  12825. },
  12826. {
  12827. name: "Macro+",
  12828. height: math.unit(9480, "feet")
  12829. },
  12830. {
  12831. name: "Megamacro",
  12832. height: math.unit(78752, "feet")
  12833. },
  12834. {
  12835. name: "Megamacro+",
  12836. height: math.unit(630128, "feet")
  12837. },
  12838. {
  12839. name: "Megamacro++",
  12840. height: math.unit(3150695, "feet")
  12841. },
  12842. ]
  12843. ))
  12844. characterMakers.push(() => makeCharacter(
  12845. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12846. {
  12847. front: {
  12848. height: math.unit(7 + 5 / 12, "feet"),
  12849. weight: math.unit(450, "lb"),
  12850. name: "Front",
  12851. image: {
  12852. source: "./media/characters/mocha-aura/front.svg",
  12853. extra: 1907 / 1817,
  12854. bottom: 0.04
  12855. }
  12856. },
  12857. back: {
  12858. height: math.unit(7 + 5 / 12, "feet"),
  12859. weight: math.unit(450, "lb"),
  12860. name: "Back",
  12861. image: {
  12862. source: "./media/characters/mocha-aura/back.svg",
  12863. extra: 1900 / 1825,
  12864. bottom: 0.045
  12865. }
  12866. },
  12867. },
  12868. [
  12869. {
  12870. name: "Nano",
  12871. height: math.unit(1, "nm")
  12872. },
  12873. {
  12874. name: "Megamicro",
  12875. height: math.unit(1, "mm")
  12876. },
  12877. {
  12878. name: "Micro",
  12879. height: math.unit(3, "inches")
  12880. },
  12881. {
  12882. name: "Normal",
  12883. height: math.unit(7 + 5 / 12, "feet"),
  12884. default: true
  12885. },
  12886. {
  12887. name: "Macro",
  12888. height: math.unit(30, "feet")
  12889. },
  12890. {
  12891. name: "Megamacro",
  12892. height: math.unit(3500, "feet")
  12893. },
  12894. {
  12895. name: "Teramacro",
  12896. height: math.unit(500000, "miles")
  12897. },
  12898. {
  12899. name: "Petamacro",
  12900. height: math.unit(50000000000000000, "parsecs")
  12901. },
  12902. ]
  12903. ))
  12904. characterMakers.push(() => makeCharacter(
  12905. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12906. {
  12907. front: {
  12908. height: math.unit(6, "feet"),
  12909. weight: math.unit(150, "lb"),
  12910. name: "Front",
  12911. image: {
  12912. source: "./media/characters/ilisha-devya/front.svg",
  12913. extra: 1,
  12914. bottom: 0.175
  12915. }
  12916. },
  12917. back: {
  12918. height: math.unit(6, "feet"),
  12919. weight: math.unit(150, "lb"),
  12920. name: "Back",
  12921. image: {
  12922. source: "./media/characters/ilisha-devya/back.svg",
  12923. extra: 1,
  12924. bottom: 0.015
  12925. }
  12926. },
  12927. },
  12928. [
  12929. {
  12930. name: "Macro",
  12931. height: math.unit(500, "feet"),
  12932. default: true
  12933. },
  12934. {
  12935. name: "Megamacro",
  12936. height: math.unit(10, "miles")
  12937. },
  12938. {
  12939. name: "Gigamacro",
  12940. height: math.unit(100000, "miles")
  12941. },
  12942. {
  12943. name: "Examacro",
  12944. height: math.unit(1e9, "lightyears")
  12945. },
  12946. {
  12947. name: "Omniversal",
  12948. height: math.unit(1e33, "lightyears")
  12949. },
  12950. {
  12951. name: "Beyond Infinite",
  12952. height: math.unit(1e100, "lightyears")
  12953. },
  12954. ]
  12955. ))
  12956. characterMakers.push(() => makeCharacter(
  12957. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12958. {
  12959. Side: {
  12960. height: math.unit(6, "feet"),
  12961. weight: math.unit(150, "lb"),
  12962. name: "Side",
  12963. image: {
  12964. source: "./media/characters/mira/side.svg",
  12965. extra: 900 / 799,
  12966. bottom: 0.02
  12967. }
  12968. },
  12969. },
  12970. [
  12971. {
  12972. name: "Human Size",
  12973. height: math.unit(6, "feet")
  12974. },
  12975. {
  12976. name: "Macro",
  12977. height: math.unit(100, "feet"),
  12978. default: true
  12979. },
  12980. {
  12981. name: "Megamacro",
  12982. height: math.unit(10, "miles")
  12983. },
  12984. {
  12985. name: "Gigamacro",
  12986. height: math.unit(25000, "miles")
  12987. },
  12988. {
  12989. name: "Teramacro",
  12990. height: math.unit(300, "AU")
  12991. },
  12992. {
  12993. name: "Full Size",
  12994. height: math.unit(4.5e10, "lightyears")
  12995. },
  12996. ]
  12997. ))
  12998. characterMakers.push(() => makeCharacter(
  12999. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13000. {
  13001. front: {
  13002. height: math.unit(6, "feet"),
  13003. weight: math.unit(150, "lb"),
  13004. name: "Front",
  13005. image: {
  13006. source: "./media/characters/holly/front.svg",
  13007. extra: 639 / 606
  13008. }
  13009. },
  13010. back: {
  13011. height: math.unit(6, "feet"),
  13012. weight: math.unit(150, "lb"),
  13013. name: "Back",
  13014. image: {
  13015. source: "./media/characters/holly/back.svg",
  13016. extra: 623 / 598
  13017. }
  13018. },
  13019. frontWorking: {
  13020. height: math.unit(6, "feet"),
  13021. weight: math.unit(150, "lb"),
  13022. name: "Front (Working)",
  13023. image: {
  13024. source: "./media/characters/holly/front-working.svg",
  13025. extra: 607 / 577,
  13026. bottom: 0.048
  13027. }
  13028. },
  13029. },
  13030. [
  13031. {
  13032. name: "Normal",
  13033. height: math.unit(12 + 3 / 12, "feet"),
  13034. default: true
  13035. },
  13036. ]
  13037. ))
  13038. characterMakers.push(() => makeCharacter(
  13039. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13040. {
  13041. front: {
  13042. height: math.unit(6, "feet"),
  13043. weight: math.unit(150, "lb"),
  13044. name: "Front",
  13045. image: {
  13046. source: "./media/characters/porter/front.svg",
  13047. extra: 1,
  13048. bottom: 0.01
  13049. }
  13050. },
  13051. frontRobes: {
  13052. height: math.unit(6, "feet"),
  13053. weight: math.unit(150, "lb"),
  13054. name: "Front (Robes)",
  13055. image: {
  13056. source: "./media/characters/porter/front-robes.svg",
  13057. extra: 1.01,
  13058. bottom: 0.01
  13059. }
  13060. },
  13061. },
  13062. [
  13063. {
  13064. name: "Normal",
  13065. height: math.unit(11 + 9 / 12, "feet"),
  13066. default: true
  13067. },
  13068. ]
  13069. ))
  13070. characterMakers.push(() => makeCharacter(
  13071. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13072. {
  13073. legendary: {
  13074. height: math.unit(6, "feet"),
  13075. weight: math.unit(150, "lb"),
  13076. name: "Legendary",
  13077. image: {
  13078. source: "./media/characters/lucy/legendary.svg",
  13079. extra: 1355 / 1100,
  13080. bottom: 0.045
  13081. }
  13082. },
  13083. },
  13084. [
  13085. {
  13086. name: "Legendary",
  13087. height: math.unit(86882 * 2, "miles"),
  13088. default: true
  13089. },
  13090. ]
  13091. ))
  13092. characterMakers.push(() => makeCharacter(
  13093. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13094. {
  13095. front: {
  13096. height: math.unit(6, "feet"),
  13097. weight: math.unit(150, "lb"),
  13098. name: "Front",
  13099. image: {
  13100. source: "./media/characters/drusilla/front.svg",
  13101. extra: 678 / 635,
  13102. bottom: 0.03
  13103. }
  13104. },
  13105. back: {
  13106. height: math.unit(6, "feet"),
  13107. weight: math.unit(150, "lb"),
  13108. name: "Back",
  13109. image: {
  13110. source: "./media/characters/drusilla/back.svg",
  13111. extra: 678 / 635,
  13112. bottom: 0.005
  13113. }
  13114. },
  13115. },
  13116. [
  13117. {
  13118. name: "Macro",
  13119. height: math.unit(100, "feet")
  13120. },
  13121. {
  13122. name: "Canon Height",
  13123. height: math.unit(2000, "feet"),
  13124. default: true
  13125. },
  13126. ]
  13127. ))
  13128. characterMakers.push(() => makeCharacter(
  13129. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13130. {
  13131. front: {
  13132. height: math.unit(6, "feet"),
  13133. weight: math.unit(180, "lb"),
  13134. name: "Front",
  13135. image: {
  13136. source: "./media/characters/renard-thatch/front.svg",
  13137. extra: 2411 / 2275,
  13138. bottom: 0.01
  13139. }
  13140. },
  13141. frontPosing: {
  13142. height: math.unit(6, "feet"),
  13143. weight: math.unit(180, "lb"),
  13144. name: "Front (Posing)",
  13145. image: {
  13146. source: "./media/characters/renard-thatch/front-posing.svg",
  13147. extra: 2381 / 2261,
  13148. bottom: 0.01
  13149. }
  13150. },
  13151. back: {
  13152. height: math.unit(6, "feet"),
  13153. weight: math.unit(180, "lb"),
  13154. name: "Back",
  13155. image: {
  13156. source: "./media/characters/renard-thatch/back.svg",
  13157. extra: 2428 / 2288
  13158. }
  13159. },
  13160. },
  13161. [
  13162. {
  13163. name: "Micro",
  13164. height: math.unit(3, "inches")
  13165. },
  13166. {
  13167. name: "Default",
  13168. height: math.unit(6, "feet"),
  13169. default: true
  13170. },
  13171. {
  13172. name: "Macro",
  13173. height: math.unit(75, "feet")
  13174. },
  13175. ]
  13176. ))
  13177. characterMakers.push(() => makeCharacter(
  13178. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13179. {
  13180. front: {
  13181. height: math.unit(1450, "feet"),
  13182. weight: math.unit(1.21e6, "tons"),
  13183. name: "Front",
  13184. image: {
  13185. source: "./media/characters/sekvra/front.svg",
  13186. extra: 1,
  13187. bottom: 0.03
  13188. }
  13189. },
  13190. frontClothed: {
  13191. height: math.unit(1450, "feet"),
  13192. weight: math.unit(1.21e6, "tons"),
  13193. name: "Front (Clothed)",
  13194. image: {
  13195. source: "./media/characters/sekvra/front-clothed.svg",
  13196. extra: 1,
  13197. bottom: 0.03
  13198. }
  13199. },
  13200. side: {
  13201. height: math.unit(1450, "feet"),
  13202. weight: math.unit(1.21e6, "tons"),
  13203. name: "Side",
  13204. image: {
  13205. source: "./media/characters/sekvra/side.svg",
  13206. extra: 1,
  13207. bottom: 0.025
  13208. }
  13209. },
  13210. back: {
  13211. height: math.unit(1450, "feet"),
  13212. weight: math.unit(1.21e6, "tons"),
  13213. name: "Back",
  13214. image: {
  13215. source: "./media/characters/sekvra/back.svg",
  13216. extra: 1,
  13217. bottom: 0.005
  13218. }
  13219. },
  13220. },
  13221. [
  13222. {
  13223. name: "Macro",
  13224. height: math.unit(1450, "feet"),
  13225. default: true
  13226. },
  13227. {
  13228. name: "Megamacro",
  13229. height: math.unit(15000, "feet")
  13230. },
  13231. ]
  13232. ))
  13233. characterMakers.push(() => makeCharacter(
  13234. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13235. {
  13236. front: {
  13237. height: math.unit(6, "feet"),
  13238. weight: math.unit(150, "lb"),
  13239. name: "Front",
  13240. image: {
  13241. source: "./media/characters/carmine/front.svg",
  13242. extra: 1,
  13243. bottom: 0.035
  13244. }
  13245. },
  13246. frontArmor: {
  13247. height: math.unit(6, "feet"),
  13248. weight: math.unit(150, "lb"),
  13249. name: "Front (Armor)",
  13250. image: {
  13251. source: "./media/characters/carmine/front-armor.svg",
  13252. extra: 1,
  13253. bottom: 0.035
  13254. }
  13255. },
  13256. },
  13257. [
  13258. {
  13259. name: "Large",
  13260. height: math.unit(1, "mile")
  13261. },
  13262. {
  13263. name: "Huge",
  13264. height: math.unit(40, "miles"),
  13265. default: true
  13266. },
  13267. {
  13268. name: "Colossal",
  13269. height: math.unit(2500, "miles")
  13270. },
  13271. ]
  13272. ))
  13273. characterMakers.push(() => makeCharacter(
  13274. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13275. {
  13276. front: {
  13277. height: math.unit(6, "feet"),
  13278. weight: math.unit(150, "lb"),
  13279. name: "Front",
  13280. image: {
  13281. source: "./media/characters/elyssia/front.svg",
  13282. extra: 2201 / 2035,
  13283. bottom: 0.05
  13284. }
  13285. },
  13286. frontClothed: {
  13287. height: math.unit(6, "feet"),
  13288. weight: math.unit(150, "lb"),
  13289. name: "Front (Clothed)",
  13290. image: {
  13291. source: "./media/characters/elyssia/front-clothed.svg",
  13292. extra: 2201 / 2035,
  13293. bottom: 0.05
  13294. }
  13295. },
  13296. back: {
  13297. height: math.unit(6, "feet"),
  13298. weight: math.unit(150, "lb"),
  13299. name: "Back",
  13300. image: {
  13301. source: "./media/characters/elyssia/back.svg",
  13302. extra: 2201 / 2035,
  13303. bottom: 0.013
  13304. }
  13305. },
  13306. },
  13307. [
  13308. {
  13309. name: "Smaller",
  13310. height: math.unit(150, "feet")
  13311. },
  13312. {
  13313. name: "Standard",
  13314. height: math.unit(1400, "feet"),
  13315. default: true
  13316. },
  13317. {
  13318. name: "Distracted",
  13319. height: math.unit(15000, "feet")
  13320. },
  13321. ]
  13322. ))
  13323. characterMakers.push(() => makeCharacter(
  13324. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13325. {
  13326. front: {
  13327. height: math.unit(7 + 4 / 12, "feet"),
  13328. weight: math.unit(500, "lb"),
  13329. name: "Front",
  13330. image: {
  13331. source: "./media/characters/geno-maxwell/front.svg",
  13332. extra: 2207 / 2040,
  13333. bottom: 0.015
  13334. }
  13335. },
  13336. },
  13337. [
  13338. {
  13339. name: "Micro",
  13340. height: math.unit(3, "inches")
  13341. },
  13342. {
  13343. name: "Normal",
  13344. height: math.unit(7 + 4 / 12, "feet"),
  13345. default: true
  13346. },
  13347. {
  13348. name: "Macro",
  13349. height: math.unit(220, "feet")
  13350. },
  13351. {
  13352. name: "Megamacro",
  13353. height: math.unit(11, "miles")
  13354. },
  13355. ]
  13356. ))
  13357. characterMakers.push(() => makeCharacter(
  13358. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13359. {
  13360. front: {
  13361. height: math.unit(7 + 4 / 12, "feet"),
  13362. weight: math.unit(500, "lb"),
  13363. name: "Front",
  13364. image: {
  13365. source: "./media/characters/regena-maxwell/front.svg",
  13366. extra: 3115 / 2770,
  13367. bottom: 0.02
  13368. }
  13369. },
  13370. },
  13371. [
  13372. {
  13373. name: "Normal",
  13374. height: math.unit(7 + 4 / 12, "feet"),
  13375. default: true
  13376. },
  13377. {
  13378. name: "Macro",
  13379. height: math.unit(220, "feet")
  13380. },
  13381. {
  13382. name: "Megamacro",
  13383. height: math.unit(11, "miles")
  13384. },
  13385. ]
  13386. ))
  13387. characterMakers.push(() => makeCharacter(
  13388. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13389. {
  13390. front: {
  13391. height: math.unit(6, "feet"),
  13392. weight: math.unit(150, "lb"),
  13393. name: "Front",
  13394. image: {
  13395. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13396. extra: 860 / 690,
  13397. bottom: 0.03
  13398. }
  13399. },
  13400. },
  13401. [
  13402. {
  13403. name: "Normal",
  13404. height: math.unit(1.7, "meters"),
  13405. default: true
  13406. },
  13407. ]
  13408. ))
  13409. characterMakers.push(() => makeCharacter(
  13410. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13411. {
  13412. front: {
  13413. height: math.unit(6, "feet"),
  13414. weight: math.unit(150, "lb"),
  13415. name: "Front",
  13416. image: {
  13417. source: "./media/characters/quilly/front.svg",
  13418. extra: 890 / 776
  13419. }
  13420. },
  13421. },
  13422. [
  13423. {
  13424. name: "Gigamacro",
  13425. height: math.unit(404090, "miles"),
  13426. default: true
  13427. },
  13428. ]
  13429. ))
  13430. characterMakers.push(() => makeCharacter(
  13431. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13432. {
  13433. front: {
  13434. height: math.unit(7 + 8 / 12, "feet"),
  13435. weight: math.unit(350, "lb"),
  13436. name: "Front",
  13437. image: {
  13438. source: "./media/characters/tempest/front.svg",
  13439. extra: 1175 / 1086,
  13440. bottom: 0.02
  13441. }
  13442. },
  13443. },
  13444. [
  13445. {
  13446. name: "Normal",
  13447. height: math.unit(7 + 8 / 12, "feet"),
  13448. default: true
  13449. },
  13450. ]
  13451. ))
  13452. characterMakers.push(() => makeCharacter(
  13453. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13454. {
  13455. side: {
  13456. height: math.unit(4 + 5 / 12, "feet"),
  13457. weight: math.unit(80, "lb"),
  13458. name: "Side",
  13459. image: {
  13460. source: "./media/characters/rodger/side.svg",
  13461. extra: 1235 / 1118
  13462. }
  13463. },
  13464. },
  13465. [
  13466. {
  13467. name: "Micro",
  13468. height: math.unit(1, "inch")
  13469. },
  13470. {
  13471. name: "Normal",
  13472. height: math.unit(4 + 5 / 12, "feet"),
  13473. default: true
  13474. },
  13475. {
  13476. name: "Macro",
  13477. height: math.unit(120, "feet")
  13478. },
  13479. ]
  13480. ))
  13481. characterMakers.push(() => makeCharacter(
  13482. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13483. {
  13484. front: {
  13485. height: math.unit(6, "feet"),
  13486. weight: math.unit(150, "lb"),
  13487. name: "Front",
  13488. image: {
  13489. source: "./media/characters/danyel/front.svg",
  13490. extra: 1185 / 1123,
  13491. bottom: 0.05
  13492. }
  13493. },
  13494. },
  13495. [
  13496. {
  13497. name: "Shrunken",
  13498. height: math.unit(0.5, "mm")
  13499. },
  13500. {
  13501. name: "Micro",
  13502. height: math.unit(1, "mm"),
  13503. default: true
  13504. },
  13505. {
  13506. name: "Upsized",
  13507. height: math.unit(5 + 5 / 12, "feet")
  13508. },
  13509. ]
  13510. ))
  13511. characterMakers.push(() => makeCharacter(
  13512. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13513. {
  13514. front: {
  13515. height: math.unit(5 + 6 / 12, "feet"),
  13516. weight: math.unit(200, "lb"),
  13517. name: "Front",
  13518. image: {
  13519. source: "./media/characters/vivian-bijoux/front.svg",
  13520. extra: 1,
  13521. bottom: 0.072
  13522. }
  13523. },
  13524. },
  13525. [
  13526. {
  13527. name: "Normal",
  13528. height: math.unit(5 + 6 / 12, "feet"),
  13529. default: true
  13530. },
  13531. {
  13532. name: "Bad Dream",
  13533. height: math.unit(500, "feet")
  13534. },
  13535. {
  13536. name: "Nightmare",
  13537. height: math.unit(500, "miles")
  13538. },
  13539. ]
  13540. ))
  13541. characterMakers.push(() => makeCharacter(
  13542. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13543. {
  13544. front: {
  13545. height: math.unit(6 + 1 / 12, "feet"),
  13546. weight: math.unit(260, "lb"),
  13547. name: "Front",
  13548. image: {
  13549. source: "./media/characters/zeta/front.svg",
  13550. extra: 1968 / 1889,
  13551. bottom: 0.06
  13552. }
  13553. },
  13554. back: {
  13555. height: math.unit(6 + 1 / 12, "feet"),
  13556. weight: math.unit(260, "lb"),
  13557. name: "Back",
  13558. image: {
  13559. source: "./media/characters/zeta/back.svg",
  13560. extra: 1944 / 1858,
  13561. bottom: 0.03
  13562. }
  13563. },
  13564. hand: {
  13565. height: math.unit(1.112, "feet"),
  13566. name: "Hand",
  13567. image: {
  13568. source: "./media/characters/zeta/hand.svg"
  13569. }
  13570. },
  13571. foot: {
  13572. height: math.unit(1.48, "feet"),
  13573. name: "Foot",
  13574. image: {
  13575. source: "./media/characters/zeta/foot.svg"
  13576. }
  13577. },
  13578. },
  13579. [
  13580. {
  13581. name: "Micro",
  13582. height: math.unit(6, "inches")
  13583. },
  13584. {
  13585. name: "Normal",
  13586. height: math.unit(6 + 1 / 12, "feet"),
  13587. default: true
  13588. },
  13589. {
  13590. name: "Macro",
  13591. height: math.unit(20, "feet")
  13592. },
  13593. ]
  13594. ))
  13595. characterMakers.push(() => makeCharacter(
  13596. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13597. {
  13598. front: {
  13599. height: math.unit(6, "feet"),
  13600. weight: math.unit(150, "lb"),
  13601. name: "Front",
  13602. image: {
  13603. source: "./media/characters/jamie-larsen/front.svg",
  13604. extra: 962 / 933,
  13605. bottom: 0.02
  13606. }
  13607. },
  13608. back: {
  13609. height: math.unit(6, "feet"),
  13610. weight: math.unit(150, "lb"),
  13611. name: "Back",
  13612. image: {
  13613. source: "./media/characters/jamie-larsen/back.svg",
  13614. extra: 997 / 946
  13615. }
  13616. },
  13617. },
  13618. [
  13619. {
  13620. name: "Macro",
  13621. height: math.unit(28 + 7 / 12, "feet"),
  13622. default: true
  13623. },
  13624. {
  13625. name: "Macro+",
  13626. height: math.unit(180, "feet")
  13627. },
  13628. {
  13629. name: "Megamacro",
  13630. height: math.unit(10, "miles")
  13631. },
  13632. {
  13633. name: "Gigamacro",
  13634. height: math.unit(200000, "miles")
  13635. },
  13636. ]
  13637. ))
  13638. characterMakers.push(() => makeCharacter(
  13639. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13640. {
  13641. front: {
  13642. height: math.unit(6, "feet"),
  13643. weight: math.unit(120, "lb"),
  13644. name: "Front",
  13645. image: {
  13646. source: "./media/characters/vance/front.svg",
  13647. extra: 1980 / 1890,
  13648. bottom: 0.09
  13649. }
  13650. },
  13651. back: {
  13652. height: math.unit(6, "feet"),
  13653. weight: math.unit(120, "lb"),
  13654. name: "Back",
  13655. image: {
  13656. source: "./media/characters/vance/back.svg",
  13657. extra: 2081 / 1994,
  13658. bottom: 0.014
  13659. }
  13660. },
  13661. hand: {
  13662. height: math.unit(0.88, "feet"),
  13663. name: "Hand",
  13664. image: {
  13665. source: "./media/characters/vance/hand.svg"
  13666. }
  13667. },
  13668. foot: {
  13669. height: math.unit(0.64, "feet"),
  13670. name: "Foot",
  13671. image: {
  13672. source: "./media/characters/vance/foot.svg"
  13673. }
  13674. },
  13675. },
  13676. [
  13677. {
  13678. name: "Small",
  13679. height: math.unit(90, "feet"),
  13680. default: true
  13681. },
  13682. {
  13683. name: "Macro",
  13684. height: math.unit(100, "meters")
  13685. },
  13686. {
  13687. name: "Megamacro",
  13688. height: math.unit(15, "miles")
  13689. },
  13690. ]
  13691. ))
  13692. characterMakers.push(() => makeCharacter(
  13693. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13694. {
  13695. front: {
  13696. height: math.unit(6, "feet"),
  13697. weight: math.unit(180, "lb"),
  13698. name: "Front",
  13699. image: {
  13700. source: "./media/characters/xochitl/front.svg",
  13701. extra: 2297 / 2261,
  13702. bottom: 0.065
  13703. }
  13704. },
  13705. back: {
  13706. height: math.unit(6, "feet"),
  13707. weight: math.unit(180, "lb"),
  13708. name: "Back",
  13709. image: {
  13710. source: "./media/characters/xochitl/back.svg",
  13711. extra: 2386 / 2354,
  13712. bottom: 0.01
  13713. }
  13714. },
  13715. foot: {
  13716. height: math.unit(6 / 5 * 1.15, "feet"),
  13717. weight: math.unit(150, "lb"),
  13718. name: "Foot",
  13719. image: {
  13720. source: "./media/characters/xochitl/foot.svg"
  13721. }
  13722. },
  13723. },
  13724. [
  13725. {
  13726. name: "Macro",
  13727. height: math.unit(80, "feet")
  13728. },
  13729. {
  13730. name: "Macro+",
  13731. height: math.unit(400, "feet"),
  13732. default: true
  13733. },
  13734. {
  13735. name: "Gigamacro",
  13736. height: math.unit(80000, "miles")
  13737. },
  13738. {
  13739. name: "Gigamacro+",
  13740. height: math.unit(400000, "miles")
  13741. },
  13742. {
  13743. name: "Teramacro",
  13744. height: math.unit(300, "AU")
  13745. },
  13746. ]
  13747. ))
  13748. characterMakers.push(() => makeCharacter(
  13749. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13750. {
  13751. front: {
  13752. height: math.unit(6, "feet"),
  13753. weight: math.unit(150, "lb"),
  13754. name: "Front",
  13755. image: {
  13756. source: "./media/characters/vincent/front.svg",
  13757. extra: 1130 / 1080,
  13758. bottom: 0.055
  13759. }
  13760. },
  13761. beak: {
  13762. height: math.unit(6 * 0.1, "feet"),
  13763. name: "Beak",
  13764. image: {
  13765. source: "./media/characters/vincent/beak.svg"
  13766. }
  13767. },
  13768. hand: {
  13769. height: math.unit(6 * 0.85, "feet"),
  13770. weight: math.unit(150, "lb"),
  13771. name: "Hand",
  13772. image: {
  13773. source: "./media/characters/vincent/hand.svg"
  13774. }
  13775. },
  13776. foot: {
  13777. height: math.unit(6 * 0.19, "feet"),
  13778. weight: math.unit(150, "lb"),
  13779. name: "Foot",
  13780. image: {
  13781. source: "./media/characters/vincent/foot.svg"
  13782. }
  13783. },
  13784. },
  13785. [
  13786. {
  13787. name: "Base",
  13788. height: math.unit(6 + 5 / 12, "feet"),
  13789. default: true
  13790. },
  13791. {
  13792. name: "Macro",
  13793. height: math.unit(300, "feet")
  13794. },
  13795. {
  13796. name: "Megamacro",
  13797. height: math.unit(2, "miles")
  13798. },
  13799. {
  13800. name: "Gigamacro",
  13801. height: math.unit(1000, "miles")
  13802. },
  13803. ]
  13804. ))
  13805. characterMakers.push(() => makeCharacter(
  13806. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13807. {
  13808. front: {
  13809. height: math.unit(2, "meters"),
  13810. weight: math.unit(500, "kg"),
  13811. name: "Front",
  13812. image: {
  13813. source: "./media/characters/coatl/front.svg",
  13814. extra: 3948 / 3500,
  13815. bottom: 0.082
  13816. }
  13817. },
  13818. },
  13819. [
  13820. {
  13821. name: "Normal",
  13822. height: math.unit(4, "meters")
  13823. },
  13824. {
  13825. name: "Macro",
  13826. height: math.unit(100, "meters"),
  13827. default: true
  13828. },
  13829. {
  13830. name: "Macro+",
  13831. height: math.unit(300, "meters")
  13832. },
  13833. {
  13834. name: "Megamacro",
  13835. height: math.unit(3, "gigameters")
  13836. },
  13837. {
  13838. name: "Megamacro+",
  13839. height: math.unit(300, "terameters")
  13840. },
  13841. {
  13842. name: "Megamacro++",
  13843. height: math.unit(3, "lightyears")
  13844. },
  13845. ]
  13846. ))
  13847. characterMakers.push(() => makeCharacter(
  13848. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13849. {
  13850. front: {
  13851. height: math.unit(6, "feet"),
  13852. weight: math.unit(50, "kg"),
  13853. name: "front",
  13854. image: {
  13855. source: "./media/characters/shiroryu/front.svg",
  13856. extra: 1990 / 1935
  13857. }
  13858. },
  13859. },
  13860. [
  13861. {
  13862. name: "Mortal Mingling",
  13863. height: math.unit(3, "meters")
  13864. },
  13865. {
  13866. name: "Kaiju-ish",
  13867. height: math.unit(250, "meters")
  13868. },
  13869. {
  13870. name: "Somewhat Godly",
  13871. height: math.unit(400, "km"),
  13872. default: true
  13873. },
  13874. {
  13875. name: "Planetary",
  13876. height: math.unit(300, "megameters")
  13877. },
  13878. {
  13879. name: "Galaxy-dwarfing",
  13880. height: math.unit(450, "kiloparsecs")
  13881. },
  13882. {
  13883. name: "Universe Eater",
  13884. height: math.unit(150, "gigaparsecs")
  13885. },
  13886. {
  13887. name: "Almost Immeasurable",
  13888. height: math.unit(1.3e266, "yottaparsecs")
  13889. },
  13890. ]
  13891. ))
  13892. characterMakers.push(() => makeCharacter(
  13893. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13894. {
  13895. front: {
  13896. height: math.unit(6, "feet"),
  13897. weight: math.unit(150, "lb"),
  13898. name: "Front",
  13899. image: {
  13900. source: "./media/characters/umeko/front.svg",
  13901. extra: 1,
  13902. bottom: 0.019
  13903. }
  13904. },
  13905. frontArmored: {
  13906. height: math.unit(6, "feet"),
  13907. weight: math.unit(150, "lb"),
  13908. name: "Front (Armored)",
  13909. image: {
  13910. source: "./media/characters/umeko/front-armored.svg",
  13911. extra: 1,
  13912. bottom: 0.021
  13913. }
  13914. },
  13915. },
  13916. [
  13917. {
  13918. name: "Macro",
  13919. height: math.unit(220, "feet"),
  13920. default: true
  13921. },
  13922. {
  13923. name: "Guardian Dragon",
  13924. height: math.unit(50, "miles")
  13925. },
  13926. {
  13927. name: "Cosmic",
  13928. height: math.unit(800000, "miles")
  13929. },
  13930. ]
  13931. ))
  13932. characterMakers.push(() => makeCharacter(
  13933. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13934. {
  13935. front: {
  13936. height: math.unit(6, "feet"),
  13937. weight: math.unit(150, "lb"),
  13938. name: "Front",
  13939. image: {
  13940. source: "./media/characters/cassidy/front.svg",
  13941. extra: 1,
  13942. bottom: 0.043
  13943. }
  13944. },
  13945. },
  13946. [
  13947. {
  13948. name: "Canon Height",
  13949. height: math.unit(120, "feet"),
  13950. default: true
  13951. },
  13952. {
  13953. name: "Macro+",
  13954. height: math.unit(400, "feet")
  13955. },
  13956. {
  13957. name: "Macro++",
  13958. height: math.unit(4000, "feet")
  13959. },
  13960. {
  13961. name: "Megamacro",
  13962. height: math.unit(3, "miles")
  13963. },
  13964. ]
  13965. ))
  13966. characterMakers.push(() => makeCharacter(
  13967. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13968. {
  13969. front: {
  13970. height: math.unit(6, "feet"),
  13971. weight: math.unit(150, "lb"),
  13972. name: "Front",
  13973. image: {
  13974. source: "./media/characters/isaac/front.svg",
  13975. extra: 896 / 815,
  13976. bottom: 0.11
  13977. }
  13978. },
  13979. },
  13980. [
  13981. {
  13982. name: "Human Size",
  13983. height: math.unit(8, "feet"),
  13984. default: true
  13985. },
  13986. {
  13987. name: "Macro",
  13988. height: math.unit(400, "feet")
  13989. },
  13990. {
  13991. name: "Megamacro",
  13992. height: math.unit(50, "miles")
  13993. },
  13994. {
  13995. name: "Canon Height",
  13996. height: math.unit(200, "AU")
  13997. },
  13998. ]
  13999. ))
  14000. characterMakers.push(() => makeCharacter(
  14001. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14002. {
  14003. front: {
  14004. height: math.unit(6, "feet"),
  14005. weight: math.unit(72, "kg"),
  14006. name: "Front",
  14007. image: {
  14008. source: "./media/characters/sleekit/front.svg",
  14009. extra: 4693 / 4487,
  14010. bottom: 0.012
  14011. }
  14012. },
  14013. },
  14014. [
  14015. {
  14016. name: "Minimum Height",
  14017. height: math.unit(10, "meters")
  14018. },
  14019. {
  14020. name: "Smaller",
  14021. height: math.unit(25, "meters")
  14022. },
  14023. {
  14024. name: "Larger",
  14025. height: math.unit(38, "meters"),
  14026. default: true
  14027. },
  14028. {
  14029. name: "Maximum height",
  14030. height: math.unit(100, "meters")
  14031. },
  14032. ]
  14033. ))
  14034. characterMakers.push(() => makeCharacter(
  14035. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14036. {
  14037. front: {
  14038. height: math.unit(6, "feet"),
  14039. weight: math.unit(150, "lb"),
  14040. name: "Front",
  14041. image: {
  14042. source: "./media/characters/nillia/front.svg",
  14043. extra: 2195 / 2037,
  14044. bottom: 0.005
  14045. }
  14046. },
  14047. back: {
  14048. height: math.unit(6, "feet"),
  14049. weight: math.unit(150, "lb"),
  14050. name: "Back",
  14051. image: {
  14052. source: "./media/characters/nillia/back.svg",
  14053. extra: 2195 / 2037,
  14054. bottom: 0.005
  14055. }
  14056. },
  14057. },
  14058. [
  14059. {
  14060. name: "Canon Height",
  14061. height: math.unit(489, "feet"),
  14062. default: true
  14063. }
  14064. ]
  14065. ))
  14066. characterMakers.push(() => makeCharacter(
  14067. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14068. {
  14069. front: {
  14070. height: math.unit(6, "feet"),
  14071. weight: math.unit(150, "lb"),
  14072. name: "Front",
  14073. image: {
  14074. source: "./media/characters/mesmyriza/front.svg",
  14075. extra: 2067 / 1784,
  14076. bottom: 0.035
  14077. }
  14078. },
  14079. foot: {
  14080. height: math.unit(6 / (250 / 35), "feet"),
  14081. name: "Foot",
  14082. image: {
  14083. source: "./media/characters/mesmyriza/foot.svg"
  14084. }
  14085. },
  14086. },
  14087. [
  14088. {
  14089. name: "Macro",
  14090. height: math.unit(457, "meters"),
  14091. default: true
  14092. },
  14093. {
  14094. name: "Megamacro",
  14095. height: math.unit(8, "megameters")
  14096. },
  14097. ]
  14098. ))
  14099. characterMakers.push(() => makeCharacter(
  14100. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14101. {
  14102. front: {
  14103. height: math.unit(6, "feet"),
  14104. weight: math.unit(250, "lb"),
  14105. name: "Front",
  14106. image: {
  14107. source: "./media/characters/saudade/front.svg",
  14108. extra: 1172 / 1139,
  14109. bottom: 0.035
  14110. }
  14111. },
  14112. },
  14113. [
  14114. {
  14115. name: "Micro",
  14116. height: math.unit(3, "inches")
  14117. },
  14118. {
  14119. name: "Normal",
  14120. height: math.unit(6, "feet"),
  14121. default: true
  14122. },
  14123. {
  14124. name: "Macro",
  14125. height: math.unit(50, "feet")
  14126. },
  14127. {
  14128. name: "Megamacro",
  14129. height: math.unit(2800, "feet")
  14130. },
  14131. ]
  14132. ))
  14133. characterMakers.push(() => makeCharacter(
  14134. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14135. {
  14136. front: {
  14137. height: math.unit(5 + 4 / 12, "feet"),
  14138. weight: math.unit(100, "lb"),
  14139. name: "Front",
  14140. image: {
  14141. source: "./media/characters/keireer/front.svg",
  14142. extra: 716 / 666,
  14143. bottom: 0.05
  14144. }
  14145. },
  14146. },
  14147. [
  14148. {
  14149. name: "Normal",
  14150. height: math.unit(5 + 4 / 12, "feet"),
  14151. default: true
  14152. },
  14153. ]
  14154. ))
  14155. characterMakers.push(() => makeCharacter(
  14156. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14157. {
  14158. front: {
  14159. height: math.unit(6, "feet"),
  14160. weight: math.unit(90, "kg"),
  14161. name: "Front",
  14162. image: {
  14163. source: "./media/characters/mirja/front.svg",
  14164. extra: 1789 / 1683,
  14165. bottom: 0.05
  14166. }
  14167. },
  14168. frontDressed: {
  14169. height: math.unit(6, "feet"),
  14170. weight: math.unit(90, "lb"),
  14171. name: "Front (Dressed)",
  14172. image: {
  14173. source: "./media/characters/mirja/front-dressed.svg",
  14174. extra: 1789 / 1683,
  14175. bottom: 0.05
  14176. }
  14177. },
  14178. back: {
  14179. height: math.unit(6, "feet"),
  14180. weight: math.unit(90, "lb"),
  14181. name: "Back",
  14182. image: {
  14183. source: "./media/characters/mirja/back.svg",
  14184. extra: 953 / 917,
  14185. bottom: 0.017
  14186. }
  14187. },
  14188. },
  14189. [
  14190. {
  14191. name: "\"Incognito\"",
  14192. height: math.unit(3, "meters")
  14193. },
  14194. {
  14195. name: "Strolling Size",
  14196. height: math.unit(15, "km")
  14197. },
  14198. {
  14199. name: "Larger Strolling Size",
  14200. height: math.unit(400, "km")
  14201. },
  14202. {
  14203. name: "Preferred Size",
  14204. height: math.unit(5000, "km")
  14205. },
  14206. {
  14207. name: "True Size",
  14208. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14209. default: true
  14210. },
  14211. ]
  14212. ))
  14213. characterMakers.push(() => makeCharacter(
  14214. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14215. {
  14216. front: {
  14217. height: math.unit(15, "feet"),
  14218. weight: math.unit(880, "kg"),
  14219. name: "Front",
  14220. image: {
  14221. source: "./media/characters/nightraver/front.svg",
  14222. extra: 2444 / 2160,
  14223. bottom: 0.027
  14224. }
  14225. },
  14226. back: {
  14227. height: math.unit(15, "feet"),
  14228. weight: math.unit(880, "kg"),
  14229. name: "Back",
  14230. image: {
  14231. source: "./media/characters/nightraver/back.svg",
  14232. extra: 2309 / 2180,
  14233. bottom: 0.005
  14234. }
  14235. },
  14236. sole: {
  14237. height: math.unit(2.878, "feet"),
  14238. name: "Sole",
  14239. image: {
  14240. source: "./media/characters/nightraver/sole.svg"
  14241. }
  14242. },
  14243. foot: {
  14244. height: math.unit(2.285, "feet"),
  14245. name: "Foot",
  14246. image: {
  14247. source: "./media/characters/nightraver/foot.svg"
  14248. }
  14249. },
  14250. maw: {
  14251. height: math.unit(2.67, "feet"),
  14252. name: "Maw",
  14253. image: {
  14254. source: "./media/characters/nightraver/maw.svg"
  14255. }
  14256. },
  14257. },
  14258. [
  14259. {
  14260. name: "Micro",
  14261. height: math.unit(1, "cm")
  14262. },
  14263. {
  14264. name: "Normal",
  14265. height: math.unit(15, "feet"),
  14266. default: true
  14267. },
  14268. {
  14269. name: "Macro",
  14270. height: math.unit(300, "feet")
  14271. },
  14272. {
  14273. name: "Megamacro",
  14274. height: math.unit(300, "miles")
  14275. },
  14276. {
  14277. name: "Gigamacro",
  14278. height: math.unit(10000, "miles")
  14279. },
  14280. ]
  14281. ))
  14282. characterMakers.push(() => makeCharacter(
  14283. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14284. {
  14285. side: {
  14286. height: math.unit(2, "inches"),
  14287. weight: math.unit(5, "grams"),
  14288. name: "Side",
  14289. image: {
  14290. source: "./media/characters/arc/side.svg"
  14291. }
  14292. },
  14293. },
  14294. [
  14295. {
  14296. name: "Micro",
  14297. height: math.unit(2, "inches"),
  14298. default: true
  14299. },
  14300. ]
  14301. ))
  14302. characterMakers.push(() => makeCharacter(
  14303. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14304. {
  14305. front: {
  14306. height: math.unit(1.1938, "meters"),
  14307. weight: math.unit(54, "kg"),
  14308. name: "Front",
  14309. image: {
  14310. source: "./media/characters/nebula-shahar/front.svg",
  14311. extra: 1642 / 1436,
  14312. bottom: 0.06
  14313. }
  14314. },
  14315. },
  14316. [
  14317. {
  14318. name: "Megamicro",
  14319. height: math.unit(0.3, "mm")
  14320. },
  14321. {
  14322. name: "Micro",
  14323. height: math.unit(3, "cm")
  14324. },
  14325. {
  14326. name: "Normal",
  14327. height: math.unit(138, "cm"),
  14328. default: true
  14329. },
  14330. {
  14331. name: "Macro",
  14332. height: math.unit(30, "m")
  14333. },
  14334. ]
  14335. ))
  14336. characterMakers.push(() => makeCharacter(
  14337. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14338. {
  14339. front: {
  14340. height: math.unit(5.24, "feet"),
  14341. weight: math.unit(150, "lb"),
  14342. name: "Front",
  14343. image: {
  14344. source: "./media/characters/shayla/front.svg",
  14345. extra: 1512 / 1414,
  14346. bottom: 0.01
  14347. }
  14348. },
  14349. back: {
  14350. height: math.unit(5.24, "feet"),
  14351. weight: math.unit(150, "lb"),
  14352. name: "Back",
  14353. image: {
  14354. source: "./media/characters/shayla/back.svg",
  14355. extra: 1512 / 1414
  14356. }
  14357. },
  14358. hand: {
  14359. height: math.unit(0.7781496062992126, "feet"),
  14360. name: "Hand",
  14361. image: {
  14362. source: "./media/characters/shayla/hand.svg"
  14363. }
  14364. },
  14365. foot: {
  14366. height: math.unit(1.4206036745406823, "feet"),
  14367. name: "Foot",
  14368. image: {
  14369. source: "./media/characters/shayla/foot.svg"
  14370. }
  14371. },
  14372. },
  14373. [
  14374. {
  14375. name: "Micro",
  14376. height: math.unit(0.32, "feet")
  14377. },
  14378. {
  14379. name: "Normal",
  14380. height: math.unit(5.24, "feet"),
  14381. default: true
  14382. },
  14383. {
  14384. name: "Macro",
  14385. height: math.unit(492.12, "feet")
  14386. },
  14387. {
  14388. name: "Megamacro",
  14389. height: math.unit(186.41, "miles")
  14390. },
  14391. ]
  14392. ))
  14393. characterMakers.push(() => makeCharacter(
  14394. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14395. {
  14396. front: {
  14397. height: math.unit(2.2, "m"),
  14398. weight: math.unit(120, "kg"),
  14399. name: "Front",
  14400. image: {
  14401. source: "./media/characters/pia-jr/front.svg",
  14402. extra: 1000 / 970,
  14403. bottom: 0.035
  14404. }
  14405. },
  14406. hand: {
  14407. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14408. name: "Hand",
  14409. image: {
  14410. source: "./media/characters/pia-jr/hand.svg"
  14411. }
  14412. },
  14413. paw: {
  14414. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14415. name: "Paw",
  14416. image: {
  14417. source: "./media/characters/pia-jr/paw.svg"
  14418. }
  14419. },
  14420. },
  14421. [
  14422. {
  14423. name: "Micro",
  14424. height: math.unit(1.2, "cm")
  14425. },
  14426. {
  14427. name: "Normal",
  14428. height: math.unit(2.2, "m"),
  14429. default: true
  14430. },
  14431. {
  14432. name: "Macro",
  14433. height: math.unit(180, "m")
  14434. },
  14435. {
  14436. name: "Megamacro",
  14437. height: math.unit(420, "km")
  14438. },
  14439. ]
  14440. ))
  14441. characterMakers.push(() => makeCharacter(
  14442. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14443. {
  14444. front: {
  14445. height: math.unit(2, "m"),
  14446. weight: math.unit(115, "kg"),
  14447. name: "Front",
  14448. image: {
  14449. source: "./media/characters/pia-sr/front.svg",
  14450. extra: 760 / 730,
  14451. bottom: 0.015
  14452. }
  14453. },
  14454. back: {
  14455. height: math.unit(2, "m"),
  14456. weight: math.unit(115, "kg"),
  14457. name: "Back",
  14458. image: {
  14459. source: "./media/characters/pia-sr/back.svg",
  14460. extra: 760 / 730,
  14461. bottom: 0.01
  14462. }
  14463. },
  14464. hand: {
  14465. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14466. name: "Hand",
  14467. image: {
  14468. source: "./media/characters/pia-sr/hand.svg"
  14469. }
  14470. },
  14471. foot: {
  14472. height: math.unit(1.83, "feet"),
  14473. name: "Foot",
  14474. image: {
  14475. source: "./media/characters/pia-sr/foot.svg"
  14476. }
  14477. },
  14478. },
  14479. [
  14480. {
  14481. name: "Micro",
  14482. height: math.unit(88, "mm")
  14483. },
  14484. {
  14485. name: "Normal",
  14486. height: math.unit(2, "m"),
  14487. default: true
  14488. },
  14489. {
  14490. name: "Macro",
  14491. height: math.unit(200, "m")
  14492. },
  14493. {
  14494. name: "Megamacro",
  14495. height: math.unit(420, "km")
  14496. },
  14497. ]
  14498. ))
  14499. characterMakers.push(() => makeCharacter(
  14500. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14501. {
  14502. front: {
  14503. height: math.unit(8 + 2 / 12, "feet"),
  14504. weight: math.unit(300, "lb"),
  14505. name: "Front",
  14506. image: {
  14507. source: "./media/characters/kibibyte/front.svg",
  14508. extra: 2221 / 2098,
  14509. bottom: 0.04
  14510. }
  14511. },
  14512. },
  14513. [
  14514. {
  14515. name: "Normal",
  14516. height: math.unit(8 + 2 / 12, "feet"),
  14517. default: true
  14518. },
  14519. {
  14520. name: "Socialable Macro",
  14521. height: math.unit(50, "feet")
  14522. },
  14523. {
  14524. name: "Macro",
  14525. height: math.unit(300, "feet")
  14526. },
  14527. {
  14528. name: "Megamacro",
  14529. height: math.unit(500, "miles")
  14530. },
  14531. ]
  14532. ))
  14533. characterMakers.push(() => makeCharacter(
  14534. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14535. {
  14536. front: {
  14537. height: math.unit(6, "feet"),
  14538. weight: math.unit(150, "lb"),
  14539. name: "Front",
  14540. image: {
  14541. source: "./media/characters/felix/front.svg",
  14542. extra: 762 / 722,
  14543. bottom: 0.02
  14544. }
  14545. },
  14546. frontClothed: {
  14547. height: math.unit(6, "feet"),
  14548. weight: math.unit(150, "lb"),
  14549. name: "Front (Clothed)",
  14550. image: {
  14551. source: "./media/characters/felix/front-clothed.svg",
  14552. extra: 762 / 722,
  14553. bottom: 0.02
  14554. }
  14555. },
  14556. },
  14557. [
  14558. {
  14559. name: "Normal",
  14560. height: math.unit(6 + 8 / 12, "feet"),
  14561. default: true
  14562. },
  14563. {
  14564. name: "Macro",
  14565. height: math.unit(2600, "feet")
  14566. },
  14567. {
  14568. name: "Megamacro",
  14569. height: math.unit(450, "miles")
  14570. },
  14571. ]
  14572. ))
  14573. characterMakers.push(() => makeCharacter(
  14574. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14575. {
  14576. front: {
  14577. height: math.unit(6 + 1 / 12, "feet"),
  14578. weight: math.unit(250, "lb"),
  14579. name: "Front",
  14580. image: {
  14581. source: "./media/characters/tobo/front.svg",
  14582. extra: 608 / 586,
  14583. bottom: 0.023
  14584. }
  14585. },
  14586. back: {
  14587. height: math.unit(6 + 1 / 12, "feet"),
  14588. weight: math.unit(250, "lb"),
  14589. name: "Back",
  14590. image: {
  14591. source: "./media/characters/tobo/back.svg",
  14592. extra: 608 / 586
  14593. }
  14594. },
  14595. },
  14596. [
  14597. {
  14598. name: "Nano",
  14599. height: math.unit(2, "nm")
  14600. },
  14601. {
  14602. name: "Megamicro",
  14603. height: math.unit(0.1, "mm")
  14604. },
  14605. {
  14606. name: "Micro",
  14607. height: math.unit(1, "inch"),
  14608. default: true
  14609. },
  14610. {
  14611. name: "Human-sized",
  14612. height: math.unit(6 + 1 / 12, "feet")
  14613. },
  14614. {
  14615. name: "Macro",
  14616. height: math.unit(250, "feet")
  14617. },
  14618. {
  14619. name: "Megamacro",
  14620. height: math.unit(75, "miles")
  14621. },
  14622. {
  14623. name: "Texas-sized",
  14624. height: math.unit(750, "miles")
  14625. },
  14626. {
  14627. name: "Teramacro",
  14628. height: math.unit(50000, "miles")
  14629. },
  14630. ]
  14631. ))
  14632. characterMakers.push(() => makeCharacter(
  14633. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14634. {
  14635. front: {
  14636. height: math.unit(6, "feet"),
  14637. weight: math.unit(269, "lb"),
  14638. name: "Front",
  14639. image: {
  14640. source: "./media/characters/danny-kapowsky/front.svg",
  14641. extra: 766 / 736,
  14642. bottom: 0.044
  14643. }
  14644. },
  14645. back: {
  14646. height: math.unit(6, "feet"),
  14647. weight: math.unit(269, "lb"),
  14648. name: "Back",
  14649. image: {
  14650. source: "./media/characters/danny-kapowsky/back.svg",
  14651. extra: 797 / 760,
  14652. bottom: 0.025
  14653. }
  14654. },
  14655. },
  14656. [
  14657. {
  14658. name: "Macro",
  14659. height: math.unit(150, "feet"),
  14660. default: true
  14661. },
  14662. {
  14663. name: "Macro+",
  14664. height: math.unit(200, "feet")
  14665. },
  14666. {
  14667. name: "Macro++",
  14668. height: math.unit(300, "feet")
  14669. },
  14670. {
  14671. name: "Macro+++",
  14672. height: math.unit(400, "feet")
  14673. },
  14674. ]
  14675. ))
  14676. characterMakers.push(() => makeCharacter(
  14677. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14678. {
  14679. side: {
  14680. height: math.unit(6, "feet"),
  14681. weight: math.unit(170, "lb"),
  14682. name: "Side",
  14683. image: {
  14684. source: "./media/characters/finn/side.svg",
  14685. extra: 1953 / 1807,
  14686. bottom: 0.057
  14687. }
  14688. },
  14689. },
  14690. [
  14691. {
  14692. name: "Megamacro",
  14693. height: math.unit(14445, "feet"),
  14694. default: true
  14695. },
  14696. ]
  14697. ))
  14698. characterMakers.push(() => makeCharacter(
  14699. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14700. {
  14701. front: {
  14702. height: math.unit(5 + 6 / 12, "feet"),
  14703. weight: math.unit(125, "lb"),
  14704. name: "Front",
  14705. image: {
  14706. source: "./media/characters/roy/front.svg",
  14707. extra: 1,
  14708. bottom: 0.11
  14709. }
  14710. },
  14711. },
  14712. [
  14713. {
  14714. name: "Micro",
  14715. height: math.unit(3, "inches"),
  14716. default: true
  14717. },
  14718. {
  14719. name: "Normal",
  14720. height: math.unit(5 + 6 / 12, "feet")
  14721. },
  14722. {
  14723. name: "Lesser Macro",
  14724. height: math.unit(60, "feet")
  14725. },
  14726. {
  14727. name: "Greater Macro",
  14728. height: math.unit(120, "feet")
  14729. },
  14730. ]
  14731. ))
  14732. characterMakers.push(() => makeCharacter(
  14733. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14734. {
  14735. front: {
  14736. height: math.unit(6, "feet"),
  14737. weight: math.unit(100, "lb"),
  14738. name: "Front",
  14739. image: {
  14740. source: "./media/characters/aevsivs/front.svg",
  14741. extra: 1,
  14742. bottom: 0.03
  14743. }
  14744. },
  14745. back: {
  14746. height: math.unit(6, "feet"),
  14747. weight: math.unit(100, "lb"),
  14748. name: "Back",
  14749. image: {
  14750. source: "./media/characters/aevsivs/back.svg"
  14751. }
  14752. },
  14753. },
  14754. [
  14755. {
  14756. name: "Micro",
  14757. height: math.unit(2, "inches"),
  14758. default: true
  14759. },
  14760. {
  14761. name: "Normal",
  14762. height: math.unit(5, "feet")
  14763. },
  14764. ]
  14765. ))
  14766. characterMakers.push(() => makeCharacter(
  14767. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14768. {
  14769. front: {
  14770. height: math.unit(5 + 7 / 12, "feet"),
  14771. weight: math.unit(159, "lb"),
  14772. name: "Front",
  14773. image: {
  14774. source: "./media/characters/hildegard/front.svg",
  14775. extra: 289 / 269,
  14776. bottom: 7.63 / 297.8
  14777. }
  14778. },
  14779. back: {
  14780. height: math.unit(5 + 7 / 12, "feet"),
  14781. weight: math.unit(159, "lb"),
  14782. name: "Back",
  14783. image: {
  14784. source: "./media/characters/hildegard/back.svg",
  14785. extra: 280 / 260,
  14786. bottom: 2.3 / 282
  14787. }
  14788. },
  14789. },
  14790. [
  14791. {
  14792. name: "Normal",
  14793. height: math.unit(5 + 7 / 12, "feet"),
  14794. default: true
  14795. },
  14796. ]
  14797. ))
  14798. characterMakers.push(() => makeCharacter(
  14799. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14800. {
  14801. bernard: {
  14802. height: math.unit(2 + 7 / 12, "feet"),
  14803. weight: math.unit(66, "lb"),
  14804. name: "Bernard",
  14805. rename: true,
  14806. image: {
  14807. source: "./media/characters/bernard-wilder/bernard.svg",
  14808. extra: 192 / 128,
  14809. bottom: 0.05
  14810. }
  14811. },
  14812. wilder: {
  14813. height: math.unit(5 + 8 / 12, "feet"),
  14814. weight: math.unit(143, "lb"),
  14815. name: "Wilder",
  14816. rename: true,
  14817. image: {
  14818. source: "./media/characters/bernard-wilder/wilder.svg",
  14819. extra: 361 / 312,
  14820. bottom: 0.02
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "Normal",
  14827. height: math.unit(2 + 7 / 12, "feet"),
  14828. default: true
  14829. },
  14830. ]
  14831. ))
  14832. characterMakers.push(() => makeCharacter(
  14833. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14834. {
  14835. anthro: {
  14836. height: math.unit(6 + 1 / 12, "feet"),
  14837. weight: math.unit(155, "lb"),
  14838. name: "Anthro",
  14839. image: {
  14840. source: "./media/characters/hearth/anthro.svg",
  14841. extra: 260 / 250,
  14842. bottom: 0.02
  14843. }
  14844. },
  14845. feral: {
  14846. height: math.unit(3.78, "feet"),
  14847. weight: math.unit(35, "kg"),
  14848. name: "Feral",
  14849. image: {
  14850. source: "./media/characters/hearth/feral.svg",
  14851. extra: 153 / 135,
  14852. bottom: 0.03
  14853. }
  14854. },
  14855. },
  14856. [
  14857. {
  14858. name: "Normal",
  14859. height: math.unit(6 + 1 / 12, "feet"),
  14860. default: true
  14861. },
  14862. ]
  14863. ))
  14864. characterMakers.push(() => makeCharacter(
  14865. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14866. {
  14867. front: {
  14868. height: math.unit(6, "feet"),
  14869. weight: math.unit(182, "lb"),
  14870. name: "Front",
  14871. image: {
  14872. source: "./media/characters/ingrid/front.svg",
  14873. extra: 294 / 268,
  14874. bottom: 0.027
  14875. }
  14876. },
  14877. },
  14878. [
  14879. {
  14880. name: "Normal",
  14881. height: math.unit(6, "feet"),
  14882. default: true
  14883. },
  14884. ]
  14885. ))
  14886. characterMakers.push(() => makeCharacter(
  14887. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14888. {
  14889. eevee: {
  14890. height: math.unit(2 + 10 / 12, "feet"),
  14891. weight: math.unit(86, "lb"),
  14892. name: "Malgam",
  14893. image: {
  14894. source: "./media/characters/malgam/eevee.svg",
  14895. extra: 218 / 180,
  14896. bottom: 0.2
  14897. }
  14898. },
  14899. sylveon: {
  14900. height: math.unit(4, "feet"),
  14901. weight: math.unit(101, "lb"),
  14902. name: "Future Malgam",
  14903. rename: true,
  14904. image: {
  14905. source: "./media/characters/malgam/sylveon.svg",
  14906. extra: 371 / 325,
  14907. bottom: 0.015
  14908. }
  14909. },
  14910. gigantamax: {
  14911. height: math.unit(50, "feet"),
  14912. name: "Gigantamax Malgam",
  14913. rename: true,
  14914. image: {
  14915. source: "./media/characters/malgam/gigantamax.svg"
  14916. }
  14917. },
  14918. },
  14919. [
  14920. {
  14921. name: "Normal",
  14922. height: math.unit(2 + 10 / 12, "feet"),
  14923. default: true
  14924. },
  14925. ]
  14926. ))
  14927. characterMakers.push(() => makeCharacter(
  14928. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14929. {
  14930. front: {
  14931. height: math.unit(5 + 11 / 12, "feet"),
  14932. weight: math.unit(188, "lb"),
  14933. name: "Front",
  14934. image: {
  14935. source: "./media/characters/fleur/front.svg",
  14936. extra: 309 / 283,
  14937. bottom: 0.007
  14938. }
  14939. },
  14940. },
  14941. [
  14942. {
  14943. name: "Normal",
  14944. height: math.unit(5 + 11 / 12, "feet"),
  14945. default: true
  14946. },
  14947. ]
  14948. ))
  14949. characterMakers.push(() => makeCharacter(
  14950. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14951. {
  14952. front: {
  14953. height: math.unit(5 + 4 / 12, "feet"),
  14954. weight: math.unit(122, "lb"),
  14955. name: "Front",
  14956. image: {
  14957. source: "./media/characters/jude/front.svg",
  14958. extra: 288 / 273,
  14959. bottom: 0.03
  14960. }
  14961. },
  14962. },
  14963. [
  14964. {
  14965. name: "Normal",
  14966. height: math.unit(5 + 4 / 12, "feet"),
  14967. default: true
  14968. },
  14969. ]
  14970. ))
  14971. characterMakers.push(() => makeCharacter(
  14972. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14973. {
  14974. front: {
  14975. height: math.unit(5 + 11 / 12, "feet"),
  14976. weight: math.unit(190, "lb"),
  14977. name: "Front",
  14978. image: {
  14979. source: "./media/characters/seara/front.svg",
  14980. extra: 1,
  14981. bottom: 0.05
  14982. }
  14983. },
  14984. },
  14985. [
  14986. {
  14987. name: "Normal",
  14988. height: math.unit(5 + 11 / 12, "feet"),
  14989. default: true
  14990. },
  14991. ]
  14992. ))
  14993. characterMakers.push(() => makeCharacter(
  14994. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14995. {
  14996. front: {
  14997. height: math.unit(16 + 5 / 12, "feet"),
  14998. weight: math.unit(524, "lb"),
  14999. name: "Front",
  15000. image: {
  15001. source: "./media/characters/caspian/front.svg",
  15002. extra: 1,
  15003. bottom: 0.04
  15004. }
  15005. },
  15006. },
  15007. [
  15008. {
  15009. name: "Normal",
  15010. height: math.unit(16 + 5 / 12, "feet"),
  15011. default: true
  15012. },
  15013. ]
  15014. ))
  15015. characterMakers.push(() => makeCharacter(
  15016. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15017. {
  15018. front: {
  15019. height: math.unit(5 + 7 / 12, "feet"),
  15020. weight: math.unit(170, "lb"),
  15021. name: "Front",
  15022. image: {
  15023. source: "./media/characters/mika/front.svg",
  15024. extra: 1,
  15025. bottom: 0.016
  15026. }
  15027. },
  15028. },
  15029. [
  15030. {
  15031. name: "Normal",
  15032. height: math.unit(5 + 7 / 12, "feet"),
  15033. default: true
  15034. },
  15035. ]
  15036. ))
  15037. characterMakers.push(() => makeCharacter(
  15038. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15039. {
  15040. front: {
  15041. height: math.unit(6 + 2 / 12, "feet"),
  15042. weight: math.unit(268, "lb"),
  15043. name: "Front",
  15044. image: {
  15045. source: "./media/characters/sol/front.svg",
  15046. extra: 247 / 231,
  15047. bottom: 0.05
  15048. }
  15049. },
  15050. },
  15051. [
  15052. {
  15053. name: "Normal",
  15054. height: math.unit(6 + 2 / 12, "feet"),
  15055. default: true
  15056. },
  15057. ]
  15058. ))
  15059. characterMakers.push(() => makeCharacter(
  15060. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15061. {
  15062. buizel: {
  15063. height: math.unit(2 + 5 / 12, "feet"),
  15064. weight: math.unit(87, "lb"),
  15065. name: "Buizel",
  15066. image: {
  15067. source: "./media/characters/umiko/buizel.svg",
  15068. extra: 172 / 157,
  15069. bottom: 0.01
  15070. }
  15071. },
  15072. floatzel: {
  15073. height: math.unit(5 + 9 / 12, "feet"),
  15074. weight: math.unit(250, "lb"),
  15075. name: "Floatzel",
  15076. image: {
  15077. source: "./media/characters/umiko/floatzel.svg",
  15078. extra: 262 / 248
  15079. }
  15080. },
  15081. },
  15082. [
  15083. {
  15084. name: "Normal",
  15085. height: math.unit(2 + 5 / 12, "feet"),
  15086. default: true
  15087. },
  15088. ]
  15089. ))
  15090. characterMakers.push(() => makeCharacter(
  15091. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15092. {
  15093. front: {
  15094. height: math.unit(6 + 2 / 12, "feet"),
  15095. weight: math.unit(146, "lb"),
  15096. name: "Front",
  15097. image: {
  15098. source: "./media/characters/iliac/front.svg",
  15099. extra: 389 / 365,
  15100. bottom: 0.035
  15101. }
  15102. },
  15103. },
  15104. [
  15105. {
  15106. name: "Normal",
  15107. height: math.unit(6 + 2 / 12, "feet"),
  15108. default: true
  15109. },
  15110. ]
  15111. ))
  15112. characterMakers.push(() => makeCharacter(
  15113. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15114. {
  15115. front: {
  15116. height: math.unit(6, "feet"),
  15117. weight: math.unit(170, "lb"),
  15118. name: "Front",
  15119. image: {
  15120. source: "./media/characters/topaz/front.svg",
  15121. extra: 317 / 303,
  15122. bottom: 0.055
  15123. }
  15124. },
  15125. },
  15126. [
  15127. {
  15128. name: "Normal",
  15129. height: math.unit(6, "feet"),
  15130. default: true
  15131. },
  15132. ]
  15133. ))
  15134. characterMakers.push(() => makeCharacter(
  15135. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15136. {
  15137. front: {
  15138. height: math.unit(5 + 11 / 12, "feet"),
  15139. weight: math.unit(144, "lb"),
  15140. name: "Front",
  15141. image: {
  15142. source: "./media/characters/gabriel/front.svg",
  15143. extra: 285 / 262,
  15144. bottom: 0.004
  15145. }
  15146. },
  15147. },
  15148. [
  15149. {
  15150. name: "Normal",
  15151. height: math.unit(5 + 11 / 12, "feet"),
  15152. default: true
  15153. },
  15154. ]
  15155. ))
  15156. characterMakers.push(() => makeCharacter(
  15157. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15158. {
  15159. side: {
  15160. height: math.unit(6 + 5 / 12, "feet"),
  15161. weight: math.unit(300, "lb"),
  15162. name: "Side",
  15163. image: {
  15164. source: "./media/characters/tempest-suicune/side.svg",
  15165. extra: 195 / 154,
  15166. bottom: 0.04
  15167. }
  15168. },
  15169. },
  15170. [
  15171. {
  15172. name: "Normal",
  15173. height: math.unit(6 + 5 / 12, "feet"),
  15174. default: true
  15175. },
  15176. ]
  15177. ))
  15178. characterMakers.push(() => makeCharacter(
  15179. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15180. {
  15181. front: {
  15182. height: math.unit(7 + 2 / 12, "feet"),
  15183. weight: math.unit(322, "lb"),
  15184. name: "Front",
  15185. image: {
  15186. source: "./media/characters/vulcan/front.svg",
  15187. extra: 154 / 147,
  15188. bottom: 0.04
  15189. }
  15190. },
  15191. },
  15192. [
  15193. {
  15194. name: "Normal",
  15195. height: math.unit(7 + 2 / 12, "feet"),
  15196. default: true
  15197. },
  15198. ]
  15199. ))
  15200. characterMakers.push(() => makeCharacter(
  15201. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15202. {
  15203. front: {
  15204. height: math.unit(5 + 10 / 12, "feet"),
  15205. weight: math.unit(264, "lb"),
  15206. name: "Front",
  15207. image: {
  15208. source: "./media/characters/gault/front.svg",
  15209. extra: 161 / 140,
  15210. bottom: 0.028
  15211. }
  15212. },
  15213. },
  15214. [
  15215. {
  15216. name: "Normal",
  15217. height: math.unit(5 + 10 / 12, "feet"),
  15218. default: true
  15219. },
  15220. ]
  15221. ))
  15222. characterMakers.push(() => makeCharacter(
  15223. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15224. {
  15225. front: {
  15226. height: math.unit(6, "feet"),
  15227. weight: math.unit(150, "lb"),
  15228. name: "Front",
  15229. image: {
  15230. source: "./media/characters/shard/front.svg",
  15231. extra: 273 / 238,
  15232. bottom: 0.02
  15233. }
  15234. },
  15235. },
  15236. [
  15237. {
  15238. name: "Normal",
  15239. height: math.unit(3 + 6 / 12, "feet"),
  15240. default: true
  15241. },
  15242. ]
  15243. ))
  15244. characterMakers.push(() => makeCharacter(
  15245. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15246. {
  15247. front: {
  15248. height: math.unit(5 + 11 / 12, "feet"),
  15249. weight: math.unit(146, "lb"),
  15250. name: "Front",
  15251. image: {
  15252. source: "./media/characters/ashe/front.svg",
  15253. extra: 400 / 373,
  15254. bottom: 0.01
  15255. }
  15256. },
  15257. },
  15258. [
  15259. {
  15260. name: "Normal",
  15261. height: math.unit(5 + 11 / 12, "feet"),
  15262. default: true
  15263. },
  15264. ]
  15265. ))
  15266. characterMakers.push(() => makeCharacter(
  15267. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15268. {
  15269. front: {
  15270. height: math.unit(5 + 5 / 12, "feet"),
  15271. weight: math.unit(135, "lb"),
  15272. name: "Front",
  15273. image: {
  15274. source: "./media/characters/beatrix/front.svg",
  15275. extra: 392 / 379,
  15276. bottom: 0.01
  15277. }
  15278. },
  15279. },
  15280. [
  15281. {
  15282. name: "Normal",
  15283. height: math.unit(6, "feet"),
  15284. default: true
  15285. },
  15286. ]
  15287. ))
  15288. characterMakers.push(() => makeCharacter(
  15289. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15290. {
  15291. front: {
  15292. height: math.unit(6, "feet"),
  15293. weight: math.unit(150, "lb"),
  15294. name: "Front",
  15295. image: {
  15296. source: "./media/characters/ignatius/front.svg",
  15297. extra: 245 / 222,
  15298. bottom: 0.01
  15299. }
  15300. },
  15301. },
  15302. [
  15303. {
  15304. name: "Normal",
  15305. height: math.unit(5 + 5 / 12, "feet"),
  15306. default: true
  15307. },
  15308. ]
  15309. ))
  15310. characterMakers.push(() => makeCharacter(
  15311. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15312. {
  15313. front: {
  15314. height: math.unit(6 + 2 / 12, "feet"),
  15315. weight: math.unit(138, "lb"),
  15316. name: "Front",
  15317. image: {
  15318. source: "./media/characters/mei-li/front.svg",
  15319. extra: 237 / 229,
  15320. bottom: 0.03
  15321. }
  15322. },
  15323. },
  15324. [
  15325. {
  15326. name: "Normal",
  15327. height: math.unit(6 + 2 / 12, "feet"),
  15328. default: true
  15329. },
  15330. ]
  15331. ))
  15332. characterMakers.push(() => makeCharacter(
  15333. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15334. {
  15335. front: {
  15336. height: math.unit(2 + 4 / 12, "feet"),
  15337. weight: math.unit(62, "lb"),
  15338. name: "Front",
  15339. image: {
  15340. source: "./media/characters/puru/front.svg",
  15341. extra: 206 / 149,
  15342. bottom: 0.06
  15343. }
  15344. },
  15345. },
  15346. [
  15347. {
  15348. name: "Normal",
  15349. height: math.unit(2 + 4 / 12, "feet"),
  15350. default: true
  15351. },
  15352. ]
  15353. ))
  15354. characterMakers.push(() => makeCharacter(
  15355. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15356. {
  15357. anthro: {
  15358. height: math.unit(5 + 8/12, "feet"),
  15359. weight: math.unit(200, "lb"),
  15360. energyNeed: math.unit(2000, "kcal"),
  15361. name: "Anthro",
  15362. image: {
  15363. source: "./media/characters/kee/anthro.svg",
  15364. extra: 3251/3184,
  15365. bottom: 250/3501
  15366. }
  15367. },
  15368. taur: {
  15369. height: math.unit(11, "feet"),
  15370. weight: math.unit(500, "lb"),
  15371. energyNeed: math.unit(5000, "kcal"),
  15372. name: "Taur",
  15373. image: {
  15374. source: "./media/characters/kee/taur.svg",
  15375. extra: 1362/1320,
  15376. bottom: 83/1445
  15377. }
  15378. },
  15379. },
  15380. [
  15381. {
  15382. name: "Normal",
  15383. height: math.unit(5 + 8/12, "feet"),
  15384. default: true
  15385. },
  15386. {
  15387. name: "Macro",
  15388. height: math.unit(35, "feet")
  15389. },
  15390. ]
  15391. ))
  15392. characterMakers.push(() => makeCharacter(
  15393. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15394. {
  15395. anthro: {
  15396. height: math.unit(7, "feet"),
  15397. weight: math.unit(190, "lb"),
  15398. name: "Anthro",
  15399. image: {
  15400. source: "./media/characters/cobalt-dracha/anthro.svg",
  15401. extra: 231 / 225,
  15402. bottom: 0.04
  15403. }
  15404. },
  15405. feral: {
  15406. height: math.unit(9 + 7 / 12, "feet"),
  15407. weight: math.unit(294, "lb"),
  15408. name: "Feral",
  15409. image: {
  15410. source: "./media/characters/cobalt-dracha/feral.svg",
  15411. extra: 692 / 633,
  15412. bottom: 0.05
  15413. }
  15414. },
  15415. },
  15416. [
  15417. {
  15418. name: "Normal",
  15419. height: math.unit(7, "feet"),
  15420. default: true
  15421. },
  15422. ]
  15423. ))
  15424. characterMakers.push(() => makeCharacter(
  15425. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15426. {
  15427. fallen: {
  15428. height: math.unit(11 + 8 / 12, "feet"),
  15429. weight: math.unit(485, "lb"),
  15430. name: "Java (Fallen)",
  15431. rename: true,
  15432. image: {
  15433. source: "./media/characters/java/fallen.svg",
  15434. extra: 226 / 208,
  15435. bottom: 0.005
  15436. }
  15437. },
  15438. godkin: {
  15439. height: math.unit(10 + 6 / 12, "feet"),
  15440. weight: math.unit(328, "lb"),
  15441. name: "Java (Godkin)",
  15442. rename: true,
  15443. image: {
  15444. source: "./media/characters/java/godkin.svg",
  15445. extra: 270 / 262,
  15446. bottom: 0.02
  15447. }
  15448. },
  15449. },
  15450. [
  15451. {
  15452. name: "Normal",
  15453. height: math.unit(11 + 8 / 12, "feet"),
  15454. default: true
  15455. },
  15456. ]
  15457. ))
  15458. characterMakers.push(() => makeCharacter(
  15459. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15460. {
  15461. front: {
  15462. height: math.unit(7 + 8 / 12, "feet"),
  15463. weight: math.unit(320, "lb"),
  15464. name: "Front",
  15465. image: {
  15466. source: "./media/characters/skoll/front.svg",
  15467. extra: 232 / 220,
  15468. bottom: 0.02
  15469. }
  15470. },
  15471. },
  15472. [
  15473. {
  15474. name: "Normal",
  15475. height: math.unit(7 + 8 / 12, "feet"),
  15476. default: true
  15477. },
  15478. ]
  15479. ))
  15480. characterMakers.push(() => makeCharacter(
  15481. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15482. {
  15483. front: {
  15484. height: math.unit(5 + 9 / 12, "feet"),
  15485. weight: math.unit(170, "lb"),
  15486. name: "Front",
  15487. image: {
  15488. source: "./media/characters/purna/front.svg",
  15489. extra: 239 / 229,
  15490. bottom: 0.01
  15491. }
  15492. },
  15493. },
  15494. [
  15495. {
  15496. name: "Normal",
  15497. height: math.unit(5 + 9 / 12, "feet"),
  15498. default: true
  15499. },
  15500. ]
  15501. ))
  15502. characterMakers.push(() => makeCharacter(
  15503. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15504. {
  15505. front: {
  15506. height: math.unit(5 + 9 / 12, "feet"),
  15507. weight: math.unit(142, "lb"),
  15508. name: "Front",
  15509. image: {
  15510. source: "./media/characters/kuva/front.svg",
  15511. extra: 281 / 271,
  15512. bottom: 0.006
  15513. }
  15514. },
  15515. },
  15516. [
  15517. {
  15518. name: "Normal",
  15519. height: math.unit(5 + 9 / 12, "feet"),
  15520. default: true
  15521. },
  15522. ]
  15523. ))
  15524. characterMakers.push(() => makeCharacter(
  15525. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15526. {
  15527. anthro: {
  15528. height: math.unit(9 + 2 / 12, "feet"),
  15529. weight: math.unit(270, "lb"),
  15530. name: "Anthro",
  15531. image: {
  15532. source: "./media/characters/embra/anthro.svg",
  15533. extra: 200 / 187,
  15534. bottom: 0.02
  15535. }
  15536. },
  15537. feral: {
  15538. height: math.unit(18 + 8 / 12, "feet"),
  15539. weight: math.unit(576, "lb"),
  15540. name: "Feral",
  15541. image: {
  15542. source: "./media/characters/embra/feral.svg",
  15543. extra: 152 / 137,
  15544. bottom: 0.037
  15545. }
  15546. },
  15547. },
  15548. [
  15549. {
  15550. name: "Normal",
  15551. height: math.unit(9 + 2 / 12, "feet"),
  15552. default: true
  15553. },
  15554. ]
  15555. ))
  15556. characterMakers.push(() => makeCharacter(
  15557. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15558. {
  15559. anthro: {
  15560. height: math.unit(10 + 9 / 12, "feet"),
  15561. weight: math.unit(224, "lb"),
  15562. name: "Anthro",
  15563. image: {
  15564. source: "./media/characters/grottos/anthro.svg",
  15565. extra: 350 / 332,
  15566. bottom: 0.045
  15567. }
  15568. },
  15569. feral: {
  15570. height: math.unit(20 + 7 / 12, "feet"),
  15571. weight: math.unit(629, "lb"),
  15572. name: "Feral",
  15573. image: {
  15574. source: "./media/characters/grottos/feral.svg",
  15575. extra: 207 / 190,
  15576. bottom: 0.05
  15577. }
  15578. },
  15579. },
  15580. [
  15581. {
  15582. name: "Normal",
  15583. height: math.unit(10 + 9 / 12, "feet"),
  15584. default: true
  15585. },
  15586. ]
  15587. ))
  15588. characterMakers.push(() => makeCharacter(
  15589. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15590. {
  15591. anthro: {
  15592. height: math.unit(9 + 6 / 12, "feet"),
  15593. weight: math.unit(298, "lb"),
  15594. name: "Anthro",
  15595. image: {
  15596. source: "./media/characters/frifna/anthro.svg",
  15597. extra: 282 / 269,
  15598. bottom: 0.015
  15599. }
  15600. },
  15601. feral: {
  15602. height: math.unit(16 + 2 / 12, "feet"),
  15603. weight: math.unit(624, "lb"),
  15604. name: "Feral",
  15605. image: {
  15606. source: "./media/characters/frifna/feral.svg"
  15607. }
  15608. },
  15609. },
  15610. [
  15611. {
  15612. name: "Normal",
  15613. height: math.unit(9 + 6 / 12, "feet"),
  15614. default: true
  15615. },
  15616. ]
  15617. ))
  15618. characterMakers.push(() => makeCharacter(
  15619. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15620. {
  15621. front: {
  15622. height: math.unit(6 + 2 / 12, "feet"),
  15623. weight: math.unit(168, "lb"),
  15624. name: "Front",
  15625. image: {
  15626. source: "./media/characters/elise/front.svg",
  15627. extra: 276 / 271
  15628. }
  15629. },
  15630. },
  15631. [
  15632. {
  15633. name: "Normal",
  15634. height: math.unit(6 + 2 / 12, "feet"),
  15635. default: true
  15636. },
  15637. ]
  15638. ))
  15639. characterMakers.push(() => makeCharacter(
  15640. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15641. {
  15642. front: {
  15643. height: math.unit(5 + 10 / 12, "feet"),
  15644. weight: math.unit(210, "lb"),
  15645. name: "Front",
  15646. image: {
  15647. source: "./media/characters/glade/front.svg",
  15648. extra: 258 / 247,
  15649. bottom: 0.008
  15650. }
  15651. },
  15652. },
  15653. [
  15654. {
  15655. name: "Normal",
  15656. height: math.unit(5 + 10 / 12, "feet"),
  15657. default: true
  15658. },
  15659. ]
  15660. ))
  15661. characterMakers.push(() => makeCharacter(
  15662. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15663. {
  15664. front: {
  15665. height: math.unit(5 + 10 / 12, "feet"),
  15666. weight: math.unit(129, "lb"),
  15667. name: "Front",
  15668. image: {
  15669. source: "./media/characters/rina/front.svg",
  15670. extra: 266 / 255,
  15671. bottom: 0.005
  15672. }
  15673. },
  15674. },
  15675. [
  15676. {
  15677. name: "Normal",
  15678. height: math.unit(5 + 10 / 12, "feet"),
  15679. default: true
  15680. },
  15681. ]
  15682. ))
  15683. characterMakers.push(() => makeCharacter(
  15684. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15685. {
  15686. front: {
  15687. height: math.unit(6 + 1 / 12, "feet"),
  15688. weight: math.unit(192, "lb"),
  15689. name: "Front",
  15690. image: {
  15691. source: "./media/characters/veronica/front.svg",
  15692. extra: 319 / 309,
  15693. bottom: 0.005
  15694. }
  15695. },
  15696. },
  15697. [
  15698. {
  15699. name: "Normal",
  15700. height: math.unit(6 + 1 / 12, "feet"),
  15701. default: true
  15702. },
  15703. ]
  15704. ))
  15705. characterMakers.push(() => makeCharacter(
  15706. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15707. {
  15708. front: {
  15709. height: math.unit(9 + 3 / 12, "feet"),
  15710. weight: math.unit(1100, "lb"),
  15711. name: "Front",
  15712. image: {
  15713. source: "./media/characters/braxton/front.svg",
  15714. extra: 1057 / 984,
  15715. bottom: 0.05
  15716. }
  15717. },
  15718. },
  15719. [
  15720. {
  15721. name: "Normal",
  15722. height: math.unit(9 + 3 / 12, "feet")
  15723. },
  15724. {
  15725. name: "Giant",
  15726. height: math.unit(300, "feet"),
  15727. default: true
  15728. },
  15729. {
  15730. name: "Macro",
  15731. height: math.unit(700, "feet")
  15732. },
  15733. {
  15734. name: "Megamacro",
  15735. height: math.unit(6000, "feet")
  15736. },
  15737. ]
  15738. ))
  15739. characterMakers.push(() => makeCharacter(
  15740. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15741. {
  15742. front: {
  15743. height: math.unit(6 + 7 / 12, "feet"),
  15744. weight: math.unit(150, "lb"),
  15745. name: "Front",
  15746. image: {
  15747. source: "./media/characters/blue-feyonics/front.svg",
  15748. extra: 1403 / 1306,
  15749. bottom: 0.047
  15750. }
  15751. },
  15752. },
  15753. [
  15754. {
  15755. name: "Normal",
  15756. height: math.unit(6 + 7 / 12, "feet"),
  15757. default: true
  15758. },
  15759. ]
  15760. ))
  15761. characterMakers.push(() => makeCharacter(
  15762. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15763. {
  15764. front: {
  15765. height: math.unit(1.8, "meters"),
  15766. weight: math.unit(60, "kg"),
  15767. name: "Front",
  15768. image: {
  15769. source: "./media/characters/maxwell/front.svg",
  15770. extra: 2060 / 1873
  15771. }
  15772. },
  15773. },
  15774. [
  15775. {
  15776. name: "Micro",
  15777. height: math.unit(1, "mm")
  15778. },
  15779. {
  15780. name: "Normal",
  15781. height: math.unit(1.8, "meter"),
  15782. default: true
  15783. },
  15784. {
  15785. name: "Macro",
  15786. height: math.unit(30, "meters")
  15787. },
  15788. {
  15789. name: "Megamacro",
  15790. height: math.unit(10, "km")
  15791. },
  15792. ]
  15793. ))
  15794. characterMakers.push(() => makeCharacter(
  15795. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15796. {
  15797. front: {
  15798. height: math.unit(6, "feet"),
  15799. weight: math.unit(150, "lb"),
  15800. name: "Front",
  15801. image: {
  15802. source: "./media/characters/jack/front.svg",
  15803. extra: 1754 / 1640,
  15804. bottom: 0.01
  15805. }
  15806. },
  15807. },
  15808. [
  15809. {
  15810. name: "Normal",
  15811. height: math.unit(80000, "feet"),
  15812. default: true
  15813. },
  15814. {
  15815. name: "Max size",
  15816. height: math.unit(10, "lightyears")
  15817. },
  15818. ]
  15819. ))
  15820. characterMakers.push(() => makeCharacter(
  15821. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15822. {
  15823. urban: {
  15824. height: math.unit(5, "feet"),
  15825. weight: math.unit(240, "lb"),
  15826. name: "Urban",
  15827. image: {
  15828. source: "./media/characters/cafat/urban.svg",
  15829. extra: 1223/1126,
  15830. bottom: 205/1428
  15831. }
  15832. },
  15833. summer: {
  15834. height: math.unit(5, "feet"),
  15835. weight: math.unit(240, "lb"),
  15836. name: "Summer",
  15837. image: {
  15838. source: "./media/characters/cafat/summer.svg",
  15839. extra: 1223/1126,
  15840. bottom: 205/1428
  15841. }
  15842. },
  15843. winter: {
  15844. height: math.unit(5, "feet"),
  15845. weight: math.unit(240, "lb"),
  15846. name: "Winter",
  15847. image: {
  15848. source: "./media/characters/cafat/winter.svg",
  15849. extra: 1223/1126,
  15850. bottom: 205/1428
  15851. }
  15852. },
  15853. lingerie: {
  15854. height: math.unit(5, "feet"),
  15855. weight: math.unit(240, "lb"),
  15856. name: "Lingerie",
  15857. image: {
  15858. source: "./media/characters/cafat/lingerie.svg",
  15859. extra: 1223/1126,
  15860. bottom: 205/1428
  15861. }
  15862. },
  15863. upright: {
  15864. height: math.unit(6.3, "feet"),
  15865. weight: math.unit(240, "lb"),
  15866. name: "Upright",
  15867. image: {
  15868. source: "./media/characters/cafat/upright.svg",
  15869. bottom: 0.01
  15870. }
  15871. },
  15872. uprightFull: {
  15873. height: math.unit(6.3, "feet"),
  15874. weight: math.unit(240, "lb"),
  15875. name: "Upright (Full)",
  15876. image: {
  15877. source: "./media/characters/cafat/upright-full.svg",
  15878. bottom: 0.01
  15879. }
  15880. },
  15881. },
  15882. [
  15883. {
  15884. name: "Small",
  15885. height: math.unit(5, "feet"),
  15886. default: true
  15887. },
  15888. {
  15889. name: "Large",
  15890. height: math.unit(13, "feet")
  15891. },
  15892. ]
  15893. ))
  15894. characterMakers.push(() => makeCharacter(
  15895. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15896. {
  15897. front: {
  15898. height: math.unit(6, "feet"),
  15899. weight: math.unit(150, "lb"),
  15900. name: "Front",
  15901. image: {
  15902. source: "./media/characters/verin-raharra/front.svg",
  15903. extra: 5019 / 4835,
  15904. bottom: 0.023
  15905. }
  15906. },
  15907. },
  15908. [
  15909. {
  15910. name: "Normal",
  15911. height: math.unit(7 + 5 / 12, "feet"),
  15912. default: true
  15913. },
  15914. {
  15915. name: "Upsized",
  15916. height: math.unit(20, "feet")
  15917. },
  15918. ]
  15919. ))
  15920. characterMakers.push(() => makeCharacter(
  15921. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15922. {
  15923. front: {
  15924. height: math.unit(7, "feet"),
  15925. weight: math.unit(230, "lb"),
  15926. name: "Front",
  15927. image: {
  15928. source: "./media/characters/nakata/front.svg",
  15929. extra: 1.005,
  15930. bottom: 0.01
  15931. }
  15932. },
  15933. },
  15934. [
  15935. {
  15936. name: "Normal",
  15937. height: math.unit(7, "feet"),
  15938. default: true
  15939. },
  15940. {
  15941. name: "Big",
  15942. height: math.unit(14, "feet")
  15943. },
  15944. {
  15945. name: "Macro",
  15946. height: math.unit(400, "feet")
  15947. },
  15948. ]
  15949. ))
  15950. characterMakers.push(() => makeCharacter(
  15951. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15952. {
  15953. front: {
  15954. height: math.unit(4.91, "feet"),
  15955. weight: math.unit(100, "lb"),
  15956. name: "Front",
  15957. image: {
  15958. source: "./media/characters/lily/front.svg",
  15959. extra: 1585 / 1415,
  15960. bottom: 0.02
  15961. }
  15962. },
  15963. },
  15964. [
  15965. {
  15966. name: "Normal",
  15967. height: math.unit(4.91, "feet"),
  15968. default: true
  15969. },
  15970. ]
  15971. ))
  15972. characterMakers.push(() => makeCharacter(
  15973. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15974. {
  15975. laying: {
  15976. height: math.unit(4 + 4 / 12, "feet"),
  15977. weight: math.unit(600, "lb"),
  15978. name: "Laying",
  15979. image: {
  15980. source: "./media/characters/sheila/laying.svg",
  15981. extra: 1333 / 1265,
  15982. bottom: 0.16
  15983. }
  15984. },
  15985. },
  15986. [
  15987. {
  15988. name: "Normal",
  15989. height: math.unit(4 + 4 / 12, "feet"),
  15990. default: true
  15991. },
  15992. ]
  15993. ))
  15994. characterMakers.push(() => makeCharacter(
  15995. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15996. {
  15997. front: {
  15998. height: math.unit(6, "feet"),
  15999. weight: math.unit(190, "lb"),
  16000. name: "Front",
  16001. image: {
  16002. source: "./media/characters/sax/front.svg",
  16003. extra: 1187 / 973,
  16004. bottom: 0.042
  16005. }
  16006. },
  16007. },
  16008. [
  16009. {
  16010. name: "Micro",
  16011. height: math.unit(4, "inches"),
  16012. default: true
  16013. },
  16014. ]
  16015. ))
  16016. characterMakers.push(() => makeCharacter(
  16017. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16018. {
  16019. front: {
  16020. height: math.unit(6, "feet"),
  16021. weight: math.unit(150, "lb"),
  16022. name: "Front",
  16023. image: {
  16024. source: "./media/characters/pandora/front.svg",
  16025. extra: 2720 / 2556,
  16026. bottom: 0.015
  16027. }
  16028. },
  16029. back: {
  16030. height: math.unit(6, "feet"),
  16031. weight: math.unit(150, "lb"),
  16032. name: "Back",
  16033. image: {
  16034. source: "./media/characters/pandora/back.svg",
  16035. extra: 2720 / 2556,
  16036. bottom: 0.01
  16037. }
  16038. },
  16039. beans: {
  16040. height: math.unit(6 / 8, "feet"),
  16041. name: "Beans",
  16042. image: {
  16043. source: "./media/characters/pandora/beans.svg"
  16044. }
  16045. },
  16046. collar: {
  16047. height: math.unit(0.31, "feet"),
  16048. name: "Collar",
  16049. image: {
  16050. source: "./media/characters/pandora/collar.svg"
  16051. }
  16052. },
  16053. skirt: {
  16054. height: math.unit(6, "feet"),
  16055. weight: math.unit(150, "lb"),
  16056. name: "Skirt",
  16057. image: {
  16058. source: "./media/characters/pandora/skirt.svg",
  16059. extra: 1622 / 1525,
  16060. bottom: 0.015
  16061. }
  16062. },
  16063. hoodie: {
  16064. height: math.unit(6, "feet"),
  16065. weight: math.unit(150, "lb"),
  16066. name: "Hoodie",
  16067. image: {
  16068. source: "./media/characters/pandora/hoodie.svg",
  16069. extra: 1622 / 1525,
  16070. bottom: 0.015
  16071. }
  16072. },
  16073. casual: {
  16074. height: math.unit(6, "feet"),
  16075. weight: math.unit(150, "lb"),
  16076. name: "Casual",
  16077. image: {
  16078. source: "./media/characters/pandora/casual.svg",
  16079. extra: 1622 / 1525,
  16080. bottom: 0.015
  16081. }
  16082. },
  16083. },
  16084. [
  16085. {
  16086. name: "Normal",
  16087. height: math.unit(6, "feet")
  16088. },
  16089. {
  16090. name: "Big Steppy",
  16091. height: math.unit(1, "km"),
  16092. default: true
  16093. },
  16094. {
  16095. name: "Galactic Steppy",
  16096. height: math.unit(2, "gigameters")
  16097. },
  16098. ]
  16099. ))
  16100. characterMakers.push(() => makeCharacter(
  16101. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16102. {
  16103. side: {
  16104. height: math.unit(10, "feet"),
  16105. weight: math.unit(800, "kg"),
  16106. name: "Side",
  16107. image: {
  16108. source: "./media/characters/venio-darcony/side.svg",
  16109. extra: 1373 / 1003,
  16110. bottom: 0.037
  16111. }
  16112. },
  16113. front: {
  16114. height: math.unit(19, "feet"),
  16115. weight: math.unit(800, "kg"),
  16116. name: "Front",
  16117. image: {
  16118. source: "./media/characters/venio-darcony/front.svg"
  16119. }
  16120. },
  16121. back: {
  16122. height: math.unit(19, "feet"),
  16123. weight: math.unit(800, "kg"),
  16124. name: "Back",
  16125. image: {
  16126. source: "./media/characters/venio-darcony/back.svg"
  16127. }
  16128. },
  16129. sideNsfw: {
  16130. height: math.unit(10, "feet"),
  16131. weight: math.unit(800, "kg"),
  16132. name: "Side (NSFW)",
  16133. image: {
  16134. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16135. extra: 1373 / 1003,
  16136. bottom: 0.037
  16137. }
  16138. },
  16139. frontNsfw: {
  16140. height: math.unit(19, "feet"),
  16141. weight: math.unit(800, "kg"),
  16142. name: "Front (NSFW)",
  16143. image: {
  16144. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16145. }
  16146. },
  16147. backNsfw: {
  16148. height: math.unit(19, "feet"),
  16149. weight: math.unit(800, "kg"),
  16150. name: "Back (NSFW)",
  16151. image: {
  16152. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16153. }
  16154. },
  16155. sideArmored: {
  16156. height: math.unit(10, "feet"),
  16157. weight: math.unit(800, "kg"),
  16158. name: "Side (Armored)",
  16159. image: {
  16160. source: "./media/characters/venio-darcony/side-armored.svg",
  16161. extra: 1373 / 1003,
  16162. bottom: 0.037
  16163. }
  16164. },
  16165. frontArmored: {
  16166. height: math.unit(19, "feet"),
  16167. weight: math.unit(900, "kg"),
  16168. name: "Front (Armored)",
  16169. image: {
  16170. source: "./media/characters/venio-darcony/front-armored.svg"
  16171. }
  16172. },
  16173. backArmored: {
  16174. height: math.unit(19, "feet"),
  16175. weight: math.unit(900, "kg"),
  16176. name: "Back (Armored)",
  16177. image: {
  16178. source: "./media/characters/venio-darcony/back-armored.svg"
  16179. }
  16180. },
  16181. sword: {
  16182. height: math.unit(10, "feet"),
  16183. weight: math.unit(50, "lb"),
  16184. name: "Sword",
  16185. image: {
  16186. source: "./media/characters/venio-darcony/sword.svg"
  16187. }
  16188. },
  16189. },
  16190. [
  16191. {
  16192. name: "Normal",
  16193. height: math.unit(10, "feet")
  16194. },
  16195. {
  16196. name: "Macro",
  16197. height: math.unit(130, "feet"),
  16198. default: true
  16199. },
  16200. {
  16201. name: "Macro+",
  16202. height: math.unit(240, "feet")
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16208. {
  16209. front: {
  16210. height: math.unit(6, "feet"),
  16211. weight: math.unit(150, "lb"),
  16212. name: "Front",
  16213. image: {
  16214. source: "./media/characters/veski/front.svg",
  16215. extra: 1299 / 1225,
  16216. bottom: 0.04
  16217. }
  16218. },
  16219. back: {
  16220. height: math.unit(6, "feet"),
  16221. weight: math.unit(150, "lb"),
  16222. name: "Back",
  16223. image: {
  16224. source: "./media/characters/veski/back.svg",
  16225. extra: 1299 / 1225,
  16226. bottom: 0.008
  16227. }
  16228. },
  16229. maw: {
  16230. height: math.unit(1.5 * 1.21, "feet"),
  16231. name: "Maw",
  16232. image: {
  16233. source: "./media/characters/veski/maw.svg"
  16234. }
  16235. },
  16236. },
  16237. [
  16238. {
  16239. name: "Macro",
  16240. height: math.unit(2, "km"),
  16241. default: true
  16242. },
  16243. ]
  16244. ))
  16245. characterMakers.push(() => makeCharacter(
  16246. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16247. {
  16248. front: {
  16249. height: math.unit(5 + 7 / 12, "feet"),
  16250. name: "Front",
  16251. image: {
  16252. source: "./media/characters/isabelle/front.svg",
  16253. extra: 2130 / 1976,
  16254. bottom: 0.05
  16255. }
  16256. },
  16257. },
  16258. [
  16259. {
  16260. name: "Supermicro",
  16261. height: math.unit(10, "micrometers")
  16262. },
  16263. {
  16264. name: "Micro",
  16265. height: math.unit(1, "inch")
  16266. },
  16267. {
  16268. name: "Tiny",
  16269. height: math.unit(5, "inches")
  16270. },
  16271. {
  16272. name: "Standard",
  16273. height: math.unit(5 + 7 / 12, "inches")
  16274. },
  16275. {
  16276. name: "Macro",
  16277. height: math.unit(80, "meters"),
  16278. default: true
  16279. },
  16280. {
  16281. name: "Megamacro",
  16282. height: math.unit(250, "meters")
  16283. },
  16284. {
  16285. name: "Gigamacro",
  16286. height: math.unit(5, "km")
  16287. },
  16288. {
  16289. name: "Cosmic",
  16290. height: math.unit(2.5e6, "miles")
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16296. {
  16297. front: {
  16298. height: math.unit(6, "feet"),
  16299. weight: math.unit(150, "lb"),
  16300. name: "Front",
  16301. image: {
  16302. source: "./media/characters/hanzo/front.svg",
  16303. extra: 374 / 344,
  16304. bottom: 0.02
  16305. }
  16306. },
  16307. },
  16308. [
  16309. {
  16310. name: "Normal",
  16311. height: math.unit(8, "feet"),
  16312. default: true
  16313. },
  16314. ]
  16315. ))
  16316. characterMakers.push(() => makeCharacter(
  16317. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16318. {
  16319. front: {
  16320. height: math.unit(7, "feet"),
  16321. weight: math.unit(130, "lb"),
  16322. name: "Front",
  16323. image: {
  16324. source: "./media/characters/anna/front.svg",
  16325. extra: 169 / 145,
  16326. bottom: 0.06
  16327. }
  16328. },
  16329. full: {
  16330. height: math.unit(4.96, "feet"),
  16331. weight: math.unit(220, "lb"),
  16332. name: "Full",
  16333. image: {
  16334. source: "./media/characters/anna/full.svg",
  16335. extra: 138 / 114,
  16336. bottom: 0.15
  16337. }
  16338. },
  16339. tongue: {
  16340. height: math.unit(2.53, "feet"),
  16341. name: "Tongue",
  16342. image: {
  16343. source: "./media/characters/anna/tongue.svg"
  16344. }
  16345. },
  16346. },
  16347. [
  16348. {
  16349. name: "Normal",
  16350. height: math.unit(7, "feet"),
  16351. default: true
  16352. },
  16353. ]
  16354. ))
  16355. characterMakers.push(() => makeCharacter(
  16356. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16357. {
  16358. front: {
  16359. height: math.unit(7, "feet"),
  16360. weight: math.unit(150, "lb"),
  16361. name: "Front",
  16362. image: {
  16363. source: "./media/characters/ian-corvid/front.svg",
  16364. extra: 150 / 142,
  16365. bottom: 0.02
  16366. }
  16367. },
  16368. back: {
  16369. height: math.unit(7, "feet"),
  16370. weight: math.unit(150, "lb"),
  16371. name: "Back",
  16372. image: {
  16373. source: "./media/characters/ian-corvid/back.svg",
  16374. extra: 150 / 143,
  16375. bottom: 0.01
  16376. }
  16377. },
  16378. stomping: {
  16379. height: math.unit(7, "feet"),
  16380. weight: math.unit(150, "lb"),
  16381. name: "Stomping",
  16382. image: {
  16383. source: "./media/characters/ian-corvid/stomping.svg",
  16384. extra: 76 / 72
  16385. }
  16386. },
  16387. sitting: {
  16388. height: math.unit(7 / 1.8, "feet"),
  16389. weight: math.unit(150, "lb"),
  16390. name: "Sitting",
  16391. image: {
  16392. source: "./media/characters/ian-corvid/sitting.svg",
  16393. extra: 1400 / 1269,
  16394. bottom: 0.15
  16395. }
  16396. },
  16397. },
  16398. [
  16399. {
  16400. name: "Tiny Microw",
  16401. height: math.unit(1, "inch")
  16402. },
  16403. {
  16404. name: "Microw",
  16405. height: math.unit(6, "inches")
  16406. },
  16407. {
  16408. name: "Crow",
  16409. height: math.unit(7 + 1 / 12, "feet"),
  16410. default: true
  16411. },
  16412. {
  16413. name: "Macrow",
  16414. height: math.unit(176, "feet")
  16415. },
  16416. ]
  16417. ))
  16418. characterMakers.push(() => makeCharacter(
  16419. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16420. {
  16421. front: {
  16422. height: math.unit(5 + 7 / 12, "feet"),
  16423. weight: math.unit(147, "lb"),
  16424. name: "Front",
  16425. image: {
  16426. source: "./media/characters/natalie-kellon/front.svg",
  16427. extra: 1214 / 1141,
  16428. bottom: 0.02
  16429. }
  16430. },
  16431. },
  16432. [
  16433. {
  16434. name: "Micro",
  16435. height: math.unit(1 / 16, "inch")
  16436. },
  16437. {
  16438. name: "Tiny",
  16439. height: math.unit(4, "inches")
  16440. },
  16441. {
  16442. name: "Normal",
  16443. height: math.unit(5 + 7 / 12, "feet"),
  16444. default: true
  16445. },
  16446. {
  16447. name: "Amazon",
  16448. height: math.unit(12, "feet")
  16449. },
  16450. {
  16451. name: "Giantess",
  16452. height: math.unit(160, "meters")
  16453. },
  16454. {
  16455. name: "Titaness",
  16456. height: math.unit(800, "meters")
  16457. },
  16458. ]
  16459. ))
  16460. characterMakers.push(() => makeCharacter(
  16461. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16462. {
  16463. front: {
  16464. height: math.unit(6, "feet"),
  16465. weight: math.unit(150, "lb"),
  16466. name: "Front",
  16467. image: {
  16468. source: "./media/characters/alluria/front.svg",
  16469. extra: 806 / 738,
  16470. bottom: 0.01
  16471. }
  16472. },
  16473. side: {
  16474. height: math.unit(6, "feet"),
  16475. weight: math.unit(150, "lb"),
  16476. name: "Side",
  16477. image: {
  16478. source: "./media/characters/alluria/side.svg",
  16479. extra: 800 / 750,
  16480. }
  16481. },
  16482. back: {
  16483. height: math.unit(6, "feet"),
  16484. weight: math.unit(150, "lb"),
  16485. name: "Back",
  16486. image: {
  16487. source: "./media/characters/alluria/back.svg",
  16488. extra: 806 / 738,
  16489. }
  16490. },
  16491. frontMaid: {
  16492. height: math.unit(6, "feet"),
  16493. weight: math.unit(150, "lb"),
  16494. name: "Front (Maid)",
  16495. image: {
  16496. source: "./media/characters/alluria/front-maid.svg",
  16497. extra: 806 / 738,
  16498. bottom: 0.01
  16499. }
  16500. },
  16501. sideMaid: {
  16502. height: math.unit(6, "feet"),
  16503. weight: math.unit(150, "lb"),
  16504. name: "Side (Maid)",
  16505. image: {
  16506. source: "./media/characters/alluria/side-maid.svg",
  16507. extra: 800 / 750,
  16508. bottom: 0.005
  16509. }
  16510. },
  16511. backMaid: {
  16512. height: math.unit(6, "feet"),
  16513. weight: math.unit(150, "lb"),
  16514. name: "Back (Maid)",
  16515. image: {
  16516. source: "./media/characters/alluria/back-maid.svg",
  16517. extra: 806 / 738,
  16518. }
  16519. },
  16520. },
  16521. [
  16522. {
  16523. name: "Micro",
  16524. height: math.unit(6, "inches"),
  16525. default: true
  16526. },
  16527. ]
  16528. ))
  16529. characterMakers.push(() => makeCharacter(
  16530. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16531. {
  16532. front: {
  16533. height: math.unit(6, "feet"),
  16534. weight: math.unit(150, "lb"),
  16535. name: "Front",
  16536. image: {
  16537. source: "./media/characters/kyle/front.svg",
  16538. extra: 1069 / 962,
  16539. bottom: 77.228 / 1727.45
  16540. }
  16541. },
  16542. },
  16543. [
  16544. {
  16545. name: "Macro",
  16546. height: math.unit(150, "feet"),
  16547. default: true
  16548. },
  16549. ]
  16550. ))
  16551. characterMakers.push(() => makeCharacter(
  16552. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16553. {
  16554. front: {
  16555. height: math.unit(6, "feet"),
  16556. weight: math.unit(300, "lb"),
  16557. name: "Front",
  16558. image: {
  16559. source: "./media/characters/duncan/front.svg",
  16560. extra: 1650 / 1482,
  16561. bottom: 0.05
  16562. }
  16563. },
  16564. },
  16565. [
  16566. {
  16567. name: "Macro",
  16568. height: math.unit(100, "feet"),
  16569. default: true
  16570. },
  16571. ]
  16572. ))
  16573. characterMakers.push(() => makeCharacter(
  16574. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16575. {
  16576. front: {
  16577. height: math.unit(5 + 4 / 12, "feet"),
  16578. weight: math.unit(220, "lb"),
  16579. name: "Front",
  16580. image: {
  16581. source: "./media/characters/memory/front.svg",
  16582. extra: 3641 / 3545,
  16583. bottom: 0.03
  16584. }
  16585. },
  16586. back: {
  16587. height: math.unit(5 + 4 / 12, "feet"),
  16588. weight: math.unit(220, "lb"),
  16589. name: "Back",
  16590. image: {
  16591. source: "./media/characters/memory/back.svg",
  16592. extra: 3641 / 3545,
  16593. bottom: 0.025
  16594. }
  16595. },
  16596. frontSkirt: {
  16597. height: math.unit(5 + 4 / 12, "feet"),
  16598. weight: math.unit(220, "lb"),
  16599. name: "Front (Skirt)",
  16600. image: {
  16601. source: "./media/characters/memory/front-skirt.svg",
  16602. extra: 3641 / 3545,
  16603. bottom: 0.03
  16604. }
  16605. },
  16606. frontDress: {
  16607. height: math.unit(5 + 4 / 12, "feet"),
  16608. weight: math.unit(220, "lb"),
  16609. name: "Front (Dress)",
  16610. image: {
  16611. source: "./media/characters/memory/front-dress.svg",
  16612. extra: 3641 / 3545,
  16613. bottom: 0.03
  16614. }
  16615. },
  16616. },
  16617. [
  16618. {
  16619. name: "Micro",
  16620. height: math.unit(6, "inches"),
  16621. default: true
  16622. },
  16623. {
  16624. name: "Normal",
  16625. height: math.unit(5 + 4 / 12, "feet")
  16626. },
  16627. ]
  16628. ))
  16629. characterMakers.push(() => makeCharacter(
  16630. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16631. {
  16632. front: {
  16633. height: math.unit(4 + 11 / 12, "feet"),
  16634. weight: math.unit(100, "lb"),
  16635. name: "Front",
  16636. image: {
  16637. source: "./media/characters/luno/front.svg",
  16638. extra: 1535 / 1487,
  16639. bottom: 0.03
  16640. }
  16641. },
  16642. },
  16643. [
  16644. {
  16645. name: "Micro",
  16646. height: math.unit(3, "inches")
  16647. },
  16648. {
  16649. name: "Normal",
  16650. height: math.unit(4 + 11 / 12, "feet"),
  16651. default: true
  16652. },
  16653. {
  16654. name: "Macro",
  16655. height: math.unit(300, "feet")
  16656. },
  16657. {
  16658. name: "Megamacro",
  16659. height: math.unit(700, "miles")
  16660. },
  16661. ]
  16662. ))
  16663. characterMakers.push(() => makeCharacter(
  16664. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16665. {
  16666. front: {
  16667. height: math.unit(6 + 2 / 12, "feet"),
  16668. weight: math.unit(170, "lb"),
  16669. name: "Front",
  16670. image: {
  16671. source: "./media/characters/jamesy/front.svg",
  16672. extra: 440 / 382,
  16673. bottom: 0.005
  16674. }
  16675. },
  16676. },
  16677. [
  16678. {
  16679. name: "Micro",
  16680. height: math.unit(3, "inches")
  16681. },
  16682. {
  16683. name: "Normal",
  16684. height: math.unit(6 + 2 / 12, "feet"),
  16685. default: true
  16686. },
  16687. {
  16688. name: "Macro",
  16689. height: math.unit(300, "feet")
  16690. },
  16691. {
  16692. name: "Megamacro",
  16693. height: math.unit(700, "miles")
  16694. },
  16695. ]
  16696. ))
  16697. characterMakers.push(() => makeCharacter(
  16698. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16699. {
  16700. front: {
  16701. height: math.unit(6, "feet"),
  16702. weight: math.unit(160, "lb"),
  16703. name: "Front",
  16704. image: {
  16705. source: "./media/characters/mark/front.svg",
  16706. extra: 3300 / 3100,
  16707. bottom: 136.42 / 3440.47
  16708. }
  16709. },
  16710. },
  16711. [
  16712. {
  16713. name: "Macro",
  16714. height: math.unit(120, "meters")
  16715. },
  16716. {
  16717. name: "Bigger Macro",
  16718. height: math.unit(350, "meters")
  16719. },
  16720. {
  16721. name: "Megamacro",
  16722. height: math.unit(8, "km"),
  16723. default: true
  16724. },
  16725. {
  16726. name: "Continental",
  16727. height: math.unit(4550, "km")
  16728. },
  16729. {
  16730. name: "Planetary",
  16731. height: math.unit(65000, "km")
  16732. },
  16733. ]
  16734. ))
  16735. characterMakers.push(() => makeCharacter(
  16736. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16737. {
  16738. front: {
  16739. height: math.unit(6, "feet"),
  16740. weight: math.unit(400, "lb"),
  16741. name: "Front",
  16742. image: {
  16743. source: "./media/characters/mac/front.svg",
  16744. extra: 1048 / 987.7,
  16745. bottom: 60 / 1107.6,
  16746. }
  16747. },
  16748. },
  16749. [
  16750. {
  16751. name: "Macro",
  16752. height: math.unit(500, "feet"),
  16753. default: true
  16754. },
  16755. ]
  16756. ))
  16757. characterMakers.push(() => makeCharacter(
  16758. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16759. {
  16760. front: {
  16761. height: math.unit(5 + 2 / 12, "feet"),
  16762. weight: math.unit(190, "lb"),
  16763. name: "Front",
  16764. image: {
  16765. source: "./media/characters/bari/front.svg",
  16766. extra: 3156 / 2880,
  16767. bottom: 0.03
  16768. }
  16769. },
  16770. back: {
  16771. height: math.unit(5 + 2 / 12, "feet"),
  16772. weight: math.unit(190, "lb"),
  16773. name: "Back",
  16774. image: {
  16775. source: "./media/characters/bari/back.svg",
  16776. extra: 3260 / 2834,
  16777. bottom: 0.025
  16778. }
  16779. },
  16780. frontPlush: {
  16781. height: math.unit(5 + 2 / 12, "feet"),
  16782. weight: math.unit(190, "lb"),
  16783. name: "Front (Plush)",
  16784. image: {
  16785. source: "./media/characters/bari/front-plush.svg",
  16786. extra: 1112 / 1061,
  16787. bottom: 0.002
  16788. }
  16789. },
  16790. },
  16791. [
  16792. {
  16793. name: "Micro",
  16794. height: math.unit(3, "inches")
  16795. },
  16796. {
  16797. name: "Normal",
  16798. height: math.unit(5 + 2 / 12, "feet"),
  16799. default: true
  16800. },
  16801. {
  16802. name: "Macro",
  16803. height: math.unit(20, "feet")
  16804. },
  16805. ]
  16806. ))
  16807. characterMakers.push(() => makeCharacter(
  16808. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16809. {
  16810. front: {
  16811. height: math.unit(6 + 1 / 12, "feet"),
  16812. weight: math.unit(275, "lb"),
  16813. name: "Front",
  16814. image: {
  16815. source: "./media/characters/hunter-misha-raven/front.svg"
  16816. }
  16817. },
  16818. },
  16819. [
  16820. {
  16821. name: "Mortal",
  16822. height: math.unit(6 + 1 / 12, "feet")
  16823. },
  16824. {
  16825. name: "Divine",
  16826. height: math.unit(1.12134e34, "parsecs"),
  16827. default: true
  16828. },
  16829. ]
  16830. ))
  16831. characterMakers.push(() => makeCharacter(
  16832. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16833. {
  16834. front: {
  16835. height: math.unit(6 + 3 / 12, "feet"),
  16836. weight: math.unit(220, "lb"),
  16837. name: "Front",
  16838. image: {
  16839. source: "./media/characters/max-calore/front.svg",
  16840. extra: 1700 / 1648,
  16841. bottom: 0.01
  16842. }
  16843. },
  16844. back: {
  16845. height: math.unit(6 + 3 / 12, "feet"),
  16846. weight: math.unit(220, "lb"),
  16847. name: "Back",
  16848. image: {
  16849. source: "./media/characters/max-calore/back.svg",
  16850. extra: 1700 / 1648,
  16851. bottom: 0.01
  16852. }
  16853. },
  16854. },
  16855. [
  16856. {
  16857. name: "Normal",
  16858. height: math.unit(6 + 3 / 12, "feet"),
  16859. default: true
  16860. },
  16861. ]
  16862. ))
  16863. characterMakers.push(() => makeCharacter(
  16864. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16865. {
  16866. side: {
  16867. height: math.unit(2 + 8 / 12, "feet"),
  16868. weight: math.unit(99, "lb"),
  16869. name: "Side",
  16870. image: {
  16871. source: "./media/characters/aspen/side.svg",
  16872. extra: 152 / 138,
  16873. bottom: 0.032
  16874. }
  16875. },
  16876. },
  16877. [
  16878. {
  16879. name: "Normal",
  16880. height: math.unit(2 + 8 / 12, "feet"),
  16881. default: true
  16882. },
  16883. ]
  16884. ))
  16885. characterMakers.push(() => makeCharacter(
  16886. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16887. {
  16888. side: {
  16889. height: math.unit(3 + 2 / 12, "feet"),
  16890. weight: math.unit(224, "lb"),
  16891. name: "Side",
  16892. image: {
  16893. source: "./media/characters/sheila-feral-wolf/side.svg",
  16894. extra: 179 / 166,
  16895. bottom: 0.03
  16896. }
  16897. },
  16898. },
  16899. [
  16900. {
  16901. name: "Normal",
  16902. height: math.unit(3 + 2 / 12, "feet"),
  16903. default: true
  16904. },
  16905. ]
  16906. ))
  16907. characterMakers.push(() => makeCharacter(
  16908. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16909. {
  16910. side: {
  16911. height: math.unit(1 + 9 / 12, "feet"),
  16912. weight: math.unit(38, "lb"),
  16913. name: "Side",
  16914. image: {
  16915. source: "./media/characters/michelle/side.svg",
  16916. extra: 147 / 136.7,
  16917. bottom: 0.03
  16918. }
  16919. },
  16920. },
  16921. [
  16922. {
  16923. name: "Normal",
  16924. height: math.unit(1 + 9 / 12, "feet"),
  16925. default: true
  16926. },
  16927. ]
  16928. ))
  16929. characterMakers.push(() => makeCharacter(
  16930. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16931. {
  16932. front: {
  16933. height: math.unit(1 + 1 / 12, "feet"),
  16934. weight: math.unit(18, "lb"),
  16935. name: "Front",
  16936. image: {
  16937. source: "./media/characters/nino/front.svg"
  16938. }
  16939. },
  16940. },
  16941. [
  16942. {
  16943. name: "Normal",
  16944. height: math.unit(1 + 1 / 12, "feet"),
  16945. default: true
  16946. },
  16947. ]
  16948. ))
  16949. characterMakers.push(() => makeCharacter(
  16950. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16951. {
  16952. front: {
  16953. height: math.unit(1, "feet"),
  16954. weight: math.unit(16, "lb"),
  16955. name: "Front",
  16956. image: {
  16957. source: "./media/characters/viola/front.svg"
  16958. }
  16959. },
  16960. },
  16961. [
  16962. {
  16963. name: "Normal",
  16964. height: math.unit(1, "feet"),
  16965. default: true
  16966. },
  16967. ]
  16968. ))
  16969. characterMakers.push(() => makeCharacter(
  16970. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16971. {
  16972. front: {
  16973. height: math.unit(6 + 5 / 12, "feet"),
  16974. weight: math.unit(580, "lb"),
  16975. name: "Front",
  16976. image: {
  16977. source: "./media/characters/atlas/front.svg",
  16978. extra: 298.5 / 290,
  16979. bottom: 0.015
  16980. }
  16981. },
  16982. },
  16983. [
  16984. {
  16985. name: "Normal",
  16986. height: math.unit(6 + 5 / 12, "feet"),
  16987. default: true
  16988. },
  16989. ]
  16990. ))
  16991. characterMakers.push(() => makeCharacter(
  16992. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16993. {
  16994. side: {
  16995. height: math.unit(1 + 10 / 12, "feet"),
  16996. weight: math.unit(25, "lb"),
  16997. name: "Side",
  16998. image: {
  16999. source: "./media/characters/davy/side.svg",
  17000. extra: 200 / 170,
  17001. bottom: 0.01
  17002. }
  17003. },
  17004. },
  17005. [
  17006. {
  17007. name: "Normal",
  17008. height: math.unit(1 + 10 / 12, "feet"),
  17009. default: true
  17010. },
  17011. ]
  17012. ))
  17013. characterMakers.push(() => makeCharacter(
  17014. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17015. {
  17016. side: {
  17017. height: math.unit(4 + 8 / 12, "feet"),
  17018. weight: math.unit(166, "lb"),
  17019. name: "Side",
  17020. image: {
  17021. source: "./media/characters/fiona/side.svg",
  17022. extra: 232 / 220,
  17023. bottom: 0.03
  17024. }
  17025. },
  17026. },
  17027. [
  17028. {
  17029. name: "Normal",
  17030. height: math.unit(4 + 8 / 12, "feet"),
  17031. default: true
  17032. },
  17033. ]
  17034. ))
  17035. characterMakers.push(() => makeCharacter(
  17036. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17037. {
  17038. front: {
  17039. height: math.unit(2, "feet"),
  17040. weight: math.unit(62, "lb"),
  17041. name: "Front",
  17042. image: {
  17043. source: "./media/characters/lyla/front.svg",
  17044. bottom: 0.1
  17045. }
  17046. },
  17047. },
  17048. [
  17049. {
  17050. name: "Normal",
  17051. height: math.unit(2, "feet"),
  17052. default: true
  17053. },
  17054. ]
  17055. ))
  17056. characterMakers.push(() => makeCharacter(
  17057. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17058. {
  17059. side: {
  17060. height: math.unit(1.8, "feet"),
  17061. weight: math.unit(44, "lb"),
  17062. name: "Side",
  17063. image: {
  17064. source: "./media/characters/perseus/side.svg",
  17065. bottom: 0.21
  17066. }
  17067. },
  17068. },
  17069. [
  17070. {
  17071. name: "Normal",
  17072. height: math.unit(1.8, "feet"),
  17073. default: true
  17074. },
  17075. ]
  17076. ))
  17077. characterMakers.push(() => makeCharacter(
  17078. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17079. {
  17080. side: {
  17081. height: math.unit(4 + 2 / 12, "feet"),
  17082. weight: math.unit(20, "lb"),
  17083. name: "Side",
  17084. image: {
  17085. source: "./media/characters/remus/side.svg"
  17086. }
  17087. },
  17088. },
  17089. [
  17090. {
  17091. name: "Normal",
  17092. height: math.unit(4 + 2 / 12, "feet"),
  17093. default: true
  17094. },
  17095. ]
  17096. ))
  17097. characterMakers.push(() => makeCharacter(
  17098. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17099. {
  17100. front: {
  17101. height: math.unit(4 + 11 / 12, "feet"),
  17102. weight: math.unit(114, "lb"),
  17103. name: "Front",
  17104. image: {
  17105. source: "./media/characters/raf/front.svg",
  17106. bottom: 20.5 / 1863
  17107. }
  17108. },
  17109. side: {
  17110. height: math.unit(4 + 11 / 12, "feet"),
  17111. weight: math.unit(114, "lb"),
  17112. name: "Side",
  17113. image: {
  17114. source: "./media/characters/raf/side.svg",
  17115. bottom: 22 / 1822
  17116. }
  17117. },
  17118. },
  17119. [
  17120. {
  17121. name: "Micro",
  17122. height: math.unit(2, "inches")
  17123. },
  17124. {
  17125. name: "Normal",
  17126. height: math.unit(4 + 11 / 12, "feet"),
  17127. default: true
  17128. },
  17129. {
  17130. name: "Macro",
  17131. height: math.unit(70, "feet")
  17132. },
  17133. ]
  17134. ))
  17135. characterMakers.push(() => makeCharacter(
  17136. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17137. {
  17138. front: {
  17139. height: math.unit(1.5, "meters"),
  17140. weight: math.unit(68, "kg"),
  17141. name: "Front",
  17142. image: {
  17143. source: "./media/characters/liam-einarr/front.svg",
  17144. extra: 2822 / 2666
  17145. }
  17146. },
  17147. back: {
  17148. height: math.unit(1.5, "meters"),
  17149. weight: math.unit(68, "kg"),
  17150. name: "Back",
  17151. image: {
  17152. source: "./media/characters/liam-einarr/back.svg",
  17153. extra: 2822 / 2666,
  17154. bottom: 0.015
  17155. }
  17156. },
  17157. },
  17158. [
  17159. {
  17160. name: "Normal",
  17161. height: math.unit(1.5, "meters"),
  17162. default: true
  17163. },
  17164. {
  17165. name: "Macro",
  17166. height: math.unit(150, "meters")
  17167. },
  17168. {
  17169. name: "Megamacro",
  17170. height: math.unit(35, "km")
  17171. },
  17172. ]
  17173. ))
  17174. characterMakers.push(() => makeCharacter(
  17175. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17176. {
  17177. front: {
  17178. height: math.unit(6, "feet"),
  17179. weight: math.unit(75, "kg"),
  17180. name: "Front",
  17181. image: {
  17182. source: "./media/characters/linda/front.svg",
  17183. extra: 930 / 874,
  17184. bottom: 0.004
  17185. }
  17186. },
  17187. },
  17188. [
  17189. {
  17190. name: "Normal",
  17191. height: math.unit(6, "feet"),
  17192. default: true
  17193. },
  17194. ]
  17195. ))
  17196. characterMakers.push(() => makeCharacter(
  17197. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17198. {
  17199. front: {
  17200. height: math.unit(6 + 8 / 12, "feet"),
  17201. weight: math.unit(220, "lb"),
  17202. name: "Front",
  17203. image: {
  17204. source: "./media/characters/caylex/front.svg",
  17205. extra: 821 / 772,
  17206. bottom: 0.07
  17207. }
  17208. },
  17209. back: {
  17210. height: math.unit(6 + 8 / 12, "feet"),
  17211. weight: math.unit(220, "lb"),
  17212. name: "Back",
  17213. image: {
  17214. source: "./media/characters/caylex/back.svg",
  17215. extra: 821 / 772,
  17216. bottom: 0.022
  17217. }
  17218. },
  17219. hand: {
  17220. height: math.unit(1.25, "feet"),
  17221. name: "Hand",
  17222. image: {
  17223. source: "./media/characters/caylex/hand.svg"
  17224. }
  17225. },
  17226. foot: {
  17227. height: math.unit(1.6, "feet"),
  17228. name: "Foot",
  17229. image: {
  17230. source: "./media/characters/caylex/foot.svg"
  17231. }
  17232. },
  17233. armored: {
  17234. height: math.unit(6 + 8 / 12, "feet"),
  17235. weight: math.unit(250, "lb"),
  17236. name: "Armored",
  17237. image: {
  17238. source: "./media/characters/caylex/armored.svg",
  17239. extra: 1420 / 1310,
  17240. bottom: 0.045
  17241. }
  17242. },
  17243. },
  17244. [
  17245. {
  17246. name: "Normal",
  17247. height: math.unit(6 + 8 / 12, "feet"),
  17248. default: true
  17249. },
  17250. {
  17251. name: "Normal+",
  17252. height: math.unit(12, "feet")
  17253. },
  17254. ]
  17255. ))
  17256. characterMakers.push(() => makeCharacter(
  17257. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17258. {
  17259. front: {
  17260. height: math.unit(7 + 6 / 12, "feet"),
  17261. weight: math.unit(288, "lb"),
  17262. name: "Front",
  17263. image: {
  17264. source: "./media/characters/alana/front.svg",
  17265. extra: 679 / 653,
  17266. bottom: 22.5 / 701
  17267. }
  17268. },
  17269. },
  17270. [
  17271. {
  17272. name: "Normal",
  17273. height: math.unit(7 + 6 / 12, "feet")
  17274. },
  17275. {
  17276. name: "Large",
  17277. height: math.unit(50, "feet")
  17278. },
  17279. {
  17280. name: "Macro",
  17281. height: math.unit(100, "feet"),
  17282. default: true
  17283. },
  17284. {
  17285. name: "Macro+",
  17286. height: math.unit(200, "feet")
  17287. },
  17288. ]
  17289. ))
  17290. characterMakers.push(() => makeCharacter(
  17291. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17292. {
  17293. front: {
  17294. height: math.unit(6 + 1 / 12, "feet"),
  17295. weight: math.unit(210, "lb"),
  17296. name: "Front",
  17297. image: {
  17298. source: "./media/characters/hasani/front.svg",
  17299. extra: 244 / 232,
  17300. bottom: 0.01
  17301. }
  17302. },
  17303. back: {
  17304. height: math.unit(6 + 1 / 12, "feet"),
  17305. weight: math.unit(210, "lb"),
  17306. name: "Back",
  17307. image: {
  17308. source: "./media/characters/hasani/back.svg",
  17309. extra: 244 / 232,
  17310. bottom: 0.01
  17311. }
  17312. },
  17313. },
  17314. [
  17315. {
  17316. name: "Normal",
  17317. height: math.unit(6 + 1 / 12, "feet")
  17318. },
  17319. {
  17320. name: "Macro",
  17321. height: math.unit(175, "feet"),
  17322. default: true
  17323. },
  17324. ]
  17325. ))
  17326. characterMakers.push(() => makeCharacter(
  17327. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17328. {
  17329. front: {
  17330. height: math.unit(1.82, "meters"),
  17331. weight: math.unit(140, "lb"),
  17332. name: "Front",
  17333. image: {
  17334. source: "./media/characters/nita/front.svg",
  17335. extra: 2473 / 2363,
  17336. bottom: 0.01
  17337. }
  17338. },
  17339. },
  17340. [
  17341. {
  17342. name: "Normal",
  17343. height: math.unit(1.82, "m")
  17344. },
  17345. {
  17346. name: "Macro",
  17347. height: math.unit(300, "m")
  17348. },
  17349. {
  17350. name: "Mistake Canon",
  17351. height: math.unit(0.5, "miles"),
  17352. default: true
  17353. },
  17354. {
  17355. name: "Big Mistake",
  17356. height: math.unit(13, "miles")
  17357. },
  17358. {
  17359. name: "Playing God",
  17360. height: math.unit(2450, "miles")
  17361. },
  17362. ]
  17363. ))
  17364. characterMakers.push(() => makeCharacter(
  17365. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17366. {
  17367. front: {
  17368. height: math.unit(4, "feet"),
  17369. weight: math.unit(120, "lb"),
  17370. name: "Front",
  17371. image: {
  17372. source: "./media/characters/shiriko/front.svg",
  17373. extra: 970/934,
  17374. bottom: 5/975
  17375. }
  17376. },
  17377. },
  17378. [
  17379. {
  17380. name: "Normal",
  17381. height: math.unit(4, "feet"),
  17382. default: true
  17383. },
  17384. ]
  17385. ))
  17386. characterMakers.push(() => makeCharacter(
  17387. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17388. {
  17389. front: {
  17390. height: math.unit(6, "feet"),
  17391. name: "front",
  17392. image: {
  17393. source: "./media/characters/deja/front.svg",
  17394. extra: 926 / 840,
  17395. bottom: 0.07
  17396. }
  17397. },
  17398. },
  17399. [
  17400. {
  17401. name: "Planck Length",
  17402. height: math.unit(1.6e-35, "meters")
  17403. },
  17404. {
  17405. name: "Normal",
  17406. height: math.unit(30.48, "meters"),
  17407. default: true
  17408. },
  17409. {
  17410. name: "Universal",
  17411. height: math.unit(8.8e26, "meters")
  17412. },
  17413. ]
  17414. ))
  17415. characterMakers.push(() => makeCharacter(
  17416. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17417. {
  17418. side: {
  17419. height: math.unit(8, "feet"),
  17420. weight: math.unit(6300, "lb"),
  17421. name: "Side",
  17422. image: {
  17423. source: "./media/characters/anima/side.svg",
  17424. bottom: 0.035
  17425. }
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Normal",
  17431. height: math.unit(8, "feet"),
  17432. default: true
  17433. },
  17434. ]
  17435. ))
  17436. characterMakers.push(() => makeCharacter(
  17437. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17438. {
  17439. front: {
  17440. height: math.unit(8, "feet"),
  17441. weight: math.unit(350, "lb"),
  17442. name: "Front",
  17443. image: {
  17444. source: "./media/characters/bianca/front.svg",
  17445. extra: 234 / 225,
  17446. bottom: 0.03
  17447. }
  17448. },
  17449. },
  17450. [
  17451. {
  17452. name: "Normal",
  17453. height: math.unit(8, "feet"),
  17454. default: true
  17455. },
  17456. ]
  17457. ))
  17458. characterMakers.push(() => makeCharacter(
  17459. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17460. {
  17461. front: {
  17462. height: math.unit(6, "feet"),
  17463. weight: math.unit(150, "lb"),
  17464. name: "Front",
  17465. image: {
  17466. source: "./media/characters/adinia/front.svg",
  17467. extra: 1845 / 1672,
  17468. bottom: 0.02
  17469. }
  17470. },
  17471. back: {
  17472. height: math.unit(6, "feet"),
  17473. weight: math.unit(150, "lb"),
  17474. name: "Back",
  17475. image: {
  17476. source: "./media/characters/adinia/back.svg",
  17477. extra: 1845 / 1672,
  17478. bottom: 0.002
  17479. }
  17480. },
  17481. },
  17482. [
  17483. {
  17484. name: "Normal",
  17485. height: math.unit(11 + 5 / 12, "feet"),
  17486. default: true
  17487. },
  17488. ]
  17489. ))
  17490. characterMakers.push(() => makeCharacter(
  17491. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17492. {
  17493. front: {
  17494. height: math.unit(3, "meters"),
  17495. weight: math.unit(200, "kg"),
  17496. name: "Front",
  17497. image: {
  17498. source: "./media/characters/lykasa/front.svg",
  17499. extra: 1076 / 976,
  17500. bottom: 0.06
  17501. }
  17502. },
  17503. },
  17504. [
  17505. {
  17506. name: "Normal",
  17507. height: math.unit(3, "meters")
  17508. },
  17509. {
  17510. name: "Kaiju",
  17511. height: math.unit(120, "meters"),
  17512. default: true
  17513. },
  17514. {
  17515. name: "Mega Kaiju",
  17516. height: math.unit(240, "km")
  17517. },
  17518. {
  17519. name: "Giga Kaiju",
  17520. height: math.unit(400, "megameters")
  17521. },
  17522. {
  17523. name: "Tera Kaiju",
  17524. height: math.unit(800, "gigameters")
  17525. },
  17526. {
  17527. name: "Kaiju Dragon Goddess",
  17528. height: math.unit(26, "zettaparsecs")
  17529. },
  17530. ]
  17531. ))
  17532. characterMakers.push(() => makeCharacter(
  17533. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17534. {
  17535. side: {
  17536. height: math.unit(283 / 124 * 6, "feet"),
  17537. weight: math.unit(35000, "lb"),
  17538. name: "Side",
  17539. image: {
  17540. source: "./media/characters/malfaren/side.svg",
  17541. extra: 2500 / 1010,
  17542. bottom: 0.01
  17543. }
  17544. },
  17545. front: {
  17546. height: math.unit(22.36, "feet"),
  17547. weight: math.unit(35000, "lb"),
  17548. name: "Front",
  17549. image: {
  17550. source: "./media/characters/malfaren/front.svg",
  17551. extra: 1631 / 1476,
  17552. bottom: 0.01
  17553. }
  17554. },
  17555. maw: {
  17556. height: math.unit(6.9, "feet"),
  17557. name: "Maw",
  17558. image: {
  17559. source: "./media/characters/malfaren/maw.svg"
  17560. }
  17561. },
  17562. },
  17563. [
  17564. {
  17565. name: "Big",
  17566. height: math.unit(283 / 162 * 6, "feet"),
  17567. },
  17568. {
  17569. name: "Bigger",
  17570. height: math.unit(283 / 124 * 6, "feet")
  17571. },
  17572. {
  17573. name: "Massive",
  17574. height: math.unit(283 / 92 * 6, "feet"),
  17575. default: true
  17576. },
  17577. {
  17578. name: "👀💦",
  17579. height: math.unit(283 / 73 * 6, "feet"),
  17580. },
  17581. ]
  17582. ))
  17583. characterMakers.push(() => makeCharacter(
  17584. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17585. {
  17586. front: {
  17587. height: math.unit(1.7, "m"),
  17588. weight: math.unit(70, "kg"),
  17589. name: "Front",
  17590. image: {
  17591. source: "./media/characters/kernel/front.svg",
  17592. extra: 222 / 210,
  17593. bottom: 0.007
  17594. }
  17595. },
  17596. },
  17597. [
  17598. {
  17599. name: "Nano",
  17600. height: math.unit(17, "micrometers")
  17601. },
  17602. {
  17603. name: "Micro",
  17604. height: math.unit(1.7, "mm")
  17605. },
  17606. {
  17607. name: "Small",
  17608. height: math.unit(1.7, "cm")
  17609. },
  17610. {
  17611. name: "Normal",
  17612. height: math.unit(1.7, "m"),
  17613. default: true
  17614. },
  17615. ]
  17616. ))
  17617. characterMakers.push(() => makeCharacter(
  17618. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17619. {
  17620. front: {
  17621. height: math.unit(1.75, "meters"),
  17622. weight: math.unit(65, "kg"),
  17623. name: "Front",
  17624. image: {
  17625. source: "./media/characters/jayne-folest/front.svg",
  17626. extra: 2115 / 2007,
  17627. bottom: 0.02
  17628. }
  17629. },
  17630. back: {
  17631. height: math.unit(1.75, "meters"),
  17632. weight: math.unit(65, "kg"),
  17633. name: "Back",
  17634. image: {
  17635. source: "./media/characters/jayne-folest/back.svg",
  17636. extra: 2115 / 2007,
  17637. bottom: 0.005
  17638. }
  17639. },
  17640. frontClothed: {
  17641. height: math.unit(1.75, "meters"),
  17642. weight: math.unit(65, "kg"),
  17643. name: "Front (Clothed)",
  17644. image: {
  17645. source: "./media/characters/jayne-folest/front-clothed.svg",
  17646. extra: 2115 / 2007,
  17647. bottom: 0.035
  17648. }
  17649. },
  17650. hand: {
  17651. height: math.unit(1 / 1.260, "feet"),
  17652. name: "Hand",
  17653. image: {
  17654. source: "./media/characters/jayne-folest/hand.svg"
  17655. }
  17656. },
  17657. foot: {
  17658. height: math.unit(1 / 0.918, "feet"),
  17659. name: "Foot",
  17660. image: {
  17661. source: "./media/characters/jayne-folest/foot.svg"
  17662. }
  17663. },
  17664. },
  17665. [
  17666. {
  17667. name: "Micro",
  17668. height: math.unit(4, "cm")
  17669. },
  17670. {
  17671. name: "Normal",
  17672. height: math.unit(1.75, "meters")
  17673. },
  17674. {
  17675. name: "Macro",
  17676. height: math.unit(47.5, "meters"),
  17677. default: true
  17678. },
  17679. ]
  17680. ))
  17681. characterMakers.push(() => makeCharacter(
  17682. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17683. {
  17684. front: {
  17685. height: math.unit(180, "cm"),
  17686. weight: math.unit(70, "kg"),
  17687. name: "Front",
  17688. image: {
  17689. source: "./media/characters/algier/front.svg",
  17690. extra: 596 / 572,
  17691. bottom: 0.04
  17692. }
  17693. },
  17694. back: {
  17695. height: math.unit(180, "cm"),
  17696. weight: math.unit(70, "kg"),
  17697. name: "Back",
  17698. image: {
  17699. source: "./media/characters/algier/back.svg",
  17700. extra: 596 / 572,
  17701. bottom: 0.025
  17702. }
  17703. },
  17704. frontdressed: {
  17705. height: math.unit(180, "cm"),
  17706. weight: math.unit(150, "kg"),
  17707. name: "Front-dressed",
  17708. image: {
  17709. source: "./media/characters/algier/front-dressed.svg",
  17710. extra: 596 / 572,
  17711. bottom: 0.038
  17712. }
  17713. },
  17714. },
  17715. [
  17716. {
  17717. name: "Micro",
  17718. height: math.unit(5, "cm")
  17719. },
  17720. {
  17721. name: "Normal",
  17722. height: math.unit(180, "cm"),
  17723. default: true
  17724. },
  17725. {
  17726. name: "Macro",
  17727. height: math.unit(64, "m")
  17728. },
  17729. ]
  17730. ))
  17731. characterMakers.push(() => makeCharacter(
  17732. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17733. {
  17734. upright: {
  17735. height: math.unit(7, "feet"),
  17736. weight: math.unit(300, "lb"),
  17737. name: "Upright",
  17738. image: {
  17739. source: "./media/characters/pretzel/upright.svg",
  17740. extra: 534 / 522,
  17741. bottom: 0.065
  17742. }
  17743. },
  17744. sprawling: {
  17745. height: math.unit(3.75, "feet"),
  17746. weight: math.unit(300, "lb"),
  17747. name: "Sprawling",
  17748. image: {
  17749. source: "./media/characters/pretzel/sprawling.svg",
  17750. extra: 314 / 281,
  17751. bottom: 0.1
  17752. }
  17753. },
  17754. tongue: {
  17755. height: math.unit(2, "feet"),
  17756. name: "Tongue",
  17757. image: {
  17758. source: "./media/characters/pretzel/tongue.svg"
  17759. }
  17760. },
  17761. },
  17762. [
  17763. {
  17764. name: "Normal",
  17765. height: math.unit(7, "feet"),
  17766. default: true
  17767. },
  17768. {
  17769. name: "Oversized",
  17770. height: math.unit(15, "feet")
  17771. },
  17772. {
  17773. name: "Huge",
  17774. height: math.unit(30, "feet")
  17775. },
  17776. {
  17777. name: "Macro",
  17778. height: math.unit(250, "feet")
  17779. },
  17780. ]
  17781. ))
  17782. characterMakers.push(() => makeCharacter(
  17783. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17784. {
  17785. sideFront: {
  17786. height: math.unit(5 + 2 / 12, "feet"),
  17787. weight: math.unit(120, "lb"),
  17788. name: "Front Side",
  17789. image: {
  17790. source: "./media/characters/roxi/side-front.svg",
  17791. extra: 2924 / 2717,
  17792. bottom: 0.08
  17793. }
  17794. },
  17795. sideBack: {
  17796. height: math.unit(5 + 2 / 12, "feet"),
  17797. weight: math.unit(120, "lb"),
  17798. name: "Back Side",
  17799. image: {
  17800. source: "./media/characters/roxi/side-back.svg",
  17801. extra: 2904 / 2693,
  17802. bottom: 0.06
  17803. }
  17804. },
  17805. front: {
  17806. height: math.unit(5 + 2 / 12, "feet"),
  17807. weight: math.unit(120, "lb"),
  17808. name: "Front",
  17809. image: {
  17810. source: "./media/characters/roxi/front.svg",
  17811. extra: 2028 / 1907,
  17812. bottom: 0.01
  17813. }
  17814. },
  17815. frontAlt: {
  17816. height: math.unit(5 + 2 / 12, "feet"),
  17817. weight: math.unit(120, "lb"),
  17818. name: "Front (Alt)",
  17819. image: {
  17820. source: "./media/characters/roxi/front-alt.svg",
  17821. extra: 1828 / 1798,
  17822. bottom: 0.01
  17823. }
  17824. },
  17825. sitting: {
  17826. height: math.unit(2.8, "feet"),
  17827. weight: math.unit(120, "lb"),
  17828. name: "Sitting",
  17829. image: {
  17830. source: "./media/characters/roxi/sitting.svg",
  17831. extra: 2660 / 2462,
  17832. bottom: 0.1
  17833. }
  17834. },
  17835. },
  17836. [
  17837. {
  17838. name: "Normal",
  17839. height: math.unit(5 + 2 / 12, "feet"),
  17840. default: true
  17841. },
  17842. ]
  17843. ))
  17844. characterMakers.push(() => makeCharacter(
  17845. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17846. {
  17847. side: {
  17848. height: math.unit(55, "feet"),
  17849. weight: math.unit(153, "tons"),
  17850. name: "Side",
  17851. image: {
  17852. source: "./media/characters/shadow/side.svg",
  17853. extra: 701 / 628,
  17854. bottom: 0.02
  17855. }
  17856. },
  17857. flying: {
  17858. height: math.unit(145, "feet"),
  17859. weight: math.unit(153, "tons"),
  17860. name: "Flying",
  17861. image: {
  17862. source: "./media/characters/shadow/flying.svg"
  17863. }
  17864. },
  17865. },
  17866. [
  17867. {
  17868. name: "Normal",
  17869. height: math.unit(55, "feet"),
  17870. default: true
  17871. },
  17872. ]
  17873. ))
  17874. characterMakers.push(() => makeCharacter(
  17875. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17876. {
  17877. front: {
  17878. height: math.unit(6, "feet"),
  17879. weight: math.unit(200, "lb"),
  17880. name: "Front",
  17881. image: {
  17882. source: "./media/characters/marcie/front.svg",
  17883. extra: 960 / 876,
  17884. bottom: 58 / 1017.87
  17885. }
  17886. },
  17887. },
  17888. [
  17889. {
  17890. name: "Macro",
  17891. height: math.unit(1, "mile"),
  17892. default: true
  17893. },
  17894. ]
  17895. ))
  17896. characterMakers.push(() => makeCharacter(
  17897. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17898. {
  17899. front: {
  17900. height: math.unit(7, "feet"),
  17901. weight: math.unit(200, "lb"),
  17902. name: "Front",
  17903. image: {
  17904. source: "./media/characters/kachina/front.svg",
  17905. extra: 1290.68 / 1119,
  17906. bottom: 36.5 / 1327.18
  17907. }
  17908. },
  17909. },
  17910. [
  17911. {
  17912. name: "Normal",
  17913. height: math.unit(7, "feet"),
  17914. default: true
  17915. },
  17916. ]
  17917. ))
  17918. characterMakers.push(() => makeCharacter(
  17919. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17920. {
  17921. looking: {
  17922. height: math.unit(2, "meters"),
  17923. weight: math.unit(300, "kg"),
  17924. name: "Looking",
  17925. image: {
  17926. source: "./media/characters/kash/looking.svg",
  17927. extra: 474 / 344,
  17928. bottom: 0.03
  17929. }
  17930. },
  17931. side: {
  17932. height: math.unit(2, "meters"),
  17933. weight: math.unit(300, "kg"),
  17934. name: "Side",
  17935. image: {
  17936. source: "./media/characters/kash/side.svg",
  17937. extra: 302 / 251,
  17938. bottom: 0.03
  17939. }
  17940. },
  17941. front: {
  17942. height: math.unit(2, "meters"),
  17943. weight: math.unit(300, "kg"),
  17944. name: "Front",
  17945. image: {
  17946. source: "./media/characters/kash/front.svg",
  17947. extra: 495 / 360,
  17948. bottom: 0.015
  17949. }
  17950. },
  17951. },
  17952. [
  17953. {
  17954. name: "Normal",
  17955. height: math.unit(2, "meters"),
  17956. default: true
  17957. },
  17958. {
  17959. name: "Big",
  17960. height: math.unit(3, "meters")
  17961. },
  17962. {
  17963. name: "Large",
  17964. height: math.unit(5, "meters")
  17965. },
  17966. ]
  17967. ))
  17968. characterMakers.push(() => makeCharacter(
  17969. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17970. {
  17971. feeding: {
  17972. height: math.unit(6.7, "feet"),
  17973. weight: math.unit(350, "lb"),
  17974. name: "Feeding",
  17975. image: {
  17976. source: "./media/characters/lalim/feeding.svg",
  17977. }
  17978. },
  17979. },
  17980. [
  17981. {
  17982. name: "Normal",
  17983. height: math.unit(6.7, "feet"),
  17984. default: true
  17985. },
  17986. ]
  17987. ))
  17988. characterMakers.push(() => makeCharacter(
  17989. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17990. {
  17991. front: {
  17992. height: math.unit(9.5, "feet"),
  17993. weight: math.unit(600, "lb"),
  17994. name: "Front",
  17995. image: {
  17996. source: "./media/characters/de'vout/front.svg",
  17997. extra: 1443 / 1328,
  17998. bottom: 0.025
  17999. }
  18000. },
  18001. back: {
  18002. height: math.unit(9.5, "feet"),
  18003. weight: math.unit(600, "lb"),
  18004. name: "Back",
  18005. image: {
  18006. source: "./media/characters/de'vout/back.svg",
  18007. extra: 1443 / 1328
  18008. }
  18009. },
  18010. frontDressed: {
  18011. height: math.unit(9.5, "feet"),
  18012. weight: math.unit(600, "lb"),
  18013. name: "Front (Dressed",
  18014. image: {
  18015. source: "./media/characters/de'vout/front-dressed.svg",
  18016. extra: 1443 / 1328,
  18017. bottom: 0.025
  18018. }
  18019. },
  18020. backDressed: {
  18021. height: math.unit(9.5, "feet"),
  18022. weight: math.unit(600, "lb"),
  18023. name: "Back (Dressed",
  18024. image: {
  18025. source: "./media/characters/de'vout/back-dressed.svg",
  18026. extra: 1443 / 1328
  18027. }
  18028. },
  18029. },
  18030. [
  18031. {
  18032. name: "Normal",
  18033. height: math.unit(9.5, "feet"),
  18034. default: true
  18035. },
  18036. ]
  18037. ))
  18038. characterMakers.push(() => makeCharacter(
  18039. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18040. {
  18041. front: {
  18042. height: math.unit(8, "feet"),
  18043. weight: math.unit(225, "lb"),
  18044. name: "Front",
  18045. image: {
  18046. source: "./media/characters/talana/front.svg",
  18047. extra: 1410 / 1300,
  18048. bottom: 0.015
  18049. }
  18050. },
  18051. frontDressed: {
  18052. height: math.unit(8, "feet"),
  18053. weight: math.unit(225, "lb"),
  18054. name: "Front (Dressed",
  18055. image: {
  18056. source: "./media/characters/talana/front-dressed.svg",
  18057. extra: 1410 / 1300,
  18058. bottom: 0.015
  18059. }
  18060. },
  18061. },
  18062. [
  18063. {
  18064. name: "Normal",
  18065. height: math.unit(8, "feet"),
  18066. default: true
  18067. },
  18068. ]
  18069. ))
  18070. characterMakers.push(() => makeCharacter(
  18071. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18072. {
  18073. side: {
  18074. height: math.unit(7.2, "feet"),
  18075. weight: math.unit(150, "lb"),
  18076. name: "Side",
  18077. image: {
  18078. source: "./media/characters/xeauvok/side.svg",
  18079. extra: 1975 / 1523,
  18080. bottom: 0.07
  18081. }
  18082. },
  18083. },
  18084. [
  18085. {
  18086. name: "Normal",
  18087. height: math.unit(7.2, "feet"),
  18088. default: true
  18089. },
  18090. ]
  18091. ))
  18092. characterMakers.push(() => makeCharacter(
  18093. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18094. {
  18095. side: {
  18096. height: math.unit(10, "feet"),
  18097. weight: math.unit(900, "kg"),
  18098. name: "Side",
  18099. image: {
  18100. source: "./media/characters/zara/side.svg",
  18101. extra: 504 / 498
  18102. }
  18103. },
  18104. },
  18105. [
  18106. {
  18107. name: "Normal",
  18108. height: math.unit(10, "feet"),
  18109. default: true
  18110. },
  18111. ]
  18112. ))
  18113. characterMakers.push(() => makeCharacter(
  18114. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18115. {
  18116. side: {
  18117. height: math.unit(6, "feet"),
  18118. weight: math.unit(150, "lb"),
  18119. name: "Side",
  18120. image: {
  18121. source: "./media/characters/richard-dragon/side.svg",
  18122. extra: 845 / 340,
  18123. bottom: 0.017
  18124. }
  18125. },
  18126. maw: {
  18127. height: math.unit(2.97, "feet"),
  18128. name: "Maw",
  18129. image: {
  18130. source: "./media/characters/richard-dragon/maw.svg"
  18131. }
  18132. },
  18133. },
  18134. [
  18135. ]
  18136. ))
  18137. characterMakers.push(() => makeCharacter(
  18138. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18139. {
  18140. front: {
  18141. height: math.unit(4, "feet"),
  18142. weight: math.unit(100, "lb"),
  18143. name: "Front",
  18144. image: {
  18145. source: "./media/characters/richard-smeargle/front.svg",
  18146. extra: 2952 / 2820,
  18147. bottom: 0.028
  18148. }
  18149. },
  18150. },
  18151. [
  18152. {
  18153. name: "Normal",
  18154. height: math.unit(4, "feet"),
  18155. default: true
  18156. },
  18157. {
  18158. name: "Dynamax",
  18159. height: math.unit(20, "meters")
  18160. },
  18161. ]
  18162. ))
  18163. characterMakers.push(() => makeCharacter(
  18164. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18165. {
  18166. front: {
  18167. height: math.unit(6, "feet"),
  18168. weight: math.unit(110, "lb"),
  18169. name: "Front",
  18170. image: {
  18171. source: "./media/characters/klay/front.svg",
  18172. extra: 962 / 883,
  18173. bottom: 0.04
  18174. }
  18175. },
  18176. back: {
  18177. height: math.unit(6, "feet"),
  18178. weight: math.unit(110, "lb"),
  18179. name: "Back",
  18180. image: {
  18181. source: "./media/characters/klay/back.svg",
  18182. extra: 962 / 883
  18183. }
  18184. },
  18185. beans: {
  18186. height: math.unit(1.15, "feet"),
  18187. name: "Beans",
  18188. image: {
  18189. source: "./media/characters/klay/beans.svg"
  18190. }
  18191. },
  18192. },
  18193. [
  18194. {
  18195. name: "Micro",
  18196. height: math.unit(6, "inches")
  18197. },
  18198. {
  18199. name: "Mini",
  18200. height: math.unit(3, "feet")
  18201. },
  18202. {
  18203. name: "Normal",
  18204. height: math.unit(6, "feet"),
  18205. default: true
  18206. },
  18207. {
  18208. name: "Big",
  18209. height: math.unit(25, "feet")
  18210. },
  18211. {
  18212. name: "Macro",
  18213. height: math.unit(100, "feet")
  18214. },
  18215. {
  18216. name: "Megamacro",
  18217. height: math.unit(400, "feet")
  18218. },
  18219. ]
  18220. ))
  18221. characterMakers.push(() => makeCharacter(
  18222. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18223. {
  18224. front: {
  18225. height: math.unit(6, "feet"),
  18226. weight: math.unit(160, "lb"),
  18227. name: "Front",
  18228. image: {
  18229. source: "./media/characters/marcus/front.svg",
  18230. extra: 734 / 676,
  18231. bottom: 0.03
  18232. }
  18233. },
  18234. },
  18235. [
  18236. {
  18237. name: "Little",
  18238. height: math.unit(6, "feet")
  18239. },
  18240. {
  18241. name: "Normal",
  18242. height: math.unit(110, "feet"),
  18243. default: true
  18244. },
  18245. {
  18246. name: "Macro",
  18247. height: math.unit(250, "feet")
  18248. },
  18249. {
  18250. name: "Megamacro",
  18251. height: math.unit(1000, "feet")
  18252. },
  18253. ]
  18254. ))
  18255. characterMakers.push(() => makeCharacter(
  18256. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18257. {
  18258. front: {
  18259. height: math.unit(7, "feet"),
  18260. weight: math.unit(275, "lb"),
  18261. name: "Front",
  18262. image: {
  18263. source: "./media/characters/claude-delroute/front.svg",
  18264. extra: 230 / 214,
  18265. bottom: 0.007
  18266. }
  18267. },
  18268. side: {
  18269. height: math.unit(7, "feet"),
  18270. weight: math.unit(275, "lb"),
  18271. name: "Side",
  18272. image: {
  18273. source: "./media/characters/claude-delroute/side.svg",
  18274. extra: 222 / 214,
  18275. bottom: 0.01
  18276. }
  18277. },
  18278. back: {
  18279. height: math.unit(7, "feet"),
  18280. weight: math.unit(275, "lb"),
  18281. name: "Back",
  18282. image: {
  18283. source: "./media/characters/claude-delroute/back.svg",
  18284. extra: 230 / 214,
  18285. bottom: 0.015
  18286. }
  18287. },
  18288. maw: {
  18289. height: math.unit(0.6407, "meters"),
  18290. name: "Maw",
  18291. image: {
  18292. source: "./media/characters/claude-delroute/maw.svg"
  18293. }
  18294. },
  18295. },
  18296. [
  18297. {
  18298. name: "Normal",
  18299. height: math.unit(7, "feet"),
  18300. default: true
  18301. },
  18302. {
  18303. name: "Lorge",
  18304. height: math.unit(20, "feet")
  18305. },
  18306. ]
  18307. ))
  18308. characterMakers.push(() => makeCharacter(
  18309. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18310. {
  18311. front: {
  18312. height: math.unit(8 + 4 / 12, "feet"),
  18313. weight: math.unit(600, "lb"),
  18314. name: "Front",
  18315. image: {
  18316. source: "./media/characters/dragonien/front.svg",
  18317. extra: 100 / 94,
  18318. bottom: 3.3 / 103.3445
  18319. }
  18320. },
  18321. back: {
  18322. height: math.unit(8 + 4 / 12, "feet"),
  18323. weight: math.unit(600, "lb"),
  18324. name: "Back",
  18325. image: {
  18326. source: "./media/characters/dragonien/back.svg",
  18327. extra: 776 / 746,
  18328. bottom: 6.4 / 782.0616
  18329. }
  18330. },
  18331. foot: {
  18332. height: math.unit(1.54, "feet"),
  18333. name: "Foot",
  18334. image: {
  18335. source: "./media/characters/dragonien/foot.svg",
  18336. }
  18337. },
  18338. },
  18339. [
  18340. {
  18341. name: "Normal",
  18342. height: math.unit(8 + 4 / 12, "feet"),
  18343. default: true
  18344. },
  18345. {
  18346. name: "Macro",
  18347. height: math.unit(200, "feet")
  18348. },
  18349. {
  18350. name: "Megamacro",
  18351. height: math.unit(1, "mile")
  18352. },
  18353. {
  18354. name: "Gigamacro",
  18355. height: math.unit(1000, "miles")
  18356. },
  18357. ]
  18358. ))
  18359. characterMakers.push(() => makeCharacter(
  18360. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18361. {
  18362. front: {
  18363. height: math.unit(5 + 2 / 12, "feet"),
  18364. weight: math.unit(110, "lb"),
  18365. name: "Front",
  18366. image: {
  18367. source: "./media/characters/desta/front.svg",
  18368. extra: 767 / 726,
  18369. bottom: 11.7 / 779
  18370. }
  18371. },
  18372. back: {
  18373. height: math.unit(5 + 2 / 12, "feet"),
  18374. weight: math.unit(110, "lb"),
  18375. name: "Back",
  18376. image: {
  18377. source: "./media/characters/desta/back.svg",
  18378. extra: 777 / 728,
  18379. bottom: 6 / 784
  18380. }
  18381. },
  18382. frontAlt: {
  18383. height: math.unit(5 + 2 / 12, "feet"),
  18384. weight: math.unit(110, "lb"),
  18385. name: "Front",
  18386. image: {
  18387. source: "./media/characters/desta/front-alt.svg",
  18388. extra: 1482 / 1417
  18389. }
  18390. },
  18391. side: {
  18392. height: math.unit(5 + 2 / 12, "feet"),
  18393. weight: math.unit(110, "lb"),
  18394. name: "Side",
  18395. image: {
  18396. source: "./media/characters/desta/side.svg",
  18397. extra: 2579 / 2491,
  18398. bottom: 0.053
  18399. }
  18400. },
  18401. },
  18402. [
  18403. {
  18404. name: "Micro",
  18405. height: math.unit(6, "inches")
  18406. },
  18407. {
  18408. name: "Normal",
  18409. height: math.unit(5 + 2 / 12, "feet"),
  18410. default: true
  18411. },
  18412. {
  18413. name: "Macro",
  18414. height: math.unit(62, "feet")
  18415. },
  18416. {
  18417. name: "Megamacro",
  18418. height: math.unit(1800, "feet")
  18419. },
  18420. ]
  18421. ))
  18422. characterMakers.push(() => makeCharacter(
  18423. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18424. {
  18425. front: {
  18426. height: math.unit(10, "feet"),
  18427. weight: math.unit(700, "lb"),
  18428. name: "Front",
  18429. image: {
  18430. source: "./media/characters/storm-alystar/front.svg",
  18431. extra: 2112 / 1898,
  18432. bottom: 0.034
  18433. }
  18434. },
  18435. },
  18436. [
  18437. {
  18438. name: "Micro",
  18439. height: math.unit(3.5, "inches")
  18440. },
  18441. {
  18442. name: "Normal",
  18443. height: math.unit(10, "feet"),
  18444. default: true
  18445. },
  18446. {
  18447. name: "Macro",
  18448. height: math.unit(400, "feet")
  18449. },
  18450. {
  18451. name: "Deific",
  18452. height: math.unit(60, "miles")
  18453. },
  18454. ]
  18455. ))
  18456. characterMakers.push(() => makeCharacter(
  18457. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18458. {
  18459. front: {
  18460. height: math.unit(2.35, "meters"),
  18461. weight: math.unit(119, "kg"),
  18462. name: "Front",
  18463. image: {
  18464. source: "./media/characters/ilia/front.svg",
  18465. extra: 1285 / 1255,
  18466. bottom: 0.06
  18467. }
  18468. },
  18469. },
  18470. [
  18471. {
  18472. name: "Normal",
  18473. height: math.unit(2.35, "meters")
  18474. },
  18475. {
  18476. name: "Macro",
  18477. height: math.unit(140, "meters"),
  18478. default: true
  18479. },
  18480. {
  18481. name: "Megamacro",
  18482. height: math.unit(100, "miles")
  18483. },
  18484. ]
  18485. ))
  18486. characterMakers.push(() => makeCharacter(
  18487. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18488. {
  18489. front: {
  18490. height: math.unit(6 + 5 / 12, "feet"),
  18491. weight: math.unit(190, "lb"),
  18492. name: "Front",
  18493. image: {
  18494. source: "./media/characters/kingdead/front.svg",
  18495. extra: 1228 / 1177
  18496. }
  18497. },
  18498. },
  18499. [
  18500. {
  18501. name: "Micro",
  18502. height: math.unit(7, "inches")
  18503. },
  18504. {
  18505. name: "Normal",
  18506. height: math.unit(6 + 5 / 12, "feet")
  18507. },
  18508. {
  18509. name: "Macro",
  18510. height: math.unit(150, "feet"),
  18511. default: true
  18512. },
  18513. {
  18514. name: "Megamacro",
  18515. height: math.unit(200, "miles")
  18516. },
  18517. ]
  18518. ))
  18519. characterMakers.push(() => makeCharacter(
  18520. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18521. {
  18522. front: {
  18523. height: math.unit(8, "feet"),
  18524. weight: math.unit(600, "lb"),
  18525. name: "Front",
  18526. image: {
  18527. source: "./media/characters/kyrehx/front.svg",
  18528. extra: 1195 / 1095,
  18529. bottom: 0.034
  18530. }
  18531. },
  18532. },
  18533. [
  18534. {
  18535. name: "Micro",
  18536. height: math.unit(2, "inches")
  18537. },
  18538. {
  18539. name: "Normal",
  18540. height: math.unit(8, "feet"),
  18541. default: true
  18542. },
  18543. {
  18544. name: "Macro",
  18545. height: math.unit(255, "feet")
  18546. },
  18547. ]
  18548. ))
  18549. characterMakers.push(() => makeCharacter(
  18550. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18551. {
  18552. front: {
  18553. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18554. weight: math.unit(184, "lb"),
  18555. name: "Front",
  18556. image: {
  18557. source: "./media/characters/xang/front.svg",
  18558. extra: 845 / 755
  18559. }
  18560. },
  18561. },
  18562. [
  18563. {
  18564. name: "Normal",
  18565. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18566. default: true
  18567. },
  18568. {
  18569. name: "Macro",
  18570. height: math.unit(0.935 * 146, "feet")
  18571. },
  18572. {
  18573. name: "Megamacro",
  18574. height: math.unit(0.935 * 3, "miles")
  18575. },
  18576. ]
  18577. ))
  18578. characterMakers.push(() => makeCharacter(
  18579. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18580. {
  18581. frontDressed: {
  18582. height: math.unit(5 + 7 / 12, "feet"),
  18583. weight: math.unit(140, "lb"),
  18584. name: "Front (Dressed)",
  18585. image: {
  18586. source: "./media/characters/doc-weardno/front-dressed.svg",
  18587. extra: 263 / 234
  18588. }
  18589. },
  18590. backDressed: {
  18591. height: math.unit(5 + 7 / 12, "feet"),
  18592. weight: math.unit(140, "lb"),
  18593. name: "Back (Dressed)",
  18594. image: {
  18595. source: "./media/characters/doc-weardno/back-dressed.svg",
  18596. extra: 266 / 238
  18597. }
  18598. },
  18599. front: {
  18600. height: math.unit(5 + 7 / 12, "feet"),
  18601. weight: math.unit(140, "lb"),
  18602. name: "Front",
  18603. image: {
  18604. source: "./media/characters/doc-weardno/front.svg",
  18605. extra: 254 / 233
  18606. }
  18607. },
  18608. },
  18609. [
  18610. {
  18611. name: "Micro",
  18612. height: math.unit(3, "inches")
  18613. },
  18614. {
  18615. name: "Normal",
  18616. height: math.unit(5 + 7 / 12, "feet"),
  18617. default: true
  18618. },
  18619. {
  18620. name: "Macro",
  18621. height: math.unit(25, "feet")
  18622. },
  18623. {
  18624. name: "Megamacro",
  18625. height: math.unit(2, "miles")
  18626. },
  18627. ]
  18628. ))
  18629. characterMakers.push(() => makeCharacter(
  18630. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18631. {
  18632. front: {
  18633. height: math.unit(6 + 2 / 12, "feet"),
  18634. weight: math.unit(153, "lb"),
  18635. name: "Front",
  18636. image: {
  18637. source: "./media/characters/seth-whilst/front.svg",
  18638. bottom: 0.07
  18639. }
  18640. },
  18641. },
  18642. [
  18643. {
  18644. name: "Micro",
  18645. height: math.unit(5, "inches")
  18646. },
  18647. {
  18648. name: "Normal",
  18649. height: math.unit(6 + 2 / 12, "feet"),
  18650. default: true
  18651. },
  18652. ]
  18653. ))
  18654. characterMakers.push(() => makeCharacter(
  18655. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18656. {
  18657. front: {
  18658. height: math.unit(3, "inches"),
  18659. weight: math.unit(8, "grams"),
  18660. name: "Front",
  18661. image: {
  18662. source: "./media/characters/pocket-jabari/front.svg",
  18663. extra: 1024 / 974,
  18664. bottom: 0.039
  18665. }
  18666. },
  18667. },
  18668. [
  18669. {
  18670. name: "Minimicro",
  18671. height: math.unit(8, "mm")
  18672. },
  18673. {
  18674. name: "Micro",
  18675. height: math.unit(3, "inches"),
  18676. default: true
  18677. },
  18678. {
  18679. name: "Normal",
  18680. height: math.unit(3, "feet")
  18681. },
  18682. ]
  18683. ))
  18684. characterMakers.push(() => makeCharacter(
  18685. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18686. {
  18687. front: {
  18688. height: math.unit(15, "feet"),
  18689. weight: math.unit(3280, "lb"),
  18690. name: "Front",
  18691. image: {
  18692. source: "./media/characters/sapphy/front.svg",
  18693. extra: 671 / 577,
  18694. bottom: 0.085
  18695. }
  18696. },
  18697. back: {
  18698. height: math.unit(15, "feet"),
  18699. weight: math.unit(3280, "lb"),
  18700. name: "Back",
  18701. image: {
  18702. source: "./media/characters/sapphy/back.svg",
  18703. extra: 631 / 607,
  18704. bottom: 0.045
  18705. }
  18706. },
  18707. },
  18708. [
  18709. {
  18710. name: "Normal",
  18711. height: math.unit(15, "feet")
  18712. },
  18713. {
  18714. name: "Casual Macro",
  18715. height: math.unit(120, "feet")
  18716. },
  18717. {
  18718. name: "Macro",
  18719. height: math.unit(2150, "feet"),
  18720. default: true
  18721. },
  18722. {
  18723. name: "Megamacro",
  18724. height: math.unit(8, "miles")
  18725. },
  18726. {
  18727. name: "Galaxy Mom",
  18728. height: math.unit(6, "megalightyears")
  18729. },
  18730. ]
  18731. ))
  18732. characterMakers.push(() => makeCharacter(
  18733. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18734. {
  18735. front: {
  18736. height: math.unit(6, "feet"),
  18737. weight: math.unit(170, "lb"),
  18738. name: "Front",
  18739. image: {
  18740. source: "./media/characters/kiro/front.svg",
  18741. extra: 1064 / 1012,
  18742. bottom: 0.052
  18743. }
  18744. },
  18745. },
  18746. [
  18747. {
  18748. name: "Micro",
  18749. height: math.unit(6, "inches")
  18750. },
  18751. {
  18752. name: "Normal",
  18753. height: math.unit(6, "feet"),
  18754. default: true
  18755. },
  18756. {
  18757. name: "Macro",
  18758. height: math.unit(72, "feet")
  18759. },
  18760. ]
  18761. ))
  18762. characterMakers.push(() => makeCharacter(
  18763. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18764. {
  18765. front: {
  18766. height: math.unit(5 + 9 / 12, "feet"),
  18767. weight: math.unit(175, "lb"),
  18768. name: "Front",
  18769. image: {
  18770. source: "./media/characters/irishfox/front.svg",
  18771. extra: 1912 / 1680,
  18772. bottom: 0.02
  18773. }
  18774. },
  18775. },
  18776. [
  18777. {
  18778. name: "Nano",
  18779. height: math.unit(1, "mm")
  18780. },
  18781. {
  18782. name: "Micro",
  18783. height: math.unit(2, "inches")
  18784. },
  18785. {
  18786. name: "Normal",
  18787. height: math.unit(5 + 9 / 12, "feet"),
  18788. default: true
  18789. },
  18790. {
  18791. name: "Macro",
  18792. height: math.unit(45, "feet")
  18793. },
  18794. ]
  18795. ))
  18796. characterMakers.push(() => makeCharacter(
  18797. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18798. {
  18799. front: {
  18800. height: math.unit(6 + 1 / 12, "feet"),
  18801. weight: math.unit(75, "lb"),
  18802. name: "Front",
  18803. image: {
  18804. source: "./media/characters/aronai-sieyes/front.svg",
  18805. extra: 1556 / 1480,
  18806. bottom: 0.015
  18807. }
  18808. },
  18809. side: {
  18810. height: math.unit(6 + 1 / 12, "feet"),
  18811. weight: math.unit(75, "lb"),
  18812. name: "Side",
  18813. image: {
  18814. source: "./media/characters/aronai-sieyes/side.svg",
  18815. extra: 1433 / 1390,
  18816. bottom: 0.0393
  18817. }
  18818. },
  18819. back: {
  18820. height: math.unit(6 + 1 / 12, "feet"),
  18821. weight: math.unit(75, "lb"),
  18822. name: "Back",
  18823. image: {
  18824. source: "./media/characters/aronai-sieyes/back.svg",
  18825. extra: 1544 / 1494,
  18826. bottom: 0.02
  18827. }
  18828. },
  18829. frontClothed: {
  18830. height: math.unit(6 + 1 / 12, "feet"),
  18831. weight: math.unit(75, "lb"),
  18832. name: "Front (Clothed)",
  18833. image: {
  18834. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18835. extra: 1582 / 1527
  18836. }
  18837. },
  18838. feral: {
  18839. height: math.unit(18, "feet"),
  18840. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18841. name: "Feral",
  18842. image: {
  18843. source: "./media/characters/aronai-sieyes/feral.svg",
  18844. extra: 1530 / 1240,
  18845. bottom: 0.035
  18846. }
  18847. },
  18848. },
  18849. [
  18850. {
  18851. name: "Micro",
  18852. height: math.unit(2, "inches")
  18853. },
  18854. {
  18855. name: "Normal",
  18856. height: math.unit(6 + 1 / 12, "feet"),
  18857. default: true
  18858. }
  18859. ]
  18860. ))
  18861. characterMakers.push(() => makeCharacter(
  18862. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18863. {
  18864. front: {
  18865. height: math.unit(12, "feet"),
  18866. weight: math.unit(410, "kg"),
  18867. name: "Front",
  18868. image: {
  18869. source: "./media/characters/xuna/front.svg",
  18870. extra: 2184 / 1980
  18871. }
  18872. },
  18873. side: {
  18874. height: math.unit(12, "feet"),
  18875. weight: math.unit(410, "kg"),
  18876. name: "Side",
  18877. image: {
  18878. source: "./media/characters/xuna/side.svg",
  18879. extra: 2184 / 1980
  18880. }
  18881. },
  18882. back: {
  18883. height: math.unit(12, "feet"),
  18884. weight: math.unit(410, "kg"),
  18885. name: "Back",
  18886. image: {
  18887. source: "./media/characters/xuna/back.svg",
  18888. extra: 2184 / 1980
  18889. }
  18890. },
  18891. },
  18892. [
  18893. {
  18894. name: "Nano glow",
  18895. height: math.unit(10, "nm")
  18896. },
  18897. {
  18898. name: "Micro floof",
  18899. height: math.unit(0.3, "m")
  18900. },
  18901. {
  18902. name: "Huggable softy boi",
  18903. height: math.unit(3.6576, "m"),
  18904. default: true
  18905. },
  18906. {
  18907. name: "Admirable floof",
  18908. height: math.unit(80, "meters")
  18909. },
  18910. {
  18911. name: "Gentle macro",
  18912. height: math.unit(300, "meters")
  18913. },
  18914. {
  18915. name: "Very careful floof",
  18916. height: math.unit(3200, "meters")
  18917. },
  18918. {
  18919. name: "The mega floof",
  18920. height: math.unit(36000, "meters")
  18921. },
  18922. {
  18923. name: "Giga-fur-Wicker",
  18924. height: math.unit(4800000, "meters")
  18925. },
  18926. {
  18927. name: "Licky world",
  18928. height: math.unit(20000000, "meters")
  18929. },
  18930. {
  18931. name: "Floofy cyan sun",
  18932. height: math.unit(1500000000, "meters")
  18933. },
  18934. {
  18935. name: "Milky Wicker",
  18936. height: math.unit(1000000000000000000000, "meters")
  18937. },
  18938. {
  18939. name: "The observing Wicker",
  18940. height: math.unit(999999999999999999999999999, "meters")
  18941. },
  18942. ]
  18943. ))
  18944. characterMakers.push(() => makeCharacter(
  18945. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18946. {
  18947. front: {
  18948. height: math.unit(5 + 9 / 12, "feet"),
  18949. weight: math.unit(150, "lb"),
  18950. name: "Front",
  18951. image: {
  18952. source: "./media/characters/arokha-sieyes/front.svg",
  18953. extra: 1425 / 1284,
  18954. bottom: 0.05
  18955. }
  18956. },
  18957. },
  18958. [
  18959. {
  18960. name: "Normal",
  18961. height: math.unit(5 + 9 / 12, "feet")
  18962. },
  18963. {
  18964. name: "Macro",
  18965. height: math.unit(30, "meters"),
  18966. default: true
  18967. },
  18968. ]
  18969. ))
  18970. characterMakers.push(() => makeCharacter(
  18971. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18972. {
  18973. front: {
  18974. height: math.unit(6, "feet"),
  18975. weight: math.unit(180, "lb"),
  18976. name: "Front",
  18977. image: {
  18978. source: "./media/characters/arokh-sieyes/front.svg",
  18979. extra: 1830 / 1769,
  18980. bottom: 0.01
  18981. }
  18982. },
  18983. },
  18984. [
  18985. {
  18986. name: "Normal",
  18987. height: math.unit(6, "feet")
  18988. },
  18989. {
  18990. name: "Macro",
  18991. height: math.unit(30, "meters"),
  18992. default: true
  18993. },
  18994. ]
  18995. ))
  18996. characterMakers.push(() => makeCharacter(
  18997. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18998. {
  18999. side: {
  19000. height: math.unit(13 + 1 / 12, "feet"),
  19001. weight: math.unit(8.5, "tonnes"),
  19002. name: "Side",
  19003. image: {
  19004. source: "./media/characters/goldeneye/side.svg",
  19005. extra: 1182 / 778,
  19006. bottom: 0.067
  19007. }
  19008. },
  19009. paw: {
  19010. height: math.unit(3.4, "feet"),
  19011. name: "Paw",
  19012. image: {
  19013. source: "./media/characters/goldeneye/paw.svg"
  19014. }
  19015. },
  19016. },
  19017. [
  19018. {
  19019. name: "Normal",
  19020. height: math.unit(13 + 1 / 12, "feet"),
  19021. default: true
  19022. },
  19023. ]
  19024. ))
  19025. characterMakers.push(() => makeCharacter(
  19026. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19027. {
  19028. front: {
  19029. height: math.unit(6 + 1 / 12, "feet"),
  19030. weight: math.unit(210, "lb"),
  19031. name: "Front",
  19032. image: {
  19033. source: "./media/characters/leonardo-lycheborne/front.svg",
  19034. extra: 390 / 365,
  19035. bottom: 0.032
  19036. }
  19037. },
  19038. side: {
  19039. height: math.unit(6 + 1 / 12, "feet"),
  19040. weight: math.unit(210, "lb"),
  19041. name: "Side",
  19042. image: {
  19043. source: "./media/characters/leonardo-lycheborne/side.svg",
  19044. extra: 390 / 365,
  19045. bottom: 0.005
  19046. }
  19047. },
  19048. back: {
  19049. height: math.unit(6 + 1 / 12, "feet"),
  19050. weight: math.unit(210, "lb"),
  19051. name: "Back",
  19052. image: {
  19053. source: "./media/characters/leonardo-lycheborne/back.svg",
  19054. extra: 392 / 366,
  19055. bottom: 0.01
  19056. }
  19057. },
  19058. hand: {
  19059. height: math.unit(1.08, "feet"),
  19060. name: "Hand",
  19061. image: {
  19062. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19063. }
  19064. },
  19065. foot: {
  19066. height: math.unit(1.32, "feet"),
  19067. name: "Foot",
  19068. image: {
  19069. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19070. }
  19071. },
  19072. were: {
  19073. height: math.unit(20, "feet"),
  19074. weight: math.unit(7800, "lb"),
  19075. name: "Were",
  19076. image: {
  19077. source: "./media/characters/leonardo-lycheborne/were.svg",
  19078. extra: 308 / 294,
  19079. bottom: 0.048
  19080. }
  19081. },
  19082. feral: {
  19083. height: math.unit(7.5, "feet"),
  19084. weight: math.unit(600, "lb"),
  19085. name: "Feral",
  19086. image: {
  19087. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19088. extra: 210 / 186,
  19089. bottom: 0.108
  19090. }
  19091. },
  19092. taur: {
  19093. height: math.unit(11, "feet"),
  19094. weight: math.unit(3300, "lb"),
  19095. name: "Taur",
  19096. image: {
  19097. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19098. extra: 320 / 303,
  19099. bottom: 0.025
  19100. }
  19101. },
  19102. barghest: {
  19103. height: math.unit(11, "feet"),
  19104. weight: math.unit(1300, "lb"),
  19105. name: "Barghest",
  19106. image: {
  19107. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19108. extra: 323 / 302,
  19109. bottom: 0.027
  19110. }
  19111. },
  19112. dick: {
  19113. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19114. name: "Dick",
  19115. image: {
  19116. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19117. }
  19118. },
  19119. dickWere: {
  19120. height: math.unit((20) / 3.8, "feet"),
  19121. name: "Dick (Were)",
  19122. image: {
  19123. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19124. }
  19125. },
  19126. },
  19127. [
  19128. {
  19129. name: "Normal",
  19130. height: math.unit(6 + 1 / 12, "feet"),
  19131. default: true
  19132. },
  19133. ]
  19134. ))
  19135. characterMakers.push(() => makeCharacter(
  19136. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19137. {
  19138. front: {
  19139. height: math.unit(10, "feet"),
  19140. weight: math.unit(350, "lb"),
  19141. name: "Front",
  19142. image: {
  19143. source: "./media/characters/jet/front.svg",
  19144. extra: 2050 / 1980,
  19145. bottom: 0.013
  19146. }
  19147. },
  19148. back: {
  19149. height: math.unit(10, "feet"),
  19150. weight: math.unit(350, "lb"),
  19151. name: "Back",
  19152. image: {
  19153. source: "./media/characters/jet/back.svg",
  19154. extra: 2050 / 1980,
  19155. bottom: 0.013
  19156. }
  19157. },
  19158. },
  19159. [
  19160. {
  19161. name: "Micro",
  19162. height: math.unit(6, "inches")
  19163. },
  19164. {
  19165. name: "Normal",
  19166. height: math.unit(10, "feet"),
  19167. default: true
  19168. },
  19169. {
  19170. name: "Macro",
  19171. height: math.unit(100, "feet")
  19172. },
  19173. ]
  19174. ))
  19175. characterMakers.push(() => makeCharacter(
  19176. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19177. {
  19178. front: {
  19179. height: math.unit(15, "feet"),
  19180. weight: math.unit(2800, "lb"),
  19181. name: "Front",
  19182. image: {
  19183. source: "./media/characters/tanarath/front.svg",
  19184. extra: 2392 / 2220,
  19185. bottom: 0.03
  19186. }
  19187. },
  19188. back: {
  19189. height: math.unit(15, "feet"),
  19190. weight: math.unit(2800, "lb"),
  19191. name: "Back",
  19192. image: {
  19193. source: "./media/characters/tanarath/back.svg",
  19194. extra: 2392 / 2220,
  19195. bottom: 0.03
  19196. }
  19197. },
  19198. },
  19199. [
  19200. {
  19201. name: "Normal",
  19202. height: math.unit(15, "feet"),
  19203. default: true
  19204. },
  19205. ]
  19206. ))
  19207. characterMakers.push(() => makeCharacter(
  19208. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19209. {
  19210. front: {
  19211. height: math.unit(7 + 1 / 12, "feet"),
  19212. weight: math.unit(175, "lb"),
  19213. name: "Front",
  19214. image: {
  19215. source: "./media/characters/patty-cattybatty/front.svg",
  19216. extra: 908 / 874,
  19217. bottom: 0.025
  19218. }
  19219. },
  19220. },
  19221. [
  19222. {
  19223. name: "Micro",
  19224. height: math.unit(1, "inch")
  19225. },
  19226. {
  19227. name: "Normal",
  19228. height: math.unit(7 + 1 / 12, "feet")
  19229. },
  19230. {
  19231. name: "Mini Macro",
  19232. height: math.unit(155, "feet")
  19233. },
  19234. {
  19235. name: "Macro",
  19236. height: math.unit(1077, "feet")
  19237. },
  19238. {
  19239. name: "Mega Macro",
  19240. height: math.unit(47650, "feet"),
  19241. default: true
  19242. },
  19243. {
  19244. name: "Giga Macro",
  19245. height: math.unit(440, "miles")
  19246. },
  19247. {
  19248. name: "Tera Macro",
  19249. height: math.unit(8700, "miles")
  19250. },
  19251. {
  19252. name: "Planetary Macro",
  19253. height: math.unit(32700, "miles")
  19254. },
  19255. {
  19256. name: "Solar Macro",
  19257. height: math.unit(550000, "miles")
  19258. },
  19259. {
  19260. name: "Celestial Macro",
  19261. height: math.unit(2.5, "AU")
  19262. },
  19263. ]
  19264. ))
  19265. characterMakers.push(() => makeCharacter(
  19266. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19267. {
  19268. front: {
  19269. height: math.unit(4 + 5 / 12, "feet"),
  19270. weight: math.unit(90, "lb"),
  19271. name: "Front",
  19272. image: {
  19273. source: "./media/characters/cappu/front.svg",
  19274. extra: 1247 / 1152,
  19275. bottom: 0.012
  19276. }
  19277. },
  19278. },
  19279. [
  19280. {
  19281. name: "Normal",
  19282. height: math.unit(4 + 5 / 12, "feet"),
  19283. default: true
  19284. },
  19285. ]
  19286. ))
  19287. characterMakers.push(() => makeCharacter(
  19288. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19289. {
  19290. frontDressed: {
  19291. height: math.unit(70, "cm"),
  19292. weight: math.unit(6, "kg"),
  19293. name: "Front (Dressed)",
  19294. image: {
  19295. source: "./media/characters/sebi/front-dressed.svg",
  19296. extra: 713.5 / 686.5,
  19297. bottom: 0.003
  19298. }
  19299. },
  19300. front: {
  19301. height: math.unit(70, "cm"),
  19302. weight: math.unit(5, "kg"),
  19303. name: "Front",
  19304. image: {
  19305. source: "./media/characters/sebi/front.svg",
  19306. extra: 713.5 / 686.5,
  19307. bottom: 0.003
  19308. }
  19309. }
  19310. },
  19311. [
  19312. {
  19313. name: "Normal",
  19314. height: math.unit(70, "cm"),
  19315. default: true
  19316. },
  19317. {
  19318. name: "Macro",
  19319. height: math.unit(8, "meters")
  19320. },
  19321. ]
  19322. ))
  19323. characterMakers.push(() => makeCharacter(
  19324. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19325. {
  19326. front: {
  19327. height: math.unit(6, "feet"),
  19328. weight: math.unit(150, "lb"),
  19329. name: "Front",
  19330. image: {
  19331. source: "./media/characters/typhek/front.svg",
  19332. extra: 1948 / 1929,
  19333. bottom: 0.025
  19334. }
  19335. },
  19336. side: {
  19337. height: math.unit(6, "feet"),
  19338. weight: math.unit(150, "lb"),
  19339. name: "Side",
  19340. image: {
  19341. source: "./media/characters/typhek/side.svg",
  19342. extra: 2034 / 2010,
  19343. bottom: 0.003
  19344. }
  19345. },
  19346. back: {
  19347. height: math.unit(6, "feet"),
  19348. weight: math.unit(150, "lb"),
  19349. name: "Back",
  19350. image: {
  19351. source: "./media/characters/typhek/back.svg",
  19352. extra: 2005 / 1978,
  19353. bottom: 0.004
  19354. }
  19355. },
  19356. palm: {
  19357. height: math.unit(1.2, "feet"),
  19358. name: "Palm",
  19359. image: {
  19360. source: "./media/characters/typhek/palm.svg"
  19361. }
  19362. },
  19363. fist: {
  19364. height: math.unit(1.1, "feet"),
  19365. name: "Fist",
  19366. image: {
  19367. source: "./media/characters/typhek/fist.svg"
  19368. }
  19369. },
  19370. foot: {
  19371. height: math.unit(1.57, "feet"),
  19372. name: "Foot",
  19373. image: {
  19374. source: "./media/characters/typhek/foot.svg"
  19375. }
  19376. },
  19377. sole: {
  19378. height: math.unit(2.05, "feet"),
  19379. name: "Sole",
  19380. image: {
  19381. source: "./media/characters/typhek/sole.svg"
  19382. }
  19383. },
  19384. },
  19385. [
  19386. {
  19387. name: "Macro",
  19388. height: math.unit(40, "stories"),
  19389. default: true
  19390. },
  19391. {
  19392. name: "Megamacro",
  19393. height: math.unit(1, "mile")
  19394. },
  19395. {
  19396. name: "Gigamacro",
  19397. height: math.unit(4000, "solarradii")
  19398. },
  19399. {
  19400. name: "Universal",
  19401. height: math.unit(1.1, "universes")
  19402. }
  19403. ]
  19404. ))
  19405. characterMakers.push(() => makeCharacter(
  19406. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19407. {
  19408. side: {
  19409. height: math.unit(5 + 7 / 12, "feet"),
  19410. weight: math.unit(150, "lb"),
  19411. name: "Side",
  19412. image: {
  19413. source: "./media/characters/kassy/side.svg",
  19414. extra: 1280 / 1225,
  19415. bottom: 0.002
  19416. }
  19417. },
  19418. front: {
  19419. height: math.unit(5 + 7 / 12, "feet"),
  19420. weight: math.unit(150, "lb"),
  19421. name: "Front",
  19422. image: {
  19423. source: "./media/characters/kassy/front.svg",
  19424. extra: 1280 / 1225,
  19425. bottom: 0.025
  19426. }
  19427. },
  19428. back: {
  19429. height: math.unit(5 + 7 / 12, "feet"),
  19430. weight: math.unit(150, "lb"),
  19431. name: "Back",
  19432. image: {
  19433. source: "./media/characters/kassy/back.svg",
  19434. extra: 1280 / 1225,
  19435. bottom: 0.002
  19436. }
  19437. },
  19438. foot: {
  19439. height: math.unit(1.266, "feet"),
  19440. name: "Foot",
  19441. image: {
  19442. source: "./media/characters/kassy/foot.svg"
  19443. }
  19444. },
  19445. },
  19446. [
  19447. {
  19448. name: "Normal",
  19449. height: math.unit(5 + 7 / 12, "feet")
  19450. },
  19451. {
  19452. name: "Macro",
  19453. height: math.unit(137, "feet"),
  19454. default: true
  19455. },
  19456. {
  19457. name: "Megamacro",
  19458. height: math.unit(1, "mile")
  19459. },
  19460. ]
  19461. ))
  19462. characterMakers.push(() => makeCharacter(
  19463. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19464. {
  19465. front: {
  19466. height: math.unit(6 + 1 / 12, "feet"),
  19467. weight: math.unit(200, "lb"),
  19468. name: "Front",
  19469. image: {
  19470. source: "./media/characters/neil/front.svg",
  19471. extra: 1326 / 1250,
  19472. bottom: 0.023
  19473. }
  19474. },
  19475. },
  19476. [
  19477. {
  19478. name: "Normal",
  19479. height: math.unit(6 + 1 / 12, "feet"),
  19480. default: true
  19481. },
  19482. {
  19483. name: "Macro",
  19484. height: math.unit(200, "feet")
  19485. },
  19486. ]
  19487. ))
  19488. characterMakers.push(() => makeCharacter(
  19489. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19490. {
  19491. front: {
  19492. height: math.unit(5 + 9 / 12, "feet"),
  19493. weight: math.unit(190, "lb"),
  19494. name: "Front",
  19495. image: {
  19496. source: "./media/characters/atticus/front.svg",
  19497. extra: 2934 / 2785,
  19498. bottom: 0.025
  19499. }
  19500. },
  19501. },
  19502. [
  19503. {
  19504. name: "Normal",
  19505. height: math.unit(5 + 9 / 12, "feet"),
  19506. default: true
  19507. },
  19508. {
  19509. name: "Macro",
  19510. height: math.unit(180, "feet")
  19511. },
  19512. ]
  19513. ))
  19514. characterMakers.push(() => makeCharacter(
  19515. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19516. {
  19517. side: {
  19518. height: math.unit(9, "feet"),
  19519. weight: math.unit(650, "lb"),
  19520. name: "Side",
  19521. image: {
  19522. source: "./media/characters/milo/side.svg",
  19523. extra: 2644 / 2310,
  19524. bottom: 0.032
  19525. }
  19526. },
  19527. },
  19528. [
  19529. {
  19530. name: "Normal",
  19531. height: math.unit(9, "feet"),
  19532. default: true
  19533. },
  19534. {
  19535. name: "Macro",
  19536. height: math.unit(300, "feet")
  19537. },
  19538. ]
  19539. ))
  19540. characterMakers.push(() => makeCharacter(
  19541. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19542. {
  19543. side: {
  19544. height: math.unit(8, "meters"),
  19545. weight: math.unit(90000, "kg"),
  19546. name: "Side",
  19547. image: {
  19548. source: "./media/characters/ijzer/side.svg",
  19549. extra: 2756 / 1600,
  19550. bottom: 0.01
  19551. }
  19552. },
  19553. },
  19554. [
  19555. {
  19556. name: "Small",
  19557. height: math.unit(3, "meters")
  19558. },
  19559. {
  19560. name: "Normal",
  19561. height: math.unit(8, "meters"),
  19562. default: true
  19563. },
  19564. {
  19565. name: "Normal+",
  19566. height: math.unit(10, "meters")
  19567. },
  19568. {
  19569. name: "Bigger",
  19570. height: math.unit(24, "meters")
  19571. },
  19572. {
  19573. name: "Huge",
  19574. height: math.unit(80, "meters")
  19575. },
  19576. ]
  19577. ))
  19578. characterMakers.push(() => makeCharacter(
  19579. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19580. {
  19581. front: {
  19582. height: math.unit(6 + 2 / 12, "feet"),
  19583. weight: math.unit(153, "lb"),
  19584. name: "Front",
  19585. image: {
  19586. source: "./media/characters/luca-cervicum/front.svg",
  19587. extra: 370 / 327,
  19588. bottom: 0.015
  19589. }
  19590. },
  19591. back: {
  19592. height: math.unit(6 + 2 / 12, "feet"),
  19593. weight: math.unit(153, "lb"),
  19594. name: "Back",
  19595. image: {
  19596. source: "./media/characters/luca-cervicum/back.svg",
  19597. extra: 367 / 333,
  19598. bottom: 0.005
  19599. }
  19600. },
  19601. frontGear: {
  19602. height: math.unit(6 + 2 / 12, "feet"),
  19603. weight: math.unit(173, "lb"),
  19604. name: "Front (Gear)",
  19605. image: {
  19606. source: "./media/characters/luca-cervicum/front-gear.svg",
  19607. extra: 377 / 333,
  19608. bottom: 0.006
  19609. }
  19610. },
  19611. },
  19612. [
  19613. {
  19614. name: "Normal",
  19615. height: math.unit(6 + 2 / 12, "feet"),
  19616. default: true
  19617. },
  19618. ]
  19619. ))
  19620. characterMakers.push(() => makeCharacter(
  19621. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19622. {
  19623. front: {
  19624. height: math.unit(6 + 1 / 12, "feet"),
  19625. weight: math.unit(304, "lb"),
  19626. name: "Front",
  19627. image: {
  19628. source: "./media/characters/oliver/front.svg",
  19629. extra: 157 / 143,
  19630. bottom: 0.08
  19631. }
  19632. },
  19633. },
  19634. [
  19635. {
  19636. name: "Normal",
  19637. height: math.unit(6 + 1 / 12, "feet"),
  19638. default: true
  19639. },
  19640. ]
  19641. ))
  19642. characterMakers.push(() => makeCharacter(
  19643. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19644. {
  19645. front: {
  19646. height: math.unit(5 + 7 / 12, "feet"),
  19647. weight: math.unit(140, "lb"),
  19648. name: "Front",
  19649. image: {
  19650. source: "./media/characters/shane/front.svg",
  19651. extra: 304 / 289,
  19652. bottom: 0.005
  19653. }
  19654. },
  19655. },
  19656. [
  19657. {
  19658. name: "Normal",
  19659. height: math.unit(5 + 7 / 12, "feet"),
  19660. default: true
  19661. },
  19662. ]
  19663. ))
  19664. characterMakers.push(() => makeCharacter(
  19665. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19666. {
  19667. front: {
  19668. height: math.unit(5 + 9 / 12, "feet"),
  19669. weight: math.unit(178, "lb"),
  19670. name: "Front",
  19671. image: {
  19672. source: "./media/characters/shin/front.svg",
  19673. extra: 159 / 151,
  19674. bottom: 0.015
  19675. }
  19676. },
  19677. },
  19678. [
  19679. {
  19680. name: "Normal",
  19681. height: math.unit(5 + 9 / 12, "feet"),
  19682. default: true
  19683. },
  19684. ]
  19685. ))
  19686. characterMakers.push(() => makeCharacter(
  19687. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19688. {
  19689. front: {
  19690. height: math.unit(5 + 10 / 12, "feet"),
  19691. weight: math.unit(168, "lb"),
  19692. name: "Front",
  19693. image: {
  19694. source: "./media/characters/xerxes/front.svg",
  19695. extra: 282 / 260,
  19696. bottom: 0.045
  19697. }
  19698. },
  19699. },
  19700. [
  19701. {
  19702. name: "Normal",
  19703. height: math.unit(5 + 10 / 12, "feet"),
  19704. default: true
  19705. },
  19706. ]
  19707. ))
  19708. characterMakers.push(() => makeCharacter(
  19709. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19710. {
  19711. front: {
  19712. height: math.unit(6 + 7 / 12, "feet"),
  19713. weight: math.unit(208, "lb"),
  19714. name: "Front",
  19715. image: {
  19716. source: "./media/characters/chaska/front.svg",
  19717. extra: 332 / 319,
  19718. bottom: 0.015
  19719. }
  19720. },
  19721. },
  19722. [
  19723. {
  19724. name: "Normal",
  19725. height: math.unit(6 + 7 / 12, "feet"),
  19726. default: true
  19727. },
  19728. ]
  19729. ))
  19730. characterMakers.push(() => makeCharacter(
  19731. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19732. {
  19733. front: {
  19734. height: math.unit(5 + 8 / 12, "feet"),
  19735. weight: math.unit(208, "lb"),
  19736. name: "Front",
  19737. image: {
  19738. source: "./media/characters/enuk/front.svg",
  19739. extra: 437 / 406,
  19740. bottom: 0.02
  19741. }
  19742. },
  19743. },
  19744. [
  19745. {
  19746. name: "Normal",
  19747. height: math.unit(5 + 8 / 12, "feet"),
  19748. default: true
  19749. },
  19750. ]
  19751. ))
  19752. characterMakers.push(() => makeCharacter(
  19753. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19754. {
  19755. front: {
  19756. height: math.unit(5 + 10 / 12, "feet"),
  19757. weight: math.unit(252, "lb"),
  19758. name: "Front",
  19759. image: {
  19760. source: "./media/characters/bruun/front.svg",
  19761. extra: 197 / 187,
  19762. bottom: 0.012
  19763. }
  19764. },
  19765. },
  19766. [
  19767. {
  19768. name: "Normal",
  19769. height: math.unit(5 + 10 / 12, "feet"),
  19770. default: true
  19771. },
  19772. ]
  19773. ))
  19774. characterMakers.push(() => makeCharacter(
  19775. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19776. {
  19777. front: {
  19778. height: math.unit(6 + 10 / 12, "feet"),
  19779. weight: math.unit(255, "lb"),
  19780. name: "Front",
  19781. image: {
  19782. source: "./media/characters/alexeev/front.svg",
  19783. extra: 213 / 200,
  19784. bottom: 0.05
  19785. }
  19786. },
  19787. },
  19788. [
  19789. {
  19790. name: "Normal",
  19791. height: math.unit(6 + 10 / 12, "feet"),
  19792. default: true
  19793. },
  19794. ]
  19795. ))
  19796. characterMakers.push(() => makeCharacter(
  19797. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19798. {
  19799. front: {
  19800. height: math.unit(2 + 8 / 12, "feet"),
  19801. weight: math.unit(22, "lb"),
  19802. name: "Front",
  19803. image: {
  19804. source: "./media/characters/evelyn/front.svg",
  19805. extra: 208 / 180
  19806. }
  19807. },
  19808. },
  19809. [
  19810. {
  19811. name: "Normal",
  19812. height: math.unit(2 + 8 / 12, "feet"),
  19813. default: true
  19814. },
  19815. ]
  19816. ))
  19817. characterMakers.push(() => makeCharacter(
  19818. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19819. {
  19820. front: {
  19821. height: math.unit(5 + 9 / 12, "feet"),
  19822. weight: math.unit(139, "lb"),
  19823. name: "Front",
  19824. image: {
  19825. source: "./media/characters/inca/front.svg",
  19826. extra: 294 / 291,
  19827. bottom: 0.03
  19828. }
  19829. },
  19830. },
  19831. [
  19832. {
  19833. name: "Normal",
  19834. height: math.unit(5 + 9 / 12, "feet"),
  19835. default: true
  19836. },
  19837. ]
  19838. ))
  19839. characterMakers.push(() => makeCharacter(
  19840. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19841. {
  19842. front: {
  19843. height: math.unit(5 + 1 / 12, "feet"),
  19844. weight: math.unit(84, "lb"),
  19845. name: "Front",
  19846. image: {
  19847. source: "./media/characters/magdalene/front.svg",
  19848. extra: 293 / 273
  19849. }
  19850. },
  19851. },
  19852. [
  19853. {
  19854. name: "Normal",
  19855. height: math.unit(5 + 1 / 12, "feet"),
  19856. default: true
  19857. },
  19858. ]
  19859. ))
  19860. characterMakers.push(() => makeCharacter(
  19861. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19862. {
  19863. front: {
  19864. height: math.unit(6 + 3 / 12, "feet"),
  19865. weight: math.unit(185, "lb"),
  19866. name: "Front",
  19867. image: {
  19868. source: "./media/characters/mera/front.svg",
  19869. extra: 291 / 277,
  19870. bottom: 0.03
  19871. }
  19872. },
  19873. },
  19874. [
  19875. {
  19876. name: "Normal",
  19877. height: math.unit(6 + 3 / 12, "feet"),
  19878. default: true
  19879. },
  19880. ]
  19881. ))
  19882. characterMakers.push(() => makeCharacter(
  19883. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19884. {
  19885. front: {
  19886. height: math.unit(6 + 7 / 12, "feet"),
  19887. weight: math.unit(160, "lb"),
  19888. name: "Front",
  19889. image: {
  19890. source: "./media/characters/ceres/front.svg",
  19891. extra: 1023 / 950,
  19892. bottom: 0.027
  19893. }
  19894. },
  19895. back: {
  19896. height: math.unit(6 + 7 / 12, "feet"),
  19897. weight: math.unit(160, "lb"),
  19898. name: "Back",
  19899. image: {
  19900. source: "./media/characters/ceres/back.svg",
  19901. extra: 1023 / 950
  19902. }
  19903. },
  19904. },
  19905. [
  19906. {
  19907. name: "Normal",
  19908. height: math.unit(6 + 7 / 12, "feet"),
  19909. default: true
  19910. },
  19911. ]
  19912. ))
  19913. characterMakers.push(() => makeCharacter(
  19914. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19915. {
  19916. front: {
  19917. height: math.unit(5 + 10 / 12, "feet"),
  19918. weight: math.unit(150, "lb"),
  19919. name: "Front",
  19920. image: {
  19921. source: "./media/characters/kris/front.svg",
  19922. extra: 885 / 803,
  19923. bottom: 0.03
  19924. }
  19925. },
  19926. },
  19927. [
  19928. {
  19929. name: "Normal",
  19930. height: math.unit(5 + 10 / 12, "feet"),
  19931. default: true
  19932. },
  19933. ]
  19934. ))
  19935. characterMakers.push(() => makeCharacter(
  19936. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19937. {
  19938. front: {
  19939. height: math.unit(7, "feet"),
  19940. weight: math.unit(120, "kg"),
  19941. name: "Front",
  19942. image: {
  19943. source: "./media/characters/taluthus/front.svg",
  19944. extra: 903 / 833,
  19945. bottom: 0.015
  19946. }
  19947. },
  19948. },
  19949. [
  19950. {
  19951. name: "Normal",
  19952. height: math.unit(7, "feet"),
  19953. default: true
  19954. },
  19955. {
  19956. name: "Macro",
  19957. height: math.unit(300, "feet")
  19958. },
  19959. ]
  19960. ))
  19961. characterMakers.push(() => makeCharacter(
  19962. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19963. {
  19964. front: {
  19965. height: math.unit(5 + 9 / 12, "feet"),
  19966. weight: math.unit(145, "lb"),
  19967. name: "Front",
  19968. image: {
  19969. source: "./media/characters/dawn/front.svg",
  19970. extra: 2094 / 2016,
  19971. bottom: 0.025
  19972. }
  19973. },
  19974. back: {
  19975. height: math.unit(5 + 9 / 12, "feet"),
  19976. weight: math.unit(160, "lb"),
  19977. name: "Back",
  19978. image: {
  19979. source: "./media/characters/dawn/back.svg",
  19980. extra: 2112 / 2080,
  19981. bottom: 0.005
  19982. }
  19983. },
  19984. },
  19985. [
  19986. {
  19987. name: "Normal",
  19988. height: math.unit(6 + 7 / 12, "feet"),
  19989. default: true
  19990. },
  19991. ]
  19992. ))
  19993. characterMakers.push(() => makeCharacter(
  19994. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19995. {
  19996. anthro: {
  19997. height: math.unit(8 + 3 / 12, "feet"),
  19998. weight: math.unit(450, "lb"),
  19999. name: "Anthro",
  20000. image: {
  20001. source: "./media/characters/arador/anthro.svg",
  20002. extra: 1835 / 1718,
  20003. bottom: 0.025
  20004. }
  20005. },
  20006. feral: {
  20007. height: math.unit(4, "feet"),
  20008. weight: math.unit(200, "lb"),
  20009. name: "Feral",
  20010. image: {
  20011. source: "./media/characters/arador/feral.svg",
  20012. extra: 1683 / 1514,
  20013. bottom: 0.07
  20014. }
  20015. },
  20016. },
  20017. [
  20018. {
  20019. name: "Normal",
  20020. height: math.unit(8 + 3 / 12, "feet")
  20021. },
  20022. {
  20023. name: "Macro",
  20024. height: math.unit(82.5, "feet"),
  20025. default: true
  20026. },
  20027. ]
  20028. ))
  20029. characterMakers.push(() => makeCharacter(
  20030. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20031. {
  20032. front: {
  20033. height: math.unit(5 + 10 / 12, "feet"),
  20034. weight: math.unit(125, "lb"),
  20035. name: "Front",
  20036. image: {
  20037. source: "./media/characters/dharsi/front.svg",
  20038. extra: 716 / 630,
  20039. bottom: 0.035
  20040. }
  20041. },
  20042. },
  20043. [
  20044. {
  20045. name: "Nano",
  20046. height: math.unit(100, "nm")
  20047. },
  20048. {
  20049. name: "Micro",
  20050. height: math.unit(2, "inches")
  20051. },
  20052. {
  20053. name: "Normal",
  20054. height: math.unit(5 + 10 / 12, "feet"),
  20055. default: true
  20056. },
  20057. {
  20058. name: "Macro",
  20059. height: math.unit(1000, "feet")
  20060. },
  20061. {
  20062. name: "Megamacro",
  20063. height: math.unit(10, "miles")
  20064. },
  20065. {
  20066. name: "Gigamacro",
  20067. height: math.unit(3000, "miles")
  20068. },
  20069. {
  20070. name: "Teramacro",
  20071. height: math.unit(500000, "miles")
  20072. },
  20073. {
  20074. name: "Teramacro+",
  20075. height: math.unit(30, "galaxies")
  20076. },
  20077. ]
  20078. ))
  20079. characterMakers.push(() => makeCharacter(
  20080. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20081. {
  20082. front: {
  20083. height: math.unit(6, "feet"),
  20084. weight: math.unit(150, "lb"),
  20085. name: "Front",
  20086. image: {
  20087. source: "./media/characters/deathy/front.svg",
  20088. extra: 1552 / 1463,
  20089. bottom: 0.025
  20090. }
  20091. },
  20092. side: {
  20093. height: math.unit(6, "feet"),
  20094. weight: math.unit(150, "lb"),
  20095. name: "Side",
  20096. image: {
  20097. source: "./media/characters/deathy/side.svg",
  20098. extra: 1604 / 1455,
  20099. bottom: 0.025
  20100. }
  20101. },
  20102. back: {
  20103. height: math.unit(6, "feet"),
  20104. weight: math.unit(150, "lb"),
  20105. name: "Back",
  20106. image: {
  20107. source: "./media/characters/deathy/back.svg",
  20108. extra: 1580 / 1463,
  20109. bottom: 0.005
  20110. }
  20111. },
  20112. },
  20113. [
  20114. {
  20115. name: "Micro",
  20116. height: math.unit(5, "millimeters")
  20117. },
  20118. {
  20119. name: "Normal",
  20120. height: math.unit(6 + 5 / 12, "feet"),
  20121. default: true
  20122. },
  20123. ]
  20124. ))
  20125. characterMakers.push(() => makeCharacter(
  20126. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20127. {
  20128. front: {
  20129. height: math.unit(16, "feet"),
  20130. weight: math.unit(4000, "lb"),
  20131. name: "Front",
  20132. image: {
  20133. source: "./media/characters/juniper/front.svg",
  20134. bottom: 0.04
  20135. }
  20136. },
  20137. },
  20138. [
  20139. {
  20140. name: "Normal",
  20141. height: math.unit(16, "feet"),
  20142. default: true
  20143. },
  20144. ]
  20145. ))
  20146. characterMakers.push(() => makeCharacter(
  20147. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20148. {
  20149. front: {
  20150. height: math.unit(6, "feet"),
  20151. weight: math.unit(150, "lb"),
  20152. name: "Front",
  20153. image: {
  20154. source: "./media/characters/hipster/front.svg",
  20155. extra: 1312 / 1209,
  20156. bottom: 0.025
  20157. }
  20158. },
  20159. back: {
  20160. height: math.unit(6, "feet"),
  20161. weight: math.unit(150, "lb"),
  20162. name: "Back",
  20163. image: {
  20164. source: "./media/characters/hipster/back.svg",
  20165. extra: 1281 / 1196,
  20166. bottom: 0.01
  20167. }
  20168. },
  20169. },
  20170. [
  20171. {
  20172. name: "Micro",
  20173. height: math.unit(1, "mm")
  20174. },
  20175. {
  20176. name: "Normal",
  20177. height: math.unit(4, "inches"),
  20178. default: true
  20179. },
  20180. {
  20181. name: "Macro",
  20182. height: math.unit(500, "feet")
  20183. },
  20184. {
  20185. name: "Megamacro",
  20186. height: math.unit(1000, "miles")
  20187. },
  20188. ]
  20189. ))
  20190. characterMakers.push(() => makeCharacter(
  20191. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20192. {
  20193. front: {
  20194. height: math.unit(6, "feet"),
  20195. weight: math.unit(150, "lb"),
  20196. name: "Front",
  20197. image: {
  20198. source: "./media/characters/tendirmuldr/front.svg",
  20199. extra: 1878 / 1772,
  20200. bottom: 0.015
  20201. }
  20202. },
  20203. },
  20204. [
  20205. {
  20206. name: "Megamacro",
  20207. height: math.unit(1500, "miles"),
  20208. default: true
  20209. },
  20210. ]
  20211. ))
  20212. characterMakers.push(() => makeCharacter(
  20213. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20214. {
  20215. front: {
  20216. height: math.unit(14, "feet"),
  20217. weight: math.unit(12000, "lb"),
  20218. name: "Front",
  20219. image: {
  20220. source: "./media/characters/mort/front.svg",
  20221. extra: 365 / 318,
  20222. bottom: 0.01
  20223. }
  20224. },
  20225. side: {
  20226. height: math.unit(14, "feet"),
  20227. weight: math.unit(12000, "lb"),
  20228. name: "Side",
  20229. image: {
  20230. source: "./media/characters/mort/side.svg",
  20231. extra: 365 / 318,
  20232. bottom: 0.052
  20233. },
  20234. default: true
  20235. },
  20236. back: {
  20237. height: math.unit(14, "feet"),
  20238. weight: math.unit(12000, "lb"),
  20239. name: "Back",
  20240. image: {
  20241. source: "./media/characters/mort/back.svg",
  20242. extra: 371 / 332,
  20243. bottom: 0.18
  20244. }
  20245. },
  20246. },
  20247. [
  20248. {
  20249. name: "Normal",
  20250. height: math.unit(14, "feet"),
  20251. default: true
  20252. },
  20253. ]
  20254. ))
  20255. characterMakers.push(() => makeCharacter(
  20256. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20257. {
  20258. front: {
  20259. height: math.unit(8, "feet"),
  20260. weight: math.unit(1, "ton"),
  20261. name: "Front",
  20262. image: {
  20263. source: "./media/characters/lycoa/front.svg",
  20264. extra: 1875 / 1789,
  20265. bottom: 0.022
  20266. }
  20267. },
  20268. back: {
  20269. height: math.unit(8, "feet"),
  20270. weight: math.unit(1, "ton"),
  20271. name: "Back",
  20272. image: {
  20273. source: "./media/characters/lycoa/back.svg",
  20274. extra: 1835 / 1781,
  20275. bottom: 0.03
  20276. }
  20277. },
  20278. head: {
  20279. height: math.unit(2.1, "feet"),
  20280. name: "Head",
  20281. image: {
  20282. source: "./media/characters/lycoa/head.svg"
  20283. }
  20284. },
  20285. tailmaw: {
  20286. height: math.unit(1.9, "feet"),
  20287. name: "Tailmaw",
  20288. image: {
  20289. source: "./media/characters/lycoa/tailmaw.svg"
  20290. }
  20291. },
  20292. tentacles: {
  20293. height: math.unit(2.1, "feet"),
  20294. name: "Tentacles",
  20295. image: {
  20296. source: "./media/characters/lycoa/tentacles.svg"
  20297. }
  20298. },
  20299. dick: {
  20300. height: math.unit(1.73, "feet"),
  20301. name: "Dick",
  20302. image: {
  20303. source: "./media/characters/lycoa/dick.svg"
  20304. }
  20305. },
  20306. },
  20307. [
  20308. {
  20309. name: "Normal",
  20310. height: math.unit(8, "feet"),
  20311. default: true
  20312. },
  20313. {
  20314. name: "Macro",
  20315. height: math.unit(30, "feet")
  20316. },
  20317. ]
  20318. ))
  20319. characterMakers.push(() => makeCharacter(
  20320. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20321. {
  20322. front: {
  20323. height: math.unit(4 + 2 / 12, "feet"),
  20324. weight: math.unit(70, "lb"),
  20325. name: "Front",
  20326. image: {
  20327. source: "./media/characters/naldara/front.svg",
  20328. extra: 841 / 720,
  20329. bottom: 0.04
  20330. }
  20331. },
  20332. naga: {
  20333. height: math.unit(23, "feet"),
  20334. weight: math.unit(15000, "kg"),
  20335. name: "Naga",
  20336. image: {
  20337. source: "./media/characters/naldara/naga.svg",
  20338. extra: 3290 / 2959,
  20339. bottom: 124 / 3432
  20340. }
  20341. },
  20342. },
  20343. [
  20344. {
  20345. name: "Normal",
  20346. height: math.unit(4 + 2 / 12, "feet"),
  20347. default: true
  20348. },
  20349. ]
  20350. ))
  20351. characterMakers.push(() => makeCharacter(
  20352. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20353. {
  20354. front: {
  20355. height: math.unit(13 + 7 / 12, "feet"),
  20356. weight: math.unit(1500, "lb"),
  20357. name: "Front",
  20358. image: {
  20359. source: "./media/characters/briar/front.svg",
  20360. extra: 626 / 596,
  20361. bottom: 0.08
  20362. }
  20363. },
  20364. },
  20365. [
  20366. {
  20367. name: "Normal",
  20368. height: math.unit(13 + 7 / 12, "feet"),
  20369. default: true
  20370. },
  20371. ]
  20372. ))
  20373. characterMakers.push(() => makeCharacter(
  20374. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20375. {
  20376. side: {
  20377. height: math.unit(10, "feet"),
  20378. weight: math.unit(500, "lb"),
  20379. name: "Side",
  20380. image: {
  20381. source: "./media/characters/vanguard/side.svg",
  20382. extra: 502 / 425,
  20383. bottom: 0.087
  20384. }
  20385. },
  20386. },
  20387. [
  20388. {
  20389. name: "Normal",
  20390. height: math.unit(10, "feet"),
  20391. default: true
  20392. },
  20393. ]
  20394. ))
  20395. characterMakers.push(() => makeCharacter(
  20396. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20397. {
  20398. front: {
  20399. height: math.unit(7.5, "feet"),
  20400. weight: math.unit(2, "lb"),
  20401. name: "Front",
  20402. image: {
  20403. source: "./media/characters/artemis/front.svg",
  20404. extra: 1192 / 1075,
  20405. bottom: 0.07
  20406. }
  20407. },
  20408. frontNsfw: {
  20409. height: math.unit(7.5, "feet"),
  20410. weight: math.unit(2, "lb"),
  20411. name: "Front (NSFW)",
  20412. image: {
  20413. source: "./media/characters/artemis/front-nsfw.svg",
  20414. extra: 1192 / 1075,
  20415. bottom: 0.07
  20416. }
  20417. },
  20418. frontNsfwer: {
  20419. height: math.unit(7.5, "feet"),
  20420. weight: math.unit(2, "lb"),
  20421. name: "Front (NSFW-er)",
  20422. image: {
  20423. source: "./media/characters/artemis/front-nsfwer.svg",
  20424. extra: 1192 / 1075,
  20425. bottom: 0.07
  20426. }
  20427. },
  20428. side: {
  20429. height: math.unit(7.5, "feet"),
  20430. weight: math.unit(2, "lb"),
  20431. name: "Side",
  20432. image: {
  20433. source: "./media/characters/artemis/side.svg",
  20434. extra: 1192 / 1075,
  20435. bottom: 0.07
  20436. }
  20437. },
  20438. sideNsfw: {
  20439. height: math.unit(7.5, "feet"),
  20440. weight: math.unit(2, "lb"),
  20441. name: "Side (NSFW)",
  20442. image: {
  20443. source: "./media/characters/artemis/side-nsfw.svg",
  20444. extra: 1192 / 1075,
  20445. bottom: 0.07
  20446. }
  20447. },
  20448. sideNsfwer: {
  20449. height: math.unit(7.5, "feet"),
  20450. weight: math.unit(2, "lb"),
  20451. name: "Side (NSFW-er)",
  20452. image: {
  20453. source: "./media/characters/artemis/side-nsfwer.svg",
  20454. extra: 1192 / 1075,
  20455. bottom: 0.07
  20456. }
  20457. },
  20458. maw: {
  20459. height: math.unit(1.1, "feet"),
  20460. name: "Maw",
  20461. image: {
  20462. source: "./media/characters/artemis/maw.svg"
  20463. }
  20464. },
  20465. stomach: {
  20466. height: math.unit(0.95, "feet"),
  20467. name: "Stomach",
  20468. image: {
  20469. source: "./media/characters/artemis/stomach.svg"
  20470. }
  20471. },
  20472. dickCanine: {
  20473. height: math.unit(1, "feet"),
  20474. name: "Dick (Canine)",
  20475. image: {
  20476. source: "./media/characters/artemis/dick-canine.svg"
  20477. }
  20478. },
  20479. dickEquine: {
  20480. height: math.unit(0.85, "feet"),
  20481. name: "Dick (Equine)",
  20482. image: {
  20483. source: "./media/characters/artemis/dick-equine.svg"
  20484. }
  20485. },
  20486. dickExotic: {
  20487. height: math.unit(0.85, "feet"),
  20488. name: "Dick (Exotic)",
  20489. image: {
  20490. source: "./media/characters/artemis/dick-exotic.svg"
  20491. }
  20492. },
  20493. },
  20494. [
  20495. {
  20496. name: "Normal",
  20497. height: math.unit(7.5, "feet"),
  20498. default: true
  20499. },
  20500. {
  20501. name: "Enlarged",
  20502. height: math.unit(12, "feet")
  20503. },
  20504. ]
  20505. ))
  20506. characterMakers.push(() => makeCharacter(
  20507. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20508. {
  20509. front: {
  20510. height: math.unit(5 + 3 / 12, "feet"),
  20511. weight: math.unit(160, "lb"),
  20512. name: "Front",
  20513. image: {
  20514. source: "./media/characters/kira/front.svg",
  20515. extra: 906 / 786,
  20516. bottom: 0.01
  20517. }
  20518. },
  20519. back: {
  20520. height: math.unit(5 + 3 / 12, "feet"),
  20521. weight: math.unit(160, "lb"),
  20522. name: "Back",
  20523. image: {
  20524. source: "./media/characters/kira/back.svg",
  20525. extra: 882 / 757,
  20526. bottom: 0.005
  20527. }
  20528. },
  20529. frontDressed: {
  20530. height: math.unit(5 + 3 / 12, "feet"),
  20531. weight: math.unit(160, "lb"),
  20532. name: "Front (Dressed)",
  20533. image: {
  20534. source: "./media/characters/kira/front-dressed.svg",
  20535. extra: 906 / 786,
  20536. bottom: 0.01
  20537. }
  20538. },
  20539. beans: {
  20540. height: math.unit(0.92, "feet"),
  20541. name: "Beans",
  20542. image: {
  20543. source: "./media/characters/kira/beans.svg"
  20544. }
  20545. },
  20546. },
  20547. [
  20548. {
  20549. name: "Normal",
  20550. height: math.unit(5 + 3 / 12, "feet"),
  20551. default: true
  20552. },
  20553. ]
  20554. ))
  20555. characterMakers.push(() => makeCharacter(
  20556. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20557. {
  20558. front: {
  20559. height: math.unit(5 + 4 / 12, "feet"),
  20560. weight: math.unit(145, "lb"),
  20561. name: "Front",
  20562. image: {
  20563. source: "./media/characters/scramble/front.svg",
  20564. extra: 763 / 727,
  20565. bottom: 0.05
  20566. }
  20567. },
  20568. back: {
  20569. height: math.unit(5 + 4 / 12, "feet"),
  20570. weight: math.unit(145, "lb"),
  20571. name: "Back",
  20572. image: {
  20573. source: "./media/characters/scramble/back.svg",
  20574. extra: 826 / 737,
  20575. bottom: 0.002
  20576. }
  20577. },
  20578. },
  20579. [
  20580. {
  20581. name: "Normal",
  20582. height: math.unit(5 + 4 / 12, "feet"),
  20583. default: true
  20584. },
  20585. ]
  20586. ))
  20587. characterMakers.push(() => makeCharacter(
  20588. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20589. {
  20590. side: {
  20591. height: math.unit(6 + 2 / 12, "feet"),
  20592. weight: math.unit(190, "lb"),
  20593. name: "Side",
  20594. image: {
  20595. source: "./media/characters/biscuit/side.svg",
  20596. extra: 858 / 791,
  20597. bottom: 0.044
  20598. }
  20599. },
  20600. },
  20601. [
  20602. {
  20603. name: "Normal",
  20604. height: math.unit(6 + 2 / 12, "feet"),
  20605. default: true
  20606. },
  20607. ]
  20608. ))
  20609. characterMakers.push(() => makeCharacter(
  20610. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20611. {
  20612. front: {
  20613. height: math.unit(5 + 2 / 12, "feet"),
  20614. weight: math.unit(120, "lb"),
  20615. name: "Front",
  20616. image: {
  20617. source: "./media/characters/poffin/front.svg",
  20618. extra: 786 / 680,
  20619. bottom: 0.005
  20620. }
  20621. },
  20622. },
  20623. [
  20624. {
  20625. name: "Normal",
  20626. height: math.unit(5 + 2 / 12, "feet"),
  20627. default: true
  20628. },
  20629. ]
  20630. ))
  20631. characterMakers.push(() => makeCharacter(
  20632. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20633. {
  20634. front: {
  20635. height: math.unit(6 + 3 / 12, "feet"),
  20636. weight: math.unit(519, "lb"),
  20637. name: "Front",
  20638. image: {
  20639. source: "./media/characters/dhari/front.svg",
  20640. extra: 1048 / 946,
  20641. bottom: 0.015
  20642. }
  20643. },
  20644. back: {
  20645. height: math.unit(6 + 3 / 12, "feet"),
  20646. weight: math.unit(519, "lb"),
  20647. name: "Back",
  20648. image: {
  20649. source: "./media/characters/dhari/back.svg",
  20650. extra: 1048 / 931,
  20651. bottom: 0.005
  20652. }
  20653. },
  20654. frontDressed: {
  20655. height: math.unit(6 + 3 / 12, "feet"),
  20656. weight: math.unit(519, "lb"),
  20657. name: "Front (Dressed)",
  20658. image: {
  20659. source: "./media/characters/dhari/front-dressed.svg",
  20660. extra: 1713 / 1546,
  20661. bottom: 0.02
  20662. }
  20663. },
  20664. backDressed: {
  20665. height: math.unit(6 + 3 / 12, "feet"),
  20666. weight: math.unit(519, "lb"),
  20667. name: "Back (Dressed)",
  20668. image: {
  20669. source: "./media/characters/dhari/back-dressed.svg",
  20670. extra: 1699 / 1537,
  20671. bottom: 0.01
  20672. }
  20673. },
  20674. maw: {
  20675. height: math.unit(0.95, "feet"),
  20676. name: "Maw",
  20677. image: {
  20678. source: "./media/characters/dhari/maw.svg"
  20679. }
  20680. },
  20681. wereFront: {
  20682. height: math.unit(12 + 8 / 12, "feet"),
  20683. weight: math.unit(4000, "lb"),
  20684. name: "Front (Were)",
  20685. image: {
  20686. source: "./media/characters/dhari/were-front.svg",
  20687. extra: 1065 / 969,
  20688. bottom: 0.015
  20689. }
  20690. },
  20691. wereBack: {
  20692. height: math.unit(12 + 8 / 12, "feet"),
  20693. weight: math.unit(4000, "lb"),
  20694. name: "Back (Were)",
  20695. image: {
  20696. source: "./media/characters/dhari/were-back.svg",
  20697. extra: 1065 / 969,
  20698. bottom: 0.012
  20699. }
  20700. },
  20701. wereMaw: {
  20702. height: math.unit(0.625, "meters"),
  20703. name: "Maw (Were)",
  20704. image: {
  20705. source: "./media/characters/dhari/were-maw.svg"
  20706. }
  20707. },
  20708. },
  20709. [
  20710. {
  20711. name: "Normal",
  20712. height: math.unit(6 + 3 / 12, "feet"),
  20713. default: true
  20714. },
  20715. ]
  20716. ))
  20717. characterMakers.push(() => makeCharacter(
  20718. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20719. {
  20720. anthro: {
  20721. height: math.unit(5 + 7 / 12, "feet"),
  20722. weight: math.unit(175, "lb"),
  20723. name: "Anthro",
  20724. image: {
  20725. source: "./media/characters/rena-dyne/anthro.svg",
  20726. extra: 1849 / 1785,
  20727. bottom: 0.005
  20728. }
  20729. },
  20730. taur: {
  20731. height: math.unit(15 + 6 / 12, "feet"),
  20732. weight: math.unit(8000, "lb"),
  20733. name: "Taur",
  20734. image: {
  20735. source: "./media/characters/rena-dyne/taur.svg",
  20736. extra: 2315 / 2234,
  20737. bottom: 0.033
  20738. }
  20739. },
  20740. },
  20741. [
  20742. {
  20743. name: "Normal",
  20744. height: math.unit(5 + 7 / 12, "feet"),
  20745. default: true
  20746. },
  20747. ]
  20748. ))
  20749. characterMakers.push(() => makeCharacter(
  20750. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20751. {
  20752. front: {
  20753. height: math.unit(8, "feet"),
  20754. weight: math.unit(600, "lb"),
  20755. name: "Front",
  20756. image: {
  20757. source: "./media/characters/weremeep/front.svg",
  20758. extra: 967 / 862,
  20759. bottom: 0.01
  20760. }
  20761. },
  20762. },
  20763. [
  20764. {
  20765. name: "Normal",
  20766. height: math.unit(8, "feet"),
  20767. default: true
  20768. },
  20769. {
  20770. name: "Lorg",
  20771. height: math.unit(12, "feet")
  20772. },
  20773. {
  20774. name: "Oh Lawd She Comin'",
  20775. height: math.unit(20, "feet")
  20776. },
  20777. ]
  20778. ))
  20779. characterMakers.push(() => makeCharacter(
  20780. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20781. {
  20782. front: {
  20783. height: math.unit(4, "feet"),
  20784. weight: math.unit(90, "lb"),
  20785. name: "Front",
  20786. image: {
  20787. source: "./media/characters/reza/front.svg",
  20788. extra: 1183 / 1111,
  20789. bottom: 0.017
  20790. }
  20791. },
  20792. back: {
  20793. height: math.unit(4, "feet"),
  20794. weight: math.unit(90, "lb"),
  20795. name: "Back",
  20796. image: {
  20797. source: "./media/characters/reza/back.svg",
  20798. extra: 1183 / 1111,
  20799. bottom: 0.01
  20800. }
  20801. },
  20802. drake: {
  20803. height: math.unit(30, "feet"),
  20804. weight: math.unit(246960, "lb"),
  20805. name: "Drake",
  20806. image: {
  20807. source: "./media/characters/reza/drake.svg",
  20808. extra: 2350 / 2024,
  20809. bottom: 60.7 / 2403
  20810. }
  20811. },
  20812. },
  20813. [
  20814. {
  20815. name: "Normal",
  20816. height: math.unit(4, "feet"),
  20817. default: true
  20818. },
  20819. ]
  20820. ))
  20821. characterMakers.push(() => makeCharacter(
  20822. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20823. {
  20824. side: {
  20825. height: math.unit(15, "feet"),
  20826. weight: math.unit(14, "tons"),
  20827. name: "Side",
  20828. image: {
  20829. source: "./media/characters/athea/side.svg",
  20830. extra: 960 / 540,
  20831. bottom: 0.003
  20832. }
  20833. },
  20834. sitting: {
  20835. height: math.unit(6 * 2.85, "feet"),
  20836. weight: math.unit(14, "tons"),
  20837. name: "Sitting",
  20838. image: {
  20839. source: "./media/characters/athea/sitting.svg",
  20840. extra: 621 / 581,
  20841. bottom: 0.075
  20842. }
  20843. },
  20844. maw: {
  20845. height: math.unit(7.59498031496063, "feet"),
  20846. name: "Maw",
  20847. image: {
  20848. source: "./media/characters/athea/maw.svg"
  20849. }
  20850. },
  20851. },
  20852. [
  20853. {
  20854. name: "Lap Cat",
  20855. height: math.unit(2.5, "feet")
  20856. },
  20857. {
  20858. name: "Minimacro",
  20859. height: math.unit(15, "feet"),
  20860. default: true
  20861. },
  20862. {
  20863. name: "Macro",
  20864. height: math.unit(120, "feet")
  20865. },
  20866. {
  20867. name: "Macro+",
  20868. height: math.unit(640, "feet")
  20869. },
  20870. {
  20871. name: "Colossus",
  20872. height: math.unit(2.2, "miles")
  20873. },
  20874. ]
  20875. ))
  20876. characterMakers.push(() => makeCharacter(
  20877. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20878. {
  20879. front: {
  20880. height: math.unit(8 + 8 / 12, "feet"),
  20881. weight: math.unit(130, "kg"),
  20882. name: "Front",
  20883. image: {
  20884. source: "./media/characters/seroko/front.svg",
  20885. extra: 1385 / 1280,
  20886. bottom: 0.025
  20887. }
  20888. },
  20889. back: {
  20890. height: math.unit(8 + 8 / 12, "feet"),
  20891. weight: math.unit(130, "kg"),
  20892. name: "Back",
  20893. image: {
  20894. source: "./media/characters/seroko/back.svg",
  20895. extra: 1369 / 1238,
  20896. bottom: 0.018
  20897. }
  20898. },
  20899. frontDressed: {
  20900. height: math.unit(8 + 8 / 12, "feet"),
  20901. weight: math.unit(130, "kg"),
  20902. name: "Front (Dressed)",
  20903. image: {
  20904. source: "./media/characters/seroko/front-dressed.svg",
  20905. extra: 1366 / 1275,
  20906. bottom: 0.03
  20907. }
  20908. },
  20909. },
  20910. [
  20911. {
  20912. name: "Normal",
  20913. height: math.unit(8 + 8 / 12, "feet"),
  20914. default: true
  20915. },
  20916. ]
  20917. ))
  20918. characterMakers.push(() => makeCharacter(
  20919. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20920. {
  20921. front: {
  20922. height: math.unit(5.5, "feet"),
  20923. weight: math.unit(160, "lb"),
  20924. name: "Front",
  20925. image: {
  20926. source: "./media/characters/quatzi/front.svg",
  20927. extra: 2346 / 2242,
  20928. bottom: 0.015
  20929. }
  20930. },
  20931. },
  20932. [
  20933. {
  20934. name: "Normal",
  20935. height: math.unit(5.5, "feet"),
  20936. default: true
  20937. },
  20938. {
  20939. name: "Big",
  20940. height: math.unit(7.7, "feet")
  20941. },
  20942. ]
  20943. ))
  20944. characterMakers.push(() => makeCharacter(
  20945. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20946. {
  20947. front: {
  20948. height: math.unit(5 + 11 / 12, "feet"),
  20949. weight: math.unit(180, "lb"),
  20950. name: "Front",
  20951. image: {
  20952. source: "./media/characters/sen/front.svg",
  20953. extra: 1321 / 1254,
  20954. bottom: 0.015
  20955. }
  20956. },
  20957. side: {
  20958. height: math.unit(5 + 11 / 12, "feet"),
  20959. weight: math.unit(180, "lb"),
  20960. name: "Side",
  20961. image: {
  20962. source: "./media/characters/sen/side.svg",
  20963. extra: 1321 / 1254,
  20964. bottom: 0.007
  20965. }
  20966. },
  20967. back: {
  20968. height: math.unit(5 + 11 / 12, "feet"),
  20969. weight: math.unit(180, "lb"),
  20970. name: "Back",
  20971. image: {
  20972. source: "./media/characters/sen/back.svg",
  20973. extra: 1321 / 1254
  20974. }
  20975. },
  20976. },
  20977. [
  20978. {
  20979. name: "Normal",
  20980. height: math.unit(5 + 11 / 12, "feet"),
  20981. default: true
  20982. },
  20983. ]
  20984. ))
  20985. characterMakers.push(() => makeCharacter(
  20986. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20987. {
  20988. front: {
  20989. height: math.unit(166.6, "cm"),
  20990. weight: math.unit(66.6, "kg"),
  20991. name: "Front",
  20992. image: {
  20993. source: "./media/characters/fruity/front.svg",
  20994. extra: 1510 / 1386,
  20995. bottom: 0.04
  20996. }
  20997. },
  20998. back: {
  20999. height: math.unit(166.6, "cm"),
  21000. weight: math.unit(66.6, "lb"),
  21001. name: "Back",
  21002. image: {
  21003. source: "./media/characters/fruity/back.svg",
  21004. extra: 1563 / 1435,
  21005. bottom: 0.005
  21006. }
  21007. },
  21008. },
  21009. [
  21010. {
  21011. name: "Normal",
  21012. height: math.unit(166.6, "cm"),
  21013. default: true
  21014. },
  21015. {
  21016. name: "Demonic",
  21017. height: math.unit(166.6, "feet")
  21018. },
  21019. ]
  21020. ))
  21021. characterMakers.push(() => makeCharacter(
  21022. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21023. {
  21024. side: {
  21025. height: math.unit(10, "feet"),
  21026. weight: math.unit(500, "lb"),
  21027. name: "Side",
  21028. image: {
  21029. source: "./media/characters/zost/side.svg",
  21030. extra: 966 / 880,
  21031. bottom: 0.075
  21032. }
  21033. },
  21034. mawFront: {
  21035. height: math.unit(1.08, "meters"),
  21036. name: "Maw (Front)",
  21037. image: {
  21038. source: "./media/characters/zost/maw-front.svg"
  21039. }
  21040. },
  21041. mawSide: {
  21042. height: math.unit(2.66, "feet"),
  21043. name: "Maw (Side)",
  21044. image: {
  21045. source: "./media/characters/zost/maw-side.svg"
  21046. }
  21047. },
  21048. },
  21049. [
  21050. {
  21051. name: "Normal",
  21052. height: math.unit(10, "feet"),
  21053. default: true
  21054. },
  21055. ]
  21056. ))
  21057. characterMakers.push(() => makeCharacter(
  21058. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21059. {
  21060. front: {
  21061. height: math.unit(5 + 4 / 12, "feet"),
  21062. weight: math.unit(120, "lb"),
  21063. name: "Front",
  21064. image: {
  21065. source: "./media/characters/luci/front.svg",
  21066. extra: 1985 / 1884,
  21067. bottom: 0.04
  21068. }
  21069. },
  21070. back: {
  21071. height: math.unit(5 + 4 / 12, "feet"),
  21072. weight: math.unit(120, "lb"),
  21073. name: "Back",
  21074. image: {
  21075. source: "./media/characters/luci/back.svg",
  21076. extra: 1892 / 1791,
  21077. bottom: 0.002
  21078. }
  21079. },
  21080. },
  21081. [
  21082. {
  21083. name: "Normal",
  21084. height: math.unit(5 + 4 / 12, "feet"),
  21085. default: true
  21086. },
  21087. ]
  21088. ))
  21089. characterMakers.push(() => makeCharacter(
  21090. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21091. {
  21092. front: {
  21093. height: math.unit(1500, "feet"),
  21094. weight: math.unit(3.8e6, "tons"),
  21095. name: "Front",
  21096. image: {
  21097. source: "./media/characters/2th/front.svg",
  21098. extra: 3489 / 3350,
  21099. bottom: 0.1
  21100. }
  21101. },
  21102. foot: {
  21103. height: math.unit(461, "feet"),
  21104. name: "Foot",
  21105. image: {
  21106. source: "./media/characters/2th/foot.svg"
  21107. }
  21108. },
  21109. },
  21110. [
  21111. {
  21112. name: "\"Micro\"",
  21113. height: math.unit(15 + 7 / 12, "feet")
  21114. },
  21115. {
  21116. name: "Normal",
  21117. height: math.unit(1500, "feet"),
  21118. default: true
  21119. },
  21120. {
  21121. name: "Macro",
  21122. height: math.unit(5000, "feet")
  21123. },
  21124. {
  21125. name: "Megamacro",
  21126. height: math.unit(15, "miles")
  21127. },
  21128. {
  21129. name: "Gigamacro",
  21130. height: math.unit(4000, "miles")
  21131. },
  21132. {
  21133. name: "Galactic",
  21134. height: math.unit(50, "AU")
  21135. },
  21136. ]
  21137. ))
  21138. characterMakers.push(() => makeCharacter(
  21139. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21140. {
  21141. front: {
  21142. height: math.unit(5 + 6 / 12, "feet"),
  21143. weight: math.unit(220, "lb"),
  21144. name: "Front",
  21145. image: {
  21146. source: "./media/characters/amethyst/front.svg",
  21147. extra: 2078 / 2040,
  21148. bottom: 0.045
  21149. }
  21150. },
  21151. back: {
  21152. height: math.unit(5 + 6 / 12, "feet"),
  21153. weight: math.unit(220, "lb"),
  21154. name: "Back",
  21155. image: {
  21156. source: "./media/characters/amethyst/back.svg",
  21157. extra: 2021 / 1989,
  21158. bottom: 0.02
  21159. }
  21160. },
  21161. },
  21162. [
  21163. {
  21164. name: "Normal",
  21165. height: math.unit(5 + 6 / 12, "feet"),
  21166. default: true
  21167. },
  21168. ]
  21169. ))
  21170. characterMakers.push(() => makeCharacter(
  21171. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21172. {
  21173. front: {
  21174. height: math.unit(4 + 11 / 12, "feet"),
  21175. weight: math.unit(120, "lb"),
  21176. name: "Front",
  21177. image: {
  21178. source: "./media/characters/yumi-akiyama/front.svg",
  21179. extra: 1327 / 1235,
  21180. bottom: 0.02
  21181. }
  21182. },
  21183. back: {
  21184. height: math.unit(4 + 11 / 12, "feet"),
  21185. weight: math.unit(120, "lb"),
  21186. name: "Back",
  21187. image: {
  21188. source: "./media/characters/yumi-akiyama/back.svg",
  21189. extra: 1287 / 1245,
  21190. bottom: 0.002
  21191. }
  21192. },
  21193. },
  21194. [
  21195. {
  21196. name: "Galactic",
  21197. height: math.unit(50, "galaxies"),
  21198. default: true
  21199. },
  21200. {
  21201. name: "Universal",
  21202. height: math.unit(100, "universes")
  21203. },
  21204. ]
  21205. ))
  21206. characterMakers.push(() => makeCharacter(
  21207. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21208. {
  21209. front: {
  21210. height: math.unit(8, "feet"),
  21211. weight: math.unit(500, "lb"),
  21212. name: "Front",
  21213. image: {
  21214. source: "./media/characters/rifter-yrmori/front.svg",
  21215. extra: 1180 / 1125,
  21216. bottom: 0.02
  21217. }
  21218. },
  21219. back: {
  21220. height: math.unit(8, "feet"),
  21221. weight: math.unit(500, "lb"),
  21222. name: "Back",
  21223. image: {
  21224. source: "./media/characters/rifter-yrmori/back.svg",
  21225. extra: 1190 / 1145,
  21226. bottom: 0.001
  21227. }
  21228. },
  21229. wings: {
  21230. height: math.unit(7.75, "feet"),
  21231. weight: math.unit(500, "lb"),
  21232. name: "Wings",
  21233. image: {
  21234. source: "./media/characters/rifter-yrmori/wings.svg",
  21235. extra: 1357 / 1285
  21236. }
  21237. },
  21238. maw: {
  21239. height: math.unit(0.8, "feet"),
  21240. name: "Maw",
  21241. image: {
  21242. source: "./media/characters/rifter-yrmori/maw.svg"
  21243. }
  21244. },
  21245. mawfront: {
  21246. height: math.unit(1.45, "feet"),
  21247. name: "Maw (Front)",
  21248. image: {
  21249. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21250. }
  21251. },
  21252. },
  21253. [
  21254. {
  21255. name: "Normal",
  21256. height: math.unit(8, "feet"),
  21257. default: true
  21258. },
  21259. {
  21260. name: "Macro",
  21261. height: math.unit(42, "meters")
  21262. },
  21263. ]
  21264. ))
  21265. characterMakers.push(() => makeCharacter(
  21266. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21267. {
  21268. were: {
  21269. height: math.unit(25 + 6 / 12, "feet"),
  21270. weight: math.unit(10000, "lb"),
  21271. name: "Were",
  21272. image: {
  21273. source: "./media/characters/tahajin/were.svg",
  21274. extra: 801 / 770,
  21275. bottom: 0.042
  21276. }
  21277. },
  21278. aquatic: {
  21279. height: math.unit(6 + 4 / 12, "feet"),
  21280. weight: math.unit(160, "lb"),
  21281. name: "Aquatic",
  21282. image: {
  21283. source: "./media/characters/tahajin/aquatic.svg",
  21284. extra: 572 / 542,
  21285. bottom: 0.04
  21286. }
  21287. },
  21288. chow: {
  21289. height: math.unit(8 + 11 / 12, "feet"),
  21290. weight: math.unit(450, "lb"),
  21291. name: "Chow",
  21292. image: {
  21293. source: "./media/characters/tahajin/chow.svg",
  21294. extra: 660 / 640,
  21295. bottom: 0.015
  21296. }
  21297. },
  21298. demiNaga: {
  21299. height: math.unit(6 + 8 / 12, "feet"),
  21300. weight: math.unit(300, "lb"),
  21301. name: "Demi Naga",
  21302. image: {
  21303. source: "./media/characters/tahajin/demi-naga.svg",
  21304. extra: 643 / 615,
  21305. bottom: 0.1
  21306. }
  21307. },
  21308. data: {
  21309. height: math.unit(5, "inches"),
  21310. weight: math.unit(0.1, "lb"),
  21311. name: "Data",
  21312. image: {
  21313. source: "./media/characters/tahajin/data.svg"
  21314. }
  21315. },
  21316. fluu: {
  21317. height: math.unit(5 + 7 / 12, "feet"),
  21318. weight: math.unit(140, "lb"),
  21319. name: "Fluu",
  21320. image: {
  21321. source: "./media/characters/tahajin/fluu.svg",
  21322. extra: 628 / 592,
  21323. bottom: 0.02
  21324. }
  21325. },
  21326. starWarrior: {
  21327. height: math.unit(4 + 5 / 12, "feet"),
  21328. weight: math.unit(50, "lb"),
  21329. name: "Star Warrior",
  21330. image: {
  21331. source: "./media/characters/tahajin/star-warrior.svg"
  21332. }
  21333. },
  21334. },
  21335. [
  21336. {
  21337. name: "Normal",
  21338. height: math.unit(25 + 6 / 12, "feet"),
  21339. default: true
  21340. },
  21341. ]
  21342. ))
  21343. characterMakers.push(() => makeCharacter(
  21344. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21345. {
  21346. front: {
  21347. height: math.unit(8, "feet"),
  21348. weight: math.unit(350, "lb"),
  21349. name: "Front",
  21350. image: {
  21351. source: "./media/characters/gabira/front.svg",
  21352. extra: 608 / 580,
  21353. bottom: 0.03
  21354. }
  21355. },
  21356. back: {
  21357. height: math.unit(8, "feet"),
  21358. weight: math.unit(350, "lb"),
  21359. name: "Back",
  21360. image: {
  21361. source: "./media/characters/gabira/back.svg",
  21362. extra: 608 / 580,
  21363. bottom: 0.03
  21364. }
  21365. },
  21366. },
  21367. [
  21368. {
  21369. name: "Normal",
  21370. height: math.unit(8, "feet"),
  21371. default: true
  21372. },
  21373. ]
  21374. ))
  21375. characterMakers.push(() => makeCharacter(
  21376. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21377. {
  21378. front: {
  21379. height: math.unit(5 + 3 / 12, "feet"),
  21380. weight: math.unit(137, "lb"),
  21381. name: "Front",
  21382. image: {
  21383. source: "./media/characters/sasha-katraine/front.svg",
  21384. bottom: 0.045
  21385. }
  21386. },
  21387. },
  21388. [
  21389. {
  21390. name: "Micro",
  21391. height: math.unit(5, "inches")
  21392. },
  21393. {
  21394. name: "Normal",
  21395. height: math.unit(5 + 3 / 12, "feet"),
  21396. default: true
  21397. },
  21398. ]
  21399. ))
  21400. characterMakers.push(() => makeCharacter(
  21401. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21402. {
  21403. side: {
  21404. height: math.unit(4, "inches"),
  21405. weight: math.unit(200, "grams"),
  21406. name: "Side",
  21407. image: {
  21408. source: "./media/characters/der/side.svg",
  21409. extra: 719 / 400,
  21410. bottom: 30.6 / 749.9187
  21411. }
  21412. },
  21413. },
  21414. [
  21415. {
  21416. name: "Micro",
  21417. height: math.unit(4, "inches"),
  21418. default: true
  21419. },
  21420. ]
  21421. ))
  21422. characterMakers.push(() => makeCharacter(
  21423. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21424. {
  21425. side: {
  21426. height: math.unit(30, "meters"),
  21427. weight: math.unit(700, "tonnes"),
  21428. name: "Side",
  21429. image: {
  21430. source: "./media/characters/fixerdragon/side.svg",
  21431. extra: (1293.0514 - 116.03) / 1106.86,
  21432. bottom: 116.03 / 1293.0514
  21433. }
  21434. },
  21435. },
  21436. [
  21437. {
  21438. name: "Planck",
  21439. height: math.unit(1.6e-35, "meters")
  21440. },
  21441. {
  21442. name: "Micro",
  21443. height: math.unit(0.4, "meters")
  21444. },
  21445. {
  21446. name: "Normal",
  21447. height: math.unit(30, "meters"),
  21448. default: true
  21449. },
  21450. {
  21451. name: "Megamacro",
  21452. height: math.unit(1.2, "megameters")
  21453. },
  21454. {
  21455. name: "Teramacro",
  21456. height: math.unit(130, "terameters")
  21457. },
  21458. {
  21459. name: "Yottamacro",
  21460. height: math.unit(6200, "yottameters")
  21461. },
  21462. ]
  21463. ));
  21464. characterMakers.push(() => makeCharacter(
  21465. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21466. {
  21467. front: {
  21468. height: math.unit(8, "feet"),
  21469. weight: math.unit(250, "lb"),
  21470. name: "Front",
  21471. image: {
  21472. source: "./media/characters/kite/front.svg",
  21473. extra: 2796 / 2659,
  21474. bottom: 0.002
  21475. }
  21476. },
  21477. },
  21478. [
  21479. {
  21480. name: "Normal",
  21481. height: math.unit(8, "feet"),
  21482. default: true
  21483. },
  21484. {
  21485. name: "Macro",
  21486. height: math.unit(360, "feet")
  21487. },
  21488. {
  21489. name: "Megamacro",
  21490. height: math.unit(1500, "feet")
  21491. },
  21492. ]
  21493. ))
  21494. characterMakers.push(() => makeCharacter(
  21495. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21496. {
  21497. front: {
  21498. height: math.unit(5 + 10 / 12, "feet"),
  21499. weight: math.unit(150, "lb"),
  21500. name: "Front",
  21501. image: {
  21502. source: "./media/characters/poojawa-vynar/front.svg",
  21503. extra: (1506.1547 - 55) / 1356.6,
  21504. bottom: 55 / 1506.1547
  21505. }
  21506. },
  21507. frontTailless: {
  21508. height: math.unit(5 + 10 / 12, "feet"),
  21509. weight: math.unit(150, "lb"),
  21510. name: "Front (Tailless)",
  21511. image: {
  21512. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21513. extra: (1506.1547 - 55) / 1356.6,
  21514. bottom: 55 / 1506.1547
  21515. }
  21516. },
  21517. },
  21518. [
  21519. {
  21520. name: "Normal",
  21521. height: math.unit(5 + 10 / 12, "feet"),
  21522. default: true
  21523. },
  21524. ]
  21525. ))
  21526. characterMakers.push(() => makeCharacter(
  21527. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21528. {
  21529. front: {
  21530. height: math.unit(293, "meters"),
  21531. weight: math.unit(70400, "tons"),
  21532. name: "Front",
  21533. image: {
  21534. source: "./media/characters/violette/front.svg",
  21535. extra: 1227 / 1180,
  21536. bottom: 0.005
  21537. }
  21538. },
  21539. back: {
  21540. height: math.unit(293, "meters"),
  21541. weight: math.unit(70400, "tons"),
  21542. name: "Back",
  21543. image: {
  21544. source: "./media/characters/violette/back.svg",
  21545. extra: 1227 / 1180,
  21546. bottom: 0.005
  21547. }
  21548. },
  21549. },
  21550. [
  21551. {
  21552. name: "Macro",
  21553. height: math.unit(293, "meters"),
  21554. default: true
  21555. },
  21556. ]
  21557. ))
  21558. characterMakers.push(() => makeCharacter(
  21559. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21560. {
  21561. front: {
  21562. height: math.unit(1050, "feet"),
  21563. weight: math.unit(200000, "tons"),
  21564. name: "Front",
  21565. image: {
  21566. source: "./media/characters/alessandra/front.svg",
  21567. extra: 960 / 912,
  21568. bottom: 0.06
  21569. }
  21570. },
  21571. },
  21572. [
  21573. {
  21574. name: "Macro",
  21575. height: math.unit(1050, "feet")
  21576. },
  21577. {
  21578. name: "Macro+",
  21579. height: math.unit(900, "meters"),
  21580. default: true
  21581. },
  21582. ]
  21583. ))
  21584. characterMakers.push(() => makeCharacter(
  21585. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21586. {
  21587. front: {
  21588. height: math.unit(5, "feet"),
  21589. weight: math.unit(187, "lb"),
  21590. name: "Front",
  21591. image: {
  21592. source: "./media/characters/person/front.svg",
  21593. extra: 3087 / 2945,
  21594. bottom: 91 / 3181
  21595. }
  21596. },
  21597. },
  21598. [
  21599. {
  21600. name: "Micro",
  21601. height: math.unit(3, "inches")
  21602. },
  21603. {
  21604. name: "Normal",
  21605. height: math.unit(5, "feet"),
  21606. default: true
  21607. },
  21608. {
  21609. name: "Macro",
  21610. height: math.unit(90, "feet")
  21611. },
  21612. {
  21613. name: "Max Size",
  21614. height: math.unit(280, "feet")
  21615. },
  21616. ]
  21617. ))
  21618. characterMakers.push(() => makeCharacter(
  21619. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21620. {
  21621. front: {
  21622. height: math.unit(4.5, "meters"),
  21623. weight: math.unit(3200, "lb"),
  21624. name: "Front",
  21625. image: {
  21626. source: "./media/characters/ty/front.svg",
  21627. extra: 1038 / 960,
  21628. bottom: 31.156 / 1068
  21629. }
  21630. },
  21631. back: {
  21632. height: math.unit(4.5, "meters"),
  21633. weight: math.unit(3200, "lb"),
  21634. name: "Back",
  21635. image: {
  21636. source: "./media/characters/ty/back.svg",
  21637. extra: 1044 / 966,
  21638. bottom: 7.48 / 1049
  21639. }
  21640. },
  21641. },
  21642. [
  21643. {
  21644. name: "Normal",
  21645. height: math.unit(4.5, "meters"),
  21646. default: true
  21647. },
  21648. ]
  21649. ))
  21650. characterMakers.push(() => makeCharacter(
  21651. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21652. {
  21653. front: {
  21654. height: math.unit(5 + 4 / 12, "feet"),
  21655. weight: math.unit(115, "lb"),
  21656. name: "Front",
  21657. image: {
  21658. source: "./media/characters/rocky/front.svg",
  21659. extra: 1012 / 975,
  21660. bottom: 54 / 1066
  21661. }
  21662. },
  21663. },
  21664. [
  21665. {
  21666. name: "Normal",
  21667. height: math.unit(5 + 4 / 12, "feet"),
  21668. default: true
  21669. },
  21670. ]
  21671. ))
  21672. characterMakers.push(() => makeCharacter(
  21673. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21674. {
  21675. upright: {
  21676. height: math.unit(6, "meters"),
  21677. weight: math.unit(4000, "kg"),
  21678. name: "Upright",
  21679. image: {
  21680. source: "./media/characters/ruin/upright.svg",
  21681. extra: 668 / 661,
  21682. bottom: 42 / 799.8396
  21683. }
  21684. },
  21685. },
  21686. [
  21687. {
  21688. name: "Normal",
  21689. height: math.unit(6, "meters"),
  21690. default: true
  21691. },
  21692. ]
  21693. ))
  21694. characterMakers.push(() => makeCharacter(
  21695. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21696. {
  21697. front: {
  21698. height: math.unit(5, "feet"),
  21699. weight: math.unit(106, "lb"),
  21700. name: "Front",
  21701. image: {
  21702. source: "./media/characters/robin/front.svg",
  21703. extra: 862 / 799,
  21704. bottom: 42.4 / 914.8856
  21705. }
  21706. },
  21707. },
  21708. [
  21709. {
  21710. name: "Normal",
  21711. height: math.unit(5, "feet"),
  21712. default: true
  21713. },
  21714. ]
  21715. ))
  21716. characterMakers.push(() => makeCharacter(
  21717. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21718. {
  21719. side: {
  21720. height: math.unit(3, "feet"),
  21721. weight: math.unit(225, "lb"),
  21722. name: "Side",
  21723. image: {
  21724. source: "./media/characters/saian/side.svg",
  21725. extra: 566 / 356,
  21726. bottom: 79.7 / 643
  21727. }
  21728. },
  21729. maw: {
  21730. height: math.unit(2.85, "feet"),
  21731. name: "Maw",
  21732. image: {
  21733. source: "./media/characters/saian/maw.svg"
  21734. }
  21735. },
  21736. },
  21737. [
  21738. {
  21739. name: "Normal",
  21740. height: math.unit(3, "feet"),
  21741. default: true
  21742. },
  21743. ]
  21744. ))
  21745. characterMakers.push(() => makeCharacter(
  21746. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21747. {
  21748. side: {
  21749. height: math.unit(8, "feet"),
  21750. weight: math.unit(300, "lb"),
  21751. name: "Side",
  21752. image: {
  21753. source: "./media/characters/equus-silvermane/side.svg",
  21754. extra: 2176 / 2050,
  21755. bottom: 65.7 / 2245
  21756. }
  21757. },
  21758. front: {
  21759. height: math.unit(8, "feet"),
  21760. weight: math.unit(300, "lb"),
  21761. name: "Front",
  21762. image: {
  21763. source: "./media/characters/equus-silvermane/front.svg",
  21764. extra: 4633 / 4400,
  21765. bottom: 71.3 / 4706.915
  21766. }
  21767. },
  21768. sideStepping: {
  21769. height: math.unit(8, "feet"),
  21770. weight: math.unit(300, "lb"),
  21771. name: "Side (Stepping)",
  21772. image: {
  21773. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21774. extra: 1968 / 1860,
  21775. bottom: 16.4 / 1989
  21776. }
  21777. },
  21778. },
  21779. [
  21780. {
  21781. name: "Normal",
  21782. height: math.unit(8, "feet")
  21783. },
  21784. {
  21785. name: "Minimacro",
  21786. height: math.unit(75, "feet"),
  21787. default: true
  21788. },
  21789. {
  21790. name: "Macro",
  21791. height: math.unit(150, "feet")
  21792. },
  21793. {
  21794. name: "Macro+",
  21795. height: math.unit(1000, "feet")
  21796. },
  21797. {
  21798. name: "Megamacro",
  21799. height: math.unit(1, "mile")
  21800. },
  21801. ]
  21802. ))
  21803. characterMakers.push(() => makeCharacter(
  21804. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21805. {
  21806. side: {
  21807. height: math.unit(20, "feet"),
  21808. weight: math.unit(30000, "kg"),
  21809. name: "Side",
  21810. image: {
  21811. source: "./media/characters/windar/side.svg",
  21812. extra: 1491 / 1248,
  21813. bottom: 82.56 / 1568
  21814. }
  21815. },
  21816. },
  21817. [
  21818. {
  21819. name: "Normal",
  21820. height: math.unit(20, "feet"),
  21821. default: true
  21822. },
  21823. ]
  21824. ))
  21825. characterMakers.push(() => makeCharacter(
  21826. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21827. {
  21828. side: {
  21829. height: math.unit(15.66, "feet"),
  21830. weight: math.unit(150, "lb"),
  21831. name: "Side",
  21832. image: {
  21833. source: "./media/characters/melody/side.svg",
  21834. extra: 1097 / 944,
  21835. bottom: 11.8 / 1109
  21836. }
  21837. },
  21838. sideOutfit: {
  21839. height: math.unit(15.66, "feet"),
  21840. weight: math.unit(150, "lb"),
  21841. name: "Side (Outfit)",
  21842. image: {
  21843. source: "./media/characters/melody/side-outfit.svg",
  21844. extra: 1097 / 944,
  21845. bottom: 11.8 / 1109
  21846. }
  21847. },
  21848. },
  21849. [
  21850. {
  21851. name: "Normal",
  21852. height: math.unit(15.66, "feet"),
  21853. default: true
  21854. },
  21855. ]
  21856. ))
  21857. characterMakers.push(() => makeCharacter(
  21858. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21859. {
  21860. front: {
  21861. height: math.unit(8, "feet"),
  21862. weight: math.unit(325, "lb"),
  21863. name: "Front",
  21864. image: {
  21865. source: "./media/characters/windera/front.svg",
  21866. extra: 3180 / 2845,
  21867. bottom: 178 / 3365
  21868. }
  21869. },
  21870. },
  21871. [
  21872. {
  21873. name: "Normal",
  21874. height: math.unit(8, "feet"),
  21875. default: true
  21876. },
  21877. ]
  21878. ))
  21879. characterMakers.push(() => makeCharacter(
  21880. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21881. {
  21882. front: {
  21883. height: math.unit(28.75, "feet"),
  21884. weight: math.unit(2000, "kg"),
  21885. name: "Front",
  21886. image: {
  21887. source: "./media/characters/sonear/front.svg",
  21888. extra: 1041.1 / 964.9,
  21889. bottom: 53.7 / 1096.6
  21890. }
  21891. },
  21892. },
  21893. [
  21894. {
  21895. name: "Normal",
  21896. height: math.unit(28.75, "feet"),
  21897. default: true
  21898. },
  21899. ]
  21900. ))
  21901. characterMakers.push(() => makeCharacter(
  21902. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21903. {
  21904. side: {
  21905. height: math.unit(25.5, "feet"),
  21906. weight: math.unit(23000, "kg"),
  21907. name: "Side",
  21908. image: {
  21909. source: "./media/characters/kanara/side.svg"
  21910. }
  21911. },
  21912. },
  21913. [
  21914. {
  21915. name: "Normal",
  21916. height: math.unit(25.5, "feet"),
  21917. default: true
  21918. },
  21919. ]
  21920. ))
  21921. characterMakers.push(() => makeCharacter(
  21922. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21923. {
  21924. side: {
  21925. height: math.unit(10, "feet"),
  21926. weight: math.unit(1000, "kg"),
  21927. name: "Side",
  21928. image: {
  21929. source: "./media/characters/ereus/side.svg",
  21930. extra: 1157 / 959,
  21931. bottom: 153 / 1312.5
  21932. }
  21933. },
  21934. },
  21935. [
  21936. {
  21937. name: "Normal",
  21938. height: math.unit(10, "feet"),
  21939. default: true
  21940. },
  21941. ]
  21942. ))
  21943. characterMakers.push(() => makeCharacter(
  21944. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21945. {
  21946. side: {
  21947. height: math.unit(4.5, "feet"),
  21948. weight: math.unit(500, "lb"),
  21949. name: "Side",
  21950. image: {
  21951. source: "./media/characters/e-ter/side.svg",
  21952. extra: 1550 / 1248,
  21953. bottom: 146 / 1694
  21954. }
  21955. },
  21956. },
  21957. [
  21958. {
  21959. name: "Normal",
  21960. height: math.unit(4.5, "feet"),
  21961. default: true
  21962. },
  21963. ]
  21964. ))
  21965. characterMakers.push(() => makeCharacter(
  21966. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21967. {
  21968. side: {
  21969. height: math.unit(9.7, "feet"),
  21970. weight: math.unit(4000, "kg"),
  21971. name: "Side",
  21972. image: {
  21973. source: "./media/characters/yamie/side.svg"
  21974. }
  21975. },
  21976. },
  21977. [
  21978. {
  21979. name: "Normal",
  21980. height: math.unit(9.7, "feet"),
  21981. default: true
  21982. },
  21983. ]
  21984. ))
  21985. characterMakers.push(() => makeCharacter(
  21986. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21987. {
  21988. front: {
  21989. height: math.unit(50, "feet"),
  21990. weight: math.unit(50000, "kg"),
  21991. name: "Front",
  21992. image: {
  21993. source: "./media/characters/anders/front.svg",
  21994. extra: 570 / 539,
  21995. bottom: 14.7 / 586.7
  21996. }
  21997. },
  21998. },
  21999. [
  22000. {
  22001. name: "Large",
  22002. height: math.unit(50, "feet")
  22003. },
  22004. {
  22005. name: "Macro",
  22006. height: math.unit(2000, "feet"),
  22007. default: true
  22008. },
  22009. {
  22010. name: "Megamacro",
  22011. height: math.unit(12, "miles")
  22012. },
  22013. ]
  22014. ))
  22015. characterMakers.push(() => makeCharacter(
  22016. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22017. {
  22018. front: {
  22019. height: math.unit(7 + 2 / 12, "feet"),
  22020. weight: math.unit(300, "lb"),
  22021. name: "Front",
  22022. image: {
  22023. source: "./media/characters/reban/front.svg",
  22024. extra: 516 / 487,
  22025. bottom: 42.82 / 558.356
  22026. }
  22027. },
  22028. dick: {
  22029. height: math.unit(7 / 5, "feet"),
  22030. name: "Dick",
  22031. image: {
  22032. source: "./media/characters/reban/dick.svg"
  22033. }
  22034. },
  22035. },
  22036. [
  22037. {
  22038. name: "Natural Height",
  22039. height: math.unit(7 + 2 / 12, "feet")
  22040. },
  22041. {
  22042. name: "Macro",
  22043. height: math.unit(500, "feet"),
  22044. default: true
  22045. },
  22046. {
  22047. name: "Canon Height",
  22048. height: math.unit(50, "AU")
  22049. },
  22050. ]
  22051. ))
  22052. characterMakers.push(() => makeCharacter(
  22053. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22054. {
  22055. front: {
  22056. height: math.unit(6, "feet"),
  22057. weight: math.unit(150, "lb"),
  22058. name: "Front",
  22059. image: {
  22060. source: "./media/characters/terrance-keayes/front.svg",
  22061. extra: 1.005,
  22062. bottom: 151 / 1615
  22063. }
  22064. },
  22065. side: {
  22066. height: math.unit(6, "feet"),
  22067. weight: math.unit(150, "lb"),
  22068. name: "Side",
  22069. image: {
  22070. source: "./media/characters/terrance-keayes/side.svg",
  22071. extra: 1.005,
  22072. bottom: 129.4 / 1544
  22073. }
  22074. },
  22075. back: {
  22076. height: math.unit(6, "feet"),
  22077. weight: math.unit(150, "lb"),
  22078. name: "Back",
  22079. image: {
  22080. source: "./media/characters/terrance-keayes/back.svg",
  22081. extra: 1.005,
  22082. bottom: 58.4 / 1557.3
  22083. }
  22084. },
  22085. dick: {
  22086. height: math.unit(6 * 0.208, "feet"),
  22087. name: "Dick",
  22088. image: {
  22089. source: "./media/characters/terrance-keayes/dick.svg"
  22090. }
  22091. },
  22092. },
  22093. [
  22094. {
  22095. name: "Canon Height",
  22096. height: math.unit(35, "miles"),
  22097. default: true
  22098. },
  22099. ]
  22100. ))
  22101. characterMakers.push(() => makeCharacter(
  22102. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22103. {
  22104. front: {
  22105. height: math.unit(6, "feet"),
  22106. weight: math.unit(150, "lb"),
  22107. name: "Front",
  22108. image: {
  22109. source: "./media/characters/ofelia/front.svg",
  22110. extra: 546 / 541,
  22111. bottom: 39 / 583
  22112. }
  22113. },
  22114. back: {
  22115. height: math.unit(6, "feet"),
  22116. weight: math.unit(150, "lb"),
  22117. name: "Back",
  22118. image: {
  22119. source: "./media/characters/ofelia/back.svg",
  22120. extra: 564 / 559.5,
  22121. bottom: 8.69 / 573.02
  22122. }
  22123. },
  22124. maw: {
  22125. height: math.unit(1, "feet"),
  22126. name: "Maw",
  22127. image: {
  22128. source: "./media/characters/ofelia/maw.svg"
  22129. }
  22130. },
  22131. foot: {
  22132. height: math.unit(1.949, "feet"),
  22133. name: "Foot",
  22134. image: {
  22135. source: "./media/characters/ofelia/foot.svg"
  22136. }
  22137. },
  22138. },
  22139. [
  22140. {
  22141. name: "Canon Height",
  22142. height: math.unit(2000, "miles"),
  22143. default: true
  22144. },
  22145. ]
  22146. ))
  22147. characterMakers.push(() => makeCharacter(
  22148. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22149. {
  22150. front: {
  22151. height: math.unit(6, "feet"),
  22152. weight: math.unit(150, "lb"),
  22153. name: "Front",
  22154. image: {
  22155. source: "./media/characters/samuel/front.svg",
  22156. extra: 265 / 258,
  22157. bottom: 2 / 266.1566
  22158. }
  22159. },
  22160. },
  22161. [
  22162. {
  22163. name: "Macro",
  22164. height: math.unit(100, "feet"),
  22165. default: true
  22166. },
  22167. {
  22168. name: "Full Size",
  22169. height: math.unit(1000, "miles")
  22170. },
  22171. ]
  22172. ))
  22173. characterMakers.push(() => makeCharacter(
  22174. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22175. {
  22176. front: {
  22177. height: math.unit(6, "feet"),
  22178. weight: math.unit(300, "lb"),
  22179. name: "Front",
  22180. image: {
  22181. source: "./media/characters/beishir-kiel/front.svg",
  22182. extra: 569 / 547,
  22183. bottom: 41.9 / 609
  22184. }
  22185. },
  22186. maw: {
  22187. height: math.unit(6 * 0.202, "feet"),
  22188. name: "Maw",
  22189. image: {
  22190. source: "./media/characters/beishir-kiel/maw.svg"
  22191. }
  22192. },
  22193. },
  22194. [
  22195. {
  22196. name: "Macro",
  22197. height: math.unit(300, "feet"),
  22198. default: true
  22199. },
  22200. ]
  22201. ))
  22202. characterMakers.push(() => makeCharacter(
  22203. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22204. {
  22205. front: {
  22206. height: math.unit(5 + 7/12, "feet"),
  22207. weight: math.unit(120, "lb"),
  22208. name: "Front",
  22209. image: {
  22210. source: "./media/characters/logan-grey/front.svg",
  22211. extra: 1836/1738,
  22212. bottom: 108/1944
  22213. }
  22214. },
  22215. back: {
  22216. height: math.unit(5 + 7/12, "feet"),
  22217. weight: math.unit(120, "lb"),
  22218. name: "Back",
  22219. image: {
  22220. source: "./media/characters/logan-grey/back.svg",
  22221. extra: 1880/1794,
  22222. bottom: 24/1904
  22223. }
  22224. },
  22225. frontSfw: {
  22226. height: math.unit(5 + 7/12, "feet"),
  22227. weight: math.unit(120, "lb"),
  22228. name: "Front (SFW)",
  22229. image: {
  22230. source: "./media/characters/logan-grey/front-sfw.svg",
  22231. extra: 1836/1738,
  22232. bottom: 108/1944
  22233. }
  22234. },
  22235. backSfw: {
  22236. height: math.unit(5 + 7/12, "feet"),
  22237. weight: math.unit(120, "lb"),
  22238. name: "Back (SFW)",
  22239. image: {
  22240. source: "./media/characters/logan-grey/back-sfw.svg",
  22241. extra: 1880/1794,
  22242. bottom: 24/1904
  22243. }
  22244. },
  22245. hands: {
  22246. height: math.unit(0.84, "feet"),
  22247. name: "Hands",
  22248. image: {
  22249. source: "./media/characters/logan-grey/hands.svg"
  22250. }
  22251. },
  22252. paws: {
  22253. height: math.unit(0.72, "feet"),
  22254. name: "Paws",
  22255. image: {
  22256. source: "./media/characters/logan-grey/paws.svg"
  22257. }
  22258. },
  22259. cock: {
  22260. height: math.unit(1.45, "feet"),
  22261. name: "Cock",
  22262. image: {
  22263. source: "./media/characters/logan-grey/cock.svg"
  22264. }
  22265. },
  22266. cockAlt: {
  22267. height: math.unit(1.437, "feet"),
  22268. name: "Cock (alt)",
  22269. image: {
  22270. source: "./media/characters/logan-grey/cock-alt.svg"
  22271. }
  22272. },
  22273. },
  22274. [
  22275. {
  22276. name: "Normal",
  22277. height: math.unit(5 + 8 / 12, "feet")
  22278. },
  22279. {
  22280. name: "The 500 Foot Femboy",
  22281. height: math.unit(500, "feet"),
  22282. default: true
  22283. },
  22284. {
  22285. name: "Megmacro",
  22286. height: math.unit(20, "miles")
  22287. },
  22288. ]
  22289. ))
  22290. characterMakers.push(() => makeCharacter(
  22291. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22292. {
  22293. front: {
  22294. height: math.unit(8 + 2 / 12, "feet"),
  22295. weight: math.unit(275, "lb"),
  22296. name: "Front",
  22297. image: {
  22298. source: "./media/characters/draganta/front.svg",
  22299. extra: 1177 / 1135,
  22300. bottom: 33.46 / 1212.1
  22301. }
  22302. },
  22303. },
  22304. [
  22305. {
  22306. name: "Normal",
  22307. height: math.unit(8 + 6 / 12, "feet"),
  22308. default: true
  22309. },
  22310. {
  22311. name: "Macro",
  22312. height: math.unit(150, "feet")
  22313. },
  22314. {
  22315. name: "Megamacro",
  22316. height: math.unit(1000, "miles")
  22317. },
  22318. ]
  22319. ))
  22320. characterMakers.push(() => makeCharacter(
  22321. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22322. {
  22323. front: {
  22324. height: math.unit(1.72, "m"),
  22325. weight: math.unit(80, "lb"),
  22326. name: "Front",
  22327. image: {
  22328. source: "./media/characters/voski/front.svg",
  22329. extra: 2076.22 / 2022.4,
  22330. bottom: 102.7 / 2177.3866
  22331. }
  22332. },
  22333. frontNsfw: {
  22334. height: math.unit(1.72, "m"),
  22335. weight: math.unit(80, "lb"),
  22336. name: "Front (NSFW)",
  22337. image: {
  22338. source: "./media/characters/voski/front-nsfw.svg",
  22339. extra: 2076.22 / 2022.4,
  22340. bottom: 102.7 / 2177.3866
  22341. }
  22342. },
  22343. back: {
  22344. height: math.unit(1.72, "m"),
  22345. weight: math.unit(80, "lb"),
  22346. name: "Back",
  22347. image: {
  22348. source: "./media/characters/voski/back.svg",
  22349. extra: 2104 / 2051,
  22350. bottom: 10.45 / 2113.63
  22351. }
  22352. },
  22353. },
  22354. [
  22355. {
  22356. name: "Normal",
  22357. height: math.unit(1.72, "m")
  22358. },
  22359. {
  22360. name: "Macro",
  22361. height: math.unit(55, "m"),
  22362. default: true
  22363. },
  22364. {
  22365. name: "Macro+",
  22366. height: math.unit(300, "m")
  22367. },
  22368. {
  22369. name: "Macro++",
  22370. height: math.unit(700, "m")
  22371. },
  22372. {
  22373. name: "Macro+++",
  22374. height: math.unit(4500, "m")
  22375. },
  22376. {
  22377. name: "Macro++++",
  22378. height: math.unit(45, "km")
  22379. },
  22380. {
  22381. name: "Macro+++++",
  22382. height: math.unit(1220, "km")
  22383. },
  22384. ]
  22385. ))
  22386. characterMakers.push(() => makeCharacter(
  22387. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22388. {
  22389. front: {
  22390. height: math.unit(2.3, "m"),
  22391. weight: math.unit(304, "kg"),
  22392. name: "Front",
  22393. image: {
  22394. source: "./media/characters/icowom-lee/front.svg",
  22395. extra: 985 / 955,
  22396. bottom: 25.4 / 1012
  22397. }
  22398. },
  22399. fronttentacles: {
  22400. height: math.unit(2.3, "m"),
  22401. weight: math.unit(304, "kg"),
  22402. name: "Front-tentacles",
  22403. image: {
  22404. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22405. extra: 985 / 955,
  22406. bottom: 25.4 / 1012
  22407. }
  22408. },
  22409. back: {
  22410. height: math.unit(2.3, "m"),
  22411. weight: math.unit(304, "kg"),
  22412. name: "Back",
  22413. image: {
  22414. source: "./media/characters/icowom-lee/back.svg",
  22415. extra: 975 / 954,
  22416. bottom: 9.5 / 985
  22417. }
  22418. },
  22419. backtentacles: {
  22420. height: math.unit(2.3, "m"),
  22421. weight: math.unit(304, "kg"),
  22422. name: "Back-tentacles",
  22423. image: {
  22424. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22425. extra: 975 / 954,
  22426. bottom: 9.5 / 985
  22427. }
  22428. },
  22429. frontDressed: {
  22430. height: math.unit(2.3, "m"),
  22431. weight: math.unit(304, "kg"),
  22432. name: "Front (Dressed)",
  22433. image: {
  22434. source: "./media/characters/icowom-lee/front-dressed.svg",
  22435. extra: 3076 / 2933,
  22436. bottom: 51.4 / 3125.1889
  22437. }
  22438. },
  22439. rump: {
  22440. height: math.unit(0.776, "meters"),
  22441. name: "Rump",
  22442. image: {
  22443. source: "./media/characters/icowom-lee/rump.svg"
  22444. }
  22445. },
  22446. genitals: {
  22447. height: math.unit(0.78, "meters"),
  22448. name: "Genitals",
  22449. image: {
  22450. source: "./media/characters/icowom-lee/genitals.svg"
  22451. }
  22452. },
  22453. },
  22454. [
  22455. {
  22456. name: "Normal",
  22457. height: math.unit(2.3, "meters"),
  22458. default: true
  22459. },
  22460. {
  22461. name: "Macro",
  22462. height: math.unit(94, "meters"),
  22463. default: true
  22464. },
  22465. ]
  22466. ))
  22467. characterMakers.push(() => makeCharacter(
  22468. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22469. {
  22470. front: {
  22471. height: math.unit(22, "meters"),
  22472. weight: math.unit(21000, "kg"),
  22473. name: "Front",
  22474. image: {
  22475. source: "./media/characters/shock-diamond/front.svg",
  22476. extra: 2204 / 2053,
  22477. bottom: 65 / 2239.47
  22478. }
  22479. },
  22480. frontNude: {
  22481. height: math.unit(22, "meters"),
  22482. weight: math.unit(21000, "kg"),
  22483. name: "Front (Nude)",
  22484. image: {
  22485. source: "./media/characters/shock-diamond/front-nude.svg",
  22486. extra: 2514 / 2285,
  22487. bottom: 13 / 2527.56
  22488. }
  22489. },
  22490. },
  22491. [
  22492. {
  22493. name: "Normal",
  22494. height: math.unit(3, "meters")
  22495. },
  22496. {
  22497. name: "Macro",
  22498. height: math.unit(22, "meters"),
  22499. default: true
  22500. },
  22501. ]
  22502. ))
  22503. characterMakers.push(() => makeCharacter(
  22504. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22505. {
  22506. front: {
  22507. height: math.unit(5 + 4 / 12, "feet"),
  22508. weight: math.unit(120, "lb"),
  22509. name: "Front",
  22510. image: {
  22511. source: "./media/characters/rory/front.svg",
  22512. extra: 1318/1241,
  22513. bottom: 42/1360
  22514. }
  22515. },
  22516. back: {
  22517. height: math.unit(5 + 4 / 12, "feet"),
  22518. weight: math.unit(120, "lb"),
  22519. name: "Back",
  22520. image: {
  22521. source: "./media/characters/rory/back.svg",
  22522. extra: 1318/1241,
  22523. bottom: 42/1360
  22524. }
  22525. },
  22526. butt: {
  22527. height: math.unit(1.74, "feet"),
  22528. name: "Butt",
  22529. image: {
  22530. source: "./media/characters/rory/butt.svg"
  22531. }
  22532. },
  22533. dick: {
  22534. height: math.unit(1.02, "feet"),
  22535. name: "Dick",
  22536. image: {
  22537. source: "./media/characters/rory/dick.svg"
  22538. }
  22539. },
  22540. paws: {
  22541. height: math.unit(1, "feet"),
  22542. name: "Paws",
  22543. image: {
  22544. source: "./media/characters/rory/paws.svg"
  22545. }
  22546. },
  22547. frontAlt: {
  22548. height: math.unit(5 + 4 / 12, "feet"),
  22549. weight: math.unit(120, "lb"),
  22550. name: "Front (Alt)",
  22551. image: {
  22552. source: "./media/characters/rory/front-alt.svg",
  22553. extra: 589 / 556,
  22554. bottom: 45.7 / 635.76
  22555. }
  22556. },
  22557. frontAltNude: {
  22558. height: math.unit(5 + 4 / 12, "feet"),
  22559. weight: math.unit(120, "lb"),
  22560. name: "Front (Alt, Nude)",
  22561. image: {
  22562. source: "./media/characters/rory/front-alt-nude.svg",
  22563. extra: 589 / 556,
  22564. bottom: 45.7 / 635.76
  22565. }
  22566. },
  22567. side: {
  22568. height: math.unit(5 + 4 / 12, "feet"),
  22569. weight: math.unit(120, "lb"),
  22570. name: "Side",
  22571. image: {
  22572. source: "./media/characters/rory/side.svg",
  22573. extra: 597 / 564,
  22574. bottom: 55 / 653
  22575. }
  22576. },
  22577. backAlt: {
  22578. height: math.unit(5 + 4 / 12, "feet"),
  22579. weight: math.unit(120, "lb"),
  22580. name: "Back (Alt)",
  22581. image: {
  22582. source: "./media/characters/rory/back-alt.svg",
  22583. extra: 620 / 585,
  22584. bottom: 8.86 / 630.43
  22585. }
  22586. },
  22587. dickAlt: {
  22588. height: math.unit(0.86, "feet"),
  22589. name: "Dick (Alt)",
  22590. image: {
  22591. source: "./media/characters/rory/dick-alt.svg"
  22592. }
  22593. },
  22594. },
  22595. [
  22596. {
  22597. name: "Normal",
  22598. height: math.unit(5 + 4 / 12, "feet"),
  22599. default: true
  22600. },
  22601. {
  22602. name: "Macro",
  22603. height: math.unit(100, "feet")
  22604. },
  22605. {
  22606. name: "Macro+",
  22607. height: math.unit(140, "feet")
  22608. },
  22609. {
  22610. name: "Macro++",
  22611. height: math.unit(300, "feet")
  22612. },
  22613. ]
  22614. ))
  22615. characterMakers.push(() => makeCharacter(
  22616. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22617. {
  22618. front: {
  22619. height: math.unit(5 + 9 / 12, "feet"),
  22620. weight: math.unit(190, "lb"),
  22621. name: "Front",
  22622. image: {
  22623. source: "./media/characters/sprisk/front.svg",
  22624. extra: 1225 / 1180,
  22625. bottom: 42.7 / 1266.4
  22626. }
  22627. },
  22628. frontNsfw: {
  22629. height: math.unit(5 + 9 / 12, "feet"),
  22630. weight: math.unit(190, "lb"),
  22631. name: "Front (NSFW)",
  22632. image: {
  22633. source: "./media/characters/sprisk/front-nsfw.svg",
  22634. extra: 1225 / 1180,
  22635. bottom: 42.7 / 1266.4
  22636. }
  22637. },
  22638. back: {
  22639. height: math.unit(5 + 9 / 12, "feet"),
  22640. weight: math.unit(190, "lb"),
  22641. name: "Back",
  22642. image: {
  22643. source: "./media/characters/sprisk/back.svg",
  22644. extra: 1247 / 1200,
  22645. bottom: 5.6 / 1253.04
  22646. }
  22647. },
  22648. },
  22649. [
  22650. {
  22651. name: "Tiny",
  22652. height: math.unit(2, "inches")
  22653. },
  22654. {
  22655. name: "Normal",
  22656. height: math.unit(5 + 9 / 12, "feet"),
  22657. default: true
  22658. },
  22659. {
  22660. name: "Mini Macro",
  22661. height: math.unit(18, "feet")
  22662. },
  22663. {
  22664. name: "Macro",
  22665. height: math.unit(100, "feet")
  22666. },
  22667. {
  22668. name: "MACRO",
  22669. height: math.unit(50, "miles")
  22670. },
  22671. {
  22672. name: "M A C R O",
  22673. height: math.unit(300, "miles")
  22674. },
  22675. ]
  22676. ))
  22677. characterMakers.push(() => makeCharacter(
  22678. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22679. {
  22680. side: {
  22681. height: math.unit(15.6, "meters"),
  22682. weight: math.unit(700000, "kg"),
  22683. name: "Side",
  22684. image: {
  22685. source: "./media/characters/bunsen/side.svg",
  22686. extra: 1644 / 358
  22687. }
  22688. },
  22689. foot: {
  22690. height: math.unit(1.611 * 1644 / 358, "meter"),
  22691. name: "Foot",
  22692. image: {
  22693. source: "./media/characters/bunsen/foot.svg"
  22694. }
  22695. },
  22696. },
  22697. [
  22698. {
  22699. name: "Small",
  22700. height: math.unit(10, "feet")
  22701. },
  22702. {
  22703. name: "Normal",
  22704. height: math.unit(15.6, "meters"),
  22705. default: true
  22706. },
  22707. ]
  22708. ))
  22709. characterMakers.push(() => makeCharacter(
  22710. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22711. {
  22712. front: {
  22713. height: math.unit(4 + 11 / 12, "feet"),
  22714. weight: math.unit(140, "lb"),
  22715. name: "Front",
  22716. image: {
  22717. source: "./media/characters/sesh/front.svg",
  22718. extra: 3420 / 3231,
  22719. bottom: 72 / 3949.5
  22720. }
  22721. },
  22722. },
  22723. [
  22724. {
  22725. name: "Normal",
  22726. height: math.unit(4 + 11 / 12, "feet")
  22727. },
  22728. {
  22729. name: "Grown",
  22730. height: math.unit(15, "feet"),
  22731. default: true
  22732. },
  22733. {
  22734. name: "Macro",
  22735. height: math.unit(1500, "feet")
  22736. },
  22737. {
  22738. name: "Megamacro",
  22739. height: math.unit(30, "miles")
  22740. },
  22741. {
  22742. name: "Continental",
  22743. height: math.unit(3000, "miles")
  22744. },
  22745. {
  22746. name: "Gravity Mass",
  22747. height: math.unit(300000, "miles")
  22748. },
  22749. {
  22750. name: "Planet Buster",
  22751. height: math.unit(30000000, "miles")
  22752. },
  22753. {
  22754. name: "Big",
  22755. height: math.unit(3000000000, "miles")
  22756. },
  22757. ]
  22758. ))
  22759. characterMakers.push(() => makeCharacter(
  22760. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22761. {
  22762. front: {
  22763. height: math.unit(9, "feet"),
  22764. weight: math.unit(350, "lb"),
  22765. name: "Front",
  22766. image: {
  22767. source: "./media/characters/pepper/front.svg",
  22768. extra: 1448 / 1312,
  22769. bottom: 9.4 / 1457.88
  22770. }
  22771. },
  22772. back: {
  22773. height: math.unit(9, "feet"),
  22774. weight: math.unit(350, "lb"),
  22775. name: "Back",
  22776. image: {
  22777. source: "./media/characters/pepper/back.svg",
  22778. extra: 1423 / 1300,
  22779. bottom: 4.6 / 1429
  22780. }
  22781. },
  22782. maw: {
  22783. height: math.unit(0.932, "feet"),
  22784. name: "Maw",
  22785. image: {
  22786. source: "./media/characters/pepper/maw.svg"
  22787. }
  22788. },
  22789. },
  22790. [
  22791. {
  22792. name: "Normal",
  22793. height: math.unit(9, "feet"),
  22794. default: true
  22795. },
  22796. ]
  22797. ))
  22798. characterMakers.push(() => makeCharacter(
  22799. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22800. {
  22801. front: {
  22802. height: math.unit(6, "feet"),
  22803. weight: math.unit(150, "lb"),
  22804. name: "Front",
  22805. image: {
  22806. source: "./media/characters/maelstrom/front.svg",
  22807. extra: 2100 / 1883,
  22808. bottom: 94 / 2196.7
  22809. }
  22810. },
  22811. },
  22812. [
  22813. {
  22814. name: "Less Kaiju",
  22815. height: math.unit(200, "feet")
  22816. },
  22817. {
  22818. name: "Kaiju",
  22819. height: math.unit(400, "feet"),
  22820. default: true
  22821. },
  22822. {
  22823. name: "Kaiju-er",
  22824. height: math.unit(600, "feet")
  22825. },
  22826. ]
  22827. ))
  22828. characterMakers.push(() => makeCharacter(
  22829. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22830. {
  22831. front: {
  22832. height: math.unit(6 + 5 / 12, "feet"),
  22833. weight: math.unit(180, "lb"),
  22834. name: "Front",
  22835. image: {
  22836. source: "./media/characters/lexir/front.svg",
  22837. extra: 180 / 172,
  22838. bottom: 12 / 192
  22839. }
  22840. },
  22841. back: {
  22842. height: math.unit(6 + 5 / 12, "feet"),
  22843. weight: math.unit(180, "lb"),
  22844. name: "Back",
  22845. image: {
  22846. source: "./media/characters/lexir/back.svg",
  22847. extra: 183.84 / 175.5,
  22848. bottom: 3.1 / 187
  22849. }
  22850. },
  22851. },
  22852. [
  22853. {
  22854. name: "Very Smal",
  22855. height: math.unit(1, "nm")
  22856. },
  22857. {
  22858. name: "Normal",
  22859. height: math.unit(6 + 5 / 12, "feet"),
  22860. default: true
  22861. },
  22862. {
  22863. name: "Macro",
  22864. height: math.unit(1, "mile")
  22865. },
  22866. {
  22867. name: "Megamacro",
  22868. height: math.unit(50, "miles")
  22869. },
  22870. ]
  22871. ))
  22872. characterMakers.push(() => makeCharacter(
  22873. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22874. {
  22875. front: {
  22876. height: math.unit(1.5, "meters"),
  22877. weight: math.unit(100, "lb"),
  22878. name: "Front",
  22879. image: {
  22880. source: "./media/characters/maksio/front.svg",
  22881. extra: 1549 / 1531,
  22882. bottom: 123.7 / 1674.5429
  22883. }
  22884. },
  22885. back: {
  22886. height: math.unit(1.5, "meters"),
  22887. weight: math.unit(100, "lb"),
  22888. name: "Back",
  22889. image: {
  22890. source: "./media/characters/maksio/back.svg",
  22891. extra: 1541 / 1509,
  22892. bottom: 97 / 1639
  22893. }
  22894. },
  22895. hand: {
  22896. height: math.unit(0.621, "feet"),
  22897. name: "Hand",
  22898. image: {
  22899. source: "./media/characters/maksio/hand.svg"
  22900. }
  22901. },
  22902. foot: {
  22903. height: math.unit(1.611, "feet"),
  22904. name: "Foot",
  22905. image: {
  22906. source: "./media/characters/maksio/foot.svg"
  22907. }
  22908. },
  22909. },
  22910. [
  22911. {
  22912. name: "Shrunken",
  22913. height: math.unit(10, "cm")
  22914. },
  22915. {
  22916. name: "Normal",
  22917. height: math.unit(150, "cm"),
  22918. default: true
  22919. },
  22920. ]
  22921. ))
  22922. characterMakers.push(() => makeCharacter(
  22923. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22924. {
  22925. front: {
  22926. height: math.unit(100, "feet"),
  22927. name: "Front",
  22928. image: {
  22929. source: "./media/characters/erza-bear/front.svg",
  22930. extra: 2449 / 2390,
  22931. bottom: 46 / 2494
  22932. }
  22933. },
  22934. back: {
  22935. height: math.unit(100, "feet"),
  22936. name: "Back",
  22937. image: {
  22938. source: "./media/characters/erza-bear/back.svg",
  22939. extra: 2489 / 2430,
  22940. bottom: 85.4 / 2480
  22941. }
  22942. },
  22943. tail: {
  22944. height: math.unit(42, "feet"),
  22945. name: "Tail",
  22946. image: {
  22947. source: "./media/characters/erza-bear/tail.svg"
  22948. }
  22949. },
  22950. tongue: {
  22951. height: math.unit(8, "feet"),
  22952. name: "Tongue",
  22953. image: {
  22954. source: "./media/characters/erza-bear/tongue.svg"
  22955. }
  22956. },
  22957. dick: {
  22958. height: math.unit(10.5, "feet"),
  22959. name: "Dick",
  22960. image: {
  22961. source: "./media/characters/erza-bear/dick.svg"
  22962. }
  22963. },
  22964. dickVertical: {
  22965. height: math.unit(16.9, "feet"),
  22966. name: "Dick (Vertical)",
  22967. image: {
  22968. source: "./media/characters/erza-bear/dick-vertical.svg"
  22969. }
  22970. },
  22971. },
  22972. [
  22973. {
  22974. name: "Macro",
  22975. height: math.unit(100, "feet"),
  22976. default: true
  22977. },
  22978. ]
  22979. ))
  22980. characterMakers.push(() => makeCharacter(
  22981. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22982. {
  22983. front: {
  22984. height: math.unit(172, "cm"),
  22985. weight: math.unit(73, "kg"),
  22986. name: "Front",
  22987. image: {
  22988. source: "./media/characters/violet-flor/front.svg",
  22989. extra: 1530 / 1442,
  22990. bottom: 61.9 / 1588.8
  22991. }
  22992. },
  22993. back: {
  22994. height: math.unit(180, "cm"),
  22995. weight: math.unit(73, "kg"),
  22996. name: "Back",
  22997. image: {
  22998. source: "./media/characters/violet-flor/back.svg",
  22999. extra: 1692 / 1630,
  23000. bottom: 20 / 1712
  23001. }
  23002. },
  23003. },
  23004. [
  23005. {
  23006. name: "Normal",
  23007. height: math.unit(172, "cm"),
  23008. default: true
  23009. },
  23010. ]
  23011. ))
  23012. characterMakers.push(() => makeCharacter(
  23013. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23014. {
  23015. front: {
  23016. height: math.unit(6, "feet"),
  23017. weight: math.unit(220, "lb"),
  23018. name: "Front",
  23019. image: {
  23020. source: "./media/characters/lynn-rhea/front.svg",
  23021. extra: 310 / 273
  23022. }
  23023. },
  23024. back: {
  23025. height: math.unit(6, "feet"),
  23026. weight: math.unit(220, "lb"),
  23027. name: "Back",
  23028. image: {
  23029. source: "./media/characters/lynn-rhea/back.svg",
  23030. extra: 310 / 273
  23031. }
  23032. },
  23033. dicks: {
  23034. height: math.unit(0.9, "feet"),
  23035. name: "Dicks",
  23036. image: {
  23037. source: "./media/characters/lynn-rhea/dicks.svg"
  23038. }
  23039. },
  23040. slit: {
  23041. height: math.unit(0.4, "feet"),
  23042. name: "Slit",
  23043. image: {
  23044. source: "./media/characters/lynn-rhea/slit.svg"
  23045. }
  23046. },
  23047. },
  23048. [
  23049. {
  23050. name: "Micro",
  23051. height: math.unit(1, "inch")
  23052. },
  23053. {
  23054. name: "Macro",
  23055. height: math.unit(60, "feet"),
  23056. default: true
  23057. },
  23058. {
  23059. name: "Megamacro",
  23060. height: math.unit(2, "miles")
  23061. },
  23062. {
  23063. name: "Gigamacro",
  23064. height: math.unit(3, "earths")
  23065. },
  23066. {
  23067. name: "Galactic",
  23068. height: math.unit(0.8, "galaxies")
  23069. },
  23070. ]
  23071. ))
  23072. characterMakers.push(() => makeCharacter(
  23073. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23074. {
  23075. front: {
  23076. height: math.unit(1600, "feet"),
  23077. weight: math.unit(85758785169, "kg"),
  23078. name: "Front",
  23079. image: {
  23080. source: "./media/characters/valathos/front.svg",
  23081. extra: 1451 / 1339
  23082. }
  23083. },
  23084. },
  23085. [
  23086. {
  23087. name: "Macro",
  23088. height: math.unit(1600, "feet"),
  23089. default: true
  23090. },
  23091. ]
  23092. ))
  23093. characterMakers.push(() => makeCharacter(
  23094. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23095. {
  23096. front: {
  23097. height: math.unit(7 + 5 / 12, "feet"),
  23098. weight: math.unit(300, "lb"),
  23099. name: "Front",
  23100. image: {
  23101. source: "./media/characters/azula/front.svg",
  23102. extra: 3208 / 2880,
  23103. bottom: 80.2 / 3277
  23104. }
  23105. },
  23106. back: {
  23107. height: math.unit(7 + 5 / 12, "feet"),
  23108. weight: math.unit(300, "lb"),
  23109. name: "Back",
  23110. image: {
  23111. source: "./media/characters/azula/back.svg",
  23112. extra: 3169 / 2822,
  23113. bottom: 150.6 / 3321
  23114. }
  23115. },
  23116. },
  23117. [
  23118. {
  23119. name: "Normal",
  23120. height: math.unit(7 + 5 / 12, "feet"),
  23121. default: true
  23122. },
  23123. {
  23124. name: "Big",
  23125. height: math.unit(20, "feet")
  23126. },
  23127. ]
  23128. ))
  23129. characterMakers.push(() => makeCharacter(
  23130. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23131. {
  23132. front: {
  23133. height: math.unit(5 + 1 / 12, "feet"),
  23134. weight: math.unit(110, "lb"),
  23135. name: "Front",
  23136. image: {
  23137. source: "./media/characters/rupert/front.svg",
  23138. extra: 1549 / 1495,
  23139. bottom: 54.2 / 1604.4
  23140. }
  23141. },
  23142. },
  23143. [
  23144. {
  23145. name: "Normal",
  23146. height: math.unit(5 + 1 / 12, "feet"),
  23147. default: true
  23148. },
  23149. ]
  23150. ))
  23151. characterMakers.push(() => makeCharacter(
  23152. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23153. {
  23154. front: {
  23155. height: math.unit(8 + 4 / 12, "feet"),
  23156. weight: math.unit(350, "lb"),
  23157. name: "Front",
  23158. image: {
  23159. source: "./media/characters/sheera-castellar/front.svg",
  23160. extra: 1957 / 1894,
  23161. bottom: 26.97 / 1975.017
  23162. }
  23163. },
  23164. side: {
  23165. height: math.unit(8 + 4 / 12, "feet"),
  23166. weight: math.unit(350, "lb"),
  23167. name: "Side",
  23168. image: {
  23169. source: "./media/characters/sheera-castellar/side.svg",
  23170. extra: 1957 / 1894
  23171. }
  23172. },
  23173. back: {
  23174. height: math.unit(8 + 4 / 12, "feet"),
  23175. weight: math.unit(350, "lb"),
  23176. name: "Back",
  23177. image: {
  23178. source: "./media/characters/sheera-castellar/back.svg",
  23179. extra: 1957 / 1894
  23180. }
  23181. },
  23182. angled: {
  23183. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23184. weight: math.unit(350, "lb"),
  23185. name: "Angled",
  23186. image: {
  23187. source: "./media/characters/sheera-castellar/angled.svg",
  23188. extra: 1807 / 1707,
  23189. bottom: 68 / 1875
  23190. }
  23191. },
  23192. genitals: {
  23193. height: math.unit(2.2, "feet"),
  23194. name: "Genitals",
  23195. image: {
  23196. source: "./media/characters/sheera-castellar/genitals.svg"
  23197. }
  23198. },
  23199. taur: {
  23200. height: math.unit(10 + 6/12, "feet"),
  23201. name: "Taur",
  23202. image: {
  23203. source: "./media/characters/sheera-castellar/taur.svg",
  23204. extra: 2017/1909,
  23205. bottom: 185/2202
  23206. }
  23207. },
  23208. },
  23209. [
  23210. {
  23211. name: "Normal",
  23212. height: math.unit(8 + 4 / 12, "feet")
  23213. },
  23214. {
  23215. name: "Macro",
  23216. height: math.unit(150, "feet"),
  23217. default: true
  23218. },
  23219. {
  23220. name: "Macro+",
  23221. height: math.unit(800, "feet")
  23222. },
  23223. ]
  23224. ))
  23225. characterMakers.push(() => makeCharacter(
  23226. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23227. {
  23228. front: {
  23229. height: math.unit(6, "feet"),
  23230. weight: math.unit(150, "lb"),
  23231. name: "Front",
  23232. image: {
  23233. source: "./media/characters/jaipur/front.svg",
  23234. extra: 3860 / 3731,
  23235. bottom: 287 / 4140
  23236. }
  23237. },
  23238. back: {
  23239. height: math.unit(6, "feet"),
  23240. weight: math.unit(150, "lb"),
  23241. name: "Back",
  23242. image: {
  23243. source: "./media/characters/jaipur/back.svg",
  23244. extra: 4060 / 3930,
  23245. bottom: 151 / 4200
  23246. }
  23247. },
  23248. },
  23249. [
  23250. {
  23251. name: "Normal",
  23252. height: math.unit(1.85, "meters"),
  23253. default: true
  23254. },
  23255. {
  23256. name: "Macro",
  23257. height: math.unit(150, "meters")
  23258. },
  23259. {
  23260. name: "Macro+",
  23261. height: math.unit(0.5, "miles")
  23262. },
  23263. {
  23264. name: "Macro++",
  23265. height: math.unit(2.5, "miles")
  23266. },
  23267. {
  23268. name: "Macro+++",
  23269. height: math.unit(12, "miles")
  23270. },
  23271. {
  23272. name: "Macro++++",
  23273. height: math.unit(120, "miles")
  23274. },
  23275. {
  23276. name: "Macro+++++",
  23277. height: math.unit(1200, "miles")
  23278. },
  23279. ]
  23280. ))
  23281. characterMakers.push(() => makeCharacter(
  23282. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23283. {
  23284. front: {
  23285. height: math.unit(6, "feet"),
  23286. weight: math.unit(150, "lb"),
  23287. name: "Front",
  23288. image: {
  23289. source: "./media/characters/sheila-wolf/front.svg",
  23290. extra: 1931 / 1808,
  23291. bottom: 29.5 / 1960
  23292. }
  23293. },
  23294. dick: {
  23295. height: math.unit(1.464, "feet"),
  23296. name: "Dick",
  23297. image: {
  23298. source: "./media/characters/sheila-wolf/dick.svg"
  23299. }
  23300. },
  23301. muzzle: {
  23302. height: math.unit(0.513, "feet"),
  23303. name: "Muzzle",
  23304. image: {
  23305. source: "./media/characters/sheila-wolf/muzzle.svg"
  23306. }
  23307. },
  23308. },
  23309. [
  23310. {
  23311. name: "Macro",
  23312. height: math.unit(70, "feet"),
  23313. default: true
  23314. },
  23315. ]
  23316. ))
  23317. characterMakers.push(() => makeCharacter(
  23318. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23319. {
  23320. front: {
  23321. height: math.unit(32, "meters"),
  23322. weight: math.unit(300000, "kg"),
  23323. name: "Front",
  23324. image: {
  23325. source: "./media/characters/almor/front.svg",
  23326. extra: 1408 / 1322,
  23327. bottom: 94.6 / 1506.5
  23328. }
  23329. },
  23330. },
  23331. [
  23332. {
  23333. name: "Macro",
  23334. height: math.unit(32, "meters"),
  23335. default: true
  23336. },
  23337. ]
  23338. ))
  23339. characterMakers.push(() => makeCharacter(
  23340. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23341. {
  23342. front: {
  23343. height: math.unit(7, "feet"),
  23344. weight: math.unit(200, "lb"),
  23345. name: "Front",
  23346. image: {
  23347. source: "./media/characters/silver/front.svg",
  23348. extra: 472.1 / 450.5,
  23349. bottom: 26.5 / 499.424
  23350. }
  23351. },
  23352. },
  23353. [
  23354. {
  23355. name: "Normal",
  23356. height: math.unit(7, "feet"),
  23357. default: true
  23358. },
  23359. {
  23360. name: "Macro",
  23361. height: math.unit(800, "feet")
  23362. },
  23363. {
  23364. name: "Megamacro",
  23365. height: math.unit(250, "miles")
  23366. },
  23367. ]
  23368. ))
  23369. characterMakers.push(() => makeCharacter(
  23370. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23371. {
  23372. front: {
  23373. height: math.unit(6, "feet"),
  23374. weight: math.unit(150, "lb"),
  23375. name: "Front",
  23376. image: {
  23377. source: "./media/characters/pliskin/front.svg",
  23378. extra: 1469 / 1359,
  23379. bottom: 70 / 1540
  23380. }
  23381. },
  23382. },
  23383. [
  23384. {
  23385. name: "Micro",
  23386. height: math.unit(3, "inches")
  23387. },
  23388. {
  23389. name: "Normal",
  23390. height: math.unit(5 + 11 / 12, "feet"),
  23391. default: true
  23392. },
  23393. {
  23394. name: "Macro",
  23395. height: math.unit(120, "feet")
  23396. },
  23397. ]
  23398. ))
  23399. characterMakers.push(() => makeCharacter(
  23400. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23401. {
  23402. front: {
  23403. height: math.unit(6, "feet"),
  23404. weight: math.unit(150, "lb"),
  23405. name: "Front",
  23406. image: {
  23407. source: "./media/characters/sammy/front.svg",
  23408. extra: 1193 / 1089,
  23409. bottom: 30.5 / 1226
  23410. }
  23411. },
  23412. },
  23413. [
  23414. {
  23415. name: "Macro",
  23416. height: math.unit(1700, "feet"),
  23417. default: true
  23418. },
  23419. {
  23420. name: "Examacro",
  23421. height: math.unit(2.5e9, "lightyears")
  23422. },
  23423. ]
  23424. ))
  23425. characterMakers.push(() => makeCharacter(
  23426. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23427. {
  23428. front: {
  23429. height: math.unit(21, "meters"),
  23430. weight: math.unit(12, "tonnes"),
  23431. name: "Front",
  23432. image: {
  23433. source: "./media/characters/kuru/front.svg",
  23434. extra: 4301 / 3785,
  23435. bottom: 371.3 / 4691
  23436. }
  23437. },
  23438. },
  23439. [
  23440. {
  23441. name: "Macro",
  23442. height: math.unit(21, "meters"),
  23443. default: true
  23444. },
  23445. ]
  23446. ))
  23447. characterMakers.push(() => makeCharacter(
  23448. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23449. {
  23450. front: {
  23451. height: math.unit(23, "meters"),
  23452. weight: math.unit(12.2, "tonnes"),
  23453. name: "Front",
  23454. image: {
  23455. source: "./media/characters/rakka/front.svg",
  23456. extra: 4670 / 4169,
  23457. bottom: 301 / 4968.7
  23458. }
  23459. },
  23460. },
  23461. [
  23462. {
  23463. name: "Macro",
  23464. height: math.unit(23, "meters"),
  23465. default: true
  23466. },
  23467. ]
  23468. ))
  23469. characterMakers.push(() => makeCharacter(
  23470. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23471. {
  23472. front: {
  23473. height: math.unit(6, "feet"),
  23474. weight: math.unit(150, "lb"),
  23475. name: "Front",
  23476. image: {
  23477. source: "./media/characters/rhys-feline/front.svg",
  23478. extra: 2488 / 2308,
  23479. bottom: 35.67 / 2519.19
  23480. }
  23481. },
  23482. },
  23483. [
  23484. {
  23485. name: "Really Small",
  23486. height: math.unit(1, "nm")
  23487. },
  23488. {
  23489. name: "Micro",
  23490. height: math.unit(4, "inches")
  23491. },
  23492. {
  23493. name: "Normal",
  23494. height: math.unit(4 + 10 / 12, "feet"),
  23495. default: true
  23496. },
  23497. {
  23498. name: "Macro",
  23499. height: math.unit(100, "feet")
  23500. },
  23501. {
  23502. name: "Megamacto",
  23503. height: math.unit(50, "miles")
  23504. },
  23505. ]
  23506. ))
  23507. characterMakers.push(() => makeCharacter(
  23508. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23509. {
  23510. side: {
  23511. height: math.unit(30, "feet"),
  23512. weight: math.unit(35000, "kg"),
  23513. name: "Side",
  23514. image: {
  23515. source: "./media/characters/alydar/side.svg",
  23516. extra: 234 / 222,
  23517. bottom: 6.5 / 241
  23518. }
  23519. },
  23520. front: {
  23521. height: math.unit(30, "feet"),
  23522. weight: math.unit(35000, "kg"),
  23523. name: "Front",
  23524. image: {
  23525. source: "./media/characters/alydar/front.svg",
  23526. extra: 223.37 / 210.2,
  23527. bottom: 22.3 / 246.76
  23528. }
  23529. },
  23530. top: {
  23531. height: math.unit(64.54, "feet"),
  23532. weight: math.unit(35000, "kg"),
  23533. name: "Top",
  23534. image: {
  23535. source: "./media/characters/alydar/top.svg"
  23536. }
  23537. },
  23538. anthro: {
  23539. height: math.unit(30, "feet"),
  23540. weight: math.unit(9000, "kg"),
  23541. name: "Anthro",
  23542. image: {
  23543. source: "./media/characters/alydar/anthro.svg",
  23544. extra: 432 / 421,
  23545. bottom: 7.18 / 440
  23546. }
  23547. },
  23548. maw: {
  23549. height: math.unit(11.693, "feet"),
  23550. name: "Maw",
  23551. image: {
  23552. source: "./media/characters/alydar/maw.svg"
  23553. }
  23554. },
  23555. head: {
  23556. height: math.unit(11.693, "feet"),
  23557. name: "Head",
  23558. image: {
  23559. source: "./media/characters/alydar/head.svg"
  23560. }
  23561. },
  23562. headAlt: {
  23563. height: math.unit(12.861, "feet"),
  23564. name: "Head (Alt)",
  23565. image: {
  23566. source: "./media/characters/alydar/head-alt.svg"
  23567. }
  23568. },
  23569. wing: {
  23570. height: math.unit(20.712, "feet"),
  23571. name: "Wing",
  23572. image: {
  23573. source: "./media/characters/alydar/wing.svg"
  23574. }
  23575. },
  23576. wingFeather: {
  23577. height: math.unit(9.662, "feet"),
  23578. name: "Wing Feather",
  23579. image: {
  23580. source: "./media/characters/alydar/wing-feather.svg"
  23581. }
  23582. },
  23583. countourFeather: {
  23584. height: math.unit(4.154, "feet"),
  23585. name: "Contour Feather",
  23586. image: {
  23587. source: "./media/characters/alydar/contour-feather.svg"
  23588. }
  23589. },
  23590. },
  23591. [
  23592. {
  23593. name: "Diplomatic",
  23594. height: math.unit(13, "feet"),
  23595. default: true
  23596. },
  23597. {
  23598. name: "Small",
  23599. height: math.unit(30, "feet")
  23600. },
  23601. {
  23602. name: "Normal",
  23603. height: math.unit(95, "feet"),
  23604. default: true
  23605. },
  23606. {
  23607. name: "Large",
  23608. height: math.unit(285, "feet")
  23609. },
  23610. {
  23611. name: "Incomprehensible",
  23612. height: math.unit(450, "megameters")
  23613. },
  23614. ]
  23615. ))
  23616. characterMakers.push(() => makeCharacter(
  23617. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23618. {
  23619. side: {
  23620. height: math.unit(11, "feet"),
  23621. weight: math.unit(1750, "kg"),
  23622. name: "Side",
  23623. image: {
  23624. source: "./media/characters/selicia/side.svg",
  23625. extra: 440 / 396,
  23626. bottom: 24.8 / 465.979
  23627. }
  23628. },
  23629. maw: {
  23630. height: math.unit(4.665, "feet"),
  23631. name: "Maw",
  23632. image: {
  23633. source: "./media/characters/selicia/maw.svg"
  23634. }
  23635. },
  23636. },
  23637. [
  23638. {
  23639. name: "Normal",
  23640. height: math.unit(11, "feet"),
  23641. default: true
  23642. },
  23643. ]
  23644. ))
  23645. characterMakers.push(() => makeCharacter(
  23646. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23647. {
  23648. side: {
  23649. height: math.unit(2 + 6 / 12, "feet"),
  23650. weight: math.unit(30, "lb"),
  23651. name: "Side",
  23652. image: {
  23653. source: "./media/characters/layla/side.svg",
  23654. extra: 244 / 188,
  23655. bottom: 18.2 / 262.1
  23656. }
  23657. },
  23658. back: {
  23659. height: math.unit(2 + 6 / 12, "feet"),
  23660. weight: math.unit(30, "lb"),
  23661. name: "Back",
  23662. image: {
  23663. source: "./media/characters/layla/back.svg",
  23664. extra: 308 / 241.5,
  23665. bottom: 8.9 / 316.8
  23666. }
  23667. },
  23668. cumming: {
  23669. height: math.unit(2 + 6 / 12, "feet"),
  23670. weight: math.unit(30, "lb"),
  23671. name: "Cumming",
  23672. image: {
  23673. source: "./media/characters/layla/cumming.svg",
  23674. extra: 342 / 279,
  23675. bottom: 595 / 938
  23676. }
  23677. },
  23678. dickFlaccid: {
  23679. height: math.unit(2.595, "feet"),
  23680. name: "Flaccid Genitals",
  23681. image: {
  23682. source: "./media/characters/layla/dick-flaccid.svg"
  23683. }
  23684. },
  23685. dickErect: {
  23686. height: math.unit(2.359, "feet"),
  23687. name: "Erect Genitals",
  23688. image: {
  23689. source: "./media/characters/layla/dick-erect.svg"
  23690. }
  23691. },
  23692. dragon: {
  23693. height: math.unit(40, "feet"),
  23694. name: "Dragon",
  23695. image: {
  23696. source: "./media/characters/layla/dragon.svg",
  23697. extra: 610/535,
  23698. bottom: 367/977
  23699. }
  23700. },
  23701. taur: {
  23702. height: math.unit(30, "feet"),
  23703. name: "Taur",
  23704. image: {
  23705. source: "./media/characters/layla/taur.svg",
  23706. extra: 1268/1199,
  23707. bottom: 112/1380
  23708. }
  23709. },
  23710. },
  23711. [
  23712. {
  23713. name: "Micro",
  23714. height: math.unit(1, "inch")
  23715. },
  23716. {
  23717. name: "Small",
  23718. height: math.unit(1, "foot")
  23719. },
  23720. {
  23721. name: "Normal",
  23722. height: math.unit(2 + 6 / 12, "feet"),
  23723. default: true
  23724. },
  23725. {
  23726. name: "Macro",
  23727. height: math.unit(200, "feet")
  23728. },
  23729. {
  23730. name: "Megamacro",
  23731. height: math.unit(1000, "miles")
  23732. },
  23733. {
  23734. name: "Planetary",
  23735. height: math.unit(8000, "miles")
  23736. },
  23737. {
  23738. name: "True Layla",
  23739. height: math.unit(200000 * 7, "multiverses")
  23740. },
  23741. ]
  23742. ))
  23743. characterMakers.push(() => makeCharacter(
  23744. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23745. {
  23746. back: {
  23747. height: math.unit(10.5, "feet"),
  23748. weight: math.unit(800, "lb"),
  23749. name: "Back",
  23750. image: {
  23751. source: "./media/characters/knox/back.svg",
  23752. extra: 1486 / 1089,
  23753. bottom: 107 / 1601.4
  23754. }
  23755. },
  23756. side: {
  23757. height: math.unit(10.5, "feet"),
  23758. weight: math.unit(800, "lb"),
  23759. name: "Side",
  23760. image: {
  23761. source: "./media/characters/knox/side.svg",
  23762. extra: 244 / 218,
  23763. bottom: 14 / 260
  23764. }
  23765. },
  23766. },
  23767. [
  23768. {
  23769. name: "Compact",
  23770. height: math.unit(10.5, "feet"),
  23771. default: true
  23772. },
  23773. {
  23774. name: "Dynamax",
  23775. height: math.unit(210, "feet")
  23776. },
  23777. {
  23778. name: "Full Macro",
  23779. height: math.unit(850, "feet")
  23780. },
  23781. ]
  23782. ))
  23783. characterMakers.push(() => makeCharacter(
  23784. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23785. {
  23786. front: {
  23787. height: math.unit(28, "feet"),
  23788. weight: math.unit(10500, "lb"),
  23789. name: "Front",
  23790. image: {
  23791. source: "./media/characters/kayda/front.svg",
  23792. extra: 1536 / 1428,
  23793. bottom: 68.7 / 1603
  23794. }
  23795. },
  23796. back: {
  23797. height: math.unit(28, "feet"),
  23798. weight: math.unit(10500, "lb"),
  23799. name: "Back",
  23800. image: {
  23801. source: "./media/characters/kayda/back.svg",
  23802. extra: 1557 / 1464,
  23803. bottom: 39.5 / 1597.49
  23804. }
  23805. },
  23806. dick: {
  23807. height: math.unit(3.858, "feet"),
  23808. name: "Dick",
  23809. image: {
  23810. source: "./media/characters/kayda/dick.svg"
  23811. }
  23812. },
  23813. },
  23814. [
  23815. {
  23816. name: "Macro",
  23817. height: math.unit(28, "feet"),
  23818. default: true
  23819. },
  23820. ]
  23821. ))
  23822. characterMakers.push(() => makeCharacter(
  23823. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23824. {
  23825. front: {
  23826. height: math.unit(10 + 11 / 12, "feet"),
  23827. weight: math.unit(1400, "lb"),
  23828. name: "Front",
  23829. image: {
  23830. source: "./media/characters/brian/front.svg",
  23831. extra: 737 / 692,
  23832. bottom: 55.4 / 785
  23833. }
  23834. },
  23835. },
  23836. [
  23837. {
  23838. name: "Normal",
  23839. height: math.unit(10 + 11 / 12, "feet"),
  23840. default: true
  23841. },
  23842. ]
  23843. ))
  23844. characterMakers.push(() => makeCharacter(
  23845. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23846. {
  23847. front: {
  23848. height: math.unit(5 + 8 / 12, "feet"),
  23849. weight: math.unit(140, "lb"),
  23850. name: "Front",
  23851. image: {
  23852. source: "./media/characters/khemri/front.svg",
  23853. extra: 4780 / 4059,
  23854. bottom: 80.1 / 4859.25
  23855. }
  23856. },
  23857. },
  23858. [
  23859. {
  23860. name: "Micro",
  23861. height: math.unit(6, "inches")
  23862. },
  23863. {
  23864. name: "Normal",
  23865. height: math.unit(5 + 8 / 12, "feet"),
  23866. default: true
  23867. },
  23868. ]
  23869. ))
  23870. characterMakers.push(() => makeCharacter(
  23871. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23872. {
  23873. front: {
  23874. height: math.unit(13, "feet"),
  23875. weight: math.unit(1700, "lb"),
  23876. name: "Front",
  23877. image: {
  23878. source: "./media/characters/felix-braveheart/front.svg",
  23879. extra: 1222 / 1157,
  23880. bottom: 53.2 / 1280
  23881. }
  23882. },
  23883. back: {
  23884. height: math.unit(13, "feet"),
  23885. weight: math.unit(1700, "lb"),
  23886. name: "Back",
  23887. image: {
  23888. source: "./media/characters/felix-braveheart/back.svg",
  23889. extra: 1277 / 1203,
  23890. bottom: 50.2 / 1327
  23891. }
  23892. },
  23893. feral: {
  23894. height: math.unit(6, "feet"),
  23895. weight: math.unit(400, "lb"),
  23896. name: "Feral",
  23897. image: {
  23898. source: "./media/characters/felix-braveheart/feral.svg",
  23899. extra: 682 / 625,
  23900. bottom: 6.9 / 688
  23901. }
  23902. },
  23903. },
  23904. [
  23905. {
  23906. name: "Normal",
  23907. height: math.unit(13, "feet"),
  23908. default: true
  23909. },
  23910. ]
  23911. ))
  23912. characterMakers.push(() => makeCharacter(
  23913. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23914. {
  23915. side: {
  23916. height: math.unit(5 + 11 / 12, "feet"),
  23917. weight: math.unit(1400, "lb"),
  23918. name: "Side",
  23919. image: {
  23920. source: "./media/characters/shadow-blade/side.svg",
  23921. extra: 1726 / 1267,
  23922. bottom: 58.4 / 1785
  23923. }
  23924. },
  23925. },
  23926. [
  23927. {
  23928. name: "Normal",
  23929. height: math.unit(5 + 11 / 12, "feet"),
  23930. default: true
  23931. },
  23932. ]
  23933. ))
  23934. characterMakers.push(() => makeCharacter(
  23935. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23936. {
  23937. front: {
  23938. height: math.unit(1 + 6 / 12, "feet"),
  23939. weight: math.unit(25, "lb"),
  23940. name: "Front",
  23941. image: {
  23942. source: "./media/characters/karla-halldor/front.svg",
  23943. extra: 1459 / 1383,
  23944. bottom: 12 / 1472
  23945. }
  23946. },
  23947. },
  23948. [
  23949. {
  23950. name: "Normal",
  23951. height: math.unit(1 + 6 / 12, "feet"),
  23952. default: true
  23953. },
  23954. ]
  23955. ))
  23956. characterMakers.push(() => makeCharacter(
  23957. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23958. {
  23959. front: {
  23960. height: math.unit(6 + 2 / 12, "feet"),
  23961. weight: math.unit(160, "lb"),
  23962. name: "Front",
  23963. image: {
  23964. source: "./media/characters/ariam/front.svg",
  23965. extra: 714 / 617,
  23966. bottom: 23.4 / 737,
  23967. }
  23968. },
  23969. squatting: {
  23970. height: math.unit(4.1, "feet"),
  23971. weight: math.unit(160, "lb"),
  23972. name: "Squatting",
  23973. image: {
  23974. source: "./media/characters/ariam/squatting.svg",
  23975. extra: 2617 / 2112,
  23976. bottom: 61.2 / 2681,
  23977. }
  23978. },
  23979. },
  23980. [
  23981. {
  23982. name: "Normal",
  23983. height: math.unit(6 + 2 / 12, "feet"),
  23984. default: true
  23985. },
  23986. {
  23987. name: "Normal+",
  23988. height: math.unit(4, "meters")
  23989. },
  23990. {
  23991. name: "Macro",
  23992. height: math.unit(50, "meters")
  23993. },
  23994. {
  23995. name: "Macro+",
  23996. height: math.unit(100, "meters")
  23997. },
  23998. {
  23999. name: "Megamacro",
  24000. height: math.unit(20, "km")
  24001. },
  24002. ]
  24003. ))
  24004. characterMakers.push(() => makeCharacter(
  24005. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24006. {
  24007. front: {
  24008. height: math.unit(1.67, "meters"),
  24009. weight: math.unit(140, "lb"),
  24010. name: "Front",
  24011. image: {
  24012. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24013. extra: 438 / 410,
  24014. bottom: 0.75 / 439
  24015. }
  24016. },
  24017. },
  24018. [
  24019. {
  24020. name: "Shrunken",
  24021. height: math.unit(7.6, "cm")
  24022. },
  24023. {
  24024. name: "Human Scale",
  24025. height: math.unit(1.67, "meters")
  24026. },
  24027. {
  24028. name: "Wolxi Scale",
  24029. height: math.unit(36.7, "meters"),
  24030. default: true
  24031. },
  24032. ]
  24033. ))
  24034. characterMakers.push(() => makeCharacter(
  24035. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24036. {
  24037. front: {
  24038. height: math.unit(1.73, "meters"),
  24039. weight: math.unit(240, "lb"),
  24040. name: "Front",
  24041. image: {
  24042. source: "./media/characters/izue-two-mothers/front.svg",
  24043. extra: 469 / 437,
  24044. bottom: 1.24 / 470.6
  24045. }
  24046. },
  24047. },
  24048. [
  24049. {
  24050. name: "Shrunken",
  24051. height: math.unit(7.86, "cm")
  24052. },
  24053. {
  24054. name: "Human Scale",
  24055. height: math.unit(1.73, "meters")
  24056. },
  24057. {
  24058. name: "Wolxi Scale",
  24059. height: math.unit(38, "meters"),
  24060. default: true
  24061. },
  24062. ]
  24063. ))
  24064. characterMakers.push(() => makeCharacter(
  24065. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24066. {
  24067. front: {
  24068. height: math.unit(1.55, "meters"),
  24069. weight: math.unit(120, "lb"),
  24070. name: "Front",
  24071. image: {
  24072. source: "./media/characters/teeku-love-shack/front.svg",
  24073. extra: 387 / 362,
  24074. bottom: 1.51 / 388
  24075. }
  24076. },
  24077. },
  24078. [
  24079. {
  24080. name: "Shrunken",
  24081. height: math.unit(7, "cm")
  24082. },
  24083. {
  24084. name: "Human Scale",
  24085. height: math.unit(1.55, "meters")
  24086. },
  24087. {
  24088. name: "Wolxi Scale",
  24089. height: math.unit(34.1, "meters"),
  24090. default: true
  24091. },
  24092. ]
  24093. ))
  24094. characterMakers.push(() => makeCharacter(
  24095. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24096. {
  24097. front: {
  24098. height: math.unit(1.83, "meters"),
  24099. weight: math.unit(135, "lb"),
  24100. name: "Front",
  24101. image: {
  24102. source: "./media/characters/dejma-the-red/front.svg",
  24103. extra: 480 / 458,
  24104. bottom: 1.8 / 482
  24105. }
  24106. },
  24107. },
  24108. [
  24109. {
  24110. name: "Shrunken",
  24111. height: math.unit(8.3, "cm")
  24112. },
  24113. {
  24114. name: "Human Scale",
  24115. height: math.unit(1.83, "meters")
  24116. },
  24117. {
  24118. name: "Wolxi Scale",
  24119. height: math.unit(40, "meters"),
  24120. default: true
  24121. },
  24122. ]
  24123. ))
  24124. characterMakers.push(() => makeCharacter(
  24125. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24126. {
  24127. front: {
  24128. height: math.unit(1.78, "meters"),
  24129. weight: math.unit(65, "kg"),
  24130. name: "Front",
  24131. image: {
  24132. source: "./media/characters/aki/front.svg",
  24133. extra: 452 / 415
  24134. }
  24135. },
  24136. frontNsfw: {
  24137. height: math.unit(1.78, "meters"),
  24138. weight: math.unit(65, "kg"),
  24139. name: "Front (NSFW)",
  24140. image: {
  24141. source: "./media/characters/aki/front-nsfw.svg",
  24142. extra: 452 / 415
  24143. }
  24144. },
  24145. back: {
  24146. height: math.unit(1.78, "meters"),
  24147. weight: math.unit(65, "kg"),
  24148. name: "Back",
  24149. image: {
  24150. source: "./media/characters/aki/back.svg",
  24151. extra: 452 / 415
  24152. }
  24153. },
  24154. rump: {
  24155. height: math.unit(2.05, "feet"),
  24156. name: "Rump",
  24157. image: {
  24158. source: "./media/characters/aki/rump.svg"
  24159. }
  24160. },
  24161. dick: {
  24162. height: math.unit(0.95, "feet"),
  24163. name: "Dick",
  24164. image: {
  24165. source: "./media/characters/aki/dick.svg"
  24166. }
  24167. },
  24168. },
  24169. [
  24170. {
  24171. name: "Micro",
  24172. height: math.unit(15, "cm")
  24173. },
  24174. {
  24175. name: "Normal",
  24176. height: math.unit(178, "cm"),
  24177. default: true
  24178. },
  24179. {
  24180. name: "Macro",
  24181. height: math.unit(214, "m")
  24182. },
  24183. {
  24184. name: "Macro+",
  24185. height: math.unit(534, "m")
  24186. },
  24187. ]
  24188. ))
  24189. characterMakers.push(() => makeCharacter(
  24190. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24191. {
  24192. front: {
  24193. height: math.unit(5 + 5 / 12, "feet"),
  24194. weight: math.unit(120, "lb"),
  24195. name: "Front",
  24196. image: {
  24197. source: "./media/characters/ari/front.svg",
  24198. extra: 714.5 / 682,
  24199. bottom: 8 / 722.5
  24200. }
  24201. },
  24202. },
  24203. [
  24204. {
  24205. name: "Normal",
  24206. height: math.unit(5 + 5 / 12, "feet")
  24207. },
  24208. {
  24209. name: "Macro",
  24210. height: math.unit(100, "feet"),
  24211. default: true
  24212. },
  24213. {
  24214. name: "Megamacro",
  24215. height: math.unit(100, "miles")
  24216. },
  24217. {
  24218. name: "Gigamacro",
  24219. height: math.unit(80000, "miles")
  24220. },
  24221. ]
  24222. ))
  24223. characterMakers.push(() => makeCharacter(
  24224. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24225. {
  24226. side: {
  24227. height: math.unit(9, "feet"),
  24228. weight: math.unit(400, "kg"),
  24229. name: "Side",
  24230. image: {
  24231. source: "./media/characters/bolt/side.svg",
  24232. extra: 1126 / 896,
  24233. bottom: 60 / 1187.3,
  24234. }
  24235. },
  24236. },
  24237. [
  24238. {
  24239. name: "Micro",
  24240. height: math.unit(5, "inches")
  24241. },
  24242. {
  24243. name: "Normal",
  24244. height: math.unit(9, "feet"),
  24245. default: true
  24246. },
  24247. {
  24248. name: "Macro",
  24249. height: math.unit(700, "feet")
  24250. },
  24251. {
  24252. name: "Max Size",
  24253. height: math.unit(1.52e22, "yottameters")
  24254. },
  24255. ]
  24256. ))
  24257. characterMakers.push(() => makeCharacter(
  24258. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24259. {
  24260. front: {
  24261. height: math.unit(4.53, "meters"),
  24262. weight: math.unit(3, "tons"),
  24263. name: "Front",
  24264. image: {
  24265. source: "./media/characters/draekon-sylviar/front.svg",
  24266. extra: 1228 / 1068,
  24267. bottom: 41 / 1270
  24268. }
  24269. },
  24270. tail: {
  24271. height: math.unit(1.772, "meter"),
  24272. name: "Tail",
  24273. image: {
  24274. source: "./media/characters/draekon-sylviar/tail.svg"
  24275. }
  24276. },
  24277. head: {
  24278. height: math.unit(1.331, "meter"),
  24279. name: "Head",
  24280. image: {
  24281. source: "./media/characters/draekon-sylviar/head.svg"
  24282. }
  24283. },
  24284. hand: {
  24285. height: math.unit(0.564, "meter"),
  24286. name: "Hand",
  24287. image: {
  24288. source: "./media/characters/draekon-sylviar/hand.svg"
  24289. }
  24290. },
  24291. foot: {
  24292. height: math.unit(0.621, "meter"),
  24293. name: "Foot",
  24294. image: {
  24295. source: "./media/characters/draekon-sylviar/foot.svg",
  24296. bottom: 32 / 324
  24297. }
  24298. },
  24299. dick: {
  24300. height: math.unit(61, "cm"),
  24301. name: "Dick",
  24302. image: {
  24303. source: "./media/characters/draekon-sylviar/dick.svg"
  24304. }
  24305. },
  24306. dickseparated: {
  24307. height: math.unit(61, "cm"),
  24308. name: "Dick-separated",
  24309. image: {
  24310. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24311. }
  24312. },
  24313. },
  24314. [
  24315. {
  24316. name: "Small",
  24317. height: math.unit(4.53 / 2, "meters"),
  24318. default: true
  24319. },
  24320. {
  24321. name: "Normal",
  24322. height: math.unit(4.53, "meters"),
  24323. default: true
  24324. },
  24325. {
  24326. name: "Large",
  24327. height: math.unit(4.53 * 2, "meters"),
  24328. },
  24329. ]
  24330. ))
  24331. characterMakers.push(() => makeCharacter(
  24332. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24333. {
  24334. front: {
  24335. height: math.unit(6 + 2 / 12, "feet"),
  24336. weight: math.unit(180, "lb"),
  24337. name: "Front",
  24338. image: {
  24339. source: "./media/characters/brawler/front.svg",
  24340. extra: 3301 / 3027,
  24341. bottom: 138 / 3439
  24342. }
  24343. },
  24344. },
  24345. [
  24346. {
  24347. name: "Normal",
  24348. height: math.unit(6 + 2 / 12, "feet"),
  24349. default: true
  24350. },
  24351. ]
  24352. ))
  24353. characterMakers.push(() => makeCharacter(
  24354. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24355. {
  24356. front: {
  24357. height: math.unit(11, "feet"),
  24358. weight: math.unit(1000, "lb"),
  24359. name: "Front",
  24360. image: {
  24361. source: "./media/characters/alex/front.svg",
  24362. bottom: 44.5 / 620
  24363. }
  24364. },
  24365. },
  24366. [
  24367. {
  24368. name: "Micro",
  24369. height: math.unit(5, "inches")
  24370. },
  24371. {
  24372. name: "Normal",
  24373. height: math.unit(11, "feet"),
  24374. default: true
  24375. },
  24376. {
  24377. name: "Macro",
  24378. height: math.unit(9.5e9, "feet")
  24379. },
  24380. {
  24381. name: "Max Size",
  24382. height: math.unit(1.4e283, "yottameters")
  24383. },
  24384. ]
  24385. ))
  24386. characterMakers.push(() => makeCharacter(
  24387. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24388. {
  24389. female: {
  24390. height: math.unit(29.9, "m"),
  24391. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24392. name: "Female",
  24393. image: {
  24394. source: "./media/characters/zenari/female.svg",
  24395. extra: 3281.6 / 3217,
  24396. bottom: 72.2 / 3353
  24397. }
  24398. },
  24399. male: {
  24400. height: math.unit(27.7, "m"),
  24401. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24402. name: "Male",
  24403. image: {
  24404. source: "./media/characters/zenari/male.svg",
  24405. extra: 3008 / 2991,
  24406. bottom: 54.6 / 3069
  24407. }
  24408. },
  24409. },
  24410. [
  24411. {
  24412. name: "Macro",
  24413. height: math.unit(29.7, "meters"),
  24414. default: true
  24415. },
  24416. ]
  24417. ))
  24418. characterMakers.push(() => makeCharacter(
  24419. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24420. {
  24421. female: {
  24422. height: math.unit(23.8, "m"),
  24423. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24424. name: "Female",
  24425. image: {
  24426. source: "./media/characters/mactarian/female.svg",
  24427. extra: 2662 / 2569,
  24428. bottom: 73 / 2736
  24429. }
  24430. },
  24431. male: {
  24432. height: math.unit(23.8, "m"),
  24433. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24434. name: "Male",
  24435. image: {
  24436. source: "./media/characters/mactarian/male.svg",
  24437. extra: 2673 / 2600,
  24438. bottom: 76 / 2750
  24439. }
  24440. },
  24441. },
  24442. [
  24443. {
  24444. name: "Macro",
  24445. height: math.unit(23.8, "meters"),
  24446. default: true
  24447. },
  24448. ]
  24449. ))
  24450. characterMakers.push(() => makeCharacter(
  24451. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24452. {
  24453. female: {
  24454. height: math.unit(19.3, "m"),
  24455. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24456. name: "Female",
  24457. image: {
  24458. source: "./media/characters/umok/female.svg",
  24459. extra: 2186 / 2078,
  24460. bottom: 87 / 2277
  24461. }
  24462. },
  24463. male: {
  24464. height: math.unit(19.5, "m"),
  24465. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24466. name: "Male",
  24467. image: {
  24468. source: "./media/characters/umok/male.svg",
  24469. extra: 2233 / 2140,
  24470. bottom: 24.4 / 2258
  24471. }
  24472. },
  24473. },
  24474. [
  24475. {
  24476. name: "Macro",
  24477. height: math.unit(19.3, "meters"),
  24478. default: true
  24479. },
  24480. ]
  24481. ))
  24482. characterMakers.push(() => makeCharacter(
  24483. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24484. {
  24485. female: {
  24486. height: math.unit(26.15, "m"),
  24487. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24488. name: "Female",
  24489. image: {
  24490. source: "./media/characters/joraxian/female.svg",
  24491. extra: 2912 / 2824,
  24492. bottom: 36 / 2956
  24493. }
  24494. },
  24495. male: {
  24496. height: math.unit(25.4, "m"),
  24497. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24498. name: "Male",
  24499. image: {
  24500. source: "./media/characters/joraxian/male.svg",
  24501. extra: 2877 / 2721,
  24502. bottom: 82 / 2967
  24503. }
  24504. },
  24505. },
  24506. [
  24507. {
  24508. name: "Macro",
  24509. height: math.unit(26.15, "meters"),
  24510. default: true
  24511. },
  24512. ]
  24513. ))
  24514. characterMakers.push(() => makeCharacter(
  24515. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24516. {
  24517. female: {
  24518. height: math.unit(21.6, "m"),
  24519. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24520. name: "Female",
  24521. image: {
  24522. source: "./media/characters/sthara/female.svg",
  24523. extra: 2516 / 2347,
  24524. bottom: 21.5 / 2537
  24525. }
  24526. },
  24527. male: {
  24528. height: math.unit(24, "m"),
  24529. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24530. name: "Male",
  24531. image: {
  24532. source: "./media/characters/sthara/male.svg",
  24533. extra: 2732 / 2607,
  24534. bottom: 23 / 2732
  24535. }
  24536. },
  24537. },
  24538. [
  24539. {
  24540. name: "Macro",
  24541. height: math.unit(21.6, "meters"),
  24542. default: true
  24543. },
  24544. ]
  24545. ))
  24546. characterMakers.push(() => makeCharacter(
  24547. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24548. {
  24549. front: {
  24550. height: math.unit(6 + 4 / 12, "feet"),
  24551. weight: math.unit(175, "lb"),
  24552. name: "Front",
  24553. image: {
  24554. source: "./media/characters/luka-bryzant/front.svg",
  24555. extra: 311 / 289,
  24556. bottom: 4 / 315
  24557. }
  24558. },
  24559. back: {
  24560. height: math.unit(6 + 4 / 12, "feet"),
  24561. weight: math.unit(175, "lb"),
  24562. name: "Back",
  24563. image: {
  24564. source: "./media/characters/luka-bryzant/back.svg",
  24565. extra: 311 / 289,
  24566. bottom: 3.8 / 313.7
  24567. }
  24568. },
  24569. },
  24570. [
  24571. {
  24572. name: "Micro",
  24573. height: math.unit(10, "inches")
  24574. },
  24575. {
  24576. name: "Normal",
  24577. height: math.unit(6 + 4 / 12, "feet"),
  24578. default: true
  24579. },
  24580. {
  24581. name: "Large",
  24582. height: math.unit(12, "feet")
  24583. },
  24584. ]
  24585. ))
  24586. characterMakers.push(() => makeCharacter(
  24587. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24588. {
  24589. front: {
  24590. height: math.unit(5 + 7 / 12, "feet"),
  24591. weight: math.unit(185, "lb"),
  24592. name: "Front",
  24593. image: {
  24594. source: "./media/characters/aman-aquila/front.svg",
  24595. extra: 1013 / 976,
  24596. bottom: 45.6 / 1057
  24597. }
  24598. },
  24599. side: {
  24600. height: math.unit(5 + 7 / 12, "feet"),
  24601. weight: math.unit(185, "lb"),
  24602. name: "Side",
  24603. image: {
  24604. source: "./media/characters/aman-aquila/side.svg",
  24605. extra: 1054 / 1011,
  24606. bottom: 15 / 1070
  24607. }
  24608. },
  24609. back: {
  24610. height: math.unit(5 + 7 / 12, "feet"),
  24611. weight: math.unit(185, "lb"),
  24612. name: "Back",
  24613. image: {
  24614. source: "./media/characters/aman-aquila/back.svg",
  24615. extra: 1026 / 970,
  24616. bottom: 12 / 1039
  24617. }
  24618. },
  24619. head: {
  24620. height: math.unit(1.211, "feet"),
  24621. name: "Head",
  24622. image: {
  24623. source: "./media/characters/aman-aquila/head.svg",
  24624. }
  24625. },
  24626. },
  24627. [
  24628. {
  24629. name: "Minimicro",
  24630. height: math.unit(0.057, "inches")
  24631. },
  24632. {
  24633. name: "Micro",
  24634. height: math.unit(7, "inches")
  24635. },
  24636. {
  24637. name: "Mini",
  24638. height: math.unit(3 + 7 / 12, "feet")
  24639. },
  24640. {
  24641. name: "Normal",
  24642. height: math.unit(5 + 7 / 12, "feet"),
  24643. default: true
  24644. },
  24645. {
  24646. name: "Macro",
  24647. height: math.unit(157 + 7 / 12, "feet")
  24648. },
  24649. {
  24650. name: "Megamacro",
  24651. height: math.unit(1557 + 7 / 12, "feet")
  24652. },
  24653. {
  24654. name: "Gigamacro",
  24655. height: math.unit(15557 + 7 / 12, "feet")
  24656. },
  24657. ]
  24658. ))
  24659. characterMakers.push(() => makeCharacter(
  24660. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24661. {
  24662. front: {
  24663. height: math.unit(3 + 2 / 12, "inches"),
  24664. weight: math.unit(0.3, "ounces"),
  24665. name: "Front",
  24666. image: {
  24667. source: "./media/characters/hiphae/front.svg",
  24668. extra: 1931 / 1683,
  24669. bottom: 24 / 1955
  24670. }
  24671. },
  24672. },
  24673. [
  24674. {
  24675. name: "Normal",
  24676. height: math.unit(3 + 1 / 2, "inches"),
  24677. default: true
  24678. },
  24679. ]
  24680. ))
  24681. characterMakers.push(() => makeCharacter(
  24682. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24683. {
  24684. front: {
  24685. height: math.unit(5 + 10 / 12, "feet"),
  24686. weight: math.unit(165, "lb"),
  24687. name: "Front",
  24688. image: {
  24689. source: "./media/characters/nicky/front.svg",
  24690. extra: 3144 / 2886,
  24691. bottom: 45.6 / 3192
  24692. }
  24693. },
  24694. back: {
  24695. height: math.unit(5 + 10 / 12, "feet"),
  24696. weight: math.unit(165, "lb"),
  24697. name: "Back",
  24698. image: {
  24699. source: "./media/characters/nicky/back.svg",
  24700. extra: 3055 / 2804,
  24701. bottom: 28.4 / 3087
  24702. }
  24703. },
  24704. frontclothed: {
  24705. height: math.unit(5 + 10 / 12, "feet"),
  24706. weight: math.unit(165, "lb"),
  24707. name: "Front-clothed",
  24708. image: {
  24709. source: "./media/characters/nicky/front-clothed.svg",
  24710. extra: 3184.9 / 2926.9,
  24711. bottom: 86.5 / 3239.9
  24712. }
  24713. },
  24714. foot: {
  24715. height: math.unit(1.16, "feet"),
  24716. name: "Foot",
  24717. image: {
  24718. source: "./media/characters/nicky/foot.svg"
  24719. }
  24720. },
  24721. feet: {
  24722. height: math.unit(1.34, "feet"),
  24723. name: "Feet",
  24724. image: {
  24725. source: "./media/characters/nicky/feet.svg"
  24726. }
  24727. },
  24728. maw: {
  24729. height: math.unit(0.9, "feet"),
  24730. name: "Maw",
  24731. image: {
  24732. source: "./media/characters/nicky/maw.svg"
  24733. }
  24734. },
  24735. },
  24736. [
  24737. {
  24738. name: "Normal",
  24739. height: math.unit(5 + 10 / 12, "feet"),
  24740. default: true
  24741. },
  24742. {
  24743. name: "Macro",
  24744. height: math.unit(60, "feet")
  24745. },
  24746. {
  24747. name: "Megamacro",
  24748. height: math.unit(1, "mile")
  24749. },
  24750. ]
  24751. ))
  24752. characterMakers.push(() => makeCharacter(
  24753. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24754. {
  24755. side: {
  24756. height: math.unit(10, "feet"),
  24757. weight: math.unit(600, "lb"),
  24758. name: "Side",
  24759. image: {
  24760. source: "./media/characters/blair/side.svg",
  24761. bottom: 16.6 / 475,
  24762. extra: 458 / 431
  24763. }
  24764. },
  24765. },
  24766. [
  24767. {
  24768. name: "Micro",
  24769. height: math.unit(8, "inches")
  24770. },
  24771. {
  24772. name: "Normal",
  24773. height: math.unit(10, "feet"),
  24774. default: true
  24775. },
  24776. {
  24777. name: "Macro",
  24778. height: math.unit(180, "feet")
  24779. },
  24780. ]
  24781. ))
  24782. characterMakers.push(() => makeCharacter(
  24783. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24784. {
  24785. front: {
  24786. height: math.unit(5 + 4 / 12, "feet"),
  24787. weight: math.unit(125, "lb"),
  24788. name: "Front",
  24789. image: {
  24790. source: "./media/characters/fisher/front.svg",
  24791. extra: 444 / 390,
  24792. bottom: 2 / 444.8
  24793. }
  24794. },
  24795. },
  24796. [
  24797. {
  24798. name: "Micro",
  24799. height: math.unit(4, "inches")
  24800. },
  24801. {
  24802. name: "Normal",
  24803. height: math.unit(5 + 4 / 12, "feet"),
  24804. default: true
  24805. },
  24806. {
  24807. name: "Macro",
  24808. height: math.unit(100, "feet")
  24809. },
  24810. ]
  24811. ))
  24812. characterMakers.push(() => makeCharacter(
  24813. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24814. {
  24815. front: {
  24816. height: math.unit(6.71, "feet"),
  24817. weight: math.unit(200, "lb"),
  24818. capacity: math.unit(1000000, "people"),
  24819. name: "Front",
  24820. image: {
  24821. source: "./media/characters/gliss/front.svg",
  24822. extra: 2347 / 2231,
  24823. bottom: 113 / 2462
  24824. }
  24825. },
  24826. hammerspaceSize: {
  24827. height: math.unit(6.71 * 717, "feet"),
  24828. weight: math.unit(200, "lb"),
  24829. capacity: math.unit(1000000, "people"),
  24830. name: "Hammerspace Size",
  24831. image: {
  24832. source: "./media/characters/gliss/front.svg",
  24833. extra: 2347 / 2231,
  24834. bottom: 113 / 2462
  24835. }
  24836. },
  24837. },
  24838. [
  24839. {
  24840. name: "Normal",
  24841. height: math.unit(6.71, "feet"),
  24842. default: true
  24843. },
  24844. ]
  24845. ))
  24846. characterMakers.push(() => makeCharacter(
  24847. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24848. {
  24849. side: {
  24850. height: math.unit(1.44, "m"),
  24851. weight: math.unit(80, "kg"),
  24852. name: "Side",
  24853. image: {
  24854. source: "./media/characters/dune-anderson/side.svg",
  24855. bottom: 49 / 1426
  24856. }
  24857. },
  24858. },
  24859. [
  24860. {
  24861. name: "Wolf-sized",
  24862. height: math.unit(1.44, "meters")
  24863. },
  24864. {
  24865. name: "Normal",
  24866. height: math.unit(5.05, "meters"),
  24867. default: true
  24868. },
  24869. {
  24870. name: "Big",
  24871. height: math.unit(14.4, "meters")
  24872. },
  24873. {
  24874. name: "Huge",
  24875. height: math.unit(144, "meters")
  24876. },
  24877. ]
  24878. ))
  24879. characterMakers.push(() => makeCharacter(
  24880. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24881. {
  24882. front: {
  24883. height: math.unit(7, "feet"),
  24884. weight: math.unit(425, "lb"),
  24885. name: "Front",
  24886. image: {
  24887. source: "./media/characters/hind/front.svg",
  24888. extra: 2091 / 1860,
  24889. bottom: 129 / 2220
  24890. }
  24891. },
  24892. back: {
  24893. height: math.unit(7, "feet"),
  24894. weight: math.unit(425, "lb"),
  24895. name: "Back",
  24896. image: {
  24897. source: "./media/characters/hind/back.svg",
  24898. extra: 2091 / 1860,
  24899. bottom: 24.6 / 2309
  24900. }
  24901. },
  24902. tail: {
  24903. height: math.unit(2.8, "feet"),
  24904. name: "Tail",
  24905. image: {
  24906. source: "./media/characters/hind/tail.svg"
  24907. }
  24908. },
  24909. head: {
  24910. height: math.unit(2.55, "feet"),
  24911. name: "Head",
  24912. image: {
  24913. source: "./media/characters/hind/head.svg"
  24914. }
  24915. },
  24916. },
  24917. [
  24918. {
  24919. name: "XS",
  24920. height: math.unit(0.7, "feet")
  24921. },
  24922. {
  24923. name: "Normal",
  24924. height: math.unit(7, "feet"),
  24925. default: true
  24926. },
  24927. {
  24928. name: "XL",
  24929. height: math.unit(70, "feet")
  24930. },
  24931. ]
  24932. ))
  24933. characterMakers.push(() => makeCharacter(
  24934. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24935. {
  24936. front: {
  24937. height: math.unit(2.1, "meters"),
  24938. weight: math.unit(150, "lb"),
  24939. name: "Front",
  24940. image: {
  24941. source: "./media/characters/tharquench-sizestealer/front.svg",
  24942. extra: 1605/1470,
  24943. bottom: 36/1641
  24944. }
  24945. },
  24946. frontAlt: {
  24947. height: math.unit(2.1, "meters"),
  24948. weight: math.unit(150, "lb"),
  24949. name: "Front (Alt)",
  24950. image: {
  24951. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  24952. extra: 2318 / 2063,
  24953. bottom: 93.4 / 2410
  24954. }
  24955. },
  24956. },
  24957. [
  24958. {
  24959. name: "Nano",
  24960. height: math.unit(1, "mm")
  24961. },
  24962. {
  24963. name: "Micro",
  24964. height: math.unit(1, "cm")
  24965. },
  24966. {
  24967. name: "Normal",
  24968. height: math.unit(2.1, "meters"),
  24969. default: true
  24970. },
  24971. ]
  24972. ))
  24973. characterMakers.push(() => makeCharacter(
  24974. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24975. {
  24976. front: {
  24977. height: math.unit(7 + 5 / 12, "feet"),
  24978. weight: math.unit(357, "lb"),
  24979. name: "Front",
  24980. image: {
  24981. source: "./media/characters/solex-draconov/front.svg",
  24982. extra: 1993 / 1865,
  24983. bottom: 117 / 2111
  24984. }
  24985. },
  24986. },
  24987. [
  24988. {
  24989. name: "Natural Height",
  24990. height: math.unit(7 + 5 / 12, "feet"),
  24991. default: true
  24992. },
  24993. {
  24994. name: "Macro",
  24995. height: math.unit(350, "feet")
  24996. },
  24997. {
  24998. name: "Macro+",
  24999. height: math.unit(1000, "feet")
  25000. },
  25001. {
  25002. name: "Megamacro",
  25003. height: math.unit(20, "km")
  25004. },
  25005. {
  25006. name: "Megamacro+",
  25007. height: math.unit(1000, "km")
  25008. },
  25009. {
  25010. name: "Gigamacro",
  25011. height: math.unit(2.5, "Gm")
  25012. },
  25013. {
  25014. name: "Teramacro",
  25015. height: math.unit(15, "Tm")
  25016. },
  25017. {
  25018. name: "Galactic",
  25019. height: math.unit(30, "Zm")
  25020. },
  25021. {
  25022. name: "Universal",
  25023. height: math.unit(21000, "Ym")
  25024. },
  25025. {
  25026. name: "Omniversal",
  25027. height: math.unit(9.861e50, "Ym")
  25028. },
  25029. {
  25030. name: "Existential",
  25031. height: math.unit(1e300, "meters")
  25032. },
  25033. ]
  25034. ))
  25035. characterMakers.push(() => makeCharacter(
  25036. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25037. {
  25038. side: {
  25039. height: math.unit(25, "feet"),
  25040. weight: math.unit(90000, "lb"),
  25041. name: "Side",
  25042. image: {
  25043. source: "./media/characters/mandarax/side.svg",
  25044. extra: 614 / 332,
  25045. bottom: 55 / 630
  25046. }
  25047. },
  25048. head: {
  25049. height: math.unit(11.4, "feet"),
  25050. name: "Head",
  25051. image: {
  25052. source: "./media/characters/mandarax/head.svg"
  25053. }
  25054. },
  25055. belly: {
  25056. height: math.unit(33, "feet"),
  25057. name: "Belly",
  25058. capacity: math.unit(500, "people"),
  25059. image: {
  25060. source: "./media/characters/mandarax/belly.svg"
  25061. }
  25062. },
  25063. dick: {
  25064. height: math.unit(8.46, "feet"),
  25065. name: "Dick",
  25066. image: {
  25067. source: "./media/characters/mandarax/dick.svg"
  25068. }
  25069. },
  25070. top: {
  25071. height: math.unit(28, "meters"),
  25072. name: "Top",
  25073. image: {
  25074. source: "./media/characters/mandarax/top.svg"
  25075. }
  25076. },
  25077. },
  25078. [
  25079. {
  25080. name: "Normal",
  25081. height: math.unit(25, "feet"),
  25082. default: true
  25083. },
  25084. ]
  25085. ))
  25086. characterMakers.push(() => makeCharacter(
  25087. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25088. {
  25089. front: {
  25090. height: math.unit(5, "feet"),
  25091. weight: math.unit(90, "lb"),
  25092. name: "Front",
  25093. image: {
  25094. source: "./media/characters/pixil/front.svg",
  25095. extra: 2000 / 1618,
  25096. bottom: 12.3 / 2011
  25097. }
  25098. },
  25099. },
  25100. [
  25101. {
  25102. name: "Normal",
  25103. height: math.unit(5, "feet"),
  25104. default: true
  25105. },
  25106. {
  25107. name: "Megamacro",
  25108. height: math.unit(10, "miles"),
  25109. },
  25110. ]
  25111. ))
  25112. characterMakers.push(() => makeCharacter(
  25113. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25114. {
  25115. front: {
  25116. height: math.unit(7 + 2 / 12, "feet"),
  25117. weight: math.unit(200, "lb"),
  25118. name: "Front",
  25119. image: {
  25120. source: "./media/characters/angel/front.svg",
  25121. extra: 1830 / 1737,
  25122. bottom: 22.6 / 1854,
  25123. }
  25124. },
  25125. },
  25126. [
  25127. {
  25128. name: "Normal",
  25129. height: math.unit(7 + 2 / 12, "feet"),
  25130. default: true
  25131. },
  25132. {
  25133. name: "Macro",
  25134. height: math.unit(1000, "feet")
  25135. },
  25136. {
  25137. name: "Megamacro",
  25138. height: math.unit(2, "miles")
  25139. },
  25140. {
  25141. name: "Gigamacro",
  25142. height: math.unit(20, "earths")
  25143. },
  25144. ]
  25145. ))
  25146. characterMakers.push(() => makeCharacter(
  25147. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25148. {
  25149. front: {
  25150. height: math.unit(5, "feet"),
  25151. weight: math.unit(180, "lb"),
  25152. name: "Front",
  25153. image: {
  25154. source: "./media/characters/mekana/front.svg",
  25155. extra: 1671 / 1605,
  25156. bottom: 3.5 / 1691
  25157. }
  25158. },
  25159. side: {
  25160. height: math.unit(5, "feet"),
  25161. weight: math.unit(180, "lb"),
  25162. name: "Side",
  25163. image: {
  25164. source: "./media/characters/mekana/side.svg",
  25165. extra: 1671 / 1605,
  25166. bottom: 3.5 / 1691
  25167. }
  25168. },
  25169. back: {
  25170. height: math.unit(5, "feet"),
  25171. weight: math.unit(180, "lb"),
  25172. name: "Back",
  25173. image: {
  25174. source: "./media/characters/mekana/back.svg",
  25175. extra: 1671 / 1605,
  25176. bottom: 3.5 / 1691
  25177. }
  25178. },
  25179. },
  25180. [
  25181. {
  25182. name: "Normal",
  25183. height: math.unit(5, "feet"),
  25184. default: true
  25185. },
  25186. ]
  25187. ))
  25188. characterMakers.push(() => makeCharacter(
  25189. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25190. {
  25191. front: {
  25192. height: math.unit(4 + 6 / 12, "feet"),
  25193. weight: math.unit(80, "lb"),
  25194. name: "Front",
  25195. image: {
  25196. source: "./media/characters/pixie/front.svg",
  25197. extra: 1924 / 1825,
  25198. bottom: 22.4 / 1946
  25199. }
  25200. },
  25201. },
  25202. [
  25203. {
  25204. name: "Normal",
  25205. height: math.unit(4 + 6 / 12, "feet"),
  25206. default: true
  25207. },
  25208. {
  25209. name: "Macro",
  25210. height: math.unit(40, "feet")
  25211. },
  25212. ]
  25213. ))
  25214. characterMakers.push(() => makeCharacter(
  25215. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25216. {
  25217. front: {
  25218. height: math.unit(2.1, "meters"),
  25219. weight: math.unit(200, "lb"),
  25220. name: "Front",
  25221. image: {
  25222. source: "./media/characters/the-lascivious/front.svg",
  25223. extra: 1 / 0.893,
  25224. bottom: 3.5 / 573.7
  25225. }
  25226. },
  25227. },
  25228. [
  25229. {
  25230. name: "Human Scale",
  25231. height: math.unit(2.1, "meters")
  25232. },
  25233. {
  25234. name: "Wolxi Scale",
  25235. height: math.unit(46.2, "m"),
  25236. default: true
  25237. },
  25238. {
  25239. name: "Boinker of Buildings",
  25240. height: math.unit(10, "km")
  25241. },
  25242. {
  25243. name: "Shagger of Skyscrapers",
  25244. height: math.unit(40, "km")
  25245. },
  25246. {
  25247. name: "Banger of Boroughs",
  25248. height: math.unit(4000, "km")
  25249. },
  25250. {
  25251. name: "Screwer of States",
  25252. height: math.unit(100000, "km")
  25253. },
  25254. {
  25255. name: "Pounder of Planets",
  25256. height: math.unit(2000000, "km")
  25257. },
  25258. ]
  25259. ))
  25260. characterMakers.push(() => makeCharacter(
  25261. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25262. {
  25263. front: {
  25264. height: math.unit(6, "feet"),
  25265. weight: math.unit(150, "lb"),
  25266. name: "Front",
  25267. image: {
  25268. source: "./media/characters/aj/front.svg",
  25269. extra: 2039 / 1562,
  25270. bottom: 40 / 2079
  25271. }
  25272. },
  25273. },
  25274. [
  25275. {
  25276. name: "Normal",
  25277. height: math.unit(11 + 6 / 12, "feet"),
  25278. default: true
  25279. },
  25280. {
  25281. name: "Megamacro",
  25282. height: math.unit(60, "megameters")
  25283. },
  25284. ]
  25285. ))
  25286. characterMakers.push(() => makeCharacter(
  25287. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25288. {
  25289. side: {
  25290. height: math.unit(31 + 8 / 12, "feet"),
  25291. weight: math.unit(75000, "kg"),
  25292. name: "Side",
  25293. image: {
  25294. source: "./media/characters/koros/side.svg",
  25295. extra: 1442 / 1297,
  25296. bottom: 122.7 / 1562
  25297. }
  25298. },
  25299. dicksKingsCrown: {
  25300. height: math.unit(6, "feet"),
  25301. name: "Dicks (King's Crown)",
  25302. image: {
  25303. source: "./media/characters/koros/dicks-kings-crown.svg"
  25304. }
  25305. },
  25306. dicksTailSet: {
  25307. height: math.unit(3, "feet"),
  25308. name: "Dicks (Tail Set)",
  25309. image: {
  25310. source: "./media/characters/koros/dicks-tail-set.svg"
  25311. }
  25312. },
  25313. dickCumming: {
  25314. height: math.unit(7.98, "feet"),
  25315. name: "Dick (Cumming)",
  25316. image: {
  25317. source: "./media/characters/koros/dick-cumming.svg"
  25318. }
  25319. },
  25320. dicksBack: {
  25321. height: math.unit(5.9, "feet"),
  25322. name: "Dicks (Back)",
  25323. image: {
  25324. source: "./media/characters/koros/dicks-back.svg"
  25325. }
  25326. },
  25327. dicksFront: {
  25328. height: math.unit(3.72, "feet"),
  25329. name: "Dicks (Front)",
  25330. image: {
  25331. source: "./media/characters/koros/dicks-front.svg"
  25332. }
  25333. },
  25334. dicksPeeking: {
  25335. height: math.unit(3.0, "feet"),
  25336. name: "Dicks (Peeking)",
  25337. image: {
  25338. source: "./media/characters/koros/dicks-peeking.svg"
  25339. }
  25340. },
  25341. eye: {
  25342. height: math.unit(1.7, "feet"),
  25343. name: "Eye",
  25344. image: {
  25345. source: "./media/characters/koros/eye.svg"
  25346. }
  25347. },
  25348. headFront: {
  25349. height: math.unit(11.69, "feet"),
  25350. name: "Head (Front)",
  25351. image: {
  25352. source: "./media/characters/koros/head-front.svg"
  25353. }
  25354. },
  25355. headSide: {
  25356. height: math.unit(14, "feet"),
  25357. name: "Head (Side)",
  25358. image: {
  25359. source: "./media/characters/koros/head-side.svg"
  25360. }
  25361. },
  25362. leg: {
  25363. height: math.unit(17, "feet"),
  25364. name: "Leg",
  25365. image: {
  25366. source: "./media/characters/koros/leg.svg"
  25367. }
  25368. },
  25369. mawSide: {
  25370. height: math.unit(12.8, "feet"),
  25371. name: "Maw (Side)",
  25372. image: {
  25373. source: "./media/characters/koros/maw-side.svg"
  25374. }
  25375. },
  25376. mawSpitting: {
  25377. height: math.unit(17, "feet"),
  25378. name: "Maw (Spitting)",
  25379. image: {
  25380. source: "./media/characters/koros/maw-spitting.svg"
  25381. }
  25382. },
  25383. slit: {
  25384. height: math.unit(2.8, "feet"),
  25385. name: "Slit",
  25386. image: {
  25387. source: "./media/characters/koros/slit.svg"
  25388. }
  25389. },
  25390. stomach: {
  25391. height: math.unit(6.8, "feet"),
  25392. capacity: math.unit(20, "people"),
  25393. name: "Stomach",
  25394. image: {
  25395. source: "./media/characters/koros/stomach.svg"
  25396. }
  25397. },
  25398. wingspanBottom: {
  25399. height: math.unit(114, "feet"),
  25400. name: "Wingspan (Bottom)",
  25401. image: {
  25402. source: "./media/characters/koros/wingspan-bottom.svg"
  25403. }
  25404. },
  25405. wingspanTop: {
  25406. height: math.unit(104, "feet"),
  25407. name: "Wingspan (Top)",
  25408. image: {
  25409. source: "./media/characters/koros/wingspan-top.svg"
  25410. }
  25411. },
  25412. },
  25413. [
  25414. {
  25415. name: "Normal",
  25416. height: math.unit(31 + 8 / 12, "feet"),
  25417. default: true
  25418. },
  25419. ]
  25420. ))
  25421. characterMakers.push(() => makeCharacter(
  25422. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25423. {
  25424. front: {
  25425. height: math.unit(18 + 5 / 12, "feet"),
  25426. weight: math.unit(3750, "kg"),
  25427. name: "Front",
  25428. image: {
  25429. source: "./media/characters/vexx/front.svg",
  25430. extra: 426 / 396,
  25431. bottom: 31.5 / 458
  25432. }
  25433. },
  25434. maw: {
  25435. height: math.unit(6, "feet"),
  25436. name: "Maw",
  25437. image: {
  25438. source: "./media/characters/vexx/maw.svg"
  25439. }
  25440. },
  25441. },
  25442. [
  25443. {
  25444. name: "Normal",
  25445. height: math.unit(18 + 5 / 12, "feet"),
  25446. default: true
  25447. },
  25448. ]
  25449. ))
  25450. characterMakers.push(() => makeCharacter(
  25451. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25452. {
  25453. front: {
  25454. height: math.unit(17 + 6 / 12, "feet"),
  25455. weight: math.unit(150, "lb"),
  25456. name: "Front",
  25457. image: {
  25458. source: "./media/characters/baadra/front.svg",
  25459. extra: 3137 / 2890,
  25460. bottom: 168.4 / 3305
  25461. }
  25462. },
  25463. back: {
  25464. height: math.unit(17 + 6 / 12, "feet"),
  25465. weight: math.unit(150, "lb"),
  25466. name: "Back",
  25467. image: {
  25468. source: "./media/characters/baadra/back.svg",
  25469. extra: 3142 / 2890,
  25470. bottom: 220 / 3371
  25471. }
  25472. },
  25473. head: {
  25474. height: math.unit(5.45, "feet"),
  25475. name: "Head",
  25476. image: {
  25477. source: "./media/characters/baadra/head.svg"
  25478. }
  25479. },
  25480. headAngry: {
  25481. height: math.unit(4.95, "feet"),
  25482. name: "Head (Angry)",
  25483. image: {
  25484. source: "./media/characters/baadra/head-angry.svg"
  25485. }
  25486. },
  25487. headOpen: {
  25488. height: math.unit(6, "feet"),
  25489. name: "Head (Open)",
  25490. image: {
  25491. source: "./media/characters/baadra/head-open.svg"
  25492. }
  25493. },
  25494. },
  25495. [
  25496. {
  25497. name: "Normal",
  25498. height: math.unit(17 + 6 / 12, "feet"),
  25499. default: true
  25500. },
  25501. ]
  25502. ))
  25503. characterMakers.push(() => makeCharacter(
  25504. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25505. {
  25506. front: {
  25507. height: math.unit(7 + 3 / 12, "feet"),
  25508. weight: math.unit(180, "lb"),
  25509. name: "Front",
  25510. image: {
  25511. source: "./media/characters/juri/front.svg",
  25512. extra: 1401 / 1237,
  25513. bottom: 18.5 / 1418
  25514. }
  25515. },
  25516. side: {
  25517. height: math.unit(7 + 3 / 12, "feet"),
  25518. weight: math.unit(180, "lb"),
  25519. name: "Side",
  25520. image: {
  25521. source: "./media/characters/juri/side.svg",
  25522. extra: 1424 / 1242,
  25523. bottom: 18.5 / 1447
  25524. }
  25525. },
  25526. sitting: {
  25527. height: math.unit(6, "feet"),
  25528. weight: math.unit(180, "lb"),
  25529. name: "Sitting",
  25530. image: {
  25531. source: "./media/characters/juri/sitting.svg",
  25532. extra: 1270 / 1143,
  25533. bottom: 100 / 1343
  25534. }
  25535. },
  25536. back: {
  25537. height: math.unit(7 + 3 / 12, "feet"),
  25538. weight: math.unit(180, "lb"),
  25539. name: "Back",
  25540. image: {
  25541. source: "./media/characters/juri/back.svg",
  25542. extra: 1377 / 1240,
  25543. bottom: 23.7 / 1405
  25544. }
  25545. },
  25546. maw: {
  25547. height: math.unit(2.8, "feet"),
  25548. name: "Maw",
  25549. image: {
  25550. source: "./media/characters/juri/maw.svg"
  25551. }
  25552. },
  25553. stomach: {
  25554. height: math.unit(0.89, "feet"),
  25555. capacity: math.unit(4, "liters"),
  25556. name: "Stomach",
  25557. image: {
  25558. source: "./media/characters/juri/stomach.svg"
  25559. }
  25560. },
  25561. },
  25562. [
  25563. {
  25564. name: "Normal",
  25565. height: math.unit(7 + 3 / 12, "feet"),
  25566. default: true
  25567. },
  25568. ]
  25569. ))
  25570. characterMakers.push(() => makeCharacter(
  25571. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25572. {
  25573. fox: {
  25574. height: math.unit(5 + 6 / 12, "feet"),
  25575. weight: math.unit(140, "lb"),
  25576. name: "Fox",
  25577. image: {
  25578. source: "./media/characters/maxene-sita/fox.svg",
  25579. extra: 146 / 138,
  25580. bottom: 2.1 / 148.19
  25581. }
  25582. },
  25583. foxLaying: {
  25584. height: math.unit(1.70, "feet"),
  25585. weight: math.unit(140, "lb"),
  25586. name: "Fox (Laying)",
  25587. image: {
  25588. source: "./media/characters/maxene-sita/fox-laying.svg",
  25589. extra: 910 / 572,
  25590. bottom: 71 / 981
  25591. }
  25592. },
  25593. kitsune: {
  25594. height: math.unit(10, "feet"),
  25595. weight: math.unit(800, "lb"),
  25596. name: "Kitsune",
  25597. image: {
  25598. source: "./media/characters/maxene-sita/kitsune.svg",
  25599. extra: 185 / 176,
  25600. bottom: 4.7 / 189.9
  25601. }
  25602. },
  25603. hellhound: {
  25604. height: math.unit(10, "feet"),
  25605. weight: math.unit(700, "lb"),
  25606. name: "Hellhound",
  25607. image: {
  25608. source: "./media/characters/maxene-sita/hellhound.svg",
  25609. extra: 1600 / 1545,
  25610. bottom: 81 / 1681
  25611. }
  25612. },
  25613. },
  25614. [
  25615. {
  25616. name: "Normal",
  25617. height: math.unit(5 + 6 / 12, "feet"),
  25618. default: true
  25619. },
  25620. ]
  25621. ))
  25622. characterMakers.push(() => makeCharacter(
  25623. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25624. {
  25625. front: {
  25626. height: math.unit(3 + 4 / 12, "feet"),
  25627. weight: math.unit(70, "lb"),
  25628. name: "Front",
  25629. image: {
  25630. source: "./media/characters/maia/front.svg",
  25631. extra: 227 / 219.5,
  25632. bottom: 40 / 267
  25633. }
  25634. },
  25635. back: {
  25636. height: math.unit(3 + 4 / 12, "feet"),
  25637. weight: math.unit(70, "lb"),
  25638. name: "Back",
  25639. image: {
  25640. source: "./media/characters/maia/back.svg",
  25641. extra: 237 / 225
  25642. }
  25643. },
  25644. },
  25645. [
  25646. {
  25647. name: "Normal",
  25648. height: math.unit(3 + 4 / 12, "feet"),
  25649. default: true
  25650. },
  25651. ]
  25652. ))
  25653. characterMakers.push(() => makeCharacter(
  25654. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25655. {
  25656. front: {
  25657. height: math.unit(5 + 10 / 12, "feet"),
  25658. weight: math.unit(197, "lb"),
  25659. name: "Front",
  25660. image: {
  25661. source: "./media/characters/jabaro/front.svg",
  25662. extra: 225 / 216,
  25663. bottom: 5.06 / 230
  25664. }
  25665. },
  25666. back: {
  25667. height: math.unit(5 + 10 / 12, "feet"),
  25668. weight: math.unit(197, "lb"),
  25669. name: "Back",
  25670. image: {
  25671. source: "./media/characters/jabaro/back.svg",
  25672. extra: 225 / 219,
  25673. bottom: 1.9 / 227
  25674. }
  25675. },
  25676. },
  25677. [
  25678. {
  25679. name: "Normal",
  25680. height: math.unit(5 + 10 / 12, "feet"),
  25681. default: true
  25682. },
  25683. ]
  25684. ))
  25685. characterMakers.push(() => makeCharacter(
  25686. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25687. {
  25688. front: {
  25689. height: math.unit(5 + 8 / 12, "feet"),
  25690. weight: math.unit(139, "lb"),
  25691. name: "Front",
  25692. image: {
  25693. source: "./media/characters/risa/front.svg",
  25694. extra: 270 / 260,
  25695. bottom: 11.2 / 282
  25696. }
  25697. },
  25698. back: {
  25699. height: math.unit(5 + 8 / 12, "feet"),
  25700. weight: math.unit(139, "lb"),
  25701. name: "Back",
  25702. image: {
  25703. source: "./media/characters/risa/back.svg",
  25704. extra: 264 / 255,
  25705. bottom: 4 / 268
  25706. }
  25707. },
  25708. },
  25709. [
  25710. {
  25711. name: "Normal",
  25712. height: math.unit(5 + 8 / 12, "feet"),
  25713. default: true
  25714. },
  25715. ]
  25716. ))
  25717. characterMakers.push(() => makeCharacter(
  25718. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25719. {
  25720. front: {
  25721. height: math.unit(2 + 11 / 12, "feet"),
  25722. weight: math.unit(30, "lb"),
  25723. name: "Front",
  25724. image: {
  25725. source: "./media/characters/weatley/front.svg",
  25726. bottom: 10.7 / 414,
  25727. extra: 403.5 / 362
  25728. }
  25729. },
  25730. back: {
  25731. height: math.unit(2 + 11 / 12, "feet"),
  25732. weight: math.unit(30, "lb"),
  25733. name: "Back",
  25734. image: {
  25735. source: "./media/characters/weatley/back.svg",
  25736. bottom: 10.7 / 414,
  25737. extra: 403.5 / 362
  25738. }
  25739. },
  25740. },
  25741. [
  25742. {
  25743. name: "Normal",
  25744. height: math.unit(2 + 11 / 12, "feet"),
  25745. default: true
  25746. },
  25747. ]
  25748. ))
  25749. characterMakers.push(() => makeCharacter(
  25750. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25751. {
  25752. front: {
  25753. height: math.unit(5 + 2 / 12, "feet"),
  25754. weight: math.unit(50, "kg"),
  25755. name: "Front",
  25756. image: {
  25757. source: "./media/characters/mercury-crescent/front.svg",
  25758. extra: 1088 / 1033,
  25759. bottom: 18.9 / 1109
  25760. }
  25761. },
  25762. },
  25763. [
  25764. {
  25765. name: "Normal",
  25766. height: math.unit(5 + 2 / 12, "feet"),
  25767. default: true
  25768. },
  25769. ]
  25770. ))
  25771. characterMakers.push(() => makeCharacter(
  25772. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25773. {
  25774. front: {
  25775. height: math.unit(2, "feet"),
  25776. weight: math.unit(15, "kg"),
  25777. name: "Front",
  25778. image: {
  25779. source: "./media/characters/diamond-jones/front.svg",
  25780. extra: 727/723,
  25781. bottom: 46/773
  25782. }
  25783. },
  25784. },
  25785. [
  25786. {
  25787. name: "Normal",
  25788. height: math.unit(2, "feet"),
  25789. default: true
  25790. },
  25791. ]
  25792. ))
  25793. characterMakers.push(() => makeCharacter(
  25794. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25795. {
  25796. front: {
  25797. height: math.unit(3, "feet"),
  25798. weight: math.unit(30, "kg"),
  25799. name: "Front",
  25800. image: {
  25801. source: "./media/characters/sweet-bit/front.svg",
  25802. extra: 675 / 567,
  25803. bottom: 27.7 / 703
  25804. }
  25805. },
  25806. },
  25807. [
  25808. {
  25809. name: "Normal",
  25810. height: math.unit(3, "feet"),
  25811. default: true
  25812. },
  25813. ]
  25814. ))
  25815. characterMakers.push(() => makeCharacter(
  25816. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25817. {
  25818. side: {
  25819. height: math.unit(9.178, "feet"),
  25820. weight: math.unit(500, "lb"),
  25821. name: "Side",
  25822. image: {
  25823. source: "./media/characters/umbrazen/side.svg",
  25824. extra: 1730 / 1473,
  25825. bottom: 34.6 / 1765
  25826. }
  25827. },
  25828. },
  25829. [
  25830. {
  25831. name: "Normal",
  25832. height: math.unit(9.178, "feet"),
  25833. default: true
  25834. },
  25835. ]
  25836. ))
  25837. characterMakers.push(() => makeCharacter(
  25838. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25839. {
  25840. front: {
  25841. height: math.unit(10, "feet"),
  25842. weight: math.unit(750, "lb"),
  25843. name: "Front",
  25844. image: {
  25845. source: "./media/characters/arlist/front.svg",
  25846. extra: 961 / 778,
  25847. bottom: 6.2 / 986
  25848. }
  25849. },
  25850. },
  25851. [
  25852. {
  25853. name: "Normal",
  25854. height: math.unit(10, "feet"),
  25855. default: true
  25856. },
  25857. ]
  25858. ))
  25859. characterMakers.push(() => makeCharacter(
  25860. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25861. {
  25862. front: {
  25863. height: math.unit(5 + 1 / 12, "feet"),
  25864. weight: math.unit(110, "lb"),
  25865. name: "Front",
  25866. image: {
  25867. source: "./media/characters/aradel/front.svg",
  25868. extra: 324 / 303,
  25869. bottom: 3.6 / 329.4
  25870. }
  25871. },
  25872. },
  25873. [
  25874. {
  25875. name: "Normal",
  25876. height: math.unit(5 + 1 / 12, "feet"),
  25877. default: true
  25878. },
  25879. ]
  25880. ))
  25881. characterMakers.push(() => makeCharacter(
  25882. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25883. {
  25884. front: {
  25885. height: math.unit(3 + 8 / 12, "feet"),
  25886. weight: math.unit(50, "lb"),
  25887. name: "Front",
  25888. image: {
  25889. source: "./media/characters/serryn/front.svg",
  25890. extra: 1792 / 1656,
  25891. bottom: 43.5 / 1840
  25892. }
  25893. },
  25894. },
  25895. [
  25896. {
  25897. name: "Normal",
  25898. height: math.unit(3 + 8 / 12, "feet"),
  25899. default: true
  25900. },
  25901. ]
  25902. ))
  25903. characterMakers.push(() => makeCharacter(
  25904. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25905. {
  25906. front: {
  25907. height: math.unit(7 + 10 / 12, "feet"),
  25908. weight: math.unit(255, "lb"),
  25909. name: "Front",
  25910. image: {
  25911. source: "./media/characters/xavier-thyme/front.svg",
  25912. extra: 3733 / 3642,
  25913. bottom: 131 / 3869
  25914. }
  25915. },
  25916. frontRaven: {
  25917. height: math.unit(7 + 10 / 12, "feet"),
  25918. weight: math.unit(255, "lb"),
  25919. name: "Front (Raven)",
  25920. image: {
  25921. source: "./media/characters/xavier-thyme/front-raven.svg",
  25922. extra: 4385 / 3642,
  25923. bottom: 131 / 4517
  25924. }
  25925. },
  25926. },
  25927. [
  25928. {
  25929. name: "Normal",
  25930. height: math.unit(7 + 10 / 12, "feet"),
  25931. default: true
  25932. },
  25933. ]
  25934. ))
  25935. characterMakers.push(() => makeCharacter(
  25936. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25937. {
  25938. front: {
  25939. height: math.unit(1.6, "m"),
  25940. weight: math.unit(50, "kg"),
  25941. name: "Front",
  25942. image: {
  25943. source: "./media/characters/kiki/front.svg",
  25944. extra: 4682 / 3610,
  25945. bottom: 115 / 4777
  25946. }
  25947. },
  25948. },
  25949. [
  25950. {
  25951. name: "Normal",
  25952. height: math.unit(1.6, "meters"),
  25953. default: true
  25954. },
  25955. ]
  25956. ))
  25957. characterMakers.push(() => makeCharacter(
  25958. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25959. {
  25960. front: {
  25961. height: math.unit(50, "m"),
  25962. weight: math.unit(500, "tonnes"),
  25963. name: "Front",
  25964. image: {
  25965. source: "./media/characters/ryoko/front.svg",
  25966. extra: 4632 / 3926,
  25967. bottom: 193 / 4823
  25968. }
  25969. },
  25970. },
  25971. [
  25972. {
  25973. name: "Normal",
  25974. height: math.unit(50, "meters"),
  25975. default: true
  25976. },
  25977. ]
  25978. ))
  25979. characterMakers.push(() => makeCharacter(
  25980. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25981. {
  25982. front: {
  25983. height: math.unit(30, "m"),
  25984. weight: math.unit(22, "tonnes"),
  25985. name: "Front",
  25986. image: {
  25987. source: "./media/characters/elio/front.svg",
  25988. extra: 4582 / 3720,
  25989. bottom: 236 / 4828
  25990. }
  25991. },
  25992. },
  25993. [
  25994. {
  25995. name: "Normal",
  25996. height: math.unit(30, "meters"),
  25997. default: true
  25998. },
  25999. ]
  26000. ))
  26001. characterMakers.push(() => makeCharacter(
  26002. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26003. {
  26004. front: {
  26005. height: math.unit(6 + 3 / 12, "feet"),
  26006. weight: math.unit(120, "lb"),
  26007. name: "Front",
  26008. image: {
  26009. source: "./media/characters/azura/front.svg",
  26010. extra: 1149 / 1135,
  26011. bottom: 45 / 1194
  26012. }
  26013. },
  26014. frontClothed: {
  26015. height: math.unit(6 + 3 / 12, "feet"),
  26016. weight: math.unit(120, "lb"),
  26017. name: "Front (Clothed)",
  26018. image: {
  26019. source: "./media/characters/azura/front-clothed.svg",
  26020. extra: 1149 / 1135,
  26021. bottom: 45 / 1194
  26022. }
  26023. },
  26024. },
  26025. [
  26026. {
  26027. name: "Normal",
  26028. height: math.unit(6 + 3 / 12, "feet"),
  26029. default: true
  26030. },
  26031. {
  26032. name: "Macro",
  26033. height: math.unit(20 + 6 / 12, "feet")
  26034. },
  26035. {
  26036. name: "Megamacro",
  26037. height: math.unit(12, "miles")
  26038. },
  26039. {
  26040. name: "Gigamacro",
  26041. height: math.unit(10000, "miles")
  26042. },
  26043. {
  26044. name: "Teramacro",
  26045. height: math.unit(900000, "miles")
  26046. },
  26047. ]
  26048. ))
  26049. characterMakers.push(() => makeCharacter(
  26050. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26051. {
  26052. front: {
  26053. height: math.unit(12, "feet"),
  26054. weight: math.unit(1, "ton"),
  26055. capacity: math.unit(660000, "gallons"),
  26056. name: "Front",
  26057. image: {
  26058. source: "./media/characters/zeus/front.svg",
  26059. extra: 5005 / 4717,
  26060. bottom: 363 / 5388
  26061. }
  26062. },
  26063. },
  26064. [
  26065. {
  26066. name: "Normal",
  26067. height: math.unit(12, "feet")
  26068. },
  26069. {
  26070. name: "Preferred Size",
  26071. height: math.unit(0.5, "miles"),
  26072. default: true
  26073. },
  26074. {
  26075. name: "Giga Horse",
  26076. height: math.unit(300, "miles")
  26077. },
  26078. {
  26079. name: "Riding Planets",
  26080. height: math.unit(30, "megameters")
  26081. },
  26082. {
  26083. name: "Cosmic Giant",
  26084. height: math.unit(3, "zettameters")
  26085. },
  26086. {
  26087. name: "Breeding God",
  26088. height: math.unit(9.92e22, "yottameters")
  26089. },
  26090. ]
  26091. ))
  26092. characterMakers.push(() => makeCharacter(
  26093. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26094. {
  26095. side: {
  26096. height: math.unit(9, "feet"),
  26097. weight: math.unit(1500, "kg"),
  26098. name: "Side",
  26099. image: {
  26100. source: "./media/characters/fang/side.svg",
  26101. extra: 924 / 866,
  26102. bottom: 47.5 / 972.3
  26103. }
  26104. },
  26105. },
  26106. [
  26107. {
  26108. name: "Normal",
  26109. height: math.unit(9, "feet"),
  26110. default: true
  26111. },
  26112. {
  26113. name: "Macro",
  26114. height: math.unit(75 + 6 / 12, "feet")
  26115. },
  26116. {
  26117. name: "Teramacro",
  26118. height: math.unit(50000, "miles")
  26119. },
  26120. ]
  26121. ))
  26122. characterMakers.push(() => makeCharacter(
  26123. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26124. {
  26125. front: {
  26126. height: math.unit(10, "feet"),
  26127. weight: math.unit(2, "tons"),
  26128. name: "Front",
  26129. image: {
  26130. source: "./media/characters/rekhit/front.svg",
  26131. extra: 2796 / 2590,
  26132. bottom: 225 / 3022
  26133. }
  26134. },
  26135. },
  26136. [
  26137. {
  26138. name: "Normal",
  26139. height: math.unit(10, "feet"),
  26140. default: true
  26141. },
  26142. {
  26143. name: "Macro",
  26144. height: math.unit(500, "feet")
  26145. },
  26146. ]
  26147. ))
  26148. characterMakers.push(() => makeCharacter(
  26149. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26150. {
  26151. front: {
  26152. height: math.unit(7 + 6.451 / 12, "feet"),
  26153. weight: math.unit(310, "lb"),
  26154. name: "Front",
  26155. image: {
  26156. source: "./media/characters/dahlia-verrick/front.svg",
  26157. extra: 1488 / 1365,
  26158. bottom: 6.2 / 1495
  26159. }
  26160. },
  26161. back: {
  26162. height: math.unit(7 + 6.451 / 12, "feet"),
  26163. weight: math.unit(310, "lb"),
  26164. name: "Back",
  26165. image: {
  26166. source: "./media/characters/dahlia-verrick/back.svg",
  26167. extra: 1472 / 1351,
  26168. bottom: 5.28 / 1477
  26169. }
  26170. },
  26171. frontBusiness: {
  26172. height: math.unit(7 + 6.451 / 12, "feet"),
  26173. weight: math.unit(200, "lb"),
  26174. name: "Front (Business)",
  26175. image: {
  26176. source: "./media/characters/dahlia-verrick/front-business.svg",
  26177. extra: 1478 / 1381,
  26178. bottom: 5.5 / 1484
  26179. }
  26180. },
  26181. frontCasual: {
  26182. height: math.unit(7 + 6.451 / 12, "feet"),
  26183. weight: math.unit(200, "lb"),
  26184. name: "Front (Casual)",
  26185. image: {
  26186. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26187. extra: 1478 / 1381,
  26188. bottom: 5.5 / 1484
  26189. }
  26190. },
  26191. },
  26192. [
  26193. {
  26194. name: "Travel-Sized",
  26195. height: math.unit(7.45, "inches")
  26196. },
  26197. {
  26198. name: "Normal",
  26199. height: math.unit(7 + 6.451 / 12, "feet"),
  26200. default: true
  26201. },
  26202. {
  26203. name: "Hitting the Town",
  26204. height: math.unit(37 + 8 / 12, "feet")
  26205. },
  26206. {
  26207. name: "Stomp in the Suburbs",
  26208. height: math.unit(964 + 9.728 / 12, "feet")
  26209. },
  26210. {
  26211. name: "Sit on the City",
  26212. height: math.unit(61747 + 10.592 / 12, "feet")
  26213. },
  26214. {
  26215. name: "Glomp the Globe",
  26216. height: math.unit(252919327 + 4.832 / 12, "feet")
  26217. },
  26218. ]
  26219. ))
  26220. characterMakers.push(() => makeCharacter(
  26221. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26222. {
  26223. front: {
  26224. height: math.unit(6 + 4 / 12, "feet"),
  26225. weight: math.unit(320, "lb"),
  26226. name: "Front",
  26227. image: {
  26228. source: "./media/characters/balina-mahigan/front.svg",
  26229. extra: 447 / 428,
  26230. bottom: 18 / 466
  26231. }
  26232. },
  26233. back: {
  26234. height: math.unit(6 + 4 / 12, "feet"),
  26235. weight: math.unit(320, "lb"),
  26236. name: "Back",
  26237. image: {
  26238. source: "./media/characters/balina-mahigan/back.svg",
  26239. extra: 445 / 428,
  26240. bottom: 4.07 / 448
  26241. }
  26242. },
  26243. arm: {
  26244. height: math.unit(1.88, "feet"),
  26245. name: "Arm",
  26246. image: {
  26247. source: "./media/characters/balina-mahigan/arm.svg"
  26248. }
  26249. },
  26250. backPort: {
  26251. height: math.unit(0.685, "feet"),
  26252. name: "Back Port",
  26253. image: {
  26254. source: "./media/characters/balina-mahigan/back-port.svg"
  26255. }
  26256. },
  26257. hoofpaw: {
  26258. height: math.unit(1.41, "feet"),
  26259. name: "Hoofpaw",
  26260. image: {
  26261. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26262. }
  26263. },
  26264. leftHandBack: {
  26265. height: math.unit(0.938, "feet"),
  26266. name: "Left Hand (Back)",
  26267. image: {
  26268. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26269. }
  26270. },
  26271. leftHandFront: {
  26272. height: math.unit(0.938, "feet"),
  26273. name: "Left Hand (Front)",
  26274. image: {
  26275. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26276. }
  26277. },
  26278. rightHandBack: {
  26279. height: math.unit(0.95, "feet"),
  26280. name: "Right Hand (Back)",
  26281. image: {
  26282. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26283. }
  26284. },
  26285. rightHandFront: {
  26286. height: math.unit(0.95, "feet"),
  26287. name: "Right Hand (Front)",
  26288. image: {
  26289. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26290. }
  26291. },
  26292. },
  26293. [
  26294. {
  26295. name: "Normal",
  26296. height: math.unit(6 + 4 / 12, "feet"),
  26297. default: true
  26298. },
  26299. ]
  26300. ))
  26301. characterMakers.push(() => makeCharacter(
  26302. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26303. {
  26304. front: {
  26305. height: math.unit(6, "feet"),
  26306. weight: math.unit(320, "lb"),
  26307. name: "Front",
  26308. image: {
  26309. source: "./media/characters/balina-mejeri/front.svg",
  26310. extra: 517 / 488,
  26311. bottom: 44.2 / 561
  26312. }
  26313. },
  26314. },
  26315. [
  26316. {
  26317. name: "Normal",
  26318. height: math.unit(6 + 4 / 12, "feet")
  26319. },
  26320. {
  26321. name: "Business",
  26322. height: math.unit(155, "feet"),
  26323. default: true
  26324. },
  26325. ]
  26326. ))
  26327. characterMakers.push(() => makeCharacter(
  26328. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26329. {
  26330. kneeling: {
  26331. height: math.unit(6 + 4 / 12, "feet"),
  26332. weight: math.unit(300 * 20, "lb"),
  26333. name: "Kneeling",
  26334. image: {
  26335. source: "./media/characters/balbarian/kneeling.svg",
  26336. extra: 922 / 862,
  26337. bottom: 42.4 / 965
  26338. }
  26339. },
  26340. },
  26341. [
  26342. {
  26343. name: "Normal",
  26344. height: math.unit(6 + 4 / 12, "feet")
  26345. },
  26346. {
  26347. name: "Treasured",
  26348. height: math.unit(18 + 9 / 12, "feet"),
  26349. default: true
  26350. },
  26351. {
  26352. name: "Macro",
  26353. height: math.unit(900, "feet")
  26354. },
  26355. ]
  26356. ))
  26357. characterMakers.push(() => makeCharacter(
  26358. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26359. {
  26360. front: {
  26361. height: math.unit(6 + 4 / 12, "feet"),
  26362. weight: math.unit(325, "lb"),
  26363. name: "Front",
  26364. image: {
  26365. source: "./media/characters/balina-amarini/front.svg",
  26366. extra: 415 / 403,
  26367. bottom: 19 / 433.4
  26368. }
  26369. },
  26370. back: {
  26371. height: math.unit(6 + 4 / 12, "feet"),
  26372. weight: math.unit(325, "lb"),
  26373. name: "Back",
  26374. image: {
  26375. source: "./media/characters/balina-amarini/back.svg",
  26376. extra: 415 / 403,
  26377. bottom: 13.5 / 432
  26378. }
  26379. },
  26380. overdrive: {
  26381. height: math.unit(6 + 4 / 12, "feet"),
  26382. weight: math.unit(400, "lb"),
  26383. name: "Overdrive",
  26384. image: {
  26385. source: "./media/characters/balina-amarini/overdrive.svg",
  26386. extra: 269 / 259,
  26387. bottom: 12 / 282
  26388. }
  26389. },
  26390. },
  26391. [
  26392. {
  26393. name: "Boom",
  26394. height: math.unit(9 + 10 / 12, "feet"),
  26395. default: true
  26396. },
  26397. {
  26398. name: "Macro",
  26399. height: math.unit(280, "feet")
  26400. },
  26401. ]
  26402. ))
  26403. characterMakers.push(() => makeCharacter(
  26404. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26405. {
  26406. goddess: {
  26407. height: math.unit(600, "feet"),
  26408. weight: math.unit(2000000, "tons"),
  26409. name: "Goddess",
  26410. image: {
  26411. source: "./media/characters/lady-kubwa/goddess.svg",
  26412. extra: 1240.5 / 1223,
  26413. bottom: 22 / 1263
  26414. }
  26415. },
  26416. goddesser: {
  26417. height: math.unit(900, "feet"),
  26418. weight: math.unit(20000000, "lb"),
  26419. name: "Goddess-er",
  26420. image: {
  26421. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26422. extra: 899 / 888,
  26423. bottom: 12.6 / 912
  26424. }
  26425. },
  26426. },
  26427. [
  26428. {
  26429. name: "Macro",
  26430. height: math.unit(600, "feet"),
  26431. default: true
  26432. },
  26433. {
  26434. name: "Megamacro",
  26435. height: math.unit(250, "miles")
  26436. },
  26437. ]
  26438. ))
  26439. characterMakers.push(() => makeCharacter(
  26440. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26441. {
  26442. front: {
  26443. height: math.unit(7 + 7 / 12, "feet"),
  26444. weight: math.unit(250, "lb"),
  26445. name: "Front",
  26446. image: {
  26447. source: "./media/characters/tala-grovehorn/front.svg",
  26448. extra: 2636 / 2525,
  26449. bottom: 147 / 2781
  26450. }
  26451. },
  26452. back: {
  26453. height: math.unit(7 + 7 / 12, "feet"),
  26454. weight: math.unit(250, "lb"),
  26455. name: "Back",
  26456. image: {
  26457. source: "./media/characters/tala-grovehorn/back.svg",
  26458. extra: 2635 / 2539,
  26459. bottom: 100 / 2732.8
  26460. }
  26461. },
  26462. mouth: {
  26463. height: math.unit(1.15, "feet"),
  26464. name: "Mouth",
  26465. image: {
  26466. source: "./media/characters/tala-grovehorn/mouth.svg"
  26467. }
  26468. },
  26469. dick: {
  26470. height: math.unit(2.36, "feet"),
  26471. name: "Dick",
  26472. image: {
  26473. source: "./media/characters/tala-grovehorn/dick.svg"
  26474. }
  26475. },
  26476. slit: {
  26477. height: math.unit(0.61, "feet"),
  26478. name: "Slit",
  26479. image: {
  26480. source: "./media/characters/tala-grovehorn/slit.svg"
  26481. }
  26482. },
  26483. },
  26484. [
  26485. ]
  26486. ))
  26487. characterMakers.push(() => makeCharacter(
  26488. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26489. {
  26490. front: {
  26491. height: math.unit(7 + 7 / 12, "feet"),
  26492. weight: math.unit(225, "lb"),
  26493. name: "Front",
  26494. image: {
  26495. source: "./media/characters/epona/front.svg",
  26496. extra: 2445 / 2290,
  26497. bottom: 251 / 2696
  26498. }
  26499. },
  26500. back: {
  26501. height: math.unit(7 + 7 / 12, "feet"),
  26502. weight: math.unit(225, "lb"),
  26503. name: "Back",
  26504. image: {
  26505. source: "./media/characters/epona/back.svg",
  26506. extra: 2546 / 2408,
  26507. bottom: 44 / 2589
  26508. }
  26509. },
  26510. genitals: {
  26511. height: math.unit(1.5, "feet"),
  26512. name: "Genitals",
  26513. image: {
  26514. source: "./media/characters/epona/genitals.svg"
  26515. }
  26516. },
  26517. },
  26518. [
  26519. {
  26520. name: "Normal",
  26521. height: math.unit(7 + 7 / 12, "feet"),
  26522. default: true
  26523. },
  26524. ]
  26525. ))
  26526. characterMakers.push(() => makeCharacter(
  26527. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26528. {
  26529. front: {
  26530. height: math.unit(7, "feet"),
  26531. weight: math.unit(518, "lb"),
  26532. name: "Front",
  26533. image: {
  26534. source: "./media/characters/avia-bloodbourn/front.svg",
  26535. extra: 1466 / 1350,
  26536. bottom: 65 / 1527
  26537. }
  26538. },
  26539. },
  26540. [
  26541. ]
  26542. ))
  26543. characterMakers.push(() => makeCharacter(
  26544. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26545. {
  26546. front: {
  26547. height: math.unit(9.35, "feet"),
  26548. weight: math.unit(600, "lb"),
  26549. name: "Front",
  26550. image: {
  26551. source: "./media/characters/amera/front.svg",
  26552. extra: 891 / 818,
  26553. bottom: 30 / 922.7
  26554. }
  26555. },
  26556. back: {
  26557. height: math.unit(9.35, "feet"),
  26558. weight: math.unit(600, "lb"),
  26559. name: "Back",
  26560. image: {
  26561. source: "./media/characters/amera/back.svg",
  26562. extra: 876 / 824,
  26563. bottom: 6.8 / 884
  26564. }
  26565. },
  26566. dick: {
  26567. height: math.unit(2.14, "feet"),
  26568. name: "Dick",
  26569. image: {
  26570. source: "./media/characters/amera/dick.svg"
  26571. }
  26572. },
  26573. },
  26574. [
  26575. {
  26576. name: "Normal",
  26577. height: math.unit(9.35, "feet"),
  26578. default: true
  26579. },
  26580. ]
  26581. ))
  26582. characterMakers.push(() => makeCharacter(
  26583. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26584. {
  26585. kneeling: {
  26586. height: math.unit(3 + 4 / 12, "feet"),
  26587. weight: math.unit(90, "lb"),
  26588. name: "Kneeling",
  26589. image: {
  26590. source: "./media/characters/rosewen/kneeling.svg",
  26591. extra: 1835 / 1571,
  26592. bottom: 27.7 / 1862
  26593. }
  26594. },
  26595. },
  26596. [
  26597. {
  26598. name: "Normal",
  26599. height: math.unit(3 + 4 / 12, "feet"),
  26600. default: true
  26601. },
  26602. ]
  26603. ))
  26604. characterMakers.push(() => makeCharacter(
  26605. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26606. {
  26607. front: {
  26608. height: math.unit(5 + 10 / 12, "feet"),
  26609. weight: math.unit(200, "lb"),
  26610. name: "Front",
  26611. image: {
  26612. source: "./media/characters/sabah/front.svg",
  26613. extra: 849 / 763,
  26614. bottom: 33.9 / 881
  26615. }
  26616. },
  26617. },
  26618. [
  26619. {
  26620. name: "Normal",
  26621. height: math.unit(5 + 10 / 12, "feet"),
  26622. default: true
  26623. },
  26624. ]
  26625. ))
  26626. characterMakers.push(() => makeCharacter(
  26627. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26628. {
  26629. front: {
  26630. height: math.unit(3 + 5 / 12, "feet"),
  26631. weight: math.unit(40, "kg"),
  26632. name: "Front",
  26633. image: {
  26634. source: "./media/characters/purple-flame/front.svg",
  26635. extra: 1577 / 1412,
  26636. bottom: 97 / 1694
  26637. }
  26638. },
  26639. frontDressed: {
  26640. height: math.unit(3 + 5 / 12, "feet"),
  26641. weight: math.unit(40, "kg"),
  26642. name: "Front (Dressed)",
  26643. image: {
  26644. source: "./media/characters/purple-flame/front-dressed.svg",
  26645. extra: 1577 / 1412,
  26646. bottom: 97 / 1694
  26647. }
  26648. },
  26649. headphones: {
  26650. height: math.unit(0.85, "feet"),
  26651. name: "Headphones",
  26652. image: {
  26653. source: "./media/characters/purple-flame/headphones.svg"
  26654. }
  26655. },
  26656. },
  26657. [
  26658. {
  26659. name: "Really Small",
  26660. height: math.unit(5, "cm")
  26661. },
  26662. {
  26663. name: "Micro",
  26664. height: math.unit(1 + 5 / 12, "feet")
  26665. },
  26666. {
  26667. name: "Normal",
  26668. height: math.unit(3 + 5 / 12, "feet"),
  26669. default: true
  26670. },
  26671. {
  26672. name: "Minimacro",
  26673. height: math.unit(125, "feet")
  26674. },
  26675. {
  26676. name: "Macro",
  26677. height: math.unit(0.5, "miles")
  26678. },
  26679. {
  26680. name: "Megamacro",
  26681. height: math.unit(50, "miles")
  26682. },
  26683. {
  26684. name: "Gigantic",
  26685. height: math.unit(750, "miles")
  26686. },
  26687. {
  26688. name: "Planetary",
  26689. height: math.unit(15000, "miles")
  26690. },
  26691. ]
  26692. ))
  26693. characterMakers.push(() => makeCharacter(
  26694. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26695. {
  26696. front: {
  26697. height: math.unit(14, "feet"),
  26698. weight: math.unit(959, "lb"),
  26699. name: "Front",
  26700. image: {
  26701. source: "./media/characters/arsenal/front.svg",
  26702. extra: 2357 / 2157,
  26703. bottom: 93 / 2458
  26704. }
  26705. },
  26706. },
  26707. [
  26708. {
  26709. name: "Normal",
  26710. height: math.unit(14, "feet"),
  26711. default: true
  26712. },
  26713. ]
  26714. ))
  26715. characterMakers.push(() => makeCharacter(
  26716. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26717. {
  26718. front: {
  26719. height: math.unit(6, "feet"),
  26720. weight: math.unit(150, "lb"),
  26721. name: "Front",
  26722. image: {
  26723. source: "./media/characters/adira/front.svg",
  26724. extra: 1078 / 1029,
  26725. bottom: 87 / 1166
  26726. }
  26727. },
  26728. },
  26729. [
  26730. {
  26731. name: "Micro",
  26732. height: math.unit(4, "inches"),
  26733. default: true
  26734. },
  26735. {
  26736. name: "Macro",
  26737. height: math.unit(50, "feet")
  26738. },
  26739. ]
  26740. ))
  26741. characterMakers.push(() => makeCharacter(
  26742. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26743. {
  26744. front: {
  26745. height: math.unit(16, "feet"),
  26746. weight: math.unit(1000, "lb"),
  26747. name: "Front",
  26748. image: {
  26749. source: "./media/characters/grim/front.svg",
  26750. extra: 622 / 614,
  26751. bottom: 18.1 / 642
  26752. }
  26753. },
  26754. back: {
  26755. height: math.unit(16, "feet"),
  26756. weight: math.unit(1000, "lb"),
  26757. name: "Back",
  26758. image: {
  26759. source: "./media/characters/grim/back.svg",
  26760. extra: 610.6 / 602,
  26761. bottom: 40.8 / 652
  26762. }
  26763. },
  26764. hunched: {
  26765. height: math.unit(9.75, "feet"),
  26766. weight: math.unit(1000, "lb"),
  26767. name: "Hunched",
  26768. image: {
  26769. source: "./media/characters/grim/hunched.svg",
  26770. extra: 304 / 297,
  26771. bottom: 35.4 / 394
  26772. }
  26773. },
  26774. },
  26775. [
  26776. {
  26777. name: "Normal",
  26778. height: math.unit(16, "feet"),
  26779. default: true
  26780. },
  26781. ]
  26782. ))
  26783. characterMakers.push(() => makeCharacter(
  26784. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26785. {
  26786. front: {
  26787. height: math.unit(2.3, "meters"),
  26788. weight: math.unit(300, "lb"),
  26789. name: "Front",
  26790. image: {
  26791. source: "./media/characters/sinja/front-sfw.svg",
  26792. extra: 1393 / 1294,
  26793. bottom: 70 / 1463
  26794. }
  26795. },
  26796. frontNsfw: {
  26797. height: math.unit(2.3, "meters"),
  26798. weight: math.unit(300, "lb"),
  26799. name: "Front (NSFW)",
  26800. image: {
  26801. source: "./media/characters/sinja/front-nsfw.svg",
  26802. extra: 1393 / 1294,
  26803. bottom: 70 / 1463
  26804. }
  26805. },
  26806. back: {
  26807. height: math.unit(2.3, "meters"),
  26808. weight: math.unit(300, "lb"),
  26809. name: "Back",
  26810. image: {
  26811. source: "./media/characters/sinja/back.svg",
  26812. extra: 1393 / 1294,
  26813. bottom: 70 / 1463
  26814. }
  26815. },
  26816. head: {
  26817. height: math.unit(1.771, "feet"),
  26818. name: "Head",
  26819. image: {
  26820. source: "./media/characters/sinja/head.svg"
  26821. }
  26822. },
  26823. slit: {
  26824. height: math.unit(0.8, "feet"),
  26825. name: "Slit",
  26826. image: {
  26827. source: "./media/characters/sinja/slit.svg"
  26828. }
  26829. },
  26830. },
  26831. [
  26832. {
  26833. name: "Normal",
  26834. height: math.unit(2.3, "meters")
  26835. },
  26836. {
  26837. name: "Macro",
  26838. height: math.unit(91, "meters"),
  26839. default: true
  26840. },
  26841. {
  26842. name: "Megamacro",
  26843. height: math.unit(91440, "meters")
  26844. },
  26845. {
  26846. name: "Gigamacro",
  26847. height: math.unit(60960000, "meters")
  26848. },
  26849. {
  26850. name: "Teramacro",
  26851. height: math.unit(9144000000, "meters")
  26852. },
  26853. ]
  26854. ))
  26855. characterMakers.push(() => makeCharacter(
  26856. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26857. {
  26858. front: {
  26859. height: math.unit(1.7, "meters"),
  26860. weight: math.unit(130, "lb"),
  26861. name: "Front",
  26862. image: {
  26863. source: "./media/characters/kyu/front.svg",
  26864. extra: 415 / 395,
  26865. bottom: 5 / 420
  26866. }
  26867. },
  26868. head: {
  26869. height: math.unit(1.75, "feet"),
  26870. name: "Head",
  26871. image: {
  26872. source: "./media/characters/kyu/head.svg"
  26873. }
  26874. },
  26875. foot: {
  26876. height: math.unit(0.81, "feet"),
  26877. name: "Foot",
  26878. image: {
  26879. source: "./media/characters/kyu/foot.svg"
  26880. }
  26881. },
  26882. },
  26883. [
  26884. {
  26885. name: "Normal",
  26886. height: math.unit(1.7, "meters")
  26887. },
  26888. {
  26889. name: "Macro",
  26890. height: math.unit(131, "feet"),
  26891. default: true
  26892. },
  26893. {
  26894. name: "Megamacro",
  26895. height: math.unit(91440, "meters")
  26896. },
  26897. {
  26898. name: "Gigamacro",
  26899. height: math.unit(60960000, "meters")
  26900. },
  26901. {
  26902. name: "Teramacro",
  26903. height: math.unit(9144000000, "meters")
  26904. },
  26905. ]
  26906. ))
  26907. characterMakers.push(() => makeCharacter(
  26908. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26909. {
  26910. front: {
  26911. height: math.unit(7 + 1 / 12, "feet"),
  26912. weight: math.unit(250, "lb"),
  26913. name: "Front",
  26914. image: {
  26915. source: "./media/characters/joey/front.svg",
  26916. extra: 1791 / 1537,
  26917. bottom: 28 / 1816
  26918. }
  26919. },
  26920. },
  26921. [
  26922. {
  26923. name: "Micro",
  26924. height: math.unit(3, "inches")
  26925. },
  26926. {
  26927. name: "Normal",
  26928. height: math.unit(7 + 1 / 12, "feet"),
  26929. default: true
  26930. },
  26931. ]
  26932. ))
  26933. characterMakers.push(() => makeCharacter(
  26934. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26935. {
  26936. front: {
  26937. height: math.unit(165, "cm"),
  26938. weight: math.unit(140, "lb"),
  26939. name: "Front",
  26940. image: {
  26941. source: "./media/characters/sam-evans/front.svg",
  26942. extra: 3417 / 3230,
  26943. bottom: 41.3 / 3417
  26944. }
  26945. },
  26946. frontSixTails: {
  26947. height: math.unit(165, "cm"),
  26948. weight: math.unit(140, "lb"),
  26949. name: "Front-six-tails",
  26950. image: {
  26951. source: "./media/characters/sam-evans/front-six-tails.svg",
  26952. extra: 3417 / 3230,
  26953. bottom: 41.3 / 3417
  26954. }
  26955. },
  26956. back: {
  26957. height: math.unit(165, "cm"),
  26958. weight: math.unit(140, "lb"),
  26959. name: "Back",
  26960. image: {
  26961. source: "./media/characters/sam-evans/back.svg",
  26962. extra: 3227 / 3032,
  26963. bottom: 6.8 / 3234
  26964. }
  26965. },
  26966. face: {
  26967. height: math.unit(0.68, "feet"),
  26968. name: "Face",
  26969. image: {
  26970. source: "./media/characters/sam-evans/face.svg"
  26971. }
  26972. },
  26973. },
  26974. [
  26975. {
  26976. name: "Normal",
  26977. height: math.unit(165, "cm"),
  26978. default: true
  26979. },
  26980. {
  26981. name: "Macro",
  26982. height: math.unit(100, "meters")
  26983. },
  26984. {
  26985. name: "Macro+",
  26986. height: math.unit(800, "meters")
  26987. },
  26988. {
  26989. name: "Macro++",
  26990. height: math.unit(3, "km")
  26991. },
  26992. {
  26993. name: "Macro+++",
  26994. height: math.unit(30, "km")
  26995. },
  26996. ]
  26997. ))
  26998. characterMakers.push(() => makeCharacter(
  26999. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27000. {
  27001. front: {
  27002. height: math.unit(10, "feet"),
  27003. weight: math.unit(750, "lb"),
  27004. name: "Front",
  27005. image: {
  27006. source: "./media/characters/juliet-a/front.svg",
  27007. extra: 1766 / 1720,
  27008. bottom: 43 / 1809
  27009. }
  27010. },
  27011. back: {
  27012. height: math.unit(10, "feet"),
  27013. weight: math.unit(750, "lb"),
  27014. name: "Back",
  27015. image: {
  27016. source: "./media/characters/juliet-a/back.svg",
  27017. extra: 1781 / 1734,
  27018. bottom: 35 / 1810,
  27019. }
  27020. },
  27021. },
  27022. [
  27023. {
  27024. name: "Normal",
  27025. height: math.unit(10, "feet"),
  27026. default: true
  27027. },
  27028. {
  27029. name: "Dragon Form",
  27030. height: math.unit(250, "feet")
  27031. },
  27032. {
  27033. name: "Macro",
  27034. height: math.unit(1000, "feet")
  27035. },
  27036. {
  27037. name: "Megamacro",
  27038. height: math.unit(10000, "feet")
  27039. }
  27040. ]
  27041. ))
  27042. characterMakers.push(() => makeCharacter(
  27043. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27044. {
  27045. regular: {
  27046. height: math.unit(7 + 3 / 12, "feet"),
  27047. weight: math.unit(260, "lb"),
  27048. name: "Regular",
  27049. image: {
  27050. source: "./media/characters/wild/regular.svg",
  27051. extra: 97.45 / 92,
  27052. bottom: 6.8 / 104.3
  27053. }
  27054. },
  27055. biggums: {
  27056. height: math.unit(8 + 6 / 12, "feet"),
  27057. weight: math.unit(425, "lb"),
  27058. name: "Biggums",
  27059. image: {
  27060. source: "./media/characters/wild/biggums.svg",
  27061. extra: 97.45 / 92,
  27062. bottom: 7.5 / 132.34
  27063. }
  27064. },
  27065. mawRegular: {
  27066. height: math.unit(1.24, "feet"),
  27067. name: "Maw (Regular)",
  27068. image: {
  27069. source: "./media/characters/wild/maw.svg"
  27070. }
  27071. },
  27072. mawBiggums: {
  27073. height: math.unit(1.47, "feet"),
  27074. name: "Maw (Biggums)",
  27075. image: {
  27076. source: "./media/characters/wild/maw.svg"
  27077. }
  27078. },
  27079. },
  27080. [
  27081. {
  27082. name: "Normal",
  27083. height: math.unit(7 + 3 / 12, "feet"),
  27084. default: true
  27085. },
  27086. ]
  27087. ))
  27088. characterMakers.push(() => makeCharacter(
  27089. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27090. {
  27091. front: {
  27092. height: math.unit(2.5, "meters"),
  27093. weight: math.unit(200, "kg"),
  27094. name: "Front",
  27095. image: {
  27096. source: "./media/characters/vidar/front.svg",
  27097. extra: 2994 / 2795,
  27098. bottom: 56 / 3061
  27099. }
  27100. },
  27101. back: {
  27102. height: math.unit(2.5, "meters"),
  27103. weight: math.unit(200, "kg"),
  27104. name: "Back",
  27105. image: {
  27106. source: "./media/characters/vidar/back.svg",
  27107. extra: 3131 / 2928,
  27108. bottom: 13.5 / 3141.5
  27109. }
  27110. },
  27111. feral: {
  27112. height: math.unit(2.5, "meters"),
  27113. weight: math.unit(2000, "kg"),
  27114. name: "Feral",
  27115. image: {
  27116. source: "./media/characters/vidar/feral.svg",
  27117. extra: 2790 / 1765,
  27118. bottom: 6 / 2796
  27119. }
  27120. },
  27121. },
  27122. [
  27123. {
  27124. name: "Normal",
  27125. height: math.unit(2.5, "meters"),
  27126. default: true
  27127. },
  27128. {
  27129. name: "Macro",
  27130. height: math.unit(100, "meters")
  27131. },
  27132. ]
  27133. ))
  27134. characterMakers.push(() => makeCharacter(
  27135. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27136. {
  27137. front: {
  27138. height: math.unit(5 + 9 / 12, "feet"),
  27139. weight: math.unit(120, "lb"),
  27140. name: "Front",
  27141. image: {
  27142. source: "./media/characters/ash/front.svg",
  27143. extra: 2189 / 1961,
  27144. bottom: 5.2 / 2194
  27145. }
  27146. },
  27147. },
  27148. [
  27149. {
  27150. name: "Normal",
  27151. height: math.unit(5 + 9 / 12, "feet"),
  27152. default: true
  27153. },
  27154. ]
  27155. ))
  27156. characterMakers.push(() => makeCharacter(
  27157. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27158. {
  27159. front: {
  27160. height: math.unit(9, "feet"),
  27161. weight: math.unit(10000, "lb"),
  27162. name: "Front",
  27163. image: {
  27164. source: "./media/characters/gygabite/front.svg",
  27165. bottom: 31.7 / 537.8,
  27166. extra: 505 / 370
  27167. }
  27168. },
  27169. },
  27170. [
  27171. {
  27172. name: "Normal",
  27173. height: math.unit(9, "feet"),
  27174. default: true
  27175. },
  27176. ]
  27177. ))
  27178. characterMakers.push(() => makeCharacter(
  27179. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27180. {
  27181. front: {
  27182. height: math.unit(12, "feet"),
  27183. weight: math.unit(35000, "lb"),
  27184. name: "Front",
  27185. image: {
  27186. source: "./media/characters/p0tat0/front.svg",
  27187. extra: 1065 / 921,
  27188. bottom: 55.7 / 1121.25
  27189. }
  27190. },
  27191. },
  27192. [
  27193. {
  27194. name: "Normal",
  27195. height: math.unit(12, "feet"),
  27196. default: true
  27197. },
  27198. ]
  27199. ))
  27200. characterMakers.push(() => makeCharacter(
  27201. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27202. {
  27203. side: {
  27204. height: math.unit(6.5, "feet"),
  27205. weight: math.unit(800, "lb"),
  27206. name: "Side",
  27207. image: {
  27208. source: "./media/characters/dusk/side.svg",
  27209. extra: 615 / 373,
  27210. bottom: 53 / 664
  27211. }
  27212. },
  27213. sitting: {
  27214. height: math.unit(7, "feet"),
  27215. weight: math.unit(800, "lb"),
  27216. name: "Sitting",
  27217. image: {
  27218. source: "./media/characters/dusk/sitting.svg",
  27219. extra: 753 / 425,
  27220. bottom: 33 / 774
  27221. }
  27222. },
  27223. head: {
  27224. height: math.unit(6.1, "feet"),
  27225. name: "Head",
  27226. image: {
  27227. source: "./media/characters/dusk/head.svg"
  27228. }
  27229. },
  27230. },
  27231. [
  27232. {
  27233. name: "Normal",
  27234. height: math.unit(7, "feet"),
  27235. default: true
  27236. },
  27237. ]
  27238. ))
  27239. characterMakers.push(() => makeCharacter(
  27240. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27241. {
  27242. front: {
  27243. height: math.unit(15, "feet"),
  27244. weight: math.unit(7000, "lb"),
  27245. name: "Front",
  27246. image: {
  27247. source: "./media/characters/jay-direwolf/front.svg",
  27248. extra: 1810 / 1732,
  27249. bottom: 66 / 1892
  27250. }
  27251. },
  27252. },
  27253. [
  27254. {
  27255. name: "Normal",
  27256. height: math.unit(15, "feet"),
  27257. default: true
  27258. },
  27259. ]
  27260. ))
  27261. characterMakers.push(() => makeCharacter(
  27262. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27263. {
  27264. front: {
  27265. height: math.unit(4 + 9 / 12, "feet"),
  27266. weight: math.unit(130, "lb"),
  27267. name: "Front",
  27268. image: {
  27269. source: "./media/characters/anchovie/front.svg",
  27270. extra: 382 / 350,
  27271. bottom: 25 / 409
  27272. }
  27273. },
  27274. back: {
  27275. height: math.unit(4 + 9 / 12, "feet"),
  27276. weight: math.unit(130, "lb"),
  27277. name: "Back",
  27278. image: {
  27279. source: "./media/characters/anchovie/back.svg",
  27280. extra: 385 / 352,
  27281. bottom: 16.6 / 402
  27282. }
  27283. },
  27284. frontDressed: {
  27285. height: math.unit(4 + 9 / 12, "feet"),
  27286. weight: math.unit(130, "lb"),
  27287. name: "Front (Dressed)",
  27288. image: {
  27289. source: "./media/characters/anchovie/front-dressed.svg",
  27290. extra: 382 / 350,
  27291. bottom: 25 / 409
  27292. }
  27293. },
  27294. backDressed: {
  27295. height: math.unit(4 + 9 / 12, "feet"),
  27296. weight: math.unit(130, "lb"),
  27297. name: "Back (Dressed)",
  27298. image: {
  27299. source: "./media/characters/anchovie/back-dressed.svg",
  27300. extra: 385 / 352,
  27301. bottom: 16.6 / 402
  27302. }
  27303. },
  27304. },
  27305. [
  27306. {
  27307. name: "Micro",
  27308. height: math.unit(6.4, "inches")
  27309. },
  27310. {
  27311. name: "Normal",
  27312. height: math.unit(4 + 9 / 12, "feet"),
  27313. default: true
  27314. },
  27315. ]
  27316. ))
  27317. characterMakers.push(() => makeCharacter(
  27318. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27319. {
  27320. front: {
  27321. height: math.unit(2, "meters"),
  27322. weight: math.unit(180, "lb"),
  27323. name: "Front",
  27324. image: {
  27325. source: "./media/characters/acidrenamon/front.svg",
  27326. extra: 987 / 890,
  27327. bottom: 22.8 / 1009
  27328. }
  27329. },
  27330. back: {
  27331. height: math.unit(2, "meters"),
  27332. weight: math.unit(180, "lb"),
  27333. name: "Back",
  27334. image: {
  27335. source: "./media/characters/acidrenamon/back.svg",
  27336. extra: 983 / 891,
  27337. bottom: 8.4 / 992
  27338. }
  27339. },
  27340. head: {
  27341. height: math.unit(1.92, "feet"),
  27342. name: "Head",
  27343. image: {
  27344. source: "./media/characters/acidrenamon/head.svg"
  27345. }
  27346. },
  27347. rump: {
  27348. height: math.unit(1.72, "feet"),
  27349. name: "Rump",
  27350. image: {
  27351. source: "./media/characters/acidrenamon/rump.svg"
  27352. }
  27353. },
  27354. tail: {
  27355. height: math.unit(4.2, "feet"),
  27356. name: "Tail",
  27357. image: {
  27358. source: "./media/characters/acidrenamon/tail.svg"
  27359. }
  27360. },
  27361. },
  27362. [
  27363. {
  27364. name: "Normal",
  27365. height: math.unit(2, "meters"),
  27366. default: true
  27367. },
  27368. {
  27369. name: "Minimacro",
  27370. height: math.unit(7, "meters")
  27371. },
  27372. {
  27373. name: "Macro",
  27374. height: math.unit(200, "meters")
  27375. },
  27376. {
  27377. name: "Gigamacro",
  27378. height: math.unit(0.2, "earths")
  27379. },
  27380. ]
  27381. ))
  27382. characterMakers.push(() => makeCharacter(
  27383. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27384. {
  27385. front: {
  27386. height: math.unit(6, "feet"),
  27387. weight: math.unit(150, "lb"),
  27388. name: "Front",
  27389. image: {
  27390. source: "./media/characters/kenzie-lee/front.svg",
  27391. extra: 1525 / 1465,
  27392. bottom: 45 / 1570
  27393. }
  27394. },
  27395. side: {
  27396. height: math.unit(6, "feet"),
  27397. weight: math.unit(150, "lb"),
  27398. name: "Side",
  27399. image: {
  27400. source: "./media/characters/kenzie-lee/side.svg",
  27401. extra: 5505 / 5383,
  27402. bottom: 60 / 5573
  27403. }
  27404. },
  27405. paw: {
  27406. height: math.unit(0.57, "feet"),
  27407. name: "Paw",
  27408. image: {
  27409. source: "./media/characters/kenzie-lee/paw.svg"
  27410. }
  27411. },
  27412. },
  27413. [
  27414. {
  27415. name: "Normal",
  27416. height: math.unit(152, "feet"),
  27417. default: true
  27418. },
  27419. {
  27420. name: "Megamacro",
  27421. height: math.unit(7, "miles")
  27422. },
  27423. {
  27424. name: "Gigamacro",
  27425. height: math.unit(8000, "miles")
  27426. },
  27427. ]
  27428. ))
  27429. characterMakers.push(() => makeCharacter(
  27430. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27431. {
  27432. side: {
  27433. height: math.unit(6, "feet"),
  27434. weight: math.unit(150, "lb"),
  27435. name: "Side",
  27436. image: {
  27437. source: "./media/characters/withers/side.svg",
  27438. extra: 1830 / 1728,
  27439. bottom: 96 / 1927
  27440. }
  27441. },
  27442. front: {
  27443. height: math.unit(6, "feet"),
  27444. weight: math.unit(150, "lb"),
  27445. name: "Front",
  27446. image: {
  27447. source: "./media/characters/withers/front.svg",
  27448. extra: 1514 / 1438,
  27449. bottom: 118 / 1632
  27450. }
  27451. },
  27452. },
  27453. [
  27454. {
  27455. name: "Macro",
  27456. height: math.unit(168, "feet"),
  27457. default: true
  27458. },
  27459. {
  27460. name: "Megamacro",
  27461. height: math.unit(15, "miles")
  27462. }
  27463. ]
  27464. ))
  27465. characterMakers.push(() => makeCharacter(
  27466. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27467. {
  27468. front: {
  27469. height: math.unit(6 + 7 / 12, "feet"),
  27470. weight: math.unit(250, "lb"),
  27471. name: "Front",
  27472. image: {
  27473. source: "./media/characters/nemoskii/front.svg",
  27474. extra: 2270 / 1734,
  27475. bottom: 86 / 2354
  27476. }
  27477. },
  27478. back: {
  27479. height: math.unit(6 + 7 / 12, "feet"),
  27480. weight: math.unit(250, "lb"),
  27481. name: "Back",
  27482. image: {
  27483. source: "./media/characters/nemoskii/back.svg",
  27484. extra: 1845 / 1788,
  27485. bottom: 10.5 / 1852
  27486. }
  27487. },
  27488. head: {
  27489. height: math.unit(1.31, "feet"),
  27490. name: "Head",
  27491. image: {
  27492. source: "./media/characters/nemoskii/head.svg"
  27493. }
  27494. },
  27495. },
  27496. [
  27497. {
  27498. name: "Micro",
  27499. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27500. },
  27501. {
  27502. name: "Normal",
  27503. height: math.unit(6 + 7 / 12, "feet"),
  27504. default: true
  27505. },
  27506. {
  27507. name: "Macro",
  27508. height: math.unit((6 + 7 / 12) * 150, "feet")
  27509. },
  27510. {
  27511. name: "Macro+",
  27512. height: math.unit((6 + 7 / 12) * 500, "feet")
  27513. },
  27514. {
  27515. name: "Megamacro",
  27516. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27517. },
  27518. ]
  27519. ))
  27520. characterMakers.push(() => makeCharacter(
  27521. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27522. {
  27523. front: {
  27524. height: math.unit(1, "mile"),
  27525. weight: math.unit(265261.9, "lb"),
  27526. name: "Front",
  27527. image: {
  27528. source: "./media/characters/shui/front.svg",
  27529. extra: 1633 / 1564,
  27530. bottom: 91.5 / 1726
  27531. }
  27532. },
  27533. },
  27534. [
  27535. {
  27536. name: "Macro",
  27537. height: math.unit(1, "mile"),
  27538. default: true
  27539. },
  27540. ]
  27541. ))
  27542. characterMakers.push(() => makeCharacter(
  27543. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27544. {
  27545. front: {
  27546. height: math.unit(12 + 6 / 12, "feet"),
  27547. weight: math.unit(1342, "lb"),
  27548. name: "Front",
  27549. image: {
  27550. source: "./media/characters/arokh-takakura/front.svg",
  27551. extra: 1089 / 1043,
  27552. bottom: 77.4 / 1176.7
  27553. }
  27554. },
  27555. back: {
  27556. height: math.unit(12 + 6 / 12, "feet"),
  27557. weight: math.unit(1342, "lb"),
  27558. name: "Back",
  27559. image: {
  27560. source: "./media/characters/arokh-takakura/back.svg",
  27561. extra: 1046 / 1019,
  27562. bottom: 102 / 1150
  27563. }
  27564. },
  27565. },
  27566. [
  27567. {
  27568. name: "Big",
  27569. height: math.unit(12 + 6 / 12, "feet"),
  27570. default: true
  27571. },
  27572. ]
  27573. ))
  27574. characterMakers.push(() => makeCharacter(
  27575. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27576. {
  27577. front: {
  27578. height: math.unit(5 + 6 / 12, "feet"),
  27579. weight: math.unit(150, "lb"),
  27580. name: "Front",
  27581. image: {
  27582. source: "./media/characters/theo/front.svg",
  27583. extra: 1184 / 1131,
  27584. bottom: 7.4 / 1191
  27585. }
  27586. },
  27587. },
  27588. [
  27589. {
  27590. name: "Micro",
  27591. height: math.unit(5, "inches")
  27592. },
  27593. {
  27594. name: "Normal",
  27595. height: math.unit(5 + 6 / 12, "feet"),
  27596. default: true
  27597. },
  27598. ]
  27599. ))
  27600. characterMakers.push(() => makeCharacter(
  27601. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27602. {
  27603. front: {
  27604. height: math.unit(5 + 9 / 12, "feet"),
  27605. weight: math.unit(130, "lb"),
  27606. name: "Front",
  27607. image: {
  27608. source: "./media/characters/cecelia-swift/front.svg",
  27609. extra: 502 / 484,
  27610. bottom: 23 / 523
  27611. }
  27612. },
  27613. back: {
  27614. height: math.unit(5 + 9 / 12, "feet"),
  27615. weight: math.unit(130, "lb"),
  27616. name: "Back",
  27617. image: {
  27618. source: "./media/characters/cecelia-swift/back.svg",
  27619. extra: 499 / 485,
  27620. bottom: 12 / 511
  27621. }
  27622. },
  27623. head: {
  27624. height: math.unit(0.90, "feet"),
  27625. name: "Head",
  27626. image: {
  27627. source: "./media/characters/cecelia-swift/head.svg"
  27628. }
  27629. },
  27630. rump: {
  27631. height: math.unit(1.75, "feet"),
  27632. name: "Rump",
  27633. image: {
  27634. source: "./media/characters/cecelia-swift/rump.svg"
  27635. }
  27636. },
  27637. },
  27638. [
  27639. {
  27640. name: "Normal",
  27641. height: math.unit(5 + 9 / 12, "feet"),
  27642. default: true
  27643. },
  27644. {
  27645. name: "Big",
  27646. height: math.unit(50, "feet")
  27647. },
  27648. {
  27649. name: "Macro",
  27650. height: math.unit(100, "feet")
  27651. },
  27652. {
  27653. name: "Macro+",
  27654. height: math.unit(500, "feet")
  27655. },
  27656. {
  27657. name: "Macro++",
  27658. height: math.unit(1000, "feet")
  27659. },
  27660. ]
  27661. ))
  27662. characterMakers.push(() => makeCharacter(
  27663. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27664. {
  27665. front: {
  27666. height: math.unit(6, "feet"),
  27667. weight: math.unit(150, "lb"),
  27668. name: "Front",
  27669. image: {
  27670. source: "./media/characters/kaunan/front.svg",
  27671. extra: 2890 / 2523,
  27672. bottom: 49 / 2939
  27673. }
  27674. },
  27675. },
  27676. [
  27677. {
  27678. name: "Macro",
  27679. height: math.unit(150, "feet"),
  27680. default: true
  27681. },
  27682. ]
  27683. ))
  27684. characterMakers.push(() => makeCharacter(
  27685. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27686. {
  27687. front: {
  27688. height: math.unit(175, "cm"),
  27689. weight: math.unit(60, "kg"),
  27690. name: "Front",
  27691. image: {
  27692. source: "./media/characters/fei/front.svg",
  27693. extra: 1873/1723,
  27694. bottom: 53/1926
  27695. }
  27696. },
  27697. },
  27698. [
  27699. {
  27700. name: "Mortal",
  27701. height: math.unit(175, "cm")
  27702. },
  27703. {
  27704. name: "Normal",
  27705. height: math.unit(3500, "m"),
  27706. default: true
  27707. },
  27708. {
  27709. name: "Stroll",
  27710. height: math.unit(17.5, "km")
  27711. },
  27712. {
  27713. name: "Showoff",
  27714. height: math.unit(175, "km")
  27715. },
  27716. ]
  27717. ))
  27718. characterMakers.push(() => makeCharacter(
  27719. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27720. {
  27721. front: {
  27722. height: math.unit(7, "feet"),
  27723. weight: math.unit(1000, "kg"),
  27724. name: "Front",
  27725. image: {
  27726. source: "./media/characters/edrax/front.svg",
  27727. extra: 2838 / 2550,
  27728. bottom: 130 / 2968
  27729. }
  27730. },
  27731. },
  27732. [
  27733. {
  27734. name: "Small",
  27735. height: math.unit(7, "feet")
  27736. },
  27737. {
  27738. name: "Normal",
  27739. height: math.unit(1500, "meters")
  27740. },
  27741. {
  27742. name: "Mega",
  27743. height: math.unit(12000000, "km"),
  27744. default: true
  27745. },
  27746. {
  27747. name: "Megamacro",
  27748. height: math.unit(10600000, "lightyears")
  27749. },
  27750. {
  27751. name: "Hypermacro",
  27752. height: math.unit(256, "yottameters")
  27753. },
  27754. ]
  27755. ))
  27756. characterMakers.push(() => makeCharacter(
  27757. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27758. {
  27759. front: {
  27760. height: math.unit(10, "feet"),
  27761. weight: math.unit(750, "lb"),
  27762. name: "Front",
  27763. image: {
  27764. source: "./media/characters/clove/front.svg",
  27765. extra: 2031 / 1860,
  27766. bottom: 47.8 / 2080
  27767. }
  27768. },
  27769. back: {
  27770. height: math.unit(10, "feet"),
  27771. weight: math.unit(750, "lb"),
  27772. name: "Back",
  27773. image: {
  27774. source: "./media/characters/clove/back.svg",
  27775. extra: 2025 / 1859,
  27776. bottom: 46 / 2071
  27777. }
  27778. },
  27779. },
  27780. [
  27781. {
  27782. name: "Normal",
  27783. height: math.unit(10, "feet"),
  27784. default: true
  27785. },
  27786. ]
  27787. ))
  27788. characterMakers.push(() => makeCharacter(
  27789. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27790. {
  27791. front: {
  27792. height: math.unit(4, "feet"),
  27793. weight: math.unit(50, "lb"),
  27794. name: "Front",
  27795. image: {
  27796. source: "./media/characters/alex-rabbit/front.svg",
  27797. extra: 507 / 458,
  27798. bottom: 18.5 / 527
  27799. }
  27800. },
  27801. back: {
  27802. height: math.unit(4, "feet"),
  27803. weight: math.unit(50, "lb"),
  27804. name: "Back",
  27805. image: {
  27806. source: "./media/characters/alex-rabbit/back.svg",
  27807. extra: 502 / 460,
  27808. bottom: 18.9 / 521
  27809. }
  27810. },
  27811. },
  27812. [
  27813. {
  27814. name: "Normal",
  27815. height: math.unit(4, "feet"),
  27816. default: true
  27817. },
  27818. ]
  27819. ))
  27820. characterMakers.push(() => makeCharacter(
  27821. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27822. {
  27823. front: {
  27824. height: math.unit(1 + 3 / 12, "feet"),
  27825. weight: math.unit(80, "lb"),
  27826. name: "Front",
  27827. image: {
  27828. source: "./media/characters/zander-rose/front.svg",
  27829. extra: 916 / 797,
  27830. bottom: 17 / 933
  27831. }
  27832. },
  27833. back: {
  27834. height: math.unit(1 + 3 / 12, "feet"),
  27835. weight: math.unit(80, "lb"),
  27836. name: "Back",
  27837. image: {
  27838. source: "./media/characters/zander-rose/back.svg",
  27839. extra: 903 / 779,
  27840. bottom: 31 / 934
  27841. }
  27842. },
  27843. },
  27844. [
  27845. {
  27846. name: "Normal",
  27847. height: math.unit(1 + 3 / 12, "feet"),
  27848. default: true
  27849. },
  27850. ]
  27851. ))
  27852. characterMakers.push(() => makeCharacter(
  27853. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27854. {
  27855. anthro: {
  27856. height: math.unit(6, "feet"),
  27857. weight: math.unit(150, "lb"),
  27858. name: "Anthro",
  27859. image: {
  27860. source: "./media/characters/razz/anthro.svg",
  27861. extra: 1437 / 1343,
  27862. bottom: 48 / 1485
  27863. }
  27864. },
  27865. feral: {
  27866. height: math.unit(6, "feet"),
  27867. weight: math.unit(150, "lb"),
  27868. name: "Feral",
  27869. image: {
  27870. source: "./media/characters/razz/feral.svg",
  27871. extra: 2569 / 1385,
  27872. bottom: 95 / 2664
  27873. }
  27874. },
  27875. },
  27876. [
  27877. {
  27878. name: "Normal",
  27879. height: math.unit(6, "feet"),
  27880. default: true
  27881. },
  27882. ]
  27883. ))
  27884. characterMakers.push(() => makeCharacter(
  27885. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27886. {
  27887. front: {
  27888. height: math.unit(9 + 4 / 12, "feet"),
  27889. weight: math.unit(500, "lb"),
  27890. name: "Front",
  27891. image: {
  27892. source: "./media/characters/morrigan/front.svg",
  27893. extra: 2707 / 2579,
  27894. bottom: 156 / 2863
  27895. }
  27896. },
  27897. },
  27898. [
  27899. {
  27900. name: "Normal",
  27901. height: math.unit(9 + 4 / 12, "feet"),
  27902. default: true
  27903. },
  27904. ]
  27905. ))
  27906. characterMakers.push(() => makeCharacter(
  27907. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27908. {
  27909. front: {
  27910. height: math.unit(5, "stories"),
  27911. weight: math.unit(4000, "lb"),
  27912. name: "Front",
  27913. image: {
  27914. source: "./media/characters/jenene/front.svg",
  27915. extra: 1780 / 1710,
  27916. bottom: 57 / 1837
  27917. }
  27918. },
  27919. },
  27920. [
  27921. {
  27922. name: "Normal",
  27923. height: math.unit(5, "stories"),
  27924. default: true
  27925. },
  27926. ]
  27927. ))
  27928. characterMakers.push(() => makeCharacter(
  27929. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27930. {
  27931. taurSfw: {
  27932. height: math.unit(10, "meters"),
  27933. weight: math.unit(17500, "kg"),
  27934. name: "Taur",
  27935. image: {
  27936. source: "./media/characters/faey/taur-sfw.svg",
  27937. extra: 1200 / 968,
  27938. bottom: 41 / 1241
  27939. }
  27940. },
  27941. chestmaw: {
  27942. height: math.unit(2.01, "meters"),
  27943. name: "Chestmaw",
  27944. image: {
  27945. source: "./media/characters/faey/chestmaw.svg"
  27946. }
  27947. },
  27948. foot: {
  27949. height: math.unit(2.43, "meters"),
  27950. name: "Foot",
  27951. image: {
  27952. source: "./media/characters/faey/foot.svg"
  27953. }
  27954. },
  27955. jaws: {
  27956. height: math.unit(1.66, "meters"),
  27957. name: "Jaws",
  27958. image: {
  27959. source: "./media/characters/faey/jaws.svg"
  27960. }
  27961. },
  27962. tongues: {
  27963. height: math.unit(2.01, "meters"),
  27964. name: "Tongues",
  27965. image: {
  27966. source: "./media/characters/faey/tongues.svg"
  27967. }
  27968. },
  27969. },
  27970. [
  27971. {
  27972. name: "Small",
  27973. height: math.unit(10, "meters"),
  27974. default: true
  27975. },
  27976. {
  27977. name: "Big",
  27978. height: math.unit(500000, "km")
  27979. },
  27980. ]
  27981. ))
  27982. characterMakers.push(() => makeCharacter(
  27983. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27984. {
  27985. front: {
  27986. height: math.unit(7, "feet"),
  27987. weight: math.unit(275, "lb"),
  27988. name: "Front",
  27989. image: {
  27990. source: "./media/characters/roku/front.svg",
  27991. extra: 903 / 878,
  27992. bottom: 37 / 940
  27993. }
  27994. },
  27995. },
  27996. [
  27997. {
  27998. name: "Normal",
  27999. height: math.unit(7, "feet"),
  28000. default: true
  28001. },
  28002. {
  28003. name: "Macro",
  28004. height: math.unit(500, "feet")
  28005. },
  28006. {
  28007. name: "Megamacro",
  28008. height: math.unit(200, "miles")
  28009. },
  28010. ]
  28011. ))
  28012. characterMakers.push(() => makeCharacter(
  28013. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28014. {
  28015. front: {
  28016. height: math.unit(6 + 2 / 12, "feet"),
  28017. weight: math.unit(150, "lb"),
  28018. name: "Front",
  28019. image: {
  28020. source: "./media/characters/lira/front.svg",
  28021. extra: 1727 / 1605,
  28022. bottom: 26 / 1753
  28023. }
  28024. },
  28025. back: {
  28026. height: math.unit(6 + 2 / 12, "feet"),
  28027. weight: math.unit(150, "lb"),
  28028. name: "Back",
  28029. image: {
  28030. source: "./media/characters/lira/back.svg",
  28031. extra: 1713/1621,
  28032. bottom: 20/1733
  28033. }
  28034. },
  28035. hand: {
  28036. height: math.unit(0.75, "feet"),
  28037. name: "Hand",
  28038. image: {
  28039. source: "./media/characters/lira/hand.svg"
  28040. }
  28041. },
  28042. maw: {
  28043. height: math.unit(0.65, "feet"),
  28044. name: "Maw",
  28045. image: {
  28046. source: "./media/characters/lira/maw.svg"
  28047. }
  28048. },
  28049. pawDigi: {
  28050. height: math.unit(1.6, "feet"),
  28051. name: "Paw Digi",
  28052. image: {
  28053. source: "./media/characters/lira/paw-digi.svg"
  28054. }
  28055. },
  28056. pawPlanti: {
  28057. height: math.unit(1.4, "feet"),
  28058. name: "Paw Planti",
  28059. image: {
  28060. source: "./media/characters/lira/paw-planti.svg"
  28061. }
  28062. },
  28063. },
  28064. [
  28065. {
  28066. name: "Normal",
  28067. height: math.unit(6 + 2 / 12, "feet"),
  28068. default: true
  28069. },
  28070. {
  28071. name: "Macro",
  28072. height: math.unit(100, "feet")
  28073. },
  28074. {
  28075. name: "Macro²",
  28076. height: math.unit(1600, "feet")
  28077. },
  28078. {
  28079. name: "Planetary",
  28080. height: math.unit(20, "earths")
  28081. },
  28082. ]
  28083. ))
  28084. characterMakers.push(() => makeCharacter(
  28085. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28086. {
  28087. front: {
  28088. height: math.unit(6, "feet"),
  28089. weight: math.unit(150, "lb"),
  28090. name: "Front",
  28091. image: {
  28092. source: "./media/characters/hadjet/front.svg",
  28093. extra: 1480 / 1346,
  28094. bottom: 26 / 1506
  28095. }
  28096. },
  28097. frontNsfw: {
  28098. height: math.unit(6, "feet"),
  28099. weight: math.unit(150, "lb"),
  28100. name: "Front (NSFW)",
  28101. image: {
  28102. source: "./media/characters/hadjet/front-nsfw.svg",
  28103. extra: 1440 / 1358,
  28104. bottom: 52 / 1492
  28105. }
  28106. },
  28107. },
  28108. [
  28109. {
  28110. name: "Macro",
  28111. height: math.unit(10, "stories"),
  28112. default: true
  28113. },
  28114. {
  28115. name: "Megamacro",
  28116. height: math.unit(1.5, "miles")
  28117. },
  28118. {
  28119. name: "Megamacro+",
  28120. height: math.unit(5, "miles")
  28121. },
  28122. ]
  28123. ))
  28124. characterMakers.push(() => makeCharacter(
  28125. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28126. {
  28127. side: {
  28128. height: math.unit(106, "feet"),
  28129. weight: math.unit(500, "tonnes"),
  28130. name: "Side",
  28131. image: {
  28132. source: "./media/characters/kodran/side.svg",
  28133. extra: 553 / 480,
  28134. bottom: 33 / 586
  28135. }
  28136. },
  28137. front: {
  28138. height: math.unit(132, "feet"),
  28139. weight: math.unit(500, "tonnes"),
  28140. name: "Front",
  28141. image: {
  28142. source: "./media/characters/kodran/front.svg",
  28143. extra: 667 / 643,
  28144. bottom: 42 / 709
  28145. }
  28146. },
  28147. flying: {
  28148. height: math.unit(350, "feet"),
  28149. weight: math.unit(500, "tonnes"),
  28150. name: "Flying",
  28151. image: {
  28152. source: "./media/characters/kodran/flying.svg"
  28153. }
  28154. },
  28155. foot: {
  28156. height: math.unit(33, "feet"),
  28157. name: "Foot",
  28158. image: {
  28159. source: "./media/characters/kodran/foot.svg"
  28160. }
  28161. },
  28162. footFront: {
  28163. height: math.unit(19, "feet"),
  28164. name: "Foot (Front)",
  28165. image: {
  28166. source: "./media/characters/kodran/foot-front.svg",
  28167. extra: 261 / 261,
  28168. bottom: 91 / 352
  28169. }
  28170. },
  28171. headFront: {
  28172. height: math.unit(53, "feet"),
  28173. name: "Head (Front)",
  28174. image: {
  28175. source: "./media/characters/kodran/head-front.svg"
  28176. }
  28177. },
  28178. headSide: {
  28179. height: math.unit(65, "feet"),
  28180. name: "Head (Side)",
  28181. image: {
  28182. source: "./media/characters/kodran/head-side.svg"
  28183. }
  28184. },
  28185. throat: {
  28186. height: math.unit(79, "feet"),
  28187. name: "Throat",
  28188. image: {
  28189. source: "./media/characters/kodran/throat.svg"
  28190. }
  28191. },
  28192. },
  28193. [
  28194. {
  28195. name: "Large",
  28196. height: math.unit(106, "feet"),
  28197. default: true
  28198. },
  28199. ]
  28200. ))
  28201. characterMakers.push(() => makeCharacter(
  28202. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28203. {
  28204. side: {
  28205. height: math.unit(11, "feet"),
  28206. weight: math.unit(150, "lb"),
  28207. name: "Side",
  28208. image: {
  28209. source: "./media/characters/pyxaron/side.svg",
  28210. extra: 305 / 195,
  28211. bottom: 17 / 322
  28212. }
  28213. },
  28214. },
  28215. [
  28216. {
  28217. name: "Normal",
  28218. height: math.unit(11, "feet"),
  28219. default: true
  28220. },
  28221. ]
  28222. ))
  28223. characterMakers.push(() => makeCharacter(
  28224. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28225. {
  28226. front: {
  28227. height: math.unit(6, "feet"),
  28228. weight: math.unit(150, "lb"),
  28229. name: "Front",
  28230. image: {
  28231. source: "./media/characters/meep/front.svg",
  28232. extra: 88 / 80,
  28233. bottom: 6 / 94
  28234. }
  28235. },
  28236. },
  28237. [
  28238. {
  28239. name: "Fun Sized",
  28240. height: math.unit(2, "inches"),
  28241. default: true
  28242. },
  28243. {
  28244. name: "Friend Sized",
  28245. height: math.unit(8, "inches")
  28246. },
  28247. ]
  28248. ))
  28249. characterMakers.push(() => makeCharacter(
  28250. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28251. {
  28252. front: {
  28253. height: math.unit(15, "feet"),
  28254. weight: math.unit(2500, "lb"),
  28255. name: "Front",
  28256. image: {
  28257. source: "./media/characters/holly-rabbit/front.svg",
  28258. extra: 1433 / 1233,
  28259. bottom: 125 / 1558
  28260. }
  28261. },
  28262. dick: {
  28263. height: math.unit(4.6, "feet"),
  28264. name: "Dick",
  28265. image: {
  28266. source: "./media/characters/holly-rabbit/dick.svg"
  28267. }
  28268. },
  28269. },
  28270. [
  28271. {
  28272. name: "Normal",
  28273. height: math.unit(15, "feet"),
  28274. default: true
  28275. },
  28276. {
  28277. name: "Macro",
  28278. height: math.unit(250, "feet")
  28279. },
  28280. {
  28281. name: "Macro+",
  28282. height: math.unit(2500, "feet")
  28283. },
  28284. ]
  28285. ))
  28286. characterMakers.push(() => makeCharacter(
  28287. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28288. {
  28289. front: {
  28290. height: math.unit(3.02, "meters"),
  28291. weight: math.unit(500, "kg"),
  28292. name: "Front",
  28293. image: {
  28294. source: "./media/characters/drena/front.svg",
  28295. extra: 282 / 243,
  28296. bottom: 8 / 290
  28297. }
  28298. },
  28299. side: {
  28300. height: math.unit(3.02, "meters"),
  28301. weight: math.unit(500, "kg"),
  28302. name: "Side",
  28303. image: {
  28304. source: "./media/characters/drena/side.svg",
  28305. extra: 280 / 245,
  28306. bottom: 10 / 290
  28307. }
  28308. },
  28309. back: {
  28310. height: math.unit(3.02, "meters"),
  28311. weight: math.unit(500, "kg"),
  28312. name: "Back",
  28313. image: {
  28314. source: "./media/characters/drena/back.svg",
  28315. extra: 278 / 243,
  28316. bottom: 2 / 280
  28317. }
  28318. },
  28319. foot: {
  28320. height: math.unit(0.75, "meters"),
  28321. name: "Foot",
  28322. image: {
  28323. source: "./media/characters/drena/foot.svg"
  28324. }
  28325. },
  28326. maw: {
  28327. height: math.unit(0.82, "meters"),
  28328. name: "Maw",
  28329. image: {
  28330. source: "./media/characters/drena/maw.svg"
  28331. }
  28332. },
  28333. rump: {
  28334. height: math.unit(0.93, "meters"),
  28335. name: "Rump",
  28336. image: {
  28337. source: "./media/characters/drena/rump.svg"
  28338. }
  28339. },
  28340. },
  28341. [
  28342. {
  28343. name: "Normal",
  28344. height: math.unit(3.02, "meters"),
  28345. default: true
  28346. },
  28347. ]
  28348. ))
  28349. characterMakers.push(() => makeCharacter(
  28350. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28351. {
  28352. front: {
  28353. height: math.unit(6 + 4 / 12, "feet"),
  28354. weight: math.unit(250, "lb"),
  28355. name: "Front",
  28356. image: {
  28357. source: "./media/characters/remmyzilla/front.svg",
  28358. extra: 4033 / 3588,
  28359. bottom: 123 / 4156
  28360. }
  28361. },
  28362. back: {
  28363. height: math.unit(6 + 4 / 12, "feet"),
  28364. weight: math.unit(250, "lb"),
  28365. name: "Back",
  28366. image: {
  28367. source: "./media/characters/remmyzilla/back.svg",
  28368. extra: 2687 / 2555,
  28369. bottom: 48 / 2735
  28370. }
  28371. },
  28372. paw: {
  28373. height: math.unit(1.73, "feet"),
  28374. name: "Paw",
  28375. image: {
  28376. source: "./media/characters/remmyzilla/paw.svg"
  28377. }
  28378. },
  28379. maw: {
  28380. height: math.unit(1.73, "feet"),
  28381. name: "Maw",
  28382. image: {
  28383. source: "./media/characters/remmyzilla/maw.svg"
  28384. }
  28385. },
  28386. },
  28387. [
  28388. {
  28389. name: "Normal",
  28390. height: math.unit(6 + 4 / 12, "feet")
  28391. },
  28392. {
  28393. name: "Minimacro",
  28394. height: math.unit(12 + 8 / 12, "feet")
  28395. },
  28396. {
  28397. name: "Normal",
  28398. height: math.unit(640, "feet"),
  28399. default: true
  28400. },
  28401. {
  28402. name: "Megamacro",
  28403. height: math.unit(6400, "feet")
  28404. },
  28405. {
  28406. name: "Gigamacro",
  28407. height: math.unit(64000, "miles")
  28408. },
  28409. ]
  28410. ))
  28411. characterMakers.push(() => makeCharacter(
  28412. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28413. {
  28414. front: {
  28415. height: math.unit(2.5, "meters"),
  28416. weight: math.unit(300, "lb"),
  28417. name: "Front",
  28418. image: {
  28419. source: "./media/characters/lawrence/front.svg",
  28420. extra: 357 / 335,
  28421. bottom: 30 / 387
  28422. }
  28423. },
  28424. back: {
  28425. height: math.unit(2.5, "meters"),
  28426. weight: math.unit(300, "lb"),
  28427. name: "Back",
  28428. image: {
  28429. source: "./media/characters/lawrence/back.svg",
  28430. extra: 357 / 338,
  28431. bottom: 16 / 373
  28432. }
  28433. },
  28434. head: {
  28435. height: math.unit(0.9, "meter"),
  28436. name: "Head",
  28437. image: {
  28438. source: "./media/characters/lawrence/head.svg"
  28439. }
  28440. },
  28441. maw: {
  28442. height: math.unit(0.7, "meter"),
  28443. name: "Maw",
  28444. image: {
  28445. source: "./media/characters/lawrence/maw.svg"
  28446. }
  28447. },
  28448. footBottom: {
  28449. height: math.unit(0.5, "meter"),
  28450. name: "Foot (Bottom)",
  28451. image: {
  28452. source: "./media/characters/lawrence/foot-bottom.svg"
  28453. }
  28454. },
  28455. footTop: {
  28456. height: math.unit(0.5, "meter"),
  28457. name: "Foot (Top)",
  28458. image: {
  28459. source: "./media/characters/lawrence/foot-top.svg"
  28460. }
  28461. },
  28462. },
  28463. [
  28464. {
  28465. name: "Normal",
  28466. height: math.unit(2.5, "meters"),
  28467. default: true
  28468. },
  28469. {
  28470. name: "Macro",
  28471. height: math.unit(95, "meters")
  28472. },
  28473. {
  28474. name: "Megamacro",
  28475. height: math.unit(150, "km")
  28476. },
  28477. ]
  28478. ))
  28479. characterMakers.push(() => makeCharacter(
  28480. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28481. {
  28482. front: {
  28483. height: math.unit(4.2, "meters"),
  28484. name: "Front",
  28485. image: {
  28486. source: "./media/characters/sydney/front.svg",
  28487. extra: 1323 / 1277,
  28488. bottom: 111 / 1434
  28489. }
  28490. },
  28491. },
  28492. [
  28493. {
  28494. name: "Normal",
  28495. height: math.unit(4.2, "meters"),
  28496. default: true
  28497. },
  28498. ]
  28499. ))
  28500. characterMakers.push(() => makeCharacter(
  28501. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28502. {
  28503. back: {
  28504. height: math.unit(201, "feet"),
  28505. name: "Back",
  28506. image: {
  28507. source: "./media/characters/jessica/back.svg",
  28508. extra: 273 / 259,
  28509. bottom: 7 / 280
  28510. }
  28511. },
  28512. },
  28513. [
  28514. {
  28515. name: "Normal",
  28516. height: math.unit(201, "feet"),
  28517. default: true
  28518. },
  28519. {
  28520. name: "Megamacro",
  28521. height: math.unit(8, "miles")
  28522. },
  28523. ]
  28524. ))
  28525. characterMakers.push(() => makeCharacter(
  28526. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28527. {
  28528. side: {
  28529. height: math.unit(320, "cm"),
  28530. name: "Side",
  28531. image: {
  28532. source: "./media/characters/victoria/side.svg",
  28533. extra: 778 / 346,
  28534. bottom: 56 / 834
  28535. }
  28536. },
  28537. maw: {
  28538. height: math.unit(5.9, "feet"),
  28539. name: "Maw",
  28540. image: {
  28541. source: "./media/characters/victoria/maw.svg"
  28542. }
  28543. },
  28544. },
  28545. [
  28546. {
  28547. name: "Normal",
  28548. height: math.unit(320, "cm"),
  28549. default: true
  28550. },
  28551. ]
  28552. ))
  28553. characterMakers.push(() => makeCharacter(
  28554. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28555. {
  28556. front: {
  28557. height: math.unit(5 + 6 / 12, "feet"),
  28558. name: "Front",
  28559. image: {
  28560. source: "./media/characters/cat/front.svg",
  28561. extra: 1449/1295,
  28562. bottom: 34/1483
  28563. }
  28564. },
  28565. back: {
  28566. height: math.unit(5 + 6 / 12, "feet"),
  28567. name: "Back",
  28568. image: {
  28569. source: "./media/characters/cat/back.svg",
  28570. extra: 1466/1301,
  28571. bottom: 19/1485
  28572. }
  28573. },
  28574. taur: {
  28575. height: math.unit(7, "feet"),
  28576. name: "Taur",
  28577. image: {
  28578. source: "./media/characters/cat/taur.svg",
  28579. extra: 1389/1233,
  28580. bottom: 83/1472
  28581. }
  28582. },
  28583. lucarioFront: {
  28584. height: math.unit(4, "feet"),
  28585. name: "Lucario (Front)",
  28586. image: {
  28587. source: "./media/characters/cat/lucario-front.svg",
  28588. extra: 1149/1019,
  28589. bottom: 84/1233
  28590. }
  28591. },
  28592. lucarioBack: {
  28593. height: math.unit(4, "feet"),
  28594. name: "Lucario (Back)",
  28595. image: {
  28596. source: "./media/characters/cat/lucario-back.svg",
  28597. extra: 1190/1059,
  28598. bottom: 33/1223
  28599. }
  28600. },
  28601. megaLucario: {
  28602. height: math.unit(4, "feet"),
  28603. name: "Mega Lucario",
  28604. image: {
  28605. source: "./media/characters/cat/mega-lucario.svg",
  28606. extra: 1515 / 1319,
  28607. bottom: 63 / 1578
  28608. }
  28609. },
  28610. nickit: {
  28611. height: math.unit(2, "feet"),
  28612. name: "Nickit",
  28613. image: {
  28614. source: "./media/characters/cat/nickit.svg",
  28615. extra: 1980 / 1585,
  28616. bottom: 102 / 2082
  28617. }
  28618. },
  28619. lopunnyFront: {
  28620. height: math.unit(5, "feet"),
  28621. name: "Lopunny (Front)",
  28622. image: {
  28623. source: "./media/characters/cat/lopunny-front.svg",
  28624. extra: 1782 / 1469,
  28625. bottom: 38 / 1820
  28626. }
  28627. },
  28628. lopunnyBack: {
  28629. height: math.unit(5, "feet"),
  28630. name: "Lopunny (Back)",
  28631. image: {
  28632. source: "./media/characters/cat/lopunny-back.svg",
  28633. extra: 1660 / 1490,
  28634. bottom: 25 / 1685
  28635. }
  28636. },
  28637. },
  28638. [
  28639. {
  28640. name: "Really small",
  28641. height: math.unit(1, "nm")
  28642. },
  28643. {
  28644. name: "Micro",
  28645. height: math.unit(5, "inches")
  28646. },
  28647. {
  28648. name: "Normal",
  28649. height: math.unit(5 + 6 / 12, "feet"),
  28650. default: true
  28651. },
  28652. {
  28653. name: "Macro",
  28654. height: math.unit(50, "feet")
  28655. },
  28656. {
  28657. name: "Macro+",
  28658. height: math.unit(150, "feet")
  28659. },
  28660. {
  28661. name: "Megamacro",
  28662. height: math.unit(100, "miles")
  28663. },
  28664. ]
  28665. ))
  28666. characterMakers.push(() => makeCharacter(
  28667. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28668. {
  28669. front: {
  28670. height: math.unit(63.4, "meters"),
  28671. weight: math.unit(3.28349e+6, "kilograms"),
  28672. name: "Front",
  28673. image: {
  28674. source: "./media/characters/kirina-violet/front.svg",
  28675. extra: 2812 / 2725,
  28676. bottom: 0 / 2812
  28677. }
  28678. },
  28679. back: {
  28680. height: math.unit(63.4, "meters"),
  28681. weight: math.unit(3.28349e+6, "kilograms"),
  28682. name: "Back",
  28683. image: {
  28684. source: "./media/characters/kirina-violet/back.svg",
  28685. extra: 2812 / 2725,
  28686. bottom: 0 / 2812
  28687. }
  28688. },
  28689. mouth: {
  28690. height: math.unit(4.35, "meters"),
  28691. name: "Mouth",
  28692. image: {
  28693. source: "./media/characters/kirina-violet/mouth.svg"
  28694. }
  28695. },
  28696. paw: {
  28697. height: math.unit(5.6, "meters"),
  28698. name: "Paw",
  28699. image: {
  28700. source: "./media/characters/kirina-violet/paw.svg"
  28701. }
  28702. },
  28703. tail: {
  28704. height: math.unit(18, "meters"),
  28705. name: "Tail",
  28706. image: {
  28707. source: "./media/characters/kirina-violet/tail.svg"
  28708. }
  28709. },
  28710. },
  28711. [
  28712. {
  28713. name: "Macro",
  28714. height: math.unit(63.4, "meters"),
  28715. default: true
  28716. },
  28717. ]
  28718. ))
  28719. characterMakers.push(() => makeCharacter(
  28720. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28721. {
  28722. front: {
  28723. height: math.unit(75, "feet"),
  28724. name: "Front",
  28725. image: {
  28726. source: "./media/characters/cat-gigachu/front.svg",
  28727. extra: 1239/1027,
  28728. bottom: 32/1271
  28729. }
  28730. },
  28731. back: {
  28732. height: math.unit(75, "feet"),
  28733. name: "Back",
  28734. image: {
  28735. source: "./media/characters/cat-gigachu/back.svg",
  28736. extra: 1229/1030,
  28737. bottom: 9/1238
  28738. }
  28739. },
  28740. },
  28741. [
  28742. {
  28743. name: "Dynamax",
  28744. height: math.unit(75, "feet"),
  28745. default: true
  28746. },
  28747. ]
  28748. ))
  28749. characterMakers.push(() => makeCharacter(
  28750. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28751. {
  28752. front: {
  28753. height: math.unit(6, "feet"),
  28754. weight: math.unit(150, "lb"),
  28755. name: "Front",
  28756. image: {
  28757. source: "./media/characters/sfaiyan/front.svg",
  28758. extra: 999 / 978,
  28759. bottom: 5 / 1004
  28760. }
  28761. },
  28762. },
  28763. [
  28764. {
  28765. name: "Normal",
  28766. height: math.unit(1.82, "meters")
  28767. },
  28768. {
  28769. name: "Giant",
  28770. height: math.unit(2.27, "km"),
  28771. default: true
  28772. },
  28773. ]
  28774. ))
  28775. characterMakers.push(() => makeCharacter(
  28776. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28777. {
  28778. front: {
  28779. height: math.unit(179, "cm"),
  28780. weight: math.unit(100, "kg"),
  28781. name: "Front",
  28782. image: {
  28783. source: "./media/characters/raunehkeli/front.svg",
  28784. extra: 1934 / 1926,
  28785. bottom: 0 / 1934
  28786. }
  28787. },
  28788. },
  28789. [
  28790. {
  28791. name: "Normal",
  28792. height: math.unit(179, "cm")
  28793. },
  28794. {
  28795. name: "Maximum",
  28796. height: math.unit(575, "meters"),
  28797. default: true
  28798. },
  28799. ]
  28800. ))
  28801. characterMakers.push(() => makeCharacter(
  28802. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28803. {
  28804. front: {
  28805. height: math.unit(6, "feet"),
  28806. weight: math.unit(150, "lb"),
  28807. name: "Front",
  28808. image: {
  28809. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28810. extra: 2625 / 2518,
  28811. bottom: 60 / 2685
  28812. }
  28813. },
  28814. },
  28815. [
  28816. {
  28817. name: "Normal",
  28818. height: math.unit(6 + 2 / 12, "feet")
  28819. },
  28820. {
  28821. name: "Macro",
  28822. height: math.unit(1180, "feet"),
  28823. default: true
  28824. },
  28825. ]
  28826. ))
  28827. characterMakers.push(() => makeCharacter(
  28828. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28829. {
  28830. front: {
  28831. height: math.unit(5 + 6 / 12, "feet"),
  28832. weight: math.unit(108, "lb"),
  28833. name: "Front",
  28834. image: {
  28835. source: "./media/characters/lilith-zott/front.svg",
  28836. extra: 2510 / 2238,
  28837. bottom: 100 / 2610
  28838. }
  28839. },
  28840. frontDressed: {
  28841. height: math.unit(5 + 6 / 12, "feet"),
  28842. weight: math.unit(108, "lb"),
  28843. name: "Front (Dressed)",
  28844. image: {
  28845. source: "./media/characters/lilith-zott/front-dressed.svg",
  28846. extra: 2510 / 2238,
  28847. bottom: 100 / 2610
  28848. }
  28849. },
  28850. },
  28851. [
  28852. {
  28853. name: "Normal",
  28854. height: math.unit(5 + 6 / 12, "feet")
  28855. },
  28856. {
  28857. name: "Macro",
  28858. height: math.unit(1030, "feet"),
  28859. default: true
  28860. },
  28861. ]
  28862. ))
  28863. characterMakers.push(() => makeCharacter(
  28864. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28865. {
  28866. front: {
  28867. height: math.unit(6, "feet"),
  28868. weight: math.unit(150, "lb"),
  28869. name: "Front",
  28870. image: {
  28871. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28872. extra: 2567 / 2435,
  28873. bottom: 39 / 2606
  28874. }
  28875. },
  28876. frontSuper: {
  28877. height: math.unit(6, "feet"),
  28878. name: "Front (Super)",
  28879. image: {
  28880. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28881. extra: 2567 / 2435,
  28882. bottom: 39 / 2606
  28883. }
  28884. },
  28885. },
  28886. [
  28887. {
  28888. name: "Normal",
  28889. height: math.unit(5 + 10 / 12, "feet")
  28890. },
  28891. {
  28892. name: "Macro",
  28893. height: math.unit(1100, "feet"),
  28894. default: true
  28895. },
  28896. ]
  28897. ))
  28898. characterMakers.push(() => makeCharacter(
  28899. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28900. {
  28901. front: {
  28902. height: math.unit(100, "miles"),
  28903. name: "Front",
  28904. image: {
  28905. source: "./media/characters/sona/front.svg",
  28906. extra: 2433 / 2201,
  28907. bottom: 53 / 2486
  28908. }
  28909. },
  28910. foot: {
  28911. height: math.unit(16.1, "miles"),
  28912. name: "Foot",
  28913. image: {
  28914. source: "./media/characters/sona/foot.svg"
  28915. }
  28916. },
  28917. },
  28918. [
  28919. {
  28920. name: "Macro",
  28921. height: math.unit(100, "miles"),
  28922. default: true
  28923. },
  28924. ]
  28925. ))
  28926. characterMakers.push(() => makeCharacter(
  28927. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28928. {
  28929. front: {
  28930. height: math.unit(6, "feet"),
  28931. weight: math.unit(150, "lb"),
  28932. name: "Front",
  28933. image: {
  28934. source: "./media/characters/bailey/front.svg",
  28935. extra: 1778 / 1724,
  28936. bottom: 30 / 1808
  28937. }
  28938. },
  28939. },
  28940. [
  28941. {
  28942. name: "Micro",
  28943. height: math.unit(4, "inches")
  28944. },
  28945. {
  28946. name: "Normal",
  28947. height: math.unit(5 + 5 / 12, "feet"),
  28948. default: true
  28949. },
  28950. {
  28951. name: "Macro",
  28952. height: math.unit(250, "feet")
  28953. },
  28954. {
  28955. name: "Megamacro",
  28956. height: math.unit(100, "miles")
  28957. },
  28958. ]
  28959. ))
  28960. characterMakers.push(() => makeCharacter(
  28961. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28962. {
  28963. front: {
  28964. height: math.unit(5 + 2 / 12, "feet"),
  28965. weight: math.unit(120, "lb"),
  28966. name: "Front",
  28967. image: {
  28968. source: "./media/characters/snaps/front.svg",
  28969. extra: 2370 / 2177,
  28970. bottom: 48 / 2418
  28971. }
  28972. },
  28973. back: {
  28974. height: math.unit(5 + 2 / 12, "feet"),
  28975. weight: math.unit(120, "lb"),
  28976. name: "Back",
  28977. image: {
  28978. source: "./media/characters/snaps/back.svg",
  28979. extra: 2408 / 2258,
  28980. bottom: 15 / 2423
  28981. }
  28982. },
  28983. },
  28984. [
  28985. {
  28986. name: "Micro",
  28987. height: math.unit(9, "inches")
  28988. },
  28989. {
  28990. name: "Normal",
  28991. height: math.unit(5 + 2 / 12, "feet"),
  28992. default: true
  28993. },
  28994. {
  28995. name: "Mini Macro",
  28996. height: math.unit(10, "feet")
  28997. },
  28998. ]
  28999. ))
  29000. characterMakers.push(() => makeCharacter(
  29001. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29002. {
  29003. front: {
  29004. height: math.unit(1.8, "meters"),
  29005. weight: math.unit(85, "kg"),
  29006. name: "Front",
  29007. image: {
  29008. source: "./media/characters/azteck/front.svg",
  29009. extra: 2815 / 2625,
  29010. bottom: 89 / 2904
  29011. }
  29012. },
  29013. back: {
  29014. height: math.unit(1.8, "meters"),
  29015. weight: math.unit(85, "kg"),
  29016. name: "Back",
  29017. image: {
  29018. source: "./media/characters/azteck/back.svg",
  29019. extra: 2856 / 2648,
  29020. bottom: 85 / 2941
  29021. }
  29022. },
  29023. frontDressed: {
  29024. height: math.unit(1.8, "meters"),
  29025. weight: math.unit(85, "kg"),
  29026. name: "Front (Dressed)",
  29027. image: {
  29028. source: "./media/characters/azteck/front-dressed.svg",
  29029. extra: 2147 / 2003,
  29030. bottom: 68 / 2215
  29031. }
  29032. },
  29033. head: {
  29034. height: math.unit(0.47, "meters"),
  29035. weight: math.unit(85, "kg"),
  29036. name: "Head",
  29037. image: {
  29038. source: "./media/characters/azteck/head.svg"
  29039. }
  29040. },
  29041. },
  29042. [
  29043. {
  29044. name: "Bite sized",
  29045. height: math.unit(16, "cm")
  29046. },
  29047. {
  29048. name: "Normal",
  29049. height: math.unit(1.8, "meters"),
  29050. default: true
  29051. },
  29052. ]
  29053. ))
  29054. characterMakers.push(() => makeCharacter(
  29055. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29056. {
  29057. front: {
  29058. height: math.unit(6, "feet"),
  29059. weight: math.unit(150, "lb"),
  29060. name: "Front",
  29061. image: {
  29062. source: "./media/characters/pidge/front.svg",
  29063. extra: 620 / 588,
  29064. bottom: 9 / 629
  29065. }
  29066. },
  29067. back: {
  29068. height: math.unit(6, "feet"),
  29069. weight: math.unit(150, "lb"),
  29070. name: "Back",
  29071. image: {
  29072. source: "./media/characters/pidge/back.svg",
  29073. extra: 620 / 588,
  29074. bottom: 9 / 629
  29075. }
  29076. },
  29077. },
  29078. [
  29079. {
  29080. name: "Macro",
  29081. height: math.unit(1, "mile"),
  29082. default: true
  29083. },
  29084. ]
  29085. ))
  29086. characterMakers.push(() => makeCharacter(
  29087. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29088. {
  29089. front: {
  29090. height: math.unit(6, "feet"),
  29091. weight: math.unit(150, "lb"),
  29092. name: "Front",
  29093. image: {
  29094. source: "./media/characters/en/front.svg",
  29095. extra: 1697 / 1563,
  29096. bottom: 103 / 1800
  29097. }
  29098. },
  29099. back: {
  29100. height: math.unit(6, "feet"),
  29101. weight: math.unit(150, "lb"),
  29102. name: "Back",
  29103. image: {
  29104. source: "./media/characters/en/back.svg",
  29105. extra: 1700 / 1570,
  29106. bottom: 51 / 1751
  29107. }
  29108. },
  29109. frontDressed: {
  29110. height: math.unit(6, "feet"),
  29111. weight: math.unit(150, "lb"),
  29112. name: "Front (Dressed)",
  29113. image: {
  29114. source: "./media/characters/en/front-dressed.svg",
  29115. extra: 1697 / 1563,
  29116. bottom: 103 / 1800
  29117. }
  29118. },
  29119. backDressed: {
  29120. height: math.unit(6, "feet"),
  29121. weight: math.unit(150, "lb"),
  29122. name: "Back (Dressed)",
  29123. image: {
  29124. source: "./media/characters/en/back-dressed.svg",
  29125. extra: 1700 / 1570,
  29126. bottom: 51 / 1751
  29127. }
  29128. },
  29129. },
  29130. [
  29131. {
  29132. name: "Macro",
  29133. height: math.unit(210, "feet"),
  29134. default: true
  29135. },
  29136. ]
  29137. ))
  29138. characterMakers.push(() => makeCharacter(
  29139. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29140. {
  29141. front: {
  29142. height: math.unit(6, "feet"),
  29143. weight: math.unit(150, "lb"),
  29144. name: "Front",
  29145. image: {
  29146. source: "./media/characters/haze-orris/front.svg",
  29147. extra: 3975 / 3525,
  29148. bottom: 137 / 4112
  29149. }
  29150. },
  29151. },
  29152. [
  29153. {
  29154. name: "Micro",
  29155. height: math.unit(150, "mm"),
  29156. default: true
  29157. },
  29158. ]
  29159. ))
  29160. characterMakers.push(() => makeCharacter(
  29161. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29162. {
  29163. front: {
  29164. height: math.unit(6, "feet"),
  29165. weight: math.unit(150, "lb"),
  29166. name: "Front",
  29167. image: {
  29168. source: "./media/characters/casselene-yaro/front.svg",
  29169. extra: 4721 / 4541,
  29170. bottom: 82 / 4803
  29171. }
  29172. },
  29173. back: {
  29174. height: math.unit(6, "feet"),
  29175. weight: math.unit(150, "lb"),
  29176. name: "Back",
  29177. image: {
  29178. source: "./media/characters/casselene-yaro/back.svg",
  29179. extra: 4569 / 4377,
  29180. bottom: 69 / 4638
  29181. }
  29182. },
  29183. frontDressed: {
  29184. height: math.unit(6, "feet"),
  29185. weight: math.unit(150, "lb"),
  29186. name: "Front-dressed",
  29187. image: {
  29188. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29189. extra: 4721 / 4541,
  29190. bottom: 82 / 4803
  29191. }
  29192. },
  29193. },
  29194. [
  29195. {
  29196. name: "Macro",
  29197. height: math.unit(190, "feet"),
  29198. default: true
  29199. },
  29200. ]
  29201. ))
  29202. characterMakers.push(() => makeCharacter(
  29203. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29204. {
  29205. front: {
  29206. height: math.unit(6, "feet"),
  29207. weight: math.unit(150, "lb"),
  29208. name: "Front",
  29209. image: {
  29210. source: "./media/characters/myra-rue-delore/front.svg",
  29211. extra: 1340 / 1308,
  29212. bottom: 67 / 1407
  29213. }
  29214. },
  29215. back: {
  29216. height: math.unit(6, "feet"),
  29217. weight: math.unit(150, "lb"),
  29218. name: "Back",
  29219. image: {
  29220. source: "./media/characters/myra-rue-delore/back.svg",
  29221. extra: 1341 / 1310,
  29222. bottom: 40 / 1381
  29223. }
  29224. },
  29225. frontDressed: {
  29226. height: math.unit(6, "feet"),
  29227. weight: math.unit(150, "lb"),
  29228. name: "Front (Dressed)",
  29229. image: {
  29230. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29231. extra: 1340 / 1308,
  29232. bottom: 67 / 1407
  29233. }
  29234. },
  29235. },
  29236. [
  29237. {
  29238. name: "Macro",
  29239. height: math.unit(150, "feet"),
  29240. default: true
  29241. },
  29242. ]
  29243. ))
  29244. characterMakers.push(() => makeCharacter(
  29245. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29246. {
  29247. front: {
  29248. height: math.unit(10, "feet"),
  29249. weight: math.unit(15015, "lb"),
  29250. name: "Front",
  29251. image: {
  29252. source: "./media/characters/fem!plat/front.svg",
  29253. extra: 2799 / 2604,
  29254. bottom: 149 / 2948
  29255. }
  29256. },
  29257. },
  29258. [
  29259. {
  29260. name: "Normal",
  29261. height: math.unit(10, "feet"),
  29262. default: true
  29263. },
  29264. {
  29265. name: "Macro",
  29266. height: math.unit(100, "feet")
  29267. },
  29268. {
  29269. name: "Megamacro",
  29270. height: math.unit(1000, "feet")
  29271. },
  29272. ]
  29273. ))
  29274. characterMakers.push(() => makeCharacter(
  29275. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29276. {
  29277. front: {
  29278. height: math.unit(15 + 5 / 12, "feet"),
  29279. weight: math.unit(4600, "lb"),
  29280. name: "Front",
  29281. image: {
  29282. source: "./media/characters/neapolitan-ananassa/front.svg",
  29283. extra: 2903 / 2736,
  29284. bottom: 0 / 2903
  29285. }
  29286. },
  29287. side: {
  29288. height: math.unit(15 + 5 / 12, "feet"),
  29289. weight: math.unit(4600, "lb"),
  29290. name: "Side",
  29291. image: {
  29292. source: "./media/characters/neapolitan-ananassa/side.svg",
  29293. extra: 2925 / 2719,
  29294. bottom: 0 / 2925
  29295. }
  29296. },
  29297. back: {
  29298. height: math.unit(15 + 5 / 12, "feet"),
  29299. weight: math.unit(4600, "lb"),
  29300. name: "Back",
  29301. image: {
  29302. source: "./media/characters/neapolitan-ananassa/back.svg",
  29303. extra: 2903 / 2736,
  29304. bottom: 0 / 2903
  29305. }
  29306. },
  29307. },
  29308. [
  29309. {
  29310. name: "Normal",
  29311. height: math.unit(15 + 5 / 12, "feet"),
  29312. default: true
  29313. },
  29314. {
  29315. name: "Post-Millenium",
  29316. height: math.unit(35 + 5 / 12, "feet")
  29317. },
  29318. {
  29319. name: "Post-Era",
  29320. height: math.unit(450 + 5 / 12, "feet")
  29321. },
  29322. ]
  29323. ))
  29324. characterMakers.push(() => makeCharacter(
  29325. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29326. {
  29327. front: {
  29328. height: math.unit(300, "meters"),
  29329. weight: math.unit(125000, "tonnes"),
  29330. name: "Front",
  29331. image: {
  29332. source: "./media/characters/pazuzu/front.svg",
  29333. extra: 877 / 794,
  29334. bottom: 47 / 924
  29335. }
  29336. },
  29337. },
  29338. [
  29339. {
  29340. name: "Macro",
  29341. height: math.unit(300, "meters"),
  29342. default: true
  29343. },
  29344. ]
  29345. ))
  29346. characterMakers.push(() => makeCharacter(
  29347. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29348. {
  29349. side: {
  29350. height: math.unit(10 + 7 / 12, "feet"),
  29351. weight: math.unit(2.5, "tons"),
  29352. name: "Side",
  29353. image: {
  29354. source: "./media/characters/aasha/side.svg",
  29355. extra: 1345 / 1245,
  29356. bottom: 111 / 1456
  29357. }
  29358. },
  29359. back: {
  29360. height: math.unit(10 + 7 / 12, "feet"),
  29361. weight: math.unit(2.5, "tons"),
  29362. name: "Back",
  29363. image: {
  29364. source: "./media/characters/aasha/back.svg",
  29365. extra: 1133 / 1057,
  29366. bottom: 257 / 1390
  29367. }
  29368. },
  29369. },
  29370. [
  29371. {
  29372. name: "Normal",
  29373. height: math.unit(10 + 7 / 12, "feet"),
  29374. default: true
  29375. },
  29376. ]
  29377. ))
  29378. characterMakers.push(() => makeCharacter(
  29379. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29380. {
  29381. front: {
  29382. height: math.unit(6 + 3 / 12, "feet"),
  29383. name: "Front",
  29384. image: {
  29385. source: "./media/characters/nevan/front.svg",
  29386. extra: 704 / 704,
  29387. bottom: 28 / 732
  29388. }
  29389. },
  29390. back: {
  29391. height: math.unit(6 + 3 / 12, "feet"),
  29392. name: "Back",
  29393. image: {
  29394. source: "./media/characters/nevan/back.svg",
  29395. extra: 714 / 714,
  29396. bottom: 21 / 735
  29397. }
  29398. },
  29399. frontFlaccid: {
  29400. height: math.unit(6 + 3 / 12, "feet"),
  29401. name: "Front (Flaccid)",
  29402. image: {
  29403. source: "./media/characters/nevan/front-flaccid.svg",
  29404. extra: 704 / 704,
  29405. bottom: 28 / 732
  29406. }
  29407. },
  29408. frontErect: {
  29409. height: math.unit(6 + 3 / 12, "feet"),
  29410. name: "Front (Erect)",
  29411. image: {
  29412. source: "./media/characters/nevan/front-erect.svg",
  29413. extra: 704 / 704,
  29414. bottom: 28 / 732
  29415. }
  29416. },
  29417. backFlaccid: {
  29418. height: math.unit(6 + 3 / 12, "feet"),
  29419. name: "Back (Flaccid)",
  29420. image: {
  29421. source: "./media/characters/nevan/back-flaccid.svg",
  29422. extra: 714 / 714,
  29423. bottom: 21 / 735
  29424. }
  29425. },
  29426. },
  29427. [
  29428. {
  29429. name: "Normal",
  29430. height: math.unit(6 + 3 / 12, "feet"),
  29431. default: true
  29432. },
  29433. ]
  29434. ))
  29435. characterMakers.push(() => makeCharacter(
  29436. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29437. {
  29438. front: {
  29439. height: math.unit(4, "feet"),
  29440. name: "Front",
  29441. image: {
  29442. source: "./media/characters/arhan/front.svg",
  29443. extra: 3368 / 3133,
  29444. bottom: 0 / 3368
  29445. }
  29446. },
  29447. side: {
  29448. height: math.unit(4, "feet"),
  29449. name: "Side",
  29450. image: {
  29451. source: "./media/characters/arhan/side.svg",
  29452. extra: 3347 / 3105,
  29453. bottom: 0 / 3347
  29454. }
  29455. },
  29456. tongue: {
  29457. height: math.unit(1.42, "feet"),
  29458. name: "Tongue",
  29459. image: {
  29460. source: "./media/characters/arhan/tongue.svg"
  29461. }
  29462. },
  29463. head: {
  29464. height: math.unit(0.85, "feet"),
  29465. name: "Head",
  29466. image: {
  29467. source: "./media/characters/arhan/head.svg"
  29468. }
  29469. },
  29470. },
  29471. [
  29472. {
  29473. name: "Normal",
  29474. height: math.unit(4, "feet"),
  29475. default: true
  29476. },
  29477. ]
  29478. ))
  29479. characterMakers.push(() => makeCharacter(
  29480. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29481. {
  29482. front: {
  29483. height: math.unit(5 + 7.5 / 12, "feet"),
  29484. weight: math.unit(120, "lb"),
  29485. name: "Front",
  29486. image: {
  29487. source: "./media/characters/digi-duncan/front.svg",
  29488. extra: 330 / 326,
  29489. bottom: 16 / 346
  29490. }
  29491. },
  29492. side: {
  29493. height: math.unit(5 + 7.5 / 12, "feet"),
  29494. weight: math.unit(120, "lb"),
  29495. name: "Side",
  29496. image: {
  29497. source: "./media/characters/digi-duncan/side.svg",
  29498. extra: 341 / 337,
  29499. bottom: 1 / 342
  29500. }
  29501. },
  29502. back: {
  29503. height: math.unit(5 + 7.5 / 12, "feet"),
  29504. weight: math.unit(120, "lb"),
  29505. name: "Back",
  29506. image: {
  29507. source: "./media/characters/digi-duncan/back.svg",
  29508. extra: 330 / 326,
  29509. bottom: 12 / 342
  29510. }
  29511. },
  29512. },
  29513. [
  29514. {
  29515. name: "Speck",
  29516. height: math.unit(0.25, "mm")
  29517. },
  29518. {
  29519. name: "Micro",
  29520. height: math.unit(5, "mm")
  29521. },
  29522. {
  29523. name: "Tiny",
  29524. height: math.unit(0.5, "inches"),
  29525. default: true
  29526. },
  29527. {
  29528. name: "Human",
  29529. height: math.unit(5 + 7.5 / 12, "feet")
  29530. },
  29531. {
  29532. name: "Minigiant",
  29533. height: math.unit(8 + 5.25, "feet")
  29534. },
  29535. {
  29536. name: "Giant",
  29537. height: math.unit(2000, "feet")
  29538. },
  29539. {
  29540. name: "Mega",
  29541. height: math.unit(371.1, "miles")
  29542. },
  29543. ]
  29544. ))
  29545. characterMakers.push(() => makeCharacter(
  29546. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29547. {
  29548. front: {
  29549. height: math.unit(2, "meters"),
  29550. weight: math.unit(350, "kg"),
  29551. name: "Front",
  29552. image: {
  29553. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29554. extra: 898 / 838,
  29555. bottom: 9 / 907
  29556. }
  29557. },
  29558. },
  29559. [
  29560. {
  29561. name: "Micro",
  29562. height: math.unit(8, "meters")
  29563. },
  29564. {
  29565. name: "Normal",
  29566. height: math.unit(50, "meters"),
  29567. default: true
  29568. },
  29569. {
  29570. name: "Macro",
  29571. height: math.unit(500, "meters")
  29572. },
  29573. ]
  29574. ))
  29575. characterMakers.push(() => makeCharacter(
  29576. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29577. {
  29578. front: {
  29579. height: math.unit(6 + 6 / 12, "feet"),
  29580. name: "Front",
  29581. image: {
  29582. source: "./media/characters/khardesh/front.svg",
  29583. extra: 888 / 797,
  29584. bottom: 25 / 913
  29585. }
  29586. },
  29587. },
  29588. [
  29589. {
  29590. name: "Normal",
  29591. height: math.unit(6 + 6 / 12, "feet"),
  29592. default: true
  29593. },
  29594. {
  29595. name: "Normal+",
  29596. height: math.unit(4, "meters")
  29597. },
  29598. {
  29599. name: "Macro",
  29600. height: math.unit(50, "meters")
  29601. },
  29602. {
  29603. name: "Macro+",
  29604. height: math.unit(100, "meters")
  29605. },
  29606. {
  29607. name: "Megamacro",
  29608. height: math.unit(20, "km")
  29609. },
  29610. ]
  29611. ))
  29612. characterMakers.push(() => makeCharacter(
  29613. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29614. {
  29615. front: {
  29616. height: math.unit(6, "feet"),
  29617. weight: math.unit(150, "lb"),
  29618. name: "Front",
  29619. image: {
  29620. source: "./media/characters/kosho/front.svg",
  29621. extra: 1847 / 1847,
  29622. bottom: 86 / 1933
  29623. }
  29624. },
  29625. },
  29626. [
  29627. {
  29628. name: "Second-stage micro",
  29629. height: math.unit(0.5, "inches")
  29630. },
  29631. {
  29632. name: "First-stage micro",
  29633. height: math.unit(6, "inches")
  29634. },
  29635. {
  29636. name: "Normal",
  29637. height: math.unit(6, "feet"),
  29638. default: true
  29639. },
  29640. {
  29641. name: "First-stage macro",
  29642. height: math.unit(72, "feet")
  29643. },
  29644. {
  29645. name: "Second-stage macro",
  29646. height: math.unit(864, "feet")
  29647. },
  29648. ]
  29649. ))
  29650. characterMakers.push(() => makeCharacter(
  29651. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29652. {
  29653. normal: {
  29654. height: math.unit(4 + 6 / 12, "feet"),
  29655. name: "Normal",
  29656. image: {
  29657. source: "./media/characters/hydra/normal.svg",
  29658. extra: 2833 / 2634,
  29659. bottom: 68 / 2901
  29660. }
  29661. },
  29662. smol: {
  29663. height: math.unit(0.705, "inches"),
  29664. name: "Smol",
  29665. image: {
  29666. source: "./media/characters/hydra/smol.svg",
  29667. extra: 2715 / 2540,
  29668. bottom: 0 / 2715
  29669. }
  29670. },
  29671. },
  29672. [
  29673. {
  29674. name: "Normal",
  29675. height: math.unit(4 + 6 / 12, "feet"),
  29676. default: true
  29677. }
  29678. ]
  29679. ))
  29680. characterMakers.push(() => makeCharacter(
  29681. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29682. {
  29683. front: {
  29684. height: math.unit(0.6, "cm"),
  29685. name: "Front",
  29686. image: {
  29687. source: "./media/characters/daz/front.svg",
  29688. extra: 1682 / 1164,
  29689. bottom: 42 / 1724
  29690. }
  29691. },
  29692. },
  29693. [
  29694. {
  29695. name: "Normal",
  29696. height: math.unit(0.6, "cm"),
  29697. default: true
  29698. },
  29699. ]
  29700. ))
  29701. characterMakers.push(() => makeCharacter(
  29702. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29703. {
  29704. front: {
  29705. height: math.unit(6, "feet"),
  29706. weight: math.unit(235, "lb"),
  29707. name: "Front",
  29708. image: {
  29709. source: "./media/characters/theo-pangolin/front.svg",
  29710. extra: 1996 / 1969,
  29711. bottom: 115 / 2111
  29712. }
  29713. },
  29714. back: {
  29715. height: math.unit(6, "feet"),
  29716. weight: math.unit(235, "lb"),
  29717. name: "Back",
  29718. image: {
  29719. source: "./media/characters/theo-pangolin/back.svg",
  29720. extra: 1979 / 1979,
  29721. bottom: 40 / 2019
  29722. }
  29723. },
  29724. feral: {
  29725. height: math.unit(2, "feet"),
  29726. weight: math.unit(30, "lb"),
  29727. name: "Feral",
  29728. image: {
  29729. source: "./media/characters/theo-pangolin/feral.svg",
  29730. extra: 803 / 791,
  29731. bottom: 181 / 984
  29732. }
  29733. },
  29734. footFive: {
  29735. height: math.unit(1.43, "feet"),
  29736. name: "Foot (Five Toes)",
  29737. image: {
  29738. source: "./media/characters/theo-pangolin/foot-five.svg"
  29739. }
  29740. },
  29741. footFour: {
  29742. height: math.unit(1.43, "feet"),
  29743. name: "Foot (Four Toes)",
  29744. image: {
  29745. source: "./media/characters/theo-pangolin/foot-four.svg"
  29746. }
  29747. },
  29748. handFour: {
  29749. height: math.unit(0.81, "feet"),
  29750. name: "Hand (Four Fingers)",
  29751. image: {
  29752. source: "./media/characters/theo-pangolin/hand-four.svg"
  29753. }
  29754. },
  29755. handThree: {
  29756. height: math.unit(0.81, "feet"),
  29757. name: "Hand (Three Fingers)",
  29758. image: {
  29759. source: "./media/characters/theo-pangolin/hand-three.svg"
  29760. }
  29761. },
  29762. headFront: {
  29763. height: math.unit(1.37, "feet"),
  29764. name: "Head (Front)",
  29765. image: {
  29766. source: "./media/characters/theo-pangolin/head-front.svg"
  29767. }
  29768. },
  29769. headSide: {
  29770. height: math.unit(1.43, "feet"),
  29771. name: "Head (Side)",
  29772. image: {
  29773. source: "./media/characters/theo-pangolin/head-side.svg"
  29774. }
  29775. },
  29776. tongue: {
  29777. height: math.unit(2.29, "feet"),
  29778. name: "Tongue",
  29779. image: {
  29780. source: "./media/characters/theo-pangolin/tongue.svg"
  29781. }
  29782. },
  29783. },
  29784. [
  29785. {
  29786. name: "Normal",
  29787. height: math.unit(6, "feet")
  29788. },
  29789. {
  29790. name: "Macro",
  29791. height: math.unit(400, "feet"),
  29792. default: true
  29793. },
  29794. ]
  29795. ))
  29796. characterMakers.push(() => makeCharacter(
  29797. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29798. {
  29799. front: {
  29800. height: math.unit(6, "inches"),
  29801. weight: math.unit(0.036, "kg"),
  29802. name: "Front",
  29803. image: {
  29804. source: "./media/characters/renée/front.svg",
  29805. extra: 900 / 886,
  29806. bottom: 8 / 908
  29807. }
  29808. },
  29809. },
  29810. [
  29811. {
  29812. name: "Nano",
  29813. height: math.unit(1, "nm")
  29814. },
  29815. {
  29816. name: "Micro",
  29817. height: math.unit(1, "mm")
  29818. },
  29819. {
  29820. name: "Normal",
  29821. height: math.unit(6, "inches")
  29822. },
  29823. {
  29824. name: "Macro",
  29825. height: math.unit(2000, "feet"),
  29826. default: true
  29827. },
  29828. {
  29829. name: "Megamacro",
  29830. height: math.unit(2, "km")
  29831. },
  29832. {
  29833. name: "Gigamacro",
  29834. height: math.unit(2000, "km")
  29835. },
  29836. {
  29837. name: "Teramacro",
  29838. height: math.unit(250000, "km")
  29839. },
  29840. ]
  29841. ))
  29842. characterMakers.push(() => makeCharacter(
  29843. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29844. {
  29845. front: {
  29846. height: math.unit(4, "meters"),
  29847. weight: math.unit(150, "kg"),
  29848. name: "Front",
  29849. image: {
  29850. source: "./media/characters/caledvwlch/front.svg",
  29851. extra: 1760 / 1551,
  29852. bottom: 28 / 1788
  29853. }
  29854. },
  29855. side: {
  29856. height: math.unit(4, "meters"),
  29857. weight: math.unit(150, "kg"),
  29858. name: "Side",
  29859. image: {
  29860. source: "./media/characters/caledvwlch/side.svg",
  29861. extra: 1605 / 1536,
  29862. bottom: 31 / 1636
  29863. }
  29864. },
  29865. back: {
  29866. height: math.unit(4, "meters"),
  29867. weight: math.unit(150, "kg"),
  29868. name: "Back",
  29869. image: {
  29870. source: "./media/characters/caledvwlch/back.svg",
  29871. extra: 1635 / 1565,
  29872. bottom: 27 / 1662
  29873. }
  29874. },
  29875. },
  29876. [
  29877. {
  29878. name: "\"Incognito\"",
  29879. height: math.unit(4, "meters")
  29880. },
  29881. {
  29882. name: "Small rampage",
  29883. height: math.unit(600, "meters")
  29884. },
  29885. {
  29886. name: "Mega",
  29887. height: math.unit(30, "km")
  29888. },
  29889. {
  29890. name: "Home-size",
  29891. height: math.unit(50, "km"),
  29892. default: true
  29893. },
  29894. {
  29895. name: "Giga",
  29896. height: math.unit(300, "km")
  29897. },
  29898. {
  29899. name: "Lounging",
  29900. height: math.unit(11000, "km")
  29901. },
  29902. {
  29903. name: "Planet snacking",
  29904. height: math.unit(2000000, "km")
  29905. },
  29906. ]
  29907. ))
  29908. characterMakers.push(() => makeCharacter(
  29909. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29910. {
  29911. front: {
  29912. height: math.unit(6, "feet"),
  29913. weight: math.unit(215, "lb"),
  29914. name: "Front",
  29915. image: {
  29916. source: "./media/characters/sapphire-svell/front.svg",
  29917. extra: 495 / 455,
  29918. bottom: 20 / 515
  29919. }
  29920. },
  29921. back: {
  29922. height: math.unit(6, "feet"),
  29923. weight: math.unit(216, "lb"),
  29924. name: "Back",
  29925. image: {
  29926. source: "./media/characters/sapphire-svell/back.svg",
  29927. extra: 497 / 477,
  29928. bottom: 7 / 504
  29929. }
  29930. },
  29931. maw: {
  29932. height: math.unit(1.57, "feet"),
  29933. name: "Maw",
  29934. image: {
  29935. source: "./media/characters/sapphire-svell/maw.svg"
  29936. }
  29937. },
  29938. foot: {
  29939. height: math.unit(1.07, "feet"),
  29940. name: "Foot",
  29941. image: {
  29942. source: "./media/characters/sapphire-svell/foot.svg"
  29943. }
  29944. },
  29945. toering: {
  29946. height: math.unit(1.7, "inch"),
  29947. name: "Toering",
  29948. image: {
  29949. source: "./media/characters/sapphire-svell/toering.svg"
  29950. }
  29951. },
  29952. },
  29953. [
  29954. {
  29955. name: "Normal",
  29956. height: math.unit(300, "feet"),
  29957. default: true
  29958. },
  29959. {
  29960. name: "Augmented",
  29961. height: math.unit(1250, "feet")
  29962. },
  29963. {
  29964. name: "Unleashed",
  29965. height: math.unit(3000, "feet")
  29966. },
  29967. ]
  29968. ))
  29969. characterMakers.push(() => makeCharacter(
  29970. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29971. {
  29972. side: {
  29973. height: math.unit(2 + 3 / 12, "feet"),
  29974. weight: math.unit(110, "lb"),
  29975. name: "Side",
  29976. image: {
  29977. source: "./media/characters/glitch-flux/side.svg",
  29978. extra: 997 / 805,
  29979. bottom: 20 / 1017
  29980. }
  29981. },
  29982. },
  29983. [
  29984. {
  29985. name: "Normal",
  29986. height: math.unit(2 + 3 / 12, "feet"),
  29987. default: true
  29988. },
  29989. ]
  29990. ))
  29991. characterMakers.push(() => makeCharacter(
  29992. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29993. {
  29994. front: {
  29995. height: math.unit(4, "meters"),
  29996. name: "Front",
  29997. image: {
  29998. source: "./media/characters/mid/front.svg",
  29999. extra: 507 / 476,
  30000. bottom: 17 / 524
  30001. }
  30002. },
  30003. back: {
  30004. height: math.unit(4, "meters"),
  30005. name: "Back",
  30006. image: {
  30007. source: "./media/characters/mid/back.svg",
  30008. extra: 519 / 487,
  30009. bottom: 7 / 526
  30010. }
  30011. },
  30012. stuck: {
  30013. height: math.unit(2.2, "meters"),
  30014. name: "Stuck",
  30015. image: {
  30016. source: "./media/characters/mid/stuck.svg",
  30017. extra: 1951 / 1869,
  30018. bottom: 88 / 2039
  30019. }
  30020. }
  30021. },
  30022. [
  30023. {
  30024. name: "Normal",
  30025. height: math.unit(4, "meters"),
  30026. default: true
  30027. },
  30028. {
  30029. name: "Big",
  30030. height: math.unit(10, "meters")
  30031. },
  30032. {
  30033. name: "Macro",
  30034. height: math.unit(800, "meters")
  30035. },
  30036. {
  30037. name: "Megamacro",
  30038. height: math.unit(100, "km")
  30039. },
  30040. {
  30041. name: "Overgrown",
  30042. height: math.unit(1, "parsec")
  30043. },
  30044. ]
  30045. ))
  30046. characterMakers.push(() => makeCharacter(
  30047. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30048. {
  30049. front: {
  30050. height: math.unit(2.5, "meters"),
  30051. weight: math.unit(225, "kg"),
  30052. name: "Front",
  30053. image: {
  30054. source: "./media/characters/iris/front.svg",
  30055. extra: 3348 / 3251,
  30056. bottom: 205 / 3553
  30057. }
  30058. },
  30059. maw: {
  30060. height: math.unit(0.56, "meter"),
  30061. name: "Maw",
  30062. image: {
  30063. source: "./media/characters/iris/maw.svg"
  30064. }
  30065. },
  30066. },
  30067. [
  30068. {
  30069. name: "Mewter cat",
  30070. height: math.unit(1.2, "meters")
  30071. },
  30072. {
  30073. name: "Minimacro",
  30074. height: math.unit(2.5, "meters"),
  30075. default: true
  30076. },
  30077. {
  30078. name: "Macro",
  30079. height: math.unit(180, "meters")
  30080. },
  30081. {
  30082. name: "Megamacro",
  30083. height: math.unit(2746, "meters")
  30084. },
  30085. ]
  30086. ))
  30087. characterMakers.push(() => makeCharacter(
  30088. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30089. {
  30090. front: {
  30091. height: math.unit(6, "feet"),
  30092. weight: math.unit(135, "lb"),
  30093. name: "Front",
  30094. image: {
  30095. source: "./media/characters/axel/front.svg",
  30096. extra: 908 / 908,
  30097. bottom: 58 / 966
  30098. }
  30099. },
  30100. side: {
  30101. height: math.unit(6, "feet"),
  30102. weight: math.unit(135, "lb"),
  30103. name: "Side",
  30104. image: {
  30105. source: "./media/characters/axel/side.svg",
  30106. extra: 958 / 958,
  30107. bottom: 11 / 969
  30108. }
  30109. },
  30110. back: {
  30111. height: math.unit(6, "feet"),
  30112. weight: math.unit(135, "lb"),
  30113. name: "Back",
  30114. image: {
  30115. source: "./media/characters/axel/back.svg",
  30116. extra: 887 / 887,
  30117. bottom: 34 / 921
  30118. }
  30119. },
  30120. head: {
  30121. height: math.unit(1.07, "feet"),
  30122. name: "Head",
  30123. image: {
  30124. source: "./media/characters/axel/head.svg"
  30125. }
  30126. },
  30127. beak: {
  30128. height: math.unit(1.4, "feet"),
  30129. name: "Beak",
  30130. image: {
  30131. source: "./media/characters/axel/beak.svg"
  30132. }
  30133. },
  30134. beakSide: {
  30135. height: math.unit(1.4, "feet"),
  30136. name: "Beak Side",
  30137. image: {
  30138. source: "./media/characters/axel/beak-side.svg"
  30139. }
  30140. },
  30141. sheath: {
  30142. height: math.unit(0.5, "feet"),
  30143. name: "Sheath",
  30144. image: {
  30145. source: "./media/characters/axel/sheath.svg"
  30146. }
  30147. },
  30148. dick: {
  30149. height: math.unit(0.98, "feet"),
  30150. name: "Dick",
  30151. image: {
  30152. source: "./media/characters/axel/dick.svg"
  30153. }
  30154. },
  30155. },
  30156. [
  30157. {
  30158. name: "Macro",
  30159. height: math.unit(68, "meters"),
  30160. default: true
  30161. },
  30162. ]
  30163. ))
  30164. characterMakers.push(() => makeCharacter(
  30165. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30166. {
  30167. front: {
  30168. height: math.unit(3.5, "meters"),
  30169. weight: math.unit(1200, "kg"),
  30170. name: "Front",
  30171. image: {
  30172. source: "./media/characters/joanna/front.svg",
  30173. extra: 1596 / 1488,
  30174. bottom: 29 / 1625
  30175. }
  30176. },
  30177. back: {
  30178. height: math.unit(3.5, "meters"),
  30179. weight: math.unit(1200, "kg"),
  30180. name: "Back",
  30181. image: {
  30182. source: "./media/characters/joanna/back.svg",
  30183. extra: 1594 / 1495,
  30184. bottom: 26 / 1620
  30185. }
  30186. },
  30187. frontShorts: {
  30188. height: math.unit(3.5, "meters"),
  30189. weight: math.unit(1200, "kg"),
  30190. name: "Front (Shorts)",
  30191. image: {
  30192. source: "./media/characters/joanna/front-shorts.svg",
  30193. extra: 1596 / 1488,
  30194. bottom: 29 / 1625
  30195. }
  30196. },
  30197. frontBiker: {
  30198. height: math.unit(3.5, "meters"),
  30199. weight: math.unit(1200, "kg"),
  30200. name: "Front (Biker)",
  30201. image: {
  30202. source: "./media/characters/joanna/front-biker.svg",
  30203. extra: 1596 / 1488,
  30204. bottom: 29 / 1625
  30205. }
  30206. },
  30207. backBiker: {
  30208. height: math.unit(3.5, "meters"),
  30209. weight: math.unit(1200, "kg"),
  30210. name: "Back (Biker)",
  30211. image: {
  30212. source: "./media/characters/joanna/back-biker.svg",
  30213. extra: 1594 / 1495,
  30214. bottom: 88 / 1682
  30215. }
  30216. },
  30217. bikeLeft: {
  30218. height: math.unit(2.4, "meters"),
  30219. weight: math.unit(1600, "kg"),
  30220. name: "Bike (Left)",
  30221. image: {
  30222. source: "./media/characters/joanna/bike-left.svg",
  30223. extra: 720 / 720,
  30224. bottom: 8 / 728
  30225. }
  30226. },
  30227. bikeRight: {
  30228. height: math.unit(2.4, "meters"),
  30229. weight: math.unit(1600, "kg"),
  30230. name: "Bike (Right)",
  30231. image: {
  30232. source: "./media/characters/joanna/bike-right.svg",
  30233. extra: 720 / 720,
  30234. bottom: 8 / 728
  30235. }
  30236. },
  30237. },
  30238. [
  30239. {
  30240. name: "Incognito",
  30241. height: math.unit(3.5, "meters")
  30242. },
  30243. {
  30244. name: "Casual Big",
  30245. height: math.unit(200, "meters")
  30246. },
  30247. {
  30248. name: "Macro",
  30249. height: math.unit(600, "meters")
  30250. },
  30251. {
  30252. name: "Original",
  30253. height: math.unit(20, "km"),
  30254. default: true
  30255. },
  30256. {
  30257. name: "Giga",
  30258. height: math.unit(400, "km")
  30259. },
  30260. {
  30261. name: "Lounging",
  30262. height: math.unit(1500, "km")
  30263. },
  30264. {
  30265. name: "Planetary",
  30266. height: math.unit(200000, "km")
  30267. },
  30268. ]
  30269. ))
  30270. characterMakers.push(() => makeCharacter(
  30271. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30272. {
  30273. front: {
  30274. height: math.unit(6, "feet"),
  30275. weight: math.unit(150, "lb"),
  30276. name: "Front",
  30277. image: {
  30278. source: "./media/characters/hugo-sigil/front.svg",
  30279. extra: 522 / 500,
  30280. bottom: 2 / 524
  30281. }
  30282. },
  30283. back: {
  30284. height: math.unit(6, "feet"),
  30285. weight: math.unit(150, "lb"),
  30286. name: "Back",
  30287. image: {
  30288. source: "./media/characters/hugo-sigil/back.svg",
  30289. extra: 519 / 495,
  30290. bottom: 5 / 524
  30291. }
  30292. },
  30293. maw: {
  30294. height: math.unit(1.4, "feet"),
  30295. weight: math.unit(150, "lb"),
  30296. name: "Maw",
  30297. image: {
  30298. source: "./media/characters/hugo-sigil/maw.svg"
  30299. }
  30300. },
  30301. feet: {
  30302. height: math.unit(1.56, "feet"),
  30303. weight: math.unit(150, "lb"),
  30304. name: "Feet",
  30305. image: {
  30306. source: "./media/characters/hugo-sigil/feet.svg",
  30307. extra: 177 / 177,
  30308. bottom: 12 / 189
  30309. }
  30310. },
  30311. },
  30312. [
  30313. {
  30314. name: "Normal",
  30315. height: math.unit(6, "feet")
  30316. },
  30317. {
  30318. name: "Macro",
  30319. height: math.unit(200, "feet"),
  30320. default: true
  30321. },
  30322. ]
  30323. ))
  30324. characterMakers.push(() => makeCharacter(
  30325. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30326. {
  30327. front: {
  30328. height: math.unit(6, "feet"),
  30329. weight: math.unit(150, "lb"),
  30330. name: "Front",
  30331. image: {
  30332. source: "./media/characters/peri/front.svg",
  30333. extra: 2354 / 2233,
  30334. bottom: 49 / 2403
  30335. }
  30336. },
  30337. },
  30338. [
  30339. {
  30340. name: "Really Small",
  30341. height: math.unit(1, "nm")
  30342. },
  30343. {
  30344. name: "Micro",
  30345. height: math.unit(4, "inches")
  30346. },
  30347. {
  30348. name: "Normal",
  30349. height: math.unit(7, "inches"),
  30350. default: true
  30351. },
  30352. {
  30353. name: "Macro",
  30354. height: math.unit(400, "feet")
  30355. },
  30356. {
  30357. name: "Megamacro",
  30358. height: math.unit(100, "miles")
  30359. },
  30360. ]
  30361. ))
  30362. characterMakers.push(() => makeCharacter(
  30363. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30364. {
  30365. frontSlim: {
  30366. height: math.unit(7, "feet"),
  30367. name: "Front (Slim)",
  30368. image: {
  30369. source: "./media/characters/issilora/front-slim.svg",
  30370. extra: 529 / 449,
  30371. bottom: 53 / 582
  30372. }
  30373. },
  30374. sideSlim: {
  30375. height: math.unit(7, "feet"),
  30376. name: "Side (Slim)",
  30377. image: {
  30378. source: "./media/characters/issilora/side-slim.svg",
  30379. extra: 570 / 480,
  30380. bottom: 30 / 600
  30381. }
  30382. },
  30383. backSlim: {
  30384. height: math.unit(7, "feet"),
  30385. name: "Back (Slim)",
  30386. image: {
  30387. source: "./media/characters/issilora/back-slim.svg",
  30388. extra: 537 / 455,
  30389. bottom: 46 / 583
  30390. }
  30391. },
  30392. frontBuff: {
  30393. height: math.unit(7, "feet"),
  30394. name: "Front (Buff)",
  30395. image: {
  30396. source: "./media/characters/issilora/front-buff.svg",
  30397. extra: 2310 / 2035,
  30398. bottom: 335 / 2645
  30399. }
  30400. },
  30401. head: {
  30402. height: math.unit(1.94, "feet"),
  30403. name: "Head",
  30404. image: {
  30405. source: "./media/characters/issilora/head.svg"
  30406. }
  30407. },
  30408. },
  30409. [
  30410. {
  30411. name: "Minimum",
  30412. height: math.unit(7, "feet")
  30413. },
  30414. {
  30415. name: "Comfortable",
  30416. height: math.unit(17, "feet")
  30417. },
  30418. {
  30419. name: "Fun Size",
  30420. height: math.unit(47, "feet")
  30421. },
  30422. {
  30423. name: "Natural Macro",
  30424. height: math.unit(137, "feet"),
  30425. default: true
  30426. },
  30427. {
  30428. name: "Maximum Kaiju",
  30429. height: math.unit(397, "feet")
  30430. },
  30431. ]
  30432. ))
  30433. characterMakers.push(() => makeCharacter(
  30434. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30435. {
  30436. front: {
  30437. height: math.unit(50 + 9/12, "feet"),
  30438. weight: math.unit(32.8, "tons"),
  30439. name: "Front",
  30440. image: {
  30441. source: "./media/characters/irb'iiritaahn/front.svg",
  30442. extra: 1878/1826,
  30443. bottom: 326/2204
  30444. }
  30445. },
  30446. back: {
  30447. height: math.unit(50 + 9/12, "feet"),
  30448. weight: math.unit(32.8, "tons"),
  30449. name: "Back",
  30450. image: {
  30451. source: "./media/characters/irb'iiritaahn/back.svg",
  30452. extra: 2052/2018,
  30453. bottom: 152/2204
  30454. }
  30455. },
  30456. head: {
  30457. height: math.unit(12.86, "feet"),
  30458. name: "Head",
  30459. image: {
  30460. source: "./media/characters/irb'iiritaahn/head.svg"
  30461. }
  30462. },
  30463. maw: {
  30464. height: math.unit(9.66, "feet"),
  30465. name: "Maw",
  30466. image: {
  30467. source: "./media/characters/irb'iiritaahn/maw.svg"
  30468. }
  30469. },
  30470. frontDick: {
  30471. height: math.unit(8.78461, "feet"),
  30472. name: "Front Dick",
  30473. image: {
  30474. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30475. }
  30476. },
  30477. rearDick: {
  30478. height: math.unit(8.78461, "feet"),
  30479. name: "Rear Dick",
  30480. image: {
  30481. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30482. }
  30483. },
  30484. rearDickUnfolded: {
  30485. height: math.unit(8.78, "feet"),
  30486. name: "Rear Dick (Unfolded)",
  30487. image: {
  30488. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30489. }
  30490. },
  30491. wings: {
  30492. height: math.unit(43, "feet"),
  30493. name: "Wings",
  30494. image: {
  30495. source: "./media/characters/irb'iiritaahn/wings.svg"
  30496. }
  30497. },
  30498. },
  30499. [
  30500. {
  30501. name: "Macro",
  30502. height: math.unit(50 + 9/12, "feet"),
  30503. default: true
  30504. },
  30505. ]
  30506. ))
  30507. characterMakers.push(() => makeCharacter(
  30508. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30509. {
  30510. front: {
  30511. height: math.unit(205, "cm"),
  30512. weight: math.unit(102, "kg"),
  30513. name: "Front",
  30514. image: {
  30515. source: "./media/characters/irbisgreif/front.svg",
  30516. extra: 785/706,
  30517. bottom: 13/798
  30518. }
  30519. },
  30520. back: {
  30521. height: math.unit(205, "cm"),
  30522. weight: math.unit(102, "kg"),
  30523. name: "Back",
  30524. image: {
  30525. source: "./media/characters/irbisgreif/back.svg",
  30526. extra: 713/701,
  30527. bottom: 26/739
  30528. }
  30529. },
  30530. frontDressed: {
  30531. height: math.unit(216, "cm"),
  30532. weight: math.unit(102, "kg"),
  30533. name: "Front-dressed",
  30534. image: {
  30535. source: "./media/characters/irbisgreif/front-dressed.svg",
  30536. extra: 902/776,
  30537. bottom: 14/916
  30538. }
  30539. },
  30540. sideDressed: {
  30541. height: math.unit(195, "cm"),
  30542. weight: math.unit(102, "kg"),
  30543. name: "Side-dressed",
  30544. image: {
  30545. source: "./media/characters/irbisgreif/side-dressed.svg",
  30546. extra: 788/688,
  30547. bottom: 21/809
  30548. }
  30549. },
  30550. backDressed: {
  30551. height: math.unit(216, "cm"),
  30552. weight: math.unit(102, "kg"),
  30553. name: "Back-dressed",
  30554. image: {
  30555. source: "./media/characters/irbisgreif/back-dressed.svg",
  30556. extra: 901/783,
  30557. bottom: 10/911
  30558. }
  30559. },
  30560. dick: {
  30561. height: math.unit(0.49, "feet"),
  30562. name: "Dick",
  30563. image: {
  30564. source: "./media/characters/irbisgreif/dick.svg"
  30565. }
  30566. },
  30567. wingTop: {
  30568. height: math.unit(1.93 , "feet"),
  30569. name: "Wing-top",
  30570. image: {
  30571. source: "./media/characters/irbisgreif/wing-top.svg"
  30572. }
  30573. },
  30574. wingBottom: {
  30575. height: math.unit(1.93 , "feet"),
  30576. name: "Wing-bottom",
  30577. image: {
  30578. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30579. }
  30580. },
  30581. },
  30582. [
  30583. {
  30584. name: "Normal",
  30585. height: math.unit(216, "cm"),
  30586. default: true
  30587. },
  30588. ]
  30589. ))
  30590. characterMakers.push(() => makeCharacter(
  30591. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30592. {
  30593. front: {
  30594. height: math.unit(6, "feet"),
  30595. weight: math.unit(150, "lb"),
  30596. name: "Front",
  30597. image: {
  30598. source: "./media/characters/pride/front.svg",
  30599. extra: 1299/1230,
  30600. bottom: 18/1317
  30601. }
  30602. },
  30603. },
  30604. [
  30605. {
  30606. name: "Normal",
  30607. height: math.unit(7, "feet")
  30608. },
  30609. {
  30610. name: "Mini-macro",
  30611. height: math.unit(11, "feet")
  30612. },
  30613. {
  30614. name: "Macro",
  30615. height: math.unit(15, "meters"),
  30616. default: true
  30617. },
  30618. {
  30619. name: "Macro+",
  30620. height: math.unit(40, "meters")
  30621. },
  30622. ]
  30623. ))
  30624. characterMakers.push(() => makeCharacter(
  30625. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30626. {
  30627. front: {
  30628. height: math.unit(4 + 2 / 12, "feet"),
  30629. weight: math.unit(95, "lb"),
  30630. name: "Front",
  30631. image: {
  30632. source: "./media/characters/vaelophis-nyx/front.svg",
  30633. extra: 2532/2330,
  30634. bottom: 0/2532
  30635. }
  30636. },
  30637. back: {
  30638. height: math.unit(4 + 2 / 12, "feet"),
  30639. weight: math.unit(95, "lb"),
  30640. name: "Back",
  30641. image: {
  30642. source: "./media/characters/vaelophis-nyx/back.svg",
  30643. extra: 2484/2361,
  30644. bottom: 0/2484
  30645. }
  30646. },
  30647. feralSide: {
  30648. height: math.unit(2 + 1/12, "feet"),
  30649. weight: math.unit(20, "lb"),
  30650. name: "Feral (Side)",
  30651. image: {
  30652. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30653. extra: 1721/1581,
  30654. bottom: 70/1791
  30655. }
  30656. },
  30657. feralLazing: {
  30658. height: math.unit(1.08, "feet"),
  30659. weight: math.unit(20, "lb"),
  30660. name: "Feral (Lazing)",
  30661. image: {
  30662. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30663. extra: 822/822,
  30664. bottom: 248/1070
  30665. }
  30666. },
  30667. ear: {
  30668. height: math.unit(0.416, "feet"),
  30669. name: "Ear",
  30670. image: {
  30671. source: "./media/characters/vaelophis-nyx/ear.svg"
  30672. }
  30673. },
  30674. eye: {
  30675. height: math.unit(0.0748, "feet"),
  30676. name: "Eye",
  30677. image: {
  30678. source: "./media/characters/vaelophis-nyx/eye.svg"
  30679. }
  30680. },
  30681. mouth: {
  30682. height: math.unit(0.378, "feet"),
  30683. name: "Mouth",
  30684. image: {
  30685. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30686. }
  30687. },
  30688. spade: {
  30689. height: math.unit(0.55, "feet"),
  30690. name: "Spade",
  30691. image: {
  30692. source: "./media/characters/vaelophis-nyx/spade.svg"
  30693. }
  30694. },
  30695. },
  30696. [
  30697. {
  30698. name: "Normal",
  30699. height: math.unit(4 + 2/12, "feet"),
  30700. default: true
  30701. },
  30702. ]
  30703. ))
  30704. characterMakers.push(() => makeCharacter(
  30705. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30706. {
  30707. front: {
  30708. height: math.unit(7, "feet"),
  30709. weight: math.unit(231, "lb"),
  30710. name: "Front",
  30711. image: {
  30712. source: "./media/characters/flux/front.svg",
  30713. extra: 919/871,
  30714. bottom: 0/919
  30715. }
  30716. },
  30717. back: {
  30718. height: math.unit(7, "feet"),
  30719. weight: math.unit(231, "lb"),
  30720. name: "Back",
  30721. image: {
  30722. source: "./media/characters/flux/back.svg",
  30723. extra: 1040/992,
  30724. bottom: 0/1040
  30725. }
  30726. },
  30727. frontDressed: {
  30728. height: math.unit(7, "feet"),
  30729. weight: math.unit(231, "lb"),
  30730. name: "Front (Dressed)",
  30731. image: {
  30732. source: "./media/characters/flux/front-dressed.svg",
  30733. extra: 919/871,
  30734. bottom: 0/919
  30735. }
  30736. },
  30737. feralSide: {
  30738. height: math.unit(5, "feet"),
  30739. weight: math.unit(150, "lb"),
  30740. name: "Feral (Side)",
  30741. image: {
  30742. source: "./media/characters/flux/feral-side.svg",
  30743. extra: 598/528,
  30744. bottom: 28/626
  30745. }
  30746. },
  30747. head: {
  30748. height: math.unit(1.585, "feet"),
  30749. name: "Head",
  30750. image: {
  30751. source: "./media/characters/flux/head.svg"
  30752. }
  30753. },
  30754. headSide: {
  30755. height: math.unit(1.74, "feet"),
  30756. name: "Head (Side)",
  30757. image: {
  30758. source: "./media/characters/flux/head-side.svg"
  30759. }
  30760. },
  30761. headSideFire: {
  30762. height: math.unit(1.76, "feet"),
  30763. name: "Head (Side, Fire)",
  30764. image: {
  30765. source: "./media/characters/flux/head-side-fire.svg"
  30766. }
  30767. },
  30768. },
  30769. [
  30770. {
  30771. name: "Normal",
  30772. height: math.unit(7, "feet"),
  30773. default: true
  30774. },
  30775. ]
  30776. ))
  30777. characterMakers.push(() => makeCharacter(
  30778. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30779. {
  30780. front: {
  30781. height: math.unit(9, "feet"),
  30782. weight: math.unit(1012, "lb"),
  30783. name: "Front",
  30784. image: {
  30785. source: "./media/characters/ulfra-lupae/front.svg",
  30786. extra: 1083/1011,
  30787. bottom: 67/1150
  30788. }
  30789. },
  30790. },
  30791. [
  30792. {
  30793. name: "Micro",
  30794. height: math.unit(6, "inches")
  30795. },
  30796. {
  30797. name: "Socializing",
  30798. height: math.unit(6 + 5/12, "feet")
  30799. },
  30800. {
  30801. name: "Normal",
  30802. height: math.unit(9, "feet"),
  30803. default: true
  30804. },
  30805. {
  30806. name: "Macro",
  30807. height: math.unit(150, "feet")
  30808. },
  30809. ]
  30810. ))
  30811. characterMakers.push(() => makeCharacter(
  30812. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30813. {
  30814. front: {
  30815. height: math.unit(5 + 2/12, "feet"),
  30816. weight: math.unit(120, "lb"),
  30817. name: "Front",
  30818. image: {
  30819. source: "./media/characters/timber/front.svg",
  30820. extra: 2814/2705,
  30821. bottom: 181/2995
  30822. }
  30823. },
  30824. },
  30825. [
  30826. {
  30827. name: "Normal",
  30828. height: math.unit(5 + 2/12, "feet"),
  30829. default: true
  30830. },
  30831. ]
  30832. ))
  30833. characterMakers.push(() => makeCharacter(
  30834. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30835. {
  30836. front: {
  30837. height: math.unit(5 + 7/12, "feet"),
  30838. weight: math.unit(220, "lb"),
  30839. name: "Front",
  30840. image: {
  30841. source: "./media/characters/nicki/front.svg",
  30842. extra: 453/419,
  30843. bottom: 7/460
  30844. }
  30845. },
  30846. frontAlt: {
  30847. height: math.unit(5 + 7/12, "feet"),
  30848. weight: math.unit(220, "lb"),
  30849. name: "Front-alt",
  30850. image: {
  30851. source: "./media/characters/nicki/front-alt.svg",
  30852. extra: 435/411,
  30853. bottom: 12/447
  30854. }
  30855. },
  30856. back: {
  30857. height: math.unit(5 + 7/12, "feet"),
  30858. weight: math.unit(220, "lb"),
  30859. name: "Back",
  30860. image: {
  30861. source: "./media/characters/nicki/back.svg",
  30862. extra: 440/413,
  30863. bottom: 19/459
  30864. }
  30865. },
  30866. taur: {
  30867. height: math.unit(7 + 6/12, "feet"),
  30868. weight: math.unit(700, "lb"),
  30869. name: "Taur",
  30870. image: {
  30871. source: "./media/characters/nicki/taur.svg",
  30872. extra: 975/773,
  30873. bottom: 0/975
  30874. }
  30875. },
  30876. frontNsfw: {
  30877. height: math.unit(5 + 7/12, "feet"),
  30878. weight: math.unit(220, "lb"),
  30879. name: "Front (NSFW)",
  30880. image: {
  30881. source: "./media/characters/nicki/front-nsfw.svg",
  30882. extra: 453/419,
  30883. bottom: 7/460
  30884. }
  30885. },
  30886. frontNsfwAlt: {
  30887. height: math.unit(5 + 7/12, "feet"),
  30888. weight: math.unit(220, "lb"),
  30889. name: "Front (Alt, NSFW)",
  30890. image: {
  30891. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30892. extra: 435/411,
  30893. bottom: 12/447
  30894. }
  30895. },
  30896. backNsfw: {
  30897. height: math.unit(5 + 7/12, "feet"),
  30898. weight: math.unit(220, "lb"),
  30899. name: "Back (NSFW)",
  30900. image: {
  30901. source: "./media/characters/nicki/back-nsfw.svg",
  30902. extra: 440/413,
  30903. bottom: 19/459
  30904. }
  30905. },
  30906. head: {
  30907. height: math.unit(2.1, "feet"),
  30908. name: "Head",
  30909. image: {
  30910. source: "./media/characters/nicki/head.svg"
  30911. }
  30912. },
  30913. paw: {
  30914. height: math.unit(1.88, "feet"),
  30915. name: "Paw",
  30916. image: {
  30917. source: "./media/characters/nicki/paw.svg"
  30918. }
  30919. },
  30920. },
  30921. [
  30922. {
  30923. name: "Normal",
  30924. height: math.unit(5 + 7/12, "feet"),
  30925. default: true
  30926. },
  30927. ]
  30928. ))
  30929. characterMakers.push(() => makeCharacter(
  30930. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30931. {
  30932. front: {
  30933. height: math.unit(7 + 10/12, "feet"),
  30934. weight: math.unit(3.5, "tons"),
  30935. name: "Front",
  30936. image: {
  30937. source: "./media/characters/lee/front.svg",
  30938. extra: 1773/1615,
  30939. bottom: 86/1859
  30940. }
  30941. },
  30942. hand: {
  30943. height: math.unit(1.78, "feet"),
  30944. name: "Hand",
  30945. image: {
  30946. source: "./media/characters/lee/hand.svg"
  30947. }
  30948. },
  30949. maw: {
  30950. height: math.unit(1.18, "feet"),
  30951. name: "Maw",
  30952. image: {
  30953. source: "./media/characters/lee/maw.svg"
  30954. }
  30955. },
  30956. },
  30957. [
  30958. {
  30959. name: "Normal",
  30960. height: math.unit(7 + 10/12, "feet"),
  30961. default: true
  30962. },
  30963. ]
  30964. ))
  30965. characterMakers.push(() => makeCharacter(
  30966. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30967. {
  30968. front: {
  30969. height: math.unit(9, "feet"),
  30970. name: "Front",
  30971. image: {
  30972. source: "./media/characters/guti/front.svg",
  30973. extra: 4551/4355,
  30974. bottom: 123/4674
  30975. }
  30976. },
  30977. tongue: {
  30978. height: math.unit(1, "feet"),
  30979. name: "Tongue",
  30980. image: {
  30981. source: "./media/characters/guti/tongue.svg"
  30982. }
  30983. },
  30984. paw: {
  30985. height: math.unit(1.18, "feet"),
  30986. name: "Paw",
  30987. image: {
  30988. source: "./media/characters/guti/paw.svg"
  30989. }
  30990. },
  30991. },
  30992. [
  30993. {
  30994. name: "Normal",
  30995. height: math.unit(9, "feet"),
  30996. default: true
  30997. },
  30998. ]
  30999. ))
  31000. characterMakers.push(() => makeCharacter(
  31001. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31002. {
  31003. side: {
  31004. height: math.unit(5, "meters"),
  31005. name: "Side",
  31006. image: {
  31007. source: "./media/characters/vesper/side.svg",
  31008. extra: 1605/1518,
  31009. bottom: 0/1605
  31010. }
  31011. },
  31012. },
  31013. [
  31014. {
  31015. name: "Small",
  31016. height: math.unit(5, "meters")
  31017. },
  31018. {
  31019. name: "Sage",
  31020. height: math.unit(100, "meters"),
  31021. default: true
  31022. },
  31023. {
  31024. name: "Fun Size",
  31025. height: math.unit(600, "meters")
  31026. },
  31027. {
  31028. name: "Goddess",
  31029. height: math.unit(20000, "km")
  31030. },
  31031. {
  31032. name: "Maximum",
  31033. height: math.unit(5, "galaxies")
  31034. },
  31035. ]
  31036. ))
  31037. characterMakers.push(() => makeCharacter(
  31038. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31039. {
  31040. front: {
  31041. height: math.unit(6 + 3/12, "feet"),
  31042. weight: math.unit(190, "lb"),
  31043. name: "Front",
  31044. image: {
  31045. source: "./media/characters/gawain/front.svg",
  31046. extra: 2222/2139,
  31047. bottom: 90/2312
  31048. }
  31049. },
  31050. back: {
  31051. height: math.unit(6 + 3/12, "feet"),
  31052. weight: math.unit(190, "lb"),
  31053. name: "Back",
  31054. image: {
  31055. source: "./media/characters/gawain/back.svg",
  31056. extra: 2199/2111,
  31057. bottom: 73/2272
  31058. }
  31059. },
  31060. },
  31061. [
  31062. {
  31063. name: "Normal",
  31064. height: math.unit(6 + 3/12, "feet"),
  31065. default: true
  31066. },
  31067. ]
  31068. ))
  31069. characterMakers.push(() => makeCharacter(
  31070. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31071. {
  31072. side: {
  31073. height: math.unit(3.5, "meters"),
  31074. weight: math.unit(16000, "lb"),
  31075. name: "Side",
  31076. image: {
  31077. source: "./media/characters/dascalti/side.svg",
  31078. extra: 392/273,
  31079. bottom: 47/439
  31080. }
  31081. },
  31082. breath: {
  31083. height: math.unit(7.4, "feet"),
  31084. name: "Breath",
  31085. image: {
  31086. source: "./media/characters/dascalti/breath.svg"
  31087. }
  31088. },
  31089. fed: {
  31090. height: math.unit(3.6, "meters"),
  31091. weight: math.unit(16000, "lb"),
  31092. name: "Fed",
  31093. image: {
  31094. source: "./media/characters/dascalti/fed.svg",
  31095. extra: 1419/820,
  31096. bottom: 95/1514
  31097. }
  31098. },
  31099. },
  31100. [
  31101. {
  31102. name: "Normal",
  31103. height: math.unit(3.5, "meters"),
  31104. default: true
  31105. },
  31106. ]
  31107. ))
  31108. characterMakers.push(() => makeCharacter(
  31109. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31110. {
  31111. front: {
  31112. height: math.unit(3 + 5/12, "feet"),
  31113. name: "Front",
  31114. image: {
  31115. source: "./media/characters/mauve/front.svg",
  31116. extra: 1126/1033,
  31117. bottom: 65/1191
  31118. }
  31119. },
  31120. side: {
  31121. height: math.unit(3 + 5/12, "feet"),
  31122. name: "Side",
  31123. image: {
  31124. source: "./media/characters/mauve/side.svg",
  31125. extra: 1089/1001,
  31126. bottom: 29/1118
  31127. }
  31128. },
  31129. back: {
  31130. height: math.unit(3 + 5/12, "feet"),
  31131. name: "Back",
  31132. image: {
  31133. source: "./media/characters/mauve/back.svg",
  31134. extra: 1173/1053,
  31135. bottom: 109/1282
  31136. }
  31137. },
  31138. },
  31139. [
  31140. {
  31141. name: "Normal",
  31142. height: math.unit(3 + 5/12, "feet"),
  31143. default: true
  31144. },
  31145. ]
  31146. ))
  31147. characterMakers.push(() => makeCharacter(
  31148. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31149. {
  31150. front: {
  31151. height: math.unit(6 + 3/12, "feet"),
  31152. weight: math.unit(430, "lb"),
  31153. name: "Front",
  31154. image: {
  31155. source: "./media/characters/carlos/front.svg",
  31156. extra: 1964/1913,
  31157. bottom: 70/2034
  31158. }
  31159. },
  31160. },
  31161. [
  31162. {
  31163. name: "Normal",
  31164. height: math.unit(6 + 3/12, "feet"),
  31165. default: true
  31166. },
  31167. ]
  31168. ))
  31169. characterMakers.push(() => makeCharacter(
  31170. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31171. {
  31172. back: {
  31173. height: math.unit(5 + 10/12, "feet"),
  31174. weight: math.unit(200, "lb"),
  31175. name: "Back",
  31176. image: {
  31177. source: "./media/characters/jax/back.svg",
  31178. extra: 764/739,
  31179. bottom: 25/789
  31180. }
  31181. },
  31182. },
  31183. [
  31184. {
  31185. name: "Normal",
  31186. height: math.unit(5 + 10/12, "feet"),
  31187. default: true
  31188. },
  31189. ]
  31190. ))
  31191. characterMakers.push(() => makeCharacter(
  31192. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31193. {
  31194. front: {
  31195. height: math.unit(8, "feet"),
  31196. weight: math.unit(250, "lb"),
  31197. name: "Front",
  31198. image: {
  31199. source: "./media/characters/eikthynir/front.svg",
  31200. extra: 1332/1166,
  31201. bottom: 82/1414
  31202. }
  31203. },
  31204. back: {
  31205. height: math.unit(8, "feet"),
  31206. weight: math.unit(250, "lb"),
  31207. name: "Back",
  31208. image: {
  31209. source: "./media/characters/eikthynir/back.svg",
  31210. extra: 1342/1190,
  31211. bottom: 19/1361
  31212. }
  31213. },
  31214. dick: {
  31215. height: math.unit(2.35, "feet"),
  31216. name: "Dick",
  31217. image: {
  31218. source: "./media/characters/eikthynir/dick.svg"
  31219. }
  31220. },
  31221. },
  31222. [
  31223. {
  31224. name: "Normal",
  31225. height: math.unit(8, "feet"),
  31226. default: true
  31227. },
  31228. ]
  31229. ))
  31230. characterMakers.push(() => makeCharacter(
  31231. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31232. {
  31233. front: {
  31234. height: math.unit(99, "meters"),
  31235. weight: math.unit(13000, "tons"),
  31236. name: "Front",
  31237. image: {
  31238. source: "./media/characters/zlmos/front.svg",
  31239. extra: 2202/1992,
  31240. bottom: 315/2517
  31241. }
  31242. },
  31243. },
  31244. [
  31245. {
  31246. name: "Macro",
  31247. height: math.unit(99, "meters"),
  31248. default: true
  31249. },
  31250. ]
  31251. ))
  31252. characterMakers.push(() => makeCharacter(
  31253. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31254. {
  31255. front: {
  31256. height: math.unit(6 + 5/12, "feet"),
  31257. name: "Front",
  31258. image: {
  31259. source: "./media/characters/purri/front.svg",
  31260. extra: 1698/1610,
  31261. bottom: 32/1730
  31262. }
  31263. },
  31264. frontAlt: {
  31265. height: math.unit(6 + 5/12, "feet"),
  31266. name: "Front (Alt)",
  31267. image: {
  31268. source: "./media/characters/purri/front-alt.svg",
  31269. extra: 450/420,
  31270. bottom: 26/476
  31271. }
  31272. },
  31273. boots: {
  31274. height: math.unit(5.5, "feet"),
  31275. name: "Boots",
  31276. image: {
  31277. source: "./media/characters/purri/boots.svg",
  31278. extra: 905/853,
  31279. bottom: 18/923
  31280. }
  31281. },
  31282. lying: {
  31283. height: math.unit(2, "feet"),
  31284. name: "Lying",
  31285. image: {
  31286. source: "./media/characters/purri/lying.svg",
  31287. extra: 940/843,
  31288. bottom: 146/1086
  31289. }
  31290. },
  31291. devious: {
  31292. height: math.unit(1.77, "feet"),
  31293. name: "Devious",
  31294. image: {
  31295. source: "./media/characters/purri/devious.svg",
  31296. extra: 1440/1155,
  31297. bottom: 147/1587
  31298. }
  31299. },
  31300. bean: {
  31301. height: math.unit(1.94, "feet"),
  31302. name: "Bean",
  31303. image: {
  31304. source: "./media/characters/purri/bean.svg"
  31305. }
  31306. },
  31307. },
  31308. [
  31309. {
  31310. name: "Micro",
  31311. height: math.unit(1, "mm")
  31312. },
  31313. {
  31314. name: "Normal",
  31315. height: math.unit(6 + 5/12, "feet"),
  31316. default: true
  31317. },
  31318. {
  31319. name: "Macro :3c",
  31320. height: math.unit(2, "miles")
  31321. },
  31322. ]
  31323. ))
  31324. characterMakers.push(() => makeCharacter(
  31325. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31326. {
  31327. front: {
  31328. height: math.unit(6 + 2/12, "feet"),
  31329. weight: math.unit(250, "lb"),
  31330. name: "Front",
  31331. image: {
  31332. source: "./media/characters/moonlight/front.svg",
  31333. extra: 1044/908,
  31334. bottom: 56/1100
  31335. }
  31336. },
  31337. feral: {
  31338. height: math.unit(3 + 1/12, "feet"),
  31339. weight: math.unit(50, "kg"),
  31340. name: "Feral",
  31341. image: {
  31342. source: "./media/characters/moonlight/feral.svg",
  31343. extra: 3705/2791,
  31344. bottom: 145/3850
  31345. }
  31346. },
  31347. paw: {
  31348. height: math.unit(1, "feet"),
  31349. name: "Paw",
  31350. image: {
  31351. source: "./media/characters/moonlight/paw.svg"
  31352. }
  31353. },
  31354. paws: {
  31355. height: math.unit(0.98, "feet"),
  31356. name: "Paws",
  31357. image: {
  31358. source: "./media/characters/moonlight/paws.svg",
  31359. extra: 939/939,
  31360. bottom: 50/989
  31361. }
  31362. },
  31363. mouth: {
  31364. height: math.unit(0.48, "feet"),
  31365. name: "Mouth",
  31366. image: {
  31367. source: "./media/characters/moonlight/mouth.svg"
  31368. }
  31369. },
  31370. dick: {
  31371. height: math.unit(1.46, "feet"),
  31372. name: "Dick",
  31373. image: {
  31374. source: "./media/characters/moonlight/dick.svg"
  31375. }
  31376. },
  31377. },
  31378. [
  31379. {
  31380. name: "Normal",
  31381. height: math.unit(6 + 2/12, "feet"),
  31382. default: true
  31383. },
  31384. {
  31385. name: "Macro",
  31386. height: math.unit(300, "feet")
  31387. },
  31388. {
  31389. name: "Macro+",
  31390. height: math.unit(1, "mile")
  31391. },
  31392. {
  31393. name: "Mt. Moon",
  31394. height: math.unit(5, "miles")
  31395. },
  31396. {
  31397. name: "Megamacro",
  31398. height: math.unit(15, "miles")
  31399. },
  31400. ]
  31401. ))
  31402. characterMakers.push(() => makeCharacter(
  31403. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31404. {
  31405. back: {
  31406. height: math.unit(6, "feet"),
  31407. weight: math.unit(150, "lb"),
  31408. name: "Back",
  31409. image: {
  31410. source: "./media/characters/sylen/back.svg",
  31411. extra: 1335/1273,
  31412. bottom: 107/1442
  31413. }
  31414. },
  31415. },
  31416. [
  31417. {
  31418. name: "Normal",
  31419. height: math.unit(5 + 5/12, "feet")
  31420. },
  31421. {
  31422. name: "Megamacro",
  31423. height: math.unit(3, "miles"),
  31424. default: true
  31425. },
  31426. ]
  31427. ))
  31428. characterMakers.push(() => makeCharacter(
  31429. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31430. {
  31431. front: {
  31432. height: math.unit(6, "feet"),
  31433. weight: math.unit(190, "lb"),
  31434. name: "Front",
  31435. image: {
  31436. source: "./media/characters/huttser/front.svg",
  31437. extra: 1152/1058,
  31438. bottom: 23/1175
  31439. }
  31440. },
  31441. side: {
  31442. height: math.unit(6, "feet"),
  31443. weight: math.unit(190, "lb"),
  31444. name: "Side",
  31445. image: {
  31446. source: "./media/characters/huttser/side.svg",
  31447. extra: 1174/1065,
  31448. bottom: 18/1192
  31449. }
  31450. },
  31451. back: {
  31452. height: math.unit(6, "feet"),
  31453. weight: math.unit(190, "lb"),
  31454. name: "Back",
  31455. image: {
  31456. source: "./media/characters/huttser/back.svg",
  31457. extra: 1158/1056,
  31458. bottom: 12/1170
  31459. }
  31460. },
  31461. },
  31462. [
  31463. ]
  31464. ))
  31465. characterMakers.push(() => makeCharacter(
  31466. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31467. {
  31468. side: {
  31469. height: math.unit(12 + 9/12, "feet"),
  31470. weight: math.unit(15000, "lb"),
  31471. name: "Side",
  31472. image: {
  31473. source: "./media/characters/faan/side.svg",
  31474. extra: 2747/2697,
  31475. bottom: 0/2747
  31476. }
  31477. },
  31478. front: {
  31479. height: math.unit(12 + 9/12, "feet"),
  31480. weight: math.unit(15000, "lb"),
  31481. name: "Front",
  31482. image: {
  31483. source: "./media/characters/faan/front.svg",
  31484. extra: 607/571,
  31485. bottom: 24/631
  31486. }
  31487. },
  31488. head: {
  31489. height: math.unit(2.85, "feet"),
  31490. name: "Head",
  31491. image: {
  31492. source: "./media/characters/faan/head.svg"
  31493. }
  31494. },
  31495. headAlt: {
  31496. height: math.unit(3.13, "feet"),
  31497. name: "Head-alt",
  31498. image: {
  31499. source: "./media/characters/faan/head-alt.svg"
  31500. }
  31501. },
  31502. },
  31503. [
  31504. {
  31505. name: "Normal",
  31506. height: math.unit(12 + 9/12, "feet"),
  31507. default: true
  31508. },
  31509. ]
  31510. ))
  31511. characterMakers.push(() => makeCharacter(
  31512. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31513. {
  31514. front: {
  31515. height: math.unit(6, "feet"),
  31516. weight: math.unit(300, "lb"),
  31517. name: "Front",
  31518. image: {
  31519. source: "./media/characters/tanio/front.svg",
  31520. extra: 711/673,
  31521. bottom: 25/736
  31522. }
  31523. },
  31524. },
  31525. [
  31526. {
  31527. name: "Normal",
  31528. height: math.unit(6, "feet"),
  31529. default: true
  31530. },
  31531. ]
  31532. ))
  31533. characterMakers.push(() => makeCharacter(
  31534. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31535. {
  31536. front: {
  31537. height: math.unit(3, "inches"),
  31538. name: "Front",
  31539. image: {
  31540. source: "./media/characters/noboru/front.svg",
  31541. extra: 1039/932,
  31542. bottom: 18/1057
  31543. }
  31544. },
  31545. },
  31546. [
  31547. {
  31548. name: "Micro",
  31549. height: math.unit(3, "inches"),
  31550. default: true
  31551. },
  31552. ]
  31553. ))
  31554. characterMakers.push(() => makeCharacter(
  31555. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31556. {
  31557. front: {
  31558. height: math.unit(1.85, "meters"),
  31559. weight: math.unit(80, "kg"),
  31560. name: "Front",
  31561. image: {
  31562. source: "./media/characters/daniel-barrett/front.svg",
  31563. extra: 355/337,
  31564. bottom: 9/364
  31565. }
  31566. },
  31567. },
  31568. [
  31569. {
  31570. name: "Pico",
  31571. height: math.unit(0.0433, "mm")
  31572. },
  31573. {
  31574. name: "Nano",
  31575. height: math.unit(1.5, "mm")
  31576. },
  31577. {
  31578. name: "Micro",
  31579. height: math.unit(5.3, "cm"),
  31580. default: true
  31581. },
  31582. {
  31583. name: "Normal",
  31584. height: math.unit(1.85, "meters")
  31585. },
  31586. {
  31587. name: "Macro",
  31588. height: math.unit(64.7, "meters")
  31589. },
  31590. {
  31591. name: "Megamacro",
  31592. height: math.unit(2.26, "km")
  31593. },
  31594. {
  31595. name: "Gigamacro",
  31596. height: math.unit(79, "km")
  31597. },
  31598. {
  31599. name: "Teramacro",
  31600. height: math.unit(2765, "km")
  31601. },
  31602. {
  31603. name: "Petamacro",
  31604. height: math.unit(96678, "km")
  31605. },
  31606. ]
  31607. ))
  31608. characterMakers.push(() => makeCharacter(
  31609. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31610. {
  31611. front: {
  31612. height: math.unit(30, "meters"),
  31613. weight: math.unit(400, "tons"),
  31614. name: "Front",
  31615. image: {
  31616. source: "./media/characters/zeel/front.svg",
  31617. extra: 2599/2599,
  31618. bottom: 226/2825
  31619. }
  31620. },
  31621. },
  31622. [
  31623. {
  31624. name: "Macro",
  31625. height: math.unit(30, "meters"),
  31626. default: true
  31627. },
  31628. ]
  31629. ))
  31630. characterMakers.push(() => makeCharacter(
  31631. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31632. {
  31633. front: {
  31634. height: math.unit(6 + 7/12, "feet"),
  31635. weight: math.unit(210, "lb"),
  31636. name: "Front",
  31637. image: {
  31638. source: "./media/characters/tarn/front.svg",
  31639. extra: 3517/3220,
  31640. bottom: 91/3608
  31641. }
  31642. },
  31643. back: {
  31644. height: math.unit(6 + 7/12, "feet"),
  31645. weight: math.unit(210, "lb"),
  31646. name: "Back",
  31647. image: {
  31648. source: "./media/characters/tarn/back.svg",
  31649. extra: 3566/3241,
  31650. bottom: 34/3600
  31651. }
  31652. },
  31653. dick: {
  31654. height: math.unit(1.65, "feet"),
  31655. name: "Dick",
  31656. image: {
  31657. source: "./media/characters/tarn/dick.svg"
  31658. }
  31659. },
  31660. paw: {
  31661. height: math.unit(1.80, "feet"),
  31662. name: "Paw",
  31663. image: {
  31664. source: "./media/characters/tarn/paw.svg"
  31665. }
  31666. },
  31667. tongue: {
  31668. height: math.unit(0.97, "feet"),
  31669. name: "Tongue",
  31670. image: {
  31671. source: "./media/characters/tarn/tongue.svg"
  31672. }
  31673. },
  31674. },
  31675. [
  31676. {
  31677. name: "Micro",
  31678. height: math.unit(4, "inches")
  31679. },
  31680. {
  31681. name: "Normal",
  31682. height: math.unit(6 + 7/12, "feet"),
  31683. default: true
  31684. },
  31685. {
  31686. name: "Macro",
  31687. height: math.unit(300, "feet")
  31688. },
  31689. ]
  31690. ))
  31691. characterMakers.push(() => makeCharacter(
  31692. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31693. {
  31694. front: {
  31695. height: math.unit(5 + 7/12, "feet"),
  31696. weight: math.unit(80, "kg"),
  31697. name: "Front",
  31698. image: {
  31699. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31700. extra: 3023/2865,
  31701. bottom: 33/3056
  31702. }
  31703. },
  31704. back: {
  31705. height: math.unit(5 + 7/12, "feet"),
  31706. weight: math.unit(80, "kg"),
  31707. name: "Back",
  31708. image: {
  31709. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31710. extra: 3020/2886,
  31711. bottom: 30/3050
  31712. }
  31713. },
  31714. dick: {
  31715. height: math.unit(0.98, "feet"),
  31716. name: "Dick",
  31717. image: {
  31718. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31719. }
  31720. },
  31721. anatomy: {
  31722. height: math.unit(2.86, "feet"),
  31723. name: "Anatomy",
  31724. image: {
  31725. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31726. }
  31727. },
  31728. },
  31729. [
  31730. {
  31731. name: "Really Small",
  31732. height: math.unit(2, "inches")
  31733. },
  31734. {
  31735. name: "Micro",
  31736. height: math.unit(5.583, "inches")
  31737. },
  31738. {
  31739. name: "Normal",
  31740. height: math.unit(5 + 7/12, "feet"),
  31741. default: true
  31742. },
  31743. {
  31744. name: "Macro",
  31745. height: math.unit(67, "feet")
  31746. },
  31747. {
  31748. name: "Megamacro",
  31749. height: math.unit(134, "feet")
  31750. },
  31751. ]
  31752. ))
  31753. characterMakers.push(() => makeCharacter(
  31754. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31755. {
  31756. front: {
  31757. height: math.unit(9, "feet"),
  31758. weight: math.unit(120, "lb"),
  31759. name: "Front",
  31760. image: {
  31761. source: "./media/characters/sally/front.svg",
  31762. extra: 1506/1349,
  31763. bottom: 66/1572
  31764. }
  31765. },
  31766. },
  31767. [
  31768. {
  31769. name: "Normal",
  31770. height: math.unit(9, "feet"),
  31771. default: true
  31772. },
  31773. ]
  31774. ))
  31775. characterMakers.push(() => makeCharacter(
  31776. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31777. {
  31778. front: {
  31779. height: math.unit(8, "feet"),
  31780. weight: math.unit(900, "lb"),
  31781. name: "Front",
  31782. image: {
  31783. source: "./media/characters/owen/front.svg",
  31784. extra: 1761/1657,
  31785. bottom: 74/1835
  31786. }
  31787. },
  31788. side: {
  31789. height: math.unit(8, "feet"),
  31790. weight: math.unit(900, "lb"),
  31791. name: "Side",
  31792. image: {
  31793. source: "./media/characters/owen/side.svg",
  31794. extra: 1797/1734,
  31795. bottom: 30/1827
  31796. }
  31797. },
  31798. back: {
  31799. height: math.unit(8, "feet"),
  31800. weight: math.unit(900, "lb"),
  31801. name: "Back",
  31802. image: {
  31803. source: "./media/characters/owen/back.svg",
  31804. extra: 1796/1706,
  31805. bottom: 59/1855
  31806. }
  31807. },
  31808. maw: {
  31809. height: math.unit(1.76, "feet"),
  31810. name: "Maw",
  31811. image: {
  31812. source: "./media/characters/owen/maw.svg"
  31813. }
  31814. },
  31815. },
  31816. [
  31817. {
  31818. name: "Normal",
  31819. height: math.unit(8, "feet"),
  31820. default: true
  31821. },
  31822. ]
  31823. ))
  31824. characterMakers.push(() => makeCharacter(
  31825. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31826. {
  31827. front: {
  31828. height: math.unit(4, "feet"),
  31829. weight: math.unit(400, "lb"),
  31830. name: "Front",
  31831. image: {
  31832. source: "./media/characters/ryth/front.svg",
  31833. extra: 1920/1748,
  31834. bottom: 42/1962
  31835. }
  31836. },
  31837. back: {
  31838. height: math.unit(4, "feet"),
  31839. weight: math.unit(400, "lb"),
  31840. name: "Back",
  31841. image: {
  31842. source: "./media/characters/ryth/back.svg",
  31843. extra: 1897/1690,
  31844. bottom: 89/1986
  31845. }
  31846. },
  31847. mouth: {
  31848. height: math.unit(1.39, "feet"),
  31849. name: "Mouth",
  31850. image: {
  31851. source: "./media/characters/ryth/mouth.svg"
  31852. }
  31853. },
  31854. tailmaw: {
  31855. height: math.unit(1.23, "feet"),
  31856. name: "Tailmaw",
  31857. image: {
  31858. source: "./media/characters/ryth/tailmaw.svg"
  31859. }
  31860. },
  31861. goia: {
  31862. height: math.unit(12, "feet"),
  31863. weight: math.unit(10800, "lb"),
  31864. name: "Goia",
  31865. image: {
  31866. source: "./media/characters/ryth/goia.svg",
  31867. extra: 3450/3198,
  31868. bottom: 61/3511
  31869. }
  31870. },
  31871. },
  31872. [
  31873. {
  31874. name: "Normal",
  31875. height: math.unit(4, "feet"),
  31876. default: true
  31877. },
  31878. ]
  31879. ))
  31880. characterMakers.push(() => makeCharacter(
  31881. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31882. {
  31883. front: {
  31884. height: math.unit(7, "feet"),
  31885. weight: math.unit(180, "lb"),
  31886. name: "Front",
  31887. image: {
  31888. source: "./media/characters/necrolance/front.svg",
  31889. extra: 1062/947,
  31890. bottom: 41/1103
  31891. }
  31892. },
  31893. back: {
  31894. height: math.unit(7, "feet"),
  31895. weight: math.unit(180, "lb"),
  31896. name: "Back",
  31897. image: {
  31898. source: "./media/characters/necrolance/back.svg",
  31899. extra: 1045/984,
  31900. bottom: 14/1059
  31901. }
  31902. },
  31903. wing: {
  31904. height: math.unit(2.67, "feet"),
  31905. name: "Wing",
  31906. image: {
  31907. source: "./media/characters/necrolance/wing.svg"
  31908. }
  31909. },
  31910. },
  31911. [
  31912. {
  31913. name: "Normal",
  31914. height: math.unit(7, "feet"),
  31915. default: true
  31916. },
  31917. ]
  31918. ))
  31919. characterMakers.push(() => makeCharacter(
  31920. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31921. {
  31922. front: {
  31923. height: math.unit(76, "meters"),
  31924. weight: math.unit(30000, "tons"),
  31925. name: "Front",
  31926. image: {
  31927. source: "./media/characters/tyler/front.svg",
  31928. extra: 1640/1640,
  31929. bottom: 114/1754
  31930. }
  31931. },
  31932. },
  31933. [
  31934. {
  31935. name: "Macro",
  31936. height: math.unit(76, "meters"),
  31937. default: true
  31938. },
  31939. ]
  31940. ))
  31941. characterMakers.push(() => makeCharacter(
  31942. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31943. {
  31944. front: {
  31945. height: math.unit(4 + 11/12, "feet"),
  31946. weight: math.unit(132, "lb"),
  31947. name: "Front",
  31948. image: {
  31949. source: "./media/characters/icey/front.svg",
  31950. extra: 2750/2550,
  31951. bottom: 33/2783
  31952. }
  31953. },
  31954. back: {
  31955. height: math.unit(4 + 11/12, "feet"),
  31956. weight: math.unit(132, "lb"),
  31957. name: "Back",
  31958. image: {
  31959. source: "./media/characters/icey/back.svg",
  31960. extra: 2624/2481,
  31961. bottom: 35/2659
  31962. }
  31963. },
  31964. },
  31965. [
  31966. {
  31967. name: "Normal",
  31968. height: math.unit(4 + 11/12, "feet"),
  31969. default: true
  31970. },
  31971. ]
  31972. ))
  31973. characterMakers.push(() => makeCharacter(
  31974. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31975. {
  31976. front: {
  31977. height: math.unit(100, "feet"),
  31978. weight: math.unit(0, "lb"),
  31979. name: "Front",
  31980. image: {
  31981. source: "./media/characters/smile/front.svg",
  31982. extra: 2983/2912,
  31983. bottom: 162/3145
  31984. }
  31985. },
  31986. back: {
  31987. height: math.unit(100, "feet"),
  31988. weight: math.unit(0, "lb"),
  31989. name: "Back",
  31990. image: {
  31991. source: "./media/characters/smile/back.svg",
  31992. extra: 3143/3031,
  31993. bottom: 91/3234
  31994. }
  31995. },
  31996. head: {
  31997. height: math.unit(26.3, "feet"),
  31998. weight: math.unit(0, "lb"),
  31999. name: "Head",
  32000. image: {
  32001. source: "./media/characters/smile/head.svg"
  32002. }
  32003. },
  32004. collar: {
  32005. height: math.unit(5.3, "feet"),
  32006. weight: math.unit(0, "lb"),
  32007. name: "Collar",
  32008. image: {
  32009. source: "./media/characters/smile/collar.svg"
  32010. }
  32011. },
  32012. },
  32013. [
  32014. {
  32015. name: "Macro",
  32016. height: math.unit(100, "feet"),
  32017. default: true
  32018. },
  32019. ]
  32020. ))
  32021. characterMakers.push(() => makeCharacter(
  32022. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32023. {
  32024. dragon: {
  32025. height: math.unit(26, "feet"),
  32026. weight: math.unit(36, "tons"),
  32027. name: "Dragon",
  32028. image: {
  32029. source: "./media/characters/arimphae/dragon.svg",
  32030. extra: 1574/983,
  32031. bottom: 357/1931
  32032. }
  32033. },
  32034. drake: {
  32035. height: math.unit(9, "feet"),
  32036. weight: math.unit(1.5, "tons"),
  32037. name: "Drake",
  32038. image: {
  32039. source: "./media/characters/arimphae/drake.svg",
  32040. extra: 1120/925,
  32041. bottom: 435/1555
  32042. }
  32043. },
  32044. },
  32045. [
  32046. {
  32047. name: "Small",
  32048. height: math.unit(26*5/9, "feet")
  32049. },
  32050. {
  32051. name: "Normal",
  32052. height: math.unit(26, "feet"),
  32053. default: true
  32054. },
  32055. ]
  32056. ))
  32057. characterMakers.push(() => makeCharacter(
  32058. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32059. {
  32060. front: {
  32061. height: math.unit(8 + 9/12, "feet"),
  32062. name: "Front",
  32063. image: {
  32064. source: "./media/characters/xander/front.svg",
  32065. extra: 848/673,
  32066. bottom: 62/910
  32067. }
  32068. },
  32069. },
  32070. [
  32071. {
  32072. name: "Normal",
  32073. height: math.unit(8 + 9/12, "feet"),
  32074. default: true
  32075. },
  32076. {
  32077. name: "Gaze Grabber",
  32078. height: math.unit(13 + 8/12, "feet")
  32079. },
  32080. {
  32081. name: "Jaw Dropper",
  32082. height: math.unit(27, "feet")
  32083. },
  32084. {
  32085. name: "Show Stopper",
  32086. height: math.unit(136, "feet")
  32087. },
  32088. {
  32089. name: "Superstar",
  32090. height: math.unit(1.9e6, "miles")
  32091. },
  32092. ]
  32093. ))
  32094. characterMakers.push(() => makeCharacter(
  32095. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32096. {
  32097. side: {
  32098. height: math.unit(2100, "feet"),
  32099. name: "Side",
  32100. image: {
  32101. source: "./media/characters/osiris/side.svg",
  32102. extra: 1105/939,
  32103. bottom: 167/1272
  32104. }
  32105. },
  32106. },
  32107. [
  32108. {
  32109. name: "Macro",
  32110. height: math.unit(2100, "feet"),
  32111. default: true
  32112. },
  32113. ]
  32114. ))
  32115. characterMakers.push(() => makeCharacter(
  32116. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32117. {
  32118. front: {
  32119. height: math.unit(6 + 8/12, "feet"),
  32120. weight: math.unit(225, "lb"),
  32121. name: "Front",
  32122. image: {
  32123. source: "./media/characters/rhys-londe/front.svg",
  32124. extra: 2258/2141,
  32125. bottom: 188/2446
  32126. }
  32127. },
  32128. back: {
  32129. height: math.unit(6 + 8/12, "feet"),
  32130. weight: math.unit(225, "lb"),
  32131. name: "Back",
  32132. image: {
  32133. source: "./media/characters/rhys-londe/back.svg",
  32134. extra: 2237/2137,
  32135. bottom: 63/2300
  32136. }
  32137. },
  32138. frontNsfw: {
  32139. height: math.unit(6 + 8/12, "feet"),
  32140. weight: math.unit(225, "lb"),
  32141. name: "Front (NSFW)",
  32142. image: {
  32143. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32144. extra: 2258/2141,
  32145. bottom: 188/2446
  32146. }
  32147. },
  32148. backNsfw: {
  32149. height: math.unit(6 + 8/12, "feet"),
  32150. weight: math.unit(225, "lb"),
  32151. name: "Back (NSFW)",
  32152. image: {
  32153. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32154. extra: 2237/2137,
  32155. bottom: 63/2300
  32156. }
  32157. },
  32158. dick: {
  32159. height: math.unit(30, "inches"),
  32160. name: "Dick",
  32161. image: {
  32162. source: "./media/characters/rhys-londe/dick.svg"
  32163. }
  32164. },
  32165. maw: {
  32166. height: math.unit(1.6, "feet"),
  32167. name: "Maw",
  32168. image: {
  32169. source: "./media/characters/rhys-londe/maw.svg"
  32170. }
  32171. },
  32172. },
  32173. [
  32174. {
  32175. name: "Normal",
  32176. height: math.unit(6 + 8/12, "feet"),
  32177. default: true
  32178. },
  32179. ]
  32180. ))
  32181. characterMakers.push(() => makeCharacter(
  32182. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32183. {
  32184. front: {
  32185. height: math.unit(3 + 10/12, "feet"),
  32186. weight: math.unit(90, "lb"),
  32187. name: "Front",
  32188. image: {
  32189. source: "./media/characters/taivas-ensim/front.svg",
  32190. extra: 1327/1216,
  32191. bottom: 96/1423
  32192. }
  32193. },
  32194. back: {
  32195. height: math.unit(3 + 10/12, "feet"),
  32196. weight: math.unit(90, "lb"),
  32197. name: "Back",
  32198. image: {
  32199. source: "./media/characters/taivas-ensim/back.svg",
  32200. extra: 1355/1247,
  32201. bottom: 11/1366
  32202. }
  32203. },
  32204. frontNsfw: {
  32205. height: math.unit(3 + 10/12, "feet"),
  32206. weight: math.unit(90, "lb"),
  32207. name: "Front (NSFW)",
  32208. image: {
  32209. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32210. extra: 1327/1216,
  32211. bottom: 96/1423
  32212. }
  32213. },
  32214. backNsfw: {
  32215. height: math.unit(3 + 10/12, "feet"),
  32216. weight: math.unit(90, "lb"),
  32217. name: "Back (NSFW)",
  32218. image: {
  32219. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32220. extra: 1355/1247,
  32221. bottom: 11/1366
  32222. }
  32223. },
  32224. },
  32225. [
  32226. {
  32227. name: "Normal",
  32228. height: math.unit(3 + 10/12, "feet"),
  32229. default: true
  32230. },
  32231. ]
  32232. ))
  32233. characterMakers.push(() => makeCharacter(
  32234. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32235. {
  32236. front: {
  32237. height: math.unit(9 + 6/12, "feet"),
  32238. weight: math.unit(940, "lb"),
  32239. name: "Front",
  32240. image: {
  32241. source: "./media/characters/byliss/front.svg",
  32242. extra: 1327/1290,
  32243. bottom: 82/1409
  32244. }
  32245. },
  32246. back: {
  32247. height: math.unit(9 + 6/12, "feet"),
  32248. weight: math.unit(940, "lb"),
  32249. name: "Back",
  32250. image: {
  32251. source: "./media/characters/byliss/back.svg",
  32252. extra: 1376/1349,
  32253. bottom: 9/1385
  32254. }
  32255. },
  32256. frontNsfw: {
  32257. height: math.unit(9 + 6/12, "feet"),
  32258. weight: math.unit(940, "lb"),
  32259. name: "Front (NSFW)",
  32260. image: {
  32261. source: "./media/characters/byliss/front-nsfw.svg",
  32262. extra: 1327/1290,
  32263. bottom: 82/1409
  32264. }
  32265. },
  32266. backNsfw: {
  32267. height: math.unit(9 + 6/12, "feet"),
  32268. weight: math.unit(940, "lb"),
  32269. name: "Back (NSFW)",
  32270. image: {
  32271. source: "./media/characters/byliss/back-nsfw.svg",
  32272. extra: 1376/1349,
  32273. bottom: 9/1385
  32274. }
  32275. },
  32276. },
  32277. [
  32278. {
  32279. name: "Normal",
  32280. height: math.unit(9 + 6/12, "feet"),
  32281. default: true
  32282. },
  32283. ]
  32284. ))
  32285. characterMakers.push(() => makeCharacter(
  32286. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32287. {
  32288. front: {
  32289. height: math.unit(5 + 2/12, "feet"),
  32290. weight: math.unit(200, "lb"),
  32291. name: "Front",
  32292. image: {
  32293. source: "./media/characters/noraly/front.svg",
  32294. extra: 4985/4773,
  32295. bottom: 150/5135
  32296. }
  32297. },
  32298. full: {
  32299. height: math.unit(5 + 2/12, "feet"),
  32300. weight: math.unit(164, "lb"),
  32301. name: "Full",
  32302. image: {
  32303. source: "./media/characters/noraly/full.svg",
  32304. extra: 1114/1059,
  32305. bottom: 35/1149
  32306. }
  32307. },
  32308. fuller: {
  32309. height: math.unit(5 + 2/12, "feet"),
  32310. weight: math.unit(230, "lb"),
  32311. name: "Fuller",
  32312. image: {
  32313. source: "./media/characters/noraly/fuller.svg",
  32314. extra: 1114/1059,
  32315. bottom: 35/1149
  32316. }
  32317. },
  32318. fullest: {
  32319. height: math.unit(5 + 2/12, "feet"),
  32320. weight: math.unit(300, "lb"),
  32321. name: "Fullest",
  32322. image: {
  32323. source: "./media/characters/noraly/fullest.svg",
  32324. extra: 1114/1059,
  32325. bottom: 35/1149
  32326. }
  32327. },
  32328. },
  32329. [
  32330. {
  32331. name: "Normal",
  32332. height: math.unit(5 + 2/12, "feet"),
  32333. default: true
  32334. },
  32335. ]
  32336. ))
  32337. characterMakers.push(() => makeCharacter(
  32338. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32339. {
  32340. front: {
  32341. height: math.unit(5 + 2/12, "feet"),
  32342. weight: math.unit(210, "lb"),
  32343. name: "Front",
  32344. image: {
  32345. source: "./media/characters/pera/front.svg",
  32346. extra: 1560/1531,
  32347. bottom: 165/1725
  32348. }
  32349. },
  32350. back: {
  32351. height: math.unit(5 + 2/12, "feet"),
  32352. weight: math.unit(210, "lb"),
  32353. name: "Back",
  32354. image: {
  32355. source: "./media/characters/pera/back.svg",
  32356. extra: 1523/1493,
  32357. bottom: 152/1675
  32358. }
  32359. },
  32360. dick: {
  32361. height: math.unit(2.4, "feet"),
  32362. name: "Dick",
  32363. image: {
  32364. source: "./media/characters/pera/dick.svg"
  32365. }
  32366. },
  32367. },
  32368. [
  32369. {
  32370. name: "Normal",
  32371. height: math.unit(5 + 2/12, "feet"),
  32372. default: true
  32373. },
  32374. ]
  32375. ))
  32376. characterMakers.push(() => makeCharacter(
  32377. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32378. {
  32379. front: {
  32380. height: math.unit(12, "feet"),
  32381. weight: math.unit(3200, "lb"),
  32382. name: "Front",
  32383. image: {
  32384. source: "./media/characters/julian/front.svg",
  32385. extra: 2962/2701,
  32386. bottom: 184/3146
  32387. }
  32388. },
  32389. maw: {
  32390. height: math.unit(5.35, "feet"),
  32391. name: "Maw",
  32392. image: {
  32393. source: "./media/characters/julian/maw.svg"
  32394. }
  32395. },
  32396. paw: {
  32397. height: math.unit(3.07, "feet"),
  32398. name: "Paw",
  32399. image: {
  32400. source: "./media/characters/julian/paw.svg"
  32401. }
  32402. },
  32403. },
  32404. [
  32405. {
  32406. name: "Default",
  32407. height: math.unit(12, "feet"),
  32408. default: true
  32409. },
  32410. {
  32411. name: "Big",
  32412. height: math.unit(50, "feet")
  32413. },
  32414. {
  32415. name: "Really Big",
  32416. height: math.unit(1, "mile")
  32417. },
  32418. {
  32419. name: "Extremely Big",
  32420. height: math.unit(100, "miles")
  32421. },
  32422. {
  32423. name: "Planet Hugger",
  32424. height: math.unit(200, "megameters")
  32425. },
  32426. {
  32427. name: "Unreasonably Big",
  32428. height: math.unit(1e300, "meters")
  32429. },
  32430. ]
  32431. ))
  32432. characterMakers.push(() => makeCharacter(
  32433. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32434. {
  32435. solgooleo: {
  32436. height: math.unit(4, "meters"),
  32437. weight: math.unit(6000*1.5, "kg"),
  32438. volume: math.unit(6000, "liters"),
  32439. name: "Solgooleo",
  32440. image: {
  32441. source: "./media/characters/pi/solgooleo.svg",
  32442. extra: 388/331,
  32443. bottom: 29/417
  32444. }
  32445. },
  32446. },
  32447. [
  32448. {
  32449. name: "Normal",
  32450. height: math.unit(4, "meters"),
  32451. default: true
  32452. },
  32453. ]
  32454. ))
  32455. characterMakers.push(() => makeCharacter(
  32456. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32457. {
  32458. front: {
  32459. height: math.unit(8 + 2/12, "feet"),
  32460. weight: math.unit(4, "tons"),
  32461. name: "Front",
  32462. image: {
  32463. source: "./media/characters/shaun/front.svg",
  32464. extra: 1550/1505,
  32465. bottom: 353/1903
  32466. }
  32467. },
  32468. },
  32469. [
  32470. {
  32471. name: "Lorg",
  32472. height: math.unit(8 + 2/12, "feet"),
  32473. default: true
  32474. },
  32475. ]
  32476. ))
  32477. characterMakers.push(() => makeCharacter(
  32478. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32479. {
  32480. front: {
  32481. height: math.unit(7, "feet"),
  32482. name: "Front",
  32483. image: {
  32484. source: "./media/characters/sini/front.svg",
  32485. extra: 726/678,
  32486. bottom: 35/761
  32487. }
  32488. },
  32489. back: {
  32490. height: math.unit(7, "feet"),
  32491. name: "Back",
  32492. image: {
  32493. source: "./media/characters/sini/back.svg",
  32494. extra: 743/701,
  32495. bottom: 12/755
  32496. }
  32497. },
  32498. mawAnthro: {
  32499. height: math.unit(2.14, "feet"),
  32500. name: "Maw (Anthro)",
  32501. image: {
  32502. source: "./media/characters/sini/maw-anthro.svg"
  32503. }
  32504. },
  32505. dick: {
  32506. height: math.unit(1.45, "feet"),
  32507. name: "Dick (Anthro)",
  32508. image: {
  32509. source: "./media/characters/sini/dick-anthro.svg"
  32510. }
  32511. },
  32512. feral: {
  32513. height: math.unit(16, "feet"),
  32514. name: "Feral",
  32515. image: {
  32516. source: "./media/characters/sini/feral.svg",
  32517. extra: 814/605,
  32518. bottom: 11/825
  32519. }
  32520. },
  32521. mawFeral: {
  32522. height: math.unit(5.66, "feet"),
  32523. name: "Maw-feral",
  32524. image: {
  32525. source: "./media/characters/sini/maw-feral.svg"
  32526. }
  32527. },
  32528. footFeral: {
  32529. height: math.unit(5.17, "feet"),
  32530. name: "Foot-feral",
  32531. image: {
  32532. source: "./media/characters/sini/foot-feral.svg"
  32533. }
  32534. },
  32535. },
  32536. [
  32537. {
  32538. name: "Normal",
  32539. height: math.unit(7, "feet"),
  32540. default: true
  32541. },
  32542. ]
  32543. ))
  32544. characterMakers.push(() => makeCharacter(
  32545. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32546. {
  32547. side: {
  32548. height: math.unit(13, "meters"),
  32549. weight: math.unit(9072, "kg"),
  32550. name: "Side",
  32551. image: {
  32552. source: "./media/characters/raylldo/side.svg",
  32553. extra: 403/344,
  32554. bottom: 42/445
  32555. }
  32556. },
  32557. leaping: {
  32558. height: math.unit(12.3, "meters"),
  32559. weight: math.unit(9072, "kg"),
  32560. name: "Leaping",
  32561. image: {
  32562. source: "./media/characters/raylldo/leaping.svg",
  32563. extra: 470/249,
  32564. bottom: 13/483
  32565. }
  32566. },
  32567. flying: {
  32568. height: math.unit(18, "meters"),
  32569. weight: math.unit(9072, "kg"),
  32570. name: "Flying",
  32571. image: {
  32572. source: "./media/characters/raylldo/flying.svg"
  32573. }
  32574. },
  32575. head: {
  32576. height: math.unit(5.85, "meters"),
  32577. name: "Head",
  32578. image: {
  32579. source: "./media/characters/raylldo/head.svg"
  32580. }
  32581. },
  32582. maw: {
  32583. height: math.unit(5.32, "meters"),
  32584. name: "Maw",
  32585. image: {
  32586. source: "./media/characters/raylldo/maw.svg"
  32587. }
  32588. },
  32589. eye: {
  32590. height: math.unit(0.54, "meters"),
  32591. name: "Eye",
  32592. image: {
  32593. source: "./media/characters/raylldo/eye.svg"
  32594. }
  32595. },
  32596. },
  32597. [
  32598. {
  32599. name: "Normal",
  32600. height: math.unit(13, "meters"),
  32601. default: true
  32602. },
  32603. ]
  32604. ))
  32605. characterMakers.push(() => makeCharacter(
  32606. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32607. {
  32608. anthroFront: {
  32609. height: math.unit(9, "feet"),
  32610. weight: math.unit(600, "lb"),
  32611. name: "Anthro (Front)",
  32612. image: {
  32613. source: "./media/characters/glint/anthro-front.svg",
  32614. extra: 1097/1018,
  32615. bottom: 28/1125
  32616. }
  32617. },
  32618. anthroBack: {
  32619. height: math.unit(9, "feet"),
  32620. weight: math.unit(600, "lb"),
  32621. name: "Anthro (Back)",
  32622. image: {
  32623. source: "./media/characters/glint/anthro-back.svg",
  32624. extra: 1154/997,
  32625. bottom: 36/1190
  32626. }
  32627. },
  32628. feral: {
  32629. height: math.unit(11, "feet"),
  32630. weight: math.unit(50000, "lb"),
  32631. name: "Feral",
  32632. image: {
  32633. source: "./media/characters/glint/feral.svg",
  32634. extra: 3035/1585,
  32635. bottom: 1169/4204
  32636. }
  32637. },
  32638. dickAnthro: {
  32639. height: math.unit(0.7, "meters"),
  32640. name: "Dick (Anthro)",
  32641. image: {
  32642. source: "./media/characters/glint/dick-anthro.svg"
  32643. }
  32644. },
  32645. dickFeral: {
  32646. height: math.unit(2.65, "meters"),
  32647. name: "Dick (Feral)",
  32648. image: {
  32649. source: "./media/characters/glint/dick-feral.svg"
  32650. }
  32651. },
  32652. slitHidden: {
  32653. height: math.unit(5.85, "meters"),
  32654. name: "Slit (Hidden)",
  32655. image: {
  32656. source: "./media/characters/glint/slit-hidden.svg"
  32657. }
  32658. },
  32659. slitErect: {
  32660. height: math.unit(5.85, "meters"),
  32661. name: "Slit (Erect)",
  32662. image: {
  32663. source: "./media/characters/glint/slit-erect.svg"
  32664. }
  32665. },
  32666. mawAnthro: {
  32667. height: math.unit(0.63, "meters"),
  32668. name: "Maw (Anthro)",
  32669. image: {
  32670. source: "./media/characters/glint/maw.svg"
  32671. }
  32672. },
  32673. mawFeral: {
  32674. height: math.unit(2.89, "meters"),
  32675. name: "Maw (Feral)",
  32676. image: {
  32677. source: "./media/characters/glint/maw.svg"
  32678. }
  32679. },
  32680. },
  32681. [
  32682. {
  32683. name: "Normal",
  32684. height: math.unit(9, "feet"),
  32685. default: true
  32686. },
  32687. ]
  32688. ))
  32689. characterMakers.push(() => makeCharacter(
  32690. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32691. {
  32692. side: {
  32693. height: math.unit(15, "feet"),
  32694. weight: math.unit(5000, "kg"),
  32695. name: "Side",
  32696. image: {
  32697. source: "./media/characters/kairne/side.svg",
  32698. extra: 979/811,
  32699. bottom: 13/992
  32700. }
  32701. },
  32702. front: {
  32703. height: math.unit(15, "feet"),
  32704. weight: math.unit(5000, "kg"),
  32705. name: "Front",
  32706. image: {
  32707. source: "./media/characters/kairne/front.svg",
  32708. extra: 908/814,
  32709. bottom: 26/934
  32710. }
  32711. },
  32712. sideNsfw: {
  32713. height: math.unit(15, "feet"),
  32714. weight: math.unit(5000, "kg"),
  32715. name: "Side (NSFW)",
  32716. image: {
  32717. source: "./media/characters/kairne/side-nsfw.svg",
  32718. extra: 979/811,
  32719. bottom: 13/992
  32720. }
  32721. },
  32722. frontNsfw: {
  32723. height: math.unit(15, "feet"),
  32724. weight: math.unit(5000, "kg"),
  32725. name: "Front (NSFW)",
  32726. image: {
  32727. source: "./media/characters/kairne/front-nsfw.svg",
  32728. extra: 908/814,
  32729. bottom: 26/934
  32730. }
  32731. },
  32732. dickCaged: {
  32733. height: math.unit(0.65, "meters"),
  32734. name: "Dick-caged",
  32735. image: {
  32736. source: "./media/characters/kairne/dick-caged.svg"
  32737. }
  32738. },
  32739. dick: {
  32740. height: math.unit(0.79, "meters"),
  32741. name: "Dick",
  32742. image: {
  32743. source: "./media/characters/kairne/dick.svg"
  32744. }
  32745. },
  32746. genitals: {
  32747. height: math.unit(1.29, "meters"),
  32748. name: "Genitals",
  32749. image: {
  32750. source: "./media/characters/kairne/genitals.svg"
  32751. }
  32752. },
  32753. maw: {
  32754. height: math.unit(1.73, "meters"),
  32755. name: "Maw",
  32756. image: {
  32757. source: "./media/characters/kairne/maw.svg"
  32758. }
  32759. },
  32760. },
  32761. [
  32762. {
  32763. name: "Normal",
  32764. height: math.unit(15, "feet"),
  32765. default: true
  32766. },
  32767. ]
  32768. ))
  32769. characterMakers.push(() => makeCharacter(
  32770. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32771. {
  32772. front: {
  32773. height: math.unit(5 + 8/12, "feet"),
  32774. weight: math.unit(139, "lb"),
  32775. name: "Front",
  32776. image: {
  32777. source: "./media/characters/biscuit-jackal/front.svg",
  32778. extra: 2106/1961,
  32779. bottom: 58/2164
  32780. }
  32781. },
  32782. back: {
  32783. height: math.unit(5 + 8/12, "feet"),
  32784. weight: math.unit(139, "lb"),
  32785. name: "Back",
  32786. image: {
  32787. source: "./media/characters/biscuit-jackal/back.svg",
  32788. extra: 2132/1976,
  32789. bottom: 57/2189
  32790. }
  32791. },
  32792. werejackal: {
  32793. height: math.unit(6 + 3/12, "feet"),
  32794. weight: math.unit(188, "lb"),
  32795. name: "Werejackal",
  32796. image: {
  32797. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32798. extra: 2373/2178,
  32799. bottom: 53/2426
  32800. }
  32801. },
  32802. },
  32803. [
  32804. {
  32805. name: "Normal",
  32806. height: math.unit(5 + 8/12, "feet"),
  32807. default: true
  32808. },
  32809. ]
  32810. ))
  32811. characterMakers.push(() => makeCharacter(
  32812. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32813. {
  32814. front: {
  32815. height: math.unit(140, "cm"),
  32816. weight: math.unit(45, "kg"),
  32817. name: "Front",
  32818. image: {
  32819. source: "./media/characters/tayra-white/front.svg",
  32820. extra: 2229/2192,
  32821. bottom: 75/2304
  32822. }
  32823. },
  32824. },
  32825. [
  32826. {
  32827. name: "Normal",
  32828. height: math.unit(140, "cm"),
  32829. default: true
  32830. },
  32831. ]
  32832. ))
  32833. characterMakers.push(() => makeCharacter(
  32834. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32835. {
  32836. front: {
  32837. height: math.unit(4 + 5/12, "feet"),
  32838. name: "Front",
  32839. image: {
  32840. source: "./media/characters/scoop/front.svg",
  32841. extra: 1257/1136,
  32842. bottom: 69/1326
  32843. }
  32844. },
  32845. back: {
  32846. height: math.unit(4 + 5/12, "feet"),
  32847. name: "Back",
  32848. image: {
  32849. source: "./media/characters/scoop/back.svg",
  32850. extra: 1321/1152,
  32851. bottom: 32/1353
  32852. }
  32853. },
  32854. maw: {
  32855. height: math.unit(0.68, "feet"),
  32856. name: "Maw",
  32857. image: {
  32858. source: "./media/characters/scoop/maw.svg"
  32859. }
  32860. },
  32861. },
  32862. [
  32863. {
  32864. name: "Really Small",
  32865. height: math.unit(1, "mm")
  32866. },
  32867. {
  32868. name: "Micro",
  32869. height: math.unit(1, "inch")
  32870. },
  32871. {
  32872. name: "Normal",
  32873. height: math.unit(4 + 5/12, "feet"),
  32874. default: true
  32875. },
  32876. {
  32877. name: "Macro",
  32878. height: math.unit(200, "feet")
  32879. },
  32880. {
  32881. name: "Megamacro",
  32882. height: math.unit(3240, "feet")
  32883. },
  32884. {
  32885. name: "Teramacro",
  32886. height: math.unit(2500, "miles")
  32887. },
  32888. ]
  32889. ))
  32890. characterMakers.push(() => makeCharacter(
  32891. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32892. {
  32893. front: {
  32894. height: math.unit(15 + 7/12, "feet"),
  32895. name: "Front",
  32896. image: {
  32897. source: "./media/characters/saphinara/front.svg",
  32898. extra: 604/546,
  32899. bottom: 19/623
  32900. }
  32901. },
  32902. side: {
  32903. height: math.unit(15 + 7/12, "feet"),
  32904. name: "Side",
  32905. image: {
  32906. source: "./media/characters/saphinara/side.svg",
  32907. extra: 605/547,
  32908. bottom: 6/611
  32909. }
  32910. },
  32911. back: {
  32912. height: math.unit(15 + 7/12, "feet"),
  32913. name: "Back",
  32914. image: {
  32915. source: "./media/characters/saphinara/back.svg",
  32916. extra: 591/531,
  32917. bottom: 13/604
  32918. }
  32919. },
  32920. frontTail: {
  32921. height: math.unit(15 + 7/12, "feet"),
  32922. name: "Front (Full Tail)",
  32923. image: {
  32924. source: "./media/characters/saphinara/front-tail.svg",
  32925. extra: 748/547,
  32926. bottom: 66/814
  32927. }
  32928. },
  32929. },
  32930. [
  32931. {
  32932. name: "Normal",
  32933. height: math.unit(15 + 7/12, "feet"),
  32934. default: true
  32935. },
  32936. {
  32937. name: "Angry",
  32938. height: math.unit(30 + 6/12, "feet")
  32939. },
  32940. {
  32941. name: "Enraged",
  32942. height: math.unit(102 + 1/12, "feet")
  32943. },
  32944. ]
  32945. ))
  32946. characterMakers.push(() => makeCharacter(
  32947. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32948. {
  32949. front: {
  32950. height: math.unit(6 + 8/12, "feet"),
  32951. weight: math.unit(300, "lb"),
  32952. name: "Front",
  32953. image: {
  32954. source: "./media/characters/jrain/front.svg",
  32955. extra: 3039/2865,
  32956. bottom: 399/3438
  32957. }
  32958. },
  32959. back: {
  32960. height: math.unit(6 + 8/12, "feet"),
  32961. weight: math.unit(300, "lb"),
  32962. name: "Back",
  32963. image: {
  32964. source: "./media/characters/jrain/back.svg",
  32965. extra: 3089/2938,
  32966. bottom: 172/3261
  32967. }
  32968. },
  32969. head: {
  32970. height: math.unit(2.14, "feet"),
  32971. name: "Head",
  32972. image: {
  32973. source: "./media/characters/jrain/head.svg"
  32974. }
  32975. },
  32976. maw: {
  32977. height: math.unit(1.77, "feet"),
  32978. name: "Maw",
  32979. image: {
  32980. source: "./media/characters/jrain/maw.svg"
  32981. }
  32982. },
  32983. leftHand: {
  32984. height: math.unit(1.1, "feet"),
  32985. name: "Left Hand",
  32986. image: {
  32987. source: "./media/characters/jrain/left-hand.svg"
  32988. }
  32989. },
  32990. rightHand: {
  32991. height: math.unit(1.1, "feet"),
  32992. name: "Right Hand",
  32993. image: {
  32994. source: "./media/characters/jrain/right-hand.svg"
  32995. }
  32996. },
  32997. eye: {
  32998. height: math.unit(0.35, "feet"),
  32999. name: "Eye",
  33000. image: {
  33001. source: "./media/characters/jrain/eye.svg"
  33002. }
  33003. },
  33004. },
  33005. [
  33006. {
  33007. name: "Normal",
  33008. height: math.unit(6 + 8/12, "feet"),
  33009. default: true
  33010. },
  33011. {
  33012. name: "Casually Large",
  33013. height: math.unit(25, "feet")
  33014. },
  33015. {
  33016. name: "Giant",
  33017. height: math.unit(100, "feet")
  33018. },
  33019. {
  33020. name: "Kaiju",
  33021. height: math.unit(300, "feet")
  33022. },
  33023. ]
  33024. ))
  33025. characterMakers.push(() => makeCharacter(
  33026. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33027. {
  33028. dragon: {
  33029. height: math.unit(5, "meters"),
  33030. name: "Dragon",
  33031. image: {
  33032. source: "./media/characters/sabrina/dragon.svg",
  33033. extra: 3670 / 2365,
  33034. bottom: 333 / 4003
  33035. }
  33036. },
  33037. gryphon: {
  33038. height: math.unit(3, "meters"),
  33039. name: "Gryphon",
  33040. image: {
  33041. source: "./media/characters/sabrina/gryphon.svg",
  33042. extra: 1576 / 945,
  33043. bottom: 71 / 1647
  33044. }
  33045. },
  33046. snake: {
  33047. height: math.unit(12, "meters"),
  33048. name: "Snake",
  33049. image: {
  33050. source: "./media/characters/sabrina/snake.svg",
  33051. extra: 1758 / 1320,
  33052. bottom: 186 / 1944
  33053. }
  33054. },
  33055. collar: {
  33056. height: math.unit(1.86, "meters"),
  33057. name: "Collar",
  33058. image: {
  33059. source: "./media/characters/sabrina/collar.svg"
  33060. }
  33061. },
  33062. eye: {
  33063. height: math.unit(0.53, "meters"),
  33064. name: "Eye",
  33065. image: {
  33066. source: "./media/characters/sabrina/eye.svg"
  33067. }
  33068. },
  33069. foot: {
  33070. height: math.unit(1.86, "meters"),
  33071. name: "Foot",
  33072. image: {
  33073. source: "./media/characters/sabrina/foot.svg"
  33074. }
  33075. },
  33076. hand: {
  33077. height: math.unit(1.32, "meters"),
  33078. name: "Hand",
  33079. image: {
  33080. source: "./media/characters/sabrina/hand.svg"
  33081. }
  33082. },
  33083. head: {
  33084. height: math.unit(2.44, "meters"),
  33085. name: "Head",
  33086. image: {
  33087. source: "./media/characters/sabrina/head.svg"
  33088. }
  33089. },
  33090. headAngry: {
  33091. height: math.unit(2.44, "meters"),
  33092. name: "Head (Angry))",
  33093. image: {
  33094. source: "./media/characters/sabrina/head-angry.svg"
  33095. }
  33096. },
  33097. maw: {
  33098. height: math.unit(1.65, "meters"),
  33099. name: "Maw",
  33100. image: {
  33101. source: "./media/characters/sabrina/maw.svg"
  33102. }
  33103. },
  33104. spikes: {
  33105. height: math.unit(1.69, "meters"),
  33106. name: "Spikes",
  33107. image: {
  33108. source: "./media/characters/sabrina/spikes.svg"
  33109. }
  33110. },
  33111. stomach: {
  33112. height: math.unit(1.15, "meters"),
  33113. name: "Stomach",
  33114. image: {
  33115. source: "./media/characters/sabrina/stomach.svg"
  33116. }
  33117. },
  33118. tongue: {
  33119. height: math.unit(1.27, "meters"),
  33120. name: "Tongue",
  33121. image: {
  33122. source: "./media/characters/sabrina/tongue.svg"
  33123. }
  33124. },
  33125. wingDorsal: {
  33126. height: math.unit(4.85, "meters"),
  33127. name: "Wing (Dorsal)",
  33128. image: {
  33129. source: "./media/characters/sabrina/wing-dorsal.svg"
  33130. }
  33131. },
  33132. wingVentral: {
  33133. height: math.unit(4.85, "meters"),
  33134. name: "Wing (Ventral)",
  33135. image: {
  33136. source: "./media/characters/sabrina/wing-ventral.svg"
  33137. }
  33138. },
  33139. },
  33140. [
  33141. {
  33142. name: "Normal",
  33143. height: math.unit(5, "meters"),
  33144. default: true
  33145. },
  33146. ]
  33147. ))
  33148. characterMakers.push(() => makeCharacter(
  33149. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33150. {
  33151. frontMaid: {
  33152. height: math.unit(5 + 5/12, "feet"),
  33153. weight: math.unit(130, "lb"),
  33154. name: "Front (Maid)",
  33155. image: {
  33156. source: "./media/characters/midnight-tales/front-maid.svg",
  33157. extra: 489/454,
  33158. bottom: 61/550
  33159. }
  33160. },
  33161. frontFormal: {
  33162. height: math.unit(5 + 5/12, "feet"),
  33163. weight: math.unit(130, "lb"),
  33164. name: "Front (Formal)",
  33165. image: {
  33166. source: "./media/characters/midnight-tales/front-formal.svg",
  33167. extra: 489/454,
  33168. bottom: 61/550
  33169. }
  33170. },
  33171. back: {
  33172. height: math.unit(5 + 5/12, "feet"),
  33173. weight: math.unit(130, "lb"),
  33174. name: "Back",
  33175. image: {
  33176. source: "./media/characters/midnight-tales/back.svg",
  33177. extra: 498/456,
  33178. bottom: 33/531
  33179. }
  33180. },
  33181. frontBeast: {
  33182. height: math.unit(40, "feet"),
  33183. weight: math.unit(64000, "lb"),
  33184. name: "Front (Beast)",
  33185. image: {
  33186. source: "./media/characters/midnight-tales/front-beast.svg",
  33187. extra: 927/860,
  33188. bottom: 53/980
  33189. }
  33190. },
  33191. backBeast: {
  33192. height: math.unit(40, "feet"),
  33193. weight: math.unit(64000, "lb"),
  33194. name: "Back (Beast)",
  33195. image: {
  33196. source: "./media/characters/midnight-tales/back-beast.svg",
  33197. extra: 929/855,
  33198. bottom: 16/945
  33199. }
  33200. },
  33201. footBeast: {
  33202. height: math.unit(6.7, "feet"),
  33203. name: "Foot (Beast)",
  33204. image: {
  33205. source: "./media/characters/midnight-tales/foot-beast.svg"
  33206. }
  33207. },
  33208. headBeast: {
  33209. height: math.unit(8, "feet"),
  33210. name: "Head (Beast)",
  33211. image: {
  33212. source: "./media/characters/midnight-tales/head-beast.svg"
  33213. }
  33214. },
  33215. },
  33216. [
  33217. {
  33218. name: "Normal",
  33219. height: math.unit(5 + 5 / 12, "feet"),
  33220. default: true
  33221. },
  33222. {
  33223. name: "Macro",
  33224. height: math.unit(25, "feet")
  33225. },
  33226. ]
  33227. ))
  33228. characterMakers.push(() => makeCharacter(
  33229. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33230. {
  33231. front: {
  33232. height: math.unit(5 + 10/12, "feet"),
  33233. name: "Front",
  33234. image: {
  33235. source: "./media/characters/argon/front.svg",
  33236. extra: 2009/1935,
  33237. bottom: 118/2127
  33238. }
  33239. },
  33240. back: {
  33241. height: math.unit(5 + 10/12, "feet"),
  33242. name: "Back",
  33243. image: {
  33244. source: "./media/characters/argon/back.svg",
  33245. extra: 2047/1992,
  33246. bottom: 20/2067
  33247. }
  33248. },
  33249. frontDressed: {
  33250. height: math.unit(5 + 10/12, "feet"),
  33251. name: "Front (Dressed)",
  33252. image: {
  33253. source: "./media/characters/argon/front-dressed.svg",
  33254. extra: 2009/1935,
  33255. bottom: 118/2127
  33256. }
  33257. },
  33258. },
  33259. [
  33260. {
  33261. name: "Normal",
  33262. height: math.unit(5 + 10/12, "feet"),
  33263. default: true
  33264. },
  33265. ]
  33266. ))
  33267. characterMakers.push(() => makeCharacter(
  33268. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33269. {
  33270. front: {
  33271. height: math.unit(8 + 6/12, "feet"),
  33272. weight: math.unit(1150, "lb"),
  33273. name: "Front",
  33274. image: {
  33275. source: "./media/characters/kichi/front.svg",
  33276. extra: 1267/1164,
  33277. bottom: 61/1328
  33278. }
  33279. },
  33280. back: {
  33281. height: math.unit(8 + 6/12, "feet"),
  33282. weight: math.unit(1150, "lb"),
  33283. name: "Back",
  33284. image: {
  33285. source: "./media/characters/kichi/back.svg",
  33286. extra: 1273/1166,
  33287. bottom: 33/1306
  33288. }
  33289. },
  33290. },
  33291. [
  33292. {
  33293. name: "Normal",
  33294. height: math.unit(8 + 6/12, "feet"),
  33295. default: true
  33296. },
  33297. ]
  33298. ))
  33299. characterMakers.push(() => makeCharacter(
  33300. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33301. {
  33302. front: {
  33303. height: math.unit(6, "feet"),
  33304. weight: math.unit(210, "lb"),
  33305. name: "Front",
  33306. image: {
  33307. source: "./media/characters/manetel-greyscale/front.svg",
  33308. extra: 350/312,
  33309. bottom: 8/358
  33310. }
  33311. },
  33312. },
  33313. [
  33314. {
  33315. name: "Micro",
  33316. height: math.unit(2, "inches")
  33317. },
  33318. {
  33319. name: "Normal",
  33320. height: math.unit(6, "feet"),
  33321. default: true
  33322. },
  33323. {
  33324. name: "Minimacro",
  33325. height: math.unit(17, "feet")
  33326. },
  33327. {
  33328. name: "Macro",
  33329. height: math.unit(117, "feet")
  33330. },
  33331. ]
  33332. ))
  33333. characterMakers.push(() => makeCharacter(
  33334. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33335. {
  33336. side: {
  33337. height: math.unit(5 + 1/12, "feet"),
  33338. weight: math.unit(418, "lb"),
  33339. name: "Side",
  33340. image: {
  33341. source: "./media/characters/softpurr/side.svg",
  33342. extra: 1993/1945,
  33343. bottom: 134/2127
  33344. }
  33345. },
  33346. front: {
  33347. height: math.unit(5 + 1/12, "feet"),
  33348. weight: math.unit(418, "lb"),
  33349. name: "Front",
  33350. image: {
  33351. source: "./media/characters/softpurr/front.svg",
  33352. extra: 1950/1856,
  33353. bottom: 174/2124
  33354. }
  33355. },
  33356. paw: {
  33357. height: math.unit(1, "feet"),
  33358. name: "Paw",
  33359. image: {
  33360. source: "./media/characters/softpurr/paw.svg"
  33361. }
  33362. },
  33363. },
  33364. [
  33365. {
  33366. name: "Normal",
  33367. height: math.unit(5 + 1/12, "feet"),
  33368. default: true
  33369. },
  33370. ]
  33371. ))
  33372. characterMakers.push(() => makeCharacter(
  33373. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33374. {
  33375. front: {
  33376. height: math.unit(260, "meters"),
  33377. name: "Front",
  33378. image: {
  33379. source: "./media/characters/anahita/front.svg",
  33380. extra: 665/635,
  33381. bottom: 89/754
  33382. }
  33383. },
  33384. },
  33385. [
  33386. {
  33387. name: "Macro",
  33388. height: math.unit(260, "meters"),
  33389. default: true
  33390. },
  33391. ]
  33392. ))
  33393. characterMakers.push(() => makeCharacter(
  33394. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33395. {
  33396. front: {
  33397. height: math.unit(4 + 10/12, "feet"),
  33398. weight: math.unit(160, "lb"),
  33399. name: "Front",
  33400. image: {
  33401. source: "./media/characters/chip-mouse/front.svg",
  33402. extra: 3528/3408,
  33403. bottom: 0/3528
  33404. }
  33405. },
  33406. frontNsfw: {
  33407. height: math.unit(4 + 10/12, "feet"),
  33408. weight: math.unit(160, "lb"),
  33409. name: "Front (NSFW)",
  33410. image: {
  33411. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33412. extra: 3528/3408,
  33413. bottom: 0/3528
  33414. }
  33415. },
  33416. },
  33417. [
  33418. {
  33419. name: "Normal",
  33420. height: math.unit(4 + 10/12, "feet"),
  33421. default: true
  33422. },
  33423. ]
  33424. ))
  33425. characterMakers.push(() => makeCharacter(
  33426. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33427. {
  33428. side: {
  33429. height: math.unit(10, "feet"),
  33430. weight: math.unit(14000, "lb"),
  33431. name: "Side",
  33432. image: {
  33433. source: "./media/characters/kremm/side.svg",
  33434. extra: 1390/1053,
  33435. bottom: 90/1480
  33436. }
  33437. },
  33438. gut: {
  33439. height: math.unit(5.8, "feet"),
  33440. name: "Gut",
  33441. image: {
  33442. source: "./media/characters/kremm/gut.svg"
  33443. }
  33444. },
  33445. ass: {
  33446. height: math.unit(6.1, "feet"),
  33447. name: "Ass",
  33448. image: {
  33449. source: "./media/characters/kremm/ass.svg"
  33450. }
  33451. },
  33452. jaws: {
  33453. height: math.unit(2.2, "feet"),
  33454. name: "Jaws",
  33455. image: {
  33456. source: "./media/characters/kremm/jaws.svg"
  33457. }
  33458. },
  33459. dick: {
  33460. height: math.unit(4.26, "feet"),
  33461. name: "Dick",
  33462. image: {
  33463. source: "./media/characters/kremm/dick.svg"
  33464. }
  33465. },
  33466. },
  33467. [
  33468. {
  33469. name: "Normal",
  33470. height: math.unit(10, "feet"),
  33471. default: true
  33472. },
  33473. ]
  33474. ))
  33475. characterMakers.push(() => makeCharacter(
  33476. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33477. {
  33478. front: {
  33479. height: math.unit(30, "stories"),
  33480. name: "Front",
  33481. image: {
  33482. source: "./media/characters/kai/front.svg",
  33483. extra: 1892/1718,
  33484. bottom: 162/2054
  33485. }
  33486. },
  33487. },
  33488. [
  33489. {
  33490. name: "Macro",
  33491. height: math.unit(30, "stories"),
  33492. default: true
  33493. },
  33494. ]
  33495. ))
  33496. characterMakers.push(() => makeCharacter(
  33497. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33498. {
  33499. front: {
  33500. height: math.unit(6 + 4/12, "feet"),
  33501. weight: math.unit(145, "lb"),
  33502. name: "Front",
  33503. image: {
  33504. source: "./media/characters/sykes/front.svg",
  33505. extra: 1321 / 1187,
  33506. bottom: 66 / 1387
  33507. }
  33508. },
  33509. back: {
  33510. height: math.unit(6 + 4/12, "feet"),
  33511. weight: math.unit(145, "lb"),
  33512. name: "Back",
  33513. image: {
  33514. source: "./media/characters/sykes/back.svg",
  33515. extra: 1326/1181,
  33516. bottom: 31/1357
  33517. }
  33518. },
  33519. handBack: {
  33520. height: math.unit(0.9, "feet"),
  33521. name: "Hand (Back)",
  33522. image: {
  33523. source: "./media/characters/sykes/hand-back.svg"
  33524. }
  33525. },
  33526. handFront: {
  33527. height: math.unit(0.839, "feet"),
  33528. name: "Hand (Front)",
  33529. image: {
  33530. source: "./media/characters/sykes/hand-front.svg"
  33531. }
  33532. },
  33533. leftFoot: {
  33534. height: math.unit(1.2, "feet"),
  33535. name: "Foot (Left)",
  33536. image: {
  33537. source: "./media/characters/sykes/foot-left.svg"
  33538. }
  33539. },
  33540. rightFoot: {
  33541. height: math.unit(1.2, "feet"),
  33542. name: "Foot (Right)",
  33543. image: {
  33544. source: "./media/characters/sykes/foot-right.svg"
  33545. }
  33546. },
  33547. maw: {
  33548. height: math.unit(1.93, "feet"),
  33549. name: "Maw",
  33550. image: {
  33551. source: "./media/characters/sykes/maw.svg"
  33552. }
  33553. },
  33554. teeth: {
  33555. height: math.unit(0.51, "feet"),
  33556. name: "Teeth",
  33557. image: {
  33558. source: "./media/characters/sykes/teeth.svg"
  33559. }
  33560. },
  33561. tongue: {
  33562. height: math.unit(2.13, "feet"),
  33563. name: "Tongue",
  33564. image: {
  33565. source: "./media/characters/sykes/tongue.svg"
  33566. }
  33567. },
  33568. uvula: {
  33569. height: math.unit(0.16, "feet"),
  33570. name: "Uvula",
  33571. image: {
  33572. source: "./media/characters/sykes/uvula.svg"
  33573. }
  33574. },
  33575. collar: {
  33576. height: math.unit(0.287, "feet"),
  33577. name: "Collar",
  33578. image: {
  33579. source: "./media/characters/sykes/collar.svg"
  33580. }
  33581. },
  33582. },
  33583. [
  33584. {
  33585. name: "Shrunken",
  33586. height: math.unit(5, "inches")
  33587. },
  33588. {
  33589. name: "Normal",
  33590. height: math.unit(6 + 4 / 12, "feet"),
  33591. default: true
  33592. },
  33593. {
  33594. name: "Big",
  33595. height: math.unit(15, "feet")
  33596. },
  33597. ]
  33598. ))
  33599. characterMakers.push(() => makeCharacter(
  33600. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33601. {
  33602. front: {
  33603. height: math.unit(5 + 8/12, "feet"),
  33604. weight: math.unit(190, "lb"),
  33605. name: "Front",
  33606. image: {
  33607. source: "./media/characters/oven-otter/front.svg",
  33608. extra: 1809/1740,
  33609. bottom: 181/1990
  33610. }
  33611. },
  33612. back: {
  33613. height: math.unit(5 + 8/12, "feet"),
  33614. weight: math.unit(190, "lb"),
  33615. name: "Back",
  33616. image: {
  33617. source: "./media/characters/oven-otter/back.svg",
  33618. extra: 1709/1635,
  33619. bottom: 118/1827
  33620. }
  33621. },
  33622. hand: {
  33623. height: math.unit(1.07, "feet"),
  33624. name: "Hand",
  33625. image: {
  33626. source: "./media/characters/oven-otter/hand.svg"
  33627. }
  33628. },
  33629. beans: {
  33630. height: math.unit(1.74, "feet"),
  33631. name: "Beans",
  33632. image: {
  33633. source: "./media/characters/oven-otter/beans.svg"
  33634. }
  33635. },
  33636. },
  33637. [
  33638. {
  33639. name: "Micro",
  33640. height: math.unit(0.5, "inches")
  33641. },
  33642. {
  33643. name: "Normal",
  33644. height: math.unit(5 + 8/12, "feet"),
  33645. default: true
  33646. },
  33647. {
  33648. name: "Macro",
  33649. height: math.unit(250, "feet")
  33650. },
  33651. {
  33652. name: "Really High",
  33653. height: math.unit(420, "feet")
  33654. },
  33655. ]
  33656. ))
  33657. characterMakers.push(() => makeCharacter(
  33658. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33659. {
  33660. front: {
  33661. height: math.unit(5, "meters"),
  33662. weight: math.unit(292000000000000, "kg"),
  33663. name: "Front",
  33664. image: {
  33665. source: "./media/characters/devourer/front.svg",
  33666. extra: 1800/1733,
  33667. bottom: 211/2011
  33668. }
  33669. },
  33670. maw: {
  33671. height: math.unit(1.1, "meter"),
  33672. name: "Maw",
  33673. image: {
  33674. source: "./media/characters/devourer/maw.svg"
  33675. }
  33676. },
  33677. },
  33678. [
  33679. {
  33680. name: "Small",
  33681. height: math.unit(3, "meters")
  33682. },
  33683. {
  33684. name: "Large",
  33685. height: math.unit(5, "meters"),
  33686. default: true
  33687. },
  33688. ]
  33689. ))
  33690. characterMakers.push(() => makeCharacter(
  33691. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33692. {
  33693. front: {
  33694. height: math.unit(6, "feet"),
  33695. weight: math.unit(400, "lb"),
  33696. name: "Front",
  33697. image: {
  33698. source: "./media/characters/ellarby/front.svg",
  33699. extra: 1909/1763,
  33700. bottom: 80/1989
  33701. }
  33702. },
  33703. back: {
  33704. height: math.unit(6, "feet"),
  33705. weight: math.unit(400, "lb"),
  33706. name: "Back",
  33707. image: {
  33708. source: "./media/characters/ellarby/back.svg",
  33709. extra: 1914/1784,
  33710. bottom: 172/2086
  33711. }
  33712. },
  33713. },
  33714. [
  33715. {
  33716. name: "Mischief",
  33717. height: math.unit(18, "inches")
  33718. },
  33719. {
  33720. name: "Trouble",
  33721. height: math.unit(12, "feet")
  33722. },
  33723. {
  33724. name: "Havoc",
  33725. height: math.unit(200, "feet"),
  33726. default: true
  33727. },
  33728. {
  33729. name: "Pandemonium",
  33730. height: math.unit(1, "mile")
  33731. },
  33732. {
  33733. name: "Catastrophe",
  33734. height: math.unit(100, "miles")
  33735. },
  33736. ]
  33737. ))
  33738. characterMakers.push(() => makeCharacter(
  33739. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33740. {
  33741. front: {
  33742. height: math.unit(4.7, "meters"),
  33743. weight: math.unit(6500, "kg"),
  33744. name: "Front",
  33745. image: {
  33746. source: "./media/characters/vex/front.svg",
  33747. extra: 1288/1140,
  33748. bottom: 100/1388
  33749. }
  33750. },
  33751. },
  33752. [
  33753. {
  33754. name: "Normal",
  33755. height: math.unit(4.7, "meters"),
  33756. default: true
  33757. },
  33758. ]
  33759. ))
  33760. characterMakers.push(() => makeCharacter(
  33761. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33762. {
  33763. normal: {
  33764. height: math.unit(6, "feet"),
  33765. weight: math.unit(350, "lb"),
  33766. name: "Normal",
  33767. image: {
  33768. source: "./media/characters/teshy/normal.svg",
  33769. extra: 1795/1735,
  33770. bottom: 16/1811
  33771. }
  33772. },
  33773. monsterFront: {
  33774. height: math.unit(12, "feet"),
  33775. weight: math.unit(4700, "lb"),
  33776. name: "Monster (Front)",
  33777. image: {
  33778. source: "./media/characters/teshy/monster-front.svg",
  33779. extra: 2042/2034,
  33780. bottom: 128/2170
  33781. }
  33782. },
  33783. monsterSide: {
  33784. height: math.unit(12, "feet"),
  33785. weight: math.unit(4700, "lb"),
  33786. name: "Monster (Side)",
  33787. image: {
  33788. source: "./media/characters/teshy/monster-side.svg",
  33789. extra: 2067/2056,
  33790. bottom: 70/2137
  33791. }
  33792. },
  33793. monsterBack: {
  33794. height: math.unit(12, "feet"),
  33795. weight: math.unit(4700, "lb"),
  33796. name: "Monster (Back)",
  33797. image: {
  33798. source: "./media/characters/teshy/monster-back.svg",
  33799. extra: 1921/1914,
  33800. bottom: 171/2092
  33801. }
  33802. },
  33803. },
  33804. [
  33805. {
  33806. name: "Normal",
  33807. height: math.unit(6, "feet"),
  33808. default: true
  33809. },
  33810. ]
  33811. ))
  33812. characterMakers.push(() => makeCharacter(
  33813. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33814. {
  33815. front: {
  33816. height: math.unit(6, "feet"),
  33817. name: "Front",
  33818. image: {
  33819. source: "./media/characters/ramey/front.svg",
  33820. extra: 790/787,
  33821. bottom: 27/817
  33822. }
  33823. },
  33824. },
  33825. [
  33826. {
  33827. name: "Normal",
  33828. height: math.unit(6, "feet"),
  33829. default: true
  33830. },
  33831. ]
  33832. ))
  33833. characterMakers.push(() => makeCharacter(
  33834. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33835. {
  33836. front: {
  33837. height: math.unit(5 + 5/12, "feet"),
  33838. weight: math.unit(120, "lb"),
  33839. name: "Front",
  33840. image: {
  33841. source: "./media/characters/phirae/front.svg",
  33842. extra: 2491/2436,
  33843. bottom: 38/2529
  33844. }
  33845. },
  33846. },
  33847. [
  33848. {
  33849. name: "Normal",
  33850. height: math.unit(5 + 5/12, "feet"),
  33851. default: true
  33852. },
  33853. ]
  33854. ))
  33855. characterMakers.push(() => makeCharacter(
  33856. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  33857. {
  33858. front: {
  33859. height: math.unit(5 + 3/12, "feet"),
  33860. name: "Front",
  33861. image: {
  33862. source: "./media/characters/stagglas/front.svg",
  33863. extra: 962/882,
  33864. bottom: 53/1015
  33865. }
  33866. },
  33867. feral: {
  33868. height: math.unit(335, "cm"),
  33869. name: "Feral",
  33870. image: {
  33871. source: "./media/characters/stagglas/feral.svg",
  33872. extra: 1732/1090,
  33873. bottom: 48/1780
  33874. }
  33875. },
  33876. },
  33877. [
  33878. {
  33879. name: "Normal",
  33880. height: math.unit(5 + 3/12, "feet"),
  33881. default: true
  33882. },
  33883. ]
  33884. ))
  33885. characterMakers.push(() => makeCharacter(
  33886. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33887. {
  33888. front: {
  33889. height: math.unit(5 + 4/12, "feet"),
  33890. weight: math.unit(145, "lb"),
  33891. name: "Front",
  33892. image: {
  33893. source: "./media/characters/starra/front.svg",
  33894. extra: 1790/1691,
  33895. bottom: 91/1881
  33896. }
  33897. },
  33898. },
  33899. [
  33900. {
  33901. name: "Normal",
  33902. height: math.unit(5 + 4/12, "feet"),
  33903. default: true
  33904. },
  33905. ]
  33906. ))
  33907. characterMakers.push(() => makeCharacter(
  33908. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33909. {
  33910. front: {
  33911. height: math.unit(2.2, "meters"),
  33912. name: "Front",
  33913. image: {
  33914. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33915. extra: 1194/1005,
  33916. bottom: 25/1219
  33917. }
  33918. },
  33919. },
  33920. [
  33921. {
  33922. name: "Normal",
  33923. height: math.unit(2.2, "meters"),
  33924. default: true
  33925. },
  33926. ]
  33927. ))
  33928. characterMakers.push(() => makeCharacter(
  33929. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33930. {
  33931. side: {
  33932. height: math.unit(8 + 2/12, "feet"),
  33933. weight: math.unit(1240, "lb"),
  33934. name: "Side",
  33935. image: {
  33936. source: "./media/characters/mika-valentine/side.svg",
  33937. extra: 2670/2501,
  33938. bottom: 250/2920
  33939. }
  33940. },
  33941. },
  33942. [
  33943. {
  33944. name: "Normal",
  33945. height: math.unit(8 + 2/12, "feet"),
  33946. default: true
  33947. },
  33948. ]
  33949. ))
  33950. characterMakers.push(() => makeCharacter(
  33951. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33952. {
  33953. front: {
  33954. height: math.unit(7 + 2/12, "feet"),
  33955. name: "Front",
  33956. image: {
  33957. source: "./media/characters/xoltol/front.svg",
  33958. extra: 2212/2124,
  33959. bottom: 84/2296
  33960. }
  33961. },
  33962. side: {
  33963. height: math.unit(7 + 2/12, "feet"),
  33964. name: "Side",
  33965. image: {
  33966. source: "./media/characters/xoltol/side.svg",
  33967. extra: 2273/2197,
  33968. bottom: 26/2299
  33969. }
  33970. },
  33971. hand: {
  33972. height: math.unit(2.5, "feet"),
  33973. name: "Hand",
  33974. image: {
  33975. source: "./media/characters/xoltol/hand.svg"
  33976. }
  33977. },
  33978. },
  33979. [
  33980. {
  33981. name: "Small-ish",
  33982. height: math.unit(5 + 11/12, "feet")
  33983. },
  33984. {
  33985. name: "Normal",
  33986. height: math.unit(7 + 2/12, "feet")
  33987. },
  33988. {
  33989. name: "\"Macro\"",
  33990. height: math.unit(14 + 9/12, "feet"),
  33991. default: true
  33992. },
  33993. {
  33994. name: "Alternate Height",
  33995. height: math.unit(20, "feet")
  33996. },
  33997. {
  33998. name: "Actually Macro",
  33999. height: math.unit(100, "feet")
  34000. },
  34001. ]
  34002. ))
  34003. characterMakers.push(() => makeCharacter(
  34004. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34005. {
  34006. front: {
  34007. height: math.unit(5 + 2/12, "feet"),
  34008. name: "Front",
  34009. image: {
  34010. source: "./media/characters/kotetsu-redwood/front.svg",
  34011. extra: 1053/942,
  34012. bottom: 60/1113
  34013. }
  34014. },
  34015. },
  34016. [
  34017. {
  34018. name: "Normal",
  34019. height: math.unit(5 + 2/12, "feet"),
  34020. default: true
  34021. },
  34022. ]
  34023. ))
  34024. characterMakers.push(() => makeCharacter(
  34025. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34026. {
  34027. front: {
  34028. height: math.unit(2.4, "meters"),
  34029. weight: math.unit(125, "kg"),
  34030. name: "Front",
  34031. image: {
  34032. source: "./media/characters/lilith/front.svg",
  34033. extra: 1590/1513,
  34034. bottom: 203/1793
  34035. }
  34036. },
  34037. },
  34038. [
  34039. {
  34040. name: "Humanoid",
  34041. height: math.unit(2.4, "meters")
  34042. },
  34043. {
  34044. name: "Normal",
  34045. height: math.unit(6, "meters"),
  34046. default: true
  34047. },
  34048. {
  34049. name: "Largest",
  34050. height: math.unit(55, "meters")
  34051. },
  34052. ]
  34053. ))
  34054. characterMakers.push(() => makeCharacter(
  34055. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34056. {
  34057. front: {
  34058. height: math.unit(8 + 4/12, "feet"),
  34059. weight: math.unit(535, "lb"),
  34060. name: "Front",
  34061. image: {
  34062. source: "./media/characters/beh'kah-bolger/front.svg",
  34063. extra: 1660/1603,
  34064. bottom: 37/1697
  34065. }
  34066. },
  34067. },
  34068. [
  34069. {
  34070. name: "Normal",
  34071. height: math.unit(8 + 4/12, "feet"),
  34072. default: true
  34073. },
  34074. {
  34075. name: "Kaiju",
  34076. height: math.unit(250, "feet")
  34077. },
  34078. {
  34079. name: "Still Growing",
  34080. height: math.unit(10, "miles")
  34081. },
  34082. {
  34083. name: "Continental",
  34084. height: math.unit(5000, "miles")
  34085. },
  34086. {
  34087. name: "Final Form",
  34088. height: math.unit(2500000, "miles")
  34089. },
  34090. ]
  34091. ))
  34092. characterMakers.push(() => makeCharacter(
  34093. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34094. {
  34095. front: {
  34096. height: math.unit(7 + 2/12, "feet"),
  34097. weight: math.unit(230, "kg"),
  34098. name: "Front",
  34099. image: {
  34100. source: "./media/characters/tatyana-milewska/front.svg",
  34101. extra: 1199/1150,
  34102. bottom: 86/1285
  34103. }
  34104. },
  34105. },
  34106. [
  34107. {
  34108. name: "Normal",
  34109. height: math.unit(7 + 2/12, "feet"),
  34110. default: true
  34111. },
  34112. {
  34113. name: "Big",
  34114. height: math.unit(12, "feet")
  34115. },
  34116. {
  34117. name: "Minimacro",
  34118. height: math.unit(20, "feet")
  34119. },
  34120. {
  34121. name: "Macro",
  34122. height: math.unit(120, "feet")
  34123. },
  34124. ]
  34125. ))
  34126. characterMakers.push(() => makeCharacter(
  34127. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34128. {
  34129. front: {
  34130. height: math.unit(7 + 8/12, "feet"),
  34131. weight: math.unit(152, "kg"),
  34132. name: "Front",
  34133. image: {
  34134. source: "./media/characters/helen-arri/front.svg",
  34135. extra: 440/423,
  34136. bottom: 14/454
  34137. }
  34138. },
  34139. back: {
  34140. height: math.unit(7 + 8/12, "feet"),
  34141. weight: math.unit(152, "kg"),
  34142. name: "Back",
  34143. image: {
  34144. source: "./media/characters/helen-arri/back.svg",
  34145. extra: 443/426,
  34146. bottom: 8/451
  34147. }
  34148. },
  34149. },
  34150. [
  34151. {
  34152. name: "Normal",
  34153. height: math.unit(7 + 8/12, "feet"),
  34154. default: true
  34155. },
  34156. {
  34157. name: "Big",
  34158. height: math.unit(14, "feet")
  34159. },
  34160. {
  34161. name: "Minimacro",
  34162. height: math.unit(24, "feet")
  34163. },
  34164. {
  34165. name: "Macro",
  34166. height: math.unit(140, "feet")
  34167. },
  34168. ]
  34169. ))
  34170. characterMakers.push(() => makeCharacter(
  34171. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34172. {
  34173. front: {
  34174. height: math.unit(6, "meters"),
  34175. name: "Front",
  34176. image: {
  34177. source: "./media/characters/ehanu-rehu/front.svg",
  34178. extra: 1800/1800,
  34179. bottom: 59/1859
  34180. }
  34181. },
  34182. },
  34183. [
  34184. {
  34185. name: "Normal",
  34186. height: math.unit(6, "meters"),
  34187. default: true
  34188. },
  34189. ]
  34190. ))
  34191. characterMakers.push(() => makeCharacter(
  34192. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34193. {
  34194. front: {
  34195. height: math.unit(7 + 3/12, "feet"),
  34196. name: "Front",
  34197. image: {
  34198. source: "./media/characters/renholder/front.svg",
  34199. extra: 3096/2960,
  34200. bottom: 250/3346
  34201. }
  34202. },
  34203. },
  34204. [
  34205. {
  34206. name: "Normal Bat",
  34207. height: math.unit(7 + 3/12, "feet"),
  34208. default: true
  34209. },
  34210. {
  34211. name: "Slightly Tall Bat",
  34212. height: math.unit(100, "feet")
  34213. },
  34214. {
  34215. name: "Big Bat",
  34216. height: math.unit(1000, "feet")
  34217. },
  34218. {
  34219. name: "City-Sized Bat",
  34220. height: math.unit(200000, "feet")
  34221. },
  34222. {
  34223. name: "Bigger Bat",
  34224. height: math.unit(10000, "miles")
  34225. },
  34226. {
  34227. name: "Solar Sized Bat",
  34228. height: math.unit(100, "AU")
  34229. },
  34230. {
  34231. name: "Galactic Bat",
  34232. height: math.unit(200000, "lightyears")
  34233. },
  34234. {
  34235. name: "Universally Known Bat",
  34236. height: math.unit(1, "universe")
  34237. },
  34238. ]
  34239. ))
  34240. characterMakers.push(() => makeCharacter(
  34241. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34242. {
  34243. front: {
  34244. height: math.unit(6 + 11/12, "feet"),
  34245. weight: math.unit(250, "lb"),
  34246. name: "Front",
  34247. image: {
  34248. source: "./media/characters/cookiecat/front.svg",
  34249. extra: 893/827,
  34250. bottom: 14/907
  34251. }
  34252. },
  34253. },
  34254. [
  34255. {
  34256. name: "Micro",
  34257. height: math.unit(3, "inches")
  34258. },
  34259. {
  34260. name: "Normal",
  34261. height: math.unit(6 + 11/12, "feet"),
  34262. default: true
  34263. },
  34264. {
  34265. name: "Macro",
  34266. height: math.unit(100, "feet")
  34267. },
  34268. {
  34269. name: "Macro+",
  34270. height: math.unit(404, "feet")
  34271. },
  34272. {
  34273. name: "Megamacro",
  34274. height: math.unit(165, "miles")
  34275. },
  34276. {
  34277. name: "Planetary",
  34278. height: math.unit(4600, "miles")
  34279. },
  34280. ]
  34281. ))
  34282. characterMakers.push(() => makeCharacter(
  34283. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34284. {
  34285. front: {
  34286. height: math.unit(10 + 3/12, "feet"),
  34287. weight: math.unit(1500, "lb"),
  34288. name: "Front",
  34289. image: {
  34290. source: "./media/characters/tux-kusanagi/front.svg",
  34291. extra: 944/840,
  34292. bottom: 39/983
  34293. }
  34294. },
  34295. back: {
  34296. height: math.unit(10 + 3/12, "feet"),
  34297. weight: math.unit(1500, "lb"),
  34298. name: "Back",
  34299. image: {
  34300. source: "./media/characters/tux-kusanagi/back.svg",
  34301. extra: 941/842,
  34302. bottom: 28/969
  34303. }
  34304. },
  34305. rump: {
  34306. height: math.unit(5.25, "feet"),
  34307. name: "Rump",
  34308. image: {
  34309. source: "./media/characters/tux-kusanagi/rump.svg"
  34310. }
  34311. },
  34312. beak: {
  34313. height: math.unit(1.54, "feet"),
  34314. name: "Beak",
  34315. image: {
  34316. source: "./media/characters/tux-kusanagi/beak.svg"
  34317. }
  34318. },
  34319. },
  34320. [
  34321. {
  34322. name: "Normal",
  34323. height: math.unit(10 + 3/12, "feet"),
  34324. default: true
  34325. },
  34326. ]
  34327. ))
  34328. characterMakers.push(() => makeCharacter(
  34329. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34330. {
  34331. front: {
  34332. height: math.unit(58, "feet"),
  34333. weight: math.unit(200, "tons"),
  34334. name: "Front",
  34335. image: {
  34336. source: "./media/characters/uzarmazari/front.svg",
  34337. extra: 1575/1455,
  34338. bottom: 152/1727
  34339. }
  34340. },
  34341. back: {
  34342. height: math.unit(58, "feet"),
  34343. weight: math.unit(200, "tons"),
  34344. name: "Back",
  34345. image: {
  34346. source: "./media/characters/uzarmazari/back.svg",
  34347. extra: 1585/1510,
  34348. bottom: 157/1742
  34349. }
  34350. },
  34351. head: {
  34352. height: math.unit(26, "feet"),
  34353. name: "Head",
  34354. image: {
  34355. source: "./media/characters/uzarmazari/head.svg"
  34356. }
  34357. },
  34358. },
  34359. [
  34360. {
  34361. name: "Normal",
  34362. height: math.unit(58, "feet"),
  34363. default: true
  34364. },
  34365. ]
  34366. ))
  34367. characterMakers.push(() => makeCharacter(
  34368. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34369. {
  34370. side: {
  34371. height: math.unit(15, "feet"),
  34372. name: "Side",
  34373. image: {
  34374. source: "./media/characters/akitu/side.svg",
  34375. extra: 1421/1321,
  34376. bottom: 157/1578
  34377. }
  34378. },
  34379. front: {
  34380. height: math.unit(15, "feet"),
  34381. name: "Front",
  34382. image: {
  34383. source: "./media/characters/akitu/front.svg",
  34384. extra: 1435/1326,
  34385. bottom: 232/1667
  34386. }
  34387. },
  34388. },
  34389. [
  34390. {
  34391. name: "Normal",
  34392. height: math.unit(15, "feet"),
  34393. default: true
  34394. },
  34395. ]
  34396. ))
  34397. characterMakers.push(() => makeCharacter(
  34398. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34399. {
  34400. front: {
  34401. height: math.unit(10 + 8/12, "feet"),
  34402. name: "Front",
  34403. image: {
  34404. source: "./media/characters/azalie-croixland/front.svg",
  34405. extra: 1972/1856,
  34406. bottom: 31/2003
  34407. }
  34408. },
  34409. },
  34410. [
  34411. {
  34412. name: "Original Height",
  34413. height: math.unit(5 + 4/12, "feet")
  34414. },
  34415. {
  34416. name: "Normal Height",
  34417. height: math.unit(10 + 8/12, "feet"),
  34418. default: true
  34419. },
  34420. ]
  34421. ))
  34422. characterMakers.push(() => makeCharacter(
  34423. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34424. {
  34425. side: {
  34426. height: math.unit(7 + 1/12, "feet"),
  34427. weight: math.unit(245, "lb"),
  34428. name: "Side",
  34429. image: {
  34430. source: "./media/characters/kavus-kazian/side.svg",
  34431. extra: 349/342,
  34432. bottom: 15/364
  34433. }
  34434. },
  34435. },
  34436. [
  34437. {
  34438. name: "Normal",
  34439. height: math.unit(7 + 1/12, "feet"),
  34440. default: true
  34441. },
  34442. ]
  34443. ))
  34444. characterMakers.push(() => makeCharacter(
  34445. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34446. {
  34447. normal: {
  34448. height: math.unit(5 + 11/12, "feet"),
  34449. name: "Normal",
  34450. image: {
  34451. source: "./media/characters/moonlight-rose/normal.svg",
  34452. extra: 1979/1835,
  34453. bottom: 14/1993
  34454. }
  34455. },
  34456. demon: {
  34457. height: math.unit(5, "km"),
  34458. name: "Demon",
  34459. image: {
  34460. source: "./media/characters/moonlight-rose/demon.svg",
  34461. extra: 986/916,
  34462. bottom: 28/1014
  34463. }
  34464. },
  34465. },
  34466. [
  34467. {
  34468. name: "\"Natural\" height",
  34469. height: math.unit(5 + 11/12, "feet")
  34470. },
  34471. {
  34472. name: "Comfortable Size",
  34473. height: math.unit(40, "meters")
  34474. },
  34475. {
  34476. name: "Common Size",
  34477. height: math.unit(50, "km"),
  34478. default: true
  34479. },
  34480. {
  34481. name: "Demonic",
  34482. height: math.unit(1.24415e+21, "meters")
  34483. },
  34484. ]
  34485. ))
  34486. characterMakers.push(() => makeCharacter(
  34487. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34488. {
  34489. front: {
  34490. height: math.unit(16, "feet"),
  34491. weight: math.unit(610, "kg"),
  34492. name: "Front",
  34493. image: {
  34494. source: "./media/characters/huckle/front.svg",
  34495. extra: 1731/1625,
  34496. bottom: 33/1764
  34497. }
  34498. },
  34499. back: {
  34500. height: math.unit(16, "feet"),
  34501. weight: math.unit(610, "kg"),
  34502. name: "Back",
  34503. image: {
  34504. source: "./media/characters/huckle/back.svg",
  34505. extra: 1738/1651,
  34506. bottom: 37/1775
  34507. }
  34508. },
  34509. laughing: {
  34510. height: math.unit(3.75, "feet"),
  34511. name: "Laughing",
  34512. image: {
  34513. source: "./media/characters/huckle/laughing.svg"
  34514. }
  34515. },
  34516. angry: {
  34517. height: math.unit(4.15, "feet"),
  34518. name: "Angry",
  34519. image: {
  34520. source: "./media/characters/huckle/angry.svg"
  34521. }
  34522. },
  34523. },
  34524. [
  34525. {
  34526. name: "Normal",
  34527. height: math.unit(16, "feet"),
  34528. default: true
  34529. },
  34530. {
  34531. name: "Mini Macro",
  34532. height: math.unit(463, "feet")
  34533. },
  34534. {
  34535. name: "Macro",
  34536. height: math.unit(1680, "meters")
  34537. },
  34538. {
  34539. name: "Mega Macro",
  34540. height: math.unit(175, "km")
  34541. },
  34542. {
  34543. name: "Terra Macro",
  34544. height: math.unit(32, "gigameters")
  34545. },
  34546. {
  34547. name: "Multiverse+",
  34548. height: math.unit(2.56e23, "yottameters")
  34549. },
  34550. ]
  34551. ))
  34552. characterMakers.push(() => makeCharacter(
  34553. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34554. {
  34555. front: {
  34556. height: math.unit(6 + 9/12, "feet"),
  34557. weight: math.unit(280, "lb"),
  34558. name: "Front",
  34559. image: {
  34560. source: "./media/characters/candy/front.svg",
  34561. extra: 234/217,
  34562. bottom: 11/245
  34563. }
  34564. },
  34565. },
  34566. [
  34567. {
  34568. name: "Really Small",
  34569. height: math.unit(0.1, "nm")
  34570. },
  34571. {
  34572. name: "Micro",
  34573. height: math.unit(2, "inches")
  34574. },
  34575. {
  34576. name: "Normal",
  34577. height: math.unit(6 + 9/12, "feet"),
  34578. default: true
  34579. },
  34580. {
  34581. name: "Small Macro",
  34582. height: math.unit(69, "feet")
  34583. },
  34584. {
  34585. name: "Macro",
  34586. height: math.unit(160, "feet")
  34587. },
  34588. {
  34589. name: "Megamacro",
  34590. height: math.unit(22000, "miles")
  34591. },
  34592. {
  34593. name: "Gigamacro",
  34594. height: math.unit(50000, "miles")
  34595. },
  34596. ]
  34597. ))
  34598. characterMakers.push(() => makeCharacter(
  34599. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34600. {
  34601. front: {
  34602. height: math.unit(4, "feet"),
  34603. weight: math.unit(90, "lb"),
  34604. name: "Front",
  34605. image: {
  34606. source: "./media/characters/joey-mcdonald/front.svg",
  34607. extra: 1059/852,
  34608. bottom: 33/1092
  34609. }
  34610. },
  34611. back: {
  34612. height: math.unit(4, "feet"),
  34613. weight: math.unit(90, "lb"),
  34614. name: "Back",
  34615. image: {
  34616. source: "./media/characters/joey-mcdonald/back.svg",
  34617. extra: 1077/879,
  34618. bottom: 5/1082
  34619. }
  34620. },
  34621. frontKobold: {
  34622. height: math.unit(4, "feet"),
  34623. weight: math.unit(100, "lb"),
  34624. name: "Front-kobold",
  34625. image: {
  34626. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34627. extra: 1480/1367,
  34628. bottom: 0/1480
  34629. }
  34630. },
  34631. backKobold: {
  34632. height: math.unit(4, "feet"),
  34633. weight: math.unit(100, "lb"),
  34634. name: "Back-kobold",
  34635. image: {
  34636. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34637. extra: 1449/1361,
  34638. bottom: 0/1449
  34639. }
  34640. },
  34641. },
  34642. [
  34643. {
  34644. name: "Normal",
  34645. height: math.unit(4, "feet"),
  34646. default: true
  34647. },
  34648. ]
  34649. ))
  34650. characterMakers.push(() => makeCharacter(
  34651. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34652. {
  34653. front: {
  34654. height: math.unit(12 + 6/12, "feet"),
  34655. name: "Front",
  34656. image: {
  34657. source: "./media/characters/kass-lockheed/front.svg",
  34658. extra: 354/343,
  34659. bottom: 9/363
  34660. }
  34661. },
  34662. back: {
  34663. height: math.unit(12 + 6/12, "feet"),
  34664. name: "Back",
  34665. image: {
  34666. source: "./media/characters/kass-lockheed/back.svg",
  34667. extra: 364/352,
  34668. bottom: 3/367
  34669. }
  34670. },
  34671. dick: {
  34672. height: math.unit(3.12, "feet"),
  34673. name: "Dick",
  34674. image: {
  34675. source: "./media/characters/kass-lockheed/dick.svg"
  34676. }
  34677. },
  34678. head: {
  34679. height: math.unit(2.6, "feet"),
  34680. name: "Head",
  34681. image: {
  34682. source: "./media/characters/kass-lockheed/head.svg"
  34683. }
  34684. },
  34685. bleh: {
  34686. height: math.unit(2.85, "feet"),
  34687. name: "Bleh",
  34688. image: {
  34689. source: "./media/characters/kass-lockheed/bleh.svg"
  34690. }
  34691. },
  34692. smug: {
  34693. height: math.unit(2.85, "feet"),
  34694. name: "Smug",
  34695. image: {
  34696. source: "./media/characters/kass-lockheed/smug.svg"
  34697. }
  34698. },
  34699. },
  34700. [
  34701. {
  34702. name: "Normal",
  34703. height: math.unit(12 + 6/12, "feet"),
  34704. default: true
  34705. },
  34706. ]
  34707. ))
  34708. characterMakers.push(() => makeCharacter(
  34709. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34710. {
  34711. front: {
  34712. height: math.unit(6 + 2/12, "feet"),
  34713. name: "Front",
  34714. image: {
  34715. source: "./media/characters/taylor/front.svg",
  34716. extra: 639/495,
  34717. bottom: 12/651
  34718. }
  34719. },
  34720. },
  34721. [
  34722. {
  34723. name: "Normal",
  34724. height: math.unit(6 + 2/12, "feet"),
  34725. default: true
  34726. },
  34727. {
  34728. name: "Big",
  34729. height: math.unit(15, "feet")
  34730. },
  34731. {
  34732. name: "Lorg",
  34733. height: math.unit(80, "feet")
  34734. },
  34735. {
  34736. name: "Too Lorg",
  34737. height: math.unit(120, "feet")
  34738. },
  34739. ]
  34740. ))
  34741. characterMakers.push(() => makeCharacter(
  34742. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34743. {
  34744. front: {
  34745. height: math.unit(15, "feet"),
  34746. name: "Front",
  34747. image: {
  34748. source: "./media/characters/kaizer/front.svg",
  34749. extra: 1612/1436,
  34750. bottom: 43/1655
  34751. }
  34752. },
  34753. },
  34754. [
  34755. {
  34756. name: "Normal",
  34757. height: math.unit(15, "feet"),
  34758. default: true
  34759. },
  34760. ]
  34761. ))
  34762. characterMakers.push(() => makeCharacter(
  34763. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34764. {
  34765. front: {
  34766. height: math.unit(2, "feet"),
  34767. weight: math.unit(30, "lb"),
  34768. name: "Front",
  34769. image: {
  34770. source: "./media/characters/sandy/front.svg",
  34771. extra: 1439/1307,
  34772. bottom: 194/1633
  34773. }
  34774. },
  34775. },
  34776. [
  34777. {
  34778. name: "Normal",
  34779. height: math.unit(2, "feet"),
  34780. default: true
  34781. },
  34782. ]
  34783. ))
  34784. characterMakers.push(() => makeCharacter(
  34785. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34786. {
  34787. front: {
  34788. height: math.unit(3, "feet"),
  34789. name: "Front",
  34790. image: {
  34791. source: "./media/characters/mellvi/front.svg",
  34792. extra: 1831/1630,
  34793. bottom: 58/1889
  34794. }
  34795. },
  34796. },
  34797. [
  34798. {
  34799. name: "Normal",
  34800. height: math.unit(3, "feet"),
  34801. default: true
  34802. },
  34803. ]
  34804. ))
  34805. characterMakers.push(() => makeCharacter(
  34806. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34807. {
  34808. front: {
  34809. height: math.unit(5 + 11/12, "feet"),
  34810. weight: math.unit(200, "lb"),
  34811. name: "Front",
  34812. image: {
  34813. source: "./media/characters/shirou/front.svg",
  34814. extra: 2491/2383,
  34815. bottom: 189/2680
  34816. }
  34817. },
  34818. back: {
  34819. height: math.unit(5 + 11/12, "feet"),
  34820. weight: math.unit(200, "lb"),
  34821. name: "Back",
  34822. image: {
  34823. source: "./media/characters/shirou/back.svg",
  34824. extra: 2554/2450,
  34825. bottom: 76/2630
  34826. }
  34827. },
  34828. },
  34829. [
  34830. {
  34831. name: "Normal",
  34832. height: math.unit(5 + 11/12, "feet"),
  34833. default: true
  34834. },
  34835. ]
  34836. ))
  34837. characterMakers.push(() => makeCharacter(
  34838. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34839. {
  34840. front: {
  34841. height: math.unit(6 + 3/12, "feet"),
  34842. weight: math.unit(177, "lb"),
  34843. name: "Front",
  34844. image: {
  34845. source: "./media/characters/noryu/front.svg",
  34846. extra: 973/885,
  34847. bottom: 10/983
  34848. }
  34849. },
  34850. },
  34851. [
  34852. {
  34853. name: "Normal",
  34854. height: math.unit(6 + 3/12, "feet"),
  34855. default: true
  34856. },
  34857. ]
  34858. ))
  34859. characterMakers.push(() => makeCharacter(
  34860. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34861. {
  34862. front: {
  34863. height: math.unit(5 + 6/12, "feet"),
  34864. weight: math.unit(170, "lb"),
  34865. name: "Front",
  34866. image: {
  34867. source: "./media/characters/mevolas-rubenido/front.svg",
  34868. extra: 2109/1901,
  34869. bottom: 96/2205
  34870. }
  34871. },
  34872. },
  34873. [
  34874. {
  34875. name: "Normal",
  34876. height: math.unit(5 + 6/12, "feet"),
  34877. default: true
  34878. },
  34879. ]
  34880. ))
  34881. characterMakers.push(() => makeCharacter(
  34882. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34883. {
  34884. front: {
  34885. height: math.unit(100, "feet"),
  34886. name: "Front",
  34887. image: {
  34888. source: "./media/characters/dee/front.svg",
  34889. extra: 2153/2036,
  34890. bottom: 59/2212
  34891. }
  34892. },
  34893. back: {
  34894. height: math.unit(100, "feet"),
  34895. name: "Back",
  34896. image: {
  34897. source: "./media/characters/dee/back.svg",
  34898. extra: 2183/2058,
  34899. bottom: 75/2258
  34900. }
  34901. },
  34902. foot: {
  34903. height: math.unit(19.43, "feet"),
  34904. name: "Foot",
  34905. image: {
  34906. source: "./media/characters/dee/foot.svg"
  34907. }
  34908. },
  34909. hoof: {
  34910. height: math.unit(20.6, "feet"),
  34911. name: "Hoof",
  34912. image: {
  34913. source: "./media/characters/dee/hoof.svg"
  34914. }
  34915. },
  34916. },
  34917. [
  34918. {
  34919. name: "Macro",
  34920. height: math.unit(100, "feet"),
  34921. default: true
  34922. },
  34923. ]
  34924. ))
  34925. characterMakers.push(() => makeCharacter(
  34926. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34927. {
  34928. front: {
  34929. height: math.unit(5 + 6/12, "feet"),
  34930. name: "Front",
  34931. image: {
  34932. source: "./media/characters/teh/front.svg",
  34933. extra: 1002/847,
  34934. bottom: 62/1064
  34935. }
  34936. },
  34937. },
  34938. [
  34939. {
  34940. name: "Normal",
  34941. height: math.unit(5 + 6/12, "feet"),
  34942. default: true
  34943. },
  34944. ]
  34945. ))
  34946. characterMakers.push(() => makeCharacter(
  34947. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34948. {
  34949. side: {
  34950. height: math.unit(6 + 1/12, "feet"),
  34951. weight: math.unit(204, "lb"),
  34952. name: "Side",
  34953. image: {
  34954. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34955. extra: 974/775,
  34956. bottom: 169/1143
  34957. }
  34958. },
  34959. sitting: {
  34960. height: math.unit(6 + 2/12, "feet"),
  34961. weight: math.unit(204, "lb"),
  34962. name: "Sitting",
  34963. image: {
  34964. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34965. extra: 1175/964,
  34966. bottom: 378/1553
  34967. }
  34968. },
  34969. },
  34970. [
  34971. {
  34972. name: "Normal",
  34973. height: math.unit(6 + 1/12, "feet"),
  34974. default: true
  34975. },
  34976. ]
  34977. ))
  34978. characterMakers.push(() => makeCharacter(
  34979. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34980. {
  34981. front: {
  34982. height: math.unit(6, "inches"),
  34983. name: "Front",
  34984. image: {
  34985. source: "./media/characters/tululi/front.svg",
  34986. extra: 1997/1876,
  34987. bottom: 20/2017
  34988. }
  34989. },
  34990. },
  34991. [
  34992. {
  34993. name: "Normal",
  34994. height: math.unit(6, "inches"),
  34995. default: true
  34996. },
  34997. ]
  34998. ))
  34999. characterMakers.push(() => makeCharacter(
  35000. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35001. {
  35002. front: {
  35003. height: math.unit(4 + 1/12, "feet"),
  35004. name: "Front",
  35005. image: {
  35006. source: "./media/characters/star/front.svg",
  35007. extra: 1493/1189,
  35008. bottom: 48/1541
  35009. }
  35010. },
  35011. },
  35012. [
  35013. {
  35014. name: "Normal",
  35015. height: math.unit(4 + 1/12, "feet"),
  35016. default: true
  35017. },
  35018. ]
  35019. ))
  35020. characterMakers.push(() => makeCharacter(
  35021. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35022. {
  35023. front: {
  35024. height: math.unit(6 + 3/12, "feet"),
  35025. name: "Front",
  35026. image: {
  35027. source: "./media/characters/comet/front.svg",
  35028. extra: 1681/1462,
  35029. bottom: 26/1707
  35030. }
  35031. },
  35032. },
  35033. [
  35034. {
  35035. name: "Normal",
  35036. height: math.unit(6 + 3/12, "feet"),
  35037. default: true
  35038. },
  35039. ]
  35040. ))
  35041. characterMakers.push(() => makeCharacter(
  35042. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35043. {
  35044. front: {
  35045. height: math.unit(950, "feet"),
  35046. name: "Front",
  35047. image: {
  35048. source: "./media/characters/vortex/front.svg",
  35049. extra: 1497/1434,
  35050. bottom: 56/1553
  35051. }
  35052. },
  35053. maw: {
  35054. height: math.unit(285, "feet"),
  35055. name: "Maw",
  35056. image: {
  35057. source: "./media/characters/vortex/maw.svg"
  35058. }
  35059. },
  35060. },
  35061. [
  35062. {
  35063. name: "Macro",
  35064. height: math.unit(950, "feet"),
  35065. default: true
  35066. },
  35067. ]
  35068. ))
  35069. characterMakers.push(() => makeCharacter(
  35070. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35071. {
  35072. front: {
  35073. height: math.unit(600, "feet"),
  35074. weight: math.unit(0.02, "grams"),
  35075. name: "Front",
  35076. image: {
  35077. source: "./media/characters/doodle/front.svg",
  35078. extra: 1578/1413,
  35079. bottom: 37/1615
  35080. }
  35081. },
  35082. },
  35083. [
  35084. {
  35085. name: "Macro",
  35086. height: math.unit(600, "feet"),
  35087. default: true
  35088. },
  35089. ]
  35090. ))
  35091. characterMakers.push(() => makeCharacter(
  35092. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35093. {
  35094. front: {
  35095. height: math.unit(6 + 6/12, "feet"),
  35096. name: "Front",
  35097. image: {
  35098. source: "./media/characters/jai/front.svg",
  35099. extra: 1645/1534,
  35100. bottom: 115/1760
  35101. }
  35102. },
  35103. },
  35104. [
  35105. {
  35106. name: "Normal",
  35107. height: math.unit(6 + 6/12, "feet"),
  35108. default: true
  35109. },
  35110. ]
  35111. ))
  35112. characterMakers.push(() => makeCharacter(
  35113. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35114. {
  35115. front: {
  35116. height: math.unit(6 + 8/12, "feet"),
  35117. name: "Front",
  35118. image: {
  35119. source: "./media/characters/pixel/front.svg",
  35120. extra: 1900/1735,
  35121. bottom: 63/1963
  35122. }
  35123. },
  35124. },
  35125. [
  35126. {
  35127. name: "Normal",
  35128. height: math.unit(6 + 8/12, "feet"),
  35129. default: true
  35130. },
  35131. ]
  35132. ))
  35133. characterMakers.push(() => makeCharacter(
  35134. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35135. {
  35136. front: {
  35137. height: math.unit(4 + 11/12, "feet"),
  35138. weight: math.unit(111, "lb"),
  35139. name: "Front",
  35140. image: {
  35141. source: "./media/characters/rhett/front.svg",
  35142. extra: 1682/1586,
  35143. bottom: 92/1774
  35144. }
  35145. },
  35146. },
  35147. [
  35148. {
  35149. name: "Mini",
  35150. height: math.unit(1 + 1/12, "feet")
  35151. },
  35152. {
  35153. name: "Normal",
  35154. height: math.unit(4 + 11/12, "feet"),
  35155. default: true
  35156. },
  35157. ]
  35158. ))
  35159. characterMakers.push(() => makeCharacter(
  35160. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35161. {
  35162. front: {
  35163. height: math.unit(3 + 3/12, "feet"),
  35164. name: "Front",
  35165. image: {
  35166. source: "./media/characters/penny/front.svg",
  35167. extra: 1406/1311,
  35168. bottom: 26/1432
  35169. }
  35170. },
  35171. },
  35172. [
  35173. {
  35174. name: "Normal",
  35175. height: math.unit(3 + 3/12, "feet"),
  35176. default: true
  35177. },
  35178. ]
  35179. ))
  35180. characterMakers.push(() => makeCharacter(
  35181. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35182. {
  35183. front: {
  35184. height: math.unit(4 + 11/12, "feet"),
  35185. name: "Front",
  35186. image: {
  35187. source: "./media/characters/monty/front.svg",
  35188. extra: 1479/1209,
  35189. bottom: 0/1479
  35190. }
  35191. },
  35192. },
  35193. [
  35194. {
  35195. name: "Normal",
  35196. height: math.unit(4 + 11/12, "feet"),
  35197. default: true
  35198. },
  35199. ]
  35200. ))
  35201. characterMakers.push(() => makeCharacter(
  35202. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35203. {
  35204. front: {
  35205. height: math.unit(8 + 4/12, "feet"),
  35206. name: "Front",
  35207. image: {
  35208. source: "./media/characters/sterling/front.svg",
  35209. extra: 1420/1236,
  35210. bottom: 27/1447
  35211. }
  35212. },
  35213. },
  35214. [
  35215. {
  35216. name: "Normal",
  35217. height: math.unit(8 + 4/12, "feet"),
  35218. default: true
  35219. },
  35220. ]
  35221. ))
  35222. characterMakers.push(() => makeCharacter(
  35223. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35224. {
  35225. front: {
  35226. height: math.unit(15, "feet"),
  35227. name: "Front",
  35228. image: {
  35229. source: "./media/characters/marble/front.svg",
  35230. extra: 973/937,
  35231. bottom: 32/1005
  35232. }
  35233. },
  35234. },
  35235. [
  35236. {
  35237. name: "Normal",
  35238. height: math.unit(15, "feet"),
  35239. default: true
  35240. },
  35241. ]
  35242. ))
  35243. characterMakers.push(() => makeCharacter(
  35244. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35245. {
  35246. front: {
  35247. height: math.unit(3, "inches"),
  35248. name: "Front",
  35249. image: {
  35250. source: "./media/characters/powder/front.svg",
  35251. extra: 1504/1334,
  35252. bottom: 518/2022
  35253. }
  35254. },
  35255. },
  35256. [
  35257. {
  35258. name: "Normal",
  35259. height: math.unit(3, "inches"),
  35260. default: true
  35261. },
  35262. ]
  35263. ))
  35264. characterMakers.push(() => makeCharacter(
  35265. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35266. {
  35267. front: {
  35268. height: math.unit(4 + 5/12, "feet"),
  35269. name: "Front",
  35270. image: {
  35271. source: "./media/characters/joey-raccoon/front.svg",
  35272. extra: 1273/1197,
  35273. bottom: 0/1273
  35274. }
  35275. },
  35276. },
  35277. [
  35278. {
  35279. name: "Normal",
  35280. height: math.unit(4 + 5/12, "feet"),
  35281. default: true
  35282. },
  35283. ]
  35284. ))
  35285. characterMakers.push(() => makeCharacter(
  35286. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35287. {
  35288. front: {
  35289. height: math.unit(8 + 4/12, "feet"),
  35290. name: "Front",
  35291. image: {
  35292. source: "./media/characters/vick/front.svg",
  35293. extra: 2187/2118,
  35294. bottom: 47/2234
  35295. }
  35296. },
  35297. },
  35298. [
  35299. {
  35300. name: "Normal",
  35301. height: math.unit(8 + 4/12, "feet"),
  35302. default: true
  35303. },
  35304. ]
  35305. ))
  35306. characterMakers.push(() => makeCharacter(
  35307. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35308. {
  35309. front: {
  35310. height: math.unit(5 + 5/12, "feet"),
  35311. name: "Front",
  35312. image: {
  35313. source: "./media/characters/mitsy/front.svg",
  35314. extra: 1842/1695,
  35315. bottom: 0/1842
  35316. }
  35317. },
  35318. },
  35319. [
  35320. {
  35321. name: "Normal",
  35322. height: math.unit(5 + 5/12, "feet"),
  35323. default: true
  35324. },
  35325. ]
  35326. ))
  35327. characterMakers.push(() => makeCharacter(
  35328. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35329. {
  35330. front: {
  35331. height: math.unit(6 + 3/12, "feet"),
  35332. name: "Front",
  35333. image: {
  35334. source: "./media/characters/silvy/front.svg",
  35335. extra: 1995/1836,
  35336. bottom: 225/2220
  35337. }
  35338. },
  35339. },
  35340. [
  35341. {
  35342. name: "Normal",
  35343. height: math.unit(6 + 3/12, "feet"),
  35344. default: true
  35345. },
  35346. ]
  35347. ))
  35348. characterMakers.push(() => makeCharacter(
  35349. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35350. {
  35351. front: {
  35352. height: math.unit(3 + 8/12, "feet"),
  35353. name: "Front",
  35354. image: {
  35355. source: "./media/characters/rodney/front.svg",
  35356. extra: 1956/1747,
  35357. bottom: 31/1987
  35358. }
  35359. },
  35360. frontDressed: {
  35361. height: math.unit(2.9, "feet"),
  35362. name: "Front (Dressed)",
  35363. image: {
  35364. source: "./media/characters/rodney/front-dressed.svg",
  35365. extra: 1382/1241,
  35366. bottom: 385/1767
  35367. }
  35368. },
  35369. },
  35370. [
  35371. {
  35372. name: "Normal",
  35373. height: math.unit(3 + 8/12, "feet"),
  35374. default: true
  35375. },
  35376. ]
  35377. ))
  35378. characterMakers.push(() => makeCharacter(
  35379. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35380. {
  35381. front: {
  35382. height: math.unit(5 + 9/12, "feet"),
  35383. weight: math.unit(194, "lbs"),
  35384. name: "Front",
  35385. image: {
  35386. source: "./media/characters/zakail-sudekai/front.svg",
  35387. extra: 2696/2533,
  35388. bottom: 248/2944
  35389. }
  35390. },
  35391. maw: {
  35392. height: math.unit(1.35, "feet"),
  35393. name: "Maw",
  35394. image: {
  35395. source: "./media/characters/zakail-sudekai/maw.svg"
  35396. }
  35397. },
  35398. },
  35399. [
  35400. {
  35401. name: "Normal",
  35402. height: math.unit(5 + 9/12, "feet"),
  35403. default: true
  35404. },
  35405. ]
  35406. ))
  35407. characterMakers.push(() => makeCharacter(
  35408. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35409. {
  35410. front: {
  35411. height: math.unit(8 + 4/12, "feet"),
  35412. weight: math.unit(1200, "lb"),
  35413. name: "Front",
  35414. image: {
  35415. source: "./media/characters/eleanor/front.svg",
  35416. extra: 1226/1192,
  35417. bottom: 52/1278
  35418. }
  35419. },
  35420. back: {
  35421. height: math.unit(8 + 4/12, "feet"),
  35422. weight: math.unit(1200, "lb"),
  35423. name: "Back",
  35424. image: {
  35425. source: "./media/characters/eleanor/back.svg",
  35426. extra: 1242/1184,
  35427. bottom: 60/1302
  35428. }
  35429. },
  35430. head: {
  35431. height: math.unit(2.62, "feet"),
  35432. name: "Head",
  35433. image: {
  35434. source: "./media/characters/eleanor/head.svg"
  35435. }
  35436. },
  35437. },
  35438. [
  35439. {
  35440. name: "Normal",
  35441. height: math.unit(8 + 4/12, "feet"),
  35442. default: true
  35443. },
  35444. ]
  35445. ))
  35446. characterMakers.push(() => makeCharacter(
  35447. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35448. {
  35449. front: {
  35450. height: math.unit(8 + 4/12, "feet"),
  35451. weight: math.unit(750, "lb"),
  35452. name: "Front",
  35453. image: {
  35454. source: "./media/characters/tanya/front.svg",
  35455. extra: 1749/1615,
  35456. bottom: 33/1782
  35457. }
  35458. },
  35459. },
  35460. [
  35461. {
  35462. name: "Normal",
  35463. height: math.unit(8 + 4/12, "feet"),
  35464. default: true
  35465. },
  35466. ]
  35467. ))
  35468. characterMakers.push(() => makeCharacter(
  35469. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35470. {
  35471. front: {
  35472. height: math.unit(5, "feet"),
  35473. weight: math.unit(225, "lb"),
  35474. name: "Front",
  35475. image: {
  35476. source: "./media/characters/cindy/front.svg",
  35477. extra: 1320/1250,
  35478. bottom: 42/1362
  35479. }
  35480. },
  35481. frontDressed: {
  35482. height: math.unit(5, "feet"),
  35483. weight: math.unit(225, "lb"),
  35484. name: "Front (Dressed)",
  35485. image: {
  35486. source: "./media/characters/cindy/front-dressed.svg",
  35487. extra: 1320/1250,
  35488. bottom: 42/1362
  35489. }
  35490. },
  35491. back: {
  35492. height: math.unit(5, "feet"),
  35493. weight: math.unit(225, "lb"),
  35494. name: "Back",
  35495. image: {
  35496. source: "./media/characters/cindy/back.svg",
  35497. extra: 1384/1346,
  35498. bottom: 14/1398
  35499. }
  35500. },
  35501. },
  35502. [
  35503. {
  35504. name: "Normal",
  35505. height: math.unit(5, "feet"),
  35506. default: true
  35507. },
  35508. ]
  35509. ))
  35510. characterMakers.push(() => makeCharacter(
  35511. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35512. {
  35513. front: {
  35514. height: math.unit(6 + 9/12, "feet"),
  35515. weight: math.unit(440, "lb"),
  35516. name: "Front",
  35517. image: {
  35518. source: "./media/characters/wilbur-owen/front.svg",
  35519. extra: 1575/1448,
  35520. bottom: 72/1647
  35521. }
  35522. },
  35523. back: {
  35524. height: math.unit(6 + 9/12, "feet"),
  35525. weight: math.unit(440, "lb"),
  35526. name: "Back",
  35527. image: {
  35528. source: "./media/characters/wilbur-owen/back.svg",
  35529. extra: 1578/1445,
  35530. bottom: 36/1614
  35531. }
  35532. },
  35533. },
  35534. [
  35535. {
  35536. name: "Normal",
  35537. height: math.unit(6 + 9/12, "feet"),
  35538. default: true
  35539. },
  35540. ]
  35541. ))
  35542. characterMakers.push(() => makeCharacter(
  35543. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35544. {
  35545. front: {
  35546. height: math.unit(6 + 5/12, "feet"),
  35547. weight: math.unit(650, "lb"),
  35548. name: "Front",
  35549. image: {
  35550. source: "./media/characters/keegan/front.svg",
  35551. extra: 2387/2198,
  35552. bottom: 33/2420
  35553. }
  35554. },
  35555. side: {
  35556. height: math.unit(6 + 5/12, "feet"),
  35557. weight: math.unit(650, "lb"),
  35558. name: "Side",
  35559. image: {
  35560. source: "./media/characters/keegan/side.svg",
  35561. extra: 2390/2202,
  35562. bottom: 47/2437
  35563. }
  35564. },
  35565. back: {
  35566. height: math.unit(6 + 5/12, "feet"),
  35567. weight: math.unit(650, "lb"),
  35568. name: "Back",
  35569. image: {
  35570. source: "./media/characters/keegan/back.svg",
  35571. extra: 2418/2268,
  35572. bottom: 15/2433
  35573. }
  35574. },
  35575. frontSfw: {
  35576. height: math.unit(6 + 5/12, "feet"),
  35577. weight: math.unit(650, "lb"),
  35578. name: "Front (SFW)",
  35579. image: {
  35580. source: "./media/characters/keegan/front-sfw.svg",
  35581. extra: 2387/2198,
  35582. bottom: 33/2420
  35583. }
  35584. },
  35585. beans: {
  35586. height: math.unit(1.85, "feet"),
  35587. name: "Beans",
  35588. image: {
  35589. source: "./media/characters/keegan/beans.svg"
  35590. }
  35591. },
  35592. },
  35593. [
  35594. {
  35595. name: "Normal",
  35596. height: math.unit(6 + 5/12, "feet"),
  35597. default: true
  35598. },
  35599. ]
  35600. ))
  35601. characterMakers.push(() => makeCharacter(
  35602. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35603. {
  35604. front: {
  35605. height: math.unit(9, "feet"),
  35606. name: "Front",
  35607. image: {
  35608. source: "./media/characters/colton/front.svg",
  35609. extra: 1589/1326,
  35610. bottom: 139/1728
  35611. }
  35612. },
  35613. },
  35614. [
  35615. {
  35616. name: "Normal",
  35617. height: math.unit(9, "feet"),
  35618. default: true
  35619. },
  35620. ]
  35621. ))
  35622. characterMakers.push(() => makeCharacter(
  35623. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35624. {
  35625. front: {
  35626. height: math.unit(2 + 9/12, "feet"),
  35627. name: "Front",
  35628. image: {
  35629. source: "./media/characters/bora/front.svg",
  35630. extra: 1265/1250,
  35631. bottom: 24/1289
  35632. }
  35633. },
  35634. },
  35635. [
  35636. {
  35637. name: "Normal",
  35638. height: math.unit(2 + 9/12, "feet"),
  35639. default: true
  35640. },
  35641. ]
  35642. ))
  35643. characterMakers.push(() => makeCharacter(
  35644. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35645. {
  35646. front: {
  35647. height: math.unit(8, "feet"),
  35648. name: "Front",
  35649. image: {
  35650. source: "./media/characters/myu-myu/front.svg",
  35651. extra: 1949/1857,
  35652. bottom: 90/2039
  35653. }
  35654. },
  35655. },
  35656. [
  35657. {
  35658. name: "Normal",
  35659. height: math.unit(8, "feet"),
  35660. default: true
  35661. },
  35662. {
  35663. name: "Big",
  35664. height: math.unit(15, "feet")
  35665. },
  35666. {
  35667. name: "BIG",
  35668. height: math.unit(25, "feet")
  35669. },
  35670. ]
  35671. ))
  35672. characterMakers.push(() => makeCharacter(
  35673. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35674. {
  35675. side: {
  35676. height: math.unit(7 + 5/12, "feet"),
  35677. weight: math.unit(2800, "lb"),
  35678. name: "Side",
  35679. image: {
  35680. source: "./media/characters/haloren/side.svg",
  35681. extra: 1793/409,
  35682. bottom: 59/1852
  35683. }
  35684. },
  35685. frontPaw: {
  35686. height: math.unit(2.36, "feet"),
  35687. name: "Front paw",
  35688. image: {
  35689. source: "./media/characters/haloren/front-paw.svg"
  35690. }
  35691. },
  35692. hindPaw: {
  35693. height: math.unit(3.18, "feet"),
  35694. name: "Hind paw",
  35695. image: {
  35696. source: "./media/characters/haloren/hind-paw.svg"
  35697. }
  35698. },
  35699. maw: {
  35700. height: math.unit(5.05, "feet"),
  35701. name: "Maw",
  35702. image: {
  35703. source: "./media/characters/haloren/maw.svg"
  35704. }
  35705. },
  35706. dick: {
  35707. height: math.unit(2.90, "feet"),
  35708. name: "Dick",
  35709. image: {
  35710. source: "./media/characters/haloren/dick.svg"
  35711. }
  35712. },
  35713. },
  35714. [
  35715. {
  35716. name: "Normal",
  35717. height: math.unit(7 + 5/12, "feet"),
  35718. default: true
  35719. },
  35720. {
  35721. name: "Enhanced",
  35722. height: math.unit(14 + 3/12, "feet")
  35723. },
  35724. ]
  35725. ))
  35726. characterMakers.push(() => makeCharacter(
  35727. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35728. {
  35729. front: {
  35730. height: math.unit(171, "cm"),
  35731. name: "Front",
  35732. image: {
  35733. source: "./media/characters/kimmy/front.svg",
  35734. extra: 1491/1435,
  35735. bottom: 53/1544
  35736. }
  35737. },
  35738. },
  35739. [
  35740. {
  35741. name: "Small",
  35742. height: math.unit(9, "cm")
  35743. },
  35744. {
  35745. name: "Normal",
  35746. height: math.unit(171, "cm"),
  35747. default: true
  35748. },
  35749. ]
  35750. ))
  35751. characterMakers.push(() => makeCharacter(
  35752. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35753. {
  35754. front: {
  35755. height: math.unit(8, "feet"),
  35756. weight: math.unit(300, "lb"),
  35757. name: "Front",
  35758. image: {
  35759. source: "./media/characters/galeboomer/front.svg",
  35760. extra: 4651/4415,
  35761. bottom: 162/4813
  35762. }
  35763. },
  35764. back: {
  35765. height: math.unit(8, "feet"),
  35766. weight: math.unit(300, "lb"),
  35767. name: "Back",
  35768. image: {
  35769. source: "./media/characters/galeboomer/back.svg",
  35770. extra: 4544/4314,
  35771. bottom: 16/4560
  35772. }
  35773. },
  35774. frontAlt: {
  35775. height: math.unit(8, "feet"),
  35776. weight: math.unit(300, "lb"),
  35777. name: "Front (Alt)",
  35778. image: {
  35779. source: "./media/characters/galeboomer/front-alt.svg",
  35780. extra: 4458/4228,
  35781. bottom: 68/4526
  35782. }
  35783. },
  35784. maw: {
  35785. height: math.unit(1.2, "feet"),
  35786. name: "Maw",
  35787. image: {
  35788. source: "./media/characters/galeboomer/maw.svg"
  35789. }
  35790. },
  35791. },
  35792. [
  35793. {
  35794. name: "Normal",
  35795. height: math.unit(8, "feet"),
  35796. default: true
  35797. },
  35798. ]
  35799. ))
  35800. characterMakers.push(() => makeCharacter(
  35801. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35802. {
  35803. front: {
  35804. height: math.unit(5 + 9/12, "feet"),
  35805. weight: math.unit(120, "lb"),
  35806. name: "Front",
  35807. image: {
  35808. source: "./media/characters/chyr/front.svg",
  35809. extra: 1323/1254,
  35810. bottom: 63/1386
  35811. }
  35812. },
  35813. back: {
  35814. height: math.unit(5 + 9/12, "feet"),
  35815. weight: math.unit(120, "lb"),
  35816. name: "Back",
  35817. image: {
  35818. source: "./media/characters/chyr/back.svg",
  35819. extra: 1323/1252,
  35820. bottom: 48/1371
  35821. }
  35822. },
  35823. },
  35824. [
  35825. {
  35826. name: "Normal",
  35827. height: math.unit(5 + 9/12, "feet"),
  35828. default: true
  35829. },
  35830. ]
  35831. ))
  35832. characterMakers.push(() => makeCharacter(
  35833. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35834. {
  35835. front: {
  35836. height: math.unit(7, "feet"),
  35837. weight: math.unit(310, "lb"),
  35838. name: "Front",
  35839. image: {
  35840. source: "./media/characters/solarus/front.svg",
  35841. extra: 2415/2021,
  35842. bottom: 103/2518
  35843. }
  35844. },
  35845. back: {
  35846. height: math.unit(7, "feet"),
  35847. weight: math.unit(310, "lb"),
  35848. name: "Back",
  35849. image: {
  35850. source: "./media/characters/solarus/back.svg",
  35851. extra: 2463/2089,
  35852. bottom: 79/2542
  35853. }
  35854. },
  35855. },
  35856. [
  35857. {
  35858. name: "Normal",
  35859. height: math.unit(7, "feet"),
  35860. default: true
  35861. },
  35862. ]
  35863. ))
  35864. characterMakers.push(() => makeCharacter(
  35865. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35866. {
  35867. front: {
  35868. height: math.unit(16, "feet"),
  35869. name: "Front",
  35870. image: {
  35871. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35872. extra: 1844/1780,
  35873. bottom: 58/1902
  35874. }
  35875. },
  35876. winterCoat: {
  35877. height: math.unit(16, "feet"),
  35878. name: "Winter Coat",
  35879. image: {
  35880. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35881. extra: 1807/1775,
  35882. bottom: 69/1876
  35883. }
  35884. },
  35885. },
  35886. [
  35887. {
  35888. name: "Normal",
  35889. height: math.unit(16, "feet"),
  35890. default: true
  35891. },
  35892. {
  35893. name: "Chicago Size",
  35894. height: math.unit(560, "feet")
  35895. },
  35896. ]
  35897. ))
  35898. characterMakers.push(() => makeCharacter(
  35899. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35900. {
  35901. front: {
  35902. height: math.unit(11 + 6/12, "feet"),
  35903. weight: math.unit(1366, "lb"),
  35904. name: "Front",
  35905. image: {
  35906. source: "./media/characters/lexor/front.svg",
  35907. extra: 1560/1481,
  35908. bottom: 211/1771
  35909. }
  35910. },
  35911. back: {
  35912. height: math.unit(11 + 6/12, "feet"),
  35913. weight: math.unit(1366, "lb"),
  35914. name: "Back",
  35915. image: {
  35916. source: "./media/characters/lexor/back.svg",
  35917. extra: 1614/1533,
  35918. bottom: 76/1690
  35919. }
  35920. },
  35921. maw: {
  35922. height: math.unit(3, "feet"),
  35923. name: "Maw",
  35924. image: {
  35925. source: "./media/characters/lexor/maw.svg"
  35926. }
  35927. },
  35928. dick: {
  35929. height: math.unit(2.59, "feet"),
  35930. name: "Dick",
  35931. image: {
  35932. source: "./media/characters/lexor/dick.svg"
  35933. }
  35934. },
  35935. },
  35936. [
  35937. {
  35938. name: "Normal",
  35939. height: math.unit(11 + 6/12, "feet"),
  35940. default: true
  35941. },
  35942. ]
  35943. ))
  35944. characterMakers.push(() => makeCharacter(
  35945. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35946. {
  35947. front: {
  35948. height: math.unit(5 + 8/12, "feet"),
  35949. name: "Front",
  35950. image: {
  35951. source: "./media/characters/magnum/front.svg",
  35952. extra: 942/855,
  35953. bottom: 26/968
  35954. }
  35955. },
  35956. },
  35957. [
  35958. {
  35959. name: "Normal",
  35960. height: math.unit(5 + 8/12, "feet"),
  35961. default: true
  35962. },
  35963. ]
  35964. ))
  35965. characterMakers.push(() => makeCharacter(
  35966. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35967. {
  35968. front: {
  35969. height: math.unit(18 + 4/12, "feet"),
  35970. weight: math.unit(1500, "kg"),
  35971. name: "Front",
  35972. image: {
  35973. source: "./media/characters/solas-sharpsman/front.svg",
  35974. extra: 1698/1589,
  35975. bottom: 0/1698
  35976. }
  35977. },
  35978. },
  35979. [
  35980. {
  35981. name: "Normal",
  35982. height: math.unit(18 + 4/12, "feet"),
  35983. default: true
  35984. },
  35985. ]
  35986. ))
  35987. characterMakers.push(() => makeCharacter(
  35988. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35989. {
  35990. front: {
  35991. height: math.unit(5 + 5/12, "feet"),
  35992. weight: math.unit(180, "lb"),
  35993. name: "Front",
  35994. image: {
  35995. source: "./media/characters/october/front.svg",
  35996. extra: 1800/1650,
  35997. bottom: 0/1800
  35998. }
  35999. },
  36000. frontNsfw: {
  36001. height: math.unit(5 + 5/12, "feet"),
  36002. weight: math.unit(180, "lb"),
  36003. name: "Front (NSFW)",
  36004. image: {
  36005. source: "./media/characters/october/front-nsfw.svg",
  36006. extra: 1392/1307,
  36007. bottom: 42/1434
  36008. }
  36009. },
  36010. },
  36011. [
  36012. {
  36013. name: "Normal",
  36014. height: math.unit(5 + 5/12, "feet"),
  36015. default: true
  36016. },
  36017. ]
  36018. ))
  36019. characterMakers.push(() => makeCharacter(
  36020. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36021. {
  36022. front: {
  36023. height: math.unit(8 + 6/12, "feet"),
  36024. name: "Front",
  36025. image: {
  36026. source: "./media/characters/essynkardi/front.svg",
  36027. extra: 1914/1846,
  36028. bottom: 22/1936
  36029. }
  36030. },
  36031. },
  36032. [
  36033. {
  36034. name: "Normal",
  36035. height: math.unit(8 + 6/12, "feet"),
  36036. default: true
  36037. },
  36038. ]
  36039. ))
  36040. characterMakers.push(() => makeCharacter(
  36041. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36042. {
  36043. front: {
  36044. height: math.unit(6 + 6/12, "feet"),
  36045. weight: math.unit(7, "lb"),
  36046. name: "Front",
  36047. image: {
  36048. source: "./media/characters/icky/front.svg",
  36049. extra: 813/782,
  36050. bottom: 66/879
  36051. }
  36052. },
  36053. back: {
  36054. height: math.unit(6 + 6/12, "feet"),
  36055. weight: math.unit(7, "lb"),
  36056. name: "Back",
  36057. image: {
  36058. source: "./media/characters/icky/back.svg",
  36059. extra: 754/735,
  36060. bottom: 56/810
  36061. }
  36062. },
  36063. },
  36064. [
  36065. {
  36066. name: "Normal",
  36067. height: math.unit(6 + 6/12, "feet"),
  36068. default: true
  36069. },
  36070. ]
  36071. ))
  36072. characterMakers.push(() => makeCharacter(
  36073. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36074. {
  36075. front: {
  36076. height: math.unit(15, "feet"),
  36077. name: "Front",
  36078. image: {
  36079. source: "./media/characters/rojas/front.svg",
  36080. extra: 1462/1408,
  36081. bottom: 95/1557
  36082. }
  36083. },
  36084. back: {
  36085. height: math.unit(15, "feet"),
  36086. name: "Back",
  36087. image: {
  36088. source: "./media/characters/rojas/back.svg",
  36089. extra: 1023/954,
  36090. bottom: 28/1051
  36091. }
  36092. },
  36093. },
  36094. [
  36095. {
  36096. name: "Normal",
  36097. height: math.unit(15, "feet"),
  36098. default: true
  36099. },
  36100. ]
  36101. ))
  36102. characterMakers.push(() => makeCharacter(
  36103. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36104. {
  36105. frontHuman: {
  36106. height: math.unit(5 + 7/12, "feet"),
  36107. name: "Front (Human)",
  36108. image: {
  36109. source: "./media/characters/alek-dryagan/front-human.svg",
  36110. extra: 1687/1667,
  36111. bottom: 69/1756
  36112. }
  36113. },
  36114. backHuman: {
  36115. height: math.unit(5 + 7/12, "feet"),
  36116. name: "Back (Human)",
  36117. image: {
  36118. source: "./media/characters/alek-dryagan/back-human.svg",
  36119. extra: 1670/1649,
  36120. bottom: 65/1735
  36121. }
  36122. },
  36123. frontDemi: {
  36124. height: math.unit(65, "feet"),
  36125. name: "Front (Demi)",
  36126. image: {
  36127. source: "./media/characters/alek-dryagan/front-demi.svg",
  36128. extra: 1669/1642,
  36129. bottom: 49/1718
  36130. }
  36131. },
  36132. backDemi: {
  36133. height: math.unit(65, "feet"),
  36134. name: "Back (Demi)",
  36135. image: {
  36136. source: "./media/characters/alek-dryagan/back-demi.svg",
  36137. extra: 1658/1637,
  36138. bottom: 40/1698
  36139. }
  36140. },
  36141. mawHuman: {
  36142. height: math.unit(0.3, "feet"),
  36143. name: "Maw (Human)",
  36144. image: {
  36145. source: "./media/characters/alek-dryagan/maw-human.svg"
  36146. }
  36147. },
  36148. mawDemi: {
  36149. height: math.unit(3.8, "feet"),
  36150. name: "Maw (Demi)",
  36151. image: {
  36152. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36153. }
  36154. },
  36155. },
  36156. [
  36157. {
  36158. name: "Normal",
  36159. height: math.unit(5 + 7/12, "feet"),
  36160. default: true
  36161. },
  36162. ]
  36163. ))
  36164. characterMakers.push(() => makeCharacter(
  36165. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36166. {
  36167. frontHuman: {
  36168. height: math.unit(5 + 2/12, "feet"),
  36169. name: "Front (Human)",
  36170. image: {
  36171. source: "./media/characters/gen/front-human.svg",
  36172. extra: 1627/1538,
  36173. bottom: 71/1698
  36174. }
  36175. },
  36176. backHuman: {
  36177. height: math.unit(5 + 2/12, "feet"),
  36178. name: "Back (Human)",
  36179. image: {
  36180. source: "./media/characters/gen/back-human.svg",
  36181. extra: 1638/1548,
  36182. bottom: 69/1707
  36183. }
  36184. },
  36185. frontDemi: {
  36186. height: math.unit(5 + 2/12, "feet"),
  36187. name: "Front (Demi)",
  36188. image: {
  36189. source: "./media/characters/gen/front-demi.svg",
  36190. extra: 1627/1538,
  36191. bottom: 71/1698
  36192. }
  36193. },
  36194. backDemi: {
  36195. height: math.unit(5 + 2/12, "feet"),
  36196. name: "Back (Demi)",
  36197. image: {
  36198. source: "./media/characters/gen/back-demi.svg",
  36199. extra: 1638/1548,
  36200. bottom: 69/1707
  36201. }
  36202. },
  36203. },
  36204. [
  36205. {
  36206. name: "Normal",
  36207. height: math.unit(5 + 2/12, "feet"),
  36208. default: true
  36209. },
  36210. ]
  36211. ))
  36212. characterMakers.push(() => makeCharacter(
  36213. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36214. {
  36215. frontImp: {
  36216. height: math.unit(1 + 11/12, "feet"),
  36217. name: "Front (Imp)",
  36218. image: {
  36219. source: "./media/characters/max-kobold/front-imp.svg",
  36220. extra: 1238/1134,
  36221. bottom: 81/1319
  36222. }
  36223. },
  36224. backImp: {
  36225. height: math.unit(1 + 11/12, "feet"),
  36226. name: "Back (Imp)",
  36227. image: {
  36228. source: "./media/characters/max-kobold/back-imp.svg",
  36229. extra: 1334/1175,
  36230. bottom: 34/1368
  36231. }
  36232. },
  36233. frontDemi: {
  36234. height: math.unit(5 + 9/12, "feet"),
  36235. name: "Front (Demi)",
  36236. image: {
  36237. source: "./media/characters/max-kobold/front-demi.svg",
  36238. extra: 1715/1685,
  36239. bottom: 54/1769
  36240. }
  36241. },
  36242. backDemi: {
  36243. height: math.unit(5 + 9/12, "feet"),
  36244. name: "Back (Demi)",
  36245. image: {
  36246. source: "./media/characters/max-kobold/back-demi.svg",
  36247. extra: 1752/1729,
  36248. bottom: 41/1793
  36249. }
  36250. },
  36251. handImp: {
  36252. height: math.unit(0.45, "feet"),
  36253. name: "Hand (Imp)",
  36254. image: {
  36255. source: "./media/characters/max-kobold/hand.svg"
  36256. }
  36257. },
  36258. pawImp: {
  36259. height: math.unit(0.46, "feet"),
  36260. name: "Paw (Imp)",
  36261. image: {
  36262. source: "./media/characters/max-kobold/paw.svg"
  36263. }
  36264. },
  36265. handDemi: {
  36266. height: math.unit(0.80, "feet"),
  36267. name: "Hand (Demi)",
  36268. image: {
  36269. source: "./media/characters/max-kobold/hand.svg"
  36270. }
  36271. },
  36272. pawDemi: {
  36273. height: math.unit(1.1, "feet"),
  36274. name: "Paw (Demi)",
  36275. image: {
  36276. source: "./media/characters/max-kobold/paw.svg"
  36277. }
  36278. },
  36279. headImp: {
  36280. height: math.unit(1.33, "feet"),
  36281. name: "Head (Imp)",
  36282. image: {
  36283. source: "./media/characters/max-kobold/head-imp.svg"
  36284. }
  36285. },
  36286. mawImp: {
  36287. height: math.unit(0.75, "feet"),
  36288. name: "Maw (Imp)",
  36289. image: {
  36290. source: "./media/characters/max-kobold/maw-imp.svg"
  36291. }
  36292. },
  36293. mawDemi: {
  36294. height: math.unit(0.42, "feet"),
  36295. name: "Maw (Demi)",
  36296. image: {
  36297. source: "./media/characters/max-kobold/maw-demi.svg"
  36298. }
  36299. },
  36300. },
  36301. [
  36302. {
  36303. name: "Normal",
  36304. height: math.unit(1 + 11/12, "feet"),
  36305. default: true
  36306. },
  36307. ]
  36308. ))
  36309. characterMakers.push(() => makeCharacter(
  36310. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36311. {
  36312. front: {
  36313. height: math.unit(7 + 5/12, "feet"),
  36314. name: "Front",
  36315. image: {
  36316. source: "./media/characters/carbon/front.svg",
  36317. extra: 1754/1689,
  36318. bottom: 65/1819
  36319. }
  36320. },
  36321. back: {
  36322. height: math.unit(7 + 5/12, "feet"),
  36323. name: "Back",
  36324. image: {
  36325. source: "./media/characters/carbon/back.svg",
  36326. extra: 1762/1695,
  36327. bottom: 24/1786
  36328. }
  36329. },
  36330. frontGigantamax: {
  36331. height: math.unit(150, "feet"),
  36332. name: "Front (Gigantamax)",
  36333. image: {
  36334. source: "./media/characters/carbon/front-gigantamax.svg",
  36335. extra: 1826/1669,
  36336. bottom: 59/1885
  36337. }
  36338. },
  36339. backGigantamax: {
  36340. height: math.unit(150, "feet"),
  36341. name: "Back (Gigantamax)",
  36342. image: {
  36343. source: "./media/characters/carbon/back-gigantamax.svg",
  36344. extra: 1796/1653,
  36345. bottom: 53/1849
  36346. }
  36347. },
  36348. maw: {
  36349. height: math.unit(0.48, "feet"),
  36350. name: "Maw",
  36351. image: {
  36352. source: "./media/characters/carbon/maw.svg"
  36353. }
  36354. },
  36355. mawGigantamax: {
  36356. height: math.unit(7.5, "feet"),
  36357. name: "Maw (Gigantamax)",
  36358. image: {
  36359. source: "./media/characters/carbon/maw-gigantamax.svg"
  36360. }
  36361. },
  36362. },
  36363. [
  36364. {
  36365. name: "Normal",
  36366. height: math.unit(7 + 5/12, "feet"),
  36367. default: true
  36368. },
  36369. ]
  36370. ))
  36371. characterMakers.push(() => makeCharacter(
  36372. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36373. {
  36374. front: {
  36375. height: math.unit(6, "feet"),
  36376. name: "Front",
  36377. image: {
  36378. source: "./media/characters/maverick/front.svg",
  36379. extra: 1672/1661,
  36380. bottom: 85/1757
  36381. }
  36382. },
  36383. back: {
  36384. height: math.unit(6, "feet"),
  36385. name: "Back",
  36386. image: {
  36387. source: "./media/characters/maverick/back.svg",
  36388. extra: 1642/1631,
  36389. bottom: 38/1680
  36390. }
  36391. },
  36392. },
  36393. [
  36394. {
  36395. name: "Normal",
  36396. height: math.unit(6, "feet"),
  36397. default: true
  36398. },
  36399. ]
  36400. ))
  36401. characterMakers.push(() => makeCharacter(
  36402. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36403. {
  36404. front: {
  36405. height: math.unit(15, "feet"),
  36406. weight: math.unit(615, "lb"),
  36407. name: "Front",
  36408. image: {
  36409. source: "./media/characters/grockle/front.svg",
  36410. extra: 1535/1427,
  36411. bottom: 56/1591
  36412. }
  36413. },
  36414. },
  36415. [
  36416. {
  36417. name: "Normal",
  36418. height: math.unit(15, "feet"),
  36419. default: true
  36420. },
  36421. {
  36422. name: "Large",
  36423. height: math.unit(150, "feet")
  36424. },
  36425. {
  36426. name: "Macro",
  36427. height: math.unit(1876, "feet")
  36428. },
  36429. {
  36430. name: "Mega Macro",
  36431. height: math.unit(121940, "feet")
  36432. },
  36433. {
  36434. name: "Giga Macro",
  36435. height: math.unit(750, "km")
  36436. },
  36437. {
  36438. name: "Tera Macro",
  36439. height: math.unit(750000, "km")
  36440. },
  36441. {
  36442. name: "Galactic",
  36443. height: math.unit(1.4e5, "km")
  36444. },
  36445. {
  36446. name: "Godlike",
  36447. height: math.unit(9.8e280, "galaxies")
  36448. },
  36449. ]
  36450. ))
  36451. characterMakers.push(() => makeCharacter(
  36452. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36453. {
  36454. front: {
  36455. height: math.unit(11, "meters"),
  36456. weight: math.unit(20, "tonnes"),
  36457. name: "Front",
  36458. image: {
  36459. source: "./media/characters/alistair/front.svg",
  36460. extra: 1265/1009,
  36461. bottom: 93/1358
  36462. }
  36463. },
  36464. },
  36465. [
  36466. {
  36467. name: "Normal",
  36468. height: math.unit(11, "meters"),
  36469. default: true
  36470. },
  36471. ]
  36472. ))
  36473. characterMakers.push(() => makeCharacter(
  36474. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36475. {
  36476. front: {
  36477. height: math.unit(5 + 8/12, "feet"),
  36478. name: "Front",
  36479. image: {
  36480. source: "./media/characters/haruka/front.svg",
  36481. extra: 2012/1952,
  36482. bottom: 0/2012
  36483. }
  36484. },
  36485. },
  36486. [
  36487. {
  36488. name: "Normal",
  36489. height: math.unit(5 + 8/12, "feet"),
  36490. default: true
  36491. },
  36492. ]
  36493. ))
  36494. characterMakers.push(() => makeCharacter(
  36495. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36496. {
  36497. back: {
  36498. height: math.unit(9, "feet"),
  36499. name: "Back",
  36500. image: {
  36501. source: "./media/characters/vivian-sylveon/back.svg",
  36502. extra: 1853/1714,
  36503. bottom: 0/1853
  36504. }
  36505. },
  36506. },
  36507. [
  36508. {
  36509. name: "Normal",
  36510. height: math.unit(9, "feet"),
  36511. default: true
  36512. },
  36513. {
  36514. name: "Macro",
  36515. height: math.unit(500, "feet")
  36516. },
  36517. {
  36518. name: "Megamacro",
  36519. height: math.unit(600, "miles")
  36520. },
  36521. {
  36522. name: "Gigamacro",
  36523. height: math.unit(30000, "miles")
  36524. },
  36525. ]
  36526. ))
  36527. characterMakers.push(() => makeCharacter(
  36528. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36529. {
  36530. anthro: {
  36531. height: math.unit(5 + 10/12, "feet"),
  36532. weight: math.unit(100, "lb"),
  36533. name: "Anthro",
  36534. image: {
  36535. source: "./media/characters/daiki/anthro.svg",
  36536. extra: 1115/1027,
  36537. bottom: 69/1184
  36538. }
  36539. },
  36540. feral: {
  36541. height: math.unit(200, "feet"),
  36542. name: "Feral",
  36543. image: {
  36544. source: "./media/characters/daiki/feral.svg",
  36545. extra: 1256/313,
  36546. bottom: 39/1295
  36547. }
  36548. },
  36549. feralHead: {
  36550. height: math.unit(171, "feet"),
  36551. name: "Feral Head",
  36552. image: {
  36553. source: "./media/characters/daiki/feral-head.svg"
  36554. }
  36555. },
  36556. manaDragon: {
  36557. height: math.unit(170, "meters"),
  36558. name: "Mana-dragon",
  36559. image: {
  36560. source: "./media/characters/daiki/mana-dragon.svg",
  36561. extra: 763/420,
  36562. bottom: 97/860
  36563. }
  36564. },
  36565. },
  36566. [
  36567. {
  36568. name: "Normal",
  36569. height: math.unit(5 + 10/12, "feet"),
  36570. default: true
  36571. },
  36572. ]
  36573. ))
  36574. characterMakers.push(() => makeCharacter(
  36575. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36576. {
  36577. fullyEquippedFront: {
  36578. height: math.unit(3 + 1/12, "feet"),
  36579. weight: math.unit(24, "lb"),
  36580. name: "Fully Equipped (Front)",
  36581. image: {
  36582. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36583. extra: 687/605,
  36584. bottom: 18/705
  36585. }
  36586. },
  36587. fullyEquippedBack: {
  36588. height: math.unit(3 + 1/12, "feet"),
  36589. weight: math.unit(24, "lb"),
  36590. name: "Fully Equipped (Back)",
  36591. image: {
  36592. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36593. extra: 689/590,
  36594. bottom: 18/707
  36595. }
  36596. },
  36597. dailyWear: {
  36598. height: math.unit(3 + 1/12, "feet"),
  36599. weight: math.unit(24, "lb"),
  36600. name: "Daily Wear",
  36601. image: {
  36602. source: "./media/characters/tea-spot/daily-wear.svg",
  36603. extra: 701/620,
  36604. bottom: 21/722
  36605. }
  36606. },
  36607. maidWork: {
  36608. height: math.unit(3 + 1/12, "feet"),
  36609. weight: math.unit(24, "lb"),
  36610. name: "Maid Work",
  36611. image: {
  36612. source: "./media/characters/tea-spot/maid-work.svg",
  36613. extra: 693/609,
  36614. bottom: 15/708
  36615. }
  36616. },
  36617. },
  36618. [
  36619. {
  36620. name: "Normal",
  36621. height: math.unit(3 + 1/12, "feet"),
  36622. default: true
  36623. },
  36624. ]
  36625. ))
  36626. characterMakers.push(() => makeCharacter(
  36627. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36628. {
  36629. front: {
  36630. height: math.unit(175, "cm"),
  36631. weight: math.unit(75, "kg"),
  36632. name: "Front",
  36633. image: {
  36634. source: "./media/characters/chee/front.svg",
  36635. extra: 1796/1740,
  36636. bottom: 40/1836
  36637. }
  36638. },
  36639. },
  36640. [
  36641. {
  36642. name: "Micro-Micro",
  36643. height: math.unit(1, "nm")
  36644. },
  36645. {
  36646. name: "Micro-erst",
  36647. height: math.unit(1, "micrometer")
  36648. },
  36649. {
  36650. name: "Micro-er",
  36651. height: math.unit(1, "cm")
  36652. },
  36653. {
  36654. name: "Normal",
  36655. height: math.unit(175, "cm"),
  36656. default: true
  36657. },
  36658. {
  36659. name: "Macro",
  36660. height: math.unit(100, "m")
  36661. },
  36662. {
  36663. name: "Macro-er",
  36664. height: math.unit(1, "km")
  36665. },
  36666. {
  36667. name: "Macro-erst",
  36668. height: math.unit(10, "km")
  36669. },
  36670. {
  36671. name: "Macro-Macro",
  36672. height: math.unit(100, "km")
  36673. },
  36674. ]
  36675. ))
  36676. characterMakers.push(() => makeCharacter(
  36677. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36678. {
  36679. front: {
  36680. height: math.unit(11 + 9/12, "feet"),
  36681. weight: math.unit(935, "lb"),
  36682. name: "Front",
  36683. image: {
  36684. source: "./media/characters/kingsley/front.svg",
  36685. extra: 1803/1674,
  36686. bottom: 127/1930
  36687. }
  36688. },
  36689. frontNude: {
  36690. height: math.unit(11 + 9/12, "feet"),
  36691. weight: math.unit(935, "lb"),
  36692. name: "Front (Nude)",
  36693. image: {
  36694. source: "./media/characters/kingsley/front-nude.svg",
  36695. extra: 1803/1674,
  36696. bottom: 127/1930
  36697. }
  36698. },
  36699. },
  36700. [
  36701. {
  36702. name: "Normal",
  36703. height: math.unit(11 + 9/12, "feet"),
  36704. default: true
  36705. },
  36706. ]
  36707. ))
  36708. characterMakers.push(() => makeCharacter(
  36709. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36710. {
  36711. side: {
  36712. height: math.unit(9, "feet"),
  36713. name: "Side",
  36714. image: {
  36715. source: "./media/characters/rymel/side.svg",
  36716. extra: 792/469,
  36717. bottom: 121/913
  36718. }
  36719. },
  36720. maw: {
  36721. height: math.unit(2.4, "meters"),
  36722. name: "Maw",
  36723. image: {
  36724. source: "./media/characters/rymel/maw.svg"
  36725. }
  36726. },
  36727. },
  36728. [
  36729. {
  36730. name: "House Drake",
  36731. height: math.unit(2, "feet")
  36732. },
  36733. {
  36734. name: "Reduced",
  36735. height: math.unit(4.5, "feet")
  36736. },
  36737. {
  36738. name: "Normal",
  36739. height: math.unit(9, "feet"),
  36740. default: true
  36741. },
  36742. ]
  36743. ))
  36744. characterMakers.push(() => makeCharacter(
  36745. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36746. {
  36747. front: {
  36748. height: math.unit(1.74, "meters"),
  36749. weight: math.unit(55, "kg"),
  36750. name: "Front",
  36751. image: {
  36752. source: "./media/characters/rubus/front.svg",
  36753. extra: 1894/1742,
  36754. bottom: 44/1938
  36755. }
  36756. },
  36757. },
  36758. [
  36759. {
  36760. name: "Normal",
  36761. height: math.unit(1.74, "meters"),
  36762. default: true
  36763. },
  36764. ]
  36765. ))
  36766. characterMakers.push(() => makeCharacter(
  36767. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36768. {
  36769. front: {
  36770. height: math.unit(5 + 2/12, "feet"),
  36771. weight: math.unit(112, "lb"),
  36772. name: "Front",
  36773. image: {
  36774. source: "./media/characters/cassie-kingston/front.svg",
  36775. extra: 1438/1390,
  36776. bottom: 47/1485
  36777. }
  36778. },
  36779. },
  36780. [
  36781. {
  36782. name: "Normal",
  36783. height: math.unit(5 + 2/12, "feet"),
  36784. default: true
  36785. },
  36786. {
  36787. name: "Macro",
  36788. height: math.unit(128, "feet")
  36789. },
  36790. {
  36791. name: "Megamacro",
  36792. height: math.unit(2.56, "miles")
  36793. },
  36794. ]
  36795. ))
  36796. characterMakers.push(() => makeCharacter(
  36797. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36798. {
  36799. front: {
  36800. height: math.unit(7, "feet"),
  36801. name: "Front",
  36802. image: {
  36803. source: "./media/characters/fox/front.svg",
  36804. extra: 1798/1703,
  36805. bottom: 55/1853
  36806. }
  36807. },
  36808. back: {
  36809. height: math.unit(7, "feet"),
  36810. name: "Back",
  36811. image: {
  36812. source: "./media/characters/fox/back.svg",
  36813. extra: 1748/1649,
  36814. bottom: 32/1780
  36815. }
  36816. },
  36817. head: {
  36818. height: math.unit(1.95, "feet"),
  36819. name: "Head",
  36820. image: {
  36821. source: "./media/characters/fox/head.svg"
  36822. }
  36823. },
  36824. dick: {
  36825. height: math.unit(1.33, "feet"),
  36826. name: "Dick",
  36827. image: {
  36828. source: "./media/characters/fox/dick.svg"
  36829. }
  36830. },
  36831. foot: {
  36832. height: math.unit(1, "feet"),
  36833. name: "Foot",
  36834. image: {
  36835. source: "./media/characters/fox/foot.svg"
  36836. }
  36837. },
  36838. paw: {
  36839. height: math.unit(0.92, "feet"),
  36840. name: "Paw",
  36841. image: {
  36842. source: "./media/characters/fox/paw.svg"
  36843. }
  36844. },
  36845. },
  36846. [
  36847. {
  36848. name: "Small",
  36849. height: math.unit(3, "inches")
  36850. },
  36851. {
  36852. name: "\"Realistic\"",
  36853. height: math.unit(7, "feet")
  36854. },
  36855. {
  36856. name: "Normal",
  36857. height: math.unit(150, "feet"),
  36858. default: true
  36859. },
  36860. {
  36861. name: "BIG",
  36862. height: math.unit(1200, "feet")
  36863. },
  36864. {
  36865. name: "👀",
  36866. height: math.unit(5, "miles")
  36867. },
  36868. {
  36869. name: "👀👀👀",
  36870. height: math.unit(64, "miles")
  36871. },
  36872. ]
  36873. ))
  36874. characterMakers.push(() => makeCharacter(
  36875. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36876. {
  36877. front: {
  36878. height: math.unit(625, "feet"),
  36879. name: "Front",
  36880. image: {
  36881. source: "./media/characters/asonja-rossa/front.svg",
  36882. extra: 1833/1686,
  36883. bottom: 24/1857
  36884. }
  36885. },
  36886. back: {
  36887. height: math.unit(625, "feet"),
  36888. name: "Back",
  36889. image: {
  36890. source: "./media/characters/asonja-rossa/back.svg",
  36891. extra: 1852/1753,
  36892. bottom: 26/1878
  36893. }
  36894. },
  36895. },
  36896. [
  36897. {
  36898. name: "Macro",
  36899. height: math.unit(625, "feet"),
  36900. default: true
  36901. },
  36902. ]
  36903. ))
  36904. characterMakers.push(() => makeCharacter(
  36905. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36906. {
  36907. side: {
  36908. height: math.unit(8, "feet"),
  36909. name: "Side",
  36910. image: {
  36911. source: "./media/characters/rezukii/side.svg",
  36912. extra: 979/542,
  36913. bottom: 87/1066
  36914. }
  36915. },
  36916. sitting: {
  36917. height: math.unit(14.6, "feet"),
  36918. name: "Sitting",
  36919. image: {
  36920. source: "./media/characters/rezukii/sitting.svg",
  36921. extra: 1023/813,
  36922. bottom: 45/1068
  36923. }
  36924. },
  36925. },
  36926. [
  36927. {
  36928. name: "Tiny",
  36929. height: math.unit(2, "feet")
  36930. },
  36931. {
  36932. name: "Smol",
  36933. height: math.unit(4, "feet")
  36934. },
  36935. {
  36936. name: "Normal",
  36937. height: math.unit(8, "feet"),
  36938. default: true
  36939. },
  36940. {
  36941. name: "Big",
  36942. height: math.unit(12, "feet")
  36943. },
  36944. {
  36945. name: "Macro",
  36946. height: math.unit(30, "feet")
  36947. },
  36948. ]
  36949. ))
  36950. characterMakers.push(() => makeCharacter(
  36951. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36952. {
  36953. front: {
  36954. height: math.unit(14, "feet"),
  36955. weight: math.unit(9.5, "tonnes"),
  36956. name: "Front",
  36957. image: {
  36958. source: "./media/characters/dawnheart/front.svg",
  36959. extra: 2792/2675,
  36960. bottom: 64/2856
  36961. }
  36962. },
  36963. },
  36964. [
  36965. {
  36966. name: "Normal",
  36967. height: math.unit(14, "feet"),
  36968. default: true
  36969. },
  36970. ]
  36971. ))
  36972. characterMakers.push(() => makeCharacter(
  36973. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36974. {
  36975. front: {
  36976. height: math.unit(1.7, "m"),
  36977. name: "Front",
  36978. image: {
  36979. source: "./media/characters/gladi/front.svg",
  36980. extra: 1460/1362,
  36981. bottom: 19/1479
  36982. }
  36983. },
  36984. back: {
  36985. height: math.unit(1.7, "m"),
  36986. name: "Back",
  36987. image: {
  36988. source: "./media/characters/gladi/back.svg",
  36989. extra: 1459/1357,
  36990. bottom: 12/1471
  36991. }
  36992. },
  36993. feral: {
  36994. height: math.unit(2.05, "m"),
  36995. name: "Feral",
  36996. image: {
  36997. source: "./media/characters/gladi/feral.svg",
  36998. extra: 821/557,
  36999. bottom: 91/912
  37000. }
  37001. },
  37002. },
  37003. [
  37004. {
  37005. name: "Shortest",
  37006. height: math.unit(70, "cm")
  37007. },
  37008. {
  37009. name: "Normal",
  37010. height: math.unit(1.7, "m")
  37011. },
  37012. {
  37013. name: "Macro",
  37014. height: math.unit(10, "m"),
  37015. default: true
  37016. },
  37017. {
  37018. name: "Tallest",
  37019. height: math.unit(200, "m")
  37020. },
  37021. ]
  37022. ))
  37023. characterMakers.push(() => makeCharacter(
  37024. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37025. {
  37026. front: {
  37027. height: math.unit(5 + 7/12, "feet"),
  37028. weight: math.unit(2, "tons"),
  37029. name: "Front",
  37030. image: {
  37031. source: "./media/characters/erdno/front.svg",
  37032. extra: 1234/1129,
  37033. bottom: 35/1269
  37034. }
  37035. },
  37036. angled: {
  37037. height: math.unit(5 + 7/12, "feet"),
  37038. weight: math.unit(2, "tons"),
  37039. name: "Angled",
  37040. image: {
  37041. source: "./media/characters/erdno/angled.svg",
  37042. extra: 1185/1139,
  37043. bottom: 36/1221
  37044. }
  37045. },
  37046. side: {
  37047. height: math.unit(5 + 7/12, "feet"),
  37048. weight: math.unit(2, "tons"),
  37049. name: "Side",
  37050. image: {
  37051. source: "./media/characters/erdno/side.svg",
  37052. extra: 1191/1144,
  37053. bottom: 40/1231
  37054. }
  37055. },
  37056. back: {
  37057. height: math.unit(5 + 7/12, "feet"),
  37058. weight: math.unit(2, "tons"),
  37059. name: "Back",
  37060. image: {
  37061. source: "./media/characters/erdno/back.svg",
  37062. extra: 1202/1146,
  37063. bottom: 17/1219
  37064. }
  37065. },
  37066. frontNsfw: {
  37067. height: math.unit(5 + 7/12, "feet"),
  37068. weight: math.unit(2, "tons"),
  37069. name: "Front (NSFW)",
  37070. image: {
  37071. source: "./media/characters/erdno/front-nsfw.svg",
  37072. extra: 1234/1129,
  37073. bottom: 35/1269
  37074. }
  37075. },
  37076. angledNsfw: {
  37077. height: math.unit(5 + 7/12, "feet"),
  37078. weight: math.unit(2, "tons"),
  37079. name: "Angled (NSFW)",
  37080. image: {
  37081. source: "./media/characters/erdno/angled-nsfw.svg",
  37082. extra: 1185/1139,
  37083. bottom: 36/1221
  37084. }
  37085. },
  37086. sideNsfw: {
  37087. height: math.unit(5 + 7/12, "feet"),
  37088. weight: math.unit(2, "tons"),
  37089. name: "Side (NSFW)",
  37090. image: {
  37091. source: "./media/characters/erdno/side-nsfw.svg",
  37092. extra: 1191/1144,
  37093. bottom: 40/1231
  37094. }
  37095. },
  37096. backNsfw: {
  37097. height: math.unit(5 + 7/12, "feet"),
  37098. weight: math.unit(2, "tons"),
  37099. name: "Back (NSFW)",
  37100. image: {
  37101. source: "./media/characters/erdno/back-nsfw.svg",
  37102. extra: 1202/1146,
  37103. bottom: 17/1219
  37104. }
  37105. },
  37106. frontHyper: {
  37107. height: math.unit(5 + 7/12, "feet"),
  37108. weight: math.unit(2, "tons"),
  37109. name: "Front (Hyper)",
  37110. image: {
  37111. source: "./media/characters/erdno/front-hyper.svg",
  37112. extra: 1298/1136,
  37113. bottom: 35/1333
  37114. }
  37115. },
  37116. },
  37117. [
  37118. {
  37119. name: "Normal",
  37120. height: math.unit(5 + 7/12, "feet"),
  37121. default: true
  37122. },
  37123. {
  37124. name: "Big",
  37125. height: math.unit(5.7, "meters")
  37126. },
  37127. {
  37128. name: "Macro",
  37129. height: math.unit(5.7, "kilometers")
  37130. },
  37131. {
  37132. name: "Megamacro",
  37133. height: math.unit(5.7, "earths")
  37134. },
  37135. ]
  37136. ))
  37137. characterMakers.push(() => makeCharacter(
  37138. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37139. {
  37140. front: {
  37141. height: math.unit(5 + 10/12, "feet"),
  37142. weight: math.unit(150, "lb"),
  37143. name: "Front",
  37144. image: {
  37145. source: "./media/characters/jamie/front.svg",
  37146. extra: 1908/1768,
  37147. bottom: 19/1927
  37148. }
  37149. },
  37150. },
  37151. [
  37152. {
  37153. name: "Minimum",
  37154. height: math.unit(2, "cm")
  37155. },
  37156. {
  37157. name: "Micro",
  37158. height: math.unit(3, "inches")
  37159. },
  37160. {
  37161. name: "Normal",
  37162. height: math.unit(5 + 10/12, "feet"),
  37163. default: true
  37164. },
  37165. {
  37166. name: "Macro",
  37167. height: math.unit(150, "feet")
  37168. },
  37169. {
  37170. name: "Megamacro",
  37171. height: math.unit(10000, "m")
  37172. },
  37173. ]
  37174. ))
  37175. characterMakers.push(() => makeCharacter(
  37176. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37177. {
  37178. front: {
  37179. height: math.unit(2, "meters"),
  37180. weight: math.unit(100, "kg"),
  37181. name: "Front",
  37182. image: {
  37183. source: "./media/characters/shiron/front.svg",
  37184. extra: 2103/1985,
  37185. bottom: 98/2201
  37186. }
  37187. },
  37188. back: {
  37189. height: math.unit(2, "meters"),
  37190. weight: math.unit(100, "kg"),
  37191. name: "Back",
  37192. image: {
  37193. source: "./media/characters/shiron/back.svg",
  37194. extra: 2110/2015,
  37195. bottom: 89/2199
  37196. }
  37197. },
  37198. hand: {
  37199. height: math.unit(0.96, "feet"),
  37200. name: "Hand",
  37201. image: {
  37202. source: "./media/characters/shiron/hand.svg"
  37203. }
  37204. },
  37205. foot: {
  37206. height: math.unit(1.464, "feet"),
  37207. name: "Foot",
  37208. image: {
  37209. source: "./media/characters/shiron/foot.svg"
  37210. }
  37211. },
  37212. },
  37213. [
  37214. {
  37215. name: "Normal",
  37216. height: math.unit(2, "meters")
  37217. },
  37218. {
  37219. name: "Macro",
  37220. height: math.unit(500, "meters"),
  37221. default: true
  37222. },
  37223. {
  37224. name: "Megamacro",
  37225. height: math.unit(20, "km")
  37226. },
  37227. ]
  37228. ))
  37229. characterMakers.push(() => makeCharacter(
  37230. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37231. {
  37232. front: {
  37233. height: math.unit(6, "feet"),
  37234. name: "Front",
  37235. image: {
  37236. source: "./media/characters/sam/front.svg",
  37237. extra: 849/826,
  37238. bottom: 19/868
  37239. }
  37240. },
  37241. },
  37242. [
  37243. {
  37244. name: "Normal",
  37245. height: math.unit(6, "feet"),
  37246. default: true
  37247. },
  37248. ]
  37249. ))
  37250. characterMakers.push(() => makeCharacter(
  37251. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37252. {
  37253. front: {
  37254. height: math.unit(8 + 4/12, "feet"),
  37255. weight: math.unit(122, "kg"),
  37256. name: "Front",
  37257. image: {
  37258. source: "./media/characters/namori-kurogawa/front.svg",
  37259. extra: 1894/1576,
  37260. bottom: 34/1928
  37261. }
  37262. },
  37263. },
  37264. [
  37265. {
  37266. name: "Normal",
  37267. height: math.unit(8 + 4/12, "feet"),
  37268. default: true
  37269. },
  37270. ]
  37271. ))
  37272. characterMakers.push(() => makeCharacter(
  37273. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37274. {
  37275. front: {
  37276. height: math.unit(9, "feet"),
  37277. weight: math.unit(621, "lb"),
  37278. name: "Front",
  37279. image: {
  37280. source: "./media/characters/unmru/front.svg",
  37281. extra: 1853/1747,
  37282. bottom: 73/1926
  37283. }
  37284. },
  37285. side: {
  37286. height: math.unit(9, "feet"),
  37287. weight: math.unit(621, "lb"),
  37288. name: "Side",
  37289. image: {
  37290. source: "./media/characters/unmru/side.svg",
  37291. extra: 1781/1671,
  37292. bottom: 127/1908
  37293. }
  37294. },
  37295. back: {
  37296. height: math.unit(9, "feet"),
  37297. weight: math.unit(621, "lb"),
  37298. name: "Back",
  37299. image: {
  37300. source: "./media/characters/unmru/back.svg",
  37301. extra: 1894/1765,
  37302. bottom: 75/1969
  37303. }
  37304. },
  37305. dick: {
  37306. height: math.unit(3, "feet"),
  37307. weight: math.unit(35, "lb"),
  37308. name: "Dick",
  37309. image: {
  37310. source: "./media/characters/unmru/dick.svg"
  37311. }
  37312. },
  37313. },
  37314. [
  37315. {
  37316. name: "Normal",
  37317. height: math.unit(9, "feet")
  37318. },
  37319. {
  37320. name: "Natural",
  37321. height: math.unit(27, "feet"),
  37322. default: true
  37323. },
  37324. {
  37325. name: "Giant",
  37326. height: math.unit(90, "feet")
  37327. },
  37328. {
  37329. name: "Kaiju",
  37330. height: math.unit(270, "feet")
  37331. },
  37332. {
  37333. name: "Macro",
  37334. height: math.unit(900, "feet")
  37335. },
  37336. {
  37337. name: "Macro+",
  37338. height: math.unit(2700, "feet")
  37339. },
  37340. {
  37341. name: "Megamacro",
  37342. height: math.unit(9000, "feet")
  37343. },
  37344. {
  37345. name: "City-Crushing",
  37346. height: math.unit(27000, "feet")
  37347. },
  37348. {
  37349. name: "Mountain-Mashing",
  37350. height: math.unit(90000, "feet")
  37351. },
  37352. {
  37353. name: "Earth-Eclipsing",
  37354. height: math.unit(2.7e8, "feet")
  37355. },
  37356. {
  37357. name: "Sol-Swallowing",
  37358. height: math.unit(9e10, "feet")
  37359. },
  37360. {
  37361. name: "Majoris-Munching",
  37362. height: math.unit(2.7e13, "feet")
  37363. },
  37364. ]
  37365. ))
  37366. characterMakers.push(() => makeCharacter(
  37367. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37368. {
  37369. front: {
  37370. height: math.unit(1, "inch"),
  37371. name: "Front",
  37372. image: {
  37373. source: "./media/characters/squeaks-mouse/front.svg",
  37374. extra: 352/308,
  37375. bottom: 25/377
  37376. }
  37377. },
  37378. },
  37379. [
  37380. {
  37381. name: "Micro",
  37382. height: math.unit(1, "inch"),
  37383. default: true
  37384. },
  37385. ]
  37386. ))
  37387. characterMakers.push(() => makeCharacter(
  37388. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37389. {
  37390. side: {
  37391. height: math.unit(35, "feet"),
  37392. name: "Side",
  37393. image: {
  37394. source: "./media/characters/sayko/side.svg",
  37395. extra: 1697/1021,
  37396. bottom: 82/1779
  37397. }
  37398. },
  37399. head: {
  37400. height: math.unit(16, "feet"),
  37401. name: "Head",
  37402. image: {
  37403. source: "./media/characters/sayko/head.svg"
  37404. }
  37405. },
  37406. forepaw: {
  37407. height: math.unit(7.85, "feet"),
  37408. name: "Forepaw",
  37409. image: {
  37410. source: "./media/characters/sayko/forepaw.svg"
  37411. }
  37412. },
  37413. hindpaw: {
  37414. height: math.unit(8.8, "feet"),
  37415. name: "Hindpaw",
  37416. image: {
  37417. source: "./media/characters/sayko/hindpaw.svg"
  37418. }
  37419. },
  37420. },
  37421. [
  37422. {
  37423. name: "Normal",
  37424. height: math.unit(35, "feet"),
  37425. default: true
  37426. },
  37427. {
  37428. name: "Colossus",
  37429. height: math.unit(100, "meters")
  37430. },
  37431. {
  37432. name: "\"Small\" Deity",
  37433. height: math.unit(1, "km")
  37434. },
  37435. {
  37436. name: "\"Large\" Deity",
  37437. height: math.unit(15, "km")
  37438. },
  37439. ]
  37440. ))
  37441. characterMakers.push(() => makeCharacter(
  37442. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37443. {
  37444. front: {
  37445. height: math.unit(6, "feet"),
  37446. weight: math.unit(250, "lb"),
  37447. name: "Front",
  37448. image: {
  37449. source: "./media/characters/mukiro/front.svg",
  37450. extra: 1368/1310,
  37451. bottom: 34/1402
  37452. }
  37453. },
  37454. },
  37455. [
  37456. {
  37457. name: "Normal",
  37458. height: math.unit(6, "feet"),
  37459. default: true
  37460. },
  37461. ]
  37462. ))
  37463. characterMakers.push(() => makeCharacter(
  37464. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37465. {
  37466. front: {
  37467. height: math.unit(12 + 4/12, "feet"),
  37468. name: "Front",
  37469. image: {
  37470. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37471. extra: 1346/1311,
  37472. bottom: 65/1411
  37473. }
  37474. },
  37475. },
  37476. [
  37477. {
  37478. name: "Base",
  37479. height: math.unit(12 + 4/12, "feet"),
  37480. default: true
  37481. },
  37482. {
  37483. name: "Macro",
  37484. height: math.unit(150, "feet")
  37485. },
  37486. {
  37487. name: "Mega",
  37488. height: math.unit(2, "miles")
  37489. },
  37490. {
  37491. name: "Demi God",
  37492. height: math.unit(4, "AU")
  37493. },
  37494. {
  37495. name: "God Size",
  37496. height: math.unit(1, "universe")
  37497. },
  37498. ]
  37499. ))
  37500. characterMakers.push(() => makeCharacter(
  37501. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37502. {
  37503. front: {
  37504. height: math.unit(3 + 3/12, "feet"),
  37505. weight: math.unit(88, "lb"),
  37506. name: "Front",
  37507. image: {
  37508. source: "./media/characters/trey/front.svg",
  37509. extra: 1815/1509,
  37510. bottom: 60/1875
  37511. }
  37512. },
  37513. },
  37514. [
  37515. {
  37516. name: "Normal",
  37517. height: math.unit(3 + 3/12, "feet"),
  37518. default: true
  37519. },
  37520. ]
  37521. ))
  37522. characterMakers.push(() => makeCharacter(
  37523. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37524. {
  37525. front: {
  37526. height: math.unit(4, "meters"),
  37527. name: "Front",
  37528. image: {
  37529. source: "./media/characters/adelonda/front.svg",
  37530. extra: 1077/982,
  37531. bottom: 39/1116
  37532. }
  37533. },
  37534. back: {
  37535. height: math.unit(4, "meters"),
  37536. name: "Back",
  37537. image: {
  37538. source: "./media/characters/adelonda/back.svg",
  37539. extra: 1105/1003,
  37540. bottom: 25/1130
  37541. }
  37542. },
  37543. },
  37544. [
  37545. {
  37546. name: "Normal",
  37547. height: math.unit(4, "meters"),
  37548. default: true
  37549. },
  37550. ]
  37551. ))
  37552. characterMakers.push(() => makeCharacter(
  37553. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37554. {
  37555. front: {
  37556. height: math.unit(8 + 4/12, "feet"),
  37557. weight: math.unit(670, "lb"),
  37558. name: "Front",
  37559. image: {
  37560. source: "./media/characters/acadiel/front.svg",
  37561. extra: 1901/1595,
  37562. bottom: 142/2043
  37563. }
  37564. },
  37565. },
  37566. [
  37567. {
  37568. name: "Normal",
  37569. height: math.unit(8 + 4/12, "feet"),
  37570. default: true
  37571. },
  37572. {
  37573. name: "Macro",
  37574. height: math.unit(200, "feet")
  37575. },
  37576. ]
  37577. ))
  37578. characterMakers.push(() => makeCharacter(
  37579. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37580. {
  37581. front: {
  37582. height: math.unit(6 + 2/12, "feet"),
  37583. weight: math.unit(185, "lb"),
  37584. name: "Front",
  37585. image: {
  37586. source: "./media/characters/kayne-ein/front.svg",
  37587. extra: 1780/1560,
  37588. bottom: 81/1861
  37589. }
  37590. },
  37591. },
  37592. [
  37593. {
  37594. name: "Normal",
  37595. height: math.unit(6 + 2/12, "feet"),
  37596. default: true
  37597. },
  37598. {
  37599. name: "Transformation Stage",
  37600. height: math.unit(15, "feet")
  37601. },
  37602. {
  37603. name: "Macro",
  37604. height: math.unit(150, "feet")
  37605. },
  37606. {
  37607. name: "Earth's Shadow",
  37608. height: math.unit(6200, "miles")
  37609. },
  37610. {
  37611. name: "Universal Demon",
  37612. height: math.unit(28e9, "parsecs")
  37613. },
  37614. {
  37615. name: "Multiverse God",
  37616. height: math.unit(3, "multiverses")
  37617. },
  37618. ]
  37619. ))
  37620. characterMakers.push(() => makeCharacter(
  37621. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37622. {
  37623. front: {
  37624. height: math.unit(5 + 5/12, "feet"),
  37625. name: "Front",
  37626. image: {
  37627. source: "./media/characters/fawn/front.svg",
  37628. extra: 1873/1731,
  37629. bottom: 95/1968
  37630. }
  37631. },
  37632. back: {
  37633. height: math.unit(5 + 5/12, "feet"),
  37634. name: "Back",
  37635. image: {
  37636. source: "./media/characters/fawn/back.svg",
  37637. extra: 1813/1700,
  37638. bottom: 14/1827
  37639. }
  37640. },
  37641. hoof: {
  37642. height: math.unit(1.45, "feet"),
  37643. name: "Hoof",
  37644. image: {
  37645. source: "./media/characters/fawn/hoof.svg"
  37646. }
  37647. },
  37648. },
  37649. [
  37650. {
  37651. name: "Normal",
  37652. height: math.unit(5 + 5/12, "feet"),
  37653. default: true
  37654. },
  37655. ]
  37656. ))
  37657. characterMakers.push(() => makeCharacter(
  37658. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37659. {
  37660. front: {
  37661. height: math.unit(2 + 5/12, "feet"),
  37662. name: "Front",
  37663. image: {
  37664. source: "./media/characters/orion/front.svg",
  37665. extra: 1366/1304,
  37666. bottom: 43/1409
  37667. }
  37668. },
  37669. paw: {
  37670. height: math.unit(0.52, "feet"),
  37671. name: "Paw",
  37672. image: {
  37673. source: "./media/characters/orion/paw.svg"
  37674. }
  37675. },
  37676. },
  37677. [
  37678. {
  37679. name: "Normal",
  37680. height: math.unit(2 + 5/12, "feet"),
  37681. default: true
  37682. },
  37683. ]
  37684. ))
  37685. characterMakers.push(() => makeCharacter(
  37686. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37687. {
  37688. front: {
  37689. height: math.unit(5 + 10/12, "feet"),
  37690. name: "Front",
  37691. image: {
  37692. source: "./media/characters/vera/front.svg",
  37693. extra: 1680/1575,
  37694. bottom: 49/1729
  37695. }
  37696. },
  37697. back: {
  37698. height: math.unit(5 + 10/12, "feet"),
  37699. name: "Back",
  37700. image: {
  37701. source: "./media/characters/vera/back.svg",
  37702. extra: 1700/1588,
  37703. bottom: 18/1718
  37704. }
  37705. },
  37706. arcanine: {
  37707. height: math.unit(6 + 8/12, "feet"),
  37708. name: "Arcanine",
  37709. image: {
  37710. source: "./media/characters/vera/arcanine.svg",
  37711. extra: 1590/1511,
  37712. bottom: 71/1661
  37713. }
  37714. },
  37715. maw: {
  37716. height: math.unit(0.82, "feet"),
  37717. name: "Maw",
  37718. image: {
  37719. source: "./media/characters/vera/maw.svg"
  37720. }
  37721. },
  37722. mawArcanine: {
  37723. height: math.unit(0.97, "feet"),
  37724. name: "Maw (Arcanine)",
  37725. image: {
  37726. source: "./media/characters/vera/maw-arcanine.svg"
  37727. }
  37728. },
  37729. paw: {
  37730. height: math.unit(0.75, "feet"),
  37731. name: "Paw",
  37732. image: {
  37733. source: "./media/characters/vera/paw.svg"
  37734. }
  37735. },
  37736. pawprint: {
  37737. height: math.unit(0.52, "feet"),
  37738. name: "Pawprint",
  37739. image: {
  37740. source: "./media/characters/vera/pawprint.svg"
  37741. }
  37742. },
  37743. },
  37744. [
  37745. {
  37746. name: "Normal",
  37747. height: math.unit(5 + 10/12, "feet"),
  37748. default: true
  37749. },
  37750. {
  37751. name: "Macro",
  37752. height: math.unit(75, "feet")
  37753. },
  37754. ]
  37755. ))
  37756. characterMakers.push(() => makeCharacter(
  37757. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37758. {
  37759. front: {
  37760. height: math.unit(4, "feet"),
  37761. weight: math.unit(40, "lb"),
  37762. name: "Front",
  37763. image: {
  37764. source: "./media/characters/orvan-rabbit/front.svg",
  37765. extra: 1896/1642,
  37766. bottom: 29/1925
  37767. }
  37768. },
  37769. },
  37770. [
  37771. {
  37772. name: "Normal",
  37773. height: math.unit(4, "feet"),
  37774. default: true
  37775. },
  37776. ]
  37777. ))
  37778. characterMakers.push(() => makeCharacter(
  37779. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37780. {
  37781. front: {
  37782. height: math.unit(6, "feet"),
  37783. weight: math.unit(168, "lb"),
  37784. name: "Front",
  37785. image: {
  37786. source: "./media/characters/lisa/front.svg",
  37787. extra: 2065/1867,
  37788. bottom: 46/2111
  37789. }
  37790. },
  37791. back: {
  37792. height: math.unit(6, "feet"),
  37793. weight: math.unit(168, "lb"),
  37794. name: "Back",
  37795. image: {
  37796. source: "./media/characters/lisa/back.svg",
  37797. extra: 1982/1838,
  37798. bottom: 29/2011
  37799. }
  37800. },
  37801. maw: {
  37802. height: math.unit(0.81, "feet"),
  37803. name: "Maw",
  37804. image: {
  37805. source: "./media/characters/lisa/maw.svg"
  37806. }
  37807. },
  37808. paw: {
  37809. height: math.unit(0.9, "feet"),
  37810. name: "Paw",
  37811. image: {
  37812. source: "./media/characters/lisa/paw.svg"
  37813. }
  37814. },
  37815. caribousune: {
  37816. height: math.unit(7 + 2/12, "feet"),
  37817. weight: math.unit(268, "lb"),
  37818. name: "Caribousune",
  37819. image: {
  37820. source: "./media/characters/lisa/caribousune.svg",
  37821. extra: 1843/1633,
  37822. bottom: 29/1872
  37823. }
  37824. },
  37825. frontCaribousune: {
  37826. height: math.unit(7 + 2/12, "feet"),
  37827. weight: math.unit(268, "lb"),
  37828. name: "Front (Caribousune)",
  37829. image: {
  37830. source: "./media/characters/lisa/front-caribousune.svg",
  37831. extra: 1818/1638,
  37832. bottom: 52/1870
  37833. }
  37834. },
  37835. sideCaribousune: {
  37836. height: math.unit(7 + 2/12, "feet"),
  37837. weight: math.unit(268, "lb"),
  37838. name: "Side (Caribousune)",
  37839. image: {
  37840. source: "./media/characters/lisa/side-caribousune.svg",
  37841. extra: 1851/1635,
  37842. bottom: 16/1867
  37843. }
  37844. },
  37845. backCaribousune: {
  37846. height: math.unit(7 + 2/12, "feet"),
  37847. weight: math.unit(268, "lb"),
  37848. name: "Back (Caribousune)",
  37849. image: {
  37850. source: "./media/characters/lisa/back-caribousune.svg",
  37851. extra: 1801/1604,
  37852. bottom: 44/1845
  37853. }
  37854. },
  37855. caribou: {
  37856. height: math.unit(7 + 2/12, "feet"),
  37857. weight: math.unit(268, "lb"),
  37858. name: "Caribou",
  37859. image: {
  37860. source: "./media/characters/lisa/caribou.svg",
  37861. extra: 1843/1633,
  37862. bottom: 29/1872
  37863. }
  37864. },
  37865. frontCaribou: {
  37866. height: math.unit(7 + 2/12, "feet"),
  37867. weight: math.unit(268, "lb"),
  37868. name: "Front (Caribou)",
  37869. image: {
  37870. source: "./media/characters/lisa/front-caribou.svg",
  37871. extra: 1818/1638,
  37872. bottom: 52/1870
  37873. }
  37874. },
  37875. sideCaribou: {
  37876. height: math.unit(7 + 2/12, "feet"),
  37877. weight: math.unit(268, "lb"),
  37878. name: "Side (Caribou)",
  37879. image: {
  37880. source: "./media/characters/lisa/side-caribou.svg",
  37881. extra: 1851/1635,
  37882. bottom: 16/1867
  37883. }
  37884. },
  37885. backCaribou: {
  37886. height: math.unit(7 + 2/12, "feet"),
  37887. weight: math.unit(268, "lb"),
  37888. name: "Back (Caribou)",
  37889. image: {
  37890. source: "./media/characters/lisa/back-caribou.svg",
  37891. extra: 1801/1604,
  37892. bottom: 44/1845
  37893. }
  37894. },
  37895. mawCaribou: {
  37896. height: math.unit(1.45, "feet"),
  37897. name: "Maw (Caribou)",
  37898. image: {
  37899. source: "./media/characters/lisa/maw-caribou.svg"
  37900. }
  37901. },
  37902. mawCaribousune: {
  37903. height: math.unit(1.45, "feet"),
  37904. name: "Maw (Caribousune)",
  37905. image: {
  37906. source: "./media/characters/lisa/maw-caribousune.svg"
  37907. }
  37908. },
  37909. pawCaribousune: {
  37910. height: math.unit(1.61, "feet"),
  37911. name: "Paw (Caribou)",
  37912. image: {
  37913. source: "./media/characters/lisa/paw-caribousune.svg"
  37914. }
  37915. },
  37916. },
  37917. [
  37918. {
  37919. name: "Normal",
  37920. height: math.unit(6, "feet")
  37921. },
  37922. {
  37923. name: "God Size",
  37924. height: math.unit(72, "feet"),
  37925. default: true
  37926. },
  37927. {
  37928. name: "Towering",
  37929. height: math.unit(288, "feet")
  37930. },
  37931. {
  37932. name: "City Size",
  37933. height: math.unit(48384, "feet")
  37934. },
  37935. {
  37936. name: "Continental",
  37937. height: math.unit(4200, "miles")
  37938. },
  37939. {
  37940. name: "Planet Eater",
  37941. height: math.unit(42, "earths")
  37942. },
  37943. {
  37944. name: "Star Swallower",
  37945. height: math.unit(42, "solarradii")
  37946. },
  37947. {
  37948. name: "System Swallower",
  37949. height: math.unit(84000, "AU")
  37950. },
  37951. {
  37952. name: "Galaxy Gobbler",
  37953. height: math.unit(42, "galaxies")
  37954. },
  37955. {
  37956. name: "Universe Devourer",
  37957. height: math.unit(42, "universes")
  37958. },
  37959. {
  37960. name: "Multiverse Muncher",
  37961. height: math.unit(42, "multiverses")
  37962. },
  37963. ]
  37964. ))
  37965. characterMakers.push(() => makeCharacter(
  37966. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37967. {
  37968. front: {
  37969. height: math.unit(36, "feet"),
  37970. name: "Front",
  37971. image: {
  37972. source: "./media/characters/shadow-rat/front.svg",
  37973. extra: 1845/1758,
  37974. bottom: 83/1928
  37975. }
  37976. },
  37977. },
  37978. [
  37979. {
  37980. name: "Macro",
  37981. height: math.unit(36, "feet"),
  37982. default: true
  37983. },
  37984. ]
  37985. ))
  37986. characterMakers.push(() => makeCharacter(
  37987. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37988. {
  37989. side: {
  37990. height: math.unit(8, "feet"),
  37991. weight: math.unit(2630, "lb"),
  37992. name: "Side",
  37993. image: {
  37994. source: "./media/characters/torallia/side.svg",
  37995. extra: 2164/2021,
  37996. bottom: 371/2535
  37997. }
  37998. },
  37999. },
  38000. [
  38001. {
  38002. name: "Mortal Interaction",
  38003. height: math.unit(8, "feet")
  38004. },
  38005. {
  38006. name: "Natural",
  38007. height: math.unit(24, "feet"),
  38008. default: true
  38009. },
  38010. {
  38011. name: "Giant",
  38012. height: math.unit(80, "feet")
  38013. },
  38014. {
  38015. name: "Kaiju",
  38016. height: math.unit(240, "feet")
  38017. },
  38018. {
  38019. name: "Macro",
  38020. height: math.unit(800, "feet")
  38021. },
  38022. {
  38023. name: "Macro+",
  38024. height: math.unit(2400, "feet")
  38025. },
  38026. {
  38027. name: "Macro++",
  38028. height: math.unit(8000, "feet")
  38029. },
  38030. {
  38031. name: "City-Crushing",
  38032. height: math.unit(24000, "feet")
  38033. },
  38034. {
  38035. name: "Mountain-Mashing",
  38036. height: math.unit(80000, "feet")
  38037. },
  38038. {
  38039. name: "District Demolisher",
  38040. height: math.unit(240000, "feet")
  38041. },
  38042. {
  38043. name: "Tri-County Terror",
  38044. height: math.unit(800000, "feet")
  38045. },
  38046. {
  38047. name: "State Smasher",
  38048. height: math.unit(2.4e6, "feet")
  38049. },
  38050. {
  38051. name: "Nation Nemesis",
  38052. height: math.unit(8e6, "feet")
  38053. },
  38054. {
  38055. name: "Continent Cracker",
  38056. height: math.unit(2.4e7, "feet")
  38057. },
  38058. {
  38059. name: "Planet-Pillaging",
  38060. height: math.unit(8e7, "feet")
  38061. },
  38062. {
  38063. name: "Earth-Eclipsing",
  38064. height: math.unit(2.4e8, "feet")
  38065. },
  38066. {
  38067. name: "Jovian-Jostling",
  38068. height: math.unit(8e8, "feet")
  38069. },
  38070. {
  38071. name: "Gas Giant Gulper",
  38072. height: math.unit(2.4e9, "feet")
  38073. },
  38074. {
  38075. name: "Astral Annihilator",
  38076. height: math.unit(8e9, "feet")
  38077. },
  38078. {
  38079. name: "Celestial Conqueror",
  38080. height: math.unit(2.4e10, "feet")
  38081. },
  38082. {
  38083. name: "Sol-Swallowing",
  38084. height: math.unit(8e10, "feet")
  38085. },
  38086. {
  38087. name: "Hunter of the Heavens",
  38088. height: math.unit(2.4e13, "feet")
  38089. },
  38090. ]
  38091. ))
  38092. characterMakers.push(() => makeCharacter(
  38093. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38094. {
  38095. front: {
  38096. height: math.unit(6 + 8/12, "feet"),
  38097. name: "Front",
  38098. image: {
  38099. source: "./media/characters/rebecca-pawlson/front.svg",
  38100. extra: 1737/1596,
  38101. bottom: 107/1844
  38102. }
  38103. },
  38104. back: {
  38105. height: math.unit(6 + 8/12, "feet"),
  38106. name: "Back",
  38107. image: {
  38108. source: "./media/characters/rebecca-pawlson/back.svg",
  38109. extra: 1702/1523,
  38110. bottom: 86/1788
  38111. }
  38112. },
  38113. },
  38114. [
  38115. {
  38116. name: "Normal",
  38117. height: math.unit(6 + 8/12, "feet")
  38118. },
  38119. {
  38120. name: "Mini Macro",
  38121. height: math.unit(10, "feet"),
  38122. default: true
  38123. },
  38124. {
  38125. name: "Macro",
  38126. height: math.unit(100, "feet")
  38127. },
  38128. {
  38129. name: "Mega Macro",
  38130. height: math.unit(2500, "feet")
  38131. },
  38132. {
  38133. name: "Giga Macro",
  38134. height: math.unit(50, "miles")
  38135. },
  38136. ]
  38137. ))
  38138. characterMakers.push(() => makeCharacter(
  38139. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38140. {
  38141. front: {
  38142. height: math.unit(7 + 6/12, "feet"),
  38143. weight: math.unit(600, "lb"),
  38144. name: "Front",
  38145. image: {
  38146. source: "./media/characters/moxie-nova/front.svg",
  38147. extra: 1734/1652,
  38148. bottom: 41/1775
  38149. }
  38150. },
  38151. },
  38152. [
  38153. {
  38154. name: "Normal",
  38155. height: math.unit(7 + 6/12, "feet"),
  38156. default: true
  38157. },
  38158. ]
  38159. ))
  38160. characterMakers.push(() => makeCharacter(
  38161. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38162. {
  38163. goat: {
  38164. height: math.unit(4, "feet"),
  38165. weight: math.unit(180, "lb"),
  38166. name: "Goat",
  38167. image: {
  38168. source: "./media/characters/tiffany/goat.svg",
  38169. extra: 1845/1595,
  38170. bottom: 106/1951
  38171. }
  38172. },
  38173. front: {
  38174. height: math.unit(5, "feet"),
  38175. weight: math.unit(150, "lb"),
  38176. name: "Foxcoon",
  38177. image: {
  38178. source: "./media/characters/tiffany/foxcoon.svg",
  38179. extra: 1941/1845,
  38180. bottom: 58/1999
  38181. }
  38182. },
  38183. },
  38184. [
  38185. {
  38186. name: "Normal",
  38187. height: math.unit(5, "feet"),
  38188. default: true
  38189. },
  38190. ]
  38191. ))
  38192. characterMakers.push(() => makeCharacter(
  38193. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38194. {
  38195. front: {
  38196. height: math.unit(8, "feet"),
  38197. weight: math.unit(300, "lb"),
  38198. name: "Front",
  38199. image: {
  38200. source: "./media/characters/raxinath/front.svg",
  38201. extra: 1407/1309,
  38202. bottom: 39/1446
  38203. }
  38204. },
  38205. back: {
  38206. height: math.unit(8, "feet"),
  38207. weight: math.unit(300, "lb"),
  38208. name: "Back",
  38209. image: {
  38210. source: "./media/characters/raxinath/back.svg",
  38211. extra: 1405/1315,
  38212. bottom: 9/1414
  38213. }
  38214. },
  38215. },
  38216. [
  38217. {
  38218. name: "Speck",
  38219. height: math.unit(0.5, "nm")
  38220. },
  38221. {
  38222. name: "Micro",
  38223. height: math.unit(3, "inches")
  38224. },
  38225. {
  38226. name: "Kobold",
  38227. height: math.unit(3, "feet")
  38228. },
  38229. {
  38230. name: "Normal",
  38231. height: math.unit(8, "feet"),
  38232. default: true
  38233. },
  38234. {
  38235. name: "Giant",
  38236. height: math.unit(50, "feet")
  38237. },
  38238. {
  38239. name: "Macro",
  38240. height: math.unit(1000, "feet")
  38241. },
  38242. {
  38243. name: "Megamacro",
  38244. height: math.unit(1, "mile")
  38245. },
  38246. ]
  38247. ))
  38248. characterMakers.push(() => makeCharacter(
  38249. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38250. {
  38251. front: {
  38252. height: math.unit(10, "feet"),
  38253. weight: math.unit(1442, "lb"),
  38254. name: "Front",
  38255. image: {
  38256. source: "./media/characters/mal-dragon/front.svg",
  38257. extra: 1515/1444,
  38258. bottom: 113/1628
  38259. }
  38260. },
  38261. back: {
  38262. height: math.unit(10, "feet"),
  38263. weight: math.unit(1442, "lb"),
  38264. name: "Back",
  38265. image: {
  38266. source: "./media/characters/mal-dragon/back.svg",
  38267. extra: 1527/1434,
  38268. bottom: 25/1552
  38269. }
  38270. },
  38271. },
  38272. [
  38273. {
  38274. name: "Mortal Interaction",
  38275. height: math.unit(10, "feet"),
  38276. default: true
  38277. },
  38278. {
  38279. name: "Large",
  38280. height: math.unit(30, "feet")
  38281. },
  38282. {
  38283. name: "Kaiju",
  38284. height: math.unit(300, "feet")
  38285. },
  38286. {
  38287. name: "Megamacro",
  38288. height: math.unit(10000, "feet")
  38289. },
  38290. {
  38291. name: "Continent Cracker",
  38292. height: math.unit(30000000, "feet")
  38293. },
  38294. {
  38295. name: "Sol-Swallowing",
  38296. height: math.unit(1e11, "feet")
  38297. },
  38298. {
  38299. name: "Light Universal",
  38300. height: math.unit(5, "universes")
  38301. },
  38302. {
  38303. name: "Universe Atoms",
  38304. height: math.unit(1.829e9, "universes")
  38305. },
  38306. {
  38307. name: "Light Multiversal",
  38308. height: math.unit(5, "multiverses")
  38309. },
  38310. {
  38311. name: "Multiverse Atoms",
  38312. height: math.unit(1.829e9, "multiverses")
  38313. },
  38314. {
  38315. name: "Fabric of Time",
  38316. height: math.unit(1e262, "multiverses")
  38317. },
  38318. ]
  38319. ))
  38320. characterMakers.push(() => makeCharacter(
  38321. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38322. {
  38323. front: {
  38324. height: math.unit(9, "feet"),
  38325. weight: math.unit(1050, "lb"),
  38326. name: "Front",
  38327. image: {
  38328. source: "./media/characters/tabitha/front.svg",
  38329. extra: 2083/1994,
  38330. bottom: 68/2151
  38331. }
  38332. },
  38333. },
  38334. [
  38335. {
  38336. name: "Baseline",
  38337. height: math.unit(9, "feet"),
  38338. default: true
  38339. },
  38340. {
  38341. name: "Giant",
  38342. height: math.unit(90, "feet")
  38343. },
  38344. {
  38345. name: "Macro",
  38346. height: math.unit(900, "feet")
  38347. },
  38348. {
  38349. name: "Megamacro",
  38350. height: math.unit(9000, "feet")
  38351. },
  38352. {
  38353. name: "City-Crushing",
  38354. height: math.unit(27000, "feet")
  38355. },
  38356. {
  38357. name: "Mountain-Mashing",
  38358. height: math.unit(90000, "feet")
  38359. },
  38360. {
  38361. name: "Nation Nemesis",
  38362. height: math.unit(9e6, "feet")
  38363. },
  38364. {
  38365. name: "Continent Cracker",
  38366. height: math.unit(27e6, "feet")
  38367. },
  38368. {
  38369. name: "Earth-Eclipsing",
  38370. height: math.unit(2.7e8, "feet")
  38371. },
  38372. {
  38373. name: "Gas Giant Gulper",
  38374. height: math.unit(2.7e9, "feet")
  38375. },
  38376. {
  38377. name: "Sol-Swallowing",
  38378. height: math.unit(9e10, "feet")
  38379. },
  38380. {
  38381. name: "Galaxy Gulper",
  38382. height: math.unit(9, "galaxies")
  38383. },
  38384. {
  38385. name: "Cosmos Churner",
  38386. height: math.unit(9, "universes")
  38387. },
  38388. ]
  38389. ))
  38390. characterMakers.push(() => makeCharacter(
  38391. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38392. {
  38393. front: {
  38394. height: math.unit(160, "cm"),
  38395. weight: math.unit(55, "kg"),
  38396. name: "Front",
  38397. image: {
  38398. source: "./media/characters/tow/front.svg",
  38399. extra: 1751/1722,
  38400. bottom: 74/1825
  38401. }
  38402. },
  38403. },
  38404. [
  38405. {
  38406. name: "Norm",
  38407. height: math.unit(160, "cm")
  38408. },
  38409. {
  38410. name: "Casual",
  38411. height: math.unit(3200, "m"),
  38412. default: true
  38413. },
  38414. {
  38415. name: "Show-Off",
  38416. height: math.unit(160, "km")
  38417. },
  38418. ]
  38419. ))
  38420. characterMakers.push(() => makeCharacter(
  38421. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38422. {
  38423. front: {
  38424. height: math.unit(7 + 11/12, "feet"),
  38425. weight: math.unit(342.8, "lb"),
  38426. name: "Front",
  38427. image: {
  38428. source: "./media/characters/vivian-orca-dragon/front.svg",
  38429. extra: 1890/1865,
  38430. bottom: 28/1918
  38431. }
  38432. },
  38433. },
  38434. [
  38435. {
  38436. name: "Micro",
  38437. height: math.unit(5, "inches")
  38438. },
  38439. {
  38440. name: "Normal",
  38441. height: math.unit(7 + 11/12, "feet"),
  38442. default: true
  38443. },
  38444. {
  38445. name: "Macro",
  38446. height: math.unit(395 + 7/12, "feet")
  38447. },
  38448. ]
  38449. ))
  38450. characterMakers.push(() => makeCharacter(
  38451. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38452. {
  38453. side: {
  38454. height: math.unit(10, "feet"),
  38455. weight: math.unit(1442, "lb"),
  38456. name: "Side",
  38457. image: {
  38458. source: "./media/characters/lotherakon/side.svg",
  38459. extra: 1604/1497,
  38460. bottom: 89/1693
  38461. }
  38462. },
  38463. },
  38464. [
  38465. {
  38466. name: "Mortal Interaction",
  38467. height: math.unit(10, "feet")
  38468. },
  38469. {
  38470. name: "Large",
  38471. height: math.unit(30, "feet"),
  38472. default: true
  38473. },
  38474. {
  38475. name: "Giant",
  38476. height: math.unit(100, "feet")
  38477. },
  38478. {
  38479. name: "Kaiju",
  38480. height: math.unit(300, "feet")
  38481. },
  38482. {
  38483. name: "Macro",
  38484. height: math.unit(1000, "feet")
  38485. },
  38486. {
  38487. name: "Macro+",
  38488. height: math.unit(3000, "feet")
  38489. },
  38490. {
  38491. name: "Megamacro",
  38492. height: math.unit(10000, "feet")
  38493. },
  38494. {
  38495. name: "City-Crushing",
  38496. height: math.unit(30000, "feet")
  38497. },
  38498. {
  38499. name: "Continent Cracker",
  38500. height: math.unit(30e6, "feet")
  38501. },
  38502. {
  38503. name: "Earth Eclipsing",
  38504. height: math.unit(3e8, "feet")
  38505. },
  38506. {
  38507. name: "Gas Giant Gulper",
  38508. height: math.unit(3e9, "feet")
  38509. },
  38510. {
  38511. name: "Sol-Swallowing",
  38512. height: math.unit(1e11, "feet")
  38513. },
  38514. {
  38515. name: "System Swallower",
  38516. height: math.unit(3e14, "feet")
  38517. },
  38518. {
  38519. name: "Galaxy Gulper",
  38520. height: math.unit(10, "galaxies")
  38521. },
  38522. {
  38523. name: "Light Universal",
  38524. height: math.unit(5, "universes")
  38525. },
  38526. {
  38527. name: "Universe Palm",
  38528. height: math.unit(20, "universes")
  38529. },
  38530. {
  38531. name: "Light Multiversal",
  38532. height: math.unit(5, "multiverses")
  38533. },
  38534. {
  38535. name: "Multiverse Palm",
  38536. height: math.unit(20, "multiverses")
  38537. },
  38538. {
  38539. name: "Inferno Incarnate",
  38540. height: math.unit(1e7, "multiverses")
  38541. },
  38542. ]
  38543. ))
  38544. characterMakers.push(() => makeCharacter(
  38545. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38546. {
  38547. front: {
  38548. height: math.unit(8, "feet"),
  38549. weight: math.unit(1200, "lb"),
  38550. name: "Front",
  38551. image: {
  38552. source: "./media/characters/malithee/front.svg",
  38553. extra: 1675/1640,
  38554. bottom: 162/1837
  38555. }
  38556. },
  38557. },
  38558. [
  38559. {
  38560. name: "Mortal Interaction",
  38561. height: math.unit(8, "feet"),
  38562. default: true
  38563. },
  38564. {
  38565. name: "Large",
  38566. height: math.unit(24, "feet")
  38567. },
  38568. {
  38569. name: "Kaiju",
  38570. height: math.unit(240, "feet")
  38571. },
  38572. {
  38573. name: "Megamacro",
  38574. height: math.unit(8000, "feet")
  38575. },
  38576. {
  38577. name: "Continent Cracker",
  38578. height: math.unit(24e6, "feet")
  38579. },
  38580. {
  38581. name: "Earth-Eclipsing",
  38582. height: math.unit(2.4e8, "feet")
  38583. },
  38584. {
  38585. name: "Sol-Swallowing",
  38586. height: math.unit(8e10, "feet")
  38587. },
  38588. {
  38589. name: "Galaxy Gulper",
  38590. height: math.unit(8, "galaxies")
  38591. },
  38592. {
  38593. name: "Light Universal",
  38594. height: math.unit(4, "universes")
  38595. },
  38596. {
  38597. name: "Universe Atoms",
  38598. height: math.unit(1.829e9, "universes")
  38599. },
  38600. {
  38601. name: "Light Multiversal",
  38602. height: math.unit(4, "multiverses")
  38603. },
  38604. {
  38605. name: "Multiverse Atoms",
  38606. height: math.unit(1.829e9, "multiverses")
  38607. },
  38608. {
  38609. name: "Nigh-Omnipresence",
  38610. height: math.unit(8e261, "multiverses")
  38611. },
  38612. ]
  38613. ))
  38614. characterMakers.push(() => makeCharacter(
  38615. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38616. {
  38617. front: {
  38618. height: math.unit(10, "feet"),
  38619. weight: math.unit(1500, "lb"),
  38620. name: "Front",
  38621. image: {
  38622. source: "./media/characters/miles-thestia/front.svg",
  38623. extra: 1812/1727,
  38624. bottom: 86/1898
  38625. }
  38626. },
  38627. back: {
  38628. height: math.unit(10, "feet"),
  38629. weight: math.unit(1500, "lb"),
  38630. name: "Back",
  38631. image: {
  38632. source: "./media/characters/miles-thestia/back.svg",
  38633. extra: 1799/1690,
  38634. bottom: 47/1846
  38635. }
  38636. },
  38637. frontNsfw: {
  38638. height: math.unit(10, "feet"),
  38639. weight: math.unit(1500, "lb"),
  38640. name: "Front (NSFW)",
  38641. image: {
  38642. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38643. extra: 1812/1727,
  38644. bottom: 86/1898
  38645. }
  38646. },
  38647. },
  38648. [
  38649. {
  38650. name: "Mini-Macro",
  38651. height: math.unit(10, "feet"),
  38652. default: true
  38653. },
  38654. ]
  38655. ))
  38656. characterMakers.push(() => makeCharacter(
  38657. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38658. {
  38659. front: {
  38660. height: math.unit(25, "feet"),
  38661. name: "Front",
  38662. image: {
  38663. source: "./media/characters/titan-s-wulf/front.svg",
  38664. extra: 1560/1484,
  38665. bottom: 76/1636
  38666. }
  38667. },
  38668. },
  38669. [
  38670. {
  38671. name: "Smallest",
  38672. height: math.unit(25, "feet"),
  38673. default: true
  38674. },
  38675. {
  38676. name: "Normal",
  38677. height: math.unit(200, "feet")
  38678. },
  38679. {
  38680. name: "Macro",
  38681. height: math.unit(200000, "feet")
  38682. },
  38683. {
  38684. name: "Multiversal Original",
  38685. height: math.unit(10000, "multiverses")
  38686. },
  38687. ]
  38688. ))
  38689. characterMakers.push(() => makeCharacter(
  38690. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38691. {
  38692. front: {
  38693. height: math.unit(8, "feet"),
  38694. weight: math.unit(553, "lb"),
  38695. name: "Front",
  38696. image: {
  38697. source: "./media/characters/tawendeh/front.svg",
  38698. extra: 2365/2268,
  38699. bottom: 83/2448
  38700. }
  38701. },
  38702. frontClothed: {
  38703. height: math.unit(8, "feet"),
  38704. weight: math.unit(553, "lb"),
  38705. name: "Front (Clothed)",
  38706. image: {
  38707. source: "./media/characters/tawendeh/front-clothed.svg",
  38708. extra: 2365/2268,
  38709. bottom: 83/2448
  38710. }
  38711. },
  38712. back: {
  38713. height: math.unit(8, "feet"),
  38714. weight: math.unit(553, "lb"),
  38715. name: "Back",
  38716. image: {
  38717. source: "./media/characters/tawendeh/back.svg",
  38718. extra: 2397/2294,
  38719. bottom: 42/2439
  38720. }
  38721. },
  38722. },
  38723. [
  38724. {
  38725. name: "Mortal Interaction",
  38726. height: math.unit(8, "feet"),
  38727. default: true
  38728. },
  38729. {
  38730. name: "Giant",
  38731. height: math.unit(80, "feet")
  38732. },
  38733. {
  38734. name: "Macro",
  38735. height: math.unit(800, "feet")
  38736. },
  38737. {
  38738. name: "Megamacro",
  38739. height: math.unit(8000, "feet")
  38740. },
  38741. {
  38742. name: "City-Crushing",
  38743. height: math.unit(24000, "feet")
  38744. },
  38745. {
  38746. name: "Mountain-Mashing",
  38747. height: math.unit(80000, "feet")
  38748. },
  38749. {
  38750. name: "Nation Nemesis",
  38751. height: math.unit(8e6, "feet")
  38752. },
  38753. {
  38754. name: "Continent Cracker",
  38755. height: math.unit(24e6, "feet")
  38756. },
  38757. {
  38758. name: "Earth-Eclipsing",
  38759. height: math.unit(2.4e8, "feet")
  38760. },
  38761. {
  38762. name: "Gas Giant Gulper",
  38763. height: math.unit(2.4e9, "feet")
  38764. },
  38765. {
  38766. name: "Sol-Swallowing",
  38767. height: math.unit(8e10, "feet")
  38768. },
  38769. {
  38770. name: "Galaxy Gulper",
  38771. height: math.unit(8, "galaxies")
  38772. },
  38773. {
  38774. name: "Cosmos Churner",
  38775. height: math.unit(8, "universes")
  38776. },
  38777. {
  38778. name: "Omnipotent Otter",
  38779. height: math.unit(80, "universes")
  38780. },
  38781. ]
  38782. ))
  38783. characterMakers.push(() => makeCharacter(
  38784. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38785. {
  38786. front: {
  38787. height: math.unit(2.6, "meters"),
  38788. weight: math.unit(900, "kg"),
  38789. name: "Front",
  38790. image: {
  38791. source: "./media/characters/neesha/front.svg",
  38792. extra: 1803/1653,
  38793. bottom: 128/1931
  38794. }
  38795. },
  38796. },
  38797. [
  38798. {
  38799. name: "Normal",
  38800. height: math.unit(2.6, "meters"),
  38801. default: true
  38802. },
  38803. {
  38804. name: "Macro",
  38805. height: math.unit(50, "meters")
  38806. },
  38807. ]
  38808. ))
  38809. characterMakers.push(() => makeCharacter(
  38810. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38811. {
  38812. front: {
  38813. height: math.unit(5, "feet"),
  38814. weight: math.unit(185, "lb"),
  38815. name: "Front",
  38816. image: {
  38817. source: "./media/characters/kyera/front.svg",
  38818. extra: 1875/1790,
  38819. bottom: 96/1971
  38820. }
  38821. },
  38822. },
  38823. [
  38824. {
  38825. name: "Normal",
  38826. height: math.unit(5, "feet"),
  38827. default: true
  38828. },
  38829. ]
  38830. ))
  38831. characterMakers.push(() => makeCharacter(
  38832. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38833. {
  38834. front: {
  38835. height: math.unit(7 + 6/12, "feet"),
  38836. weight: math.unit(540, "lb"),
  38837. name: "Front",
  38838. image: {
  38839. source: "./media/characters/yuko/front.svg",
  38840. extra: 1282/1222,
  38841. bottom: 101/1383
  38842. }
  38843. },
  38844. frontClothed: {
  38845. height: math.unit(7 + 6/12, "feet"),
  38846. weight: math.unit(540, "lb"),
  38847. name: "Front (Clothed)",
  38848. image: {
  38849. source: "./media/characters/yuko/front-clothed.svg",
  38850. extra: 1282/1222,
  38851. bottom: 101/1383
  38852. }
  38853. },
  38854. },
  38855. [
  38856. {
  38857. name: "Normal",
  38858. height: math.unit(7 + 6/12, "feet"),
  38859. default: true
  38860. },
  38861. {
  38862. name: "Macro",
  38863. height: math.unit(26 + 9/12, "feet")
  38864. },
  38865. {
  38866. name: "Megamacro",
  38867. height: math.unit(300, "feet")
  38868. },
  38869. {
  38870. name: "Gigamacro",
  38871. height: math.unit(5000, "feet")
  38872. },
  38873. {
  38874. name: "Planetary",
  38875. height: math.unit(10000, "miles")
  38876. },
  38877. ]
  38878. ))
  38879. characterMakers.push(() => makeCharacter(
  38880. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38881. {
  38882. front: {
  38883. height: math.unit(8 + 2/12, "feet"),
  38884. weight: math.unit(600, "lb"),
  38885. name: "Front",
  38886. image: {
  38887. source: "./media/characters/deam-nitrel/front.svg",
  38888. extra: 1308/1234,
  38889. bottom: 125/1433
  38890. }
  38891. },
  38892. },
  38893. [
  38894. {
  38895. name: "Normal",
  38896. height: math.unit(8 + 2/12, "feet"),
  38897. default: true
  38898. },
  38899. ]
  38900. ))
  38901. characterMakers.push(() => makeCharacter(
  38902. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38903. {
  38904. front: {
  38905. height: math.unit(6.1, "feet"),
  38906. weight: math.unit(180, "lb"),
  38907. name: "Front",
  38908. image: {
  38909. source: "./media/characters/skyress/front.svg",
  38910. extra: 1045/915,
  38911. bottom: 28/1073
  38912. }
  38913. },
  38914. maw: {
  38915. height: math.unit(1, "feet"),
  38916. name: "Maw",
  38917. image: {
  38918. source: "./media/characters/skyress/maw.svg"
  38919. }
  38920. },
  38921. },
  38922. [
  38923. {
  38924. name: "Normal",
  38925. height: math.unit(6.1, "feet"),
  38926. default: true
  38927. },
  38928. {
  38929. name: "Macro",
  38930. height: math.unit(200, "feet")
  38931. },
  38932. ]
  38933. ))
  38934. characterMakers.push(() => makeCharacter(
  38935. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38936. {
  38937. front: {
  38938. height: math.unit(4 + 2/12, "feet"),
  38939. weight: math.unit(40, "kg"),
  38940. name: "Front",
  38941. image: {
  38942. source: "./media/characters/amethyst-jones/front.svg",
  38943. extra: 1220/1150,
  38944. bottom: 101/1321
  38945. }
  38946. },
  38947. },
  38948. [
  38949. {
  38950. name: "Normal",
  38951. height: math.unit(4 + 2/12, "feet"),
  38952. default: true
  38953. },
  38954. ]
  38955. ))
  38956. characterMakers.push(() => makeCharacter(
  38957. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38958. {
  38959. front: {
  38960. height: math.unit(1.7, "m"),
  38961. weight: math.unit(135, "lb"),
  38962. name: "Front",
  38963. image: {
  38964. source: "./media/characters/jade/front.svg",
  38965. extra: 1818/1767,
  38966. bottom: 32/1850
  38967. }
  38968. },
  38969. back: {
  38970. height: math.unit(1.7, "m"),
  38971. weight: math.unit(135, "lb"),
  38972. name: "Back",
  38973. image: {
  38974. source: "./media/characters/jade/back.svg",
  38975. extra: 1869/1809,
  38976. bottom: 35/1904
  38977. }
  38978. },
  38979. hand: {
  38980. height: math.unit(0.24, "m"),
  38981. name: "Hand",
  38982. image: {
  38983. source: "./media/characters/jade/hand.svg"
  38984. }
  38985. },
  38986. foot: {
  38987. height: math.unit(0.263, "m"),
  38988. name: "Foot",
  38989. image: {
  38990. source: "./media/characters/jade/foot.svg"
  38991. }
  38992. },
  38993. dick: {
  38994. height: math.unit(0.47, "m"),
  38995. name: "Dick",
  38996. image: {
  38997. source: "./media/characters/jade/dick.svg"
  38998. }
  38999. },
  39000. },
  39001. [
  39002. {
  39003. name: "Micro",
  39004. height: math.unit(22, "cm")
  39005. },
  39006. {
  39007. name: "Normal",
  39008. height: math.unit(1.7, "m"),
  39009. default: true
  39010. },
  39011. {
  39012. name: "Macro",
  39013. height: math.unit(152, "m")
  39014. },
  39015. ]
  39016. ))
  39017. characterMakers.push(() => makeCharacter(
  39018. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39019. {
  39020. front: {
  39021. height: math.unit(100, "miles"),
  39022. weight: math.unit(20000, "tons"),
  39023. name: "Front",
  39024. image: {
  39025. source: "./media/characters/cookie/front.svg",
  39026. extra: 1125/1070,
  39027. bottom: 30/1155
  39028. }
  39029. },
  39030. },
  39031. [
  39032. {
  39033. name: "Big",
  39034. height: math.unit(50, "feet")
  39035. },
  39036. {
  39037. name: "Macro",
  39038. height: math.unit(100, "miles"),
  39039. default: true
  39040. },
  39041. {
  39042. name: "Megamacro",
  39043. height: math.unit(90000, "miles")
  39044. },
  39045. ]
  39046. ))
  39047. characterMakers.push(() => makeCharacter(
  39048. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39049. {
  39050. front: {
  39051. height: math.unit(6, "feet"),
  39052. weight: math.unit(145, "lb"),
  39053. name: "Front",
  39054. image: {
  39055. source: "./media/characters/farzian/front.svg",
  39056. extra: 1902/1693,
  39057. bottom: 108/2010
  39058. }
  39059. },
  39060. },
  39061. [
  39062. {
  39063. name: "Macro",
  39064. height: math.unit(500, "feet"),
  39065. default: true
  39066. },
  39067. ]
  39068. ))
  39069. characterMakers.push(() => makeCharacter(
  39070. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39071. {
  39072. front: {
  39073. height: math.unit(3 + 6/12, "feet"),
  39074. weight: math.unit(50, "lb"),
  39075. name: "Front",
  39076. image: {
  39077. source: "./media/characters/kimberly-tilson/front.svg",
  39078. extra: 1400/1322,
  39079. bottom: 36/1436
  39080. }
  39081. },
  39082. back: {
  39083. height: math.unit(3 + 6/12, "feet"),
  39084. weight: math.unit(50, "lb"),
  39085. name: "Back",
  39086. image: {
  39087. source: "./media/characters/kimberly-tilson/back.svg",
  39088. extra: 1370/1307,
  39089. bottom: 20/1390
  39090. }
  39091. },
  39092. },
  39093. [
  39094. {
  39095. name: "Normal",
  39096. height: math.unit(3 + 6/12, "feet"),
  39097. default: true
  39098. },
  39099. ]
  39100. ))
  39101. characterMakers.push(() => makeCharacter(
  39102. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39103. {
  39104. front: {
  39105. height: math.unit(1148, "feet"),
  39106. weight: math.unit(34057, "lb"),
  39107. name: "Front",
  39108. image: {
  39109. source: "./media/characters/harthos/front.svg",
  39110. extra: 1391/1339,
  39111. bottom: 13/1404
  39112. }
  39113. },
  39114. },
  39115. [
  39116. {
  39117. name: "Macro",
  39118. height: math.unit(1148, "feet"),
  39119. default: true
  39120. },
  39121. ]
  39122. ))
  39123. characterMakers.push(() => makeCharacter(
  39124. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39125. {
  39126. front: {
  39127. height: math.unit(15, "feet"),
  39128. name: "Front",
  39129. image: {
  39130. source: "./media/characters/hypatia/front.svg",
  39131. extra: 1653/1591,
  39132. bottom: 79/1732
  39133. }
  39134. },
  39135. },
  39136. [
  39137. {
  39138. name: "Normal",
  39139. height: math.unit(15, "feet")
  39140. },
  39141. {
  39142. name: "Small",
  39143. height: math.unit(300, "feet")
  39144. },
  39145. {
  39146. name: "Macro",
  39147. height: math.unit(2500, "feet"),
  39148. default: true
  39149. },
  39150. {
  39151. name: "Mega Macro",
  39152. height: math.unit(1500, "miles")
  39153. },
  39154. {
  39155. name: "Giga Macro",
  39156. height: math.unit(1.5e6, "miles")
  39157. },
  39158. ]
  39159. ))
  39160. characterMakers.push(() => makeCharacter(
  39161. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39162. {
  39163. front: {
  39164. height: math.unit(6, "feet"),
  39165. weight: math.unit(200, "lb"),
  39166. name: "Front",
  39167. image: {
  39168. source: "./media/characters/wulver/front.svg",
  39169. extra: 1724/1632,
  39170. bottom: 130/1854
  39171. }
  39172. },
  39173. frontNsfw: {
  39174. height: math.unit(6, "feet"),
  39175. weight: math.unit(200, "lb"),
  39176. name: "Front (NSFW)",
  39177. image: {
  39178. source: "./media/characters/wulver/front-nsfw.svg",
  39179. extra: 1724/1632,
  39180. bottom: 130/1854
  39181. }
  39182. },
  39183. },
  39184. [
  39185. {
  39186. name: "Human-Sized",
  39187. height: math.unit(6, "feet")
  39188. },
  39189. {
  39190. name: "Normal",
  39191. height: math.unit(4, "meters"),
  39192. default: true
  39193. },
  39194. {
  39195. name: "Large",
  39196. height: math.unit(6, "m")
  39197. },
  39198. ]
  39199. ))
  39200. characterMakers.push(() => makeCharacter(
  39201. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39202. {
  39203. front: {
  39204. height: math.unit(7, "feet"),
  39205. name: "Front",
  39206. image: {
  39207. source: "./media/characters/maru/front.svg",
  39208. extra: 1595/1570,
  39209. bottom: 0/1595
  39210. }
  39211. },
  39212. },
  39213. [
  39214. {
  39215. name: "Normal",
  39216. height: math.unit(7, "feet"),
  39217. default: true
  39218. },
  39219. {
  39220. name: "Macro",
  39221. height: math.unit(700, "feet")
  39222. },
  39223. {
  39224. name: "Mega Macro",
  39225. height: math.unit(25, "miles")
  39226. },
  39227. ]
  39228. ))
  39229. characterMakers.push(() => makeCharacter(
  39230. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39231. {
  39232. front: {
  39233. height: math.unit(6, "feet"),
  39234. weight: math.unit(170, "lb"),
  39235. name: "Front",
  39236. image: {
  39237. source: "./media/characters/xenon/front.svg",
  39238. extra: 1376/1305,
  39239. bottom: 56/1432
  39240. }
  39241. },
  39242. back: {
  39243. height: math.unit(6, "feet"),
  39244. weight: math.unit(170, "lb"),
  39245. name: "Back",
  39246. image: {
  39247. source: "./media/characters/xenon/back.svg",
  39248. extra: 1328/1259,
  39249. bottom: 95/1423
  39250. }
  39251. },
  39252. maw: {
  39253. height: math.unit(0.52, "feet"),
  39254. name: "Maw",
  39255. image: {
  39256. source: "./media/characters/xenon/maw.svg"
  39257. }
  39258. },
  39259. hand: {
  39260. height: math.unit(0.82, "feet"),
  39261. name: "Hand",
  39262. image: {
  39263. source: "./media/characters/xenon/hand.svg"
  39264. }
  39265. },
  39266. foot: {
  39267. height: math.unit(1.13, "feet"),
  39268. name: "Foot",
  39269. image: {
  39270. source: "./media/characters/xenon/foot.svg"
  39271. }
  39272. },
  39273. },
  39274. [
  39275. {
  39276. name: "Micro",
  39277. height: math.unit(0.8, "inches")
  39278. },
  39279. {
  39280. name: "Normal",
  39281. height: math.unit(6, "feet")
  39282. },
  39283. {
  39284. name: "Macro",
  39285. height: math.unit(50, "feet"),
  39286. default: true
  39287. },
  39288. {
  39289. name: "Macro+",
  39290. height: math.unit(250, "feet")
  39291. },
  39292. {
  39293. name: "Megamacro",
  39294. height: math.unit(1500, "feet")
  39295. },
  39296. ]
  39297. ))
  39298. characterMakers.push(() => makeCharacter(
  39299. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39300. {
  39301. front: {
  39302. height: math.unit(7 + 5/12, "feet"),
  39303. name: "Front",
  39304. image: {
  39305. source: "./media/characters/zane/front.svg",
  39306. extra: 1260/1203,
  39307. bottom: 94/1354
  39308. }
  39309. },
  39310. back: {
  39311. height: math.unit(5.05, "feet"),
  39312. name: "Back",
  39313. image: {
  39314. source: "./media/characters/zane/back.svg",
  39315. extra: 893/829,
  39316. bottom: 30/923
  39317. }
  39318. },
  39319. werewolf: {
  39320. height: math.unit(11, "feet"),
  39321. name: "Werewolf",
  39322. image: {
  39323. source: "./media/characters/zane/werewolf.svg",
  39324. extra: 1383/1323,
  39325. bottom: 89/1472
  39326. }
  39327. },
  39328. foot: {
  39329. height: math.unit(1.46, "feet"),
  39330. name: "Foot",
  39331. image: {
  39332. source: "./media/characters/zane/foot.svg"
  39333. }
  39334. },
  39335. footFront: {
  39336. height: math.unit(0.784, "feet"),
  39337. name: "Foot (Front)",
  39338. image: {
  39339. source: "./media/characters/zane/foot-front.svg"
  39340. }
  39341. },
  39342. dick: {
  39343. height: math.unit(1.95, "feet"),
  39344. name: "Dick",
  39345. image: {
  39346. source: "./media/characters/zane/dick.svg"
  39347. }
  39348. },
  39349. dickWerewolf: {
  39350. height: math.unit(3.77, "feet"),
  39351. name: "Dick (Werewolf)",
  39352. image: {
  39353. source: "./media/characters/zane/dick.svg"
  39354. }
  39355. },
  39356. },
  39357. [
  39358. {
  39359. name: "Normal",
  39360. height: math.unit(7 + 5/12, "feet"),
  39361. default: true
  39362. },
  39363. ]
  39364. ))
  39365. characterMakers.push(() => makeCharacter(
  39366. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39367. {
  39368. front: {
  39369. height: math.unit(6 + 2/12, "feet"),
  39370. weight: math.unit(284, "lb"),
  39371. name: "Front",
  39372. image: {
  39373. source: "./media/characters/benni-desparque/front.svg",
  39374. extra: 1353/1126,
  39375. bottom: 69/1422
  39376. }
  39377. },
  39378. },
  39379. [
  39380. {
  39381. name: "Civilian",
  39382. height: math.unit(6 + 2/12, "feet")
  39383. },
  39384. {
  39385. name: "Normal",
  39386. height: math.unit(98, "feet"),
  39387. default: true
  39388. },
  39389. {
  39390. name: "Kaiju Fighter",
  39391. height: math.unit(268, "feet")
  39392. },
  39393. ]
  39394. ))
  39395. characterMakers.push(() => makeCharacter(
  39396. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39397. {
  39398. front: {
  39399. height: math.unit(5, "feet"),
  39400. weight: math.unit(105, "lb"),
  39401. name: "Front",
  39402. image: {
  39403. source: "./media/characters/maxine/front.svg",
  39404. extra: 1386/1250,
  39405. bottom: 71/1457
  39406. }
  39407. },
  39408. },
  39409. [
  39410. {
  39411. name: "Normal",
  39412. height: math.unit(5, "feet"),
  39413. default: true
  39414. },
  39415. ]
  39416. ))
  39417. characterMakers.push(() => makeCharacter(
  39418. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39419. {
  39420. front: {
  39421. height: math.unit(11 + 7/12, "feet"),
  39422. weight: math.unit(9576, "lb"),
  39423. name: "Front",
  39424. image: {
  39425. source: "./media/characters/scaly/front.svg",
  39426. extra: 888/867,
  39427. bottom: 36/924
  39428. }
  39429. },
  39430. },
  39431. [
  39432. {
  39433. name: "Normal",
  39434. height: math.unit(11 + 7/12, "feet"),
  39435. default: true
  39436. },
  39437. ]
  39438. ))
  39439. characterMakers.push(() => makeCharacter(
  39440. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39441. {
  39442. front: {
  39443. height: math.unit(9, "inches"),
  39444. name: "Front",
  39445. image: {
  39446. source: "./media/characters/saelria/front.svg",
  39447. extra: 662/621,
  39448. bottom: 12/674
  39449. }
  39450. },
  39451. },
  39452. [
  39453. {
  39454. name: "Tiny",
  39455. height: math.unit(9, "inches"),
  39456. default: true
  39457. },
  39458. ]
  39459. ))
  39460. characterMakers.push(() => makeCharacter(
  39461. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39462. {
  39463. front: {
  39464. height: math.unit(80, "meters"),
  39465. weight: math.unit(7000, "tonnes"),
  39466. name: "Front",
  39467. image: {
  39468. source: "./media/characters/tef/front.svg",
  39469. extra: 2036/1991,
  39470. bottom: 54/2090
  39471. }
  39472. },
  39473. back: {
  39474. height: math.unit(80, "meters"),
  39475. weight: math.unit(7000, "tonnes"),
  39476. name: "Back",
  39477. image: {
  39478. source: "./media/characters/tef/back.svg",
  39479. extra: 2036/1991,
  39480. bottom: 54/2090
  39481. }
  39482. },
  39483. },
  39484. [
  39485. {
  39486. name: "Macro",
  39487. height: math.unit(80, "meters"),
  39488. default: true
  39489. },
  39490. ]
  39491. ))
  39492. characterMakers.push(() => makeCharacter(
  39493. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39494. {
  39495. front: {
  39496. height: math.unit(13, "feet"),
  39497. weight: math.unit(6, "tons"),
  39498. name: "Front",
  39499. image: {
  39500. source: "./media/characters/rover/front.svg",
  39501. extra: 1233/1156,
  39502. bottom: 50/1283
  39503. }
  39504. },
  39505. back: {
  39506. height: math.unit(13, "feet"),
  39507. weight: math.unit(6, "tons"),
  39508. name: "Back",
  39509. image: {
  39510. source: "./media/characters/rover/back.svg",
  39511. extra: 1327/1258,
  39512. bottom: 39/1366
  39513. }
  39514. },
  39515. },
  39516. [
  39517. {
  39518. name: "Normal",
  39519. height: math.unit(13, "feet"),
  39520. default: true
  39521. },
  39522. {
  39523. name: "Macro",
  39524. height: math.unit(1300, "feet")
  39525. },
  39526. {
  39527. name: "Megamacro",
  39528. height: math.unit(1300, "miles")
  39529. },
  39530. {
  39531. name: "Gigamacro",
  39532. height: math.unit(1300000, "miles")
  39533. },
  39534. ]
  39535. ))
  39536. characterMakers.push(() => makeCharacter(
  39537. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39538. {
  39539. front: {
  39540. height: math.unit(6, "feet"),
  39541. weight: math.unit(150, "lb"),
  39542. name: "Front",
  39543. image: {
  39544. source: "./media/characters/ariz/front.svg",
  39545. extra: 1401/1346,
  39546. bottom: 5/1406
  39547. }
  39548. },
  39549. },
  39550. [
  39551. {
  39552. name: "Normal",
  39553. height: math.unit(10, "feet"),
  39554. default: true
  39555. },
  39556. ]
  39557. ))
  39558. characterMakers.push(() => makeCharacter(
  39559. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39560. {
  39561. front: {
  39562. height: math.unit(6, "feet"),
  39563. weight: math.unit(140, "lb"),
  39564. name: "Front",
  39565. image: {
  39566. source: "./media/characters/sigrun/front.svg",
  39567. extra: 1418/1359,
  39568. bottom: 27/1445
  39569. }
  39570. },
  39571. },
  39572. [
  39573. {
  39574. name: "Macro",
  39575. height: math.unit(35, "feet"),
  39576. default: true
  39577. },
  39578. ]
  39579. ))
  39580. characterMakers.push(() => makeCharacter(
  39581. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39582. {
  39583. front: {
  39584. height: math.unit(6, "feet"),
  39585. weight: math.unit(150, "lb"),
  39586. name: "Front",
  39587. image: {
  39588. source: "./media/characters/numin/front.svg",
  39589. extra: 1433/1388,
  39590. bottom: 12/1445
  39591. }
  39592. },
  39593. },
  39594. [
  39595. {
  39596. name: "Macro",
  39597. height: math.unit(21.5, "km"),
  39598. default: true
  39599. },
  39600. ]
  39601. ))
  39602. characterMakers.push(() => makeCharacter(
  39603. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39604. {
  39605. front: {
  39606. height: math.unit(6, "feet"),
  39607. weight: math.unit(463, "lb"),
  39608. name: "Front",
  39609. image: {
  39610. source: "./media/characters/melwa/front.svg",
  39611. extra: 1307/1248,
  39612. bottom: 93/1400
  39613. }
  39614. },
  39615. },
  39616. [
  39617. {
  39618. name: "Macro",
  39619. height: math.unit(50, "meters"),
  39620. default: true
  39621. },
  39622. ]
  39623. ))
  39624. characterMakers.push(() => makeCharacter(
  39625. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39626. {
  39627. front: {
  39628. height: math.unit(325, "feet"),
  39629. name: "Front",
  39630. image: {
  39631. source: "./media/characters/zorkaiju/front.svg",
  39632. extra: 1955/1814,
  39633. bottom: 40/1995
  39634. }
  39635. },
  39636. frontExtended: {
  39637. height: math.unit(325, "feet"),
  39638. name: "Front (Extended)",
  39639. image: {
  39640. source: "./media/characters/zorkaiju/front-extended.svg",
  39641. extra: 1955/1814,
  39642. bottom: 40/1995
  39643. }
  39644. },
  39645. side: {
  39646. height: math.unit(325, "feet"),
  39647. name: "Side",
  39648. image: {
  39649. source: "./media/characters/zorkaiju/side.svg",
  39650. extra: 1495/1396,
  39651. bottom: 17/1512
  39652. }
  39653. },
  39654. sideExtended: {
  39655. height: math.unit(325, "feet"),
  39656. name: "Side (Extended)",
  39657. image: {
  39658. source: "./media/characters/zorkaiju/side-extended.svg",
  39659. extra: 1495/1396,
  39660. bottom: 17/1512
  39661. }
  39662. },
  39663. back: {
  39664. height: math.unit(325, "feet"),
  39665. name: "Back",
  39666. image: {
  39667. source: "./media/characters/zorkaiju/back.svg",
  39668. extra: 1959/1821,
  39669. bottom: 31/1990
  39670. }
  39671. },
  39672. backExtended: {
  39673. height: math.unit(325, "feet"),
  39674. name: "Back (Extended)",
  39675. image: {
  39676. source: "./media/characters/zorkaiju/back-extended.svg",
  39677. extra: 1959/1821,
  39678. bottom: 31/1990
  39679. }
  39680. },
  39681. hand: {
  39682. height: math.unit(58.4, "feet"),
  39683. name: "Hand",
  39684. image: {
  39685. source: "./media/characters/zorkaiju/hand.svg"
  39686. }
  39687. },
  39688. handExtended: {
  39689. height: math.unit(61.4, "feet"),
  39690. name: "Hand (Extended)",
  39691. image: {
  39692. source: "./media/characters/zorkaiju/hand-extended.svg"
  39693. }
  39694. },
  39695. foot: {
  39696. height: math.unit(95, "feet"),
  39697. name: "Foot",
  39698. image: {
  39699. source: "./media/characters/zorkaiju/foot.svg"
  39700. }
  39701. },
  39702. leftArm: {
  39703. height: math.unit(59, "feet"),
  39704. name: "Left Arm",
  39705. image: {
  39706. source: "./media/characters/zorkaiju/left-arm.svg"
  39707. }
  39708. },
  39709. rightArm: {
  39710. height: math.unit(59, "feet"),
  39711. name: "Right Arm",
  39712. image: {
  39713. source: "./media/characters/zorkaiju/right-arm.svg"
  39714. }
  39715. },
  39716. tail: {
  39717. height: math.unit(104, "feet"),
  39718. name: "Tail",
  39719. image: {
  39720. source: "./media/characters/zorkaiju/tail.svg"
  39721. }
  39722. },
  39723. tailExtended: {
  39724. height: math.unit(104, "feet"),
  39725. name: "Tail (Extended)",
  39726. image: {
  39727. source: "./media/characters/zorkaiju/tail-extended.svg"
  39728. }
  39729. },
  39730. tailBottom: {
  39731. height: math.unit(104, "feet"),
  39732. name: "Tail Bottom",
  39733. image: {
  39734. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39735. }
  39736. },
  39737. crystal: {
  39738. height: math.unit(27.54, "feet"),
  39739. name: "Crystal",
  39740. image: {
  39741. source: "./media/characters/zorkaiju/crystal.svg"
  39742. }
  39743. },
  39744. },
  39745. [
  39746. {
  39747. name: "Kaiju",
  39748. height: math.unit(325, "feet"),
  39749. default: true
  39750. },
  39751. ]
  39752. ))
  39753. characterMakers.push(() => makeCharacter(
  39754. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39755. {
  39756. front: {
  39757. height: math.unit(6 + 1/12, "feet"),
  39758. weight: math.unit(115, "lb"),
  39759. name: "Front",
  39760. image: {
  39761. source: "./media/characters/bailey-belfry/front.svg",
  39762. extra: 1240/1121,
  39763. bottom: 101/1341
  39764. }
  39765. },
  39766. },
  39767. [
  39768. {
  39769. name: "Normal",
  39770. height: math.unit(6 + 1/12, "feet"),
  39771. default: true
  39772. },
  39773. ]
  39774. ))
  39775. characterMakers.push(() => makeCharacter(
  39776. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39777. {
  39778. side: {
  39779. height: math.unit(4, "meters"),
  39780. weight: math.unit(250, "kg"),
  39781. name: "Side",
  39782. image: {
  39783. source: "./media/characters/blacky/side.svg",
  39784. extra: 1027/919,
  39785. bottom: 43/1070
  39786. }
  39787. },
  39788. maw: {
  39789. height: math.unit(1, "meters"),
  39790. name: "Maw",
  39791. image: {
  39792. source: "./media/characters/blacky/maw.svg"
  39793. }
  39794. },
  39795. paw: {
  39796. height: math.unit(1, "meters"),
  39797. name: "Paw",
  39798. image: {
  39799. source: "./media/characters/blacky/paw.svg"
  39800. }
  39801. },
  39802. },
  39803. [
  39804. {
  39805. name: "Normal",
  39806. height: math.unit(4, "meters"),
  39807. default: true
  39808. },
  39809. ]
  39810. ))
  39811. characterMakers.push(() => makeCharacter(
  39812. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39813. {
  39814. front: {
  39815. height: math.unit(170, "cm"),
  39816. weight: math.unit(66, "kg"),
  39817. name: "Front",
  39818. image: {
  39819. source: "./media/characters/thux-ei/front.svg",
  39820. extra: 1109/1011,
  39821. bottom: 8/1117
  39822. }
  39823. },
  39824. },
  39825. [
  39826. {
  39827. name: "Normal",
  39828. height: math.unit(170, "cm"),
  39829. default: true
  39830. },
  39831. ]
  39832. ))
  39833. characterMakers.push(() => makeCharacter(
  39834. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39835. {
  39836. front: {
  39837. height: math.unit(5, "feet"),
  39838. weight: math.unit(120, "lb"),
  39839. name: "Front",
  39840. image: {
  39841. source: "./media/characters/roxanne-voltaire/front.svg",
  39842. extra: 1901/1779,
  39843. bottom: 53/1954
  39844. }
  39845. },
  39846. },
  39847. [
  39848. {
  39849. name: "Normal",
  39850. height: math.unit(5, "feet"),
  39851. default: true
  39852. },
  39853. {
  39854. name: "Giant",
  39855. height: math.unit(50, "feet")
  39856. },
  39857. {
  39858. name: "Titan",
  39859. height: math.unit(500, "feet")
  39860. },
  39861. {
  39862. name: "Macro",
  39863. height: math.unit(5000, "feet")
  39864. },
  39865. {
  39866. name: "Megamacro",
  39867. height: math.unit(50000, "feet")
  39868. },
  39869. {
  39870. name: "Gigamacro",
  39871. height: math.unit(500000, "feet")
  39872. },
  39873. {
  39874. name: "Teramacro",
  39875. height: math.unit(5e6, "feet")
  39876. },
  39877. ]
  39878. ))
  39879. characterMakers.push(() => makeCharacter(
  39880. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39881. {
  39882. front: {
  39883. height: math.unit(6 + 2/12, "feet"),
  39884. name: "Front",
  39885. image: {
  39886. source: "./media/characters/squeaks/front.svg",
  39887. extra: 1823/1768,
  39888. bottom: 138/1961
  39889. }
  39890. },
  39891. },
  39892. [
  39893. {
  39894. name: "Micro",
  39895. height: math.unit(0.5, "inches")
  39896. },
  39897. {
  39898. name: "Normal",
  39899. height: math.unit(6 + 2/12, "feet"),
  39900. default: true
  39901. },
  39902. {
  39903. name: "Macro",
  39904. height: math.unit(600, "feet")
  39905. },
  39906. ]
  39907. ))
  39908. characterMakers.push(() => makeCharacter(
  39909. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39910. {
  39911. front: {
  39912. height: math.unit(1.72, "meters"),
  39913. name: "Front",
  39914. image: {
  39915. source: "./media/characters/archinger/front.svg",
  39916. extra: 1861/1675,
  39917. bottom: 125/1986
  39918. }
  39919. },
  39920. back: {
  39921. height: math.unit(1.72, "meters"),
  39922. name: "Back",
  39923. image: {
  39924. source: "./media/characters/archinger/back.svg",
  39925. extra: 1844/1701,
  39926. bottom: 104/1948
  39927. }
  39928. },
  39929. cock: {
  39930. height: math.unit(0.59, "feet"),
  39931. name: "Cock",
  39932. image: {
  39933. source: "./media/characters/archinger/cock.svg"
  39934. }
  39935. },
  39936. },
  39937. [
  39938. {
  39939. name: "Normal",
  39940. height: math.unit(1.72, "meters"),
  39941. default: true
  39942. },
  39943. {
  39944. name: "Macro",
  39945. height: math.unit(84, "meters")
  39946. },
  39947. {
  39948. name: "Macro+",
  39949. height: math.unit(112, "meters")
  39950. },
  39951. {
  39952. name: "Macro++",
  39953. height: math.unit(960, "meters")
  39954. },
  39955. {
  39956. name: "Macro+++",
  39957. height: math.unit(4, "km")
  39958. },
  39959. {
  39960. name: "Macro++++",
  39961. height: math.unit(48, "km")
  39962. },
  39963. {
  39964. name: "Macro+++++",
  39965. height: math.unit(4500, "km")
  39966. },
  39967. ]
  39968. ))
  39969. characterMakers.push(() => makeCharacter(
  39970. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39971. {
  39972. front: {
  39973. height: math.unit(5 + 5/12, "feet"),
  39974. name: "Front",
  39975. image: {
  39976. source: "./media/characters/alsnapz/front.svg",
  39977. extra: 1157/1065,
  39978. bottom: 42/1199
  39979. }
  39980. },
  39981. },
  39982. [
  39983. {
  39984. name: "Normal",
  39985. height: math.unit(5 + 5/12, "feet"),
  39986. default: true
  39987. },
  39988. ]
  39989. ))
  39990. characterMakers.push(() => makeCharacter(
  39991. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39992. {
  39993. side: {
  39994. height: math.unit(3.2, "earths"),
  39995. name: "Side",
  39996. image: {
  39997. source: "./media/characters/mag/side.svg",
  39998. extra: 1331/1008,
  39999. bottom: 52/1383
  40000. }
  40001. },
  40002. wing: {
  40003. height: math.unit(1.94, "earths"),
  40004. name: "Wing",
  40005. image: {
  40006. source: "./media/characters/mag/wing.svg"
  40007. }
  40008. },
  40009. dick: {
  40010. height: math.unit(1.8, "earths"),
  40011. name: "Dick",
  40012. image: {
  40013. source: "./media/characters/mag/dick.svg"
  40014. }
  40015. },
  40016. ass: {
  40017. height: math.unit(1.33, "earths"),
  40018. name: "Ass",
  40019. image: {
  40020. source: "./media/characters/mag/ass.svg"
  40021. }
  40022. },
  40023. head: {
  40024. height: math.unit(1.1, "earths"),
  40025. name: "Head",
  40026. image: {
  40027. source: "./media/characters/mag/head.svg"
  40028. }
  40029. },
  40030. maw: {
  40031. height: math.unit(1.62, "earths"),
  40032. name: "Maw",
  40033. image: {
  40034. source: "./media/characters/mag/maw.svg"
  40035. }
  40036. },
  40037. },
  40038. [
  40039. {
  40040. name: "Small",
  40041. height: math.unit(162, "feet")
  40042. },
  40043. {
  40044. name: "Normal",
  40045. height: math.unit(3.2, "earths"),
  40046. default: true
  40047. },
  40048. ]
  40049. ))
  40050. characterMakers.push(() => makeCharacter(
  40051. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40052. {
  40053. front: {
  40054. height: math.unit(512, "feet"),
  40055. weight: math.unit(63509, "tonnes"),
  40056. name: "Front",
  40057. image: {
  40058. source: "./media/characters/vorrel-harroc/front.svg",
  40059. extra: 1075/1063,
  40060. bottom: 62/1137
  40061. }
  40062. },
  40063. },
  40064. [
  40065. {
  40066. name: "Normal",
  40067. height: math.unit(10, "feet")
  40068. },
  40069. {
  40070. name: "Macro",
  40071. height: math.unit(512, "feet"),
  40072. default: true
  40073. },
  40074. {
  40075. name: "Megamacro",
  40076. height: math.unit(256, "miles")
  40077. },
  40078. {
  40079. name: "Gigamacro",
  40080. height: math.unit(4096, "miles")
  40081. },
  40082. ]
  40083. ))
  40084. characterMakers.push(() => makeCharacter(
  40085. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40086. {
  40087. side: {
  40088. height: math.unit(50, "feet"),
  40089. name: "Side",
  40090. image: {
  40091. source: "./media/characters/froimar/side.svg",
  40092. extra: 855/638,
  40093. bottom: 99/954
  40094. }
  40095. },
  40096. },
  40097. [
  40098. {
  40099. name: "Macro",
  40100. height: math.unit(50, "feet"),
  40101. default: true
  40102. },
  40103. ]
  40104. ))
  40105. characterMakers.push(() => makeCharacter(
  40106. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40107. {
  40108. front: {
  40109. height: math.unit(210, "miles"),
  40110. name: "Front",
  40111. image: {
  40112. source: "./media/characters/timothy/front.svg",
  40113. extra: 1007/943,
  40114. bottom: 62/1069
  40115. }
  40116. },
  40117. frontSkirt: {
  40118. height: math.unit(210, "miles"),
  40119. name: "Front (Skirt)",
  40120. image: {
  40121. source: "./media/characters/timothy/front-skirt.svg",
  40122. extra: 1007/943,
  40123. bottom: 62/1069
  40124. }
  40125. },
  40126. frontCoat: {
  40127. height: math.unit(210, "miles"),
  40128. name: "Front (Coat)",
  40129. image: {
  40130. source: "./media/characters/timothy/front-coat.svg",
  40131. extra: 1007/943,
  40132. bottom: 62/1069
  40133. }
  40134. },
  40135. },
  40136. [
  40137. {
  40138. name: "Macro",
  40139. height: math.unit(210, "miles"),
  40140. default: true
  40141. },
  40142. {
  40143. name: "Megamacro",
  40144. height: math.unit(210000, "miles")
  40145. },
  40146. ]
  40147. ))
  40148. characterMakers.push(() => makeCharacter(
  40149. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40150. {
  40151. front: {
  40152. height: math.unit(188, "feet"),
  40153. name: "Front",
  40154. image: {
  40155. source: "./media/characters/pyotr/front.svg",
  40156. extra: 1912/1826,
  40157. bottom: 18/1930
  40158. }
  40159. },
  40160. },
  40161. [
  40162. {
  40163. name: "Macro",
  40164. height: math.unit(188, "feet"),
  40165. default: true
  40166. },
  40167. {
  40168. name: "Megamacro",
  40169. height: math.unit(8, "miles")
  40170. },
  40171. ]
  40172. ))
  40173. characterMakers.push(() => makeCharacter(
  40174. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40175. {
  40176. side: {
  40177. height: math.unit(10, "feet"),
  40178. weight: math.unit(4500, "lb"),
  40179. name: "Side",
  40180. image: {
  40181. source: "./media/characters/ackart/side.svg",
  40182. extra: 1776/1668,
  40183. bottom: 116/1892
  40184. }
  40185. },
  40186. },
  40187. [
  40188. {
  40189. name: "Normal",
  40190. height: math.unit(10, "feet"),
  40191. default: true
  40192. },
  40193. ]
  40194. ))
  40195. characterMakers.push(() => makeCharacter(
  40196. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40197. {
  40198. side: {
  40199. height: math.unit(21, "feet"),
  40200. name: "Side",
  40201. image: {
  40202. source: "./media/characters/nolow/side.svg",
  40203. extra: 1484/1434,
  40204. bottom: 85/1569
  40205. }
  40206. },
  40207. sideErect: {
  40208. height: math.unit(21, "feet"),
  40209. name: "Side-erect",
  40210. image: {
  40211. source: "./media/characters/nolow/side-erect.svg",
  40212. extra: 1484/1434,
  40213. bottom: 85/1569
  40214. }
  40215. },
  40216. },
  40217. [
  40218. {
  40219. name: "Regular",
  40220. height: math.unit(12, "feet")
  40221. },
  40222. {
  40223. name: "Big Chee",
  40224. height: math.unit(21, "feet"),
  40225. default: true
  40226. },
  40227. ]
  40228. ))
  40229. characterMakers.push(() => makeCharacter(
  40230. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40231. {
  40232. front: {
  40233. height: math.unit(7, "feet"),
  40234. weight: math.unit(250, "lb"),
  40235. name: "Front",
  40236. image: {
  40237. source: "./media/characters/nines/front.svg",
  40238. extra: 1741/1607,
  40239. bottom: 41/1782
  40240. }
  40241. },
  40242. side: {
  40243. height: math.unit(7, "feet"),
  40244. weight: math.unit(250, "lb"),
  40245. name: "Side",
  40246. image: {
  40247. source: "./media/characters/nines/side.svg",
  40248. extra: 1854/1735,
  40249. bottom: 93/1947
  40250. }
  40251. },
  40252. back: {
  40253. height: math.unit(7, "feet"),
  40254. weight: math.unit(250, "lb"),
  40255. name: "Back",
  40256. image: {
  40257. source: "./media/characters/nines/back.svg",
  40258. extra: 1748/1615,
  40259. bottom: 20/1768
  40260. }
  40261. },
  40262. },
  40263. [
  40264. {
  40265. name: "Megamacro",
  40266. height: math.unit(99, "km"),
  40267. default: true
  40268. },
  40269. ]
  40270. ))
  40271. characterMakers.push(() => makeCharacter(
  40272. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40273. {
  40274. front: {
  40275. height: math.unit(5 + 10/12, "feet"),
  40276. weight: math.unit(210, "lb"),
  40277. name: "Front",
  40278. image: {
  40279. source: "./media/characters/zenith/front.svg",
  40280. extra: 1531/1452,
  40281. bottom: 198/1729
  40282. }
  40283. },
  40284. back: {
  40285. height: math.unit(5 + 10/12, "feet"),
  40286. weight: math.unit(210, "lb"),
  40287. name: "Back",
  40288. image: {
  40289. source: "./media/characters/zenith/back.svg",
  40290. extra: 1571/1487,
  40291. bottom: 75/1646
  40292. }
  40293. },
  40294. },
  40295. [
  40296. {
  40297. name: "Normal",
  40298. height: math.unit(5 + 10/12, "feet"),
  40299. default: true
  40300. }
  40301. ]
  40302. ))
  40303. characterMakers.push(() => makeCharacter(
  40304. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40305. {
  40306. front: {
  40307. height: math.unit(4, "feet"),
  40308. weight: math.unit(60, "lb"),
  40309. name: "Front",
  40310. image: {
  40311. source: "./media/characters/jasper/front.svg",
  40312. extra: 1450/1379,
  40313. bottom: 19/1469
  40314. }
  40315. },
  40316. },
  40317. [
  40318. {
  40319. name: "Normal",
  40320. height: math.unit(4, "feet"),
  40321. default: true
  40322. },
  40323. ]
  40324. ))
  40325. characterMakers.push(() => makeCharacter(
  40326. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40327. {
  40328. front: {
  40329. height: math.unit(6 + 5/12, "feet"),
  40330. weight: math.unit(290, "lb"),
  40331. name: "Front",
  40332. image: {
  40333. source: "./media/characters/tiberius-thyben/front.svg",
  40334. extra: 757/739,
  40335. bottom: 39/796
  40336. }
  40337. },
  40338. },
  40339. [
  40340. {
  40341. name: "Micro",
  40342. height: math.unit(1.5, "inches")
  40343. },
  40344. {
  40345. name: "Normal",
  40346. height: math.unit(6 + 5/12, "feet"),
  40347. default: true
  40348. },
  40349. {
  40350. name: "Macro",
  40351. height: math.unit(300, "feet")
  40352. },
  40353. ]
  40354. ))
  40355. characterMakers.push(() => makeCharacter(
  40356. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40357. {
  40358. front: {
  40359. height: math.unit(5 + 6/12, "feet"),
  40360. weight: math.unit(60, "kg"),
  40361. name: "Front",
  40362. image: {
  40363. source: "./media/characters/sabre/front.svg",
  40364. extra: 738/671,
  40365. bottom: 27/765
  40366. }
  40367. },
  40368. },
  40369. [
  40370. {
  40371. name: "Teeny",
  40372. height: math.unit(2, "inches")
  40373. },
  40374. {
  40375. name: "Smol",
  40376. height: math.unit(8, "inches")
  40377. },
  40378. {
  40379. name: "Normal",
  40380. height: math.unit(5 + 6/12, "feet"),
  40381. default: true
  40382. },
  40383. {
  40384. name: "Mini-Macro",
  40385. height: math.unit(15, "feet")
  40386. },
  40387. {
  40388. name: "Macro",
  40389. height: math.unit(50, "feet")
  40390. },
  40391. ]
  40392. ))
  40393. characterMakers.push(() => makeCharacter(
  40394. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40395. {
  40396. front: {
  40397. height: math.unit(6 + 4/12, "feet"),
  40398. weight: math.unit(170, "lb"),
  40399. name: "Front",
  40400. image: {
  40401. source: "./media/characters/charlie/front.svg",
  40402. extra: 1348/1228,
  40403. bottom: 15/1363
  40404. }
  40405. },
  40406. },
  40407. [
  40408. {
  40409. name: "Macro",
  40410. height: math.unit(1700, "meters"),
  40411. default: true
  40412. },
  40413. {
  40414. name: "MegaMacro",
  40415. height: math.unit(20400, "meters")
  40416. },
  40417. ]
  40418. ))
  40419. characterMakers.push(() => makeCharacter(
  40420. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40421. {
  40422. front: {
  40423. height: math.unit(6 + 3/12, "feet"),
  40424. weight: math.unit(185, "lb"),
  40425. name: "Front",
  40426. image: {
  40427. source: "./media/characters/susan-grant/front.svg",
  40428. extra: 1351/1327,
  40429. bottom: 26/1377
  40430. }
  40431. },
  40432. },
  40433. [
  40434. {
  40435. name: "Normal",
  40436. height: math.unit(6 + 3/12, "feet"),
  40437. default: true
  40438. },
  40439. {
  40440. name: "Macro",
  40441. height: math.unit(225, "feet")
  40442. },
  40443. {
  40444. name: "Macro+",
  40445. height: math.unit(900, "feet")
  40446. },
  40447. {
  40448. name: "MegaMacro",
  40449. height: math.unit(14400, "feet")
  40450. },
  40451. ]
  40452. ))
  40453. characterMakers.push(() => makeCharacter(
  40454. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40455. {
  40456. front: {
  40457. height: math.unit(5 + 4/12, "feet"),
  40458. weight: math.unit(110, "lb"),
  40459. name: "Front",
  40460. image: {
  40461. source: "./media/characters/axel-isanov/front.svg",
  40462. extra: 1096/1065,
  40463. bottom: 13/1109
  40464. }
  40465. },
  40466. },
  40467. [
  40468. {
  40469. name: "Normal",
  40470. height: math.unit(5 + 4/12, "feet"),
  40471. default: true
  40472. },
  40473. ]
  40474. ))
  40475. characterMakers.push(() => makeCharacter(
  40476. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40477. {
  40478. front: {
  40479. height: math.unit(9, "feet"),
  40480. weight: math.unit(467, "lb"),
  40481. name: "Front",
  40482. image: {
  40483. source: "./media/characters/necahual/front.svg",
  40484. extra: 920/873,
  40485. bottom: 26/946
  40486. }
  40487. },
  40488. back: {
  40489. height: math.unit(9, "feet"),
  40490. weight: math.unit(467, "lb"),
  40491. name: "Back",
  40492. image: {
  40493. source: "./media/characters/necahual/back.svg",
  40494. extra: 930/884,
  40495. bottom: 16/946
  40496. }
  40497. },
  40498. frontUnderwear: {
  40499. height: math.unit(9, "feet"),
  40500. weight: math.unit(467, "lb"),
  40501. name: "Front (Underwear)",
  40502. image: {
  40503. source: "./media/characters/necahual/front-underwear.svg",
  40504. extra: 920/873,
  40505. bottom: 26/946
  40506. }
  40507. },
  40508. frontDressed: {
  40509. height: math.unit(9, "feet"),
  40510. weight: math.unit(467, "lb"),
  40511. name: "Front (Dressed)",
  40512. image: {
  40513. source: "./media/characters/necahual/front-dressed.svg",
  40514. extra: 920/873,
  40515. bottom: 26/946
  40516. }
  40517. },
  40518. },
  40519. [
  40520. {
  40521. name: "Comprsesed",
  40522. height: math.unit(9, "feet")
  40523. },
  40524. {
  40525. name: "Natural",
  40526. height: math.unit(15, "feet"),
  40527. default: true
  40528. },
  40529. {
  40530. name: "Boosted",
  40531. height: math.unit(50, "feet")
  40532. },
  40533. {
  40534. name: "Boosted+",
  40535. height: math.unit(150, "feet")
  40536. },
  40537. {
  40538. name: "Max",
  40539. height: math.unit(500, "feet")
  40540. },
  40541. ]
  40542. ))
  40543. characterMakers.push(() => makeCharacter(
  40544. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40545. {
  40546. front: {
  40547. height: math.unit(22 + 1/12, "feet"),
  40548. weight: math.unit(3200, "lb"),
  40549. name: "Front",
  40550. image: {
  40551. source: "./media/characters/theo-acacia/front.svg",
  40552. extra: 1796/1741,
  40553. bottom: 83/1879
  40554. }
  40555. },
  40556. frontUnderwear: {
  40557. height: math.unit(22 + 1/12, "feet"),
  40558. weight: math.unit(3200, "lb"),
  40559. name: "Front (Underwear)",
  40560. image: {
  40561. source: "./media/characters/theo-acacia/front-underwear.svg",
  40562. extra: 1796/1741,
  40563. bottom: 83/1879
  40564. }
  40565. },
  40566. frontNude: {
  40567. height: math.unit(22 + 1/12, "feet"),
  40568. weight: math.unit(3200, "lb"),
  40569. name: "Front (Nude)",
  40570. image: {
  40571. source: "./media/characters/theo-acacia/front-nude.svg",
  40572. extra: 1796/1741,
  40573. bottom: 83/1879
  40574. }
  40575. },
  40576. },
  40577. [
  40578. {
  40579. name: "Normal",
  40580. height: math.unit(22 + 1/12, "feet"),
  40581. default: true
  40582. },
  40583. ]
  40584. ))
  40585. characterMakers.push(() => makeCharacter(
  40586. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40587. {
  40588. front: {
  40589. height: math.unit(20, "feet"),
  40590. name: "Front",
  40591. image: {
  40592. source: "./media/characters/astra/front.svg",
  40593. extra: 1850/1714,
  40594. bottom: 106/1956
  40595. }
  40596. },
  40597. frontUndressed: {
  40598. height: math.unit(20, "feet"),
  40599. name: "Front (Undressed)",
  40600. image: {
  40601. source: "./media/characters/astra/front-undressed.svg",
  40602. extra: 1926/1749,
  40603. bottom: 0/1926
  40604. }
  40605. },
  40606. hand: {
  40607. height: math.unit(1.53, "feet"),
  40608. name: "Hand",
  40609. image: {
  40610. source: "./media/characters/astra/hand.svg"
  40611. }
  40612. },
  40613. paw: {
  40614. height: math.unit(1.53, "feet"),
  40615. name: "Paw",
  40616. image: {
  40617. source: "./media/characters/astra/paw.svg"
  40618. }
  40619. },
  40620. },
  40621. [
  40622. {
  40623. name: "Smallest",
  40624. height: math.unit(20, "feet")
  40625. },
  40626. {
  40627. name: "Normal",
  40628. height: math.unit(1e9, "miles"),
  40629. default: true
  40630. },
  40631. {
  40632. name: "Larger",
  40633. height: math.unit(5, "multiverses")
  40634. },
  40635. {
  40636. name: "Largest",
  40637. height: math.unit(1e9, "multiverses")
  40638. },
  40639. ]
  40640. ))
  40641. characterMakers.push(() => makeCharacter(
  40642. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40643. {
  40644. front: {
  40645. height: math.unit(8, "feet"),
  40646. name: "Front",
  40647. image: {
  40648. source: "./media/characters/breanna/front.svg",
  40649. extra: 1912/1632,
  40650. bottom: 33/1945
  40651. }
  40652. },
  40653. },
  40654. [
  40655. {
  40656. name: "Smallest",
  40657. height: math.unit(8, "feet")
  40658. },
  40659. {
  40660. name: "Normal",
  40661. height: math.unit(1, "mile"),
  40662. default: true
  40663. },
  40664. {
  40665. name: "Maximum",
  40666. height: math.unit(1500000000000, "lightyears")
  40667. },
  40668. ]
  40669. ))
  40670. characterMakers.push(() => makeCharacter(
  40671. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40672. {
  40673. front: {
  40674. height: math.unit(5 + 11/12, "feet"),
  40675. weight: math.unit(155, "lb"),
  40676. name: "Front",
  40677. image: {
  40678. source: "./media/characters/cai/front.svg",
  40679. extra: 1823/1702,
  40680. bottom: 32/1855
  40681. }
  40682. },
  40683. back: {
  40684. height: math.unit(5 + 11/12, "feet"),
  40685. weight: math.unit(155, "lb"),
  40686. name: "Back",
  40687. image: {
  40688. source: "./media/characters/cai/back.svg",
  40689. extra: 1809/1708,
  40690. bottom: 31/1840
  40691. }
  40692. },
  40693. },
  40694. [
  40695. {
  40696. name: "Normal",
  40697. height: math.unit(5 + 11/12, "feet"),
  40698. default: true
  40699. },
  40700. {
  40701. name: "Big",
  40702. height: math.unit(15, "feet")
  40703. },
  40704. {
  40705. name: "Macro",
  40706. height: math.unit(200, "feet")
  40707. },
  40708. ]
  40709. ))
  40710. characterMakers.push(() => makeCharacter(
  40711. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40712. {
  40713. front: {
  40714. height: math.unit(5 + 6/12, "feet"),
  40715. weight: math.unit(160, "lb"),
  40716. name: "Front",
  40717. image: {
  40718. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40719. extra: 1227/1174,
  40720. bottom: 37/1264
  40721. }
  40722. },
  40723. },
  40724. [
  40725. {
  40726. name: "Macro",
  40727. height: math.unit(444, "meters"),
  40728. default: true
  40729. },
  40730. ]
  40731. ))
  40732. characterMakers.push(() => makeCharacter(
  40733. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40734. {
  40735. front: {
  40736. height: math.unit(18 + 7/12, "feet"),
  40737. name: "Front",
  40738. image: {
  40739. source: "./media/characters/rex/front.svg",
  40740. extra: 1941/1807,
  40741. bottom: 66/2007
  40742. }
  40743. },
  40744. back: {
  40745. height: math.unit(18 + 7/12, "feet"),
  40746. name: "Back",
  40747. image: {
  40748. source: "./media/characters/rex/back.svg",
  40749. extra: 1937/1822,
  40750. bottom: 42/1979
  40751. }
  40752. },
  40753. boot: {
  40754. height: math.unit(3.45, "feet"),
  40755. name: "Boot",
  40756. image: {
  40757. source: "./media/characters/rex/boot.svg"
  40758. }
  40759. },
  40760. paw: {
  40761. height: math.unit(4.17, "feet"),
  40762. name: "Paw",
  40763. image: {
  40764. source: "./media/characters/rex/paw.svg"
  40765. }
  40766. },
  40767. head: {
  40768. height: math.unit(6.728, "feet"),
  40769. name: "Head",
  40770. image: {
  40771. source: "./media/characters/rex/head.svg"
  40772. }
  40773. },
  40774. },
  40775. [
  40776. {
  40777. name: "Nano",
  40778. height: math.unit(18 + 7/12, "feet")
  40779. },
  40780. {
  40781. name: "Micro",
  40782. height: math.unit(1.5, "megameters")
  40783. },
  40784. {
  40785. name: "Normal",
  40786. height: math.unit(440, "megameters"),
  40787. default: true
  40788. },
  40789. {
  40790. name: "Macro",
  40791. height: math.unit(2.5, "gigameters")
  40792. },
  40793. {
  40794. name: "Gigamacro",
  40795. height: math.unit(2, "galaxies")
  40796. },
  40797. ]
  40798. ))
  40799. characterMakers.push(() => makeCharacter(
  40800. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40801. {
  40802. side: {
  40803. height: math.unit(32, "feet"),
  40804. weight: math.unit(250000, "lb"),
  40805. name: "Side",
  40806. image: {
  40807. source: "./media/characters/silverwing/side.svg",
  40808. extra: 1100/1019,
  40809. bottom: 204/1304
  40810. }
  40811. },
  40812. },
  40813. [
  40814. {
  40815. name: "Normal",
  40816. height: math.unit(32, "feet"),
  40817. default: true
  40818. },
  40819. ]
  40820. ))
  40821. characterMakers.push(() => makeCharacter(
  40822. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40823. {
  40824. front: {
  40825. height: math.unit(6 + 6/12, "feet"),
  40826. weight: math.unit(350, "lb"),
  40827. name: "Front",
  40828. image: {
  40829. source: "./media/characters/tristan-hawthorne/front.svg",
  40830. extra: 1159/1124,
  40831. bottom: 37/1196
  40832. }
  40833. },
  40834. },
  40835. [
  40836. {
  40837. name: "Normal",
  40838. height: math.unit(6 + 6/12, "feet"),
  40839. default: true
  40840. },
  40841. ]
  40842. ))
  40843. characterMakers.push(() => makeCharacter(
  40844. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40845. {
  40846. front: {
  40847. height: math.unit(5 + 11/12, "feet"),
  40848. weight: math.unit(190, "lb"),
  40849. name: "Front",
  40850. image: {
  40851. source: "./media/characters/mizu/front.svg",
  40852. extra: 1988/1788,
  40853. bottom: 14/2002
  40854. }
  40855. },
  40856. },
  40857. [
  40858. {
  40859. name: "Normal",
  40860. height: math.unit(5 + 11/12, "feet"),
  40861. default: true
  40862. },
  40863. ]
  40864. ))
  40865. characterMakers.push(() => makeCharacter(
  40866. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40867. {
  40868. front: {
  40869. height: math.unit(6, "feet"),
  40870. name: "Front",
  40871. image: {
  40872. source: "./media/characters/moonlight-rose-terra/front.svg",
  40873. extra: 1434/1252,
  40874. bottom: 48/1482
  40875. }
  40876. },
  40877. },
  40878. [
  40879. {
  40880. name: "TRAPPIST-1D",
  40881. height: math.unit(4992*2, "km")
  40882. },
  40883. {
  40884. name: "Earth",
  40885. height: math.unit(6367*2, "km"),
  40886. default: true
  40887. },
  40888. {
  40889. name: "Kepler-22b",
  40890. height: math.unit(15282*2, "km")
  40891. },
  40892. ]
  40893. ))
  40894. characterMakers.push(() => makeCharacter(
  40895. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40896. {
  40897. front: {
  40898. height: math.unit(6, "feet"),
  40899. name: "Front",
  40900. image: {
  40901. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40902. extra: 1851/1712,
  40903. bottom: 0/1851
  40904. }
  40905. },
  40906. },
  40907. [
  40908. {
  40909. name: "Enceladus",
  40910. height: math.unit(513*2, "km")
  40911. },
  40912. {
  40913. name: "Europe",
  40914. height: math.unit(1560*2, "km")
  40915. },
  40916. {
  40917. name: "Neptune",
  40918. height: math.unit(24622*2, "km"),
  40919. default: true
  40920. },
  40921. {
  40922. name: "CoRoT-9b",
  40923. height: math.unit(75067*2, "km")
  40924. },
  40925. ]
  40926. ))
  40927. characterMakers.push(() => makeCharacter(
  40928. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40929. {
  40930. front: {
  40931. height: math.unit(6, "feet"),
  40932. name: "Front",
  40933. image: {
  40934. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40935. extra: 1367/1286,
  40936. bottom: 55/1422
  40937. }
  40938. },
  40939. },
  40940. [
  40941. {
  40942. name: "Saturn",
  40943. height: math.unit(58232*2, "km")
  40944. },
  40945. {
  40946. name: "Jupiter",
  40947. height: math.unit(69911*2, "km"),
  40948. default: true
  40949. },
  40950. {
  40951. name: "HD 100546 b",
  40952. height: math.unit(482938, "km")
  40953. },
  40954. ]
  40955. ))
  40956. characterMakers.push(() => makeCharacter(
  40957. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40958. {
  40959. front: {
  40960. height: math.unit(1.7, "feet"),
  40961. weight: math.unit(50, "lb"),
  40962. name: "Front",
  40963. image: {
  40964. source: "./media/characters/dechroma/front.svg",
  40965. extra: 1095/859,
  40966. bottom: 64/1159
  40967. }
  40968. },
  40969. },
  40970. [
  40971. {
  40972. name: "Normal",
  40973. height: math.unit(1.7, "feet"),
  40974. default: true
  40975. },
  40976. ]
  40977. ))
  40978. characterMakers.push(() => makeCharacter(
  40979. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40980. {
  40981. side: {
  40982. height: math.unit(30, "feet"),
  40983. name: "Side",
  40984. image: {
  40985. source: "./media/characters/veluren-thanazel/side.svg",
  40986. extra: 1611/633,
  40987. bottom: 118/1729
  40988. }
  40989. },
  40990. front: {
  40991. height: math.unit(30, "feet"),
  40992. name: "Front",
  40993. image: {
  40994. source: "./media/characters/veluren-thanazel/front.svg",
  40995. extra: 1486/636,
  40996. bottom: 238/1724
  40997. }
  40998. },
  40999. head: {
  41000. height: math.unit(21.4, "feet"),
  41001. name: "Head",
  41002. image: {
  41003. source: "./media/characters/veluren-thanazel/head.svg"
  41004. }
  41005. },
  41006. genitals: {
  41007. height: math.unit(19.4, "feet"),
  41008. name: "Genitals",
  41009. image: {
  41010. source: "./media/characters/veluren-thanazel/genitals.svg"
  41011. }
  41012. },
  41013. },
  41014. [
  41015. {
  41016. name: "Social",
  41017. height: math.unit(6, "feet")
  41018. },
  41019. {
  41020. name: "Play",
  41021. height: math.unit(12, "feet")
  41022. },
  41023. {
  41024. name: "True",
  41025. height: math.unit(30, "feet"),
  41026. default: true
  41027. },
  41028. ]
  41029. ))
  41030. characterMakers.push(() => makeCharacter(
  41031. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41032. {
  41033. front: {
  41034. height: math.unit(7 + 6/12, "feet"),
  41035. weight: math.unit(500, "kg"),
  41036. name: "Front",
  41037. image: {
  41038. source: "./media/characters/arcturas/front.svg",
  41039. extra: 1700/1500,
  41040. bottom: 145/1845
  41041. }
  41042. },
  41043. },
  41044. [
  41045. {
  41046. name: "Normal",
  41047. height: math.unit(7 + 6/12, "feet"),
  41048. default: true
  41049. },
  41050. ]
  41051. ))
  41052. characterMakers.push(() => makeCharacter(
  41053. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41054. {
  41055. side: {
  41056. height: math.unit(6, "feet"),
  41057. weight: math.unit(2, "tons"),
  41058. name: "Side",
  41059. image: {
  41060. source: "./media/characters/vitaen/side.svg",
  41061. extra: 1157/617,
  41062. bottom: 122/1279
  41063. }
  41064. },
  41065. },
  41066. [
  41067. {
  41068. name: "Normal",
  41069. height: math.unit(6, "feet"),
  41070. default: true
  41071. },
  41072. ]
  41073. ))
  41074. characterMakers.push(() => makeCharacter(
  41075. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41076. {
  41077. front: {
  41078. height: math.unit(19, "feet"),
  41079. name: "Front",
  41080. image: {
  41081. source: "./media/characters/fia-dreamweaver/front.svg",
  41082. extra: 1630/1504,
  41083. bottom: 25/1655
  41084. }
  41085. },
  41086. },
  41087. [
  41088. {
  41089. name: "Normal",
  41090. height: math.unit(19, "feet"),
  41091. default: true
  41092. },
  41093. ]
  41094. ))
  41095. characterMakers.push(() => makeCharacter(
  41096. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41097. {
  41098. front: {
  41099. height: math.unit(5 + 4/12, "feet"),
  41100. name: "Front",
  41101. image: {
  41102. source: "./media/characters/artan/front.svg",
  41103. extra: 1618/1535,
  41104. bottom: 46/1664
  41105. }
  41106. },
  41107. back: {
  41108. height: math.unit(5 + 4/12, "feet"),
  41109. name: "Back",
  41110. image: {
  41111. source: "./media/characters/artan/back.svg",
  41112. extra: 1618/1543,
  41113. bottom: 31/1649
  41114. }
  41115. },
  41116. },
  41117. [
  41118. {
  41119. name: "Normal",
  41120. height: math.unit(5 + 4/12, "feet"),
  41121. default: true
  41122. },
  41123. ]
  41124. ))
  41125. characterMakers.push(() => makeCharacter(
  41126. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41127. {
  41128. side: {
  41129. height: math.unit(182, "cm"),
  41130. weight: math.unit(1000, "lb"),
  41131. name: "Side",
  41132. image: {
  41133. source: "./media/characters/silver-dragon/side.svg",
  41134. extra: 710/287,
  41135. bottom: 88/798
  41136. }
  41137. },
  41138. },
  41139. [
  41140. {
  41141. name: "Normal",
  41142. height: math.unit(182, "cm"),
  41143. default: true
  41144. },
  41145. ]
  41146. ))
  41147. characterMakers.push(() => makeCharacter(
  41148. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41149. {
  41150. side: {
  41151. height: math.unit(6 + 6/12, "feet"),
  41152. weight: math.unit(1.5, "tons"),
  41153. name: "Side",
  41154. image: {
  41155. source: "./media/characters/zephyr/side.svg",
  41156. extra: 1433/586,
  41157. bottom: 109/1542
  41158. }
  41159. },
  41160. },
  41161. [
  41162. {
  41163. name: "Normal",
  41164. height: math.unit(6 + 6/12, "feet"),
  41165. default: true
  41166. },
  41167. ]
  41168. ))
  41169. characterMakers.push(() => makeCharacter(
  41170. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41171. {
  41172. side: {
  41173. height: math.unit(1, "feet"),
  41174. name: "Side",
  41175. image: {
  41176. source: "./media/characters/vixye/side.svg",
  41177. extra: 632/541,
  41178. bottom: 0/632
  41179. }
  41180. },
  41181. },
  41182. [
  41183. {
  41184. name: "Normal",
  41185. height: math.unit(1, "feet"),
  41186. default: true
  41187. },
  41188. {
  41189. name: "True",
  41190. height: math.unit(1e15, "multiverses")
  41191. },
  41192. ]
  41193. ))
  41194. characterMakers.push(() => makeCharacter(
  41195. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41196. {
  41197. front: {
  41198. height: math.unit(8 + 2/12, "feet"),
  41199. weight: math.unit(650, "lb"),
  41200. name: "Front",
  41201. image: {
  41202. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41203. extra: 1174/1137,
  41204. bottom: 82/1256
  41205. }
  41206. },
  41207. back: {
  41208. height: math.unit(8 + 2/12, "feet"),
  41209. weight: math.unit(650, "lb"),
  41210. name: "Back",
  41211. image: {
  41212. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41213. extra: 1204/1157,
  41214. bottom: 46/1250
  41215. }
  41216. },
  41217. },
  41218. [
  41219. {
  41220. name: "Wildform",
  41221. height: math.unit(8 + 2/12, "feet"),
  41222. default: true
  41223. },
  41224. ]
  41225. ))
  41226. characterMakers.push(() => makeCharacter(
  41227. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41228. {
  41229. front: {
  41230. height: math.unit(18, "feet"),
  41231. name: "Front",
  41232. image: {
  41233. source: "./media/characters/cyphin/front.svg",
  41234. extra: 970/886,
  41235. bottom: 42/1012
  41236. }
  41237. },
  41238. back: {
  41239. height: math.unit(18, "feet"),
  41240. name: "Back",
  41241. image: {
  41242. source: "./media/characters/cyphin/back.svg",
  41243. extra: 1009/894,
  41244. bottom: 24/1033
  41245. }
  41246. },
  41247. head: {
  41248. height: math.unit(5.05, "feet"),
  41249. name: "Head",
  41250. image: {
  41251. source: "./media/characters/cyphin/head.svg"
  41252. }
  41253. },
  41254. tailbud: {
  41255. height: math.unit(5, "feet"),
  41256. name: "Tailbud",
  41257. image: {
  41258. source: "./media/characters/cyphin/tailbud.svg"
  41259. }
  41260. },
  41261. },
  41262. [
  41263. ]
  41264. ))
  41265. characterMakers.push(() => makeCharacter(
  41266. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41267. {
  41268. side: {
  41269. height: math.unit(10, "feet"),
  41270. weight: math.unit(6, "tons"),
  41271. name: "Side",
  41272. image: {
  41273. source: "./media/characters/raijin/side.svg",
  41274. extra: 1529/613,
  41275. bottom: 337/1866
  41276. }
  41277. },
  41278. },
  41279. [
  41280. {
  41281. name: "Normal",
  41282. height: math.unit(10, "feet"),
  41283. default: true
  41284. },
  41285. ]
  41286. ))
  41287. characterMakers.push(() => makeCharacter(
  41288. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41289. {
  41290. side: {
  41291. height: math.unit(9, "feet"),
  41292. name: "Side",
  41293. image: {
  41294. source: "./media/characters/nilghais/side.svg",
  41295. extra: 1047/744,
  41296. bottom: 91/1138
  41297. }
  41298. },
  41299. head: {
  41300. height: math.unit(3.14, "feet"),
  41301. name: "Head",
  41302. image: {
  41303. source: "./media/characters/nilghais/head.svg"
  41304. }
  41305. },
  41306. mouth: {
  41307. height: math.unit(4.6, "feet"),
  41308. name: "Mouth",
  41309. image: {
  41310. source: "./media/characters/nilghais/mouth.svg"
  41311. }
  41312. },
  41313. wings: {
  41314. height: math.unit(24, "feet"),
  41315. name: "Wings",
  41316. image: {
  41317. source: "./media/characters/nilghais/wings.svg"
  41318. }
  41319. },
  41320. ass: {
  41321. height: math.unit(6.12, "feet"),
  41322. name: "Ass",
  41323. image: {
  41324. source: "./media/characters/nilghais/ass.svg"
  41325. }
  41326. },
  41327. },
  41328. [
  41329. {
  41330. name: "Normal",
  41331. height: math.unit(9, "feet"),
  41332. default: true
  41333. },
  41334. ]
  41335. ))
  41336. characterMakers.push(() => makeCharacter(
  41337. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41338. {
  41339. regular: {
  41340. height: math.unit(16 + 2/12, "feet"),
  41341. weight: math.unit(2300, "lb"),
  41342. name: "Regular",
  41343. image: {
  41344. source: "./media/characters/zolgar/regular.svg",
  41345. extra: 1246/1004,
  41346. bottom: 124/1370
  41347. }
  41348. },
  41349. boxers: {
  41350. height: math.unit(16 + 2/12, "feet"),
  41351. weight: math.unit(2300, "lb"),
  41352. name: "Boxers",
  41353. image: {
  41354. source: "./media/characters/zolgar/boxers.svg",
  41355. extra: 1246/1004,
  41356. bottom: 124/1370
  41357. }
  41358. },
  41359. armored: {
  41360. height: math.unit(16 + 2/12, "feet"),
  41361. weight: math.unit(2300, "lb"),
  41362. name: "Armored",
  41363. image: {
  41364. source: "./media/characters/zolgar/armored.svg",
  41365. extra: 1246/1004,
  41366. bottom: 124/1370
  41367. }
  41368. },
  41369. goth: {
  41370. height: math.unit(16 + 2/12, "feet"),
  41371. weight: math.unit(2300, "lb"),
  41372. name: "Goth",
  41373. image: {
  41374. source: "./media/characters/zolgar/goth.svg",
  41375. extra: 1246/1004,
  41376. bottom: 124/1370
  41377. }
  41378. },
  41379. },
  41380. [
  41381. {
  41382. name: "Shrunken Down",
  41383. height: math.unit(9 + 2/12, "feet")
  41384. },
  41385. {
  41386. name: "Normal",
  41387. height: math.unit(16 + 2/12, "feet"),
  41388. default: true
  41389. },
  41390. ]
  41391. ))
  41392. characterMakers.push(() => makeCharacter(
  41393. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41394. {
  41395. front: {
  41396. height: math.unit(6, "feet"),
  41397. weight: math.unit(168, "lb"),
  41398. name: "Front",
  41399. image: {
  41400. source: "./media/characters/luca/front.svg",
  41401. extra: 841/667,
  41402. bottom: 102/943
  41403. }
  41404. },
  41405. },
  41406. [
  41407. {
  41408. name: "Normal",
  41409. height: math.unit(6, "feet"),
  41410. default: true
  41411. },
  41412. ]
  41413. ))
  41414. characterMakers.push(() => makeCharacter(
  41415. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41416. {
  41417. side: {
  41418. height: math.unit(7 + 3/12, "feet"),
  41419. weight: math.unit(312, "lb"),
  41420. name: "Side",
  41421. image: {
  41422. source: "./media/characters/zezo/side.svg",
  41423. extra: 1192/1067,
  41424. bottom: 63/1255
  41425. }
  41426. },
  41427. },
  41428. [
  41429. {
  41430. name: "Normal",
  41431. height: math.unit(7 + 3/12, "feet"),
  41432. default: true
  41433. },
  41434. ]
  41435. ))
  41436. characterMakers.push(() => makeCharacter(
  41437. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41438. {
  41439. front: {
  41440. height: math.unit(5 + 5/12, "feet"),
  41441. weight: math.unit(170, "lb"),
  41442. name: "Front",
  41443. image: {
  41444. source: "./media/characters/mayso/front.svg",
  41445. extra: 1215/1108,
  41446. bottom: 16/1231
  41447. }
  41448. },
  41449. },
  41450. [
  41451. {
  41452. name: "Normal",
  41453. height: math.unit(5 + 5/12, "feet"),
  41454. default: true
  41455. },
  41456. ]
  41457. ))
  41458. characterMakers.push(() => makeCharacter(
  41459. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41460. {
  41461. front: {
  41462. height: math.unit(4 + 3/12, "feet"),
  41463. weight: math.unit(80, "lb"),
  41464. name: "Front",
  41465. image: {
  41466. source: "./media/characters/hess/front.svg",
  41467. extra: 1200/1123,
  41468. bottom: 16/1216
  41469. }
  41470. },
  41471. },
  41472. [
  41473. {
  41474. name: "Normal",
  41475. height: math.unit(4 + 3/12, "feet"),
  41476. default: true
  41477. },
  41478. ]
  41479. ))
  41480. characterMakers.push(() => makeCharacter(
  41481. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41482. {
  41483. front: {
  41484. height: math.unit(1.9, "meters"),
  41485. name: "Front",
  41486. image: {
  41487. source: "./media/characters/ashgar/front.svg",
  41488. extra: 1177/1146,
  41489. bottom: 99/1276
  41490. }
  41491. },
  41492. back: {
  41493. height: math.unit(1.9, "meters"),
  41494. name: "Back",
  41495. image: {
  41496. source: "./media/characters/ashgar/back.svg",
  41497. extra: 1201/1183,
  41498. bottom: 53/1254
  41499. }
  41500. },
  41501. feral: {
  41502. height: math.unit(1.4, "meters"),
  41503. name: "Feral",
  41504. image: {
  41505. source: "./media/characters/ashgar/feral.svg",
  41506. extra: 370/345,
  41507. bottom: 45/415
  41508. }
  41509. },
  41510. },
  41511. [
  41512. {
  41513. name: "Normal",
  41514. height: math.unit(1.9, "meters"),
  41515. default: true
  41516. },
  41517. ]
  41518. ))
  41519. characterMakers.push(() => makeCharacter(
  41520. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41521. {
  41522. regular: {
  41523. height: math.unit(6, "feet"),
  41524. weight: math.unit(220, "lb"),
  41525. name: "Regular",
  41526. image: {
  41527. source: "./media/characters/phillip/regular.svg",
  41528. extra: 1373/1277,
  41529. bottom: 75/1448
  41530. }
  41531. },
  41532. dressed: {
  41533. height: math.unit(6, "feet"),
  41534. weight: math.unit(220, "lb"),
  41535. name: "Dressed",
  41536. image: {
  41537. source: "./media/characters/phillip/dressed.svg",
  41538. extra: 1373/1277,
  41539. bottom: 75/1448
  41540. }
  41541. },
  41542. paw: {
  41543. height: math.unit(1.44, "feet"),
  41544. name: "Paw",
  41545. image: {
  41546. source: "./media/characters/phillip/paw.svg"
  41547. }
  41548. },
  41549. },
  41550. [
  41551. {
  41552. name: "Normal",
  41553. height: math.unit(6, "feet"),
  41554. default: true
  41555. },
  41556. ]
  41557. ))
  41558. characterMakers.push(() => makeCharacter(
  41559. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41560. {
  41561. side: {
  41562. height: math.unit(42, "feet"),
  41563. name: "Side",
  41564. image: {
  41565. source: "./media/characters/uvula/side.svg",
  41566. extra: 683/586,
  41567. bottom: 60/743
  41568. }
  41569. },
  41570. front: {
  41571. height: math.unit(42, "feet"),
  41572. name: "Front",
  41573. image: {
  41574. source: "./media/characters/uvula/front.svg",
  41575. extra: 705/613,
  41576. bottom: 54/759
  41577. }
  41578. },
  41579. maw: {
  41580. height: math.unit(23.5, "feet"),
  41581. name: "Maw",
  41582. image: {
  41583. source: "./media/characters/uvula/maw.svg"
  41584. }
  41585. },
  41586. },
  41587. [
  41588. {
  41589. name: "Original Size",
  41590. height: math.unit(14, "inches")
  41591. },
  41592. {
  41593. name: "Human Size",
  41594. height: math.unit(6, "feet")
  41595. },
  41596. {
  41597. name: "Big",
  41598. height: math.unit(42, "feet"),
  41599. default: true
  41600. },
  41601. {
  41602. name: "Bigger",
  41603. height: math.unit(100, "feet")
  41604. },
  41605. ]
  41606. ))
  41607. characterMakers.push(() => makeCharacter(
  41608. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41609. {
  41610. front: {
  41611. height: math.unit(5 + 11/12, "feet"),
  41612. name: "Front",
  41613. image: {
  41614. source: "./media/characters/lannah/front.svg",
  41615. extra: 1208/1113,
  41616. bottom: 97/1305
  41617. }
  41618. },
  41619. },
  41620. [
  41621. {
  41622. name: "Normal",
  41623. height: math.unit(5 + 11/12, "feet"),
  41624. default: true
  41625. },
  41626. ]
  41627. ))
  41628. characterMakers.push(() => makeCharacter(
  41629. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41630. {
  41631. front: {
  41632. height: math.unit(6 + 3/12, "feet"),
  41633. weight: math.unit(3.5, "tons"),
  41634. name: "Front",
  41635. image: {
  41636. source: "./media/characters/emberflame/front.svg",
  41637. extra: 1198/672,
  41638. bottom: 82/1280
  41639. }
  41640. },
  41641. side: {
  41642. height: math.unit(6 + 3/12, "feet"),
  41643. weight: math.unit(3.5, "tons"),
  41644. name: "Side",
  41645. image: {
  41646. source: "./media/characters/emberflame/side.svg",
  41647. extra: 938/527,
  41648. bottom: 56/994
  41649. }
  41650. },
  41651. },
  41652. [
  41653. {
  41654. name: "Normal",
  41655. height: math.unit(6 + 3/12, "feet"),
  41656. default: true
  41657. },
  41658. ]
  41659. ))
  41660. characterMakers.push(() => makeCharacter(
  41661. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41662. {
  41663. side: {
  41664. height: math.unit(17.5, "feet"),
  41665. weight: math.unit(35, "tons"),
  41666. name: "Side",
  41667. image: {
  41668. source: "./media/characters/sophie-ambrose/side.svg",
  41669. extra: 1573/1242,
  41670. bottom: 71/1644
  41671. }
  41672. },
  41673. maw: {
  41674. height: math.unit(7.4, "feet"),
  41675. name: "Maw",
  41676. image: {
  41677. source: "./media/characters/sophie-ambrose/maw.svg"
  41678. }
  41679. },
  41680. },
  41681. [
  41682. {
  41683. name: "Normal",
  41684. height: math.unit(17.5, "feet"),
  41685. default: true
  41686. },
  41687. ]
  41688. ))
  41689. characterMakers.push(() => makeCharacter(
  41690. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41691. {
  41692. front: {
  41693. height: math.unit(280, "feet"),
  41694. weight: math.unit(550, "tons"),
  41695. name: "Front",
  41696. image: {
  41697. source: "./media/characters/king-mugi/front.svg",
  41698. extra: 1102/947,
  41699. bottom: 104/1206
  41700. }
  41701. },
  41702. },
  41703. [
  41704. {
  41705. name: "King Mugi",
  41706. height: math.unit(280, "feet"),
  41707. default: true
  41708. },
  41709. ]
  41710. ))
  41711. characterMakers.push(() => makeCharacter(
  41712. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41713. {
  41714. front: {
  41715. height: math.unit(64, "meters"),
  41716. name: "Front",
  41717. image: {
  41718. source: "./media/characters/nova-fox/front.svg",
  41719. extra: 1310/1246,
  41720. bottom: 65/1375
  41721. }
  41722. },
  41723. },
  41724. [
  41725. {
  41726. name: "Macro",
  41727. height: math.unit(64, "meters"),
  41728. default: true
  41729. },
  41730. ]
  41731. ))
  41732. characterMakers.push(() => makeCharacter(
  41733. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41734. {
  41735. front: {
  41736. height: math.unit(6 + 3/12, "feet"),
  41737. weight: math.unit(170, "lb"),
  41738. name: "Front",
  41739. image: {
  41740. source: "./media/characters/sam-bat/front.svg",
  41741. extra: 1601/1411,
  41742. bottom: 125/1726
  41743. }
  41744. },
  41745. back: {
  41746. height: math.unit(6 + 3/12, "feet"),
  41747. weight: math.unit(170, "lb"),
  41748. name: "Back",
  41749. image: {
  41750. source: "./media/characters/sam-bat/back.svg",
  41751. extra: 1577/1405,
  41752. bottom: 58/1635
  41753. }
  41754. },
  41755. },
  41756. [
  41757. {
  41758. name: "Normal",
  41759. height: math.unit(6 + 3/12, "feet"),
  41760. default: true
  41761. },
  41762. ]
  41763. ))
  41764. characterMakers.push(() => makeCharacter(
  41765. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41766. {
  41767. front: {
  41768. height: math.unit(59, "feet"),
  41769. weight: math.unit(40000, "lb"),
  41770. name: "Front",
  41771. image: {
  41772. source: "./media/characters/inari/front.svg",
  41773. extra: 1884/1350,
  41774. bottom: 95/1979
  41775. }
  41776. },
  41777. },
  41778. [
  41779. {
  41780. name: "Gigantamax",
  41781. height: math.unit(59, "feet"),
  41782. default: true
  41783. },
  41784. ]
  41785. ))
  41786. characterMakers.push(() => makeCharacter(
  41787. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41788. {
  41789. front: {
  41790. height: math.unit(5 + 8/12, "feet"),
  41791. name: "Front",
  41792. image: {
  41793. source: "./media/characters/elizabeth/front.svg",
  41794. extra: 1395/1298,
  41795. bottom: 54/1449
  41796. }
  41797. },
  41798. mouth: {
  41799. height: math.unit(1.97, "feet"),
  41800. name: "Mouth",
  41801. image: {
  41802. source: "./media/characters/elizabeth/mouth.svg"
  41803. }
  41804. },
  41805. foot: {
  41806. height: math.unit(1.17, "feet"),
  41807. name: "Foot",
  41808. image: {
  41809. source: "./media/characters/elizabeth/foot.svg"
  41810. }
  41811. },
  41812. },
  41813. [
  41814. {
  41815. name: "Normal",
  41816. height: math.unit(5 + 8/12, "feet"),
  41817. default: true
  41818. },
  41819. {
  41820. name: "Minimacro",
  41821. height: math.unit(18, "feet")
  41822. },
  41823. {
  41824. name: "Macro",
  41825. height: math.unit(180, "feet")
  41826. },
  41827. ]
  41828. ))
  41829. characterMakers.push(() => makeCharacter(
  41830. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41831. {
  41832. front: {
  41833. height: math.unit(5 + 2/12, "feet"),
  41834. name: "Front",
  41835. image: {
  41836. source: "./media/characters/october-gossamer/front.svg",
  41837. extra: 505/454,
  41838. bottom: 7/512
  41839. }
  41840. },
  41841. back: {
  41842. height: math.unit(5 + 2/12, "feet"),
  41843. name: "Back",
  41844. image: {
  41845. source: "./media/characters/october-gossamer/back.svg",
  41846. extra: 501/454,
  41847. bottom: 11/512
  41848. }
  41849. },
  41850. },
  41851. [
  41852. {
  41853. name: "Normal",
  41854. height: math.unit(5 + 2/12, "feet"),
  41855. default: true
  41856. },
  41857. ]
  41858. ))
  41859. characterMakers.push(() => makeCharacter(
  41860. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41861. {
  41862. front: {
  41863. height: math.unit(5, "feet"),
  41864. name: "Front",
  41865. image: {
  41866. source: "./media/characters/epiglottis/front.svg",
  41867. extra: 923/849,
  41868. bottom: 17/940
  41869. }
  41870. },
  41871. },
  41872. [
  41873. {
  41874. name: "Original Size",
  41875. height: math.unit(10, "inches")
  41876. },
  41877. {
  41878. name: "Human Size",
  41879. height: math.unit(5, "feet"),
  41880. default: true
  41881. },
  41882. {
  41883. name: "Big",
  41884. height: math.unit(25, "feet")
  41885. },
  41886. {
  41887. name: "Bigger",
  41888. height: math.unit(50, "feet")
  41889. },
  41890. {
  41891. name: "oh lawd",
  41892. height: math.unit(75, "feet")
  41893. },
  41894. ]
  41895. ))
  41896. characterMakers.push(() => makeCharacter(
  41897. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  41898. {
  41899. front: {
  41900. height: math.unit(2 + 4/12, "feet"),
  41901. weight: math.unit(60, "lb"),
  41902. name: "Front",
  41903. image: {
  41904. source: "./media/characters/lerm/front.svg",
  41905. extra: 796/790,
  41906. bottom: 79/875
  41907. }
  41908. },
  41909. },
  41910. [
  41911. {
  41912. name: "Normal",
  41913. height: math.unit(2 + 4/12, "feet"),
  41914. default: true
  41915. },
  41916. ]
  41917. ))
  41918. characterMakers.push(() => makeCharacter(
  41919. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  41920. {
  41921. front: {
  41922. height: math.unit(5.5, "feet"),
  41923. weight: math.unit(130, "lb"),
  41924. name: "Front",
  41925. image: {
  41926. source: "./media/characters/xena-nebadon/front.svg",
  41927. extra: 1828/1730,
  41928. bottom: 79/1907
  41929. }
  41930. },
  41931. },
  41932. [
  41933. {
  41934. name: "Tiny Puppy",
  41935. height: math.unit(3, "inches")
  41936. },
  41937. {
  41938. name: "Normal",
  41939. height: math.unit(5.5, "feet"),
  41940. default: true
  41941. },
  41942. {
  41943. name: "Lotta Lady",
  41944. height: math.unit(12, "feet")
  41945. },
  41946. {
  41947. name: "Pretty Big",
  41948. height: math.unit(100, "feet")
  41949. },
  41950. {
  41951. name: "Big",
  41952. height: math.unit(500, "feet")
  41953. },
  41954. {
  41955. name: "Skyscraper Toys",
  41956. height: math.unit(2500, "feet")
  41957. },
  41958. {
  41959. name: "Plane Catcher",
  41960. height: math.unit(8, "miles")
  41961. },
  41962. {
  41963. name: "Planet Toys",
  41964. height: math.unit(15, "earths")
  41965. },
  41966. {
  41967. name: "Stardust",
  41968. height: math.unit(0.25, "galaxies")
  41969. },
  41970. {
  41971. name: "Snacks",
  41972. height: math.unit(70, "universes")
  41973. },
  41974. ]
  41975. ))
  41976. characterMakers.push(() => makeCharacter(
  41977. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  41978. {
  41979. front: {
  41980. height: math.unit(1.6, "meters"),
  41981. weight: math.unit(60, "kg"),
  41982. name: "Front",
  41983. image: {
  41984. source: "./media/characters/bounty/front.svg",
  41985. extra: 1426/1308,
  41986. bottom: 15/1441
  41987. }
  41988. },
  41989. },
  41990. [
  41991. {
  41992. name: "Normal",
  41993. height: math.unit(1.6, "meters"),
  41994. default: true
  41995. },
  41996. {
  41997. name: "Macro",
  41998. height: math.unit(300, "meters")
  41999. },
  42000. ]
  42001. ))
  42002. characterMakers.push(() => makeCharacter(
  42003. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42004. {
  42005. front: {
  42006. height: math.unit(2 + 8/12, "feet"),
  42007. weight: math.unit(15, "lb"),
  42008. name: "Front",
  42009. image: {
  42010. source: "./media/characters/mochi/front.svg",
  42011. extra: 1022/852,
  42012. bottom: 435/1457
  42013. }
  42014. },
  42015. back: {
  42016. height: math.unit(2 + 8/12, "feet"),
  42017. weight: math.unit(15, "lb"),
  42018. name: "Back",
  42019. image: {
  42020. source: "./media/characters/mochi/back.svg",
  42021. extra: 1335/1119,
  42022. bottom: 39/1374
  42023. }
  42024. },
  42025. bird: {
  42026. height: math.unit(2 + 8/12, "feet"),
  42027. weight: math.unit(15, "lb"),
  42028. name: "Bird",
  42029. image: {
  42030. source: "./media/characters/mochi/bird.svg",
  42031. extra: 1251/1113,
  42032. bottom: 178/1429
  42033. }
  42034. },
  42035. kaiju: {
  42036. height: math.unit(154, "feet"),
  42037. weight: math.unit(1e7, "lb"),
  42038. name: "Kaiju",
  42039. image: {
  42040. source: "./media/characters/mochi/kaiju.svg",
  42041. extra: 460/324,
  42042. bottom: 40/500
  42043. }
  42044. },
  42045. head: {
  42046. height: math.unit(1.21, "feet"),
  42047. name: "Head",
  42048. image: {
  42049. source: "./media/characters/mochi/head.svg"
  42050. }
  42051. },
  42052. alternateTail: {
  42053. height: math.unit(2 + 8/12, "feet"),
  42054. weight: math.unit(45, "lb"),
  42055. name: "Alternate Tail",
  42056. image: {
  42057. source: "./media/characters/mochi/alternate-tail.svg",
  42058. extra: 139/76,
  42059. bottom: 45/184
  42060. }
  42061. },
  42062. },
  42063. [
  42064. {
  42065. name: "Micro",
  42066. height: math.unit(2, "inches")
  42067. },
  42068. {
  42069. name: "Normal",
  42070. height: math.unit(2 + 8/12, "feet"),
  42071. default: true
  42072. },
  42073. {
  42074. name: "Macro",
  42075. height: math.unit(106, "feet")
  42076. },
  42077. ]
  42078. ))
  42079. characterMakers.push(() => makeCharacter(
  42080. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42081. {
  42082. front: {
  42083. height: math.unit(5.67, "feet"),
  42084. weight: math.unit(135, "lb"),
  42085. name: "Front",
  42086. image: {
  42087. source: "./media/characters/sarel/front.svg",
  42088. extra: 865/788,
  42089. bottom: 97/962
  42090. }
  42091. },
  42092. back: {
  42093. height: math.unit(5.67, "feet"),
  42094. weight: math.unit(135, "lb"),
  42095. name: "Back",
  42096. image: {
  42097. source: "./media/characters/sarel/back.svg",
  42098. extra: 857/777,
  42099. bottom: 32/889
  42100. }
  42101. },
  42102. chozoan: {
  42103. height: math.unit(5.67, "feet"),
  42104. weight: math.unit(135, "lb"),
  42105. name: "Chozoan",
  42106. image: {
  42107. source: "./media/characters/sarel/chozoan.svg",
  42108. extra: 865/788,
  42109. bottom: 97/962
  42110. }
  42111. },
  42112. current: {
  42113. height: math.unit(5.67, "feet"),
  42114. weight: math.unit(135, "lb"),
  42115. name: "Current",
  42116. image: {
  42117. source: "./media/characters/sarel/current.svg",
  42118. extra: 865/788,
  42119. bottom: 97/962
  42120. }
  42121. },
  42122. head: {
  42123. height: math.unit(1.77, "feet"),
  42124. name: "Head",
  42125. image: {
  42126. source: "./media/characters/sarel/head.svg"
  42127. }
  42128. },
  42129. claws: {
  42130. height: math.unit(1.8, "feet"),
  42131. name: "Claws",
  42132. image: {
  42133. source: "./media/characters/sarel/claws.svg"
  42134. }
  42135. },
  42136. clawsAlt: {
  42137. height: math.unit(1.8, "feet"),
  42138. name: "Claws-alt",
  42139. image: {
  42140. source: "./media/characters/sarel/claws-alt.svg"
  42141. }
  42142. },
  42143. },
  42144. [
  42145. {
  42146. name: "Normal",
  42147. height: math.unit(5.67, "feet"),
  42148. default: true
  42149. },
  42150. ]
  42151. ))
  42152. characterMakers.push(() => makeCharacter(
  42153. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42154. {
  42155. front: {
  42156. height: math.unit(5500, "feet"),
  42157. name: "Front",
  42158. image: {
  42159. source: "./media/characters/alyonia/front.svg",
  42160. extra: 1200/1135,
  42161. bottom: 29/1229
  42162. }
  42163. },
  42164. back: {
  42165. height: math.unit(5500, "feet"),
  42166. name: "Back",
  42167. image: {
  42168. source: "./media/characters/alyonia/back.svg",
  42169. extra: 1205/1138,
  42170. bottom: 10/1215
  42171. }
  42172. },
  42173. },
  42174. [
  42175. {
  42176. name: "Small",
  42177. height: math.unit(10, "feet")
  42178. },
  42179. {
  42180. name: "Macro",
  42181. height: math.unit(500, "feet")
  42182. },
  42183. {
  42184. name: "Mega Macro",
  42185. height: math.unit(5500, "feet"),
  42186. default: true
  42187. },
  42188. {
  42189. name: "Mega Macro+",
  42190. height: math.unit(500000, "feet")
  42191. },
  42192. {
  42193. name: "Giga Macro",
  42194. height: math.unit(3000, "miles")
  42195. },
  42196. {
  42197. name: "Tera Macro",
  42198. height: math.unit(2.8e6, "miles")
  42199. },
  42200. {
  42201. name: "Galactic",
  42202. height: math.unit(120000, "lightyears")
  42203. },
  42204. ]
  42205. ))
  42206. characterMakers.push(() => makeCharacter(
  42207. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42208. {
  42209. werewolf: {
  42210. height: math.unit(8, "feet"),
  42211. weight: math.unit(425, "lb"),
  42212. name: "Werewolf",
  42213. image: {
  42214. source: "./media/characters/autumn/werewolf.svg",
  42215. extra: 2154/2031,
  42216. bottom: 160/2314
  42217. }
  42218. },
  42219. human: {
  42220. height: math.unit(5 + 8/12, "feet"),
  42221. weight: math.unit(150, "lb"),
  42222. name: "Human",
  42223. image: {
  42224. source: "./media/characters/autumn/human.svg",
  42225. extra: 1200/1149,
  42226. bottom: 30/1230
  42227. }
  42228. },
  42229. },
  42230. [
  42231. {
  42232. name: "Normal",
  42233. height: math.unit(8, "feet"),
  42234. default: true
  42235. },
  42236. ]
  42237. ))
  42238. characterMakers.push(() => makeCharacter(
  42239. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42240. {
  42241. front: {
  42242. height: math.unit(8 + 5/12, "feet"),
  42243. weight: math.unit(825, "lb"),
  42244. name: "Front",
  42245. image: {
  42246. source: "./media/characters/cobalt-charizard/front.svg",
  42247. extra: 1268/1155,
  42248. bottom: 122/1390
  42249. }
  42250. },
  42251. side: {
  42252. height: math.unit(8 + 5/12, "feet"),
  42253. weight: math.unit(825, "lb"),
  42254. name: "Side",
  42255. image: {
  42256. source: "./media/characters/cobalt-charizard/side.svg",
  42257. extra: 1348/1257,
  42258. bottom: 58/1406
  42259. }
  42260. },
  42261. gMax: {
  42262. height: math.unit(134 + 11/12, "feet"),
  42263. name: "G-Max",
  42264. image: {
  42265. source: "./media/characters/cobalt-charizard/g-max.svg",
  42266. extra: 1835/1541,
  42267. bottom: 151/1986
  42268. }
  42269. },
  42270. },
  42271. [
  42272. {
  42273. name: "Normal",
  42274. height: math.unit(8 + 5/12, "feet"),
  42275. default: true
  42276. },
  42277. ]
  42278. ))
  42279. characterMakers.push(() => makeCharacter(
  42280. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42281. {
  42282. front: {
  42283. height: math.unit(6 + 3/12, "feet"),
  42284. weight: math.unit(210, "lb"),
  42285. name: "Front",
  42286. image: {
  42287. source: "./media/characters/stella/front.svg",
  42288. extra: 3549/3335,
  42289. bottom: 51/3600
  42290. }
  42291. },
  42292. },
  42293. [
  42294. {
  42295. name: "Normal",
  42296. height: math.unit(6 + 3/12, "feet"),
  42297. default: true
  42298. },
  42299. ]
  42300. ))
  42301. characterMakers.push(() => makeCharacter(
  42302. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42303. {
  42304. front: {
  42305. height: math.unit(5, "feet"),
  42306. weight: math.unit(90, "lb"),
  42307. name: "Front",
  42308. image: {
  42309. source: "./media/characters/riley-bishop/front.svg",
  42310. extra: 1450/1428,
  42311. bottom: 152/1602
  42312. }
  42313. },
  42314. },
  42315. [
  42316. {
  42317. name: "Normal",
  42318. height: math.unit(5, "feet"),
  42319. default: true
  42320. },
  42321. ]
  42322. ))
  42323. characterMakers.push(() => makeCharacter(
  42324. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42325. {
  42326. side: {
  42327. height: math.unit(8 + 2/12, "feet"),
  42328. weight: math.unit(500, "kg"),
  42329. name: "Side",
  42330. image: {
  42331. source: "./media/characters/theo-arcanine/side.svg",
  42332. extra: 1342/1074,
  42333. bottom: 111/1453
  42334. }
  42335. },
  42336. },
  42337. [
  42338. {
  42339. name: "Normal",
  42340. height: math.unit(8 + 2/12, "feet"),
  42341. default: true
  42342. },
  42343. ]
  42344. ))
  42345. characterMakers.push(() => makeCharacter(
  42346. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42347. {
  42348. front: {
  42349. height: math.unit(4, "feet"),
  42350. name: "Front",
  42351. image: {
  42352. source: "./media/characters/kali/front.svg",
  42353. extra: 1921/1357,
  42354. bottom: 70/1991
  42355. }
  42356. },
  42357. },
  42358. [
  42359. {
  42360. name: "Normal",
  42361. height: math.unit(4, "feet"),
  42362. default: true
  42363. },
  42364. {
  42365. name: "Macro",
  42366. height: math.unit(32, "meters")
  42367. },
  42368. {
  42369. name: "Macro+",
  42370. height: math.unit(150, "meters")
  42371. },
  42372. {
  42373. name: "Megamacro",
  42374. height: math.unit(7500, "meters")
  42375. },
  42376. {
  42377. name: "Megamacro+",
  42378. height: math.unit(80, "kilometers")
  42379. },
  42380. ]
  42381. ))
  42382. characterMakers.push(() => makeCharacter(
  42383. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42384. {
  42385. side: {
  42386. height: math.unit(5 + 11/12, "feet"),
  42387. weight: math.unit(236, "lb"),
  42388. name: "Side",
  42389. image: {
  42390. source: "./media/characters/gapp/side.svg",
  42391. extra: 775/340,
  42392. bottom: 58/833
  42393. }
  42394. },
  42395. mouth: {
  42396. height: math.unit(2.98, "feet"),
  42397. name: "Mouth",
  42398. image: {
  42399. source: "./media/characters/gapp/mouth.svg"
  42400. }
  42401. },
  42402. },
  42403. [
  42404. {
  42405. name: "Normal",
  42406. height: math.unit(5 + 1/12, "feet"),
  42407. default: true
  42408. },
  42409. ]
  42410. ))
  42411. characterMakers.push(() => makeCharacter(
  42412. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42413. {
  42414. front: {
  42415. height: math.unit(6, "feet"),
  42416. name: "Front",
  42417. image: {
  42418. source: "./media/characters/persephone/front.svg",
  42419. extra: 1895/1717,
  42420. bottom: 96/1991
  42421. }
  42422. },
  42423. back: {
  42424. height: math.unit(6, "feet"),
  42425. name: "Back",
  42426. image: {
  42427. source: "./media/characters/persephone/back.svg",
  42428. extra: 1868/1679,
  42429. bottom: 26/1894
  42430. }
  42431. },
  42432. casual: {
  42433. height: math.unit(6, "feet"),
  42434. name: "Casual",
  42435. image: {
  42436. source: "./media/characters/persephone/casual.svg",
  42437. extra: 1713/1541,
  42438. bottom: 76/1789
  42439. }
  42440. },
  42441. },
  42442. [
  42443. {
  42444. name: "Human Size",
  42445. height: math.unit(6, "feet"),
  42446. default: true
  42447. },
  42448. {
  42449. name: "Galaxy Brain",
  42450. height: math.unit(1, "zettameter")
  42451. },
  42452. ]
  42453. ))
  42454. characterMakers.push(() => makeCharacter(
  42455. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42456. {
  42457. front: {
  42458. height: math.unit(1.85, "meters"),
  42459. name: "Front",
  42460. image: {
  42461. source: "./media/characters/riley-foxthing/front.svg",
  42462. extra: 1495/1354,
  42463. bottom: 122/1617
  42464. }
  42465. },
  42466. frontAlt: {
  42467. height: math.unit(1.85, "meters"),
  42468. name: "Front (Alt)",
  42469. image: {
  42470. source: "./media/characters/riley-foxthing/front-alt.svg",
  42471. extra: 1572/1389,
  42472. bottom: 116/1688
  42473. }
  42474. },
  42475. },
  42476. [
  42477. {
  42478. name: "Normal Sized",
  42479. height: math.unit(1.85, "meters"),
  42480. default: true
  42481. },
  42482. {
  42483. name: "Quite Sizable",
  42484. height: math.unit(5, "meters")
  42485. },
  42486. {
  42487. name: "Rather Large",
  42488. height: math.unit(20, "meters")
  42489. },
  42490. {
  42491. name: "Macro",
  42492. height: math.unit(450, "meters")
  42493. },
  42494. {
  42495. name: "Giga",
  42496. height: math.unit(5, "km")
  42497. },
  42498. ]
  42499. ))
  42500. characterMakers.push(() => makeCharacter(
  42501. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42502. {
  42503. front: {
  42504. height: math.unit(6, "feet"),
  42505. weight: math.unit(200, "lb"),
  42506. name: "Front",
  42507. image: {
  42508. source: "./media/characters/blizzard/front.svg",
  42509. extra: 1136/990,
  42510. bottom: 136/1272
  42511. }
  42512. },
  42513. back: {
  42514. height: math.unit(6, "feet"),
  42515. weight: math.unit(200, "lb"),
  42516. name: "Back",
  42517. image: {
  42518. source: "./media/characters/blizzard/back.svg",
  42519. extra: 1175/1034,
  42520. bottom: 97/1272
  42521. }
  42522. },
  42523. sitting: {
  42524. height: math.unit(3.725, "feet"),
  42525. weight: math.unit(200, "lb"),
  42526. name: "Sitting",
  42527. image: {
  42528. source: "./media/characters/blizzard/sitting.svg",
  42529. extra: 581/485,
  42530. bottom: 90/671
  42531. }
  42532. },
  42533. frontWizard: {
  42534. height: math.unit(7.9, "feet"),
  42535. weight: math.unit(200, "lb"),
  42536. name: "Front (Wizard)",
  42537. image: {
  42538. source: "./media/characters/blizzard/front-wizard.svg"
  42539. }
  42540. },
  42541. backWizard: {
  42542. height: math.unit(7.9, "feet"),
  42543. weight: math.unit(200, "lb"),
  42544. name: "Back (Wizard)",
  42545. image: {
  42546. source: "./media/characters/blizzard/back-wizard.svg"
  42547. }
  42548. },
  42549. frontNsfw: {
  42550. height: math.unit(6, "feet"),
  42551. weight: math.unit(200, "lb"),
  42552. name: "Front (NSFW)",
  42553. image: {
  42554. source: "./media/characters/blizzard/front-nsfw.svg",
  42555. extra: 1136/990,
  42556. bottom: 136/1272
  42557. }
  42558. },
  42559. backNsfw: {
  42560. height: math.unit(6, "feet"),
  42561. weight: math.unit(200, "lb"),
  42562. name: "Back (NSFW)",
  42563. image: {
  42564. source: "./media/characters/blizzard/back-nsfw.svg",
  42565. extra: 1175/1034,
  42566. bottom: 97/1272
  42567. }
  42568. },
  42569. sittingNsfw: {
  42570. height: math.unit(3.725, "feet"),
  42571. weight: math.unit(200, "lb"),
  42572. name: "Sitting (NSFW)",
  42573. image: {
  42574. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42575. extra: 581/485,
  42576. bottom: 90/671
  42577. }
  42578. },
  42579. wizardFrontNsfw: {
  42580. height: math.unit(7.9, "feet"),
  42581. weight: math.unit(200, "lb"),
  42582. name: "Wizard (Front, NSFW)",
  42583. image: {
  42584. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42585. }
  42586. },
  42587. },
  42588. [
  42589. {
  42590. name: "Normal",
  42591. height: math.unit(6, "feet"),
  42592. default: true
  42593. },
  42594. ]
  42595. ))
  42596. characterMakers.push(() => makeCharacter(
  42597. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42598. {
  42599. front: {
  42600. height: math.unit(5 + 2/12, "feet"),
  42601. name: "Front",
  42602. image: {
  42603. source: "./media/characters/lumi/front.svg",
  42604. extra: 1328/1268,
  42605. bottom: 103/1431
  42606. }
  42607. },
  42608. back: {
  42609. height: math.unit(5 + 2/12, "feet"),
  42610. name: "Back",
  42611. image: {
  42612. source: "./media/characters/lumi/back.svg",
  42613. extra: 1381/1327,
  42614. bottom: 43/1424
  42615. }
  42616. },
  42617. },
  42618. [
  42619. {
  42620. name: "Normal",
  42621. height: math.unit(5 + 2/12, "feet"),
  42622. default: true
  42623. },
  42624. ]
  42625. ))
  42626. characterMakers.push(() => makeCharacter(
  42627. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42628. {
  42629. front: {
  42630. height: math.unit(5 + 9/12, "feet"),
  42631. name: "Front",
  42632. image: {
  42633. source: "./media/characters/aliya-cotton/front.svg",
  42634. extra: 577/564,
  42635. bottom: 29/606
  42636. }
  42637. },
  42638. },
  42639. [
  42640. {
  42641. name: "Normal",
  42642. height: math.unit(5 + 9/12, "feet"),
  42643. default: true
  42644. },
  42645. ]
  42646. ))
  42647. characterMakers.push(() => makeCharacter(
  42648. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  42649. {
  42650. front: {
  42651. height: math.unit(2.7, "meters"),
  42652. weight: math.unit(25000, "lb"),
  42653. name: "Front",
  42654. image: {
  42655. source: "./media/characters/noah-luxray/front.svg",
  42656. extra: 1644/825,
  42657. bottom: 339/1983
  42658. }
  42659. },
  42660. side: {
  42661. height: math.unit(2.97, "meters"),
  42662. weight: math.unit(25000, "lb"),
  42663. name: "Side",
  42664. image: {
  42665. source: "./media/characters/noah-luxray/side.svg",
  42666. extra: 1319/650,
  42667. bottom: 163/1482
  42668. }
  42669. },
  42670. dick: {
  42671. height: math.unit(7.4, "feet"),
  42672. weight: math.unit(2500, "lb"),
  42673. name: "Dick",
  42674. image: {
  42675. source: "./media/characters/noah-luxray/dick.svg"
  42676. }
  42677. },
  42678. dickAlt: {
  42679. height: math.unit(10.83, "feet"),
  42680. weight: math.unit(2500, "lb"),
  42681. name: "Dick-alt",
  42682. image: {
  42683. source: "./media/characters/noah-luxray/dick-alt.svg"
  42684. }
  42685. },
  42686. },
  42687. [
  42688. {
  42689. name: "BIG",
  42690. height: math.unit(2.7, "meters"),
  42691. default: true
  42692. },
  42693. ]
  42694. ))
  42695. characterMakers.push(() => makeCharacter(
  42696. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  42697. {
  42698. standing: {
  42699. height: math.unit(183, "cm"),
  42700. weight: math.unit(68, "kg"),
  42701. name: "Standing",
  42702. image: {
  42703. source: "./media/characters/arion/standing.svg",
  42704. extra: 1869/1807,
  42705. bottom: 93/1962
  42706. }
  42707. },
  42708. reclining: {
  42709. height: math.unit(70.5, "cm"),
  42710. weight: math.unit(68, "lb"),
  42711. name: "Reclining",
  42712. image: {
  42713. source: "./media/characters/arion/reclining.svg",
  42714. extra: 937/870,
  42715. bottom: 63/1000
  42716. }
  42717. },
  42718. },
  42719. [
  42720. {
  42721. name: "Colossus Size, Low",
  42722. height: math.unit(33, "meters"),
  42723. default: true
  42724. },
  42725. {
  42726. name: "Colossus Size, Mid",
  42727. height: math.unit(52, "meters")
  42728. },
  42729. {
  42730. name: "Colossus Size, High",
  42731. height: math.unit(60, "meters")
  42732. },
  42733. {
  42734. name: "Titan Size, Low",
  42735. height: math.unit(91, "meters"),
  42736. },
  42737. {
  42738. name: "Titan Size, Mid",
  42739. height: math.unit(122, "meters")
  42740. },
  42741. {
  42742. name: "Titan Size, High",
  42743. height: math.unit(162, "meters")
  42744. },
  42745. ]
  42746. ))
  42747. characterMakers.push(() => makeCharacter(
  42748. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  42749. {
  42750. front: {
  42751. height: math.unit(53, "meters"),
  42752. name: "Front",
  42753. image: {
  42754. source: "./media/characters/stellar-marbey/front.svg",
  42755. extra: 1913/1805,
  42756. bottom: 92/2005
  42757. }
  42758. },
  42759. back: {
  42760. height: math.unit(53, "meters"),
  42761. name: "Back",
  42762. image: {
  42763. source: "./media/characters/stellar-marbey/back.svg",
  42764. extra: 1960/1851,
  42765. bottom: 28/1988
  42766. }
  42767. },
  42768. mouth: {
  42769. height: math.unit(3.5, "meters"),
  42770. name: "Mouth",
  42771. image: {
  42772. source: "./media/characters/stellar-marbey/mouth.svg"
  42773. }
  42774. },
  42775. },
  42776. [
  42777. {
  42778. name: "Macro",
  42779. height: math.unit(53, "meters"),
  42780. default: true
  42781. },
  42782. ]
  42783. ))
  42784. characterMakers.push(() => makeCharacter(
  42785. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  42786. {
  42787. front: {
  42788. height: math.unit(8 + 1/12, "feet"),
  42789. weight: math.unit(233, "lb"),
  42790. name: "Front",
  42791. image: {
  42792. source: "./media/characters/matsu/front.svg",
  42793. extra: 832/772,
  42794. bottom: 40/872
  42795. }
  42796. },
  42797. back: {
  42798. height: math.unit(8 + 1/12, "feet"),
  42799. weight: math.unit(233, "lb"),
  42800. name: "Back",
  42801. image: {
  42802. source: "./media/characters/matsu/back.svg",
  42803. extra: 839/780,
  42804. bottom: 47/886
  42805. }
  42806. },
  42807. },
  42808. [
  42809. {
  42810. name: "Normal",
  42811. height: math.unit(8 + 1/12, "feet"),
  42812. default: true
  42813. },
  42814. ]
  42815. ))
  42816. characterMakers.push(() => makeCharacter(
  42817. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  42818. {
  42819. front: {
  42820. height: math.unit(4, "feet"),
  42821. weight: math.unit(148, "lb"),
  42822. name: "Front",
  42823. image: {
  42824. source: "./media/characters/thiz/front.svg",
  42825. extra: 1913/1748,
  42826. bottom: 62/1975
  42827. }
  42828. },
  42829. },
  42830. [
  42831. {
  42832. name: "Normal",
  42833. height: math.unit(4, "feet"),
  42834. default: true
  42835. },
  42836. ]
  42837. ))
  42838. characterMakers.push(() => makeCharacter(
  42839. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  42840. {
  42841. front: {
  42842. height: math.unit(7 + 6/12, "feet"),
  42843. weight: math.unit(267, "lb"),
  42844. name: "Front",
  42845. image: {
  42846. source: "./media/characters/marcel/front.svg",
  42847. extra: 1221/1096,
  42848. bottom: 76/1297
  42849. }
  42850. },
  42851. },
  42852. [
  42853. {
  42854. name: "Normal",
  42855. height: math.unit(7 + 6/12, "feet"),
  42856. default: true
  42857. },
  42858. ]
  42859. ))
  42860. characterMakers.push(() => makeCharacter(
  42861. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  42862. {
  42863. side: {
  42864. height: math.unit(42, "meters"),
  42865. name: "Side",
  42866. image: {
  42867. source: "./media/characters/flake/side.svg",
  42868. extra: 1525/1306,
  42869. bottom: 209/1734
  42870. }
  42871. },
  42872. },
  42873. [
  42874. {
  42875. name: "Normal",
  42876. height: math.unit(42, "meters"),
  42877. default: true
  42878. },
  42879. ]
  42880. ))
  42881. characterMakers.push(() => makeCharacter(
  42882. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  42883. {
  42884. dressed: {
  42885. height: math.unit(6 + 4/12, "feet"),
  42886. weight: math.unit(520, "lb"),
  42887. name: "Dressed",
  42888. image: {
  42889. source: "./media/characters/someonne/dressed.svg",
  42890. extra: 1020/1010,
  42891. bottom: 178/1198
  42892. }
  42893. },
  42894. undressed: {
  42895. height: math.unit(6 + 4/12, "feet"),
  42896. weight: math.unit(520, "lb"),
  42897. name: "Undressed",
  42898. image: {
  42899. source: "./media/characters/someonne/undressed.svg",
  42900. extra: 1019/1014,
  42901. bottom: 169/1188
  42902. }
  42903. },
  42904. },
  42905. [
  42906. {
  42907. name: "Normal",
  42908. height: math.unit(6 + 4/12, "feet"),
  42909. default: true
  42910. },
  42911. ]
  42912. ))
  42913. characterMakers.push(() => makeCharacter(
  42914. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  42915. {
  42916. front: {
  42917. height: math.unit(3, "feet"),
  42918. weight: math.unit(30, "lb"),
  42919. name: "Front",
  42920. image: {
  42921. source: "./media/characters/till/front.svg",
  42922. extra: 892/823,
  42923. bottom: 55/947
  42924. }
  42925. },
  42926. },
  42927. [
  42928. {
  42929. name: "Normal",
  42930. height: math.unit(3, "feet"),
  42931. default: true
  42932. },
  42933. ]
  42934. ))
  42935. characterMakers.push(() => makeCharacter(
  42936. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  42937. {
  42938. front: {
  42939. height: math.unit(9 + 8/12, "feet"),
  42940. weight: math.unit(800, "lb"),
  42941. name: "Front",
  42942. image: {
  42943. source: "./media/characters/sydney-heki/front.svg",
  42944. extra: 1360/1300,
  42945. bottom: 22/1382
  42946. }
  42947. },
  42948. back: {
  42949. height: math.unit(9 + 8/12, "feet"),
  42950. weight: math.unit(800, "lb"),
  42951. name: "Back",
  42952. image: {
  42953. source: "./media/characters/sydney-heki/back.svg",
  42954. extra: 1356/1293,
  42955. bottom: 12/1368
  42956. }
  42957. },
  42958. frontDressed: {
  42959. height: math.unit(9 + 8/12, "feet"),
  42960. weight: math.unit(800, "lb"),
  42961. name: "Front-dressed",
  42962. image: {
  42963. source: "./media/characters/sydney-heki/front-dressed.svg",
  42964. extra: 1360/1300,
  42965. bottom: 22/1382
  42966. }
  42967. },
  42968. },
  42969. [
  42970. {
  42971. name: "Normal",
  42972. height: math.unit(9 + 8/12, "feet"),
  42973. default: true
  42974. },
  42975. {
  42976. name: "Macro",
  42977. height: math.unit(500, "feet")
  42978. },
  42979. {
  42980. name: "Megamacro",
  42981. height: math.unit(3.6, "miles")
  42982. },
  42983. ]
  42984. ))
  42985. characterMakers.push(() => makeCharacter(
  42986. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  42987. {
  42988. front: {
  42989. height: math.unit(200, "cm"),
  42990. weight: math.unit(250, "lb"),
  42991. name: "Front",
  42992. image: {
  42993. source: "./media/characters/fowler-karlsson/front.svg",
  42994. extra: 897/845,
  42995. bottom: 123/1020
  42996. }
  42997. },
  42998. back: {
  42999. height: math.unit(200, "cm"),
  43000. weight: math.unit(250, "lb"),
  43001. name: "Back",
  43002. image: {
  43003. source: "./media/characters/fowler-karlsson/back.svg",
  43004. extra: 999/944,
  43005. bottom: 26/1025
  43006. }
  43007. },
  43008. dick: {
  43009. height: math.unit(1.92, "feet"),
  43010. weight: math.unit(150, "lb"),
  43011. name: "Dick",
  43012. image: {
  43013. source: "./media/characters/fowler-karlsson/dick.svg"
  43014. }
  43015. },
  43016. },
  43017. [
  43018. {
  43019. name: "Normal",
  43020. height: math.unit(200, "cm"),
  43021. default: true
  43022. },
  43023. {
  43024. name: "Smaller Macro",
  43025. height: math.unit(90, "m")
  43026. },
  43027. {
  43028. name: "Macro",
  43029. height: math.unit(150, "m")
  43030. },
  43031. {
  43032. name: "Bigger Macro",
  43033. height: math.unit(300, "m")
  43034. },
  43035. ]
  43036. ))
  43037. characterMakers.push(() => makeCharacter(
  43038. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43039. {
  43040. side: {
  43041. height: math.unit(8 + 2/12, "feet"),
  43042. weight: math.unit(1, "tonne"),
  43043. name: "Side",
  43044. image: {
  43045. source: "./media/characters/rylide/side.svg",
  43046. extra: 1318/1034,
  43047. bottom: 106/1424
  43048. }
  43049. },
  43050. sitting: {
  43051. height: math.unit(303, "cm"),
  43052. weight: math.unit(1, "tonne"),
  43053. name: "Sitting",
  43054. image: {
  43055. source: "./media/characters/rylide/sitting.svg",
  43056. extra: 1303/1103,
  43057. bottom: 36/1339
  43058. }
  43059. },
  43060. },
  43061. [
  43062. {
  43063. name: "Normal",
  43064. height: math.unit(8 + 2/12, "feet"),
  43065. default: true
  43066. },
  43067. ]
  43068. ))
  43069. characterMakers.push(() => makeCharacter(
  43070. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43071. {
  43072. front: {
  43073. height: math.unit(5 + 10/12, "feet"),
  43074. weight: math.unit(160, "lb"),
  43075. name: "Front",
  43076. image: {
  43077. source: "./media/characters/pudask/front.svg",
  43078. extra: 1616/1590,
  43079. bottom: 161/1777
  43080. }
  43081. },
  43082. },
  43083. [
  43084. {
  43085. name: "Ferret Height",
  43086. height: math.unit(2 + 5/12, "feet")
  43087. },
  43088. {
  43089. name: "Canon Height",
  43090. height: math.unit(5 + 10/12, "feet"),
  43091. default: true
  43092. },
  43093. ]
  43094. ))
  43095. characterMakers.push(() => makeCharacter(
  43096. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43097. {
  43098. front: {
  43099. height: math.unit(3 + 6/12, "feet"),
  43100. weight: math.unit(60, "lb"),
  43101. name: "Front",
  43102. image: {
  43103. source: "./media/characters/ramita/front.svg",
  43104. extra: 1402/1232,
  43105. bottom: 62/1464
  43106. }
  43107. },
  43108. dressed: {
  43109. height: math.unit(3 + 6/12, "feet"),
  43110. weight: math.unit(60, "lb"),
  43111. name: "Dressed",
  43112. image: {
  43113. source: "./media/characters/ramita/dressed.svg",
  43114. extra: 1534/1249,
  43115. bottom: 50/1584
  43116. }
  43117. },
  43118. },
  43119. [
  43120. {
  43121. name: "Normal",
  43122. height: math.unit(3 + 6/12, "feet"),
  43123. default: true
  43124. },
  43125. ]
  43126. ))
  43127. characterMakers.push(() => makeCharacter(
  43128. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43129. {
  43130. front: {
  43131. height: math.unit(8, "feet"),
  43132. name: "Front",
  43133. image: {
  43134. source: "./media/characters/ark/front.svg",
  43135. extra: 772/693,
  43136. bottom: 45/817
  43137. }
  43138. },
  43139. },
  43140. [
  43141. {
  43142. name: "Normal",
  43143. height: math.unit(8, "feet"),
  43144. default: true
  43145. },
  43146. ]
  43147. ))
  43148. characterMakers.push(() => makeCharacter(
  43149. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43150. {
  43151. front: {
  43152. height: math.unit(6, "feet"),
  43153. weight: math.unit(250, "lb"),
  43154. volume: math.unit(5/8, "gallons"),
  43155. name: "Front",
  43156. image: {
  43157. source: "./media/characters/ludwig-horn/front.svg",
  43158. extra: 1782/1635,
  43159. bottom: 96/1878
  43160. }
  43161. },
  43162. back: {
  43163. height: math.unit(6, "feet"),
  43164. weight: math.unit(250, "lb"),
  43165. volume: math.unit(5/8, "gallons"),
  43166. name: "Back",
  43167. image: {
  43168. source: "./media/characters/ludwig-horn/back.svg",
  43169. extra: 1874/1729,
  43170. bottom: 27/1901
  43171. }
  43172. },
  43173. dick: {
  43174. height: math.unit(1.05, "feet"),
  43175. weight: math.unit(15, "lb"),
  43176. volume: math.unit(5/8, "gallons"),
  43177. name: "Dick",
  43178. image: {
  43179. source: "./media/characters/ludwig-horn/dick.svg"
  43180. }
  43181. },
  43182. },
  43183. [
  43184. {
  43185. name: "Small",
  43186. height: math.unit(6, "feet")
  43187. },
  43188. {
  43189. name: "Typical",
  43190. height: math.unit(12, "feet"),
  43191. default: true
  43192. },
  43193. {
  43194. name: "Building",
  43195. height: math.unit(80, "feet")
  43196. },
  43197. {
  43198. name: "Town",
  43199. height: math.unit(800, "feet")
  43200. },
  43201. {
  43202. name: "Kingdom",
  43203. height: math.unit(80000, "feet")
  43204. },
  43205. {
  43206. name: "Planet",
  43207. height: math.unit(8000000, "feet")
  43208. },
  43209. {
  43210. name: "Universe",
  43211. height: math.unit(8000000000, "feet")
  43212. },
  43213. {
  43214. name: "Transcended",
  43215. height: math.unit(8e27, "feet")
  43216. },
  43217. ]
  43218. ))
  43219. characterMakers.push(() => makeCharacter(
  43220. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43221. {
  43222. front: {
  43223. height: math.unit(5, "feet"),
  43224. weight: math.unit(50, "kg"),
  43225. name: "Front",
  43226. image: {
  43227. source: "./media/characters/biot-avery/front.svg",
  43228. extra: 1295/1232,
  43229. bottom: 86/1381
  43230. }
  43231. },
  43232. },
  43233. [
  43234. {
  43235. name: "Normal",
  43236. height: math.unit(5, "feet"),
  43237. default: true
  43238. },
  43239. ]
  43240. ))
  43241. characterMakers.push(() => makeCharacter(
  43242. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43243. {
  43244. front: {
  43245. height: math.unit(6, "feet"),
  43246. name: "Front",
  43247. image: {
  43248. source: "./media/characters/kitsune-kiro/front.svg",
  43249. extra: 1270/1158,
  43250. bottom: 42/1312
  43251. }
  43252. },
  43253. frontAlt: {
  43254. height: math.unit(6, "feet"),
  43255. name: "Front-alt",
  43256. image: {
  43257. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43258. extra: 1130/1081,
  43259. bottom: 36/1166
  43260. }
  43261. },
  43262. },
  43263. [
  43264. {
  43265. name: "Smol",
  43266. height: math.unit(3, "feet")
  43267. },
  43268. {
  43269. name: "Normal",
  43270. height: math.unit(6, "feet"),
  43271. default: true
  43272. },
  43273. ]
  43274. ))
  43275. characterMakers.push(() => makeCharacter(
  43276. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43277. {
  43278. front: {
  43279. height: math.unit(6, "feet"),
  43280. weight: math.unit(125, "lb"),
  43281. name: "Front",
  43282. image: {
  43283. source: "./media/characters/jack-thatcher/front.svg",
  43284. extra: 1474/1370,
  43285. bottom: 26/1500
  43286. }
  43287. },
  43288. back: {
  43289. height: math.unit(6, "feet"),
  43290. weight: math.unit(125, "lb"),
  43291. name: "Back",
  43292. image: {
  43293. source: "./media/characters/jack-thatcher/back.svg",
  43294. extra: 1489/1384,
  43295. bottom: 18/1507
  43296. }
  43297. },
  43298. },
  43299. [
  43300. {
  43301. name: "Normal",
  43302. height: math.unit(6, "feet"),
  43303. default: true
  43304. },
  43305. {
  43306. name: "Macro",
  43307. height: math.unit(75, "feet")
  43308. },
  43309. {
  43310. name: "Macro-er",
  43311. height: math.unit(250, "feet")
  43312. },
  43313. ]
  43314. ))
  43315. characterMakers.push(() => makeCharacter(
  43316. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43317. {
  43318. front: {
  43319. height: math.unit(7, "feet"),
  43320. weight: math.unit(110, "kg"),
  43321. name: "Front",
  43322. image: {
  43323. source: "./media/characters/max-hyper/front.svg",
  43324. extra: 1969/1881,
  43325. bottom: 49/2018
  43326. }
  43327. },
  43328. },
  43329. [
  43330. {
  43331. name: "Normal",
  43332. height: math.unit(7, "feet"),
  43333. default: true
  43334. },
  43335. ]
  43336. ))
  43337. characterMakers.push(() => makeCharacter(
  43338. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43339. {
  43340. front: {
  43341. height: math.unit(5 + 5/12, "feet"),
  43342. weight: math.unit(160, "lb"),
  43343. name: "Front",
  43344. image: {
  43345. source: "./media/characters/spook/front.svg",
  43346. extra: 794/791,
  43347. bottom: 54/848
  43348. }
  43349. },
  43350. back: {
  43351. height: math.unit(5 + 5/12, "feet"),
  43352. weight: math.unit(160, "lb"),
  43353. name: "Back",
  43354. image: {
  43355. source: "./media/characters/spook/back.svg",
  43356. extra: 812/798,
  43357. bottom: 32/844
  43358. }
  43359. },
  43360. },
  43361. [
  43362. {
  43363. name: "Normal",
  43364. height: math.unit(5 + 5/12, "feet"),
  43365. default: true
  43366. },
  43367. ]
  43368. ))
  43369. characterMakers.push(() => makeCharacter(
  43370. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43371. {
  43372. front: {
  43373. height: math.unit(18, "feet"),
  43374. name: "Front",
  43375. image: {
  43376. source: "./media/characters/xeaduulix/front.svg",
  43377. extra: 1380/1166,
  43378. bottom: 110/1490
  43379. }
  43380. },
  43381. back: {
  43382. height: math.unit(18, "feet"),
  43383. name: "Back",
  43384. image: {
  43385. source: "./media/characters/xeaduulix/back.svg",
  43386. extra: 1592/1170,
  43387. bottom: 128/1720
  43388. }
  43389. },
  43390. frontNsfw: {
  43391. height: math.unit(18, "feet"),
  43392. name: "Front (NSFW)",
  43393. image: {
  43394. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43395. extra: 1380/1166,
  43396. bottom: 110/1490
  43397. }
  43398. },
  43399. backNsfw: {
  43400. height: math.unit(18, "feet"),
  43401. name: "Back (NSFW)",
  43402. image: {
  43403. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43404. extra: 1592/1170,
  43405. bottom: 128/1720
  43406. }
  43407. },
  43408. },
  43409. [
  43410. {
  43411. name: "Normal",
  43412. height: math.unit(18, "feet"),
  43413. default: true
  43414. },
  43415. ]
  43416. ))
  43417. characterMakers.push(() => makeCharacter(
  43418. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43419. {
  43420. spreadWings: {
  43421. height: math.unit(20, "feet"),
  43422. name: "Spread Wings",
  43423. image: {
  43424. source: "./media/characters/fledge/spread-wings.svg",
  43425. extra: 693/635,
  43426. bottom: 26/719
  43427. }
  43428. },
  43429. front: {
  43430. height: math.unit(20, "feet"),
  43431. name: "Front",
  43432. image: {
  43433. source: "./media/characters/fledge/front.svg",
  43434. extra: 684/637,
  43435. bottom: 18/702
  43436. }
  43437. },
  43438. frontAlt: {
  43439. height: math.unit(20, "feet"),
  43440. name: "Front (Alt)",
  43441. image: {
  43442. source: "./media/characters/fledge/front-alt.svg",
  43443. extra: 708/664,
  43444. bottom: 13/721
  43445. }
  43446. },
  43447. back: {
  43448. height: math.unit(20, "feet"),
  43449. name: "Back",
  43450. image: {
  43451. source: "./media/characters/fledge/back.svg",
  43452. extra: 718/634,
  43453. bottom: 22/740
  43454. }
  43455. },
  43456. head: {
  43457. height: math.unit(5.55, "feet"),
  43458. name: "Head",
  43459. image: {
  43460. source: "./media/characters/fledge/head.svg"
  43461. }
  43462. },
  43463. headAlt: {
  43464. height: math.unit(5.1, "feet"),
  43465. name: "Head (Alt)",
  43466. image: {
  43467. source: "./media/characters/fledge/head-alt.svg"
  43468. }
  43469. },
  43470. },
  43471. [
  43472. {
  43473. name: "Small",
  43474. height: math.unit(6 + 2/12, "feet")
  43475. },
  43476. {
  43477. name: "Big",
  43478. height: math.unit(20, "feet"),
  43479. default: true
  43480. },
  43481. {
  43482. name: "Giant",
  43483. height: math.unit(100, "feet")
  43484. },
  43485. {
  43486. name: "Macro",
  43487. height: math.unit(200, "feet")
  43488. },
  43489. ]
  43490. ))
  43491. //characters
  43492. function makeCharacters() {
  43493. const results = [];
  43494. characterMakers.forEach(character => {
  43495. results.push(character());
  43496. });
  43497. return results;
  43498. }