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

41647 строки
1.0 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"]
  569. },
  570. "meerkat": {
  571. name: "Meerkat",
  572. parents: ["mammal"]
  573. },
  574. "human": {
  575. name: "Human",
  576. parents: ["mammal"]
  577. },
  578. "geth": {
  579. name: "Geth",
  580. parents: ["android"]
  581. },
  582. "husky": {
  583. name: "Husky",
  584. parents: ["dog"]
  585. },
  586. "long-eared-bat": {
  587. name: "Long Eared Bat",
  588. parents: ["bat"]
  589. },
  590. "lizard": {
  591. name: "Lizard",
  592. parents: ["reptile"]
  593. },
  594. "salamander": {
  595. name: "Salamander",
  596. parents: ["lizard"]
  597. },
  598. "chameleon": {
  599. name: "Chameleon",
  600. parents: ["lizard"]
  601. },
  602. "gecko": {
  603. name: "Gecko",
  604. parents: ["lizard"]
  605. },
  606. "kobold": {
  607. name: "Kobold",
  608. parents: ["reptile"]
  609. },
  610. "charizard": {
  611. name: "Charizard",
  612. parents: ["pokemon"]
  613. },
  614. "lugia": {
  615. name: "Lugia",
  616. parents: ["pokemon"]
  617. },
  618. "cerberus": {
  619. name: "Cerberus",
  620. parents: ["dog"]
  621. },
  622. "tyrantrum": {
  623. name: "Tyrantrum",
  624. parents: ["pokemon"]
  625. },
  626. "lemur": {
  627. name: "Lemur",
  628. parents: ["mammal"]
  629. },
  630. "kelpie": {
  631. name: "Kelpie",
  632. parents: ["horse", "monster"]
  633. },
  634. "labrador": {
  635. name: "Labrador",
  636. parents: ["dog"]
  637. },
  638. "sylveon": {
  639. name: "Sylveon",
  640. parents: ["eeveelution"]
  641. },
  642. "eeveelution": {
  643. name: "Eeveelution",
  644. parents: ["pokemon"]
  645. },
  646. "polar-bear": {
  647. name: "Polar Bear",
  648. parents: ["bear"]
  649. },
  650. "bear": {
  651. name: "Bear",
  652. parents: ["mammal"]
  653. },
  654. "absol": {
  655. name: "Absol",
  656. parents: ["pokemon"]
  657. },
  658. "wolver": {
  659. name: "Wolver",
  660. parents: ["mammal"]
  661. },
  662. "rottweiler": {
  663. name: "Rottweiler",
  664. parents: ["dog"]
  665. },
  666. "zebra": {
  667. name: "Zebra",
  668. parents: ["horse"]
  669. },
  670. "yoshi": {
  671. name: "Yoshi",
  672. parents: ["lizard"]
  673. },
  674. "lynx": {
  675. name: "Lynx",
  676. parents: ["cat"]
  677. },
  678. "unknown": {
  679. name: "Unknown",
  680. parents: []
  681. },
  682. "thylacine": {
  683. name: "Thylacine",
  684. parents: ["mammal"]
  685. },
  686. "gabumon": {
  687. name: "Gabumon",
  688. parents: ["digimon"]
  689. },
  690. "border-collie": {
  691. name: "Border Collie",
  692. parents: ["dog"]
  693. },
  694. "imp": {
  695. name: "Imp",
  696. parents: ["demon"]
  697. },
  698. "kangaroo": {
  699. name: "Kangaroo",
  700. parents: ["marsupial"]
  701. },
  702. "renamon": {
  703. name: "Renamon",
  704. parents: ["digimon"]
  705. },
  706. "candy-orca-dragon": {
  707. name: "Candy Orca Dragon",
  708. parents: ["fish", "dragon", "candy"]
  709. },
  710. "sabertooth-tiger": {
  711. name: "Sabertooth Tiger",
  712. parents: ["cat"]
  713. },
  714. "espurr": {
  715. name: "Espurr",
  716. parents: ["pokemon"]
  717. },
  718. "otter": {
  719. name: "Otter",
  720. parents: ["mustelid"]
  721. },
  722. "elemental": {
  723. name: "Elemental",
  724. parents: ["mammal"]
  725. },
  726. "mew": {
  727. name: "Mew",
  728. parents: ["pokemon"]
  729. },
  730. "goodra": {
  731. name: "Goodra",
  732. parents: ["pokemon"]
  733. },
  734. "fairy": {
  735. name: "Fairy",
  736. parents: ["magical"]
  737. },
  738. "typhlosion": {
  739. name: "Typhlosion",
  740. parents: ["pokemon"]
  741. },
  742. "magical": {
  743. name: "Magical",
  744. parents: []
  745. },
  746. "xenomorph": {
  747. name: "Xenomorph",
  748. parents: ["monster", "alien"]
  749. },
  750. "charr": {
  751. name: "Charr",
  752. parents: ["cat"]
  753. },
  754. "siberian-husky": {
  755. name: "Siberian Husky",
  756. parents: ["husky"]
  757. },
  758. "alligator": {
  759. name: "Alligator",
  760. parents: ["reptile"]
  761. },
  762. "bernese-mountain-dog": {
  763. name: "Bernese Mountain Dog",
  764. parents: ["dog"]
  765. },
  766. "reshiram": {
  767. name: "Reshiram",
  768. parents: ["pokemon"]
  769. },
  770. "grizzly-bear": {
  771. name: "Grizzly Bear",
  772. parents: ["bear"]
  773. },
  774. "water-monitor": {
  775. name: "Water Monitor",
  776. parents: ["lizard"]
  777. },
  778. "banchofossa": {
  779. name: "Banchofossa",
  780. parents: ["mammal"]
  781. },
  782. "kirin": {
  783. name: "Kirin",
  784. parents: ["monster"]
  785. },
  786. "quilava": {
  787. name: "Quilava",
  788. parents: ["pokemon"]
  789. },
  790. "seviper": {
  791. name: "Seviper",
  792. parents: ["pokemon"]
  793. },
  794. "flying-fox": {
  795. name: "Flying Fox",
  796. parents: ["bat"]
  797. },
  798. "keynain": {
  799. name: "Keynain",
  800. parents: ["avian"]
  801. },
  802. "lucario": {
  803. name: "Lucario",
  804. parents: ["pokemon"]
  805. },
  806. "siamese-cat": {
  807. name: "Siamese Cat",
  808. parents: ["cat"]
  809. },
  810. "spider": {
  811. name: "Spider",
  812. parents: ["insect"]
  813. },
  814. "samurott": {
  815. name: "Samurott",
  816. parents: ["pokemon"]
  817. },
  818. "megalodon": {
  819. name: "Megalodon",
  820. parents: ["shark"]
  821. },
  822. "unicorn": {
  823. name: "Unicorn",
  824. parents: ["horse"]
  825. },
  826. "greninja": {
  827. name: "Greninja",
  828. parents: ["pokemon"]
  829. },
  830. "water-dragon": {
  831. name: "Water Dragon",
  832. parents: ["dragon"]
  833. },
  834. "cross-fox": {
  835. name: "Cross Fox",
  836. parents: ["fox"]
  837. },
  838. "synth": {
  839. name: "Synth",
  840. parents: ["machine"]
  841. },
  842. "construct": {
  843. name: "Construct",
  844. parents: []
  845. },
  846. "mexican-wolf": {
  847. name: "Mexican Wolf",
  848. parents: ["wolf"]
  849. },
  850. "leopard": {
  851. name: "Leopard",
  852. parents: ["cat"]
  853. },
  854. "pig": {
  855. name: "Pig",
  856. parents: ["mammal"]
  857. },
  858. "ampharos": {
  859. name: "Ampharos",
  860. parents: ["pokemon"]
  861. },
  862. "orca": {
  863. name: "Orca",
  864. parents: ["fish"]
  865. },
  866. "lycanroc": {
  867. name: "Lycanroc",
  868. parents: ["pokemon"]
  869. },
  870. "surkanu": {
  871. name: "Surkanu",
  872. parents: ["monster"]
  873. },
  874. "seal": {
  875. name: "Seal",
  876. parents: ["mammal"]
  877. },
  878. "keldeo": {
  879. name: "Keldeo",
  880. parents: ["pokemon"]
  881. },
  882. "great-dane": {
  883. name: "Great Dane",
  884. parents: ["dog"]
  885. },
  886. "black-backed-jackal": {
  887. name: "Black Backed Jackal",
  888. parents: ["jackal"]
  889. },
  890. "sheep": {
  891. name: "Sheep",
  892. parents: ["mammal"]
  893. },
  894. "leopard-seal": {
  895. name: "Leopard Seal",
  896. parents: ["seal"]
  897. },
  898. "zoroark": {
  899. name: "Zoroark",
  900. parents: ["pokemon"]
  901. },
  902. "maned-wolf": {
  903. name: "Maned Wolf",
  904. parents: ["canine"]
  905. },
  906. "dracha": {
  907. name: "Dracha",
  908. parents: ["dragon"]
  909. },
  910. "wolxi": {
  911. name: "Wolxi",
  912. parents: ["mammal", "alien"]
  913. },
  914. "dratini": {
  915. name: "Dratini",
  916. parents: ["pokemon", "dragon"]
  917. },
  918. "skaven": {
  919. name: "Skaven",
  920. parents: ["rat"]
  921. },
  922. "mongoose": {
  923. name: "Mongoose",
  924. parents: ["mammal"]
  925. },
  926. "lopunny": {
  927. name: "Lopunny",
  928. parents: ["pokemon", "rabbit"]
  929. },
  930. "feraligatr": {
  931. name: "Feraligatr",
  932. parents: ["pokemon", "alligator"]
  933. },
  934. "houndoom": {
  935. name: "Houndoom",
  936. parents: ["pokemon", "dog"]
  937. },
  938. "protogen": {
  939. name: "Protogen",
  940. parents: ["machine"]
  941. },
  942. "saint-bernard": {
  943. name: "Saint Bernard",
  944. parents: ["dog"]
  945. },
  946. "crow": {
  947. name: "Crow",
  948. parents: ["corvid"]
  949. },
  950. "delphox": {
  951. name: "Delphox",
  952. parents: ["pokemon", "fox"]
  953. },
  954. "moose": {
  955. name: "Moose",
  956. parents: ["mammal"]
  957. },
  958. "joraxian": {
  959. name: "Joraxian",
  960. parents: ["monster", "canine", "demon"]
  961. },
  962. "nimbat": {
  963. name: "Nimbat",
  964. parents: ["mammal"]
  965. },
  966. "aardwolf": {
  967. name: "Aardwolf",
  968. parents: ["canine"]
  969. },
  970. "fluudrani": {
  971. name: "Fluudrani",
  972. parents: ["animal"]
  973. },
  974. "arcanine": {
  975. name: "Arcanine",
  976. parents: ["pokemon", "dog"]
  977. },
  978. "inteleon": {
  979. name: "Inteleon",
  980. parents: ["pokemon", "fish"]
  981. },
  982. "ninetales": {
  983. name: "Ninetales",
  984. parents: ["pokemon", "kitsune"]
  985. },
  986. "tigrex": {
  987. name: "Tigrex",
  988. parents: ["tiger"]
  989. },
  990. "zorua": {
  991. name: "Zorua",
  992. parents: ["pokemon", "fox"]
  993. },
  994. "vulpix": {
  995. name: "Vulpix",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "barghest": {
  999. name: "Barghest",
  1000. parents: ["monster"]
  1001. },
  1002. "gray-wolf": {
  1003. name: "Gray Wolf",
  1004. parents: ["wolf"]
  1005. },
  1006. "ruppells-fox": {
  1007. name: "Rüppell's Fox",
  1008. parents: ["fox"]
  1009. },
  1010. "bull-terrier": {
  1011. name: "Bull Terrier",
  1012. parents: ["dog"]
  1013. },
  1014. "european-honey-buzzard": {
  1015. name: "European Honey Buzzard",
  1016. parents: ["avian"]
  1017. },
  1018. "t-rex": {
  1019. name: "Tyrannosaurus Rex",
  1020. parents: ["dinosaur"]
  1021. },
  1022. "mactarian": {
  1023. name: "Mactarian",
  1024. parents: ["shark", "monster"]
  1025. },
  1026. "mewtwo-y": {
  1027. name: "Mewtwo Y",
  1028. parents: ["mewtwo"]
  1029. },
  1030. "mewtwo": {
  1031. name: "Mewtwo",
  1032. parents: ["pokemon"]
  1033. },
  1034. "mew": {
  1035. name: "Mew",
  1036. parents: ["pokemon"]
  1037. },
  1038. "eevee": {
  1039. name: "Eevee",
  1040. parents: ["eeveelution"]
  1041. },
  1042. "mienshao": {
  1043. name: "Mienshao",
  1044. parents: ["pokemon"]
  1045. },
  1046. "sugar-glider": {
  1047. name: "Sugar Glider",
  1048. parents: ["opossum"]
  1049. },
  1050. "spectral-bat": {
  1051. name: "Spectral Bat",
  1052. parents: ["bat"]
  1053. },
  1054. "scolipede": {
  1055. name: "Scolipede",
  1056. parents: ["pokemon", "insect"]
  1057. },
  1058. "jackalope": {
  1059. name: "Jackalope",
  1060. parents: ["rabbit", "antelope"]
  1061. },
  1062. "caracal": {
  1063. name: "Caracal",
  1064. parents: ["cat"]
  1065. },
  1066. "stoat": {
  1067. name: "Stoat",
  1068. parents: ["mammal"]
  1069. },
  1070. "african-golden-cat": {
  1071. name: "African Golden Cat",
  1072. parents: ["cat"]
  1073. },
  1074. "gigantosaurus": {
  1075. name: "Gigantosaurus",
  1076. parents: ["dinosaur"]
  1077. },
  1078. "zorgoia": {
  1079. name: "Zorgoia",
  1080. parents: ["mammal"]
  1081. },
  1082. "monitor-lizard": {
  1083. name: "Monitor Lizard",
  1084. parents: ["lizard"]
  1085. },
  1086. "ziralkia": {
  1087. name: "Ziralkia",
  1088. parents: ["mammal"]
  1089. },
  1090. "kiiasi": {
  1091. name: "Kiiasi",
  1092. parents: ["animal"]
  1093. },
  1094. "synx": {
  1095. name: "Synx",
  1096. parents: ["monster"]
  1097. },
  1098. "panther": {
  1099. name: "Panther",
  1100. parents: ["cat"]
  1101. },
  1102. "azumarill": {
  1103. name: "Azumarill",
  1104. parents: ["pokemon"]
  1105. },
  1106. "river-snaptail": {
  1107. name: "River Snaptail",
  1108. parents: ["otter", "crocodile"]
  1109. },
  1110. "great-blue-heron": {
  1111. name: "Great Blue Heron",
  1112. parents: ["avian"]
  1113. },
  1114. "smeargle": {
  1115. name: "Smeargle",
  1116. parents: ["pokemon"]
  1117. },
  1118. "vendeilen": {
  1119. name: "Vendeilen",
  1120. parents: ["monster"]
  1121. },
  1122. "ventura": {
  1123. name: "Ventura",
  1124. parents: ["canine"]
  1125. },
  1126. "clouded-leopard": {
  1127. name: "Clouded Leopard",
  1128. parents: ["leopard"]
  1129. },
  1130. "argonian": {
  1131. name: "Argonian",
  1132. parents: ["lizard"]
  1133. },
  1134. "salazzle": {
  1135. name: "Salazzle",
  1136. parents: ["pokemon", "lizard"]
  1137. },
  1138. "je-stoff-drachen": {
  1139. name: "Je-Stoff Drachen",
  1140. parents: ["dragon"]
  1141. },
  1142. "finnish-spitz-dog": {
  1143. name: "Finnish Spitz Dog",
  1144. parents: ["dog"]
  1145. },
  1146. "gray-fox": {
  1147. name: "Gray Fox",
  1148. parents: ["fox"]
  1149. },
  1150. "opossum": {
  1151. name: "opossum",
  1152. parents: ["mammal"]
  1153. },
  1154. "antelope": {
  1155. name: "Antelope",
  1156. parents: ["mammal"]
  1157. },
  1158. "weavile": {
  1159. name: "Weavile",
  1160. parents: ["pokemon"]
  1161. },
  1162. "pikachu": {
  1163. name: "Pikachu",
  1164. parents: ["pokemon", "mouse"]
  1165. },
  1166. "grovyle": {
  1167. name: "Grovyle",
  1168. parents: ["pokemon", "plant"]
  1169. },
  1170. "sthara": {
  1171. name: "Sthara",
  1172. parents: ["snow-leopard", "reptile"]
  1173. },
  1174. "star-warrior": {
  1175. name: "Star Warrior",
  1176. parents: ["magical"]
  1177. },
  1178. "dragonoid": {
  1179. name: "Dragonoid",
  1180. parents: ["dragon"]
  1181. },
  1182. "suicune": {
  1183. name: "Suicune",
  1184. parents: ["pokemon"]
  1185. },
  1186. "vole": {
  1187. name: "Vole",
  1188. parents: ["mammal"]
  1189. },
  1190. "blaziken": {
  1191. name: "Blaziken",
  1192. parents: ["pokemon", "avian"]
  1193. },
  1194. "buizel": {
  1195. name: "Buizel",
  1196. parents: ["pokemon", "fish"]
  1197. },
  1198. "floatzel": {
  1199. name: "Floatzel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "umok": {
  1203. name: "Umok",
  1204. parents: ["avian"]
  1205. },
  1206. "sea-monster": {
  1207. name: "Sea Monster",
  1208. parents: ["monster", "fish"]
  1209. },
  1210. "egyptian-vulture": {
  1211. name: "Egyptian Vulture",
  1212. parents: ["avian"]
  1213. },
  1214. "doberman": {
  1215. name: "Doberman",
  1216. parents: ["dog"]
  1217. },
  1218. "zangoose": {
  1219. name: "Zangoose",
  1220. parents: ["pokemon", "mongoose"]
  1221. },
  1222. "mongoose": {
  1223. name: "Mongoose",
  1224. parents: ["mammal"]
  1225. },
  1226. "wickerbeast": {
  1227. name: "Wickerbeast",
  1228. parents: ["monster"]
  1229. },
  1230. "zenari": {
  1231. name: "Zenari",
  1232. parents: ["lizard"]
  1233. },
  1234. "plant": {
  1235. name: "Plant",
  1236. parents: []
  1237. },
  1238. "raskatox": {
  1239. name: "Raskatox",
  1240. parents: ["raccoon", "skunk", "cat", "fox"]
  1241. },
  1242. "mikromare": {
  1243. name: "mikromare",
  1244. parents: ["alien"]
  1245. },
  1246. "alien": {
  1247. name: "Alien",
  1248. parents: ["animal"]
  1249. },
  1250. "deity": {
  1251. name: "Deity",
  1252. parents: []
  1253. },
  1254. "skarlan": {
  1255. name: "Skarlan",
  1256. parents: ["slug", "dragon"]
  1257. },
  1258. "slug": {
  1259. name: "Slug",
  1260. parents: ["mollusk"]
  1261. },
  1262. "mollusk": {
  1263. name: "Mollusk",
  1264. parents: ["animal"]
  1265. },
  1266. "chimera": {
  1267. name: "Chimera",
  1268. parents: ["monster"]
  1269. },
  1270. "gestalt": {
  1271. name: "Gestalt",
  1272. parents: ["construct"]
  1273. },
  1274. "mimic": {
  1275. name: "Mimic",
  1276. parents: ["monster"]
  1277. },
  1278. "calico-rat": {
  1279. name: "Calico Rat",
  1280. parents: ["rat"]
  1281. },
  1282. "panda": {
  1283. name: "Panda",
  1284. parents: ["mammal"]
  1285. },
  1286. "oni": {
  1287. name: "Oni",
  1288. parents: ["monster"]
  1289. },
  1290. "pegasus": {
  1291. name: "Pegasus",
  1292. parents: ["horse"]
  1293. },
  1294. "vulpera": {
  1295. name: "Vulpera",
  1296. parents: ["fennec-fox"]
  1297. },
  1298. "ceratosaurus": {
  1299. name: "Ceratosaurus",
  1300. parents: ["dinosaur"]
  1301. },
  1302. "nykur": {
  1303. name: "Nykur",
  1304. parents: ["horse", "monster"]
  1305. },
  1306. "giraffe": {
  1307. name: "Giraffe",
  1308. parents: ["mammal"]
  1309. },
  1310. "tauren": {
  1311. name: "Tauren",
  1312. parents: ["cow"]
  1313. },
  1314. "draconi": {
  1315. name: "Draconi",
  1316. parents: ["alien", "cat", "cyborg"]
  1317. },
  1318. "dire-wolf": {
  1319. name: "Dire Wolf",
  1320. parents: ["wolf"]
  1321. },
  1322. "ferromorph": {
  1323. name: "Ferromorph",
  1324. parents: ["construct"]
  1325. },
  1326. "meowth": {
  1327. name: "Meowth",
  1328. parents: ["cat", "pokemon"]
  1329. },
  1330. "pavodragon": {
  1331. name: "Pavodragon",
  1332. parents: ["dragon"]
  1333. },
  1334. "aaltranae": {
  1335. name: "Aaltranae",
  1336. parents: ["dragon"]
  1337. },
  1338. "cyborg": {
  1339. name: "Cyborg",
  1340. parents: ["machine"]
  1341. },
  1342. "draptor": {
  1343. name: "Draptor",
  1344. parents: ["dragon"]
  1345. },
  1346. "candy": {
  1347. name: "Candy",
  1348. parents: []
  1349. },
  1350. "drenath": {
  1351. name: "Drenath",
  1352. parents: ["dragon", "snake", "rabbit"]
  1353. },
  1354. "coyju": {
  1355. name: "Coyju",
  1356. parents: ["coyote", "kaiju"]
  1357. },
  1358. "kaiju": {
  1359. name: "Kaiju",
  1360. parents: ["monster"]
  1361. },
  1362. "nickit": {
  1363. name: "Nickit",
  1364. parents: ["pokemon", "cat"]
  1365. },
  1366. "lopunny": {
  1367. name: "Lopunny",
  1368. parents: ["pokemon", "rabbit"]
  1369. },
  1370. "korean-jindo-dog": {
  1371. name: "Korean Jindo Dog",
  1372. parents: ["dog"]
  1373. },
  1374. "naga": {
  1375. name: "Naga",
  1376. parents: ["snake", "monster"]
  1377. },
  1378. "undead": {
  1379. name: "Undead",
  1380. parents: ["monster"]
  1381. },
  1382. "whale": {
  1383. name: "Whale",
  1384. parents: ["fish"]
  1385. },
  1386. "gelato-bee": {
  1387. name: "Gelato Bee",
  1388. parents: ["bee"]
  1389. },
  1390. "bee": {
  1391. name: "Bee",
  1392. parents: ["insect"]
  1393. },
  1394. "gardevoir": {
  1395. name: "Gardevoir",
  1396. parents: ["pokemon"]
  1397. },
  1398. "ant": {
  1399. name: "Ant",
  1400. parents: ["insect"]
  1401. },
  1402. "frog": {
  1403. name: "Frog",
  1404. parents: ["amphibian"]
  1405. },
  1406. "amphibian": {
  1407. name: "Amphibian",
  1408. parents: ["animal"]
  1409. },
  1410. "pangolin": {
  1411. name: "Pangolin",
  1412. parents: ["mammal"]
  1413. },
  1414. "uragi'viidorn": {
  1415. name: "Uragi'viidorn",
  1416. parents: ["avian", "bear"]
  1417. },
  1418. "gryphdelphais": {
  1419. name: "Gryphdelphais",
  1420. parents: ["dolphin", "gryphon"]
  1421. },
  1422. "plush": {
  1423. name: "Plush",
  1424. parents: ["construct"]
  1425. },
  1426. "draiger": {
  1427. name: "Draiger",
  1428. parents: ["dragon","tiger"]
  1429. },
  1430. "foxsky": {
  1431. name: "Foxsky",
  1432. parents: ["fox", "husky"]
  1433. },
  1434. "umbreon": {
  1435. name: "Umbreon",
  1436. parents: ["eeveelution"]
  1437. },
  1438. "slime-dragon": {
  1439. name: "Slime Dragon",
  1440. parents: ["dragon"]
  1441. },
  1442. "enderman": {
  1443. name: "Enderman",
  1444. parents: ["monster"]
  1445. },
  1446. "gremlin": {
  1447. name: "Gremlin",
  1448. parents: ["monster"]
  1449. },
  1450. "dragonsune": {
  1451. name: "Dragonsune",
  1452. parents: ["dragon", "kitsune"]
  1453. },
  1454. "ghost": {
  1455. name: "Ghost",
  1456. parents: ["supernatural"]
  1457. },
  1458. "false-vampire-bat": {
  1459. name: "False Vampire Bat",
  1460. parents: ["bat"]
  1461. },
  1462. "succubus": {
  1463. name: "Succubus",
  1464. parents: ["demon"]
  1465. },
  1466. "mia": {
  1467. name: "Mia",
  1468. parents: ["canine"]
  1469. },
  1470. "rainbow": {
  1471. name: "Rainbow",
  1472. parents: ["monster"]
  1473. },
  1474. "solgaleo": {
  1475. name: "Solgaleo",
  1476. parents: ["pokemon"]
  1477. },
  1478. "lucent-nargacuga": {
  1479. name: "Lucent Nargacuga",
  1480. parents: ["monster-hunter"]
  1481. },
  1482. "monster-hunter": {
  1483. name: "Monster Hunter",
  1484. parents: ["monster"]
  1485. },
  1486. "leviathan": {
  1487. "name": "Leviathan",
  1488. "url": "sea-monster"
  1489. },
  1490. "bull": {
  1491. name: "Bull",
  1492. parents: ["mammal"]
  1493. },
  1494. "tanuki": {
  1495. name: "Tanuki",
  1496. parents: ["monster"]
  1497. },
  1498. "chakat": {
  1499. name: "Chakat",
  1500. parents: ["cat"]
  1501. },
  1502. "hydra": {
  1503. name: "Hydra",
  1504. parents: ["monster"]
  1505. },
  1506. "zigzagoon": {
  1507. name: "Zigzagoon",
  1508. parents: ["raccoon", "pokemon"]
  1509. },
  1510. "vulture": {
  1511. name: "Vulture",
  1512. parents: ["avian"]
  1513. },
  1514. "eastern-dragon": {
  1515. name: "Eastern Dragon",
  1516. parents: ["dragon"]
  1517. },
  1518. "gryffon": {
  1519. name: "Gryffon",
  1520. parents: ["phoenix", "red-panda"]
  1521. },
  1522. "amtsvane": {
  1523. name: "Amtsvane",
  1524. parents: ["reptile"]
  1525. },
  1526. "kigavi": {
  1527. name: "Kigavi",
  1528. parents: ["avian"]
  1529. },
  1530. "turian": {
  1531. name: "Turian",
  1532. parents: ["avian"]
  1533. },
  1534. "zeraora": {
  1535. name: "Zeraora",
  1536. parents: ["pokemon"]
  1537. },
  1538. "sandshrew": {
  1539. name: "Sandshrew",
  1540. parents: ["pokemon", "pangolin"]
  1541. },
  1542. "valais-blacknose-sheep": {
  1543. name: "Valais Blacknose Sheep",
  1544. parents: ["sheep"]
  1545. },
  1546. "novaleit": {
  1547. name: "Novaleit",
  1548. parents: ["mammal"]
  1549. },
  1550. "dunnoh": {
  1551. name: "Dunnoh",
  1552. parents: ["mammal"]
  1553. },
  1554. "lunaral-dragon": {
  1555. name: "Lunaral Dragon",
  1556. parents: ["dragon"]
  1557. },
  1558. "arctic-wolf": {
  1559. name: "Arctic Wolf",
  1560. parents: ["wolf"]
  1561. },
  1562. "donkey": {
  1563. name: "Donkey",
  1564. parents: ["horse"]
  1565. },
  1566. "chinchilla": {
  1567. name: "Chinchilla",
  1568. parents: ["rodent"]
  1569. },
  1570. "felkin": {
  1571. name: "Felkin",
  1572. parents: ["dragon"]
  1573. },
  1574. "tykeriel": {
  1575. name: "Tykeriel",
  1576. parents: ["avian"]
  1577. },
  1578. "folf": {
  1579. name: "Folf",
  1580. parents: ["fox", "wolf"]
  1581. },
  1582. "pooltoy": {
  1583. name: "Pooltoy",
  1584. parents: ["construct"]
  1585. },
  1586. "demi": {
  1587. name: "Demi",
  1588. parents: ["human"]
  1589. },
  1590. "stegosaurus": {
  1591. name: "Stegosaurus",
  1592. parents: ["dinosaur"]
  1593. },
  1594. "computer-virus": {
  1595. name: "Computer Virus",
  1596. parents: ["program"]
  1597. },
  1598. "program": {
  1599. name: "Program",
  1600. parents: ["construct"]
  1601. },
  1602. "space-springhare": {
  1603. name: "Space Springhare",
  1604. parents: ["rabbit"]
  1605. },
  1606. "river-drake": {
  1607. name: "River Drake",
  1608. parents: ["dragon"]
  1609. },
  1610. "djinn": {
  1611. "name": "Djinn",
  1612. "url": "supernatural"
  1613. },
  1614. "supernatural": {
  1615. name: "Supernatural",
  1616. parents: ["monster"]
  1617. },
  1618. "grasshopper-mouse": {
  1619. name: "Grasshopper Mouse",
  1620. parents: ["mouse"]
  1621. },
  1622. "somali-cat": {
  1623. name: "Somali Cat",
  1624. parents: ["cat"]
  1625. },
  1626. "minccino": {
  1627. name: "Minccino",
  1628. parents: ["pokemon", "chinchilla"]
  1629. },
  1630. "pine-marten": {
  1631. name: "Pine Marten",
  1632. parents: ["marten"]
  1633. },
  1634. "marten": {
  1635. name: "Marten",
  1636. parents: ["mustelid"]
  1637. },
  1638. "mustelid": {
  1639. name: "Mustelid",
  1640. parents: ["mammal"]
  1641. },
  1642. "caribou": {
  1643. name: "Caribou",
  1644. parents: ["deer"]
  1645. },
  1646. "gnoll": {
  1647. name: "Gnoll",
  1648. parents: ["hyena", "monster"]
  1649. },
  1650. "peacekeeper": {
  1651. name: "Peacekeeper",
  1652. parents: ["human"]
  1653. },
  1654. "river-otter": {
  1655. name: "River Otter",
  1656. parents: ["otter"]
  1657. },
  1658. "dhole": {
  1659. name: "Dhole",
  1660. parents: ["canine"]
  1661. },
  1662. "springbok": {
  1663. name: "Springbok",
  1664. parents: ["antelope"]
  1665. },
  1666. "marsupial": {
  1667. name: "Marsupial",
  1668. parents: ["mammal"]
  1669. },
  1670. "townsend-big-eared-bat": {
  1671. name: "Townsend Big-eared Bat",
  1672. parents: ["bat"]
  1673. },
  1674. "squirrel": {
  1675. name: "Squirrel",
  1676. parents: ["rodent"]
  1677. },
  1678. "magpie": {
  1679. name: "Magpie",
  1680. parents: ["corvid"]
  1681. },
  1682. "civet": {
  1683. name: "Civet",
  1684. parents: ["feliform"]
  1685. },
  1686. "feliform": {
  1687. name: "Feliform",
  1688. parents: ["mammal"]
  1689. },
  1690. "tiefling": {
  1691. name: "Tiefling",
  1692. parents: ["devil"]
  1693. },
  1694. "devil": {
  1695. name: "Devil",
  1696. parents: ["supernatural"]
  1697. },
  1698. "sika-deer": {
  1699. name: "Sika Deer",
  1700. parents: ["deer"]
  1701. },
  1702. "vaporeon": {
  1703. name: "Vaporeon",
  1704. parents: ["eeveelution"]
  1705. },
  1706. "leafeon": {
  1707. name: "Leafeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "jolteon": {
  1711. name: "Jolteon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. }
  1715. //species
  1716. function getSpeciesInfo(speciesList) {
  1717. let result = new Set();
  1718. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1719. result.add(entry)
  1720. });
  1721. return Array.from(result);
  1722. };
  1723. function getSpeciesInfoHelper(species) {
  1724. if (!speciesData[species]) {
  1725. console.warn(species + " doesn't exist");
  1726. return [];
  1727. }
  1728. if (speciesData[species].parents) {
  1729. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1730. } else {
  1731. return [species];
  1732. }
  1733. }
  1734. characterMakers.push(() => makeCharacter(
  1735. {
  1736. name: "Fen",
  1737. species: ["crux"],
  1738. description: {
  1739. title: "Bio",
  1740. text: "Very furry. Sheds on everything."
  1741. },
  1742. tags: [
  1743. "anthro",
  1744. "goo"
  1745. ]
  1746. },
  1747. {
  1748. back: {
  1749. height: math.unit(2.2428, "meter"),
  1750. weight: math.unit(124.738, "kg"),
  1751. name: "Back",
  1752. image: {
  1753. source: "./media/characters/fen/back.svg",
  1754. },
  1755. info: {
  1756. description: {
  1757. mode: "append",
  1758. text: "\n\nHe is not currently looking at you."
  1759. }
  1760. }
  1761. },
  1762. full: {
  1763. height: math.unit(1.34, "meter"),
  1764. weight: math.unit(225, "kg"),
  1765. name: "Full",
  1766. image: {
  1767. source: "./media/characters/fen/full.svg"
  1768. },
  1769. info: {
  1770. description: {
  1771. mode: "append",
  1772. text: "\n\nMunch."
  1773. }
  1774. }
  1775. },
  1776. kneeling: {
  1777. height: math.unit(5.4, "feet"),
  1778. weight: math.unit(124.738, "kg"),
  1779. name: "Kneeling",
  1780. image: {
  1781. source: "./media/characters/fen/kneeling.svg",
  1782. extra: 563 / 507
  1783. }
  1784. },
  1785. goo: {
  1786. height: math.unit(2.8, "feet"),
  1787. weight: math.unit(125, "kg"),
  1788. capacity: math.unit(1, "people"),
  1789. name: "Goo",
  1790. image: {
  1791. source: "./media/characters/fen/goo.svg",
  1792. bottom: 116 / 613
  1793. }
  1794. },
  1795. lounging: {
  1796. height: math.unit(6.5, "feet"),
  1797. weight: math.unit(125, "kg"),
  1798. name: "Lounging",
  1799. image: {
  1800. source: "./media/characters/fen/lounging.svg"
  1801. }
  1802. },
  1803. },
  1804. [
  1805. {
  1806. name: "Normal",
  1807. height: math.unit(2.2428, "meter")
  1808. },
  1809. {
  1810. name: "Big",
  1811. height: math.unit(12, "feet")
  1812. },
  1813. {
  1814. name: "Minimacro",
  1815. height: math.unit(40, "feet"),
  1816. default: true,
  1817. info: {
  1818. description: {
  1819. mode: "append",
  1820. text: "\n\nTOO DAMN BIG"
  1821. }
  1822. }
  1823. },
  1824. {
  1825. name: "Macro",
  1826. height: math.unit(100, "feet"),
  1827. info: {
  1828. description: {
  1829. mode: "append",
  1830. text: "\n\nTOO DAMN BIG"
  1831. }
  1832. }
  1833. },
  1834. {
  1835. name: "Macro+",
  1836. height: math.unit(300, "feet")
  1837. },
  1838. {
  1839. name: "Megamacro",
  1840. height: math.unit(2, "miles")
  1841. }
  1842. ]
  1843. ))
  1844. characterMakers.push(() => makeCharacter(
  1845. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1846. {
  1847. front: {
  1848. height: math.unit(183, "cm"),
  1849. weight: math.unit(80, "kg"),
  1850. name: "Front",
  1851. image: {
  1852. source: "./media/characters/sofia-fluttertail/front.svg",
  1853. bottom: 0.01,
  1854. extra: 2154 / 2081
  1855. }
  1856. },
  1857. frontAlt: {
  1858. height: math.unit(183, "cm"),
  1859. weight: math.unit(80, "kg"),
  1860. name: "Front (alt)",
  1861. image: {
  1862. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1863. }
  1864. },
  1865. back: {
  1866. height: math.unit(183, "cm"),
  1867. weight: math.unit(80, "kg"),
  1868. name: "Back",
  1869. image: {
  1870. source: "./media/characters/sofia-fluttertail/back.svg"
  1871. }
  1872. },
  1873. kneeling: {
  1874. height: math.unit(125, "cm"),
  1875. weight: math.unit(80, "kg"),
  1876. name: "Kneeling",
  1877. image: {
  1878. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1879. extra: 1033 / 977,
  1880. bottom: 23.7 / 1057
  1881. }
  1882. },
  1883. maw: {
  1884. height: math.unit(183 / 5, "cm"),
  1885. name: "Maw",
  1886. image: {
  1887. source: "./media/characters/sofia-fluttertail/maw.svg"
  1888. }
  1889. },
  1890. mawcloseup: {
  1891. height: math.unit(183 / 5 * 0.41, "cm"),
  1892. name: "Maw (Closeup)",
  1893. image: {
  1894. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1895. }
  1896. },
  1897. paws: {
  1898. height: math.unit(1.17, "feet"),
  1899. name: "Paws",
  1900. image: {
  1901. source: "./media/characters/sofia-fluttertail/paws.svg",
  1902. extra: 851 / 851,
  1903. bottom: 17 / 868
  1904. }
  1905. },
  1906. },
  1907. [
  1908. {
  1909. name: "Normal",
  1910. height: math.unit(1.83, "meter")
  1911. },
  1912. {
  1913. name: "Size Thief",
  1914. height: math.unit(18, "feet")
  1915. },
  1916. {
  1917. name: "50 Foot Collie",
  1918. height: math.unit(50, "feet")
  1919. },
  1920. {
  1921. name: "Macro",
  1922. height: math.unit(96, "feet"),
  1923. default: true
  1924. },
  1925. {
  1926. name: "Megamerger",
  1927. height: math.unit(650, "feet")
  1928. },
  1929. ]
  1930. ))
  1931. characterMakers.push(() => makeCharacter(
  1932. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1933. {
  1934. front: {
  1935. height: math.unit(7, "feet"),
  1936. weight: math.unit(100, "kg"),
  1937. name: "Front",
  1938. image: {
  1939. source: "./media/characters/march/front.svg",
  1940. extra: 1992/1851,
  1941. bottom: 39/2031
  1942. }
  1943. },
  1944. foot: {
  1945. height: math.unit(0.9, "feet"),
  1946. name: "Foot",
  1947. image: {
  1948. source: "./media/characters/march/foot.svg"
  1949. }
  1950. },
  1951. },
  1952. [
  1953. {
  1954. name: "Normal",
  1955. height: math.unit(7.9, "feet")
  1956. },
  1957. {
  1958. name: "Macro",
  1959. height: math.unit(220, "meters")
  1960. },
  1961. {
  1962. name: "Megamacro",
  1963. height: math.unit(2.98, "km"),
  1964. default: true
  1965. },
  1966. {
  1967. name: "Gigamacro",
  1968. height: math.unit(15963, "km")
  1969. },
  1970. {
  1971. name: "Teramacro",
  1972. height: math.unit(2980000000, "km")
  1973. },
  1974. {
  1975. name: "Examacro",
  1976. height: math.unit(250, "parsecs")
  1977. },
  1978. ]
  1979. ))
  1980. characterMakers.push(() => makeCharacter(
  1981. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1982. {
  1983. front: {
  1984. height: math.unit(6, "feet"),
  1985. weight: math.unit(60, "kg"),
  1986. name: "Front",
  1987. image: {
  1988. source: "./media/characters/noir/front.svg",
  1989. extra: 1,
  1990. bottom: 0.032
  1991. }
  1992. },
  1993. },
  1994. [
  1995. {
  1996. name: "Normal",
  1997. height: math.unit(6.6, "feet")
  1998. },
  1999. {
  2000. name: "Macro",
  2001. height: math.unit(500, "feet")
  2002. },
  2003. {
  2004. name: "Megamacro",
  2005. height: math.unit(2.5, "km"),
  2006. default: true
  2007. },
  2008. {
  2009. name: "Gigamacro",
  2010. height: math.unit(22500, "km")
  2011. },
  2012. {
  2013. name: "Teramacro",
  2014. height: math.unit(2500000000, "km")
  2015. },
  2016. {
  2017. name: "Examacro",
  2018. height: math.unit(200, "parsecs")
  2019. },
  2020. ]
  2021. ))
  2022. characterMakers.push(() => makeCharacter(
  2023. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2024. {
  2025. front: {
  2026. height: math.unit(7, "feet"),
  2027. weight: math.unit(100, "kg"),
  2028. name: "Front",
  2029. image: {
  2030. source: "./media/characters/okuri/front.svg",
  2031. extra: 1,
  2032. bottom: 0.037
  2033. }
  2034. },
  2035. back: {
  2036. height: math.unit(7, "feet"),
  2037. weight: math.unit(100, "kg"),
  2038. name: "Back",
  2039. image: {
  2040. source: "./media/characters/okuri/back.svg",
  2041. extra: 1,
  2042. bottom: 0.007
  2043. }
  2044. },
  2045. },
  2046. [
  2047. {
  2048. name: "Megamacro",
  2049. height: math.unit(100, "miles"),
  2050. default: true
  2051. },
  2052. ]
  2053. ))
  2054. characterMakers.push(() => makeCharacter(
  2055. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2056. {
  2057. front: {
  2058. height: math.unit(7, "feet"),
  2059. weight: math.unit(100, "kg"),
  2060. name: "Front",
  2061. image: {
  2062. source: "./media/characters/manny/front.svg",
  2063. extra: 1,
  2064. bottom: 0.06
  2065. }
  2066. },
  2067. back: {
  2068. height: math.unit(7, "feet"),
  2069. weight: math.unit(100, "kg"),
  2070. name: "Back",
  2071. image: {
  2072. source: "./media/characters/manny/back.svg",
  2073. extra: 1,
  2074. bottom: 0.014
  2075. }
  2076. },
  2077. },
  2078. [
  2079. {
  2080. name: "Normal",
  2081. height: math.unit(7, "feet"),
  2082. },
  2083. {
  2084. name: "Macro",
  2085. height: math.unit(78, "feet"),
  2086. default: true
  2087. },
  2088. {
  2089. name: "Macro+",
  2090. height: math.unit(300, "meters")
  2091. },
  2092. {
  2093. name: "Macro++",
  2094. height: math.unit(2400, "meters")
  2095. },
  2096. {
  2097. name: "Megamacro",
  2098. height: math.unit(5167, "meters")
  2099. },
  2100. {
  2101. name: "Gigamacro",
  2102. height: math.unit(41769, "miles")
  2103. },
  2104. ]
  2105. ))
  2106. characterMakers.push(() => makeCharacter(
  2107. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2108. {
  2109. front: {
  2110. height: math.unit(7, "feet"),
  2111. weight: math.unit(100, "kg"),
  2112. name: "Front",
  2113. image: {
  2114. source: "./media/characters/adake/front-1.svg"
  2115. }
  2116. },
  2117. frontAlt: {
  2118. height: math.unit(7, "feet"),
  2119. weight: math.unit(100, "kg"),
  2120. name: "Front (Alt)",
  2121. image: {
  2122. source: "./media/characters/adake/front-2.svg",
  2123. extra: 1,
  2124. bottom: 0.01
  2125. }
  2126. },
  2127. back: {
  2128. height: math.unit(7, "feet"),
  2129. weight: math.unit(100, "kg"),
  2130. name: "Back",
  2131. image: {
  2132. source: "./media/characters/adake/back.svg",
  2133. }
  2134. },
  2135. kneel: {
  2136. height: math.unit(5.385, "feet"),
  2137. weight: math.unit(100, "kg"),
  2138. name: "Kneeling",
  2139. image: {
  2140. source: "./media/characters/adake/kneel.svg",
  2141. bottom: 0.052
  2142. }
  2143. },
  2144. },
  2145. [
  2146. {
  2147. name: "Normal",
  2148. height: math.unit(7, "feet"),
  2149. },
  2150. {
  2151. name: "Macro",
  2152. height: math.unit(78, "feet"),
  2153. default: true
  2154. },
  2155. {
  2156. name: "Macro+",
  2157. height: math.unit(300, "meters")
  2158. },
  2159. {
  2160. name: "Macro++",
  2161. height: math.unit(2400, "meters")
  2162. },
  2163. {
  2164. name: "Megamacro",
  2165. height: math.unit(5167, "meters")
  2166. },
  2167. {
  2168. name: "Gigamacro",
  2169. height: math.unit(41769, "miles")
  2170. },
  2171. ]
  2172. ))
  2173. characterMakers.push(() => makeCharacter(
  2174. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2175. {
  2176. front: {
  2177. height: math.unit(1.65, "meters"),
  2178. weight: math.unit(50, "kg"),
  2179. name: "Front",
  2180. image: {
  2181. source: "./media/characters/elijah/front.svg",
  2182. extra: 858 / 830,
  2183. bottom: 95.5 / 953.8559
  2184. }
  2185. },
  2186. back: {
  2187. height: math.unit(1.65, "meters"),
  2188. weight: math.unit(50, "kg"),
  2189. name: "Back",
  2190. image: {
  2191. source: "./media/characters/elijah/back.svg",
  2192. extra: 895 / 850,
  2193. bottom: 5.3 / 897.956
  2194. }
  2195. },
  2196. frontNsfw: {
  2197. height: math.unit(1.65, "meters"),
  2198. weight: math.unit(50, "kg"),
  2199. name: "Front (NSFW)",
  2200. image: {
  2201. source: "./media/characters/elijah/front-nsfw.svg",
  2202. extra: 858 / 830,
  2203. bottom: 95.5 / 953.8559
  2204. }
  2205. },
  2206. backNsfw: {
  2207. height: math.unit(1.65, "meters"),
  2208. weight: math.unit(50, "kg"),
  2209. name: "Back (NSFW)",
  2210. image: {
  2211. source: "./media/characters/elijah/back-nsfw.svg",
  2212. extra: 895 / 850,
  2213. bottom: 5.3 / 897.956
  2214. }
  2215. },
  2216. dick: {
  2217. height: math.unit(1, "feet"),
  2218. name: "Dick",
  2219. image: {
  2220. source: "./media/characters/elijah/dick.svg"
  2221. }
  2222. },
  2223. beakOpen: {
  2224. height: math.unit(1.25, "feet"),
  2225. name: "Beak (Open)",
  2226. image: {
  2227. source: "./media/characters/elijah/beak-open.svg"
  2228. }
  2229. },
  2230. beakShut: {
  2231. height: math.unit(1.25, "feet"),
  2232. name: "Beak (Shut)",
  2233. image: {
  2234. source: "./media/characters/elijah/beak-shut.svg"
  2235. }
  2236. },
  2237. footFlexing: {
  2238. height: math.unit(1.61, "feet"),
  2239. name: "Foot (Flexing)",
  2240. image: {
  2241. source: "./media/characters/elijah/foot-flexing.svg"
  2242. }
  2243. },
  2244. footStepping: {
  2245. height: math.unit(1.44, "feet"),
  2246. name: "Foot (Stepping)",
  2247. image: {
  2248. source: "./media/characters/elijah/foot-stepping.svg"
  2249. }
  2250. },
  2251. plantigradeLeg: {
  2252. height: math.unit(2.34, "feet"),
  2253. name: "Plantigrade Leg",
  2254. image: {
  2255. source: "./media/characters/elijah/plantigrade-leg.svg"
  2256. }
  2257. },
  2258. plantigradeFootLeft: {
  2259. height: math.unit(0.9, "feet"),
  2260. name: "Plantigrade Foot (Left)",
  2261. image: {
  2262. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2263. }
  2264. },
  2265. plantigradeFootRight: {
  2266. height: math.unit(0.9, "feet"),
  2267. name: "Plantigrade Foot (Right)",
  2268. image: {
  2269. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2270. }
  2271. },
  2272. },
  2273. [
  2274. {
  2275. name: "Normal",
  2276. height: math.unit(1.65, "meters")
  2277. },
  2278. {
  2279. name: "Macro",
  2280. height: math.unit(55, "meters"),
  2281. default: true
  2282. },
  2283. {
  2284. name: "Macro+",
  2285. height: math.unit(105, "meters")
  2286. },
  2287. ]
  2288. ))
  2289. characterMakers.push(() => makeCharacter(
  2290. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2291. {
  2292. front: {
  2293. height: math.unit(11, "feet"),
  2294. weight: math.unit(320, "kg"),
  2295. name: "Front",
  2296. image: {
  2297. source: "./media/characters/rai/front.svg",
  2298. extra: 1802/1696,
  2299. bottom: 68/1870
  2300. }
  2301. },
  2302. frontDressed: {
  2303. height: math.unit(11, "feet"),
  2304. weight: math.unit(320, "kg"),
  2305. name: "Front (Dressed)",
  2306. image: {
  2307. source: "./media/characters/rai/front-dressed.svg",
  2308. extra: 1802/1696,
  2309. bottom: 68/1870
  2310. }
  2311. },
  2312. side: {
  2313. height: math.unit(11, "feet"),
  2314. weight: math.unit(320, "kg"),
  2315. name: "Side",
  2316. image: {
  2317. source: "./media/characters/rai/side.svg",
  2318. extra: 1789/1710,
  2319. bottom: 115/1904
  2320. }
  2321. },
  2322. back: {
  2323. height: math.unit(11, "feet"),
  2324. weight: math.unit(320, "kg"),
  2325. name: "Back",
  2326. image: {
  2327. source: "./media/characters/rai/back.svg",
  2328. extra: 1770/1707,
  2329. bottom: 28/1798
  2330. }
  2331. },
  2332. feral: {
  2333. height: math.unit(11, "feet"),
  2334. weight: math.unit(640, "kg"),
  2335. name: "Feral",
  2336. image: {
  2337. source: "./media/characters/rai/feral.svg",
  2338. extra: 1035/642,
  2339. bottom: 86/1121
  2340. }
  2341. },
  2342. dragon: {
  2343. height: math.unit(23, "feet"),
  2344. weight: math.unit(50000, "lb"),
  2345. name: "Dragon",
  2346. image: {
  2347. source: "./media/characters/rai/dragon.svg",
  2348. extra: 2498 / 2030,
  2349. bottom: 85.2 / 2584
  2350. }
  2351. },
  2352. maw: {
  2353. height: math.unit(6 / 3.81416, "feet"),
  2354. name: "Maw",
  2355. image: {
  2356. source: "./media/characters/rai/maw.svg"
  2357. }
  2358. },
  2359. },
  2360. [
  2361. {
  2362. name: "Normal",
  2363. height: math.unit(11, "feet")
  2364. },
  2365. {
  2366. name: "Macro",
  2367. height: math.unit(302, "feet"),
  2368. default: true
  2369. },
  2370. ]
  2371. ))
  2372. characterMakers.push(() => makeCharacter(
  2373. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2374. {
  2375. frontDressed: {
  2376. height: math.unit(216, "feet"),
  2377. weight: math.unit(7000000, "lb"),
  2378. name: "Front (Dressed)",
  2379. image: {
  2380. source: "./media/characters/jazzy/front-dressed.svg",
  2381. extra: 2738 / 2651,
  2382. bottom: 41.8 / 2786
  2383. }
  2384. },
  2385. backDressed: {
  2386. height: math.unit(216, "feet"),
  2387. weight: math.unit(7000000, "lb"),
  2388. name: "Back (Dressed)",
  2389. image: {
  2390. source: "./media/characters/jazzy/back-dressed.svg",
  2391. extra: 2775 / 2673,
  2392. bottom: 36.8 / 2817
  2393. }
  2394. },
  2395. front: {
  2396. height: math.unit(216, "feet"),
  2397. weight: math.unit(7000000, "lb"),
  2398. name: "Front",
  2399. image: {
  2400. source: "./media/characters/jazzy/front.svg",
  2401. extra: 2738 / 2651,
  2402. bottom: 41.8 / 2786
  2403. }
  2404. },
  2405. back: {
  2406. height: math.unit(216, "feet"),
  2407. weight: math.unit(7000000, "lb"),
  2408. name: "Back",
  2409. image: {
  2410. source: "./media/characters/jazzy/back.svg",
  2411. extra: 2775 / 2673,
  2412. bottom: 36.8 / 2817
  2413. }
  2414. },
  2415. maw: {
  2416. height: math.unit(20, "feet"),
  2417. name: "Maw",
  2418. image: {
  2419. source: "./media/characters/jazzy/maw.svg"
  2420. }
  2421. },
  2422. paws: {
  2423. height: math.unit(27.5, "feet"),
  2424. name: "Paws",
  2425. image: {
  2426. source: "./media/characters/jazzy/paws.svg"
  2427. }
  2428. },
  2429. eye: {
  2430. height: math.unit(4.4, "feet"),
  2431. name: "Eye",
  2432. image: {
  2433. source: "./media/characters/jazzy/eye.svg"
  2434. }
  2435. },
  2436. droneOffense: {
  2437. height: math.unit(9.5, "inches"),
  2438. name: "Drone (Offense)",
  2439. image: {
  2440. source: "./media/characters/jazzy/drone-offense.svg"
  2441. }
  2442. },
  2443. droneRecon: {
  2444. height: math.unit(9.5, "inches"),
  2445. name: "Drone (Recon)",
  2446. image: {
  2447. source: "./media/characters/jazzy/drone-recon.svg"
  2448. }
  2449. },
  2450. droneDefense: {
  2451. height: math.unit(9.5, "inches"),
  2452. name: "Drone (Defense)",
  2453. image: {
  2454. source: "./media/characters/jazzy/drone-defense.svg"
  2455. }
  2456. },
  2457. },
  2458. [
  2459. {
  2460. name: "Macro",
  2461. height: math.unit(216, "feet"),
  2462. default: true
  2463. },
  2464. ]
  2465. ))
  2466. characterMakers.push(() => makeCharacter(
  2467. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2468. {
  2469. front: {
  2470. height: math.unit(9 + 6/12, "feet"),
  2471. weight: math.unit(700, "lb"),
  2472. name: "Front",
  2473. image: {
  2474. source: "./media/characters/flamm/front.svg",
  2475. extra: 1751/1632,
  2476. bottom: 46/1797
  2477. }
  2478. },
  2479. buff: {
  2480. height: math.unit(9 + 6/12, "feet"),
  2481. weight: math.unit(950, "lb"),
  2482. name: "Buff",
  2483. image: {
  2484. source: "./media/characters/flamm/buff.svg",
  2485. extra: 3018/2874,
  2486. bottom: 221/3239
  2487. }
  2488. },
  2489. },
  2490. [
  2491. {
  2492. name: "Normal",
  2493. height: math.unit(9.5, "feet")
  2494. },
  2495. {
  2496. name: "Macro",
  2497. height: math.unit(200, "feet"),
  2498. default: true
  2499. },
  2500. ]
  2501. ))
  2502. characterMakers.push(() => makeCharacter(
  2503. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2504. {
  2505. front: {
  2506. height: math.unit(5 + 3/12, "feet"),
  2507. weight: math.unit(60, "kg"),
  2508. name: "Front",
  2509. image: {
  2510. source: "./media/characters/zephiro/front.svg",
  2511. extra: 2309 / 2162,
  2512. bottom: 0.069
  2513. }
  2514. },
  2515. side: {
  2516. height: math.unit(5 + 3/12, "feet"),
  2517. weight: math.unit(60, "kg"),
  2518. name: "Side",
  2519. image: {
  2520. source: "./media/characters/zephiro/side.svg",
  2521. extra: 2403 / 2279,
  2522. bottom: 0.015
  2523. }
  2524. },
  2525. back: {
  2526. height: math.unit(5 + 3/12, "feet"),
  2527. weight: math.unit(60, "kg"),
  2528. name: "Back",
  2529. image: {
  2530. source: "./media/characters/zephiro/back.svg",
  2531. extra: 2373 / 2244,
  2532. bottom: 0.013
  2533. }
  2534. },
  2535. hand: {
  2536. height: math.unit(0.68, "feet"),
  2537. name: "Hand",
  2538. image: {
  2539. source: "./media/characters/zephiro/hand.svg"
  2540. }
  2541. },
  2542. paw: {
  2543. height: math.unit(1, "feet"),
  2544. name: "Paw",
  2545. image: {
  2546. source: "./media/characters/zephiro/paw.svg"
  2547. }
  2548. },
  2549. beans: {
  2550. height: math.unit(0.93, "feet"),
  2551. name: "Beans",
  2552. image: {
  2553. source: "./media/characters/zephiro/beans.svg"
  2554. }
  2555. },
  2556. },
  2557. [
  2558. {
  2559. name: "Micro",
  2560. height: math.unit(3, "inches")
  2561. },
  2562. {
  2563. name: "Normal",
  2564. height: math.unit(5 + 3 / 12, "feet"),
  2565. default: true
  2566. },
  2567. {
  2568. name: "Macro",
  2569. height: math.unit(118, "feet")
  2570. },
  2571. ]
  2572. ))
  2573. characterMakers.push(() => makeCharacter(
  2574. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2575. {
  2576. front: {
  2577. height: math.unit(5, "feet"),
  2578. weight: math.unit(90, "kg"),
  2579. name: "Front",
  2580. image: {
  2581. source: "./media/characters/fory/front.svg",
  2582. extra: 2862 / 2674,
  2583. bottom: 180 / 3043.8
  2584. }
  2585. },
  2586. back: {
  2587. height: math.unit(5, "feet"),
  2588. weight: math.unit(90, "kg"),
  2589. name: "Back",
  2590. image: {
  2591. source: "./media/characters/fory/back.svg",
  2592. extra: 2962 / 2791,
  2593. bottom: 106 / 3071.8
  2594. }
  2595. },
  2596. foot: {
  2597. height: math.unit(2.14, "feet"),
  2598. name: "Foot",
  2599. image: {
  2600. source: "./media/characters/fory/foot.svg"
  2601. }
  2602. },
  2603. },
  2604. [
  2605. {
  2606. name: "Normal",
  2607. height: math.unit(5, "feet")
  2608. },
  2609. {
  2610. name: "Macro",
  2611. height: math.unit(50, "feet"),
  2612. default: true
  2613. },
  2614. {
  2615. name: "Megamacro",
  2616. height: math.unit(10, "miles")
  2617. },
  2618. {
  2619. name: "Gigamacro",
  2620. height: math.unit(5, "earths")
  2621. },
  2622. ]
  2623. ))
  2624. characterMakers.push(() => makeCharacter(
  2625. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2626. {
  2627. front: {
  2628. height: math.unit(7, "feet"),
  2629. weight: math.unit(90, "kg"),
  2630. name: "Front",
  2631. image: {
  2632. source: "./media/characters/kurrikage/front.svg",
  2633. extra: 1,
  2634. bottom: 0.035
  2635. }
  2636. },
  2637. back: {
  2638. height: math.unit(7, "feet"),
  2639. weight: math.unit(90, "lb"),
  2640. name: "Back",
  2641. image: {
  2642. source: "./media/characters/kurrikage/back.svg"
  2643. }
  2644. },
  2645. paw: {
  2646. height: math.unit(1.5, "feet"),
  2647. name: "Paw",
  2648. image: {
  2649. source: "./media/characters/kurrikage/paw.svg"
  2650. }
  2651. },
  2652. staff: {
  2653. height: math.unit(6.7, "feet"),
  2654. name: "Staff",
  2655. image: {
  2656. source: "./media/characters/kurrikage/staff.svg"
  2657. }
  2658. },
  2659. peek: {
  2660. height: math.unit(1.05, "feet"),
  2661. name: "Peeking",
  2662. image: {
  2663. source: "./media/characters/kurrikage/peek.svg",
  2664. bottom: 0.08
  2665. }
  2666. },
  2667. },
  2668. [
  2669. {
  2670. name: "Normal",
  2671. height: math.unit(12, "feet"),
  2672. default: true
  2673. },
  2674. {
  2675. name: "Big",
  2676. height: math.unit(20, "feet")
  2677. },
  2678. {
  2679. name: "Macro",
  2680. height: math.unit(500, "feet")
  2681. },
  2682. {
  2683. name: "Megamacro",
  2684. height: math.unit(20, "miles")
  2685. },
  2686. ]
  2687. ))
  2688. characterMakers.push(() => makeCharacter(
  2689. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2690. {
  2691. front: {
  2692. height: math.unit(6, "feet"),
  2693. weight: math.unit(75, "kg"),
  2694. name: "Front",
  2695. image: {
  2696. source: "./media/characters/shingo/front.svg",
  2697. extra: 706/681,
  2698. bottom: 11/717
  2699. }
  2700. },
  2701. frontAlt: {
  2702. height: math.unit(6, "feet"),
  2703. weight: math.unit(75, "kg"),
  2704. name: "Front (Alt)",
  2705. image: {
  2706. source: "./media/characters/shingo/front-alt.svg",
  2707. extra: 3511 / 3338,
  2708. bottom: 0.005
  2709. }
  2710. },
  2711. paw: {
  2712. height: math.unit(1, "feet"),
  2713. name: "Paw",
  2714. image: {
  2715. source: "./media/characters/shingo/paw.svg"
  2716. }
  2717. },
  2718. },
  2719. [
  2720. {
  2721. name: "Micro",
  2722. height: math.unit(4, "inches")
  2723. },
  2724. {
  2725. name: "Normal",
  2726. height: math.unit(6, "feet"),
  2727. default: true
  2728. },
  2729. {
  2730. name: "Macro",
  2731. height: math.unit(108, "feet")
  2732. },
  2733. {
  2734. name: "Macro+",
  2735. height: math.unit(1500, "feet")
  2736. },
  2737. ]
  2738. ))
  2739. characterMakers.push(() => makeCharacter(
  2740. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2741. {
  2742. side: {
  2743. height: math.unit(6, "feet"),
  2744. weight: math.unit(75, "kg"),
  2745. name: "Side",
  2746. image: {
  2747. source: "./media/characters/aigey/side.svg"
  2748. }
  2749. },
  2750. },
  2751. [
  2752. {
  2753. name: "Macro",
  2754. height: math.unit(200, "feet"),
  2755. default: true
  2756. },
  2757. {
  2758. name: "Megamacro",
  2759. height: math.unit(100, "miles")
  2760. },
  2761. ]
  2762. )
  2763. )
  2764. characterMakers.push(() => makeCharacter(
  2765. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2766. {
  2767. front: {
  2768. height: math.unit(5 + 5 / 12, "feet"),
  2769. weight: math.unit(75, "kg"),
  2770. name: "Front",
  2771. image: {
  2772. source: "./media/characters/natasha/front.svg",
  2773. extra: 859 / 824,
  2774. bottom: 23 / 879.6
  2775. }
  2776. },
  2777. frontNsfw: {
  2778. height: math.unit(5 + 5 / 12, "feet"),
  2779. weight: math.unit(75, "kg"),
  2780. name: "Front (NSFW)",
  2781. image: {
  2782. source: "./media/characters/natasha/front-nsfw.svg",
  2783. extra: 859 / 824,
  2784. bottom: 23 / 879.6
  2785. }
  2786. },
  2787. frontErect: {
  2788. height: math.unit(5 + 5 / 12, "feet"),
  2789. weight: math.unit(75, "kg"),
  2790. name: "Front (Erect)",
  2791. image: {
  2792. source: "./media/characters/natasha/front-erect.svg",
  2793. extra: 859 / 824,
  2794. bottom: 23 / 879.6
  2795. }
  2796. },
  2797. back: {
  2798. height: math.unit(5 + 5 / 12, "feet"),
  2799. weight: math.unit(75, "kg"),
  2800. name: "Back",
  2801. image: {
  2802. source: "./media/characters/natasha/back.svg",
  2803. extra: 887.9 / 852.6,
  2804. bottom: 9.7 / 896.4
  2805. }
  2806. },
  2807. backAlt: {
  2808. height: math.unit(5 + 5 / 12, "feet"),
  2809. weight: math.unit(75, "kg"),
  2810. name: "Back (Alt)",
  2811. image: {
  2812. source: "./media/characters/natasha/back-alt.svg",
  2813. extra: 1236.7 / 1192,
  2814. bottom: 22.3 / 1258.2
  2815. }
  2816. },
  2817. dick: {
  2818. height: math.unit(1.772, "feet"),
  2819. name: "Dick",
  2820. image: {
  2821. source: "./media/characters/natasha/dick.svg"
  2822. }
  2823. },
  2824. paw: {
  2825. height: math.unit(0.250, "meters"),
  2826. name: "Paw",
  2827. image: {
  2828. source: "./media/characters/natasha/paw.svg"
  2829. }
  2830. },
  2831. },
  2832. [
  2833. {
  2834. name: "Normal",
  2835. height: math.unit(5 + 5 / 12, "feet")
  2836. },
  2837. {
  2838. name: "Large",
  2839. height: math.unit(12, "feet")
  2840. },
  2841. {
  2842. name: "Macro",
  2843. height: math.unit(100, "feet"),
  2844. default: true
  2845. },
  2846. {
  2847. name: "Macro+",
  2848. height: math.unit(260, "feet")
  2849. },
  2850. {
  2851. name: "Macro++",
  2852. height: math.unit(1, "mile")
  2853. },
  2854. ]
  2855. ))
  2856. characterMakers.push(() => makeCharacter(
  2857. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2858. {
  2859. front: {
  2860. height: math.unit(6, "feet"),
  2861. weight: math.unit(75, "kg"),
  2862. name: "Front",
  2863. image: {
  2864. source: "./media/characters/malik/front.svg"
  2865. }
  2866. },
  2867. side: {
  2868. height: math.unit(6, "feet"),
  2869. weight: math.unit(75, "kg"),
  2870. name: "Side",
  2871. image: {
  2872. source: "./media/characters/malik/side.svg",
  2873. extra: 1.1539
  2874. }
  2875. },
  2876. back: {
  2877. height: math.unit(6, "feet"),
  2878. weight: math.unit(75, "kg"),
  2879. name: "Back",
  2880. image: {
  2881. source: "./media/characters/malik/back.svg"
  2882. }
  2883. },
  2884. },
  2885. [
  2886. {
  2887. name: "Macro",
  2888. height: math.unit(156, "feet"),
  2889. default: true
  2890. },
  2891. {
  2892. name: "Macro+",
  2893. height: math.unit(1188, "feet")
  2894. },
  2895. ]
  2896. ))
  2897. characterMakers.push(() => makeCharacter(
  2898. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2899. {
  2900. front: {
  2901. height: math.unit(6, "feet"),
  2902. weight: math.unit(75, "kg"),
  2903. name: "Front",
  2904. image: {
  2905. source: "./media/characters/sefer/front.svg",
  2906. extra: 848 / 659,
  2907. bottom: 28.3 / 876.442
  2908. }
  2909. },
  2910. back: {
  2911. height: math.unit(6, "feet"),
  2912. weight: math.unit(75, "kg"),
  2913. name: "Back",
  2914. image: {
  2915. source: "./media/characters/sefer/back.svg",
  2916. extra: 864 / 695,
  2917. bottom: 10 / 871
  2918. }
  2919. },
  2920. frontDressed: {
  2921. height: math.unit(6, "feet"),
  2922. weight: math.unit(75, "kg"),
  2923. name: "Front (Dressed)",
  2924. image: {
  2925. source: "./media/characters/sefer/front-dressed.svg",
  2926. extra: 839 / 653,
  2927. bottom: 37.6 / 878
  2928. }
  2929. },
  2930. },
  2931. [
  2932. {
  2933. name: "Normal",
  2934. height: math.unit(6, "feet"),
  2935. default: true
  2936. },
  2937. ]
  2938. ))
  2939. characterMakers.push(() => makeCharacter(
  2940. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2941. {
  2942. body: {
  2943. height: math.unit(2.2428, "meter"),
  2944. weight: math.unit(124.738, "kg"),
  2945. name: "Body",
  2946. image: {
  2947. extra: 1225 / 1050,
  2948. source: "./media/characters/north/front.svg"
  2949. }
  2950. }
  2951. },
  2952. [
  2953. {
  2954. name: "Micro",
  2955. height: math.unit(4, "inches")
  2956. },
  2957. {
  2958. name: "Macro",
  2959. height: math.unit(63, "meters")
  2960. },
  2961. {
  2962. name: "Megamacro",
  2963. height: math.unit(101, "miles"),
  2964. default: true
  2965. }
  2966. ]
  2967. ))
  2968. characterMakers.push(() => makeCharacter(
  2969. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2970. {
  2971. angled: {
  2972. height: math.unit(4, "meter"),
  2973. weight: math.unit(150, "kg"),
  2974. name: "Angled",
  2975. image: {
  2976. source: "./media/characters/talan/angled-sfw.svg",
  2977. bottom: 29 / 3734
  2978. }
  2979. },
  2980. angledNsfw: {
  2981. height: math.unit(4, "meter"),
  2982. weight: math.unit(150, "kg"),
  2983. name: "Angled (NSFW)",
  2984. image: {
  2985. source: "./media/characters/talan/angled-nsfw.svg",
  2986. bottom: 29 / 3734
  2987. }
  2988. },
  2989. frontNsfw: {
  2990. height: math.unit(4, "meter"),
  2991. weight: math.unit(150, "kg"),
  2992. name: "Front (NSFW)",
  2993. image: {
  2994. source: "./media/characters/talan/front-nsfw.svg",
  2995. bottom: 29 / 3734
  2996. }
  2997. },
  2998. sideNsfw: {
  2999. height: math.unit(4, "meter"),
  3000. weight: math.unit(150, "kg"),
  3001. name: "Side (NSFW)",
  3002. image: {
  3003. source: "./media/characters/talan/side-nsfw.svg",
  3004. bottom: 29 / 3734
  3005. }
  3006. },
  3007. back: {
  3008. height: math.unit(4, "meter"),
  3009. weight: math.unit(150, "kg"),
  3010. name: "Back",
  3011. image: {
  3012. source: "./media/characters/talan/back.svg"
  3013. }
  3014. },
  3015. dickBottom: {
  3016. height: math.unit(0.621, "meter"),
  3017. name: "Dick (Bottom)",
  3018. image: {
  3019. source: "./media/characters/talan/dick-bottom.svg"
  3020. }
  3021. },
  3022. dickTop: {
  3023. height: math.unit(0.621, "meter"),
  3024. name: "Dick (Top)",
  3025. image: {
  3026. source: "./media/characters/talan/dick-top.svg"
  3027. }
  3028. },
  3029. dickSide: {
  3030. height: math.unit(0.305, "meter"),
  3031. name: "Dick (Side)",
  3032. image: {
  3033. source: "./media/characters/talan/dick-side.svg"
  3034. }
  3035. },
  3036. dickFront: {
  3037. height: math.unit(0.305, "meter"),
  3038. name: "Dick (Front)",
  3039. image: {
  3040. source: "./media/characters/talan/dick-front.svg"
  3041. }
  3042. },
  3043. },
  3044. [
  3045. {
  3046. name: "Normal",
  3047. height: math.unit(4, "meters")
  3048. },
  3049. {
  3050. name: "Macro",
  3051. height: math.unit(100, "meters")
  3052. },
  3053. {
  3054. name: "Megamacro",
  3055. height: math.unit(2, "miles"),
  3056. default: true
  3057. },
  3058. {
  3059. name: "Gigamacro",
  3060. height: math.unit(5000, "miles")
  3061. },
  3062. {
  3063. name: "Teramacro",
  3064. height: math.unit(100, "parsecs")
  3065. }
  3066. ]
  3067. ))
  3068. characterMakers.push(() => makeCharacter(
  3069. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3070. {
  3071. front: {
  3072. height: math.unit(2, "meter"),
  3073. weight: math.unit(90, "kg"),
  3074. name: "Front",
  3075. image: {
  3076. source: "./media/characters/gael'rathus/front.svg"
  3077. }
  3078. },
  3079. frontAlt: {
  3080. height: math.unit(2, "meter"),
  3081. weight: math.unit(90, "kg"),
  3082. name: "Front (alt)",
  3083. image: {
  3084. source: "./media/characters/gael'rathus/front-alt.svg"
  3085. }
  3086. },
  3087. frontAlt2: {
  3088. height: math.unit(2, "meter"),
  3089. weight: math.unit(90, "kg"),
  3090. name: "Front (alt 2)",
  3091. image: {
  3092. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3093. }
  3094. }
  3095. },
  3096. [
  3097. {
  3098. name: "Normal",
  3099. height: math.unit(9, "feet"),
  3100. default: true
  3101. },
  3102. {
  3103. name: "Large",
  3104. height: math.unit(25, "feet")
  3105. },
  3106. {
  3107. name: "Macro",
  3108. height: math.unit(0.25, "miles")
  3109. },
  3110. {
  3111. name: "Megamacro",
  3112. height: math.unit(10, "miles")
  3113. }
  3114. ]
  3115. ))
  3116. characterMakers.push(() => makeCharacter(
  3117. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3118. {
  3119. side: {
  3120. height: math.unit(2, "meter"),
  3121. weight: math.unit(140, "kg"),
  3122. name: "Side",
  3123. image: {
  3124. source: "./media/characters/sosha/side.svg",
  3125. bottom: 0.042
  3126. }
  3127. },
  3128. },
  3129. [
  3130. {
  3131. name: "Normal",
  3132. height: math.unit(12, "feet"),
  3133. default: true
  3134. }
  3135. ]
  3136. ))
  3137. characterMakers.push(() => makeCharacter(
  3138. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3139. {
  3140. side: {
  3141. height: math.unit(5 + 5 / 12, "feet"),
  3142. weight: math.unit(170, "kg"),
  3143. name: "Side",
  3144. image: {
  3145. source: "./media/characters/runnola/side.svg",
  3146. extra: 741 / 448,
  3147. bottom: 0.05
  3148. }
  3149. },
  3150. },
  3151. [
  3152. {
  3153. name: "Small",
  3154. height: math.unit(3, "feet")
  3155. },
  3156. {
  3157. name: "Normal",
  3158. height: math.unit(5 + 5 / 12, "feet"),
  3159. default: true
  3160. },
  3161. {
  3162. name: "Big",
  3163. height: math.unit(10, "feet")
  3164. },
  3165. ]
  3166. ))
  3167. characterMakers.push(() => makeCharacter(
  3168. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3169. {
  3170. front: {
  3171. height: math.unit(2, "meter"),
  3172. weight: math.unit(50, "kg"),
  3173. name: "Front",
  3174. image: {
  3175. source: "./media/characters/kurribird/front.svg",
  3176. bottom: 0.015
  3177. }
  3178. },
  3179. frontAlt: {
  3180. height: math.unit(1.5, "meter"),
  3181. weight: math.unit(50, "kg"),
  3182. name: "Front (Alt)",
  3183. image: {
  3184. source: "./media/characters/kurribird/front-alt.svg",
  3185. extra: 1.45
  3186. }
  3187. },
  3188. },
  3189. [
  3190. {
  3191. name: "Normal",
  3192. height: math.unit(7, "feet")
  3193. },
  3194. {
  3195. name: "Big",
  3196. height: math.unit(12, "feet"),
  3197. default: true
  3198. },
  3199. {
  3200. name: "Macro",
  3201. height: math.unit(1500, "feet")
  3202. },
  3203. {
  3204. name: "Megamacro",
  3205. height: math.unit(2, "miles")
  3206. }
  3207. ]
  3208. ))
  3209. characterMakers.push(() => makeCharacter(
  3210. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3211. {
  3212. front: {
  3213. height: math.unit(2, "meter"),
  3214. weight: math.unit(80, "kg"),
  3215. name: "Front",
  3216. image: {
  3217. source: "./media/characters/elbial/front.svg",
  3218. extra: 1643 / 1556,
  3219. bottom: 60.2 / 1696
  3220. }
  3221. },
  3222. side: {
  3223. height: math.unit(2, "meter"),
  3224. weight: math.unit(80, "kg"),
  3225. name: "Side",
  3226. image: {
  3227. source: "./media/characters/elbial/side.svg",
  3228. extra: 1630 / 1565,
  3229. bottom: 71.5 / 1697
  3230. }
  3231. },
  3232. back: {
  3233. height: math.unit(2, "meter"),
  3234. weight: math.unit(80, "kg"),
  3235. name: "Back",
  3236. image: {
  3237. source: "./media/characters/elbial/back.svg",
  3238. extra: 1668 / 1595,
  3239. bottom: 5.6 / 1672
  3240. }
  3241. },
  3242. frontDressed: {
  3243. height: math.unit(2, "meter"),
  3244. weight: math.unit(80, "kg"),
  3245. name: "Front (Dressed)",
  3246. image: {
  3247. source: "./media/characters/elbial/front-dressed.svg",
  3248. extra: 1653 / 1584,
  3249. bottom: 57 / 1708
  3250. }
  3251. },
  3252. genitals: {
  3253. height: math.unit(2 / 3.367, "meter"),
  3254. name: "Genitals",
  3255. image: {
  3256. source: "./media/characters/elbial/genitals.svg"
  3257. }
  3258. },
  3259. },
  3260. [
  3261. {
  3262. name: "Large",
  3263. height: math.unit(100, "feet")
  3264. },
  3265. {
  3266. name: "Macro",
  3267. height: math.unit(500, "feet"),
  3268. default: true
  3269. },
  3270. {
  3271. name: "Megamacro",
  3272. height: math.unit(10, "miles")
  3273. },
  3274. {
  3275. name: "Gigamacro",
  3276. height: math.unit(25000, "miles")
  3277. },
  3278. {
  3279. name: "Full-Size",
  3280. height: math.unit(8000000, "gigaparsecs")
  3281. }
  3282. ]
  3283. ))
  3284. characterMakers.push(() => makeCharacter(
  3285. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3286. {
  3287. front: {
  3288. height: math.unit(2, "meter"),
  3289. weight: math.unit(60, "kg"),
  3290. name: "Front",
  3291. image: {
  3292. source: "./media/characters/noah/front.svg"
  3293. }
  3294. },
  3295. talons: {
  3296. height: math.unit(0.315, "meter"),
  3297. name: "Talons",
  3298. image: {
  3299. source: "./media/characters/noah/talons.svg"
  3300. }
  3301. }
  3302. },
  3303. [
  3304. {
  3305. name: "Large",
  3306. height: math.unit(50, "feet")
  3307. },
  3308. {
  3309. name: "Macro",
  3310. height: math.unit(750, "feet"),
  3311. default: true
  3312. },
  3313. {
  3314. name: "Megamacro",
  3315. height: math.unit(50, "miles")
  3316. },
  3317. {
  3318. name: "Gigamacro",
  3319. height: math.unit(100000, "miles")
  3320. },
  3321. {
  3322. name: "Full-Size",
  3323. height: math.unit(3000000000, "miles")
  3324. }
  3325. ]
  3326. ))
  3327. characterMakers.push(() => makeCharacter(
  3328. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3329. {
  3330. front: {
  3331. height: math.unit(2, "meter"),
  3332. weight: math.unit(80, "kg"),
  3333. name: "Front",
  3334. image: {
  3335. source: "./media/characters/natalya/front.svg"
  3336. }
  3337. },
  3338. back: {
  3339. height: math.unit(2, "meter"),
  3340. weight: math.unit(80, "kg"),
  3341. name: "Back",
  3342. image: {
  3343. source: "./media/characters/natalya/back.svg"
  3344. }
  3345. }
  3346. },
  3347. [
  3348. {
  3349. name: "Normal",
  3350. height: math.unit(150, "feet"),
  3351. default: true
  3352. },
  3353. {
  3354. name: "Megamacro",
  3355. height: math.unit(5, "miles")
  3356. },
  3357. {
  3358. name: "Full-Size",
  3359. height: math.unit(600, "kiloparsecs")
  3360. }
  3361. ]
  3362. ))
  3363. characterMakers.push(() => makeCharacter(
  3364. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3365. {
  3366. front: {
  3367. height: math.unit(2, "meter"),
  3368. weight: math.unit(50, "kg"),
  3369. name: "Front",
  3370. image: {
  3371. source: "./media/characters/erestrebah/front.svg",
  3372. extra: 208 / 193,
  3373. bottom: 0.055
  3374. }
  3375. },
  3376. back: {
  3377. height: math.unit(2, "meter"),
  3378. weight: math.unit(50, "kg"),
  3379. name: "Back",
  3380. image: {
  3381. source: "./media/characters/erestrebah/back.svg",
  3382. extra: 1.3
  3383. }
  3384. }
  3385. },
  3386. [
  3387. {
  3388. name: "Normal",
  3389. height: math.unit(10, "feet")
  3390. },
  3391. {
  3392. name: "Large",
  3393. height: math.unit(50, "feet"),
  3394. default: true
  3395. },
  3396. {
  3397. name: "Macro",
  3398. height: math.unit(300, "feet")
  3399. },
  3400. {
  3401. name: "Macro+",
  3402. height: math.unit(750, "feet")
  3403. },
  3404. {
  3405. name: "Megamacro",
  3406. height: math.unit(3, "miles")
  3407. }
  3408. ]
  3409. ))
  3410. characterMakers.push(() => makeCharacter(
  3411. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3412. {
  3413. front: {
  3414. height: math.unit(2, "meter"),
  3415. weight: math.unit(80, "kg"),
  3416. name: "Front",
  3417. image: {
  3418. source: "./media/characters/jennifer/front.svg",
  3419. bottom: 0.11,
  3420. extra: 1.16
  3421. }
  3422. },
  3423. frontAlt: {
  3424. height: math.unit(2, "meter"),
  3425. weight: math.unit(80, "kg"),
  3426. name: "Front (Alt)",
  3427. image: {
  3428. source: "./media/characters/jennifer/front-alt.svg"
  3429. }
  3430. }
  3431. },
  3432. [
  3433. {
  3434. name: "Canon Height",
  3435. height: math.unit(120, "feet"),
  3436. default: true
  3437. },
  3438. {
  3439. name: "Macro+",
  3440. height: math.unit(300, "feet")
  3441. },
  3442. {
  3443. name: "Megamacro",
  3444. height: math.unit(20000, "feet")
  3445. }
  3446. ]
  3447. ))
  3448. characterMakers.push(() => makeCharacter(
  3449. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3450. {
  3451. front: {
  3452. height: math.unit(2, "meter"),
  3453. weight: math.unit(50, "kg"),
  3454. name: "Front",
  3455. image: {
  3456. source: "./media/characters/kalista/front.svg",
  3457. extra: 1947 / 1700,
  3458. bottom: 76.6 / 1412.98
  3459. }
  3460. },
  3461. back: {
  3462. height: math.unit(2, "meter"),
  3463. weight: math.unit(50, "kg"),
  3464. name: "Back",
  3465. image: {
  3466. source: "./media/characters/kalista/back.svg",
  3467. extra: 1366 / 1156,
  3468. bottom: 33.9 / 1362.78
  3469. }
  3470. }
  3471. },
  3472. [
  3473. {
  3474. name: "Uncomfortably Small",
  3475. height: math.unit(10, "feet")
  3476. },
  3477. {
  3478. name: "Small",
  3479. height: math.unit(30, "feet")
  3480. },
  3481. {
  3482. name: "Macro",
  3483. height: math.unit(100, "feet"),
  3484. default: true
  3485. },
  3486. {
  3487. name: "Macro+",
  3488. height: math.unit(2000, "feet")
  3489. },
  3490. {
  3491. name: "True Form",
  3492. height: math.unit(8924, "miles")
  3493. }
  3494. ]
  3495. ))
  3496. characterMakers.push(() => makeCharacter(
  3497. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3498. {
  3499. front: {
  3500. height: math.unit(2, "meter"),
  3501. weight: math.unit(120, "kg"),
  3502. name: "Front",
  3503. image: {
  3504. source: "./media/characters/ggv/front.svg"
  3505. }
  3506. },
  3507. side: {
  3508. height: math.unit(2, "meter"),
  3509. weight: math.unit(120, "kg"),
  3510. name: "Side",
  3511. image: {
  3512. source: "./media/characters/ggv/side.svg"
  3513. }
  3514. }
  3515. },
  3516. [
  3517. {
  3518. name: "Extremely Puny",
  3519. height: math.unit(9 + 5 / 12, "feet")
  3520. },
  3521. {
  3522. name: "Horribly Small",
  3523. height: math.unit(47.7, "miles"),
  3524. default: true
  3525. },
  3526. {
  3527. name: "Reasonably Sized",
  3528. height: math.unit(25000, "parsecs")
  3529. },
  3530. {
  3531. name: "Slightly Uncompressed",
  3532. height: math.unit(7.77e31, "parsecs")
  3533. },
  3534. {
  3535. name: "Omniversal",
  3536. height: math.unit(1e300, "meters")
  3537. },
  3538. ]
  3539. ))
  3540. characterMakers.push(() => makeCharacter(
  3541. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3542. {
  3543. front: {
  3544. height: math.unit(2, "meter"),
  3545. weight: math.unit(75, "lb"),
  3546. name: "Front",
  3547. image: {
  3548. source: "./media/characters/napalm/front.svg"
  3549. }
  3550. },
  3551. back: {
  3552. height: math.unit(2, "meter"),
  3553. weight: math.unit(75, "lb"),
  3554. name: "Back",
  3555. image: {
  3556. source: "./media/characters/napalm/back.svg"
  3557. }
  3558. }
  3559. },
  3560. [
  3561. {
  3562. name: "Standard",
  3563. height: math.unit(55, "feet"),
  3564. default: true
  3565. }
  3566. ]
  3567. ))
  3568. characterMakers.push(() => makeCharacter(
  3569. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3570. {
  3571. front: {
  3572. height: math.unit(7 + 5 / 6, "feet"),
  3573. weight: math.unit(325, "lb"),
  3574. name: "Front",
  3575. image: {
  3576. source: "./media/characters/asana/front.svg",
  3577. extra: 1133 / 1060,
  3578. bottom: 15.2 / 1148.6
  3579. }
  3580. },
  3581. back: {
  3582. height: math.unit(7 + 5 / 6, "feet"),
  3583. weight: math.unit(325, "lb"),
  3584. name: "Back",
  3585. image: {
  3586. source: "./media/characters/asana/back.svg",
  3587. extra: 1114 / 1043,
  3588. bottom: 5 / 1120
  3589. }
  3590. },
  3591. dressedDark: {
  3592. height: math.unit(7 + 5 / 6, "feet"),
  3593. weight: math.unit(325, "lb"),
  3594. name: "Dressed (Dark)",
  3595. image: {
  3596. source: "./media/characters/asana/dressed-dark.svg",
  3597. extra: 1133 / 1060,
  3598. bottom: 15.2 / 1148.6
  3599. }
  3600. },
  3601. dressedLight: {
  3602. height: math.unit(7 + 5 / 6, "feet"),
  3603. weight: math.unit(325, "lb"),
  3604. name: "Dressed (Light)",
  3605. image: {
  3606. source: "./media/characters/asana/dressed-light.svg",
  3607. extra: 1133 / 1060,
  3608. bottom: 15.2 / 1148.6
  3609. }
  3610. },
  3611. },
  3612. [
  3613. {
  3614. name: "Standard",
  3615. height: math.unit(7 + 5 / 6, "feet"),
  3616. default: true
  3617. },
  3618. {
  3619. name: "Large",
  3620. height: math.unit(10, "meters")
  3621. },
  3622. {
  3623. name: "Macro",
  3624. height: math.unit(2500, "meters")
  3625. },
  3626. {
  3627. name: "Megamacro",
  3628. height: math.unit(5e6, "meters")
  3629. },
  3630. {
  3631. name: "Examacro",
  3632. height: math.unit(5e12, "lightyears")
  3633. },
  3634. {
  3635. name: "Max Size",
  3636. height: math.unit(1e31, "lightyears")
  3637. }
  3638. ]
  3639. ))
  3640. characterMakers.push(() => makeCharacter(
  3641. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3642. {
  3643. front: {
  3644. height: math.unit(2, "meter"),
  3645. weight: math.unit(60, "kg"),
  3646. name: "Front",
  3647. image: {
  3648. source: "./media/characters/ebony/front.svg",
  3649. bottom: 0.03,
  3650. extra: 1045 / 810 + 0.03
  3651. }
  3652. },
  3653. side: {
  3654. height: math.unit(2, "meter"),
  3655. weight: math.unit(60, "kg"),
  3656. name: "Side",
  3657. image: {
  3658. source: "./media/characters/ebony/side.svg",
  3659. bottom: 0.03,
  3660. extra: 1045 / 810 + 0.03
  3661. }
  3662. },
  3663. back: {
  3664. height: math.unit(2, "meter"),
  3665. weight: math.unit(60, "kg"),
  3666. name: "Back",
  3667. image: {
  3668. source: "./media/characters/ebony/back.svg",
  3669. bottom: 0.01,
  3670. extra: 1045 / 810 + 0.01
  3671. }
  3672. },
  3673. },
  3674. [
  3675. // TODO check why I did this lol
  3676. {
  3677. name: "Standard",
  3678. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3679. default: true
  3680. },
  3681. {
  3682. name: "Macro",
  3683. height: math.unit(200, "feet")
  3684. },
  3685. {
  3686. name: "Gigamacro",
  3687. height: math.unit(13000, "km")
  3688. }
  3689. ]
  3690. ))
  3691. characterMakers.push(() => makeCharacter(
  3692. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3693. {
  3694. front: {
  3695. height: math.unit(6, "feet"),
  3696. weight: math.unit(175, "lb"),
  3697. name: "Front",
  3698. image: {
  3699. source: "./media/characters/mountain/front.svg",
  3700. extra: 972 / 955,
  3701. bottom: 64 / 1036.6
  3702. }
  3703. },
  3704. back: {
  3705. height: math.unit(6, "feet"),
  3706. weight: math.unit(175, "lb"),
  3707. name: "Back",
  3708. image: {
  3709. source: "./media/characters/mountain/back.svg",
  3710. extra: 970 / 950,
  3711. bottom: 28.25 / 999
  3712. }
  3713. },
  3714. },
  3715. [
  3716. {
  3717. name: "Large",
  3718. height: math.unit(20, "meters")
  3719. },
  3720. {
  3721. name: "Macro",
  3722. height: math.unit(300, "meters")
  3723. },
  3724. {
  3725. name: "Gigamacro",
  3726. height: math.unit(10000, "km"),
  3727. default: true
  3728. },
  3729. {
  3730. name: "Examacro",
  3731. height: math.unit(10e9, "lightyears")
  3732. }
  3733. ]
  3734. ))
  3735. characterMakers.push(() => makeCharacter(
  3736. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3737. {
  3738. front: {
  3739. height: math.unit(8, "feet"),
  3740. weight: math.unit(500, "lb"),
  3741. name: "Front",
  3742. image: {
  3743. source: "./media/characters/rick/front.svg"
  3744. }
  3745. }
  3746. },
  3747. [
  3748. {
  3749. name: "Normal",
  3750. height: math.unit(8, "feet"),
  3751. default: true
  3752. },
  3753. {
  3754. name: "Macro",
  3755. height: math.unit(5, "km")
  3756. }
  3757. ]
  3758. ))
  3759. characterMakers.push(() => makeCharacter(
  3760. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3761. {
  3762. front: {
  3763. height: math.unit(8, "feet"),
  3764. weight: math.unit(120, "lb"),
  3765. name: "Front",
  3766. image: {
  3767. source: "./media/characters/ona/front.svg"
  3768. }
  3769. },
  3770. frontAlt: {
  3771. height: math.unit(8, "feet"),
  3772. weight: math.unit(120, "lb"),
  3773. name: "Front (Alt)",
  3774. image: {
  3775. source: "./media/characters/ona/front-alt.svg"
  3776. }
  3777. },
  3778. back: {
  3779. height: math.unit(8, "feet"),
  3780. weight: math.unit(120, "lb"),
  3781. name: "Back",
  3782. image: {
  3783. source: "./media/characters/ona/back.svg"
  3784. }
  3785. },
  3786. foot: {
  3787. height: math.unit(1.1, "feet"),
  3788. name: "Foot",
  3789. image: {
  3790. source: "./media/characters/ona/foot.svg"
  3791. }
  3792. }
  3793. },
  3794. [
  3795. {
  3796. name: "Megamacro",
  3797. height: math.unit(70, "km"),
  3798. default: true
  3799. },
  3800. {
  3801. name: "Gigamacro",
  3802. height: math.unit(681818, "miles")
  3803. },
  3804. {
  3805. name: "Examacro",
  3806. height: math.unit(3800000, "lightyears")
  3807. },
  3808. ]
  3809. ))
  3810. characterMakers.push(() => makeCharacter(
  3811. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3812. {
  3813. front: {
  3814. height: math.unit(12, "feet"),
  3815. weight: math.unit(3000, "lb"),
  3816. name: "Front",
  3817. image: {
  3818. source: "./media/characters/mech/front.svg",
  3819. extra: 2900 / 2770,
  3820. bottom: 110 / 3010
  3821. }
  3822. },
  3823. back: {
  3824. height: math.unit(12, "feet"),
  3825. weight: math.unit(3000, "lb"),
  3826. name: "Back",
  3827. image: {
  3828. source: "./media/characters/mech/back.svg",
  3829. extra: 3011 / 2890,
  3830. bottom: 94 / 3105
  3831. }
  3832. },
  3833. maw: {
  3834. height: math.unit(3.07, "feet"),
  3835. name: "Maw",
  3836. image: {
  3837. source: "./media/characters/mech/maw.svg"
  3838. }
  3839. },
  3840. head: {
  3841. height: math.unit(2.82, "feet"),
  3842. name: "Head",
  3843. image: {
  3844. source: "./media/characters/mech/head.svg"
  3845. }
  3846. },
  3847. dick: {
  3848. height: math.unit(1.43, "feet"),
  3849. name: "Dick",
  3850. image: {
  3851. source: "./media/characters/mech/dick.svg"
  3852. }
  3853. },
  3854. },
  3855. [
  3856. {
  3857. name: "Normal",
  3858. height: math.unit(12, "feet")
  3859. },
  3860. {
  3861. name: "Macro",
  3862. height: math.unit(300, "feet"),
  3863. default: true
  3864. },
  3865. {
  3866. name: "Macro+",
  3867. height: math.unit(1500, "feet")
  3868. },
  3869. ]
  3870. ))
  3871. characterMakers.push(() => makeCharacter(
  3872. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3873. {
  3874. front: {
  3875. height: math.unit(1.3, "meter"),
  3876. weight: math.unit(30, "kg"),
  3877. name: "Front",
  3878. image: {
  3879. source: "./media/characters/gregory/front.svg",
  3880. }
  3881. }
  3882. },
  3883. [
  3884. {
  3885. name: "Normal",
  3886. height: math.unit(1.3, "meter"),
  3887. default: true
  3888. },
  3889. {
  3890. name: "Macro",
  3891. height: math.unit(20, "meter")
  3892. }
  3893. ]
  3894. ))
  3895. characterMakers.push(() => makeCharacter(
  3896. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3897. {
  3898. front: {
  3899. height: math.unit(2.8, "meter"),
  3900. weight: math.unit(200, "kg"),
  3901. name: "Front",
  3902. image: {
  3903. source: "./media/characters/elory/front.svg",
  3904. }
  3905. }
  3906. },
  3907. [
  3908. {
  3909. name: "Normal",
  3910. height: math.unit(2.8, "meter"),
  3911. default: true
  3912. },
  3913. {
  3914. name: "Macro",
  3915. height: math.unit(38, "meter")
  3916. }
  3917. ]
  3918. ))
  3919. characterMakers.push(() => makeCharacter(
  3920. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3921. {
  3922. front: {
  3923. height: math.unit(470, "feet"),
  3924. weight: math.unit(924, "tons"),
  3925. name: "Front",
  3926. image: {
  3927. source: "./media/characters/angelpatamon/front.svg",
  3928. }
  3929. }
  3930. },
  3931. [
  3932. {
  3933. name: "Normal",
  3934. height: math.unit(470, "feet"),
  3935. default: true
  3936. },
  3937. {
  3938. name: "Deity Size I",
  3939. height: math.unit(28651.2, "km")
  3940. },
  3941. {
  3942. name: "Deity Size II",
  3943. height: math.unit(171907.2, "km")
  3944. }
  3945. ]
  3946. ))
  3947. characterMakers.push(() => makeCharacter(
  3948. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3949. {
  3950. side: {
  3951. height: math.unit(7.2, "meter"),
  3952. weight: math.unit(8.2, "tons"),
  3953. name: "Side",
  3954. image: {
  3955. source: "./media/characters/cryae/side.svg",
  3956. extra: 3500 / 1500
  3957. }
  3958. }
  3959. },
  3960. [
  3961. {
  3962. name: "Normal",
  3963. height: math.unit(7.2, "meter"),
  3964. default: true
  3965. }
  3966. ]
  3967. ))
  3968. characterMakers.push(() => makeCharacter(
  3969. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3970. {
  3971. front: {
  3972. height: math.unit(6, "feet"),
  3973. weight: math.unit(175, "lb"),
  3974. name: "Front",
  3975. image: {
  3976. source: "./media/characters/xera/front.svg",
  3977. extra: 2377 / 1972,
  3978. bottom: 75.5 / 2452
  3979. }
  3980. },
  3981. side: {
  3982. height: math.unit(6, "feet"),
  3983. weight: math.unit(175, "lb"),
  3984. name: "Side",
  3985. image: {
  3986. source: "./media/characters/xera/side.svg",
  3987. extra: 2345 / 2019,
  3988. bottom: 39.7 / 2384
  3989. }
  3990. },
  3991. back: {
  3992. height: math.unit(6, "feet"),
  3993. weight: math.unit(175, "lb"),
  3994. name: "Back",
  3995. image: {
  3996. source: "./media/characters/xera/back.svg",
  3997. extra: 2095 / 1984,
  3998. bottom: 67 / 2166
  3999. }
  4000. },
  4001. },
  4002. [
  4003. {
  4004. name: "Small",
  4005. height: math.unit(10, "feet")
  4006. },
  4007. {
  4008. name: "Macro",
  4009. height: math.unit(500, "meters"),
  4010. default: true
  4011. },
  4012. {
  4013. name: "Macro+",
  4014. height: math.unit(10, "km")
  4015. },
  4016. {
  4017. name: "Gigamacro",
  4018. height: math.unit(25000, "km")
  4019. },
  4020. {
  4021. name: "Teramacro",
  4022. height: math.unit(3e6, "km")
  4023. }
  4024. ]
  4025. ))
  4026. characterMakers.push(() => makeCharacter(
  4027. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4028. {
  4029. front: {
  4030. height: math.unit(6, "feet"),
  4031. weight: math.unit(175, "lb"),
  4032. name: "Front",
  4033. image: {
  4034. source: "./media/characters/nebula/front.svg",
  4035. extra: 2566 / 2362,
  4036. bottom: 81 / 2644
  4037. }
  4038. }
  4039. },
  4040. [
  4041. {
  4042. name: "Small",
  4043. height: math.unit(4.5, "meters")
  4044. },
  4045. {
  4046. name: "Macro",
  4047. height: math.unit(1500, "meters"),
  4048. default: true
  4049. },
  4050. {
  4051. name: "Megamacro",
  4052. height: math.unit(150, "km")
  4053. },
  4054. {
  4055. name: "Gigamacro",
  4056. height: math.unit(27000, "km")
  4057. }
  4058. ]
  4059. ))
  4060. characterMakers.push(() => makeCharacter(
  4061. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4062. {
  4063. front: {
  4064. height: math.unit(6, "feet"),
  4065. weight: math.unit(225, "lb"),
  4066. name: "Front",
  4067. image: {
  4068. source: "./media/characters/abysgar/front.svg"
  4069. }
  4070. }
  4071. },
  4072. [
  4073. {
  4074. name: "Small",
  4075. height: math.unit(4.5, "meters")
  4076. },
  4077. {
  4078. name: "Macro",
  4079. height: math.unit(1250, "meters"),
  4080. default: true
  4081. },
  4082. {
  4083. name: "Megamacro",
  4084. height: math.unit(125, "km")
  4085. },
  4086. {
  4087. name: "Gigamacro",
  4088. height: math.unit(26000, "km")
  4089. }
  4090. ]
  4091. ))
  4092. characterMakers.push(() => makeCharacter(
  4093. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4094. {
  4095. front: {
  4096. height: math.unit(6, "feet"),
  4097. weight: math.unit(180, "lb"),
  4098. name: "Front",
  4099. image: {
  4100. source: "./media/characters/yakuz/front.svg"
  4101. }
  4102. }
  4103. },
  4104. [
  4105. {
  4106. name: "Small",
  4107. height: math.unit(5, "meters")
  4108. },
  4109. {
  4110. name: "Macro",
  4111. height: math.unit(1500, "meters"),
  4112. default: true
  4113. },
  4114. {
  4115. name: "Megamacro",
  4116. height: math.unit(200, "km")
  4117. },
  4118. {
  4119. name: "Gigamacro",
  4120. height: math.unit(100000, "km")
  4121. }
  4122. ]
  4123. ))
  4124. characterMakers.push(() => makeCharacter(
  4125. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4126. {
  4127. front: {
  4128. height: math.unit(6, "feet"),
  4129. weight: math.unit(175, "lb"),
  4130. name: "Front",
  4131. image: {
  4132. source: "./media/characters/mirova/front.svg",
  4133. extra: 3334 / 3071,
  4134. bottom: 42 / 3375.6
  4135. }
  4136. }
  4137. },
  4138. [
  4139. {
  4140. name: "Small",
  4141. height: math.unit(5, "meters")
  4142. },
  4143. {
  4144. name: "Macro",
  4145. height: math.unit(900, "meters"),
  4146. default: true
  4147. },
  4148. {
  4149. name: "Megamacro",
  4150. height: math.unit(135, "km")
  4151. },
  4152. {
  4153. name: "Gigamacro",
  4154. height: math.unit(20000, "km")
  4155. }
  4156. ]
  4157. ))
  4158. characterMakers.push(() => makeCharacter(
  4159. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4160. {
  4161. side: {
  4162. height: math.unit(28.35, "feet"),
  4163. weight: math.unit(99.75, "tons"),
  4164. name: "Side",
  4165. image: {
  4166. source: "./media/characters/asana-mech/side.svg",
  4167. extra: 923 / 699,
  4168. bottom: 50 / 975
  4169. }
  4170. },
  4171. chaingun: {
  4172. height: math.unit(7, "feet"),
  4173. weight: math.unit(2400, "lb"),
  4174. name: "Chaingun",
  4175. image: {
  4176. source: "./media/characters/asana-mech/chaingun.svg"
  4177. }
  4178. },
  4179. laser: {
  4180. height: math.unit(7.12, "feet"),
  4181. weight: math.unit(2000, "lb"),
  4182. name: "Laser",
  4183. image: {
  4184. source: "./media/characters/asana-mech/laser.svg"
  4185. }
  4186. },
  4187. },
  4188. [
  4189. {
  4190. name: "Normal",
  4191. height: math.unit(28.35, "feet"),
  4192. default: true
  4193. },
  4194. {
  4195. name: "Macro",
  4196. height: math.unit(2500, "feet")
  4197. },
  4198. {
  4199. name: "Megamacro",
  4200. height: math.unit(25, "miles")
  4201. },
  4202. {
  4203. name: "Examacro",
  4204. height: math.unit(6e8, "lightyears")
  4205. },
  4206. ]
  4207. ))
  4208. characterMakers.push(() => makeCharacter(
  4209. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4210. {
  4211. front: {
  4212. height: math.unit(5, "meters"),
  4213. weight: math.unit(1000, "kg"),
  4214. name: "Front",
  4215. image: {
  4216. source: "./media/characters/asche/front.svg",
  4217. extra: 1258 / 1190,
  4218. bottom: 47 / 1305
  4219. }
  4220. },
  4221. frontUnderwear: {
  4222. height: math.unit(5, "meters"),
  4223. weight: math.unit(1000, "kg"),
  4224. name: "Front (Underwear)",
  4225. image: {
  4226. source: "./media/characters/asche/front-underwear.svg",
  4227. extra: 1258 / 1190,
  4228. bottom: 47 / 1305
  4229. }
  4230. },
  4231. frontDressed: {
  4232. height: math.unit(5, "meters"),
  4233. weight: math.unit(1000, "kg"),
  4234. name: "Front (Dressed)",
  4235. image: {
  4236. source: "./media/characters/asche/front-dressed.svg",
  4237. extra: 1258 / 1190,
  4238. bottom: 47 / 1305
  4239. }
  4240. },
  4241. frontArmor: {
  4242. height: math.unit(5, "meters"),
  4243. weight: math.unit(1000, "kg"),
  4244. name: "Front (Armored)",
  4245. image: {
  4246. source: "./media/characters/asche/front-armored.svg",
  4247. extra: 1374 / 1308,
  4248. bottom: 23 / 1397
  4249. }
  4250. },
  4251. mp724: {
  4252. height: math.unit(0.96, "meters"),
  4253. weight: math.unit(38, "kg"),
  4254. name: "H&K MP724",
  4255. image: {
  4256. source: "./media/characters/asche/h&k-mp724.svg"
  4257. }
  4258. },
  4259. side: {
  4260. height: math.unit(5, "meters"),
  4261. weight: math.unit(1000, "kg"),
  4262. name: "Side",
  4263. image: {
  4264. source: "./media/characters/asche/side.svg",
  4265. extra: 1717 / 1609,
  4266. bottom: 0.005
  4267. }
  4268. },
  4269. back: {
  4270. height: math.unit(5, "meters"),
  4271. weight: math.unit(1000, "kg"),
  4272. name: "Back",
  4273. image: {
  4274. source: "./media/characters/asche/back.svg",
  4275. extra: 1570 / 1501
  4276. }
  4277. },
  4278. },
  4279. [
  4280. {
  4281. name: "DEFCON 5",
  4282. height: math.unit(5, "meters")
  4283. },
  4284. {
  4285. name: "DEFCON 4",
  4286. height: math.unit(500, "meters"),
  4287. default: true
  4288. },
  4289. {
  4290. name: "DEFCON 3",
  4291. height: math.unit(5, "km")
  4292. },
  4293. {
  4294. name: "DEFCON 2",
  4295. height: math.unit(500, "km")
  4296. },
  4297. {
  4298. name: "DEFCON 1",
  4299. height: math.unit(500000, "km")
  4300. },
  4301. {
  4302. name: "DEFCON 0",
  4303. height: math.unit(3, "gigaparsecs")
  4304. },
  4305. ]
  4306. ))
  4307. characterMakers.push(() => makeCharacter(
  4308. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4309. {
  4310. front: {
  4311. height: math.unit(2, "meters"),
  4312. weight: math.unit(76, "kg"),
  4313. name: "Front",
  4314. image: {
  4315. source: "./media/characters/gale/front.svg"
  4316. }
  4317. },
  4318. frontAlt1: {
  4319. height: math.unit(2, "meters"),
  4320. weight: math.unit(76, "kg"),
  4321. name: "Front (Alt 1)",
  4322. image: {
  4323. source: "./media/characters/gale/front-alt-1.svg"
  4324. }
  4325. },
  4326. frontAlt2: {
  4327. height: math.unit(2, "meters"),
  4328. weight: math.unit(76, "kg"),
  4329. name: "Front (Alt 2)",
  4330. image: {
  4331. source: "./media/characters/gale/front-alt-2.svg"
  4332. }
  4333. },
  4334. },
  4335. [
  4336. {
  4337. name: "Normal",
  4338. height: math.unit(7, "feet")
  4339. },
  4340. {
  4341. name: "Macro",
  4342. height: math.unit(150, "feet"),
  4343. default: true
  4344. },
  4345. {
  4346. name: "Macro+",
  4347. height: math.unit(300, "feet")
  4348. },
  4349. ]
  4350. ))
  4351. characterMakers.push(() => makeCharacter(
  4352. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4353. {
  4354. front: {
  4355. height: math.unit(2, "meters"),
  4356. weight: math.unit(76, "kg"),
  4357. name: "Front",
  4358. image: {
  4359. source: "./media/characters/draylen/front.svg"
  4360. }
  4361. }
  4362. },
  4363. [
  4364. {
  4365. name: "Macro",
  4366. height: math.unit(150, "feet"),
  4367. default: true
  4368. }
  4369. ]
  4370. ))
  4371. characterMakers.push(() => makeCharacter(
  4372. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4373. {
  4374. front: {
  4375. height: math.unit(7 + 9 / 12, "feet"),
  4376. weight: math.unit(379, "lbs"),
  4377. name: "Front",
  4378. image: {
  4379. source: "./media/characters/chez/front.svg"
  4380. }
  4381. },
  4382. side: {
  4383. height: math.unit(7 + 9 / 12, "feet"),
  4384. weight: math.unit(379, "lbs"),
  4385. name: "Side",
  4386. image: {
  4387. source: "./media/characters/chez/side.svg"
  4388. }
  4389. }
  4390. },
  4391. [
  4392. {
  4393. name: "Normal",
  4394. height: math.unit(7 + 9 / 12, "feet"),
  4395. default: true
  4396. },
  4397. {
  4398. name: "God King",
  4399. height: math.unit(9750000, "meters")
  4400. }
  4401. ]
  4402. ))
  4403. characterMakers.push(() => makeCharacter(
  4404. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4405. {
  4406. front: {
  4407. height: math.unit(6, "feet"),
  4408. weight: math.unit(275, "lbs"),
  4409. name: "Front",
  4410. image: {
  4411. source: "./media/characters/kaylum/front.svg",
  4412. bottom: 0.01,
  4413. extra: 1166 / 1031
  4414. }
  4415. },
  4416. frontWingless: {
  4417. height: math.unit(6, "feet"),
  4418. weight: math.unit(275, "lbs"),
  4419. name: "Front (Wingless)",
  4420. image: {
  4421. source: "./media/characters/kaylum/front-wingless.svg",
  4422. bottom: 0.01,
  4423. extra: 1117 / 1031
  4424. }
  4425. }
  4426. },
  4427. [
  4428. {
  4429. name: "Normal",
  4430. height: math.unit(3.05, "meters")
  4431. },
  4432. {
  4433. name: "Master",
  4434. height: math.unit(5.5, "meters")
  4435. },
  4436. {
  4437. name: "Rampage",
  4438. height: math.unit(19, "meters")
  4439. },
  4440. {
  4441. name: "Macro Lite",
  4442. height: math.unit(37, "meters")
  4443. },
  4444. {
  4445. name: "Hyper Predator",
  4446. height: math.unit(61, "meters")
  4447. },
  4448. {
  4449. name: "Macro",
  4450. height: math.unit(138, "meters"),
  4451. default: true
  4452. }
  4453. ]
  4454. ))
  4455. characterMakers.push(() => makeCharacter(
  4456. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4457. {
  4458. front: {
  4459. height: math.unit(6, "feet"),
  4460. weight: math.unit(150, "lbs"),
  4461. name: "Front",
  4462. image: {
  4463. source: "./media/characters/geta/front.svg"
  4464. }
  4465. }
  4466. },
  4467. [
  4468. {
  4469. name: "Micro",
  4470. height: math.unit(3, "inches"),
  4471. default: true
  4472. },
  4473. {
  4474. name: "Normal",
  4475. height: math.unit(5 + 5 / 12, "feet")
  4476. }
  4477. ]
  4478. ))
  4479. characterMakers.push(() => makeCharacter(
  4480. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4481. {
  4482. front: {
  4483. height: math.unit(6, "feet"),
  4484. weight: math.unit(300, "lbs"),
  4485. name: "Front",
  4486. image: {
  4487. source: "./media/characters/tyrnn/front.svg"
  4488. }
  4489. }
  4490. },
  4491. [
  4492. {
  4493. name: "Main Height",
  4494. height: math.unit(355, "feet"),
  4495. default: true
  4496. },
  4497. {
  4498. name: "Fave. Height",
  4499. height: math.unit(2400, "feet")
  4500. }
  4501. ]
  4502. ))
  4503. characterMakers.push(() => makeCharacter(
  4504. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4505. {
  4506. front: {
  4507. height: math.unit(6, "feet"),
  4508. weight: math.unit(300, "lbs"),
  4509. name: "Front",
  4510. image: {
  4511. source: "./media/characters/appledectomy/front.svg"
  4512. }
  4513. }
  4514. },
  4515. [
  4516. {
  4517. name: "Macro",
  4518. height: math.unit(2500, "feet")
  4519. },
  4520. {
  4521. name: "Megamacro",
  4522. height: math.unit(50, "miles"),
  4523. default: true
  4524. },
  4525. {
  4526. name: "Gigamacro",
  4527. height: math.unit(5000, "miles")
  4528. },
  4529. {
  4530. name: "Teramacro",
  4531. height: math.unit(250000, "miles")
  4532. },
  4533. ]
  4534. ))
  4535. characterMakers.push(() => makeCharacter(
  4536. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4537. {
  4538. front: {
  4539. height: math.unit(6, "feet"),
  4540. weight: math.unit(200, "lbs"),
  4541. name: "Front",
  4542. image: {
  4543. source: "./media/characters/vulpes/front.svg",
  4544. extra: 573 / 543,
  4545. bottom: 0.033
  4546. }
  4547. },
  4548. side: {
  4549. height: math.unit(6, "feet"),
  4550. weight: math.unit(200, "lbs"),
  4551. name: "Side",
  4552. image: {
  4553. source: "./media/characters/vulpes/side.svg",
  4554. extra: 577 / 549,
  4555. bottom: 11 / 588
  4556. }
  4557. },
  4558. back: {
  4559. height: math.unit(6, "feet"),
  4560. weight: math.unit(200, "lbs"),
  4561. name: "Back",
  4562. image: {
  4563. source: "./media/characters/vulpes/back.svg",
  4564. extra: 573 / 549,
  4565. bottom: 20 / 593
  4566. }
  4567. },
  4568. feet: {
  4569. height: math.unit(1.276, "feet"),
  4570. name: "Feet",
  4571. image: {
  4572. source: "./media/characters/vulpes/feet.svg"
  4573. }
  4574. },
  4575. maw: {
  4576. height: math.unit(1.18, "feet"),
  4577. name: "Maw",
  4578. image: {
  4579. source: "./media/characters/vulpes/maw.svg"
  4580. }
  4581. },
  4582. },
  4583. [
  4584. {
  4585. name: "Micro",
  4586. height: math.unit(2, "inches")
  4587. },
  4588. {
  4589. name: "Normal",
  4590. height: math.unit(6.3, "feet")
  4591. },
  4592. {
  4593. name: "Macro",
  4594. height: math.unit(850, "feet")
  4595. },
  4596. {
  4597. name: "Megamacro",
  4598. height: math.unit(7500, "feet"),
  4599. default: true
  4600. },
  4601. {
  4602. name: "Gigamacro",
  4603. height: math.unit(570000, "miles")
  4604. }
  4605. ]
  4606. ))
  4607. characterMakers.push(() => makeCharacter(
  4608. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4609. {
  4610. front: {
  4611. height: math.unit(6, "feet"),
  4612. weight: math.unit(210, "lbs"),
  4613. name: "Front",
  4614. image: {
  4615. source: "./media/characters/rain-fallen/front.svg"
  4616. }
  4617. },
  4618. side: {
  4619. height: math.unit(6, "feet"),
  4620. weight: math.unit(210, "lbs"),
  4621. name: "Side",
  4622. image: {
  4623. source: "./media/characters/rain-fallen/side.svg"
  4624. }
  4625. },
  4626. back: {
  4627. height: math.unit(6, "feet"),
  4628. weight: math.unit(210, "lbs"),
  4629. name: "Back",
  4630. image: {
  4631. source: "./media/characters/rain-fallen/back.svg"
  4632. }
  4633. },
  4634. feral: {
  4635. height: math.unit(9, "feet"),
  4636. weight: math.unit(700, "lbs"),
  4637. name: "Feral",
  4638. image: {
  4639. source: "./media/characters/rain-fallen/feral.svg"
  4640. }
  4641. },
  4642. },
  4643. [
  4644. {
  4645. name: "Meddling with Mortals",
  4646. height: math.unit(8 + 8/12, "feet")
  4647. },
  4648. {
  4649. name: "Normal",
  4650. height: math.unit(5, "meter")
  4651. },
  4652. {
  4653. name: "Macro",
  4654. height: math.unit(150, "meter"),
  4655. default: true
  4656. },
  4657. {
  4658. name: "Megamacro",
  4659. height: math.unit(278e6, "meter")
  4660. },
  4661. {
  4662. name: "Gigamacro",
  4663. height: math.unit(2e9, "meter")
  4664. },
  4665. {
  4666. name: "Teramacro",
  4667. height: math.unit(8e12, "meter")
  4668. },
  4669. {
  4670. name: "Devourer",
  4671. height: math.unit(14, "zettameters")
  4672. },
  4673. {
  4674. name: "Scarlet King",
  4675. height: math.unit(18, "yottameters")
  4676. },
  4677. {
  4678. name: "Void",
  4679. height: math.unit(1e88, "yottameters")
  4680. }
  4681. ]
  4682. ))
  4683. characterMakers.push(() => makeCharacter(
  4684. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4685. {
  4686. standing: {
  4687. height: math.unit(6, "feet"),
  4688. weight: math.unit(180, "lbs"),
  4689. name: "Standing",
  4690. image: {
  4691. source: "./media/characters/zaakira/standing.svg",
  4692. extra: 1599/1504,
  4693. bottom: 39/1638
  4694. }
  4695. },
  4696. laying: {
  4697. height: math.unit(3, "feet"),
  4698. weight: math.unit(180, "lbs"),
  4699. name: "Laying",
  4700. image: {
  4701. source: "./media/characters/zaakira/laying.svg"
  4702. }
  4703. },
  4704. },
  4705. [
  4706. {
  4707. name: "Normal",
  4708. height: math.unit(12, "feet")
  4709. },
  4710. {
  4711. name: "Macro",
  4712. height: math.unit(279, "feet"),
  4713. default: true
  4714. }
  4715. ]
  4716. ))
  4717. characterMakers.push(() => makeCharacter(
  4718. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4719. {
  4720. femSfw: {
  4721. height: math.unit(8, "feet"),
  4722. weight: math.unit(350, "lb"),
  4723. name: "Fem",
  4724. image: {
  4725. source: "./media/characters/sigvald/fem-sfw.svg",
  4726. extra: 182 / 164,
  4727. bottom: 8.7 / 190.5
  4728. }
  4729. },
  4730. femNsfw: {
  4731. height: math.unit(8, "feet"),
  4732. weight: math.unit(350, "lb"),
  4733. name: "Fem (NSFW)",
  4734. image: {
  4735. source: "./media/characters/sigvald/fem-nsfw.svg",
  4736. extra: 182 / 164,
  4737. bottom: 8.7 / 190.5
  4738. }
  4739. },
  4740. maleNsfw: {
  4741. height: math.unit(8, "feet"),
  4742. weight: math.unit(350, "lb"),
  4743. name: "Male (NSFW)",
  4744. image: {
  4745. source: "./media/characters/sigvald/male-nsfw.svg",
  4746. extra: 182 / 164,
  4747. bottom: 8.7 / 190.5
  4748. }
  4749. },
  4750. hermNsfw: {
  4751. height: math.unit(8, "feet"),
  4752. weight: math.unit(350, "lb"),
  4753. name: "Herm (NSFW)",
  4754. image: {
  4755. source: "./media/characters/sigvald/herm-nsfw.svg",
  4756. extra: 182 / 164,
  4757. bottom: 8.7 / 190.5
  4758. }
  4759. },
  4760. dick: {
  4761. height: math.unit(2.36, "feet"),
  4762. name: "Dick",
  4763. image: {
  4764. source: "./media/characters/sigvald/dick.svg"
  4765. }
  4766. },
  4767. eye: {
  4768. height: math.unit(0.31, "feet"),
  4769. name: "Eye",
  4770. image: {
  4771. source: "./media/characters/sigvald/eye.svg"
  4772. }
  4773. },
  4774. mouth: {
  4775. height: math.unit(0.92, "feet"),
  4776. name: "Mouth",
  4777. image: {
  4778. source: "./media/characters/sigvald/mouth.svg"
  4779. }
  4780. },
  4781. paws: {
  4782. height: math.unit(2.2, "feet"),
  4783. name: "Paws",
  4784. image: {
  4785. source: "./media/characters/sigvald/paws.svg"
  4786. }
  4787. }
  4788. },
  4789. [
  4790. {
  4791. name: "Normal",
  4792. height: math.unit(8, "feet")
  4793. },
  4794. {
  4795. name: "Large",
  4796. height: math.unit(12, "feet")
  4797. },
  4798. {
  4799. name: "Larger",
  4800. height: math.unit(20, "feet")
  4801. },
  4802. {
  4803. name: "Macro",
  4804. height: math.unit(150, "feet")
  4805. },
  4806. {
  4807. name: "Macro+",
  4808. height: math.unit(200, "feet"),
  4809. default: true
  4810. },
  4811. ]
  4812. ))
  4813. characterMakers.push(() => makeCharacter(
  4814. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4815. {
  4816. side: {
  4817. height: math.unit(12, "feet"),
  4818. weight: math.unit(2000, "kg"),
  4819. name: "Side",
  4820. image: {
  4821. source: "./media/characters/scott/side.svg",
  4822. extra: 754 / 724,
  4823. bottom: 0.069
  4824. }
  4825. },
  4826. upright: {
  4827. height: math.unit(12, "feet"),
  4828. weight: math.unit(2000, "kg"),
  4829. name: "Upright",
  4830. image: {
  4831. source: "./media/characters/scott/upright.svg",
  4832. extra: 3881 / 3722,
  4833. bottom: 0.05
  4834. }
  4835. },
  4836. },
  4837. [
  4838. {
  4839. name: "Normal",
  4840. height: math.unit(12, "feet"),
  4841. default: true
  4842. },
  4843. ]
  4844. ))
  4845. characterMakers.push(() => makeCharacter(
  4846. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4847. {
  4848. side: {
  4849. height: math.unit(8, "meters"),
  4850. weight: math.unit(84755, "lbs"),
  4851. name: "Side",
  4852. image: {
  4853. source: "./media/characters/tobias/side.svg",
  4854. extra: 1474 / 1096,
  4855. bottom: 38.9 / 1513.1235
  4856. }
  4857. },
  4858. },
  4859. [
  4860. {
  4861. name: "Normal",
  4862. height: math.unit(8, "meters"),
  4863. default: true
  4864. },
  4865. ]
  4866. ))
  4867. characterMakers.push(() => makeCharacter(
  4868. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4869. {
  4870. front: {
  4871. height: math.unit(5.5, "feet"),
  4872. weight: math.unit(400, "lbs"),
  4873. name: "Front",
  4874. image: {
  4875. source: "./media/characters/kieran/front.svg",
  4876. extra: 2694 / 2364,
  4877. bottom: 217 / 2908
  4878. }
  4879. },
  4880. side: {
  4881. height: math.unit(5.5, "feet"),
  4882. weight: math.unit(400, "lbs"),
  4883. name: "Side",
  4884. image: {
  4885. source: "./media/characters/kieran/side.svg",
  4886. extra: 875 / 777,
  4887. bottom: 84.6 / 959
  4888. }
  4889. },
  4890. },
  4891. [
  4892. {
  4893. name: "Normal",
  4894. height: math.unit(5.5, "feet"),
  4895. default: true
  4896. },
  4897. ]
  4898. ))
  4899. characterMakers.push(() => makeCharacter(
  4900. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4901. {
  4902. side: {
  4903. height: math.unit(2, "meters"),
  4904. weight: math.unit(70, "kg"),
  4905. name: "Side",
  4906. image: {
  4907. source: "./media/characters/sanya/side.svg",
  4908. bottom: 0.02,
  4909. extra: 1.02
  4910. }
  4911. },
  4912. },
  4913. [
  4914. {
  4915. name: "Small",
  4916. height: math.unit(2, "meters")
  4917. },
  4918. {
  4919. name: "Normal",
  4920. height: math.unit(3, "meters")
  4921. },
  4922. {
  4923. name: "Macro",
  4924. height: math.unit(16, "meters"),
  4925. default: true
  4926. },
  4927. ]
  4928. ))
  4929. characterMakers.push(() => makeCharacter(
  4930. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4931. {
  4932. front: {
  4933. height: math.unit(2, "meters"),
  4934. weight: math.unit(120, "kg"),
  4935. name: "Front",
  4936. image: {
  4937. source: "./media/characters/miranda/front.svg",
  4938. extra: 195 / 185,
  4939. bottom: 10.9 / 206.5
  4940. }
  4941. },
  4942. back: {
  4943. height: math.unit(2, "meters"),
  4944. weight: math.unit(120, "kg"),
  4945. name: "Back",
  4946. image: {
  4947. source: "./media/characters/miranda/back.svg",
  4948. extra: 201 / 193,
  4949. bottom: 2.3 / 203.7
  4950. }
  4951. },
  4952. },
  4953. [
  4954. {
  4955. name: "Normal",
  4956. height: math.unit(10, "feet"),
  4957. default: true
  4958. }
  4959. ]
  4960. ))
  4961. characterMakers.push(() => makeCharacter(
  4962. { name: "James", species: ["deer"], tags: ["anthro"] },
  4963. {
  4964. side: {
  4965. height: math.unit(2, "meters"),
  4966. weight: math.unit(100, "kg"),
  4967. name: "Front",
  4968. image: {
  4969. source: "./media/characters/james/front.svg",
  4970. extra: 10 / 8.5
  4971. }
  4972. },
  4973. },
  4974. [
  4975. {
  4976. name: "Normal",
  4977. height: math.unit(8.5, "feet"),
  4978. default: true
  4979. }
  4980. ]
  4981. ))
  4982. characterMakers.push(() => makeCharacter(
  4983. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4984. {
  4985. side: {
  4986. height: math.unit(9.5, "feet"),
  4987. weight: math.unit(2500, "lbs"),
  4988. name: "Side",
  4989. image: {
  4990. source: "./media/characters/heather/side.svg"
  4991. }
  4992. },
  4993. },
  4994. [
  4995. {
  4996. name: "Normal",
  4997. height: math.unit(9.5, "feet"),
  4998. default: true
  4999. }
  5000. ]
  5001. ))
  5002. characterMakers.push(() => makeCharacter(
  5003. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5004. {
  5005. side: {
  5006. height: math.unit(6.5, "feet"),
  5007. weight: math.unit(400, "lbs"),
  5008. name: "Side",
  5009. image: {
  5010. source: "./media/characters/lukas/side.svg",
  5011. extra: 7.25 / 6.5
  5012. }
  5013. },
  5014. },
  5015. [
  5016. {
  5017. name: "Normal",
  5018. height: math.unit(6.5, "feet"),
  5019. default: true
  5020. }
  5021. ]
  5022. ))
  5023. characterMakers.push(() => makeCharacter(
  5024. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5025. {
  5026. side: {
  5027. height: math.unit(5, "feet"),
  5028. weight: math.unit(3000, "lbs"),
  5029. name: "Side",
  5030. image: {
  5031. source: "./media/characters/louise/side.svg"
  5032. }
  5033. },
  5034. },
  5035. [
  5036. {
  5037. name: "Normal",
  5038. height: math.unit(5, "feet"),
  5039. default: true
  5040. }
  5041. ]
  5042. ))
  5043. characterMakers.push(() => makeCharacter(
  5044. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5045. {
  5046. side: {
  5047. height: math.unit(6, "feet"),
  5048. weight: math.unit(150, "lbs"),
  5049. name: "Side",
  5050. image: {
  5051. source: "./media/characters/ramona/side.svg"
  5052. }
  5053. },
  5054. },
  5055. [
  5056. {
  5057. name: "Normal",
  5058. height: math.unit(5.3, "meters"),
  5059. default: true
  5060. },
  5061. {
  5062. name: "Macro",
  5063. height: math.unit(20, "stories")
  5064. },
  5065. {
  5066. name: "Macro+",
  5067. height: math.unit(50, "stories")
  5068. },
  5069. ]
  5070. ))
  5071. characterMakers.push(() => makeCharacter(
  5072. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5073. {
  5074. standing: {
  5075. height: math.unit(5.75, "feet"),
  5076. weight: math.unit(160, "lbs"),
  5077. name: "Standing",
  5078. image: {
  5079. source: "./media/characters/deerpuff/standing.svg",
  5080. extra: 682 / 624
  5081. }
  5082. },
  5083. sitting: {
  5084. height: math.unit(5.75 / 1.79, "feet"),
  5085. weight: math.unit(160, "lbs"),
  5086. name: "Sitting",
  5087. image: {
  5088. source: "./media/characters/deerpuff/sitting.svg",
  5089. bottom: 44 / 400,
  5090. extra: 1
  5091. }
  5092. },
  5093. taurLaying: {
  5094. height: math.unit(6, "feet"),
  5095. weight: math.unit(400, "lbs"),
  5096. name: "Taur (Laying)",
  5097. image: {
  5098. source: "./media/characters/deerpuff/taur-laying.svg"
  5099. }
  5100. },
  5101. },
  5102. [
  5103. {
  5104. name: "Puffball",
  5105. height: math.unit(6, "inches")
  5106. },
  5107. {
  5108. name: "Normalpuff",
  5109. height: math.unit(5.75, "feet")
  5110. },
  5111. {
  5112. name: "Macropuff",
  5113. height: math.unit(1500, "feet"),
  5114. default: true
  5115. },
  5116. {
  5117. name: "Megapuff",
  5118. height: math.unit(500, "miles")
  5119. },
  5120. {
  5121. name: "Gigapuff",
  5122. height: math.unit(250000, "miles")
  5123. },
  5124. {
  5125. name: "Omegapuff",
  5126. height: math.unit(1000, "lightyears")
  5127. },
  5128. ]
  5129. ))
  5130. characterMakers.push(() => makeCharacter(
  5131. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5132. {
  5133. stomping: {
  5134. height: math.unit(6, "feet"),
  5135. weight: math.unit(170, "lbs"),
  5136. name: "Stomping",
  5137. image: {
  5138. source: "./media/characters/vivian/stomping.svg"
  5139. }
  5140. },
  5141. sitting: {
  5142. height: math.unit(6 / 1.75, "feet"),
  5143. weight: math.unit(170, "lbs"),
  5144. name: "Sitting",
  5145. image: {
  5146. source: "./media/characters/vivian/sitting.svg",
  5147. bottom: 1 / 6.4,
  5148. extra: 1,
  5149. }
  5150. },
  5151. },
  5152. [
  5153. {
  5154. name: "Normal",
  5155. height: math.unit(7, "feet"),
  5156. default: true
  5157. },
  5158. {
  5159. name: "Macro",
  5160. height: math.unit(10, "stories")
  5161. },
  5162. {
  5163. name: "Macro+",
  5164. height: math.unit(30, "stories")
  5165. },
  5166. {
  5167. name: "Megamacro",
  5168. height: math.unit(10, "miles")
  5169. },
  5170. {
  5171. name: "Megamacro+",
  5172. height: math.unit(2750000, "meters")
  5173. },
  5174. ]
  5175. ))
  5176. characterMakers.push(() => makeCharacter(
  5177. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5178. {
  5179. front: {
  5180. height: math.unit(6, "feet"),
  5181. weight: math.unit(160, "lbs"),
  5182. name: "Front",
  5183. image: {
  5184. source: "./media/characters/prince/front.svg",
  5185. extra: 3400 / 3000
  5186. }
  5187. },
  5188. jumping: {
  5189. height: math.unit(6, "feet"),
  5190. weight: math.unit(160, "lbs"),
  5191. name: "Jumping",
  5192. image: {
  5193. source: "./media/characters/prince/jump.svg",
  5194. extra: 2555 / 2134
  5195. }
  5196. },
  5197. },
  5198. [
  5199. {
  5200. name: "Normal",
  5201. height: math.unit(7.75, "feet"),
  5202. default: true
  5203. },
  5204. {
  5205. name: "Not cute",
  5206. height: math.unit(17, "feet")
  5207. },
  5208. {
  5209. name: "I said NOT",
  5210. height: math.unit(91, "feet")
  5211. },
  5212. {
  5213. name: "Please stop",
  5214. height: math.unit(560, "feet")
  5215. },
  5216. {
  5217. name: "What have you done",
  5218. height: math.unit(2200, "feet")
  5219. },
  5220. {
  5221. name: "Deer God",
  5222. height: math.unit(3.6, "miles")
  5223. },
  5224. ]
  5225. ))
  5226. characterMakers.push(() => makeCharacter(
  5227. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5228. {
  5229. standing: {
  5230. height: math.unit(6, "feet"),
  5231. weight: math.unit(300, "lbs"),
  5232. name: "Standing",
  5233. image: {
  5234. source: "./media/characters/psymon/standing.svg",
  5235. extra: 1888 / 1810,
  5236. bottom: 0.05
  5237. }
  5238. },
  5239. slithering: {
  5240. height: math.unit(6, "feet"),
  5241. weight: math.unit(300, "lbs"),
  5242. name: "Slithering",
  5243. image: {
  5244. source: "./media/characters/psymon/slithering.svg",
  5245. extra: 1330 / 1224
  5246. }
  5247. },
  5248. slitheringAlt: {
  5249. height: math.unit(6, "feet"),
  5250. weight: math.unit(300, "lbs"),
  5251. name: "Slithering (Alt)",
  5252. image: {
  5253. source: "./media/characters/psymon/slithering-alt.svg",
  5254. extra: 1330 / 1224
  5255. }
  5256. },
  5257. },
  5258. [
  5259. {
  5260. name: "Normal",
  5261. height: math.unit(11.25, "feet"),
  5262. default: true
  5263. },
  5264. {
  5265. name: "Large",
  5266. height: math.unit(27, "feet")
  5267. },
  5268. {
  5269. name: "Giant",
  5270. height: math.unit(87, "feet")
  5271. },
  5272. {
  5273. name: "Macro",
  5274. height: math.unit(365, "feet")
  5275. },
  5276. {
  5277. name: "Megamacro",
  5278. height: math.unit(3, "miles")
  5279. },
  5280. {
  5281. name: "World Serpent",
  5282. height: math.unit(8000, "miles")
  5283. },
  5284. ]
  5285. ))
  5286. characterMakers.push(() => makeCharacter(
  5287. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5288. {
  5289. front: {
  5290. height: math.unit(6, "feet"),
  5291. weight: math.unit(180, "lbs"),
  5292. name: "Front",
  5293. image: {
  5294. source: "./media/characters/daimos/front.svg",
  5295. extra: 4160 / 3897,
  5296. bottom: 0.021
  5297. }
  5298. }
  5299. },
  5300. [
  5301. {
  5302. name: "Normal",
  5303. height: math.unit(8, "feet"),
  5304. default: true
  5305. },
  5306. {
  5307. name: "Big Dog",
  5308. height: math.unit(22, "feet")
  5309. },
  5310. {
  5311. name: "Macro",
  5312. height: math.unit(127, "feet")
  5313. },
  5314. {
  5315. name: "Megamacro",
  5316. height: math.unit(3600, "feet")
  5317. },
  5318. ]
  5319. ))
  5320. characterMakers.push(() => makeCharacter(
  5321. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5322. {
  5323. side: {
  5324. height: math.unit(6, "feet"),
  5325. weight: math.unit(180, "lbs"),
  5326. name: "Side",
  5327. image: {
  5328. source: "./media/characters/blake/side.svg",
  5329. extra: 1212 / 1120,
  5330. bottom: 0.05
  5331. }
  5332. },
  5333. crouched: {
  5334. height: math.unit(6 * 0.57, "feet"),
  5335. weight: math.unit(180, "lbs"),
  5336. name: "Crouched",
  5337. image: {
  5338. source: "./media/characters/blake/crouched.svg",
  5339. extra: 840 / 587,
  5340. bottom: 0.04
  5341. }
  5342. },
  5343. bent: {
  5344. height: math.unit(6 * 0.75, "feet"),
  5345. weight: math.unit(180, "lbs"),
  5346. name: "Bent",
  5347. image: {
  5348. source: "./media/characters/blake/bent.svg",
  5349. extra: 592 / 544,
  5350. bottom: 0.035
  5351. }
  5352. },
  5353. },
  5354. [
  5355. {
  5356. name: "Normal",
  5357. height: math.unit(8 + 1 / 6, "feet"),
  5358. default: true
  5359. },
  5360. {
  5361. name: "Big Backside",
  5362. height: math.unit(37, "feet")
  5363. },
  5364. {
  5365. name: "Subway Shredder",
  5366. height: math.unit(72, "feet")
  5367. },
  5368. {
  5369. name: "City Carver",
  5370. height: math.unit(1675, "feet")
  5371. },
  5372. {
  5373. name: "Tectonic Tweaker",
  5374. height: math.unit(2300, "miles")
  5375. },
  5376. ]
  5377. ))
  5378. characterMakers.push(() => makeCharacter(
  5379. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5380. {
  5381. front: {
  5382. height: math.unit(6, "feet"),
  5383. weight: math.unit(180, "lbs"),
  5384. name: "Front",
  5385. image: {
  5386. source: "./media/characters/guisetto/front.svg",
  5387. extra: 856 / 817,
  5388. bottom: 0.06
  5389. }
  5390. },
  5391. airborne: {
  5392. height: math.unit(6, "feet"),
  5393. weight: math.unit(180, "lbs"),
  5394. name: "Airborne",
  5395. image: {
  5396. source: "./media/characters/guisetto/airborne.svg",
  5397. extra: 584 / 525
  5398. }
  5399. },
  5400. },
  5401. [
  5402. {
  5403. name: "Normal",
  5404. height: math.unit(10 + 11 / 12, "feet"),
  5405. default: true
  5406. },
  5407. {
  5408. name: "Large",
  5409. height: math.unit(35, "feet")
  5410. },
  5411. {
  5412. name: "Macro",
  5413. height: math.unit(475, "feet")
  5414. },
  5415. ]
  5416. ))
  5417. characterMakers.push(() => makeCharacter(
  5418. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5419. {
  5420. front: {
  5421. height: math.unit(6, "feet"),
  5422. weight: math.unit(180, "lbs"),
  5423. name: "Front",
  5424. image: {
  5425. source: "./media/characters/luxor/front.svg",
  5426. extra: 2940 / 2152
  5427. }
  5428. },
  5429. back: {
  5430. height: math.unit(6, "feet"),
  5431. weight: math.unit(180, "lbs"),
  5432. name: "Back",
  5433. image: {
  5434. source: "./media/characters/luxor/back.svg",
  5435. extra: 1083 / 960
  5436. }
  5437. },
  5438. },
  5439. [
  5440. {
  5441. name: "Normal",
  5442. height: math.unit(5 + 5 / 6, "feet"),
  5443. default: true
  5444. },
  5445. {
  5446. name: "Lamp",
  5447. height: math.unit(50, "feet")
  5448. },
  5449. {
  5450. name: "Lämp",
  5451. height: math.unit(300, "feet")
  5452. },
  5453. {
  5454. name: "The sun is a lamp",
  5455. height: math.unit(250000, "miles")
  5456. },
  5457. ]
  5458. ))
  5459. characterMakers.push(() => makeCharacter(
  5460. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5461. {
  5462. front: {
  5463. height: math.unit(6, "feet"),
  5464. weight: math.unit(50, "lbs"),
  5465. name: "Front",
  5466. image: {
  5467. source: "./media/characters/huoyan/front.svg"
  5468. }
  5469. },
  5470. side: {
  5471. height: math.unit(6, "feet"),
  5472. weight: math.unit(180, "lbs"),
  5473. name: "Side",
  5474. image: {
  5475. source: "./media/characters/huoyan/side.svg"
  5476. }
  5477. },
  5478. },
  5479. [
  5480. {
  5481. name: "Chef",
  5482. height: math.unit(9, "feet")
  5483. },
  5484. {
  5485. name: "Normal",
  5486. height: math.unit(65, "feet"),
  5487. default: true
  5488. },
  5489. {
  5490. name: "Macro",
  5491. height: math.unit(780, "feet")
  5492. },
  5493. {
  5494. name: "Flaming Mountain",
  5495. height: math.unit(4.8, "miles")
  5496. },
  5497. {
  5498. name: "Celestial",
  5499. height: math.unit(765000, "miles")
  5500. },
  5501. ]
  5502. ))
  5503. characterMakers.push(() => makeCharacter(
  5504. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5505. {
  5506. front: {
  5507. height: math.unit(5 + 3 / 4, "feet"),
  5508. weight: math.unit(120, "lbs"),
  5509. name: "Front",
  5510. image: {
  5511. source: "./media/characters/tails/front.svg"
  5512. }
  5513. }
  5514. },
  5515. [
  5516. {
  5517. name: "Normal",
  5518. height: math.unit(5 + 3 / 4, "feet"),
  5519. default: true
  5520. }
  5521. ]
  5522. ))
  5523. characterMakers.push(() => makeCharacter(
  5524. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5525. {
  5526. front: {
  5527. height: math.unit(4, "feet"),
  5528. weight: math.unit(50, "lbs"),
  5529. name: "Front",
  5530. image: {
  5531. source: "./media/characters/rainy/front.svg"
  5532. }
  5533. }
  5534. },
  5535. [
  5536. {
  5537. name: "Macro",
  5538. height: math.unit(800, "feet"),
  5539. default: true
  5540. }
  5541. ]
  5542. ))
  5543. characterMakers.push(() => makeCharacter(
  5544. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5545. {
  5546. front: {
  5547. height: math.unit(6, "feet"),
  5548. weight: math.unit(150, "lbs"),
  5549. name: "Front",
  5550. image: {
  5551. source: "./media/characters/rainier/front.svg"
  5552. }
  5553. }
  5554. },
  5555. [
  5556. {
  5557. name: "Micro",
  5558. height: math.unit(2, "mm"),
  5559. default: true
  5560. }
  5561. ]
  5562. ))
  5563. characterMakers.push(() => makeCharacter(
  5564. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5565. {
  5566. front: {
  5567. height: math.unit(8 + 4/12, "feet"),
  5568. name: "Front",
  5569. image: {
  5570. source: "./media/characters/andy-renard/front.svg",
  5571. extra: 1839/1726,
  5572. bottom: 134/1973
  5573. }
  5574. },
  5575. back: {
  5576. height: math.unit(8 + 4/12, "feet"),
  5577. name: "Back",
  5578. image: {
  5579. source: "./media/characters/andy-renard/back.svg",
  5580. extra: 1838/1710,
  5581. bottom: 105/1943
  5582. }
  5583. },
  5584. },
  5585. [
  5586. {
  5587. name: "Tall",
  5588. height: math.unit(8 + 4/12, "feet")
  5589. },
  5590. {
  5591. name: "Mini Macro",
  5592. height: math.unit(15, "feet"),
  5593. default: true
  5594. },
  5595. {
  5596. name: "Macro",
  5597. height: math.unit(100, "feet")
  5598. },
  5599. {
  5600. name: "Mega Macro",
  5601. height: math.unit(1000, "feet")
  5602. },
  5603. {
  5604. name: "Giga Macro",
  5605. height: math.unit(10, "miles")
  5606. },
  5607. {
  5608. name: "God Macro",
  5609. height: math.unit(1, "multiverse")
  5610. },
  5611. ]
  5612. ))
  5613. characterMakers.push(() => makeCharacter(
  5614. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5615. {
  5616. front: {
  5617. height: math.unit(6, "feet"),
  5618. weight: math.unit(210, "lbs"),
  5619. name: "Front",
  5620. image: {
  5621. source: "./media/characters/cimmaron/front-sfw.svg",
  5622. extra: 701 / 676,
  5623. bottom: 0.046
  5624. }
  5625. },
  5626. back: {
  5627. height: math.unit(6, "feet"),
  5628. weight: math.unit(210, "lbs"),
  5629. name: "Back",
  5630. image: {
  5631. source: "./media/characters/cimmaron/back-sfw.svg",
  5632. extra: 701 / 676,
  5633. bottom: 0.046
  5634. }
  5635. },
  5636. frontNsfw: {
  5637. height: math.unit(6, "feet"),
  5638. weight: math.unit(210, "lbs"),
  5639. name: "Front (NSFW)",
  5640. image: {
  5641. source: "./media/characters/cimmaron/front-nsfw.svg",
  5642. extra: 701 / 676,
  5643. bottom: 0.046
  5644. }
  5645. },
  5646. backNsfw: {
  5647. height: math.unit(6, "feet"),
  5648. weight: math.unit(210, "lbs"),
  5649. name: "Back (NSFW)",
  5650. image: {
  5651. source: "./media/characters/cimmaron/back-nsfw.svg",
  5652. extra: 701 / 676,
  5653. bottom: 0.046
  5654. }
  5655. },
  5656. dick: {
  5657. height: math.unit(1.714, "feet"),
  5658. name: "Dick",
  5659. image: {
  5660. source: "./media/characters/cimmaron/dick.svg"
  5661. }
  5662. },
  5663. },
  5664. [
  5665. {
  5666. name: "Normal",
  5667. height: math.unit(6, "feet"),
  5668. default: true
  5669. },
  5670. {
  5671. name: "Macro Mayor",
  5672. height: math.unit(350, "meters")
  5673. },
  5674. ]
  5675. ))
  5676. characterMakers.push(() => makeCharacter(
  5677. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5678. {
  5679. front: {
  5680. height: math.unit(6, "feet"),
  5681. weight: math.unit(200, "lbs"),
  5682. name: "Front",
  5683. image: {
  5684. source: "./media/characters/akari/front.svg",
  5685. extra: 962 / 901,
  5686. bottom: 0.04
  5687. }
  5688. }
  5689. },
  5690. [
  5691. {
  5692. name: "Micro",
  5693. height: math.unit(5, "inches"),
  5694. default: true
  5695. },
  5696. {
  5697. name: "Normal",
  5698. height: math.unit(7, "feet")
  5699. },
  5700. ]
  5701. ))
  5702. characterMakers.push(() => makeCharacter(
  5703. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5704. {
  5705. front: {
  5706. height: math.unit(6, "feet"),
  5707. weight: math.unit(140, "lbs"),
  5708. name: "Front",
  5709. image: {
  5710. source: "./media/characters/cynosura/front.svg",
  5711. extra: 896 / 847
  5712. }
  5713. },
  5714. back: {
  5715. height: math.unit(6, "feet"),
  5716. weight: math.unit(140, "lbs"),
  5717. name: "Back",
  5718. image: {
  5719. source: "./media/characters/cynosura/back.svg",
  5720. extra: 1365 / 1250
  5721. }
  5722. },
  5723. },
  5724. [
  5725. {
  5726. name: "Micro",
  5727. height: math.unit(4, "inches")
  5728. },
  5729. {
  5730. name: "Normal",
  5731. height: math.unit(5.75, "feet"),
  5732. default: true
  5733. },
  5734. {
  5735. name: "Tall",
  5736. height: math.unit(10, "feet")
  5737. },
  5738. {
  5739. name: "Big",
  5740. height: math.unit(20, "feet")
  5741. },
  5742. {
  5743. name: "Macro",
  5744. height: math.unit(50, "feet")
  5745. },
  5746. ]
  5747. ))
  5748. characterMakers.push(() => makeCharacter(
  5749. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5750. {
  5751. front: {
  5752. height: math.unit(13 + 2/12, "feet"),
  5753. weight: math.unit(800, "kg"),
  5754. name: "Front",
  5755. image: {
  5756. source: "./media/characters/gin/front.svg",
  5757. extra: 1312/1191,
  5758. bottom: 45/1357
  5759. }
  5760. },
  5761. mouth: {
  5762. height: math.unit(2.39 * 1.8, "feet"),
  5763. name: "Mouth",
  5764. image: {
  5765. source: "./media/characters/gin/mouth.svg"
  5766. }
  5767. },
  5768. hand: {
  5769. height: math.unit(1.57 * 2.19, "feet"),
  5770. name: "Hand",
  5771. image: {
  5772. source: "./media/characters/gin/hand.svg"
  5773. }
  5774. },
  5775. foot: {
  5776. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5777. name: "Foot",
  5778. image: {
  5779. source: "./media/characters/gin/foot.svg"
  5780. }
  5781. },
  5782. sole: {
  5783. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5784. name: "Sole",
  5785. image: {
  5786. source: "./media/characters/gin/sole.svg"
  5787. }
  5788. },
  5789. },
  5790. [
  5791. {
  5792. name: "Very Small",
  5793. height: math.unit(13 + 2 / 12, "feet")
  5794. },
  5795. {
  5796. name: "Micro",
  5797. height: math.unit(600, "miles")
  5798. },
  5799. {
  5800. name: "Regular",
  5801. height: math.unit(20, "earths"),
  5802. default: true
  5803. },
  5804. {
  5805. name: "Macro",
  5806. height: math.unit(2.2, "solarradii")
  5807. },
  5808. {
  5809. name: "Teramacro",
  5810. height: math.unit(1.2, "galaxies")
  5811. },
  5812. {
  5813. name: "Omegamacro",
  5814. height: math.unit(200, "universes")
  5815. },
  5816. ]
  5817. ))
  5818. characterMakers.push(() => makeCharacter(
  5819. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5820. {
  5821. front: {
  5822. height: math.unit(6 + 1 / 6, "feet"),
  5823. weight: math.unit(178, "lbs"),
  5824. name: "Front",
  5825. image: {
  5826. source: "./media/characters/guy/front.svg"
  5827. }
  5828. }
  5829. },
  5830. [
  5831. {
  5832. name: "Normal",
  5833. height: math.unit(6 + 1 / 6, "feet"),
  5834. default: true
  5835. },
  5836. {
  5837. name: "Large",
  5838. height: math.unit(25 + 7 / 12, "feet")
  5839. },
  5840. {
  5841. name: "Macro",
  5842. height: math.unit(60 + 9 / 12, "feet")
  5843. },
  5844. {
  5845. name: "Macro+",
  5846. height: math.unit(246, "feet")
  5847. },
  5848. {
  5849. name: "Macro++",
  5850. height: math.unit(878, "feet")
  5851. }
  5852. ]
  5853. ))
  5854. characterMakers.push(() => makeCharacter(
  5855. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5856. {
  5857. front: {
  5858. height: math.unit(9, "feet"),
  5859. weight: math.unit(800, "lbs"),
  5860. name: "Front",
  5861. image: {
  5862. source: "./media/characters/tiberius/front.svg",
  5863. extra: 2295 / 2071
  5864. }
  5865. },
  5866. back: {
  5867. height: math.unit(9, "feet"),
  5868. weight: math.unit(800, "lbs"),
  5869. name: "Back",
  5870. image: {
  5871. source: "./media/characters/tiberius/back.svg",
  5872. extra: 2373 / 2160
  5873. }
  5874. },
  5875. },
  5876. [
  5877. {
  5878. name: "Normal",
  5879. height: math.unit(9, "feet"),
  5880. default: true
  5881. }
  5882. ]
  5883. ))
  5884. characterMakers.push(() => makeCharacter(
  5885. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5886. {
  5887. front: {
  5888. height: math.unit(6, "feet"),
  5889. weight: math.unit(600, "lbs"),
  5890. name: "Front",
  5891. image: {
  5892. source: "./media/characters/surgo/front.svg",
  5893. extra: 3591 / 2227
  5894. }
  5895. },
  5896. back: {
  5897. height: math.unit(6, "feet"),
  5898. weight: math.unit(600, "lbs"),
  5899. name: "Back",
  5900. image: {
  5901. source: "./media/characters/surgo/back.svg",
  5902. extra: 3557 / 2228
  5903. }
  5904. },
  5905. laying: {
  5906. height: math.unit(6 * 0.85, "feet"),
  5907. weight: math.unit(600, "lbs"),
  5908. name: "Laying",
  5909. image: {
  5910. source: "./media/characters/surgo/laying.svg"
  5911. }
  5912. },
  5913. },
  5914. [
  5915. {
  5916. name: "Normal",
  5917. height: math.unit(6, "feet"),
  5918. default: true
  5919. }
  5920. ]
  5921. ))
  5922. characterMakers.push(() => makeCharacter(
  5923. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5924. {
  5925. side: {
  5926. height: math.unit(6, "feet"),
  5927. weight: math.unit(150, "lbs"),
  5928. name: "Side",
  5929. image: {
  5930. source: "./media/characters/cibus/side.svg",
  5931. extra: 800 / 400
  5932. }
  5933. },
  5934. },
  5935. [
  5936. {
  5937. name: "Normal",
  5938. height: math.unit(6, "feet"),
  5939. default: true
  5940. }
  5941. ]
  5942. ))
  5943. characterMakers.push(() => makeCharacter(
  5944. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5945. {
  5946. front: {
  5947. height: math.unit(6, "feet"),
  5948. weight: math.unit(240, "lbs"),
  5949. name: "Front",
  5950. image: {
  5951. source: "./media/characters/nibbles/front.svg"
  5952. }
  5953. },
  5954. side: {
  5955. height: math.unit(6, "feet"),
  5956. weight: math.unit(240, "lbs"),
  5957. name: "Side",
  5958. image: {
  5959. source: "./media/characters/nibbles/side.svg"
  5960. }
  5961. },
  5962. },
  5963. [
  5964. {
  5965. name: "Normal",
  5966. height: math.unit(9, "feet"),
  5967. default: true
  5968. }
  5969. ]
  5970. ))
  5971. characterMakers.push(() => makeCharacter(
  5972. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5973. {
  5974. side: {
  5975. height: math.unit(5 + 1 / 6, "feet"),
  5976. weight: math.unit(130, "lbs"),
  5977. name: "Side",
  5978. image: {
  5979. source: "./media/characters/rikky/side.svg",
  5980. extra: 851 / 801
  5981. }
  5982. },
  5983. },
  5984. [
  5985. {
  5986. name: "Normal",
  5987. height: math.unit(5 + 1 / 6, "feet")
  5988. },
  5989. {
  5990. name: "Macro",
  5991. height: math.unit(152, "feet"),
  5992. default: true
  5993. },
  5994. {
  5995. name: "Megamacro",
  5996. height: math.unit(7, "miles")
  5997. }
  5998. ]
  5999. ))
  6000. characterMakers.push(() => makeCharacter(
  6001. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6002. {
  6003. side: {
  6004. height: math.unit(370, "cm"),
  6005. weight: math.unit(350, "lbs"),
  6006. name: "Side",
  6007. image: {
  6008. source: "./media/characters/malfressa/side.svg"
  6009. }
  6010. },
  6011. walking: {
  6012. height: math.unit(370, "cm"),
  6013. weight: math.unit(350, "lbs"),
  6014. name: "Walking",
  6015. image: {
  6016. source: "./media/characters/malfressa/walking.svg"
  6017. }
  6018. },
  6019. feral: {
  6020. height: math.unit(2500, "cm"),
  6021. weight: math.unit(100000, "lbs"),
  6022. name: "Feral",
  6023. image: {
  6024. source: "./media/characters/malfressa/feral.svg",
  6025. extra: 2108 / 837,
  6026. bottom: 0.02
  6027. }
  6028. },
  6029. },
  6030. [
  6031. {
  6032. name: "Normal",
  6033. height: math.unit(370, "cm")
  6034. },
  6035. {
  6036. name: "Macro",
  6037. height: math.unit(300, "meters"),
  6038. default: true
  6039. }
  6040. ]
  6041. ))
  6042. characterMakers.push(() => makeCharacter(
  6043. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6044. {
  6045. front: {
  6046. height: math.unit(6, "feet"),
  6047. weight: math.unit(60, "kg"),
  6048. name: "Front",
  6049. image: {
  6050. source: "./media/characters/jaro/front.svg"
  6051. }
  6052. },
  6053. back: {
  6054. height: math.unit(6, "feet"),
  6055. weight: math.unit(60, "kg"),
  6056. name: "Back",
  6057. image: {
  6058. source: "./media/characters/jaro/back.svg"
  6059. }
  6060. },
  6061. },
  6062. [
  6063. {
  6064. name: "Micro",
  6065. height: math.unit(7, "inches")
  6066. },
  6067. {
  6068. name: "Normal",
  6069. height: math.unit(5.5, "feet"),
  6070. default: true
  6071. },
  6072. {
  6073. name: "Minimacro",
  6074. height: math.unit(20, "feet")
  6075. },
  6076. {
  6077. name: "Macro",
  6078. height: math.unit(200, "meters")
  6079. }
  6080. ]
  6081. ))
  6082. characterMakers.push(() => makeCharacter(
  6083. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6084. {
  6085. front: {
  6086. height: math.unit(6, "feet"),
  6087. weight: math.unit(195, "lb"),
  6088. name: "Front",
  6089. image: {
  6090. source: "./media/characters/rogue/front.svg"
  6091. }
  6092. },
  6093. },
  6094. [
  6095. {
  6096. name: "Macro",
  6097. height: math.unit(90, "feet"),
  6098. default: true
  6099. },
  6100. ]
  6101. ))
  6102. characterMakers.push(() => makeCharacter(
  6103. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6104. {
  6105. front: {
  6106. height: math.unit(5 + 8 / 12, "feet"),
  6107. weight: math.unit(140, "lb"),
  6108. name: "Front",
  6109. image: {
  6110. source: "./media/characters/piper/front.svg",
  6111. extra: 3948/3655,
  6112. bottom: 0/3948
  6113. }
  6114. },
  6115. },
  6116. [
  6117. {
  6118. name: "Micro",
  6119. height: math.unit(2, "inches")
  6120. },
  6121. {
  6122. name: "Normal",
  6123. height: math.unit(5 + 8 / 12, "feet")
  6124. },
  6125. {
  6126. name: "Macro",
  6127. height: math.unit(250, "feet"),
  6128. default: true
  6129. },
  6130. {
  6131. name: "Megamacro",
  6132. height: math.unit(7, "miles")
  6133. },
  6134. ]
  6135. ))
  6136. characterMakers.push(() => makeCharacter(
  6137. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6138. {
  6139. front: {
  6140. height: math.unit(6, "feet"),
  6141. weight: math.unit(220, "lb"),
  6142. name: "Front",
  6143. image: {
  6144. source: "./media/characters/gemini/front.svg"
  6145. }
  6146. },
  6147. back: {
  6148. height: math.unit(6, "feet"),
  6149. weight: math.unit(220, "lb"),
  6150. name: "Back",
  6151. image: {
  6152. source: "./media/characters/gemini/back.svg"
  6153. }
  6154. },
  6155. kneeling: {
  6156. height: math.unit(6 / 1.5, "feet"),
  6157. weight: math.unit(220, "lb"),
  6158. name: "Kneeling",
  6159. image: {
  6160. source: "./media/characters/gemini/kneeling.svg",
  6161. bottom: 0.02
  6162. }
  6163. },
  6164. },
  6165. [
  6166. {
  6167. name: "Macro",
  6168. height: math.unit(300, "meters"),
  6169. default: true
  6170. },
  6171. {
  6172. name: "Megamacro",
  6173. height: math.unit(6900, "meters")
  6174. },
  6175. ]
  6176. ))
  6177. characterMakers.push(() => makeCharacter(
  6178. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6179. {
  6180. anthro: {
  6181. height: math.unit(2.35, "meters"),
  6182. weight: math.unit(73, "kg"),
  6183. name: "Anthro",
  6184. image: {
  6185. source: "./media/characters/alicia/anthro.svg",
  6186. extra: 2571 / 2385,
  6187. bottom: 75 / 2648
  6188. }
  6189. },
  6190. paw: {
  6191. height: math.unit(1.32, "feet"),
  6192. name: "Paw",
  6193. image: {
  6194. source: "./media/characters/alicia/paw.svg"
  6195. }
  6196. },
  6197. feral: {
  6198. height: math.unit(1.69, "meters"),
  6199. weight: math.unit(73, "kg"),
  6200. name: "Feral",
  6201. image: {
  6202. source: "./media/characters/alicia/feral.svg",
  6203. extra: 2123 / 1715,
  6204. bottom: 222 / 2349
  6205. }
  6206. },
  6207. },
  6208. [
  6209. {
  6210. name: "Normal",
  6211. height: math.unit(2.35, "meters")
  6212. },
  6213. {
  6214. name: "Macro",
  6215. height: math.unit(60, "meters"),
  6216. default: true
  6217. },
  6218. {
  6219. name: "Megamacro",
  6220. height: math.unit(10000, "kilometers")
  6221. },
  6222. ]
  6223. ))
  6224. characterMakers.push(() => makeCharacter(
  6225. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6226. {
  6227. front: {
  6228. height: math.unit(7, "feet"),
  6229. weight: math.unit(250, "lbs"),
  6230. name: "Front",
  6231. image: {
  6232. source: "./media/characters/archy/front.svg"
  6233. }
  6234. }
  6235. },
  6236. [
  6237. {
  6238. name: "Micro",
  6239. height: math.unit(1, "inch")
  6240. },
  6241. {
  6242. name: "Shorty",
  6243. height: math.unit(5, "feet")
  6244. },
  6245. {
  6246. name: "Normal",
  6247. height: math.unit(7, "feet")
  6248. },
  6249. {
  6250. name: "Macro",
  6251. height: math.unit(600, "meters"),
  6252. default: true
  6253. },
  6254. {
  6255. name: "Megamacro",
  6256. height: math.unit(1, "mile")
  6257. },
  6258. ]
  6259. ))
  6260. characterMakers.push(() => makeCharacter(
  6261. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6262. {
  6263. front: {
  6264. height: math.unit(1.65, "meters"),
  6265. weight: math.unit(74, "kg"),
  6266. name: "Front",
  6267. image: {
  6268. source: "./media/characters/berri/front.svg",
  6269. extra: 857 / 837,
  6270. bottom: 18 / 877
  6271. }
  6272. },
  6273. bum: {
  6274. height: math.unit(1.46, "feet"),
  6275. name: "Bum",
  6276. image: {
  6277. source: "./media/characters/berri/bum.svg"
  6278. }
  6279. },
  6280. mouth: {
  6281. height: math.unit(0.44, "feet"),
  6282. name: "Mouth",
  6283. image: {
  6284. source: "./media/characters/berri/mouth.svg"
  6285. }
  6286. },
  6287. paw: {
  6288. height: math.unit(0.826, "feet"),
  6289. name: "Paw",
  6290. image: {
  6291. source: "./media/characters/berri/paw.svg"
  6292. }
  6293. },
  6294. },
  6295. [
  6296. {
  6297. name: "Normal",
  6298. height: math.unit(1.65, "meters")
  6299. },
  6300. {
  6301. name: "Macro",
  6302. height: math.unit(60, "m"),
  6303. default: true
  6304. },
  6305. {
  6306. name: "Megamacro",
  6307. height: math.unit(9.213, "km")
  6308. },
  6309. {
  6310. name: "Planet Eater",
  6311. height: math.unit(489, "megameters")
  6312. },
  6313. {
  6314. name: "Teramacro",
  6315. height: math.unit(2471635000000, "meters")
  6316. },
  6317. {
  6318. name: "Examacro",
  6319. height: math.unit(8.0624e+26, "meters")
  6320. }
  6321. ]
  6322. ))
  6323. characterMakers.push(() => makeCharacter(
  6324. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6325. {
  6326. front: {
  6327. height: math.unit(1.72, "meters"),
  6328. weight: math.unit(68, "kg"),
  6329. name: "Front",
  6330. image: {
  6331. source: "./media/characters/lexi/front.svg"
  6332. }
  6333. }
  6334. },
  6335. [
  6336. {
  6337. name: "Very Smol",
  6338. height: math.unit(10, "mm")
  6339. },
  6340. {
  6341. name: "Micro",
  6342. height: math.unit(6.8, "cm"),
  6343. default: true
  6344. },
  6345. {
  6346. name: "Normal",
  6347. height: math.unit(1.72, "m")
  6348. }
  6349. ]
  6350. ))
  6351. characterMakers.push(() => makeCharacter(
  6352. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6353. {
  6354. front: {
  6355. height: math.unit(1.69, "meters"),
  6356. weight: math.unit(68, "kg"),
  6357. name: "Front",
  6358. image: {
  6359. source: "./media/characters/martin/front.svg",
  6360. extra: 596 / 581
  6361. }
  6362. }
  6363. },
  6364. [
  6365. {
  6366. name: "Micro",
  6367. height: math.unit(6.85, "cm"),
  6368. default: true
  6369. },
  6370. {
  6371. name: "Normal",
  6372. height: math.unit(1.69, "m")
  6373. }
  6374. ]
  6375. ))
  6376. characterMakers.push(() => makeCharacter(
  6377. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6378. {
  6379. front: {
  6380. height: math.unit(1.69, "meters"),
  6381. weight: math.unit(68, "kg"),
  6382. name: "Front",
  6383. image: {
  6384. source: "./media/characters/juno/front.svg"
  6385. }
  6386. }
  6387. },
  6388. [
  6389. {
  6390. name: "Micro",
  6391. height: math.unit(7, "cm")
  6392. },
  6393. {
  6394. name: "Normal",
  6395. height: math.unit(1.89, "m")
  6396. },
  6397. {
  6398. name: "Macro",
  6399. height: math.unit(353, "meters"),
  6400. default: true
  6401. }
  6402. ]
  6403. ))
  6404. characterMakers.push(() => makeCharacter(
  6405. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6406. {
  6407. front: {
  6408. height: math.unit(1.93, "meters"),
  6409. weight: math.unit(83, "kg"),
  6410. name: "Front",
  6411. image: {
  6412. source: "./media/characters/samantha/front.svg"
  6413. }
  6414. },
  6415. frontClothed: {
  6416. height: math.unit(1.93, "meters"),
  6417. weight: math.unit(83, "kg"),
  6418. name: "Front (Clothed)",
  6419. image: {
  6420. source: "./media/characters/samantha/front-clothed.svg"
  6421. }
  6422. },
  6423. back: {
  6424. height: math.unit(1.93, "meters"),
  6425. weight: math.unit(83, "kg"),
  6426. name: "Back",
  6427. image: {
  6428. source: "./media/characters/samantha/back.svg"
  6429. }
  6430. },
  6431. },
  6432. [
  6433. {
  6434. name: "Normal",
  6435. height: math.unit(1.93, "m")
  6436. },
  6437. {
  6438. name: "Macro",
  6439. height: math.unit(74, "meters"),
  6440. default: true
  6441. },
  6442. {
  6443. name: "Macro+",
  6444. height: math.unit(223, "meters"),
  6445. },
  6446. {
  6447. name: "Megamacro",
  6448. height: math.unit(8381, "meters"),
  6449. },
  6450. {
  6451. name: "Megamacro+",
  6452. height: math.unit(12000, "kilometers")
  6453. },
  6454. ]
  6455. ))
  6456. characterMakers.push(() => makeCharacter(
  6457. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6458. {
  6459. front: {
  6460. height: math.unit(1.92, "meters"),
  6461. weight: math.unit(80, "kg"),
  6462. name: "Front",
  6463. image: {
  6464. source: "./media/characters/dr-clay/front.svg"
  6465. }
  6466. },
  6467. frontClothed: {
  6468. height: math.unit(1.92, "meters"),
  6469. weight: math.unit(80, "kg"),
  6470. name: "Front (Clothed)",
  6471. image: {
  6472. source: "./media/characters/dr-clay/front-clothed.svg"
  6473. }
  6474. }
  6475. },
  6476. [
  6477. {
  6478. name: "Normal",
  6479. height: math.unit(1.92, "m")
  6480. },
  6481. {
  6482. name: "Macro",
  6483. height: math.unit(214, "meters"),
  6484. default: true
  6485. },
  6486. {
  6487. name: "Macro+",
  6488. height: math.unit(12.237, "meters"),
  6489. },
  6490. {
  6491. name: "Megamacro",
  6492. height: math.unit(557, "megameters"),
  6493. },
  6494. {
  6495. name: "Unimaginable",
  6496. height: math.unit(120e9, "lightyears")
  6497. },
  6498. ]
  6499. ))
  6500. characterMakers.push(() => makeCharacter(
  6501. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6502. {
  6503. front: {
  6504. height: math.unit(2, "meters"),
  6505. weight: math.unit(80, "kg"),
  6506. name: "Front",
  6507. image: {
  6508. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6509. }
  6510. }
  6511. },
  6512. [
  6513. {
  6514. name: "Teramacro",
  6515. height: math.unit(500000, "lightyears"),
  6516. default: true
  6517. },
  6518. ]
  6519. ))
  6520. characterMakers.push(() => makeCharacter(
  6521. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6522. {
  6523. crux: {
  6524. height: math.unit(2, "meters"),
  6525. weight: math.unit(150, "kg"),
  6526. name: "Crux",
  6527. image: {
  6528. source: "./media/characters/vemus/crux.svg",
  6529. extra: 1074/936,
  6530. bottom: 23/1097
  6531. }
  6532. },
  6533. skunkTanuki: {
  6534. height: math.unit(2, "meters"),
  6535. weight: math.unit(150, "kg"),
  6536. name: "Skunk-Tanuki",
  6537. image: {
  6538. source: "./media/characters/vemus/skunk-tanuki.svg",
  6539. extra: 926/893,
  6540. bottom: 20/946
  6541. }
  6542. },
  6543. },
  6544. [
  6545. {
  6546. name: "Normal",
  6547. height: math.unit(3.75, "meters"),
  6548. default: true
  6549. },
  6550. {
  6551. name: "Big",
  6552. height: math.unit(8, "meters")
  6553. },
  6554. {
  6555. name: "Macro",
  6556. height: math.unit(100, "meters")
  6557. },
  6558. {
  6559. name: "Macro+",
  6560. height: math.unit(1500, "meters")
  6561. },
  6562. {
  6563. name: "Stellar",
  6564. height: math.unit(14e8, "meters")
  6565. },
  6566. ]
  6567. ))
  6568. characterMakers.push(() => makeCharacter(
  6569. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6570. {
  6571. front: {
  6572. height: math.unit(2, "meters"),
  6573. weight: math.unit(70, "kg"),
  6574. name: "Front",
  6575. image: {
  6576. source: "./media/characters/beherit/front.svg",
  6577. extra: 1408 / 1242
  6578. }
  6579. }
  6580. },
  6581. [
  6582. {
  6583. name: "Normal",
  6584. height: math.unit(6, "feet")
  6585. },
  6586. {
  6587. name: "Lorg",
  6588. height: math.unit(25, "feet"),
  6589. default: true
  6590. },
  6591. {
  6592. name: "Lorger",
  6593. height: math.unit(75, "feet")
  6594. },
  6595. {
  6596. name: "Macro",
  6597. height: math.unit(200, "meters")
  6598. },
  6599. ]
  6600. ))
  6601. characterMakers.push(() => makeCharacter(
  6602. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6603. {
  6604. front: {
  6605. height: math.unit(2, "meters"),
  6606. weight: math.unit(150, "kg"),
  6607. name: "Front",
  6608. image: {
  6609. source: "./media/characters/everett/front.svg",
  6610. extra: 2038 / 1737,
  6611. bottom: 0.03
  6612. }
  6613. },
  6614. paw: {
  6615. height: math.unit(2 / 3.6, "meters"),
  6616. name: "Paw",
  6617. image: {
  6618. source: "./media/characters/everett/paw.svg"
  6619. }
  6620. },
  6621. },
  6622. [
  6623. {
  6624. name: "Normal",
  6625. height: math.unit(15, "feet"),
  6626. default: true
  6627. },
  6628. {
  6629. name: "Lorg",
  6630. height: math.unit(70, "feet"),
  6631. default: true
  6632. },
  6633. {
  6634. name: "Lorger",
  6635. height: math.unit(250, "feet")
  6636. },
  6637. {
  6638. name: "Macro",
  6639. height: math.unit(500, "meters")
  6640. },
  6641. ]
  6642. ))
  6643. characterMakers.push(() => makeCharacter(
  6644. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6645. {
  6646. front: {
  6647. height: math.unit(2, "meters"),
  6648. weight: math.unit(86, "kg"),
  6649. name: "Front",
  6650. image: {
  6651. source: "./media/characters/rose/front.svg",
  6652. extra: 1785/1636,
  6653. bottom: 30/1815
  6654. }
  6655. },
  6656. frontSporty: {
  6657. height: math.unit(2, "meters"),
  6658. weight: math.unit(86, "kg"),
  6659. name: "Front (Sporty)",
  6660. image: {
  6661. source: "./media/characters/rose/front-sporty.svg",
  6662. extra: 350/335,
  6663. bottom: 10/360
  6664. }
  6665. },
  6666. frontAlt: {
  6667. height: math.unit(1.6, "meters"),
  6668. weight: math.unit(86, "kg"),
  6669. name: "Front (Alt)",
  6670. image: {
  6671. source: "./media/characters/rose/front-alt.svg",
  6672. extra: 299/283,
  6673. bottom: 3/302
  6674. }
  6675. },
  6676. plush: {
  6677. height: math.unit(2, "meters"),
  6678. weight: math.unit(86/3, "kg"),
  6679. name: "Plush",
  6680. image: {
  6681. source: "./media/characters/rose/plush.svg",
  6682. extra: 361/337,
  6683. bottom: 11/372
  6684. }
  6685. },
  6686. },
  6687. [
  6688. {
  6689. name: "True Micro",
  6690. height: math.unit(9, "cm")
  6691. },
  6692. {
  6693. name: "Micro",
  6694. height: math.unit(16, "cm")
  6695. },
  6696. {
  6697. name: "Normal",
  6698. height: math.unit(1.85, "meters"),
  6699. default: true
  6700. },
  6701. {
  6702. name: "Mini-Macro",
  6703. height: math.unit(5, "meters")
  6704. },
  6705. {
  6706. name: "Macro",
  6707. height: math.unit(15, "meters")
  6708. },
  6709. {
  6710. name: "True Macro",
  6711. height: math.unit(40, "meters")
  6712. },
  6713. {
  6714. name: "City Scale",
  6715. height: math.unit(1, "km")
  6716. },
  6717. ]
  6718. ))
  6719. characterMakers.push(() => makeCharacter(
  6720. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6721. {
  6722. front: {
  6723. height: math.unit(2, "meters"),
  6724. weight: math.unit(350, "lbs"),
  6725. name: "Front",
  6726. image: {
  6727. source: "./media/characters/regal/front.svg"
  6728. }
  6729. },
  6730. back: {
  6731. height: math.unit(2, "meters"),
  6732. weight: math.unit(350, "lbs"),
  6733. name: "Back",
  6734. image: {
  6735. source: "./media/characters/regal/back.svg"
  6736. }
  6737. },
  6738. },
  6739. [
  6740. {
  6741. name: "Macro",
  6742. height: math.unit(350, "feet"),
  6743. default: true
  6744. }
  6745. ]
  6746. ))
  6747. characterMakers.push(() => makeCharacter(
  6748. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6749. {
  6750. front: {
  6751. height: math.unit(4 + 11 / 12, "feet"),
  6752. weight: math.unit(100, "lbs"),
  6753. name: "Front",
  6754. image: {
  6755. source: "./media/characters/opal/front.svg"
  6756. }
  6757. },
  6758. frontAlt: {
  6759. height: math.unit(4 + 11 / 12, "feet"),
  6760. weight: math.unit(100, "lbs"),
  6761. name: "Front (Alt)",
  6762. image: {
  6763. source: "./media/characters/opal/front-alt.svg"
  6764. }
  6765. },
  6766. },
  6767. [
  6768. {
  6769. name: "Small",
  6770. height: math.unit(4 + 11 / 12, "feet")
  6771. },
  6772. {
  6773. name: "Normal",
  6774. height: math.unit(20, "feet"),
  6775. default: true
  6776. },
  6777. {
  6778. name: "Macro",
  6779. height: math.unit(120, "feet")
  6780. },
  6781. {
  6782. name: "Megamacro",
  6783. height: math.unit(80, "miles")
  6784. },
  6785. {
  6786. name: "True Size",
  6787. height: math.unit(100000, "lightyears")
  6788. },
  6789. ]
  6790. ))
  6791. characterMakers.push(() => makeCharacter(
  6792. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6793. {
  6794. front: {
  6795. height: math.unit(6, "feet"),
  6796. weight: math.unit(200, "lbs"),
  6797. name: "Front",
  6798. image: {
  6799. source: "./media/characters/vector-wuff/front.svg"
  6800. }
  6801. }
  6802. },
  6803. [
  6804. {
  6805. name: "Normal",
  6806. height: math.unit(2.8, "meters")
  6807. },
  6808. {
  6809. name: "Macro",
  6810. height: math.unit(450, "meters"),
  6811. default: true
  6812. },
  6813. {
  6814. name: "Megamacro",
  6815. height: math.unit(15, "kilometers")
  6816. }
  6817. ]
  6818. ))
  6819. characterMakers.push(() => makeCharacter(
  6820. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6821. {
  6822. front: {
  6823. height: math.unit(6, "feet"),
  6824. weight: math.unit(256, "lbs"),
  6825. name: "Front",
  6826. image: {
  6827. source: "./media/characters/dannik/front.svg"
  6828. }
  6829. }
  6830. },
  6831. [
  6832. {
  6833. name: "Macro",
  6834. height: math.unit(69.57, "meters"),
  6835. default: true
  6836. },
  6837. ]
  6838. ))
  6839. characterMakers.push(() => makeCharacter(
  6840. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6841. {
  6842. front: {
  6843. height: math.unit(6, "feet"),
  6844. weight: math.unit(120, "lbs"),
  6845. name: "Front",
  6846. image: {
  6847. source: "./media/characters/azura-saharah/front.svg"
  6848. }
  6849. },
  6850. back: {
  6851. height: math.unit(6, "feet"),
  6852. weight: math.unit(120, "lbs"),
  6853. name: "Back",
  6854. image: {
  6855. source: "./media/characters/azura-saharah/back.svg"
  6856. }
  6857. },
  6858. },
  6859. [
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(100, "feet"),
  6863. default: true
  6864. },
  6865. ]
  6866. ))
  6867. characterMakers.push(() => makeCharacter(
  6868. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6869. {
  6870. side: {
  6871. height: math.unit(5 + 4 / 12, "feet"),
  6872. weight: math.unit(163, "lbs"),
  6873. name: "Side",
  6874. image: {
  6875. source: "./media/characters/kennedy/side.svg"
  6876. }
  6877. }
  6878. },
  6879. [
  6880. {
  6881. name: "Standard Doggo",
  6882. height: math.unit(5 + 4 / 12, "feet")
  6883. },
  6884. {
  6885. name: "Big Doggo",
  6886. height: math.unit(25 + 3 / 12, "feet"),
  6887. default: true
  6888. },
  6889. ]
  6890. ))
  6891. characterMakers.push(() => makeCharacter(
  6892. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6893. {
  6894. front: {
  6895. height: math.unit(6, "feet"),
  6896. weight: math.unit(90, "lbs"),
  6897. name: "Front",
  6898. image: {
  6899. source: "./media/characters/odi-lunar/front.svg"
  6900. }
  6901. }
  6902. },
  6903. [
  6904. {
  6905. name: "Micro",
  6906. height: math.unit(3, "inches"),
  6907. default: true
  6908. },
  6909. {
  6910. name: "Normal",
  6911. height: math.unit(5.5, "feet")
  6912. }
  6913. ]
  6914. ))
  6915. characterMakers.push(() => makeCharacter(
  6916. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6917. {
  6918. back: {
  6919. height: math.unit(6, "feet"),
  6920. weight: math.unit(220, "lbs"),
  6921. name: "Back",
  6922. image: {
  6923. source: "./media/characters/mandake/back.svg"
  6924. }
  6925. }
  6926. },
  6927. [
  6928. {
  6929. name: "Normal",
  6930. height: math.unit(7, "feet"),
  6931. default: true
  6932. },
  6933. {
  6934. name: "Macro",
  6935. height: math.unit(78, "feet")
  6936. },
  6937. {
  6938. name: "Macro+",
  6939. height: math.unit(300, "meters")
  6940. },
  6941. {
  6942. name: "Macro++",
  6943. height: math.unit(2400, "feet")
  6944. },
  6945. {
  6946. name: "Megamacro",
  6947. height: math.unit(5167, "meters")
  6948. },
  6949. {
  6950. name: "Gigamacro",
  6951. height: math.unit(41769, "miles")
  6952. },
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6957. {
  6958. front: {
  6959. height: math.unit(6, "feet"),
  6960. weight: math.unit(120, "lbs"),
  6961. name: "Front",
  6962. image: {
  6963. source: "./media/characters/yozey/front.svg"
  6964. }
  6965. },
  6966. frontAlt: {
  6967. height: math.unit(6, "feet"),
  6968. weight: math.unit(120, "lbs"),
  6969. name: "Front (Alt)",
  6970. image: {
  6971. source: "./media/characters/yozey/front-alt.svg"
  6972. }
  6973. },
  6974. side: {
  6975. height: math.unit(6, "feet"),
  6976. weight: math.unit(120, "lbs"),
  6977. name: "Side",
  6978. image: {
  6979. source: "./media/characters/yozey/side.svg"
  6980. }
  6981. },
  6982. },
  6983. [
  6984. {
  6985. name: "Micro",
  6986. height: math.unit(3, "inches"),
  6987. default: true
  6988. },
  6989. {
  6990. name: "Normal",
  6991. height: math.unit(6, "feet")
  6992. }
  6993. ]
  6994. ))
  6995. characterMakers.push(() => makeCharacter(
  6996. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6997. {
  6998. front: {
  6999. height: math.unit(6, "feet"),
  7000. weight: math.unit(103, "lbs"),
  7001. name: "Front",
  7002. image: {
  7003. source: "./media/characters/valeska-voss/front.svg"
  7004. }
  7005. }
  7006. },
  7007. [
  7008. {
  7009. name: "Mini-Sized Sub",
  7010. height: math.unit(3.1, "inches")
  7011. },
  7012. {
  7013. name: "Mid-Sized Sub",
  7014. height: math.unit(6.2, "inches")
  7015. },
  7016. {
  7017. name: "Full-Sized Sub",
  7018. height: math.unit(9.3, "inches")
  7019. },
  7020. {
  7021. name: "Normal",
  7022. height: math.unit(5 + 2 / 12, "foot"),
  7023. default: true
  7024. },
  7025. ]
  7026. ))
  7027. characterMakers.push(() => makeCharacter(
  7028. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7029. {
  7030. front: {
  7031. height: math.unit(6, "feet"),
  7032. weight: math.unit(160, "lbs"),
  7033. name: "Front",
  7034. image: {
  7035. source: "./media/characters/gene-zeta/front.svg",
  7036. extra: 3006 / 2826,
  7037. bottom: 182 / 3188
  7038. }
  7039. }
  7040. },
  7041. [
  7042. {
  7043. name: "Micro",
  7044. height: math.unit(6, "inches")
  7045. },
  7046. {
  7047. name: "Normal",
  7048. height: math.unit(5 + 11 / 12, "foot"),
  7049. default: true
  7050. },
  7051. {
  7052. name: "Macro",
  7053. height: math.unit(140, "feet")
  7054. },
  7055. {
  7056. name: "Supercharged",
  7057. height: math.unit(2500, "feet")
  7058. },
  7059. ]
  7060. ))
  7061. characterMakers.push(() => makeCharacter(
  7062. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7063. {
  7064. front: {
  7065. height: math.unit(6, "feet"),
  7066. weight: math.unit(350, "lbs"),
  7067. name: "Front",
  7068. image: {
  7069. source: "./media/characters/razinox/front.svg",
  7070. extra: 1686 / 1548,
  7071. bottom: 28.2 / 1868
  7072. }
  7073. },
  7074. back: {
  7075. height: math.unit(6, "feet"),
  7076. weight: math.unit(350, "lbs"),
  7077. name: "Back",
  7078. image: {
  7079. source: "./media/characters/razinox/back.svg",
  7080. extra: 1660 / 1590,
  7081. bottom: 15 / 1665
  7082. }
  7083. },
  7084. },
  7085. [
  7086. {
  7087. name: "Normal",
  7088. height: math.unit(10 + 8 / 12, "foot")
  7089. },
  7090. {
  7091. name: "Minimacro",
  7092. height: math.unit(15, "foot")
  7093. },
  7094. {
  7095. name: "Macro",
  7096. height: math.unit(60, "foot"),
  7097. default: true
  7098. },
  7099. {
  7100. name: "Megamacro",
  7101. height: math.unit(5, "miles")
  7102. },
  7103. {
  7104. name: "Gigamacro",
  7105. height: math.unit(6000, "miles")
  7106. },
  7107. ]
  7108. ))
  7109. characterMakers.push(() => makeCharacter(
  7110. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7111. {
  7112. front: {
  7113. height: math.unit(6, "feet"),
  7114. weight: math.unit(150, "lbs"),
  7115. name: "Front",
  7116. image: {
  7117. source: "./media/characters/cobalt/front.svg"
  7118. }
  7119. }
  7120. },
  7121. [
  7122. {
  7123. name: "Normal",
  7124. height: math.unit(8 + 1 / 12, "foot")
  7125. },
  7126. {
  7127. name: "Macro",
  7128. height: math.unit(111, "foot"),
  7129. default: true
  7130. },
  7131. {
  7132. name: "Supracosmic",
  7133. height: math.unit(1e42, "feet")
  7134. },
  7135. ]
  7136. ))
  7137. characterMakers.push(() => makeCharacter(
  7138. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7139. {
  7140. front: {
  7141. height: math.unit(6, "feet"),
  7142. weight: math.unit(140, "lbs"),
  7143. name: "Front",
  7144. image: {
  7145. source: "./media/characters/amanda/front.svg"
  7146. }
  7147. }
  7148. },
  7149. [
  7150. {
  7151. name: "Micro",
  7152. height: math.unit(5, "inches"),
  7153. default: true
  7154. },
  7155. ]
  7156. ))
  7157. characterMakers.push(() => makeCharacter(
  7158. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7159. {
  7160. front: {
  7161. height: math.unit(2.75, "meters"),
  7162. weight: math.unit(1200, "lb"),
  7163. name: "Front",
  7164. image: {
  7165. source: "./media/characters/teal/front.svg",
  7166. extra: 2463 / 2320,
  7167. bottom: 166 / 2629
  7168. }
  7169. },
  7170. back: {
  7171. height: math.unit(2.75, "meters"),
  7172. weight: math.unit(1200, "lb"),
  7173. name: "Back",
  7174. image: {
  7175. source: "./media/characters/teal/back.svg",
  7176. extra: 2580 / 2489,
  7177. bottom: 151 / 2731
  7178. }
  7179. },
  7180. sitting: {
  7181. height: math.unit(1.9, "meters"),
  7182. weight: math.unit(1200, "lb"),
  7183. name: "Sitting",
  7184. image: {
  7185. source: "./media/characters/teal/sitting.svg",
  7186. extra: 623 / 590,
  7187. bottom: 121 / 744
  7188. }
  7189. },
  7190. standing: {
  7191. height: math.unit(2.75, "meters"),
  7192. weight: math.unit(1200, "lb"),
  7193. name: "Standing",
  7194. image: {
  7195. source: "./media/characters/teal/standing.svg",
  7196. extra: 923 / 893,
  7197. bottom: 60 / 983
  7198. }
  7199. },
  7200. stretching: {
  7201. height: math.unit(3.65, "meters"),
  7202. weight: math.unit(1200, "lb"),
  7203. name: "Stretching",
  7204. image: {
  7205. source: "./media/characters/teal/stretching.svg",
  7206. extra: 1276 / 1244,
  7207. bottom: 0 / 1276
  7208. }
  7209. },
  7210. legged: {
  7211. height: math.unit(1.3, "meters"),
  7212. weight: math.unit(100, "lb"),
  7213. name: "Legged",
  7214. image: {
  7215. source: "./media/characters/teal/legged.svg",
  7216. extra: 462 / 437,
  7217. bottom: 24 / 486
  7218. }
  7219. },
  7220. naga: {
  7221. height: math.unit(5.4, "meters"),
  7222. weight: math.unit(4000, "lb"),
  7223. name: "Naga",
  7224. image: {
  7225. source: "./media/characters/teal/naga.svg",
  7226. extra: 1902 / 1858,
  7227. bottom: 0 / 1902
  7228. }
  7229. },
  7230. hand: {
  7231. height: math.unit(0.52, "meters"),
  7232. name: "Hand",
  7233. image: {
  7234. source: "./media/characters/teal/hand.svg"
  7235. }
  7236. },
  7237. maw: {
  7238. height: math.unit(0.43, "meters"),
  7239. name: "Maw",
  7240. image: {
  7241. source: "./media/characters/teal/maw.svg"
  7242. }
  7243. },
  7244. slit: {
  7245. height: math.unit(0.25, "meters"),
  7246. name: "Slit",
  7247. image: {
  7248. source: "./media/characters/teal/slit.svg"
  7249. }
  7250. },
  7251. },
  7252. [
  7253. {
  7254. name: "Normal",
  7255. height: math.unit(2.75, "meters"),
  7256. default: true
  7257. },
  7258. {
  7259. name: "Macro",
  7260. height: math.unit(300, "feet")
  7261. },
  7262. {
  7263. name: "Macro+",
  7264. height: math.unit(2000, "feet")
  7265. },
  7266. ]
  7267. ))
  7268. characterMakers.push(() => makeCharacter(
  7269. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7270. {
  7271. frontCat: {
  7272. height: math.unit(6, "feet"),
  7273. weight: math.unit(180, "lbs"),
  7274. name: "Front (Cat)",
  7275. image: {
  7276. source: "./media/characters/ravin-amulet/front-cat.svg"
  7277. }
  7278. },
  7279. frontCatAlt: {
  7280. height: math.unit(6, "feet"),
  7281. weight: math.unit(180, "lbs"),
  7282. name: "Front (Alt, Cat)",
  7283. image: {
  7284. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7285. }
  7286. },
  7287. frontWerewolf: {
  7288. height: math.unit(6 * 1.2, "feet"),
  7289. weight: math.unit(225, "lbs"),
  7290. name: "Front (Werewolf)",
  7291. image: {
  7292. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7293. }
  7294. },
  7295. backWerewolf: {
  7296. height: math.unit(6 * 1.2, "feet"),
  7297. weight: math.unit(225, "lbs"),
  7298. name: "Back (Werewolf)",
  7299. image: {
  7300. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7301. }
  7302. },
  7303. },
  7304. [
  7305. {
  7306. name: "Nano",
  7307. height: math.unit(1, "micrometer")
  7308. },
  7309. {
  7310. name: "Micro",
  7311. height: math.unit(1, "inch")
  7312. },
  7313. {
  7314. name: "Normal",
  7315. height: math.unit(6, "feet"),
  7316. default: true
  7317. },
  7318. {
  7319. name: "Macro",
  7320. height: math.unit(60, "feet")
  7321. }
  7322. ]
  7323. ))
  7324. characterMakers.push(() => makeCharacter(
  7325. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7326. {
  7327. front: {
  7328. height: math.unit(6, "feet"),
  7329. weight: math.unit(165, "lbs"),
  7330. name: "Front",
  7331. image: {
  7332. source: "./media/characters/fluoresce/front.svg"
  7333. }
  7334. }
  7335. },
  7336. [
  7337. {
  7338. name: "Micro",
  7339. height: math.unit(6, "cm")
  7340. },
  7341. {
  7342. name: "Normal",
  7343. height: math.unit(5 + 7 / 12, "feet"),
  7344. default: true
  7345. },
  7346. {
  7347. name: "Macro",
  7348. height: math.unit(56, "feet")
  7349. },
  7350. {
  7351. name: "Megamacro",
  7352. height: math.unit(1.9, "miles")
  7353. },
  7354. ]
  7355. ))
  7356. characterMakers.push(() => makeCharacter(
  7357. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7358. {
  7359. front: {
  7360. height: math.unit(9 + 6 / 12, "feet"),
  7361. weight: math.unit(523, "lbs"),
  7362. name: "Side",
  7363. image: {
  7364. source: "./media/characters/aurora/side.svg"
  7365. }
  7366. }
  7367. },
  7368. [
  7369. {
  7370. name: "Normal",
  7371. height: math.unit(9 + 6 / 12, "feet")
  7372. },
  7373. {
  7374. name: "Macro",
  7375. height: math.unit(96, "feet"),
  7376. default: true
  7377. },
  7378. {
  7379. name: "Macro+",
  7380. height: math.unit(243, "feet")
  7381. },
  7382. ]
  7383. ))
  7384. characterMakers.push(() => makeCharacter(
  7385. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7386. {
  7387. front: {
  7388. height: math.unit(194, "cm"),
  7389. weight: math.unit(90, "kg"),
  7390. name: "Front",
  7391. image: {
  7392. source: "./media/characters/ranek/front.svg"
  7393. }
  7394. },
  7395. side: {
  7396. height: math.unit(194, "cm"),
  7397. weight: math.unit(90, "kg"),
  7398. name: "Side",
  7399. image: {
  7400. source: "./media/characters/ranek/side.svg"
  7401. }
  7402. },
  7403. back: {
  7404. height: math.unit(194, "cm"),
  7405. weight: math.unit(90, "kg"),
  7406. name: "Back",
  7407. image: {
  7408. source: "./media/characters/ranek/back.svg"
  7409. }
  7410. },
  7411. feral: {
  7412. height: math.unit(30, "cm"),
  7413. weight: math.unit(1.6, "lbs"),
  7414. name: "Feral",
  7415. image: {
  7416. source: "./media/characters/ranek/feral.svg"
  7417. }
  7418. },
  7419. },
  7420. [
  7421. {
  7422. name: "Normal",
  7423. height: math.unit(194, "cm"),
  7424. default: true
  7425. },
  7426. {
  7427. name: "Macro",
  7428. height: math.unit(100, "meters")
  7429. },
  7430. ]
  7431. ))
  7432. characterMakers.push(() => makeCharacter(
  7433. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7434. {
  7435. front: {
  7436. height: math.unit(5 + 6 / 12, "feet"),
  7437. weight: math.unit(153, "lbs"),
  7438. name: "Front",
  7439. image: {
  7440. source: "./media/characters/andrew-cooper/front.svg"
  7441. }
  7442. },
  7443. },
  7444. [
  7445. {
  7446. name: "Nano",
  7447. height: math.unit(1, "mm")
  7448. },
  7449. {
  7450. name: "Micro",
  7451. height: math.unit(2, "inches")
  7452. },
  7453. {
  7454. name: "Normal",
  7455. height: math.unit(5 + 6 / 12, "feet"),
  7456. default: true
  7457. }
  7458. ]
  7459. ))
  7460. characterMakers.push(() => makeCharacter(
  7461. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7462. {
  7463. front: {
  7464. height: math.unit(6, "feet"),
  7465. weight: math.unit(180, "lbs"),
  7466. name: "Front",
  7467. image: {
  7468. source: "./media/characters/akane-sato/front.svg",
  7469. extra: 1219 / 1140
  7470. }
  7471. },
  7472. back: {
  7473. height: math.unit(6, "feet"),
  7474. weight: math.unit(180, "lbs"),
  7475. name: "Back",
  7476. image: {
  7477. source: "./media/characters/akane-sato/back.svg",
  7478. extra: 1219 / 1170
  7479. }
  7480. },
  7481. },
  7482. [
  7483. {
  7484. name: "Normal",
  7485. height: math.unit(2.5, "meters")
  7486. },
  7487. {
  7488. name: "Macro",
  7489. height: math.unit(250, "meters"),
  7490. default: true
  7491. },
  7492. {
  7493. name: "Megamacro",
  7494. height: math.unit(25, "km")
  7495. },
  7496. ]
  7497. ))
  7498. characterMakers.push(() => makeCharacter(
  7499. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7500. {
  7501. front: {
  7502. height: math.unit(6, "feet"),
  7503. weight: math.unit(65, "kg"),
  7504. name: "Front",
  7505. image: {
  7506. source: "./media/characters/rook/front.svg",
  7507. extra: 960 / 950
  7508. }
  7509. }
  7510. },
  7511. [
  7512. {
  7513. name: "Normal",
  7514. height: math.unit(8.8, "feet")
  7515. },
  7516. {
  7517. name: "Macro",
  7518. height: math.unit(88, "feet"),
  7519. default: true
  7520. },
  7521. {
  7522. name: "Megamacro",
  7523. height: math.unit(8, "miles")
  7524. },
  7525. ]
  7526. ))
  7527. characterMakers.push(() => makeCharacter(
  7528. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7529. {
  7530. front: {
  7531. height: math.unit(12 + 2 / 12, "feet"),
  7532. weight: math.unit(808, "lbs"),
  7533. name: "Front",
  7534. image: {
  7535. source: "./media/characters/prodigy/front.svg"
  7536. }
  7537. }
  7538. },
  7539. [
  7540. {
  7541. name: "Normal",
  7542. height: math.unit(12 + 2 / 12, "feet"),
  7543. default: true
  7544. },
  7545. {
  7546. name: "Macro",
  7547. height: math.unit(143, "feet")
  7548. },
  7549. {
  7550. name: "Macro+",
  7551. height: math.unit(400, "feet")
  7552. },
  7553. ]
  7554. ))
  7555. characterMakers.push(() => makeCharacter(
  7556. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7557. {
  7558. front: {
  7559. height: math.unit(6, "feet"),
  7560. weight: math.unit(225, "lbs"),
  7561. name: "Front",
  7562. image: {
  7563. source: "./media/characters/daniel/front.svg"
  7564. }
  7565. },
  7566. leaning: {
  7567. height: math.unit(6, "feet"),
  7568. weight: math.unit(225, "lbs"),
  7569. name: "Leaning",
  7570. image: {
  7571. source: "./media/characters/daniel/leaning.svg"
  7572. }
  7573. },
  7574. },
  7575. [
  7576. {
  7577. name: "Macro",
  7578. height: math.unit(1000, "feet"),
  7579. default: true
  7580. },
  7581. ]
  7582. ))
  7583. characterMakers.push(() => makeCharacter(
  7584. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7585. {
  7586. front: {
  7587. height: math.unit(6, "feet"),
  7588. weight: math.unit(88, "lbs"),
  7589. name: "Front",
  7590. image: {
  7591. source: "./media/characters/chiros/front.svg",
  7592. extra: 306 / 226
  7593. }
  7594. },
  7595. side: {
  7596. height: math.unit(6, "feet"),
  7597. weight: math.unit(88, "lbs"),
  7598. name: "Side",
  7599. image: {
  7600. source: "./media/characters/chiros/side.svg",
  7601. extra: 306 / 226
  7602. }
  7603. },
  7604. },
  7605. [
  7606. {
  7607. name: "Normal",
  7608. height: math.unit(6, "cm"),
  7609. default: true
  7610. },
  7611. ]
  7612. ))
  7613. characterMakers.push(() => makeCharacter(
  7614. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7615. {
  7616. front: {
  7617. height: math.unit(6, "feet"),
  7618. weight: math.unit(100, "lbs"),
  7619. name: "Front",
  7620. image: {
  7621. source: "./media/characters/selka/front.svg",
  7622. extra: 947 / 887
  7623. }
  7624. }
  7625. },
  7626. [
  7627. {
  7628. name: "Normal",
  7629. height: math.unit(5, "cm"),
  7630. default: true
  7631. },
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7636. {
  7637. front: {
  7638. height: math.unit(8 + 3 / 12, "feet"),
  7639. weight: math.unit(424, "lbs"),
  7640. name: "Front",
  7641. image: {
  7642. source: "./media/characters/verin/front.svg",
  7643. extra: 1845 / 1550
  7644. }
  7645. },
  7646. frontArmored: {
  7647. height: math.unit(8 + 3 / 12, "feet"),
  7648. weight: math.unit(424, "lbs"),
  7649. name: "Front (Armored)",
  7650. image: {
  7651. source: "./media/characters/verin/front-armor.svg",
  7652. extra: 1845 / 1550,
  7653. bottom: 0.01
  7654. }
  7655. },
  7656. back: {
  7657. height: math.unit(8 + 3 / 12, "feet"),
  7658. weight: math.unit(424, "lbs"),
  7659. name: "Back",
  7660. image: {
  7661. source: "./media/characters/verin/back.svg",
  7662. bottom: 0.1,
  7663. extra: 1
  7664. }
  7665. },
  7666. foot: {
  7667. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7668. name: "Foot",
  7669. image: {
  7670. source: "./media/characters/verin/foot.svg"
  7671. }
  7672. },
  7673. },
  7674. [
  7675. {
  7676. name: "Normal",
  7677. height: math.unit(8 + 3 / 12, "feet")
  7678. },
  7679. {
  7680. name: "Minimacro",
  7681. height: math.unit(21, "feet"),
  7682. default: true
  7683. },
  7684. {
  7685. name: "Macro",
  7686. height: math.unit(626, "feet")
  7687. },
  7688. ]
  7689. ))
  7690. characterMakers.push(() => makeCharacter(
  7691. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7692. {
  7693. front: {
  7694. height: math.unit(2.718, "meters"),
  7695. weight: math.unit(150, "lbs"),
  7696. name: "Front",
  7697. image: {
  7698. source: "./media/characters/sovrim-terraquian/front.svg"
  7699. }
  7700. },
  7701. back: {
  7702. height: math.unit(2.718, "meters"),
  7703. weight: math.unit(150, "lbs"),
  7704. name: "Back",
  7705. image: {
  7706. source: "./media/characters/sovrim-terraquian/back.svg"
  7707. }
  7708. }
  7709. },
  7710. [
  7711. {
  7712. name: "Micro",
  7713. height: math.unit(2, "inches")
  7714. },
  7715. {
  7716. name: "Small",
  7717. height: math.unit(1, "meter")
  7718. },
  7719. {
  7720. name: "Normal",
  7721. height: math.unit(Math.E, "meters"),
  7722. default: true
  7723. },
  7724. {
  7725. name: "Macro",
  7726. height: math.unit(20, "meters")
  7727. },
  7728. {
  7729. name: "Macro+",
  7730. height: math.unit(400, "meters")
  7731. },
  7732. ]
  7733. ))
  7734. characterMakers.push(() => makeCharacter(
  7735. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7736. {
  7737. front: {
  7738. height: math.unit(7, "feet"),
  7739. weight: math.unit(489, "lbs"),
  7740. name: "Front",
  7741. image: {
  7742. source: "./media/characters/reece-silvermane/front.svg",
  7743. bottom: 0.02,
  7744. extra: 1
  7745. }
  7746. },
  7747. },
  7748. [
  7749. {
  7750. name: "Macro",
  7751. height: math.unit(1.5, "miles"),
  7752. default: true
  7753. },
  7754. ]
  7755. ))
  7756. characterMakers.push(() => makeCharacter(
  7757. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7758. {
  7759. front: {
  7760. height: math.unit(6, "feet"),
  7761. weight: math.unit(78, "kg"),
  7762. name: "Front",
  7763. image: {
  7764. source: "./media/characters/kane/front.svg",
  7765. extra: 978 / 899
  7766. }
  7767. },
  7768. },
  7769. [
  7770. {
  7771. name: "Normal",
  7772. height: math.unit(2.1, "m"),
  7773. },
  7774. {
  7775. name: "Macro",
  7776. height: math.unit(1, "km"),
  7777. default: true
  7778. },
  7779. ]
  7780. ))
  7781. characterMakers.push(() => makeCharacter(
  7782. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7783. {
  7784. front: {
  7785. height: math.unit(6, "feet"),
  7786. weight: math.unit(200, "kg"),
  7787. name: "Front",
  7788. image: {
  7789. source: "./media/characters/tegon/front.svg",
  7790. bottom: 0.01,
  7791. extra: 1
  7792. }
  7793. },
  7794. },
  7795. [
  7796. {
  7797. name: "Micro",
  7798. height: math.unit(1, "inch")
  7799. },
  7800. {
  7801. name: "Normal",
  7802. height: math.unit(6 + 3 / 12, "feet"),
  7803. default: true
  7804. },
  7805. {
  7806. name: "Macro",
  7807. height: math.unit(300, "feet")
  7808. },
  7809. {
  7810. name: "Megamacro",
  7811. height: math.unit(69, "miles")
  7812. },
  7813. ]
  7814. ))
  7815. characterMakers.push(() => makeCharacter(
  7816. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7817. {
  7818. side: {
  7819. height: math.unit(6, "feet"),
  7820. weight: math.unit(2304, "lbs"),
  7821. name: "Side",
  7822. image: {
  7823. source: "./media/characters/arcturax/side.svg",
  7824. extra: 790 / 376,
  7825. bottom: 0.01
  7826. }
  7827. },
  7828. },
  7829. [
  7830. {
  7831. name: "Micro",
  7832. height: math.unit(2, "inch")
  7833. },
  7834. {
  7835. name: "Normal",
  7836. height: math.unit(6, "feet")
  7837. },
  7838. {
  7839. name: "Macro",
  7840. height: math.unit(39, "feet"),
  7841. default: true
  7842. },
  7843. {
  7844. name: "Megamacro",
  7845. height: math.unit(7, "miles")
  7846. },
  7847. ]
  7848. ))
  7849. characterMakers.push(() => makeCharacter(
  7850. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7851. {
  7852. front: {
  7853. height: math.unit(6, "feet"),
  7854. weight: math.unit(50, "lbs"),
  7855. name: "Front",
  7856. image: {
  7857. source: "./media/characters/sentri/front.svg",
  7858. extra: 1750 / 1570,
  7859. bottom: 0.025
  7860. }
  7861. },
  7862. frontAlt: {
  7863. height: math.unit(6, "feet"),
  7864. weight: math.unit(50, "lbs"),
  7865. name: "Front (Alt)",
  7866. image: {
  7867. source: "./media/characters/sentri/front-alt.svg",
  7868. extra: 1750 / 1570,
  7869. bottom: 0.025
  7870. }
  7871. },
  7872. },
  7873. [
  7874. {
  7875. name: "Normal",
  7876. height: math.unit(15, "feet"),
  7877. default: true
  7878. },
  7879. {
  7880. name: "Macro",
  7881. height: math.unit(2500, "feet")
  7882. }
  7883. ]
  7884. ))
  7885. characterMakers.push(() => makeCharacter(
  7886. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7887. {
  7888. front: {
  7889. height: math.unit(5 + 8 / 12, "feet"),
  7890. weight: math.unit(130, "lbs"),
  7891. name: "Front",
  7892. image: {
  7893. source: "./media/characters/corvin/front.svg",
  7894. extra: 1803 / 1629
  7895. }
  7896. },
  7897. frontShirt: {
  7898. height: math.unit(5 + 8 / 12, "feet"),
  7899. weight: math.unit(130, "lbs"),
  7900. name: "Front (Shirt)",
  7901. image: {
  7902. source: "./media/characters/corvin/front-shirt.svg",
  7903. extra: 1803 / 1629
  7904. }
  7905. },
  7906. frontPoncho: {
  7907. height: math.unit(5 + 8 / 12, "feet"),
  7908. weight: math.unit(130, "lbs"),
  7909. name: "Front (Poncho)",
  7910. image: {
  7911. source: "./media/characters/corvin/front-poncho.svg",
  7912. extra: 1803 / 1629
  7913. }
  7914. },
  7915. side: {
  7916. height: math.unit(5 + 8 / 12, "feet"),
  7917. weight: math.unit(130, "lbs"),
  7918. name: "Side",
  7919. image: {
  7920. source: "./media/characters/corvin/side.svg",
  7921. extra: 1012 / 945
  7922. }
  7923. },
  7924. back: {
  7925. height: math.unit(5 + 8 / 12, "feet"),
  7926. weight: math.unit(130, "lbs"),
  7927. name: "Back",
  7928. image: {
  7929. source: "./media/characters/corvin/back.svg",
  7930. extra: 1803 / 1629
  7931. }
  7932. },
  7933. },
  7934. [
  7935. {
  7936. name: "Micro",
  7937. height: math.unit(3, "inches")
  7938. },
  7939. {
  7940. name: "Normal",
  7941. height: math.unit(5 + 8 / 12, "feet")
  7942. },
  7943. {
  7944. name: "Macro",
  7945. height: math.unit(300, "feet"),
  7946. default: true
  7947. },
  7948. {
  7949. name: "Megamacro",
  7950. height: math.unit(500, "miles")
  7951. }
  7952. ]
  7953. ))
  7954. characterMakers.push(() => makeCharacter(
  7955. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7956. {
  7957. front: {
  7958. height: math.unit(6, "feet"),
  7959. weight: math.unit(135, "lbs"),
  7960. name: "Front",
  7961. image: {
  7962. source: "./media/characters/q/front.svg",
  7963. extra: 854 / 752,
  7964. bottom: 0.005
  7965. }
  7966. },
  7967. back: {
  7968. height: math.unit(6, "feet"),
  7969. weight: math.unit(130, "lbs"),
  7970. name: "Back",
  7971. image: {
  7972. source: "./media/characters/q/back.svg",
  7973. extra: 854 / 752
  7974. }
  7975. },
  7976. },
  7977. [
  7978. {
  7979. name: "Macro",
  7980. height: math.unit(90, "feet"),
  7981. default: true
  7982. },
  7983. {
  7984. name: "Extra Macro",
  7985. height: math.unit(300, "feet"),
  7986. },
  7987. {
  7988. name: "BIG WALF",
  7989. height: math.unit(750, "feet"),
  7990. },
  7991. ]
  7992. ))
  7993. characterMakers.push(() => makeCharacter(
  7994. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7995. {
  7996. front: {
  7997. height: math.unit(6, "feet"),
  7998. weight: math.unit(150, "lbs"),
  7999. name: "Front",
  8000. image: {
  8001. source: "./media/characters/carley/front.svg",
  8002. extra: 3927 / 3540,
  8003. bottom: 29.2 / 735
  8004. }
  8005. }
  8006. },
  8007. [
  8008. {
  8009. name: "Normal",
  8010. height: math.unit(6 + 3 / 12, "feet")
  8011. },
  8012. {
  8013. name: "Macro",
  8014. height: math.unit(185, "feet"),
  8015. default: true
  8016. },
  8017. {
  8018. name: "Megamacro",
  8019. height: math.unit(8, "miles"),
  8020. },
  8021. ]
  8022. ))
  8023. characterMakers.push(() => makeCharacter(
  8024. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8025. {
  8026. front: {
  8027. height: math.unit(3, "feet"),
  8028. weight: math.unit(28, "lbs"),
  8029. name: "Front",
  8030. image: {
  8031. source: "./media/characters/citrine/front.svg"
  8032. }
  8033. }
  8034. },
  8035. [
  8036. {
  8037. name: "Normal",
  8038. height: math.unit(3, "feet"),
  8039. default: true
  8040. }
  8041. ]
  8042. ))
  8043. characterMakers.push(() => makeCharacter(
  8044. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8045. {
  8046. front: {
  8047. height: math.unit(14, "feet"),
  8048. weight: math.unit(1450, "kg"),
  8049. capacity: math.unit(15, "people"),
  8050. name: "Front",
  8051. image: {
  8052. source: "./media/characters/aura-starwind/front.svg",
  8053. extra: 1455 / 1335
  8054. }
  8055. },
  8056. side: {
  8057. height: math.unit(14, "feet"),
  8058. weight: math.unit(1450, "kg"),
  8059. capacity: math.unit(15, "people"),
  8060. name: "Side",
  8061. image: {
  8062. source: "./media/characters/aura-starwind/side.svg",
  8063. extra: 1654 / 1497
  8064. }
  8065. },
  8066. taur: {
  8067. height: math.unit(18, "feet"),
  8068. weight: math.unit(5500, "kg"),
  8069. capacity: math.unit(50, "people"),
  8070. name: "Taur",
  8071. image: {
  8072. source: "./media/characters/aura-starwind/taur.svg",
  8073. extra: 1760 / 1650
  8074. }
  8075. },
  8076. feral: {
  8077. height: math.unit(46, "feet"),
  8078. weight: math.unit(25000, "kg"),
  8079. capacity: math.unit(120, "people"),
  8080. name: "Feral",
  8081. image: {
  8082. source: "./media/characters/aura-starwind/feral.svg"
  8083. }
  8084. },
  8085. },
  8086. [
  8087. {
  8088. name: "Normal",
  8089. height: math.unit(14, "feet"),
  8090. default: true
  8091. },
  8092. {
  8093. name: "Macro",
  8094. height: math.unit(50, "meters")
  8095. },
  8096. {
  8097. name: "Megamacro",
  8098. height: math.unit(5000, "meters")
  8099. },
  8100. {
  8101. name: "Gigamacro",
  8102. height: math.unit(100000, "kilometers")
  8103. },
  8104. ]
  8105. ))
  8106. characterMakers.push(() => makeCharacter(
  8107. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8108. {
  8109. front: {
  8110. height: math.unit(2 + 7 / 12, "feet"),
  8111. weight: math.unit(32, "lbs"),
  8112. name: "Front",
  8113. image: {
  8114. source: "./media/characters/rivet/front.svg",
  8115. extra: 1716 / 1658,
  8116. bottom: 0.03
  8117. }
  8118. },
  8119. foot: {
  8120. height: math.unit(0.551, "feet"),
  8121. name: "Rivet's Foot",
  8122. image: {
  8123. source: "./media/characters/rivet/foot.svg"
  8124. },
  8125. rename: true
  8126. }
  8127. },
  8128. [
  8129. {
  8130. name: "Micro",
  8131. height: math.unit(1.5, "inches"),
  8132. },
  8133. {
  8134. name: "Normal",
  8135. height: math.unit(2 + 7 / 12, "feet"),
  8136. default: true
  8137. },
  8138. {
  8139. name: "Macro",
  8140. height: math.unit(85, "feet")
  8141. },
  8142. {
  8143. name: "Megamacro",
  8144. height: math.unit(2.2, "km")
  8145. }
  8146. ]
  8147. ))
  8148. characterMakers.push(() => makeCharacter(
  8149. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8150. {
  8151. front: {
  8152. height: math.unit(5 + 9 / 12, "feet"),
  8153. weight: math.unit(150, "lbs"),
  8154. name: "Front",
  8155. image: {
  8156. source: "./media/characters/coffee/front.svg",
  8157. extra: 3666 / 3032,
  8158. bottom: 0.04
  8159. }
  8160. },
  8161. foot: {
  8162. height: math.unit(1.29, "feet"),
  8163. name: "Foot",
  8164. image: {
  8165. source: "./media/characters/coffee/foot.svg"
  8166. }
  8167. },
  8168. },
  8169. [
  8170. {
  8171. name: "Micro",
  8172. height: math.unit(2, "inches"),
  8173. },
  8174. {
  8175. name: "Normal",
  8176. height: math.unit(5 + 9 / 12, "feet"),
  8177. default: true
  8178. },
  8179. {
  8180. name: "Macro",
  8181. height: math.unit(800, "feet")
  8182. },
  8183. {
  8184. name: "Megamacro",
  8185. height: math.unit(25, "miles")
  8186. }
  8187. ]
  8188. ))
  8189. characterMakers.push(() => makeCharacter(
  8190. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8191. {
  8192. front: {
  8193. height: math.unit(6, "feet"),
  8194. weight: math.unit(200, "lbs"),
  8195. name: "Front",
  8196. image: {
  8197. source: "./media/characters/chari-gal/front.svg",
  8198. extra: 1568 / 1385,
  8199. bottom: 0.047
  8200. }
  8201. },
  8202. gigantamax: {
  8203. height: math.unit(6 * 16, "feet"),
  8204. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8205. name: "Gigantamax",
  8206. image: {
  8207. source: "./media/characters/chari-gal/gigantamax.svg",
  8208. extra: 1124 / 888,
  8209. bottom: 0.03
  8210. }
  8211. },
  8212. },
  8213. [
  8214. {
  8215. name: "Normal",
  8216. height: math.unit(5 + 7 / 12, "feet")
  8217. },
  8218. {
  8219. name: "Macro",
  8220. height: math.unit(200, "feet"),
  8221. default: true
  8222. }
  8223. ]
  8224. ))
  8225. characterMakers.push(() => makeCharacter(
  8226. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8227. {
  8228. front: {
  8229. height: math.unit(6, "feet"),
  8230. weight: math.unit(150, "lbs"),
  8231. name: "Front",
  8232. image: {
  8233. source: "./media/characters/nova/front.svg",
  8234. extra: 5000 / 4722,
  8235. bottom: 0.02
  8236. }
  8237. }
  8238. },
  8239. [
  8240. {
  8241. name: "Micro-",
  8242. height: math.unit(0.8, "inches")
  8243. },
  8244. {
  8245. name: "Micro",
  8246. height: math.unit(2, "inches"),
  8247. default: true
  8248. },
  8249. ]
  8250. ))
  8251. characterMakers.push(() => makeCharacter(
  8252. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8253. {
  8254. front: {
  8255. height: math.unit(3 + 1 / 12, "feet"),
  8256. weight: math.unit(21.7, "lbs"),
  8257. name: "Front",
  8258. image: {
  8259. source: "./media/characters/argent/front.svg",
  8260. extra: 1471 / 1331,
  8261. bottom: 100.8 / 1575.5
  8262. }
  8263. }
  8264. },
  8265. [
  8266. {
  8267. name: "Micro",
  8268. height: math.unit(2, "inches")
  8269. },
  8270. {
  8271. name: "Normal",
  8272. height: math.unit(3 + 1 / 12, "feet"),
  8273. default: true
  8274. },
  8275. {
  8276. name: "Macro",
  8277. height: math.unit(120, "feet")
  8278. },
  8279. ]
  8280. ))
  8281. characterMakers.push(() => makeCharacter(
  8282. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8283. {
  8284. lamp: {
  8285. height: math.unit(7 * 1559 / 989, "feet"),
  8286. name: "Magic Lamp",
  8287. image: {
  8288. source: "./media/characters/mira-al-cul/lamp.svg",
  8289. extra: 1617 / 1559
  8290. }
  8291. },
  8292. front: {
  8293. height: math.unit(7, "feet"),
  8294. name: "Front",
  8295. image: {
  8296. source: "./media/characters/mira-al-cul/front.svg",
  8297. extra: 1044 / 990
  8298. }
  8299. },
  8300. },
  8301. [
  8302. {
  8303. name: "Heavily Restricted",
  8304. height: math.unit(7 * 1559 / 989, "feet")
  8305. },
  8306. {
  8307. name: "Freshly Freed",
  8308. height: math.unit(50 * 1559 / 989, "feet")
  8309. },
  8310. {
  8311. name: "World Encompassing",
  8312. height: math.unit(10000 * 1559 / 989, "miles")
  8313. },
  8314. {
  8315. name: "Galactic",
  8316. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8317. },
  8318. {
  8319. name: "Palmed Universe",
  8320. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8321. default: true
  8322. },
  8323. {
  8324. name: "Multiversal Matriarch",
  8325. height: math.unit(8.87e10, "yottameters")
  8326. },
  8327. {
  8328. name: "Void Mother",
  8329. height: math.unit(3.14e110, "yottaparsecs")
  8330. },
  8331. {
  8332. name: "Toying with Transcendence",
  8333. height: math.unit(1e307, "meters")
  8334. },
  8335. ]
  8336. ))
  8337. characterMakers.push(() => makeCharacter(
  8338. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8339. {
  8340. front: {
  8341. height: math.unit(17 + 1 / 12, "feet"),
  8342. weight: math.unit(476.2 * 5, "lbs"),
  8343. name: "Front",
  8344. image: {
  8345. source: "./media/characters/kuro-shi-uchū/front.svg",
  8346. extra: 2329 / 1835,
  8347. bottom: 0.02
  8348. }
  8349. },
  8350. },
  8351. [
  8352. {
  8353. name: "Micro",
  8354. height: math.unit(2, "inches")
  8355. },
  8356. {
  8357. name: "Normal",
  8358. height: math.unit(12, "meters")
  8359. },
  8360. {
  8361. name: "Planetary",
  8362. height: math.unit(0.00929, "AU"),
  8363. default: true
  8364. },
  8365. {
  8366. name: "Universal",
  8367. height: math.unit(20, "gigaparsecs")
  8368. },
  8369. ]
  8370. ))
  8371. characterMakers.push(() => makeCharacter(
  8372. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8373. {
  8374. front: {
  8375. height: math.unit(5 + 2 / 12, "feet"),
  8376. weight: math.unit(120, "lbs"),
  8377. name: "Front",
  8378. image: {
  8379. source: "./media/characters/katherine/front.svg",
  8380. extra: 2075 / 1969
  8381. }
  8382. },
  8383. dress: {
  8384. height: math.unit(5 + 2 / 12, "feet"),
  8385. weight: math.unit(120, "lbs"),
  8386. name: "Dress",
  8387. image: {
  8388. source: "./media/characters/katherine/dress.svg",
  8389. extra: 2258 / 2064
  8390. }
  8391. },
  8392. },
  8393. [
  8394. {
  8395. name: "Micro",
  8396. height: math.unit(1, "inches"),
  8397. default: true
  8398. },
  8399. {
  8400. name: "Normal",
  8401. height: math.unit(5 + 2 / 12, "feet")
  8402. },
  8403. {
  8404. name: "Macro",
  8405. height: math.unit(100, "meters")
  8406. },
  8407. {
  8408. name: "Megamacro",
  8409. height: math.unit(80, "miles")
  8410. },
  8411. ]
  8412. ))
  8413. characterMakers.push(() => makeCharacter(
  8414. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8415. {
  8416. front: {
  8417. height: math.unit(7 + 8 / 12, "feet"),
  8418. weight: math.unit(250, "lbs"),
  8419. name: "Front",
  8420. image: {
  8421. source: "./media/characters/yevis/front.svg",
  8422. extra: 1938 / 1755
  8423. }
  8424. }
  8425. },
  8426. [
  8427. {
  8428. name: "Mortal",
  8429. height: math.unit(7 + 8 / 12, "feet")
  8430. },
  8431. {
  8432. name: "Battle",
  8433. height: math.unit(25 + 11 / 12, "feet")
  8434. },
  8435. {
  8436. name: "Wrath",
  8437. height: math.unit(1654 + 11 / 12, "feet")
  8438. },
  8439. {
  8440. name: "Planet Destroyer",
  8441. height: math.unit(12000, "miles")
  8442. },
  8443. {
  8444. name: "Galaxy Conqueror",
  8445. height: math.unit(1.45, "zettameters"),
  8446. default: true
  8447. },
  8448. {
  8449. name: "Universal War",
  8450. height: math.unit(184, "gigaparsecs")
  8451. },
  8452. {
  8453. name: "Eternity War",
  8454. height: math.unit(1.98e55, "yottaparsecs")
  8455. },
  8456. ]
  8457. ))
  8458. characterMakers.push(() => makeCharacter(
  8459. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8460. {
  8461. front: {
  8462. height: math.unit(5 + 8 / 12, "feet"),
  8463. weight: math.unit(63, "kg"),
  8464. name: "Front",
  8465. image: {
  8466. source: "./media/characters/xavier/front.svg",
  8467. extra: 944 / 883
  8468. }
  8469. },
  8470. frontStretch: {
  8471. height: math.unit(5 + 8 / 12, "feet"),
  8472. weight: math.unit(63, "kg"),
  8473. name: "Stretching",
  8474. image: {
  8475. source: "./media/characters/xavier/front-stretch.svg",
  8476. extra: 962 / 820
  8477. }
  8478. },
  8479. },
  8480. [
  8481. {
  8482. name: "Normal",
  8483. height: math.unit(5 + 8 / 12, "feet")
  8484. },
  8485. {
  8486. name: "Macro",
  8487. height: math.unit(100, "meters"),
  8488. default: true
  8489. },
  8490. {
  8491. name: "McLargeHuge",
  8492. height: math.unit(10, "miles")
  8493. },
  8494. ]
  8495. ))
  8496. characterMakers.push(() => makeCharacter(
  8497. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8498. {
  8499. front: {
  8500. height: math.unit(5 + 5 / 12, "feet"),
  8501. weight: math.unit(150, "lb"),
  8502. name: "Front",
  8503. image: {
  8504. source: "./media/characters/joshii/front.svg",
  8505. extra: 765 / 653,
  8506. bottom: 51 / 816
  8507. }
  8508. },
  8509. foot: {
  8510. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8511. name: "Foot",
  8512. image: {
  8513. source: "./media/characters/joshii/foot.svg"
  8514. }
  8515. },
  8516. },
  8517. [
  8518. {
  8519. name: "Micro",
  8520. height: math.unit(2, "inches"),
  8521. default: true
  8522. },
  8523. {
  8524. name: "Normal",
  8525. height: math.unit(5 + 5 / 12, "feet")
  8526. },
  8527. {
  8528. name: "Macro",
  8529. height: math.unit(785, "feet")
  8530. },
  8531. {
  8532. name: "Megamacro",
  8533. height: math.unit(24.5, "miles")
  8534. },
  8535. ]
  8536. ))
  8537. characterMakers.push(() => makeCharacter(
  8538. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8539. {
  8540. front: {
  8541. height: math.unit(6, "feet"),
  8542. weight: math.unit(150, "lb"),
  8543. name: "Front",
  8544. image: {
  8545. source: "./media/characters/goddess-elizabeth/front.svg",
  8546. extra: 1800 / 1525,
  8547. bottom: 0.005
  8548. }
  8549. },
  8550. foot: {
  8551. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8552. name: "Foot",
  8553. image: {
  8554. source: "./media/characters/goddess-elizabeth/foot.svg"
  8555. }
  8556. },
  8557. mouth: {
  8558. height: math.unit(6, "feet"),
  8559. name: "Mouth",
  8560. image: {
  8561. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8562. }
  8563. },
  8564. },
  8565. [
  8566. {
  8567. name: "Micro",
  8568. height: math.unit(12, "feet")
  8569. },
  8570. {
  8571. name: "Normal",
  8572. height: math.unit(80, "miles"),
  8573. default: true
  8574. },
  8575. {
  8576. name: "Macro",
  8577. height: math.unit(15000, "parsecs")
  8578. },
  8579. ]
  8580. ))
  8581. characterMakers.push(() => makeCharacter(
  8582. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8583. {
  8584. front: {
  8585. height: math.unit(5 + 9 / 12, "feet"),
  8586. weight: math.unit(144, "lb"),
  8587. name: "Front",
  8588. image: {
  8589. source: "./media/characters/kara/front.svg"
  8590. }
  8591. },
  8592. feet: {
  8593. height: math.unit(6 / 6.765, "feet"),
  8594. name: "Kara's Feet",
  8595. rename: true,
  8596. image: {
  8597. source: "./media/characters/kara/feet.svg"
  8598. }
  8599. },
  8600. },
  8601. [
  8602. {
  8603. name: "Normal",
  8604. height: math.unit(5 + 9 / 12, "feet")
  8605. },
  8606. {
  8607. name: "Macro",
  8608. height: math.unit(174, "feet"),
  8609. default: true
  8610. },
  8611. ]
  8612. ))
  8613. characterMakers.push(() => makeCharacter(
  8614. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8615. {
  8616. front: {
  8617. height: math.unit(18, "feet"),
  8618. weight: math.unit(4050, "lb"),
  8619. name: "Front",
  8620. image: {
  8621. source: "./media/characters/tyrone/front.svg",
  8622. extra: 2405 / 2270,
  8623. bottom: 182 / 2587
  8624. }
  8625. },
  8626. },
  8627. [
  8628. {
  8629. name: "Normal",
  8630. height: math.unit(18, "feet"),
  8631. default: true
  8632. },
  8633. {
  8634. name: "Macro",
  8635. height: math.unit(300, "feet")
  8636. },
  8637. {
  8638. name: "Megamacro",
  8639. height: math.unit(15, "km")
  8640. },
  8641. {
  8642. name: "Gigamacro",
  8643. height: math.unit(500, "km")
  8644. },
  8645. {
  8646. name: "Teramacro",
  8647. height: math.unit(0.5, "gigameters")
  8648. },
  8649. {
  8650. name: "Omnimacro",
  8651. height: math.unit(1e252, "yottauniverse")
  8652. },
  8653. ]
  8654. ))
  8655. characterMakers.push(() => makeCharacter(
  8656. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8657. {
  8658. front: {
  8659. height: math.unit(7 + 8 / 12, "feet"),
  8660. weight: math.unit(120, "lb"),
  8661. name: "Front",
  8662. image: {
  8663. source: "./media/characters/danny/front.svg",
  8664. extra: 1490 / 1350
  8665. }
  8666. },
  8667. back: {
  8668. height: math.unit(7 + 8 / 12, "feet"),
  8669. weight: math.unit(120, "lb"),
  8670. name: "Back",
  8671. image: {
  8672. source: "./media/characters/danny/back.svg",
  8673. extra: 1490 / 1350
  8674. }
  8675. },
  8676. },
  8677. [
  8678. {
  8679. name: "Normal",
  8680. height: math.unit(7 + 8 / 12, "feet"),
  8681. default: true
  8682. },
  8683. ]
  8684. ))
  8685. characterMakers.push(() => makeCharacter(
  8686. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8687. {
  8688. front: {
  8689. height: math.unit(3.5, "inches"),
  8690. weight: math.unit(19, "grams"),
  8691. name: "Front",
  8692. image: {
  8693. source: "./media/characters/mallow/front.svg",
  8694. extra: 471 / 431
  8695. }
  8696. },
  8697. back: {
  8698. height: math.unit(3.5, "inches"),
  8699. weight: math.unit(19, "grams"),
  8700. name: "Back",
  8701. image: {
  8702. source: "./media/characters/mallow/back.svg",
  8703. extra: 471 / 431
  8704. }
  8705. },
  8706. },
  8707. [
  8708. {
  8709. name: "Normal",
  8710. height: math.unit(3.5, "inches"),
  8711. default: true
  8712. },
  8713. ]
  8714. ))
  8715. characterMakers.push(() => makeCharacter(
  8716. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8717. {
  8718. front: {
  8719. height: math.unit(9, "feet"),
  8720. weight: math.unit(230, "kg"),
  8721. name: "Front",
  8722. image: {
  8723. source: "./media/characters/starry-aqua/front.svg"
  8724. }
  8725. },
  8726. back: {
  8727. height: math.unit(9, "feet"),
  8728. weight: math.unit(230, "kg"),
  8729. name: "Back",
  8730. image: {
  8731. source: "./media/characters/starry-aqua/back.svg"
  8732. }
  8733. },
  8734. hand: {
  8735. height: math.unit(9 * 0.1168, "feet"),
  8736. name: "Hand",
  8737. image: {
  8738. source: "./media/characters/starry-aqua/hand.svg"
  8739. }
  8740. },
  8741. foot: {
  8742. height: math.unit(9 * 0.18, "feet"),
  8743. name: "Foot",
  8744. image: {
  8745. source: "./media/characters/starry-aqua/foot.svg"
  8746. }
  8747. }
  8748. },
  8749. [
  8750. {
  8751. name: "Micro",
  8752. height: math.unit(3, "inches")
  8753. },
  8754. {
  8755. name: "Normal",
  8756. height: math.unit(9, "feet")
  8757. },
  8758. {
  8759. name: "Macro",
  8760. height: math.unit(300, "feet"),
  8761. default: true
  8762. },
  8763. {
  8764. name: "Megamacro",
  8765. height: math.unit(3200, "feet")
  8766. }
  8767. ]
  8768. ))
  8769. characterMakers.push(() => makeCharacter(
  8770. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8771. {
  8772. front: {
  8773. height: math.unit(6, "feet"),
  8774. weight: math.unit(230, "lb"),
  8775. name: "Front",
  8776. image: {
  8777. source: "./media/characters/luka/front.svg",
  8778. extra: 1,
  8779. bottom: 0.025
  8780. }
  8781. },
  8782. },
  8783. [
  8784. {
  8785. name: "Normal",
  8786. height: math.unit(12 + 8 / 12, "feet"),
  8787. default: true
  8788. },
  8789. {
  8790. name: "Minimacro",
  8791. height: math.unit(20, "feet")
  8792. },
  8793. {
  8794. name: "Macro",
  8795. height: math.unit(250, "feet")
  8796. },
  8797. {
  8798. name: "Megamacro",
  8799. height: math.unit(5, "miles")
  8800. },
  8801. {
  8802. name: "Gigamacro",
  8803. height: math.unit(8000, "miles")
  8804. },
  8805. ]
  8806. ))
  8807. characterMakers.push(() => makeCharacter(
  8808. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8809. {
  8810. front: {
  8811. height: math.unit(6, "feet"),
  8812. weight: math.unit(150, "lb"),
  8813. name: "Front",
  8814. image: {
  8815. source: "./media/characters/natalie-nightring/front.svg",
  8816. extra: 1,
  8817. bottom: 0.06
  8818. }
  8819. },
  8820. },
  8821. [
  8822. {
  8823. name: "Uh Oh",
  8824. height: math.unit(0.1, "mm")
  8825. },
  8826. {
  8827. name: "Small",
  8828. height: math.unit(3, "inches")
  8829. },
  8830. {
  8831. name: "Human Scale",
  8832. height: math.unit(6, "feet")
  8833. },
  8834. {
  8835. name: "Librarian",
  8836. height: math.unit(50, "feet"),
  8837. default: true
  8838. },
  8839. {
  8840. name: "Immense",
  8841. height: math.unit(200, "miles")
  8842. },
  8843. ]
  8844. ))
  8845. characterMakers.push(() => makeCharacter(
  8846. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8847. {
  8848. front: {
  8849. height: math.unit(6, "feet"),
  8850. weight: math.unit(180, "lbs"),
  8851. name: "Front",
  8852. image: {
  8853. source: "./media/characters/danni-rosie/front.svg",
  8854. extra: 1260 / 1128,
  8855. bottom: 0.022
  8856. }
  8857. },
  8858. },
  8859. [
  8860. {
  8861. name: "Micro",
  8862. height: math.unit(2, "inches"),
  8863. default: true
  8864. },
  8865. ]
  8866. ))
  8867. characterMakers.push(() => makeCharacter(
  8868. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8869. {
  8870. front: {
  8871. height: math.unit(5 + 9 / 12, "feet"),
  8872. weight: math.unit(220, "lb"),
  8873. name: "Front",
  8874. image: {
  8875. source: "./media/characters/samantha-kruse/front.svg",
  8876. extra: (985 / 935),
  8877. bottom: 0.03
  8878. }
  8879. },
  8880. frontUndressed: {
  8881. height: math.unit(5 + 9 / 12, "feet"),
  8882. weight: math.unit(220, "lb"),
  8883. name: "Front (Undressed)",
  8884. image: {
  8885. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8886. extra: (973 / 923),
  8887. bottom: 0.025
  8888. }
  8889. },
  8890. fat: {
  8891. height: math.unit(5 + 9 / 12, "feet"),
  8892. weight: math.unit(900, "lb"),
  8893. name: "Front (Fat)",
  8894. image: {
  8895. source: "./media/characters/samantha-kruse/fat.svg",
  8896. extra: 2688 / 2561
  8897. }
  8898. },
  8899. },
  8900. [
  8901. {
  8902. name: "Normal",
  8903. height: math.unit(5 + 9 / 12, "feet"),
  8904. default: true
  8905. }
  8906. ]
  8907. ))
  8908. characterMakers.push(() => makeCharacter(
  8909. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8910. {
  8911. back: {
  8912. height: math.unit(5 + 4 / 12, "feet"),
  8913. weight: math.unit(4963, "lb"),
  8914. name: "Back",
  8915. image: {
  8916. source: "./media/characters/amelia-rosie/back.svg",
  8917. extra: 1113 / 963,
  8918. bottom: 0.01
  8919. }
  8920. },
  8921. },
  8922. [
  8923. {
  8924. name: "Level 0",
  8925. height: math.unit(5 + 4 / 12, "feet")
  8926. },
  8927. {
  8928. name: "Level 1",
  8929. height: math.unit(164597, "feet"),
  8930. default: true
  8931. },
  8932. {
  8933. name: "Level 2",
  8934. height: math.unit(956243, "miles")
  8935. },
  8936. {
  8937. name: "Level 3",
  8938. height: math.unit(29421709423, "miles")
  8939. },
  8940. {
  8941. name: "Level 4",
  8942. height: math.unit(154, "lightyears")
  8943. },
  8944. {
  8945. name: "Level 5",
  8946. height: math.unit(4738272, "lightyears")
  8947. },
  8948. {
  8949. name: "Level 6",
  8950. height: math.unit(145787152896, "lightyears")
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(5 + 11 / 12, "feet"),
  8959. weight: math.unit(65, "kg"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/rook-kitara/front.svg",
  8963. extra: 1347 / 1274,
  8964. bottom: 0.005
  8965. }
  8966. },
  8967. },
  8968. [
  8969. {
  8970. name: "Totally Unfair",
  8971. height: math.unit(1.8, "mm")
  8972. },
  8973. {
  8974. name: "Lap Rookie",
  8975. height: math.unit(1.4, "feet")
  8976. },
  8977. {
  8978. name: "Normal",
  8979. height: math.unit(5 + 11 / 12, "feet"),
  8980. default: true
  8981. },
  8982. {
  8983. name: "How Did This Happen",
  8984. height: math.unit(80, "miles")
  8985. }
  8986. ]
  8987. ))
  8988. characterMakers.push(() => makeCharacter(
  8989. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8990. {
  8991. front: {
  8992. height: math.unit(7, "feet"),
  8993. weight: math.unit(300, "lb"),
  8994. name: "Front",
  8995. image: {
  8996. source: "./media/characters/pisces/front.svg",
  8997. extra: 2255 / 2115,
  8998. bottom: 0.03
  8999. }
  9000. },
  9001. back: {
  9002. height: math.unit(7, "feet"),
  9003. weight: math.unit(300, "lb"),
  9004. name: "Back",
  9005. image: {
  9006. source: "./media/characters/pisces/back.svg",
  9007. extra: 2146 / 2055,
  9008. bottom: 0.04
  9009. }
  9010. },
  9011. },
  9012. [
  9013. {
  9014. name: "Normal",
  9015. height: math.unit(7, "feet"),
  9016. default: true
  9017. },
  9018. {
  9019. name: "Swimming Pool",
  9020. height: math.unit(12.2, "meters")
  9021. },
  9022. {
  9023. name: "Olympic Swimming Pool",
  9024. height: math.unit(56.3, "meters")
  9025. },
  9026. {
  9027. name: "Lake Superior",
  9028. height: math.unit(93900, "meters")
  9029. },
  9030. {
  9031. name: "Mediterranean Sea",
  9032. height: math.unit(644457, "meters")
  9033. },
  9034. {
  9035. name: "World's Oceans",
  9036. height: math.unit(4567491, "meters")
  9037. },
  9038. ]
  9039. ))
  9040. characterMakers.push(() => makeCharacter(
  9041. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9042. {
  9043. front: {
  9044. height: math.unit(2.3, "meters"),
  9045. weight: math.unit(120, "kg"),
  9046. name: "Front",
  9047. image: {
  9048. source: "./media/characters/zelas/front.svg"
  9049. }
  9050. },
  9051. side: {
  9052. height: math.unit(2.3, "meters"),
  9053. weight: math.unit(120, "kg"),
  9054. name: "Side",
  9055. image: {
  9056. source: "./media/characters/zelas/side.svg"
  9057. }
  9058. },
  9059. back: {
  9060. height: math.unit(2.3, "meters"),
  9061. weight: math.unit(120, "kg"),
  9062. name: "Back",
  9063. image: {
  9064. source: "./media/characters/zelas/back.svg"
  9065. }
  9066. },
  9067. foot: {
  9068. height: math.unit(1.116, "feet"),
  9069. name: "Foot",
  9070. image: {
  9071. source: "./media/characters/zelas/foot.svg"
  9072. }
  9073. },
  9074. },
  9075. [
  9076. {
  9077. name: "Normal",
  9078. height: math.unit(2.3, "meters")
  9079. },
  9080. {
  9081. name: "Macro",
  9082. height: math.unit(30, "meters"),
  9083. default: true
  9084. },
  9085. ]
  9086. ))
  9087. characterMakers.push(() => makeCharacter(
  9088. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9089. {
  9090. front: {
  9091. height: math.unit(1, "inch"),
  9092. weight: math.unit(0.21, "grams"),
  9093. name: "Front",
  9094. image: {
  9095. source: "./media/characters/talbot/front.svg",
  9096. extra: 594 / 544
  9097. }
  9098. },
  9099. },
  9100. [
  9101. {
  9102. name: "Micro",
  9103. height: math.unit(1, "inch"),
  9104. default: true
  9105. },
  9106. ]
  9107. ))
  9108. characterMakers.push(() => makeCharacter(
  9109. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9110. {
  9111. front: {
  9112. height: math.unit(3 + 3 / 12, "feet"),
  9113. weight: math.unit(51.8, "lb"),
  9114. name: "Front",
  9115. image: {
  9116. source: "./media/characters/fliss/front.svg",
  9117. extra: 840 / 640
  9118. }
  9119. },
  9120. },
  9121. [
  9122. {
  9123. name: "Teeny Tiny",
  9124. height: math.unit(1, "mm")
  9125. },
  9126. {
  9127. name: "Small",
  9128. height: math.unit(1, "inch"),
  9129. default: true
  9130. },
  9131. {
  9132. name: "Standard Sylveon",
  9133. height: math.unit(3 + 3 / 12, "feet")
  9134. },
  9135. {
  9136. name: "Large Nuisance",
  9137. height: math.unit(33, "feet")
  9138. },
  9139. {
  9140. name: "City Filler",
  9141. height: math.unit(3000, "feet")
  9142. },
  9143. {
  9144. name: "New Horizon",
  9145. height: math.unit(6000, "miles")
  9146. },
  9147. ]
  9148. ))
  9149. characterMakers.push(() => makeCharacter(
  9150. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9151. {
  9152. front: {
  9153. height: math.unit(5, "cm"),
  9154. weight: math.unit(1.94, "g"),
  9155. name: "Front",
  9156. image: {
  9157. source: "./media/characters/fleta/front.svg",
  9158. extra: 835 / 803
  9159. }
  9160. },
  9161. back: {
  9162. height: math.unit(5, "cm"),
  9163. weight: math.unit(1.94, "g"),
  9164. name: "Back",
  9165. image: {
  9166. source: "./media/characters/fleta/back.svg",
  9167. extra: 835 / 803
  9168. }
  9169. },
  9170. },
  9171. [
  9172. {
  9173. name: "Micro",
  9174. height: math.unit(5, "cm"),
  9175. default: true
  9176. },
  9177. ]
  9178. ))
  9179. characterMakers.push(() => makeCharacter(
  9180. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9181. {
  9182. front: {
  9183. height: math.unit(6, "feet"),
  9184. weight: math.unit(225, "lb"),
  9185. name: "Front",
  9186. image: {
  9187. source: "./media/characters/dominic/front.svg",
  9188. extra: 1770 / 1620,
  9189. bottom: 0.025
  9190. }
  9191. },
  9192. back: {
  9193. height: math.unit(6, "feet"),
  9194. weight: math.unit(225, "lb"),
  9195. name: "Back",
  9196. image: {
  9197. source: "./media/characters/dominic/back.svg",
  9198. extra: 1745 / 1620,
  9199. bottom: 0.065
  9200. }
  9201. },
  9202. },
  9203. [
  9204. {
  9205. name: "Nano",
  9206. height: math.unit(0.1, "mm")
  9207. },
  9208. {
  9209. name: "Micro-",
  9210. height: math.unit(1, "mm")
  9211. },
  9212. {
  9213. name: "Micro",
  9214. height: math.unit(4, "inches")
  9215. },
  9216. {
  9217. name: "Normal",
  9218. height: math.unit(6 + 4 / 12, "feet"),
  9219. default: true
  9220. },
  9221. {
  9222. name: "Macro",
  9223. height: math.unit(115, "feet")
  9224. },
  9225. {
  9226. name: "Macro+",
  9227. height: math.unit(955, "feet")
  9228. },
  9229. {
  9230. name: "Megamacro",
  9231. height: math.unit(8990, "feet")
  9232. },
  9233. {
  9234. name: "Gigmacro",
  9235. height: math.unit(9310, "miles")
  9236. },
  9237. {
  9238. name: "Teramacro",
  9239. height: math.unit(1567005010, "miles")
  9240. },
  9241. {
  9242. name: "Examacro",
  9243. height: math.unit(1425, "parsecs")
  9244. },
  9245. ]
  9246. ))
  9247. characterMakers.push(() => makeCharacter(
  9248. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9249. {
  9250. front: {
  9251. height: math.unit(400, "feet"),
  9252. weight: math.unit(44444444, "lb"),
  9253. name: "Front",
  9254. image: {
  9255. source: "./media/characters/major-colonel/front.svg"
  9256. }
  9257. },
  9258. back: {
  9259. height: math.unit(400, "feet"),
  9260. weight: math.unit(44444444, "lb"),
  9261. name: "Back",
  9262. image: {
  9263. source: "./media/characters/major-colonel/back.svg"
  9264. }
  9265. },
  9266. },
  9267. [
  9268. {
  9269. name: "Macro",
  9270. height: math.unit(400, "feet"),
  9271. default: true
  9272. },
  9273. ]
  9274. ))
  9275. characterMakers.push(() => makeCharacter(
  9276. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9277. {
  9278. catFront: {
  9279. height: math.unit(6, "feet"),
  9280. weight: math.unit(120, "lb"),
  9281. name: "Front (Cat Side)",
  9282. image: {
  9283. source: "./media/characters/axel-lycan/cat-front.svg",
  9284. extra: 430 / 402,
  9285. bottom: 43 / 472.35
  9286. }
  9287. },
  9288. catBack: {
  9289. height: math.unit(6, "feet"),
  9290. weight: math.unit(120, "lb"),
  9291. name: "Back (Cat Side)",
  9292. image: {
  9293. source: "./media/characters/axel-lycan/cat-back.svg",
  9294. extra: 447 / 419,
  9295. bottom: 23.3 / 469
  9296. }
  9297. },
  9298. wolfFront: {
  9299. height: math.unit(6, "feet"),
  9300. weight: math.unit(120, "lb"),
  9301. name: "Front (Wolf Side)",
  9302. image: {
  9303. source: "./media/characters/axel-lycan/wolf-front.svg",
  9304. extra: 485 / 456,
  9305. bottom: 19 / 504
  9306. }
  9307. },
  9308. wolfBack: {
  9309. height: math.unit(6, "feet"),
  9310. weight: math.unit(120, "lb"),
  9311. name: "Back (Wolf Side)",
  9312. image: {
  9313. source: "./media/characters/axel-lycan/wolf-back.svg",
  9314. extra: 475 / 438,
  9315. bottom: 39.2 / 514
  9316. }
  9317. },
  9318. },
  9319. [
  9320. {
  9321. name: "Macro",
  9322. height: math.unit(1, "km"),
  9323. default: true
  9324. },
  9325. ]
  9326. ))
  9327. characterMakers.push(() => makeCharacter(
  9328. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9329. {
  9330. front: {
  9331. height: math.unit(5 + 9 / 12, "feet"),
  9332. weight: math.unit(175, "lb"),
  9333. name: "Front",
  9334. image: {
  9335. source: "./media/characters/vanrel-hyena/front.svg",
  9336. extra: 1086 / 1010,
  9337. bottom: 0.04
  9338. }
  9339. },
  9340. },
  9341. [
  9342. {
  9343. name: "Normal",
  9344. height: math.unit(5 + 9 / 12, "feet"),
  9345. default: true
  9346. },
  9347. ]
  9348. ))
  9349. characterMakers.push(() => makeCharacter(
  9350. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9351. {
  9352. front: {
  9353. height: math.unit(6, "feet"),
  9354. weight: math.unit(103, "lb"),
  9355. name: "Front",
  9356. image: {
  9357. source: "./media/characters/abbott-absol/front.svg",
  9358. extra: 2010 / 1842
  9359. }
  9360. },
  9361. },
  9362. [
  9363. {
  9364. name: "Megamicro",
  9365. height: math.unit(0.1, "mm")
  9366. },
  9367. {
  9368. name: "Micro",
  9369. height: math.unit(1, "inch")
  9370. },
  9371. {
  9372. name: "Normal",
  9373. height: math.unit(6, "feet"),
  9374. default: true
  9375. },
  9376. ]
  9377. ))
  9378. characterMakers.push(() => makeCharacter(
  9379. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9380. {
  9381. front: {
  9382. height: math.unit(6, "feet"),
  9383. weight: math.unit(264, "lb"),
  9384. name: "Front",
  9385. image: {
  9386. source: "./media/characters/hector/front.svg",
  9387. extra: 2280 / 2130,
  9388. bottom: 0.07
  9389. }
  9390. },
  9391. },
  9392. [
  9393. {
  9394. name: "Normal",
  9395. height: math.unit(12.25, "foot"),
  9396. default: true
  9397. },
  9398. {
  9399. name: "Macro",
  9400. height: math.unit(160, "feet")
  9401. },
  9402. ]
  9403. ))
  9404. characterMakers.push(() => makeCharacter(
  9405. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9406. {
  9407. front: {
  9408. height: math.unit(6, "feet"),
  9409. weight: math.unit(150, "lb"),
  9410. name: "Front",
  9411. image: {
  9412. source: "./media/characters/sal/front.svg",
  9413. extra: 1846 / 1699,
  9414. bottom: 0.04
  9415. }
  9416. },
  9417. },
  9418. [
  9419. {
  9420. name: "Megamacro",
  9421. height: math.unit(10, "miles"),
  9422. default: true
  9423. },
  9424. ]
  9425. ))
  9426. characterMakers.push(() => makeCharacter(
  9427. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9428. {
  9429. front: {
  9430. height: math.unit(3, "meters"),
  9431. weight: math.unit(450, "kg"),
  9432. name: "front",
  9433. image: {
  9434. source: "./media/characters/ranger/front.svg",
  9435. extra: 2401 / 2243,
  9436. bottom: 0.05
  9437. }
  9438. },
  9439. },
  9440. [
  9441. {
  9442. name: "Normal",
  9443. height: math.unit(3, "meters"),
  9444. default: true
  9445. },
  9446. ]
  9447. ))
  9448. characterMakers.push(() => makeCharacter(
  9449. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9450. {
  9451. front: {
  9452. height: math.unit(14, "feet"),
  9453. weight: math.unit(800, "kg"),
  9454. name: "Front",
  9455. image: {
  9456. source: "./media/characters/theresa/front.svg",
  9457. extra: 3575 / 3346,
  9458. bottom: 0.03
  9459. }
  9460. },
  9461. },
  9462. [
  9463. {
  9464. name: "Normal",
  9465. height: math.unit(14, "feet"),
  9466. default: true
  9467. },
  9468. ]
  9469. ))
  9470. characterMakers.push(() => makeCharacter(
  9471. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9472. {
  9473. front: {
  9474. height: math.unit(6, "feet"),
  9475. weight: math.unit(3, "kg"),
  9476. name: "Front",
  9477. image: {
  9478. source: "./media/characters/ine/front.svg",
  9479. extra: 678 / 539,
  9480. bottom: 0.023
  9481. }
  9482. },
  9483. },
  9484. [
  9485. {
  9486. name: "Normal",
  9487. height: math.unit(2.265, "feet"),
  9488. default: true
  9489. },
  9490. ]
  9491. ))
  9492. characterMakers.push(() => makeCharacter(
  9493. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9494. {
  9495. front: {
  9496. height: math.unit(5, "feet"),
  9497. weight: math.unit(30, "kg"),
  9498. name: "Front",
  9499. image: {
  9500. source: "./media/characters/vial/front.svg",
  9501. extra: 1365 / 1277,
  9502. bottom: 0.04
  9503. }
  9504. },
  9505. },
  9506. [
  9507. {
  9508. name: "Normal",
  9509. height: math.unit(5, "feet"),
  9510. default: true
  9511. },
  9512. ]
  9513. ))
  9514. characterMakers.push(() => makeCharacter(
  9515. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9516. {
  9517. side: {
  9518. height: math.unit(3.4, "meters"),
  9519. weight: math.unit(1000, "lb"),
  9520. name: "Side",
  9521. image: {
  9522. source: "./media/characters/rovoska/side.svg",
  9523. extra: 4403 / 1515
  9524. }
  9525. },
  9526. },
  9527. [
  9528. {
  9529. name: "Normal",
  9530. height: math.unit(3.4, "meters"),
  9531. default: true
  9532. },
  9533. ]
  9534. ))
  9535. characterMakers.push(() => makeCharacter(
  9536. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9537. {
  9538. front: {
  9539. height: math.unit(8, "feet"),
  9540. weight: math.unit(315, "lb"),
  9541. name: "Front",
  9542. image: {
  9543. source: "./media/characters/gunner-rotthbauer/front.svg"
  9544. }
  9545. },
  9546. back: {
  9547. height: math.unit(8, "feet"),
  9548. weight: math.unit(315, "lb"),
  9549. name: "Back",
  9550. image: {
  9551. source: "./media/characters/gunner-rotthbauer/back.svg"
  9552. }
  9553. },
  9554. },
  9555. [
  9556. {
  9557. name: "Micro",
  9558. height: math.unit(3.5, "inches")
  9559. },
  9560. {
  9561. name: "Normal",
  9562. height: math.unit(8, "feet"),
  9563. default: true
  9564. },
  9565. {
  9566. name: "Macro",
  9567. height: math.unit(250, "feet")
  9568. },
  9569. {
  9570. name: "Megamacro",
  9571. height: math.unit(1, "AU")
  9572. },
  9573. ]
  9574. ))
  9575. characterMakers.push(() => makeCharacter(
  9576. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9577. {
  9578. front: {
  9579. height: math.unit(5 + 5 / 12, "feet"),
  9580. weight: math.unit(140, "lb"),
  9581. name: "Front",
  9582. image: {
  9583. source: "./media/characters/allatia/front.svg",
  9584. extra: 1227 / 1180,
  9585. bottom: 0.027
  9586. }
  9587. },
  9588. },
  9589. [
  9590. {
  9591. name: "Normal",
  9592. height: math.unit(5 + 5 / 12, "feet")
  9593. },
  9594. {
  9595. name: "Macro",
  9596. height: math.unit(250, "feet"),
  9597. default: true
  9598. },
  9599. {
  9600. name: "Megamacro",
  9601. height: math.unit(8, "miles")
  9602. }
  9603. ]
  9604. ))
  9605. characterMakers.push(() => makeCharacter(
  9606. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9607. {
  9608. front: {
  9609. height: math.unit(6, "feet"),
  9610. weight: math.unit(120, "lb"),
  9611. name: "Front",
  9612. image: {
  9613. source: "./media/characters/tene/front.svg",
  9614. extra: 1728 / 1578,
  9615. bottom: 0.022
  9616. }
  9617. },
  9618. stomping: {
  9619. height: math.unit(2.025, "meters"),
  9620. weight: math.unit(120, "lb"),
  9621. name: "Stomping",
  9622. image: {
  9623. source: "./media/characters/tene/stomping.svg",
  9624. extra: 938 / 873,
  9625. bottom: 0.01
  9626. }
  9627. },
  9628. sitting: {
  9629. height: math.unit(1, "meter"),
  9630. weight: math.unit(120, "lb"),
  9631. name: "Sitting",
  9632. image: {
  9633. source: "./media/characters/tene/sitting.svg",
  9634. extra: 437 / 415,
  9635. bottom: 0.1
  9636. }
  9637. },
  9638. feral: {
  9639. height: math.unit(3.9, "feet"),
  9640. weight: math.unit(250, "lb"),
  9641. name: "Feral",
  9642. image: {
  9643. source: "./media/characters/tene/feral.svg",
  9644. extra: 717 / 458,
  9645. bottom: 0.179
  9646. }
  9647. },
  9648. },
  9649. [
  9650. {
  9651. name: "Normal",
  9652. height: math.unit(6, "feet")
  9653. },
  9654. {
  9655. name: "Macro",
  9656. height: math.unit(300, "feet"),
  9657. default: true
  9658. },
  9659. {
  9660. name: "Megamacro",
  9661. height: math.unit(5, "miles")
  9662. },
  9663. ]
  9664. ))
  9665. characterMakers.push(() => makeCharacter(
  9666. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9667. {
  9668. side: {
  9669. height: math.unit(6, "feet"),
  9670. name: "Side",
  9671. image: {
  9672. source: "./media/characters/evander/side.svg",
  9673. extra: 877 / 477
  9674. }
  9675. },
  9676. },
  9677. [
  9678. {
  9679. name: "Normal",
  9680. height: math.unit(0.83, "meters"),
  9681. default: true
  9682. },
  9683. ]
  9684. ))
  9685. characterMakers.push(() => makeCharacter(
  9686. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9687. {
  9688. front: {
  9689. height: math.unit(12, "feet"),
  9690. weight: math.unit(1000, "lb"),
  9691. name: "Front",
  9692. image: {
  9693. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9694. extra: 1762 / 1611
  9695. }
  9696. },
  9697. back: {
  9698. height: math.unit(12, "feet"),
  9699. weight: math.unit(1000, "lb"),
  9700. name: "Back",
  9701. image: {
  9702. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9703. extra: 1762 / 1611
  9704. }
  9705. },
  9706. },
  9707. [
  9708. {
  9709. name: "Normal",
  9710. height: math.unit(12, "feet"),
  9711. default: true
  9712. },
  9713. {
  9714. name: "Kaiju",
  9715. height: math.unit(150, "feet")
  9716. },
  9717. ]
  9718. ))
  9719. characterMakers.push(() => makeCharacter(
  9720. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9721. {
  9722. front: {
  9723. height: math.unit(6, "feet"),
  9724. weight: math.unit(150, "lb"),
  9725. name: "Front",
  9726. image: {
  9727. source: "./media/characters/zero-alurus/front.svg"
  9728. }
  9729. },
  9730. back: {
  9731. height: math.unit(6, "feet"),
  9732. weight: math.unit(150, "lb"),
  9733. name: "Back",
  9734. image: {
  9735. source: "./media/characters/zero-alurus/back.svg"
  9736. }
  9737. },
  9738. },
  9739. [
  9740. {
  9741. name: "Normal",
  9742. height: math.unit(5 + 10 / 12, "feet")
  9743. },
  9744. {
  9745. name: "Macro",
  9746. height: math.unit(60, "feet"),
  9747. default: true
  9748. },
  9749. {
  9750. name: "Macro+",
  9751. height: math.unit(450, "feet")
  9752. },
  9753. ]
  9754. ))
  9755. characterMakers.push(() => makeCharacter(
  9756. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9757. {
  9758. front: {
  9759. height: math.unit(6, "feet"),
  9760. weight: math.unit(200, "lb"),
  9761. name: "Front",
  9762. image: {
  9763. source: "./media/characters/mega-shi/front.svg",
  9764. extra: 1279 / 1250,
  9765. bottom: 0.02
  9766. }
  9767. },
  9768. back: {
  9769. height: math.unit(6, "feet"),
  9770. weight: math.unit(200, "lb"),
  9771. name: "Back",
  9772. image: {
  9773. source: "./media/characters/mega-shi/back.svg",
  9774. extra: 1279 / 1250,
  9775. bottom: 0.02
  9776. }
  9777. },
  9778. },
  9779. [
  9780. {
  9781. name: "Micro",
  9782. height: math.unit(16 + 6 / 12, "feet")
  9783. },
  9784. {
  9785. name: "Third Dimension",
  9786. height: math.unit(40, "meters")
  9787. },
  9788. {
  9789. name: "Normal",
  9790. height: math.unit(660, "feet"),
  9791. default: true
  9792. },
  9793. {
  9794. name: "Megamacro",
  9795. height: math.unit(10, "miles")
  9796. },
  9797. {
  9798. name: "Planetary Launch",
  9799. height: math.unit(500, "miles")
  9800. },
  9801. {
  9802. name: "Interstellar",
  9803. height: math.unit(1e9, "miles")
  9804. },
  9805. {
  9806. name: "Leaving the Universe",
  9807. height: math.unit(1, "gigaparsec")
  9808. },
  9809. {
  9810. name: "Travelling Universes",
  9811. height: math.unit(30e15, "parsecs")
  9812. },
  9813. ]
  9814. ))
  9815. characterMakers.push(() => makeCharacter(
  9816. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9817. {
  9818. front: {
  9819. height: math.unit(6, "feet"),
  9820. weight: math.unit(150, "lb"),
  9821. name: "Front",
  9822. image: {
  9823. source: "./media/characters/odyssey/front.svg",
  9824. extra: 1782 / 1582,
  9825. bottom: 0.01
  9826. }
  9827. },
  9828. side: {
  9829. height: math.unit(5.7, "feet"),
  9830. weight: math.unit(140, "lb"),
  9831. name: "Side",
  9832. image: {
  9833. source: "./media/characters/odyssey/side.svg",
  9834. extra: 6462 / 5700
  9835. }
  9836. },
  9837. },
  9838. [
  9839. {
  9840. name: "Normal",
  9841. height: math.unit(5 + 4 / 12, "feet")
  9842. },
  9843. {
  9844. name: "Macro",
  9845. height: math.unit(1, "km")
  9846. },
  9847. {
  9848. name: "Megamacro",
  9849. height: math.unit(3000, "km")
  9850. },
  9851. {
  9852. name: "Gigamacro",
  9853. height: math.unit(1, "AU"),
  9854. default: true
  9855. },
  9856. {
  9857. name: "Omniversal",
  9858. height: math.unit(100e14, "lightyears")
  9859. },
  9860. ]
  9861. ))
  9862. characterMakers.push(() => makeCharacter(
  9863. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9864. {
  9865. front: {
  9866. height: math.unit(6, "feet"),
  9867. weight: math.unit(300, "lb"),
  9868. name: "Front",
  9869. image: {
  9870. source: "./media/characters/mekuto/front.svg",
  9871. extra: 921 / 832,
  9872. bottom: 0.03
  9873. }
  9874. },
  9875. hand: {
  9876. height: math.unit(6 / 10.24, "feet"),
  9877. name: "Hand",
  9878. image: {
  9879. source: "./media/characters/mekuto/hand.svg"
  9880. }
  9881. },
  9882. foot: {
  9883. height: math.unit(6 / 5.05, "feet"),
  9884. name: "Foot",
  9885. image: {
  9886. source: "./media/characters/mekuto/foot.svg"
  9887. }
  9888. },
  9889. },
  9890. [
  9891. {
  9892. name: "Minimicro",
  9893. height: math.unit(0.2, "inches")
  9894. },
  9895. {
  9896. name: "Micro",
  9897. height: math.unit(1.5, "inches")
  9898. },
  9899. {
  9900. name: "Normal",
  9901. height: math.unit(5 + 11 / 12, "feet"),
  9902. default: true
  9903. },
  9904. {
  9905. name: "Minimacro",
  9906. height: math.unit(17 + 9 / 12, "feet")
  9907. },
  9908. {
  9909. name: "Macro",
  9910. height: math.unit(177.5, "feet")
  9911. },
  9912. {
  9913. name: "Megamacro",
  9914. height: math.unit(152, "miles")
  9915. },
  9916. ]
  9917. ))
  9918. characterMakers.push(() => makeCharacter(
  9919. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9920. {
  9921. front: {
  9922. height: math.unit(6.5, "inches"),
  9923. weight: math.unit(13, "oz"),
  9924. name: "Front",
  9925. image: {
  9926. source: "./media/characters/dafydd-tomos/front.svg",
  9927. extra: 2990 / 2603,
  9928. bottom: 0.03
  9929. }
  9930. },
  9931. },
  9932. [
  9933. {
  9934. name: "Micro",
  9935. height: math.unit(6.5, "inches"),
  9936. default: true
  9937. },
  9938. ]
  9939. ))
  9940. characterMakers.push(() => makeCharacter(
  9941. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9942. {
  9943. front: {
  9944. height: math.unit(6, "feet"),
  9945. weight: math.unit(150, "lb"),
  9946. name: "Front",
  9947. image: {
  9948. source: "./media/characters/splinter/front.svg",
  9949. extra: 2990 / 2882,
  9950. bottom: 0.04
  9951. }
  9952. },
  9953. back: {
  9954. height: math.unit(6, "feet"),
  9955. weight: math.unit(150, "lb"),
  9956. name: "Back",
  9957. image: {
  9958. source: "./media/characters/splinter/back.svg",
  9959. extra: 2990 / 2882,
  9960. bottom: 0.04
  9961. }
  9962. },
  9963. },
  9964. [
  9965. {
  9966. name: "Normal",
  9967. height: math.unit(6, "feet")
  9968. },
  9969. {
  9970. name: "Macro",
  9971. height: math.unit(230, "meters"),
  9972. default: true
  9973. },
  9974. ]
  9975. ))
  9976. characterMakers.push(() => makeCharacter(
  9977. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9978. {
  9979. front: {
  9980. height: math.unit(4 + 10 / 12, "feet"),
  9981. weight: math.unit(480, "lb"),
  9982. name: "Front",
  9983. image: {
  9984. source: "./media/characters/snow-gabumon/front.svg",
  9985. extra: 1140 / 963,
  9986. bottom: 0.058
  9987. }
  9988. },
  9989. back: {
  9990. height: math.unit(4 + 10 / 12, "feet"),
  9991. weight: math.unit(480, "lb"),
  9992. name: "Back",
  9993. image: {
  9994. source: "./media/characters/snow-gabumon/back.svg",
  9995. extra: 1115 / 962,
  9996. bottom: 0.041
  9997. }
  9998. },
  9999. frontUndresed: {
  10000. height: math.unit(4 + 10 / 12, "feet"),
  10001. weight: math.unit(480, "lb"),
  10002. name: "Front (Undressed)",
  10003. image: {
  10004. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10005. extra: 1061 / 960,
  10006. bottom: 0.045
  10007. }
  10008. },
  10009. },
  10010. [
  10011. {
  10012. name: "Micro",
  10013. height: math.unit(1, "inch")
  10014. },
  10015. {
  10016. name: "Normal",
  10017. height: math.unit(4 + 10 / 12, "feet"),
  10018. default: true
  10019. },
  10020. {
  10021. name: "Macro",
  10022. height: math.unit(200, "feet")
  10023. },
  10024. {
  10025. name: "Megamacro",
  10026. height: math.unit(120, "miles")
  10027. },
  10028. {
  10029. name: "Gigamacro",
  10030. height: math.unit(9800, "miles")
  10031. },
  10032. ]
  10033. ))
  10034. characterMakers.push(() => makeCharacter(
  10035. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10036. {
  10037. front: {
  10038. height: math.unit(1.7, "meters"),
  10039. weight: math.unit(140, "lb"),
  10040. name: "Front",
  10041. image: {
  10042. source: "./media/characters/moody/front.svg",
  10043. extra: 3226 / 3007,
  10044. bottom: 0.087
  10045. }
  10046. },
  10047. },
  10048. [
  10049. {
  10050. name: "Micro",
  10051. height: math.unit(1, "mm")
  10052. },
  10053. {
  10054. name: "Normal",
  10055. height: math.unit(1.7, "meters"),
  10056. default: true
  10057. },
  10058. {
  10059. name: "Macro",
  10060. height: math.unit(80, "meters")
  10061. },
  10062. {
  10063. name: "Macro+",
  10064. height: math.unit(500, "meters")
  10065. },
  10066. ]
  10067. ))
  10068. characterMakers.push(() => makeCharacter(
  10069. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10070. {
  10071. front: {
  10072. height: math.unit(6, "feet"),
  10073. weight: math.unit(150, "lb"),
  10074. name: "Front",
  10075. image: {
  10076. source: "./media/characters/zyas/front.svg",
  10077. extra: 1180 / 1120,
  10078. bottom: 0.045
  10079. }
  10080. },
  10081. },
  10082. [
  10083. {
  10084. name: "Normal",
  10085. height: math.unit(10, "feet"),
  10086. default: true
  10087. },
  10088. {
  10089. name: "Macro",
  10090. height: math.unit(500, "feet")
  10091. },
  10092. {
  10093. name: "Megamacro",
  10094. height: math.unit(5, "miles")
  10095. },
  10096. {
  10097. name: "Teramacro",
  10098. height: math.unit(150000, "miles")
  10099. },
  10100. ]
  10101. ))
  10102. characterMakers.push(() => makeCharacter(
  10103. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10104. {
  10105. front: {
  10106. height: math.unit(6, "feet"),
  10107. weight: math.unit(150, "lb"),
  10108. name: "Front",
  10109. image: {
  10110. source: "./media/characters/cuon/front.svg",
  10111. extra: 1390 / 1320,
  10112. bottom: 0.008
  10113. }
  10114. },
  10115. },
  10116. [
  10117. {
  10118. name: "Micro",
  10119. height: math.unit(3, "inches")
  10120. },
  10121. {
  10122. name: "Normal",
  10123. height: math.unit(18 + 9 / 12, "feet"),
  10124. default: true
  10125. },
  10126. {
  10127. name: "Macro",
  10128. height: math.unit(360, "feet")
  10129. },
  10130. {
  10131. name: "Megamacro",
  10132. height: math.unit(360, "miles")
  10133. },
  10134. ]
  10135. ))
  10136. characterMakers.push(() => makeCharacter(
  10137. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10138. {
  10139. front: {
  10140. height: math.unit(2.4, "meters"),
  10141. weight: math.unit(70, "kg"),
  10142. name: "Front",
  10143. image: {
  10144. source: "./media/characters/nyanuxk/front.svg",
  10145. extra: 1172 / 1084,
  10146. bottom: 0.065
  10147. }
  10148. },
  10149. side: {
  10150. height: math.unit(2.4, "meters"),
  10151. weight: math.unit(70, "kg"),
  10152. name: "Side",
  10153. image: {
  10154. source: "./media/characters/nyanuxk/side.svg",
  10155. extra: 1190 / 1132,
  10156. bottom: 0.007
  10157. }
  10158. },
  10159. back: {
  10160. height: math.unit(2.4, "meters"),
  10161. weight: math.unit(70, "kg"),
  10162. name: "Back",
  10163. image: {
  10164. source: "./media/characters/nyanuxk/back.svg",
  10165. extra: 1200 / 1141,
  10166. bottom: 0.015
  10167. }
  10168. },
  10169. foot: {
  10170. height: math.unit(0.52, "meters"),
  10171. name: "Foot",
  10172. image: {
  10173. source: "./media/characters/nyanuxk/foot.svg"
  10174. }
  10175. },
  10176. },
  10177. [
  10178. {
  10179. name: "Micro",
  10180. height: math.unit(2, "cm")
  10181. },
  10182. {
  10183. name: "Normal",
  10184. height: math.unit(2.4, "meters"),
  10185. default: true
  10186. },
  10187. {
  10188. name: "Smaller Macro",
  10189. height: math.unit(120, "meters")
  10190. },
  10191. {
  10192. name: "Bigger Macro",
  10193. height: math.unit(1.2, "km")
  10194. },
  10195. {
  10196. name: "Megamacro",
  10197. height: math.unit(15, "kilometers")
  10198. },
  10199. {
  10200. name: "Gigamacro",
  10201. height: math.unit(2000, "km")
  10202. },
  10203. {
  10204. name: "Teramacro",
  10205. height: math.unit(500000, "km")
  10206. },
  10207. ]
  10208. ))
  10209. characterMakers.push(() => makeCharacter(
  10210. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10211. {
  10212. side: {
  10213. height: math.unit(6, "feet"),
  10214. name: "Side",
  10215. image: {
  10216. source: "./media/characters/ailbhe/side.svg",
  10217. extra: 757 / 464,
  10218. bottom: 0.041
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Normal",
  10225. height: math.unit(1.07, "meters"),
  10226. default: true
  10227. },
  10228. ]
  10229. ))
  10230. characterMakers.push(() => makeCharacter(
  10231. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10232. {
  10233. front: {
  10234. height: math.unit(6, "feet"),
  10235. weight: math.unit(120, "kg"),
  10236. name: "Front",
  10237. image: {
  10238. source: "./media/characters/zevulfius/front.svg",
  10239. extra: 965 / 903
  10240. }
  10241. },
  10242. side: {
  10243. height: math.unit(6, "feet"),
  10244. weight: math.unit(120, "kg"),
  10245. name: "Side",
  10246. image: {
  10247. source: "./media/characters/zevulfius/side.svg",
  10248. extra: 939 / 900
  10249. }
  10250. },
  10251. back: {
  10252. height: math.unit(6, "feet"),
  10253. weight: math.unit(120, "kg"),
  10254. name: "Back",
  10255. image: {
  10256. source: "./media/characters/zevulfius/back.svg",
  10257. extra: 918 / 854,
  10258. bottom: 0.005
  10259. }
  10260. },
  10261. foot: {
  10262. height: math.unit(6 / 3.72, "feet"),
  10263. name: "Foot",
  10264. image: {
  10265. source: "./media/characters/zevulfius/foot.svg"
  10266. }
  10267. },
  10268. },
  10269. [
  10270. {
  10271. name: "Macro",
  10272. height: math.unit(750, "meters")
  10273. },
  10274. {
  10275. name: "Megamacro",
  10276. height: math.unit(20, "km"),
  10277. default: true
  10278. },
  10279. {
  10280. name: "Gigamacro",
  10281. height: math.unit(2000, "km")
  10282. },
  10283. {
  10284. name: "Teramacro",
  10285. height: math.unit(250000, "km")
  10286. },
  10287. ]
  10288. ))
  10289. characterMakers.push(() => makeCharacter(
  10290. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10291. {
  10292. front: {
  10293. height: math.unit(100, "feet"),
  10294. weight: math.unit(350, "kg"),
  10295. name: "Front",
  10296. image: {
  10297. source: "./media/characters/rikes/front.svg",
  10298. extra: 1565 / 1483,
  10299. bottom: 0.017
  10300. }
  10301. },
  10302. },
  10303. [
  10304. {
  10305. name: "Macro",
  10306. height: math.unit(100, "feet"),
  10307. default: true
  10308. },
  10309. ]
  10310. ))
  10311. characterMakers.push(() => makeCharacter(
  10312. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10313. {
  10314. anthro: {
  10315. height: math.unit(8, "feet"),
  10316. weight: math.unit(120, "kg"),
  10317. name: "Anthro",
  10318. image: {
  10319. source: "./media/characters/adam-silver-mane/anthro.svg",
  10320. extra: 5743 / 5339,
  10321. bottom: 0.07
  10322. }
  10323. },
  10324. taur: {
  10325. height: math.unit(16, "feet"),
  10326. weight: math.unit(1500, "kg"),
  10327. name: "Taur",
  10328. image: {
  10329. source: "./media/characters/adam-silver-mane/taur.svg",
  10330. extra: 1713 / 1571,
  10331. bottom: 0.01
  10332. }
  10333. },
  10334. },
  10335. [
  10336. {
  10337. name: "Normal",
  10338. height: math.unit(8, "feet")
  10339. },
  10340. {
  10341. name: "Minimacro",
  10342. height: math.unit(80, "feet")
  10343. },
  10344. {
  10345. name: "Macro",
  10346. height: math.unit(800, "feet"),
  10347. default: true
  10348. },
  10349. {
  10350. name: "Megamacro",
  10351. height: math.unit(8000, "feet")
  10352. },
  10353. {
  10354. name: "Gigamacro",
  10355. height: math.unit(800, "miles")
  10356. },
  10357. {
  10358. name: "Teramacro",
  10359. height: math.unit(80000, "miles")
  10360. },
  10361. {
  10362. name: "Celestial",
  10363. height: math.unit(8e6, "miles")
  10364. },
  10365. {
  10366. name: "Star Dragon",
  10367. height: math.unit(800000, "parsecs")
  10368. },
  10369. {
  10370. name: "Godly",
  10371. height: math.unit(800, "teraparsecs")
  10372. },
  10373. ]
  10374. ))
  10375. characterMakers.push(() => makeCharacter(
  10376. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10377. {
  10378. front: {
  10379. height: math.unit(6, "feet"),
  10380. weight: math.unit(150, "lb"),
  10381. name: "Front",
  10382. image: {
  10383. source: "./media/characters/ky'owin/front.svg",
  10384. extra: 3888 / 3068,
  10385. bottom: 0.015
  10386. }
  10387. },
  10388. },
  10389. [
  10390. {
  10391. name: "Normal",
  10392. height: math.unit(6 + 8 / 12, "feet")
  10393. },
  10394. {
  10395. name: "Large",
  10396. height: math.unit(68, "feet")
  10397. },
  10398. {
  10399. name: "Macro",
  10400. height: math.unit(132, "feet")
  10401. },
  10402. {
  10403. name: "Macro+",
  10404. height: math.unit(340, "feet")
  10405. },
  10406. {
  10407. name: "Macro++",
  10408. height: math.unit(680, "feet"),
  10409. default: true
  10410. },
  10411. {
  10412. name: "Megamacro",
  10413. height: math.unit(1, "mile")
  10414. },
  10415. {
  10416. name: "Megamacro+",
  10417. height: math.unit(10, "miles")
  10418. },
  10419. ]
  10420. ))
  10421. characterMakers.push(() => makeCharacter(
  10422. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10423. {
  10424. front: {
  10425. height: math.unit(4, "feet"),
  10426. weight: math.unit(50, "lb"),
  10427. name: "Front",
  10428. image: {
  10429. source: "./media/characters/mal/front.svg",
  10430. extra: 785 / 724,
  10431. bottom: 0.07
  10432. }
  10433. },
  10434. },
  10435. [
  10436. {
  10437. name: "Micro",
  10438. height: math.unit(4, "inches")
  10439. },
  10440. {
  10441. name: "Normal",
  10442. height: math.unit(4, "feet"),
  10443. default: true
  10444. },
  10445. {
  10446. name: "Macro",
  10447. height: math.unit(200, "feet")
  10448. },
  10449. ]
  10450. ))
  10451. characterMakers.push(() => makeCharacter(
  10452. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10453. {
  10454. front: {
  10455. height: math.unit(6, "feet"),
  10456. weight: math.unit(150, "lb"),
  10457. name: "Front",
  10458. image: {
  10459. source: "./media/characters/jordan-deware/front.svg",
  10460. extra: 1191 / 1012
  10461. }
  10462. },
  10463. },
  10464. [
  10465. {
  10466. name: "Nano",
  10467. height: math.unit(0.01, "mm")
  10468. },
  10469. {
  10470. name: "Minimicro",
  10471. height: math.unit(1, "mm")
  10472. },
  10473. {
  10474. name: "Micro",
  10475. height: math.unit(0.5, "inches")
  10476. },
  10477. {
  10478. name: "Normal",
  10479. height: math.unit(4, "feet"),
  10480. default: true
  10481. },
  10482. {
  10483. name: "Minimacro",
  10484. height: math.unit(40, "meters")
  10485. },
  10486. {
  10487. name: "Small Macro",
  10488. height: math.unit(400, "meters")
  10489. },
  10490. {
  10491. name: "Macro",
  10492. height: math.unit(4, "miles")
  10493. },
  10494. {
  10495. name: "Megamacro",
  10496. height: math.unit(40, "miles")
  10497. },
  10498. {
  10499. name: "Megamacro+",
  10500. height: math.unit(400, "miles")
  10501. },
  10502. {
  10503. name: "Gigamacro",
  10504. height: math.unit(400000, "miles")
  10505. },
  10506. ]
  10507. ))
  10508. characterMakers.push(() => makeCharacter(
  10509. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10510. {
  10511. side: {
  10512. height: math.unit(6, "feet"),
  10513. weight: math.unit(150, "lb"),
  10514. name: "Side",
  10515. image: {
  10516. source: "./media/characters/kimiko/side.svg",
  10517. extra: 600 / 358
  10518. }
  10519. },
  10520. },
  10521. [
  10522. {
  10523. name: "Normal",
  10524. height: math.unit(15, "feet"),
  10525. default: true
  10526. },
  10527. {
  10528. name: "Macro",
  10529. height: math.unit(220, "feet")
  10530. },
  10531. {
  10532. name: "Macro+",
  10533. height: math.unit(1450, "feet")
  10534. },
  10535. {
  10536. name: "Megamacro",
  10537. height: math.unit(11500, "feet")
  10538. },
  10539. {
  10540. name: "Gigamacro",
  10541. height: math.unit(9500, "miles")
  10542. },
  10543. {
  10544. name: "Teramacro",
  10545. height: math.unit(2208005005, "miles")
  10546. },
  10547. {
  10548. name: "Examacro",
  10549. height: math.unit(2750, "parsecs")
  10550. },
  10551. {
  10552. name: "Zettamacro",
  10553. height: math.unit(101500, "parsecs")
  10554. },
  10555. ]
  10556. ))
  10557. characterMakers.push(() => makeCharacter(
  10558. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10559. {
  10560. front: {
  10561. height: math.unit(6, "feet"),
  10562. weight: math.unit(70, "kg"),
  10563. name: "Front",
  10564. image: {
  10565. source: "./media/characters/andrew-sleepy/front.svg"
  10566. }
  10567. },
  10568. side: {
  10569. height: math.unit(6, "feet"),
  10570. weight: math.unit(70, "kg"),
  10571. name: "Side",
  10572. image: {
  10573. source: "./media/characters/andrew-sleepy/side.svg"
  10574. }
  10575. },
  10576. },
  10577. [
  10578. {
  10579. name: "Micro",
  10580. height: math.unit(1, "mm"),
  10581. default: true
  10582. },
  10583. ]
  10584. ))
  10585. characterMakers.push(() => makeCharacter(
  10586. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10587. {
  10588. front: {
  10589. height: math.unit(6, "feet"),
  10590. weight: math.unit(150, "lb"),
  10591. name: "Front",
  10592. image: {
  10593. source: "./media/characters/judio/front.svg",
  10594. extra: 1258 / 1110
  10595. }
  10596. },
  10597. },
  10598. [
  10599. {
  10600. name: "Normal",
  10601. height: math.unit(5 + 6 / 12, "feet")
  10602. },
  10603. {
  10604. name: "Macro",
  10605. height: math.unit(1000, "feet"),
  10606. default: true
  10607. },
  10608. {
  10609. name: "Megamacro",
  10610. height: math.unit(10, "miles")
  10611. },
  10612. ]
  10613. ))
  10614. characterMakers.push(() => makeCharacter(
  10615. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10616. {
  10617. front: {
  10618. height: math.unit(6, "feet"),
  10619. weight: math.unit(68, "kg"),
  10620. name: "Front",
  10621. image: {
  10622. source: "./media/characters/nomaxice/front.svg",
  10623. extra: 1498 / 1073,
  10624. bottom: 0.075
  10625. }
  10626. },
  10627. foot: {
  10628. height: math.unit(1.1, "feet"),
  10629. name: "Foot",
  10630. image: {
  10631. source: "./media/characters/nomaxice/foot.svg"
  10632. }
  10633. },
  10634. },
  10635. [
  10636. {
  10637. name: "Micro",
  10638. height: math.unit(8, "cm")
  10639. },
  10640. {
  10641. name: "Norm",
  10642. height: math.unit(1.82, "m")
  10643. },
  10644. {
  10645. name: "Norm+",
  10646. height: math.unit(8.8, "feet")
  10647. },
  10648. {
  10649. name: "Big",
  10650. height: math.unit(8, "meters"),
  10651. default: true
  10652. },
  10653. {
  10654. name: "Macro",
  10655. height: math.unit(18, "meters")
  10656. },
  10657. {
  10658. name: "Macro+",
  10659. height: math.unit(88, "meters")
  10660. },
  10661. ]
  10662. ))
  10663. characterMakers.push(() => makeCharacter(
  10664. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10665. {
  10666. front: {
  10667. height: math.unit(12, "feet"),
  10668. weight: math.unit(1.5, "tons"),
  10669. name: "Front",
  10670. image: {
  10671. source: "./media/characters/dydros/front.svg",
  10672. extra: 863 / 800,
  10673. bottom: 0.015
  10674. }
  10675. },
  10676. back: {
  10677. height: math.unit(12, "feet"),
  10678. weight: math.unit(1.5, "tons"),
  10679. name: "Back",
  10680. image: {
  10681. source: "./media/characters/dydros/back.svg",
  10682. extra: 900 / 843,
  10683. bottom: 0.005
  10684. }
  10685. },
  10686. },
  10687. [
  10688. {
  10689. name: "Normal",
  10690. height: math.unit(12, "feet"),
  10691. default: true
  10692. },
  10693. ]
  10694. ))
  10695. characterMakers.push(() => makeCharacter(
  10696. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10697. {
  10698. front: {
  10699. height: math.unit(6, "feet"),
  10700. weight: math.unit(100, "kg"),
  10701. name: "Front",
  10702. image: {
  10703. source: "./media/characters/riggi/front.svg",
  10704. extra: 5787 / 5303
  10705. }
  10706. },
  10707. hyper: {
  10708. height: math.unit(6 * 5 / 3, "feet"),
  10709. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10710. name: "Hyper",
  10711. image: {
  10712. source: "./media/characters/riggi/hyper.svg",
  10713. extra: 3595 / 3485
  10714. }
  10715. },
  10716. },
  10717. [
  10718. {
  10719. name: "Small Macro",
  10720. height: math.unit(50, "feet")
  10721. },
  10722. {
  10723. name: "Default",
  10724. height: math.unit(200, "feet"),
  10725. default: true
  10726. },
  10727. {
  10728. name: "Loom",
  10729. height: math.unit(10000, "feet")
  10730. },
  10731. {
  10732. name: "Cruising Altitude",
  10733. height: math.unit(30000, "feet")
  10734. },
  10735. {
  10736. name: "Megamacro",
  10737. height: math.unit(100, "miles")
  10738. },
  10739. {
  10740. name: "Continent Sized",
  10741. height: math.unit(2800, "miles")
  10742. },
  10743. {
  10744. name: "Earth Sized",
  10745. height: math.unit(8000, "miles")
  10746. },
  10747. ]
  10748. ))
  10749. characterMakers.push(() => makeCharacter(
  10750. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10751. {
  10752. front: {
  10753. height: math.unit(6, "feet"),
  10754. weight: math.unit(250, "lb"),
  10755. name: "Front",
  10756. image: {
  10757. source: "./media/characters/alexi/front.svg",
  10758. extra: 3483 / 3291,
  10759. bottom: 0.04
  10760. }
  10761. },
  10762. back: {
  10763. height: math.unit(6, "feet"),
  10764. weight: math.unit(250, "lb"),
  10765. name: "Back",
  10766. image: {
  10767. source: "./media/characters/alexi/back.svg",
  10768. extra: 3533 / 3356,
  10769. bottom: 0.021
  10770. }
  10771. },
  10772. frontTransforming: {
  10773. height: math.unit(8.58, "feet"),
  10774. weight: math.unit(1300, "lb"),
  10775. name: "Transforming",
  10776. image: {
  10777. source: "./media/characters/alexi/front-transforming.svg",
  10778. extra: 437 / 409,
  10779. bottom: 19 / 458.66
  10780. }
  10781. },
  10782. frontTransformed: {
  10783. height: math.unit(12.5, "feet"),
  10784. weight: math.unit(4000, "lb"),
  10785. name: "Transformed",
  10786. image: {
  10787. source: "./media/characters/alexi/front-transformed.svg",
  10788. extra: 639 / 614,
  10789. bottom: 30.55 / 671
  10790. }
  10791. },
  10792. },
  10793. [
  10794. {
  10795. name: "Normal",
  10796. height: math.unit(14, "feet"),
  10797. default: true
  10798. },
  10799. {
  10800. name: "Minimacro",
  10801. height: math.unit(30, "meters")
  10802. },
  10803. {
  10804. name: "Macro",
  10805. height: math.unit(500, "meters")
  10806. },
  10807. {
  10808. name: "Megamacro",
  10809. height: math.unit(9000, "km")
  10810. },
  10811. {
  10812. name: "Teramacro",
  10813. height: math.unit(384000, "km")
  10814. },
  10815. ]
  10816. ))
  10817. characterMakers.push(() => makeCharacter(
  10818. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10819. {
  10820. front: {
  10821. height: math.unit(6, "feet"),
  10822. weight: math.unit(150, "lb"),
  10823. name: "Front",
  10824. image: {
  10825. source: "./media/characters/kayroo/front.svg",
  10826. extra: 1153 / 1038,
  10827. bottom: 0.06
  10828. }
  10829. },
  10830. foot: {
  10831. height: math.unit(6, "feet"),
  10832. weight: math.unit(150, "lb"),
  10833. name: "Foot",
  10834. image: {
  10835. source: "./media/characters/kayroo/foot.svg"
  10836. }
  10837. },
  10838. },
  10839. [
  10840. {
  10841. name: "Normal",
  10842. height: math.unit(8, "feet"),
  10843. default: true
  10844. },
  10845. {
  10846. name: "Minimacro",
  10847. height: math.unit(250, "feet")
  10848. },
  10849. {
  10850. name: "Macro",
  10851. height: math.unit(2800, "feet")
  10852. },
  10853. {
  10854. name: "Megamacro",
  10855. height: math.unit(5200, "feet")
  10856. },
  10857. {
  10858. name: "Gigamacro",
  10859. height: math.unit(27000, "feet")
  10860. },
  10861. {
  10862. name: "Omega",
  10863. height: math.unit(45000, "feet")
  10864. },
  10865. ]
  10866. ))
  10867. characterMakers.push(() => makeCharacter(
  10868. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10869. {
  10870. front: {
  10871. height: math.unit(18, "feet"),
  10872. weight: math.unit(5800, "lb"),
  10873. name: "Front",
  10874. image: {
  10875. source: "./media/characters/rhys/front.svg",
  10876. extra: 3386 / 3090,
  10877. bottom: 0.07
  10878. }
  10879. },
  10880. },
  10881. [
  10882. {
  10883. name: "Normal",
  10884. height: math.unit(18, "feet"),
  10885. default: true
  10886. },
  10887. {
  10888. name: "Working Size",
  10889. height: math.unit(200, "feet")
  10890. },
  10891. {
  10892. name: "Demolition Size",
  10893. height: math.unit(2000, "feet")
  10894. },
  10895. {
  10896. name: "Maximum Licensed Size",
  10897. height: math.unit(5, "miles")
  10898. },
  10899. {
  10900. name: "Maximum Observed Size",
  10901. height: math.unit(10, "yottameters")
  10902. },
  10903. ]
  10904. ))
  10905. characterMakers.push(() => makeCharacter(
  10906. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10907. {
  10908. front: {
  10909. height: math.unit(6, "feet"),
  10910. weight: math.unit(250, "lb"),
  10911. name: "Front",
  10912. image: {
  10913. source: "./media/characters/toto/front.svg",
  10914. extra: 527 / 479,
  10915. bottom: 0.05
  10916. }
  10917. },
  10918. },
  10919. [
  10920. {
  10921. name: "Micro",
  10922. height: math.unit(3, "feet")
  10923. },
  10924. {
  10925. name: "Normal",
  10926. height: math.unit(10, "feet")
  10927. },
  10928. {
  10929. name: "Macro",
  10930. height: math.unit(150, "feet"),
  10931. default: true
  10932. },
  10933. {
  10934. name: "Megamacro",
  10935. height: math.unit(1200, "feet")
  10936. },
  10937. ]
  10938. ))
  10939. characterMakers.push(() => makeCharacter(
  10940. { name: "King", species: ["lion"], tags: ["anthro"] },
  10941. {
  10942. back: {
  10943. height: math.unit(6, "feet"),
  10944. weight: math.unit(150, "lb"),
  10945. name: "Back",
  10946. image: {
  10947. source: "./media/characters/king/back.svg"
  10948. }
  10949. },
  10950. },
  10951. [
  10952. {
  10953. name: "Micro",
  10954. height: math.unit(2, "inches")
  10955. },
  10956. {
  10957. name: "Normal",
  10958. height: math.unit(8, "feet")
  10959. },
  10960. {
  10961. name: "Macro",
  10962. height: math.unit(200, "feet"),
  10963. default: true
  10964. },
  10965. {
  10966. name: "Megamacro",
  10967. height: math.unit(50, "miles")
  10968. },
  10969. ]
  10970. ))
  10971. characterMakers.push(() => makeCharacter(
  10972. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10973. {
  10974. anthro: {
  10975. height: math.unit(6 + 5 / 12, "feet"),
  10976. weight: math.unit(280, "lb"),
  10977. name: "Anthro",
  10978. image: {
  10979. source: "./media/characters/cordite/anthro.svg",
  10980. extra: 1986 / 1905,
  10981. bottom: 0.025
  10982. }
  10983. },
  10984. feral: {
  10985. height: math.unit(2, "feet"),
  10986. weight: math.unit(90, "lb"),
  10987. name: "Feral",
  10988. image: {
  10989. source: "./media/characters/cordite/feral.svg",
  10990. extra: 1260 / 755,
  10991. bottom: 0.05
  10992. }
  10993. },
  10994. },
  10995. [
  10996. {
  10997. name: "Normal",
  10998. height: math.unit(6 + 5 / 12, "feet"),
  10999. default: true
  11000. },
  11001. ]
  11002. ))
  11003. characterMakers.push(() => makeCharacter(
  11004. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11005. {
  11006. front: {
  11007. height: math.unit(6, "feet"),
  11008. weight: math.unit(150, "lb"),
  11009. name: "Front",
  11010. image: {
  11011. source: "./media/characters/pianostrong/front.svg",
  11012. extra: 6577 / 6254,
  11013. bottom: 0.02
  11014. }
  11015. },
  11016. side: {
  11017. height: math.unit(6, "feet"),
  11018. weight: math.unit(150, "lb"),
  11019. name: "Side",
  11020. image: {
  11021. source: "./media/characters/pianostrong/side.svg",
  11022. extra: 6106 / 5730
  11023. }
  11024. },
  11025. back: {
  11026. height: math.unit(6, "feet"),
  11027. weight: math.unit(150, "lb"),
  11028. name: "Back",
  11029. image: {
  11030. source: "./media/characters/pianostrong/back.svg",
  11031. extra: 6085 / 5733,
  11032. bottom: 0.01
  11033. }
  11034. },
  11035. },
  11036. [
  11037. {
  11038. name: "Macro",
  11039. height: math.unit(100, "feet")
  11040. },
  11041. {
  11042. name: "Macro+",
  11043. height: math.unit(300, "feet"),
  11044. default: true
  11045. },
  11046. {
  11047. name: "Macro++",
  11048. height: math.unit(1000, "feet")
  11049. },
  11050. ]
  11051. ))
  11052. characterMakers.push(() => makeCharacter(
  11053. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11054. {
  11055. front: {
  11056. height: math.unit(6, "feet"),
  11057. weight: math.unit(150, "lb"),
  11058. name: "Front",
  11059. image: {
  11060. source: "./media/characters/kona/front.svg",
  11061. extra: 2960 / 2629,
  11062. bottom: 0.005
  11063. }
  11064. },
  11065. },
  11066. [
  11067. {
  11068. name: "Normal",
  11069. height: math.unit(11 + 8 / 12, "feet")
  11070. },
  11071. {
  11072. name: "Macro",
  11073. height: math.unit(850, "feet"),
  11074. default: true
  11075. },
  11076. {
  11077. name: "Macro+",
  11078. height: math.unit(1.5, "km"),
  11079. default: true
  11080. },
  11081. {
  11082. name: "Megamacro",
  11083. height: math.unit(80, "miles")
  11084. },
  11085. {
  11086. name: "Gigamacro",
  11087. height: math.unit(3500, "miles")
  11088. },
  11089. ]
  11090. ))
  11091. characterMakers.push(() => makeCharacter(
  11092. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11093. {
  11094. side: {
  11095. height: math.unit(1.9, "meters"),
  11096. weight: math.unit(326, "kg"),
  11097. name: "Side",
  11098. image: {
  11099. source: "./media/characters/levi/side.svg",
  11100. extra: 1704 / 1334,
  11101. bottom: 0.02
  11102. }
  11103. },
  11104. },
  11105. [
  11106. {
  11107. name: "Normal",
  11108. height: math.unit(1.9, "meters"),
  11109. default: true
  11110. },
  11111. {
  11112. name: "Macro",
  11113. height: math.unit(20, "meters")
  11114. },
  11115. {
  11116. name: "Macro+",
  11117. height: math.unit(200, "meters")
  11118. },
  11119. {
  11120. name: "Megamacro",
  11121. height: math.unit(2, "km")
  11122. },
  11123. {
  11124. name: "Megamacro+",
  11125. height: math.unit(20, "km")
  11126. },
  11127. {
  11128. name: "Gigamacro",
  11129. height: math.unit(2500, "km")
  11130. },
  11131. {
  11132. name: "Gigamacro+",
  11133. height: math.unit(120000, "km")
  11134. },
  11135. {
  11136. name: "Teramacro",
  11137. height: math.unit(7.77e6, "km")
  11138. },
  11139. ]
  11140. ))
  11141. characterMakers.push(() => makeCharacter(
  11142. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11143. {
  11144. front: {
  11145. height: math.unit(6 + 4 / 12, "feet"),
  11146. weight: math.unit(188, "lb"),
  11147. name: "Front",
  11148. image: {
  11149. source: "./media/characters/bmc/front.svg",
  11150. extra: 1067 / 1022,
  11151. bottom: 0.047
  11152. }
  11153. },
  11154. },
  11155. [
  11156. {
  11157. name: "Human-sized",
  11158. height: math.unit(6 + 4 / 12, "feet")
  11159. },
  11160. {
  11161. name: "Small",
  11162. height: math.unit(250, "feet")
  11163. },
  11164. {
  11165. name: "Normal",
  11166. height: math.unit(1250, "feet"),
  11167. default: true
  11168. },
  11169. {
  11170. name: "Good Day",
  11171. height: math.unit(88, "miles")
  11172. },
  11173. {
  11174. name: "Largest Measured Size",
  11175. height: math.unit(11.2e6, "lightyears")
  11176. },
  11177. ]
  11178. ))
  11179. characterMakers.push(() => makeCharacter(
  11180. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11181. {
  11182. front: {
  11183. height: math.unit(20, "feet"),
  11184. weight: math.unit(2016, "kg"),
  11185. name: "Front",
  11186. image: {
  11187. source: "./media/characters/sven-the-kaiju/front.svg",
  11188. extra: 1277/1250,
  11189. bottom: 35/1312
  11190. }
  11191. },
  11192. mouth: {
  11193. height: math.unit(1.85, "feet"),
  11194. name: "Mouth",
  11195. image: {
  11196. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11197. }
  11198. },
  11199. },
  11200. [
  11201. {
  11202. name: "Fairy",
  11203. height: math.unit(6, "inches")
  11204. },
  11205. {
  11206. name: "Normal",
  11207. height: math.unit(20, "feet"),
  11208. default: true
  11209. },
  11210. {
  11211. name: "Rampage",
  11212. height: math.unit(200, "feet")
  11213. },
  11214. {
  11215. name: "Archfey Forest Guardian",
  11216. height: math.unit(1, "mile")
  11217. },
  11218. ]
  11219. ))
  11220. characterMakers.push(() => makeCharacter(
  11221. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11222. {
  11223. front: {
  11224. height: math.unit(4, "meters"),
  11225. weight: math.unit(2, "tons"),
  11226. name: "Front",
  11227. image: {
  11228. source: "./media/characters/marik/front.svg",
  11229. extra: 1057 / 1003,
  11230. bottom: 0.08
  11231. }
  11232. },
  11233. },
  11234. [
  11235. {
  11236. name: "Normal",
  11237. height: math.unit(4, "meters"),
  11238. default: true
  11239. },
  11240. {
  11241. name: "Macro",
  11242. height: math.unit(20, "meters")
  11243. },
  11244. {
  11245. name: "Megamacro",
  11246. height: math.unit(50, "km")
  11247. },
  11248. {
  11249. name: "Gigamacro",
  11250. height: math.unit(100, "km")
  11251. },
  11252. {
  11253. name: "Alpha Macro",
  11254. height: math.unit(7.88e7, "yottameters")
  11255. },
  11256. ]
  11257. ))
  11258. characterMakers.push(() => makeCharacter(
  11259. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11260. {
  11261. front: {
  11262. height: math.unit(6, "feet"),
  11263. weight: math.unit(110, "lb"),
  11264. name: "Front",
  11265. image: {
  11266. source: "./media/characters/mel/front.svg",
  11267. extra: 736 / 617,
  11268. bottom: 0.017
  11269. }
  11270. },
  11271. },
  11272. [
  11273. {
  11274. name: "Pico",
  11275. height: math.unit(3, "pm")
  11276. },
  11277. {
  11278. name: "Nano",
  11279. height: math.unit(3, "nm")
  11280. },
  11281. {
  11282. name: "Micro",
  11283. height: math.unit(0.3, "mm"),
  11284. default: true
  11285. },
  11286. {
  11287. name: "Micro+",
  11288. height: math.unit(3, "mm")
  11289. },
  11290. {
  11291. name: "Normal",
  11292. height: math.unit(5 + 10.5 / 12, "feet")
  11293. },
  11294. ]
  11295. ))
  11296. characterMakers.push(() => makeCharacter(
  11297. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11298. {
  11299. kaiju: {
  11300. height: math.unit(1.75, "meters"),
  11301. weight: math.unit(55, "kg"),
  11302. name: "Kaiju",
  11303. image: {
  11304. source: "./media/characters/lykonous/kaiju.svg",
  11305. extra: 1055 / 946,
  11306. bottom: 0.135
  11307. }
  11308. },
  11309. },
  11310. [
  11311. {
  11312. name: "Normal",
  11313. height: math.unit(2.5, "meters"),
  11314. default: true
  11315. },
  11316. {
  11317. name: "Kaiju Dragon",
  11318. height: math.unit(60, "meters")
  11319. },
  11320. {
  11321. name: "Mega Kaiju",
  11322. height: math.unit(120, "km")
  11323. },
  11324. {
  11325. name: "Giga Kaiju",
  11326. height: math.unit(200, "megameters")
  11327. },
  11328. {
  11329. name: "Terra Kaiju",
  11330. height: math.unit(400, "gigameters")
  11331. },
  11332. {
  11333. name: "Kaiju Dragon God",
  11334. height: math.unit(13000, "exaparsecs")
  11335. },
  11336. ]
  11337. ))
  11338. characterMakers.push(() => makeCharacter(
  11339. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11340. {
  11341. front: {
  11342. height: math.unit(6, "feet"),
  11343. weight: math.unit(150, "lb"),
  11344. name: "Front",
  11345. image: {
  11346. source: "./media/characters/blü/front.svg",
  11347. extra: 1883 / 1564,
  11348. bottom: 0.031
  11349. }
  11350. },
  11351. },
  11352. [
  11353. {
  11354. name: "Normal",
  11355. height: math.unit(13, "feet"),
  11356. default: true
  11357. },
  11358. {
  11359. name: "Big Boi",
  11360. height: math.unit(150, "meters")
  11361. },
  11362. {
  11363. name: "Mini Stomper",
  11364. height: math.unit(300, "meters")
  11365. },
  11366. {
  11367. name: "Macro",
  11368. height: math.unit(1000, "meters")
  11369. },
  11370. {
  11371. name: "Megamacro",
  11372. height: math.unit(11000, "meters")
  11373. },
  11374. {
  11375. name: "Gigamacro",
  11376. height: math.unit(11000, "km")
  11377. },
  11378. {
  11379. name: "Teramacro",
  11380. height: math.unit(420000, "km")
  11381. },
  11382. {
  11383. name: "Examacro",
  11384. height: math.unit(120, "parsecs")
  11385. },
  11386. {
  11387. name: "God Tho",
  11388. height: math.unit(98000000000, "parsecs")
  11389. },
  11390. ]
  11391. ))
  11392. characterMakers.push(() => makeCharacter(
  11393. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11394. {
  11395. taurFront: {
  11396. height: math.unit(6, "feet"),
  11397. weight: math.unit(200, "lb"),
  11398. name: "Taur (Front)",
  11399. image: {
  11400. source: "./media/characters/scales/taur-front.svg",
  11401. extra: 1,
  11402. bottom: 0.05
  11403. }
  11404. },
  11405. taurBack: {
  11406. height: math.unit(6, "feet"),
  11407. weight: math.unit(200, "lb"),
  11408. name: "Taur (Back)",
  11409. image: {
  11410. source: "./media/characters/scales/taur-back.svg",
  11411. extra: 1,
  11412. bottom: 0.08
  11413. }
  11414. },
  11415. anthro: {
  11416. height: math.unit(6 * 7 / 12, "feet"),
  11417. weight: math.unit(100, "lb"),
  11418. name: "Anthro",
  11419. image: {
  11420. source: "./media/characters/scales/anthro.svg",
  11421. extra: 1,
  11422. bottom: 0.06
  11423. }
  11424. },
  11425. },
  11426. [
  11427. {
  11428. name: "Normal",
  11429. height: math.unit(12, "feet"),
  11430. default: true
  11431. },
  11432. ]
  11433. ))
  11434. characterMakers.push(() => makeCharacter(
  11435. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11436. {
  11437. front: {
  11438. height: math.unit(6, "feet"),
  11439. weight: math.unit(150, "lb"),
  11440. name: "Front",
  11441. image: {
  11442. source: "./media/characters/koragos/front.svg",
  11443. extra: 841 / 794,
  11444. bottom: 0.035
  11445. }
  11446. },
  11447. back: {
  11448. height: math.unit(6, "feet"),
  11449. weight: math.unit(150, "lb"),
  11450. name: "Back",
  11451. image: {
  11452. source: "./media/characters/koragos/back.svg",
  11453. extra: 841 / 810,
  11454. bottom: 0.022
  11455. }
  11456. },
  11457. },
  11458. [
  11459. {
  11460. name: "Normal",
  11461. height: math.unit(6 + 11 / 12, "feet"),
  11462. default: true
  11463. },
  11464. {
  11465. name: "Macro",
  11466. height: math.unit(490, "feet")
  11467. },
  11468. {
  11469. name: "Megamacro",
  11470. height: math.unit(10, "miles")
  11471. },
  11472. {
  11473. name: "Gigamacro",
  11474. height: math.unit(50, "miles")
  11475. },
  11476. ]
  11477. ))
  11478. characterMakers.push(() => makeCharacter(
  11479. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11480. {
  11481. front: {
  11482. height: math.unit(6, "feet"),
  11483. weight: math.unit(250, "lb"),
  11484. name: "Front",
  11485. image: {
  11486. source: "./media/characters/xylrem/front.svg",
  11487. extra: 3323 / 3050,
  11488. bottom: 0.065
  11489. }
  11490. },
  11491. },
  11492. [
  11493. {
  11494. name: "Micro",
  11495. height: math.unit(4, "feet")
  11496. },
  11497. {
  11498. name: "Normal",
  11499. height: math.unit(16, "feet"),
  11500. default: true
  11501. },
  11502. {
  11503. name: "Macro",
  11504. height: math.unit(2720, "feet")
  11505. },
  11506. {
  11507. name: "Megamacro",
  11508. height: math.unit(25000, "miles")
  11509. },
  11510. ]
  11511. ))
  11512. characterMakers.push(() => makeCharacter(
  11513. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11514. {
  11515. front: {
  11516. height: math.unit(8, "feet"),
  11517. weight: math.unit(250, "kg"),
  11518. name: "Front",
  11519. image: {
  11520. source: "./media/characters/ikideru/front.svg",
  11521. extra: 930 / 870,
  11522. bottom: 0.087
  11523. }
  11524. },
  11525. back: {
  11526. height: math.unit(8, "feet"),
  11527. weight: math.unit(250, "kg"),
  11528. name: "Back",
  11529. image: {
  11530. source: "./media/characters/ikideru/back.svg",
  11531. extra: 919 / 852,
  11532. bottom: 0.055
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Rare",
  11539. height: math.unit(8, "feet"),
  11540. default: true
  11541. },
  11542. {
  11543. name: "Playful Loom",
  11544. height: math.unit(80, "feet")
  11545. },
  11546. {
  11547. name: "City Leaner",
  11548. height: math.unit(230, "feet")
  11549. },
  11550. {
  11551. name: "Megamacro",
  11552. height: math.unit(2500, "feet")
  11553. },
  11554. {
  11555. name: "Gigamacro",
  11556. height: math.unit(26400, "feet")
  11557. },
  11558. {
  11559. name: "Tectonic Shifter",
  11560. height: math.unit(1.7, "megameters")
  11561. },
  11562. {
  11563. name: "Planet Carer",
  11564. height: math.unit(21, "megameters")
  11565. },
  11566. {
  11567. name: "God",
  11568. height: math.unit(11157.22, "parsecs")
  11569. },
  11570. ]
  11571. ))
  11572. characterMakers.push(() => makeCharacter(
  11573. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11574. {
  11575. front: {
  11576. height: math.unit(6, "feet"),
  11577. weight: math.unit(120, "lb"),
  11578. name: "Front",
  11579. image: {
  11580. source: "./media/characters/neo/front.svg"
  11581. }
  11582. },
  11583. },
  11584. [
  11585. {
  11586. name: "Micro",
  11587. height: math.unit(2, "inches"),
  11588. default: true
  11589. },
  11590. {
  11591. name: "Human Size",
  11592. height: math.unit(5 + 8 / 12, "feet")
  11593. },
  11594. ]
  11595. ))
  11596. characterMakers.push(() => makeCharacter(
  11597. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11598. {
  11599. front: {
  11600. height: math.unit(13 + 10 / 12, "feet"),
  11601. weight: math.unit(5320, "lb"),
  11602. name: "Front",
  11603. image: {
  11604. source: "./media/characters/chauncey-chantz/front.svg",
  11605. extra: 1587 / 1435,
  11606. bottom: 0.02
  11607. }
  11608. },
  11609. },
  11610. [
  11611. {
  11612. name: "Normal",
  11613. height: math.unit(13 + 10 / 12, "feet"),
  11614. default: true
  11615. },
  11616. {
  11617. name: "Macro",
  11618. height: math.unit(45, "feet")
  11619. },
  11620. {
  11621. name: "Megamacro",
  11622. height: math.unit(250, "miles")
  11623. },
  11624. {
  11625. name: "Planetary",
  11626. height: math.unit(10000, "miles")
  11627. },
  11628. {
  11629. name: "Galactic",
  11630. height: math.unit(40000, "parsecs")
  11631. },
  11632. {
  11633. name: "Universal",
  11634. height: math.unit(1, "yottameter")
  11635. },
  11636. ]
  11637. ))
  11638. characterMakers.push(() => makeCharacter(
  11639. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11640. {
  11641. front: {
  11642. height: math.unit(6, "feet"),
  11643. weight: math.unit(150, "lb"),
  11644. name: "Front",
  11645. image: {
  11646. source: "./media/characters/epifox/front.svg",
  11647. extra: 1,
  11648. bottom: 0.075
  11649. }
  11650. },
  11651. },
  11652. [
  11653. {
  11654. name: "Micro",
  11655. height: math.unit(6, "inches")
  11656. },
  11657. {
  11658. name: "Normal",
  11659. height: math.unit(12, "feet"),
  11660. default: true
  11661. },
  11662. {
  11663. name: "Macro",
  11664. height: math.unit(3810, "feet")
  11665. },
  11666. {
  11667. name: "Megamacro",
  11668. height: math.unit(500, "miles")
  11669. },
  11670. ]
  11671. ))
  11672. characterMakers.push(() => makeCharacter(
  11673. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11674. {
  11675. front: {
  11676. height: math.unit(1.8796, "m"),
  11677. weight: math.unit(230, "lb"),
  11678. name: "Front",
  11679. image: {
  11680. source: "./media/characters/colin-t/front.svg",
  11681. extra: 1272 / 1193,
  11682. bottom: 0.07
  11683. }
  11684. },
  11685. },
  11686. [
  11687. {
  11688. name: "Micro",
  11689. height: math.unit(0.571, "meters")
  11690. },
  11691. {
  11692. name: "Normal",
  11693. height: math.unit(1.8796, "meters"),
  11694. default: true
  11695. },
  11696. {
  11697. name: "Tall",
  11698. height: math.unit(4, "meters")
  11699. },
  11700. {
  11701. name: "Macro",
  11702. height: math.unit(67.241, "meters")
  11703. },
  11704. {
  11705. name: "Megamacro",
  11706. height: math.unit(371.856, "meters")
  11707. },
  11708. {
  11709. name: "Planetary",
  11710. height: math.unit(12631.5689, "km")
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11716. {
  11717. front: {
  11718. height: math.unit(1.85, "meters"),
  11719. weight: math.unit(80, "kg"),
  11720. name: "Front",
  11721. image: {
  11722. source: "./media/characters/matvei/front.svg",
  11723. extra: 614 / 594,
  11724. bottom: 0.01
  11725. }
  11726. },
  11727. },
  11728. [
  11729. {
  11730. name: "Normal",
  11731. height: math.unit(1.85, "meters"),
  11732. default: true
  11733. },
  11734. ]
  11735. ))
  11736. characterMakers.push(() => makeCharacter(
  11737. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11738. {
  11739. front: {
  11740. height: math.unit(5 + 9 / 12, "feet"),
  11741. weight: math.unit(70, "lb"),
  11742. name: "Front",
  11743. image: {
  11744. source: "./media/characters/quincy/front.svg",
  11745. extra: 3041 / 2751
  11746. }
  11747. },
  11748. back: {
  11749. height: math.unit(5 + 9 / 12, "feet"),
  11750. weight: math.unit(70, "lb"),
  11751. name: "Back",
  11752. image: {
  11753. source: "./media/characters/quincy/back.svg",
  11754. extra: 3041 / 2751
  11755. }
  11756. },
  11757. flying: {
  11758. height: math.unit(5 + 4 / 12, "feet"),
  11759. weight: math.unit(70, "lb"),
  11760. name: "Flying",
  11761. image: {
  11762. source: "./media/characters/quincy/flying.svg",
  11763. extra: 1044 / 930
  11764. }
  11765. },
  11766. },
  11767. [
  11768. {
  11769. name: "Micro",
  11770. height: math.unit(3, "cm")
  11771. },
  11772. {
  11773. name: "Normal",
  11774. height: math.unit(5 + 9 / 12, "feet")
  11775. },
  11776. {
  11777. name: "Macro",
  11778. height: math.unit(200, "meters"),
  11779. default: true
  11780. },
  11781. {
  11782. name: "Megamacro",
  11783. height: math.unit(1000, "meters")
  11784. },
  11785. ]
  11786. ))
  11787. characterMakers.push(() => makeCharacter(
  11788. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11789. {
  11790. front: {
  11791. height: math.unit(4 + 7 / 12, "feet"),
  11792. weight: math.unit(50, "lb"),
  11793. name: "Front",
  11794. image: {
  11795. source: "./media/characters/vanrel/front.svg",
  11796. extra: 1,
  11797. bottom: 0.02
  11798. }
  11799. },
  11800. frontAlt: {
  11801. height: math.unit(4 + 7 / 12, "feet"),
  11802. weight: math.unit(50, "lb"),
  11803. name: "Front-alt",
  11804. image: {
  11805. source: "./media/characters/vanrel/front-alt.svg",
  11806. extra: 1,
  11807. bottom: 15 / 1511
  11808. }
  11809. },
  11810. elemental: {
  11811. height: math.unit(3, "feet"),
  11812. weight: math.unit(50, "lb"),
  11813. name: "Elemental",
  11814. image: {
  11815. source: "./media/characters/vanrel/elemental.svg",
  11816. extra: 192.3 / 162.8,
  11817. bottom: 1.79 / 194.17
  11818. }
  11819. },
  11820. side: {
  11821. height: math.unit(4 + 7 / 12, "feet"),
  11822. weight: math.unit(50, "lb"),
  11823. name: "Side",
  11824. image: {
  11825. source: "./media/characters/vanrel/side.svg",
  11826. extra: 1,
  11827. bottom: 0.025
  11828. }
  11829. },
  11830. tome: {
  11831. height: math.unit(1.35, "feet"),
  11832. weight: math.unit(10, "lb"),
  11833. name: "Vanrel's Tome",
  11834. rename: true,
  11835. image: {
  11836. source: "./media/characters/vanrel/tome.svg"
  11837. }
  11838. },
  11839. beans: {
  11840. height: math.unit(0.89, "feet"),
  11841. name: "Beans",
  11842. image: {
  11843. source: "./media/characters/vanrel/beans.svg"
  11844. }
  11845. },
  11846. },
  11847. [
  11848. {
  11849. name: "Normal",
  11850. height: math.unit(4 + 7 / 12, "feet"),
  11851. default: true
  11852. },
  11853. ]
  11854. ))
  11855. characterMakers.push(() => makeCharacter(
  11856. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11857. {
  11858. front: {
  11859. height: math.unit(7 + 5 / 12, "feet"),
  11860. name: "Front",
  11861. image: {
  11862. source: "./media/characters/kuiper-vanrel/front.svg",
  11863. extra: 1219/1169,
  11864. bottom: 69/1288
  11865. }
  11866. },
  11867. back: {
  11868. height: math.unit(7 + 5 / 12, "feet"),
  11869. name: "Back",
  11870. image: {
  11871. source: "./media/characters/kuiper-vanrel/back.svg",
  11872. extra: 1236/1193,
  11873. bottom: 27/1263
  11874. }
  11875. },
  11876. foot: {
  11877. height: math.unit(0.55, "meters"),
  11878. name: "Foot",
  11879. image: {
  11880. source: "./media/characters/kuiper-vanrel/foot.svg",
  11881. }
  11882. },
  11883. battle: {
  11884. height: math.unit(6.824, "feet"),
  11885. name: "Battle",
  11886. image: {
  11887. source: "./media/characters/kuiper-vanrel/battle.svg",
  11888. extra: 1466 / 1327,
  11889. bottom: 29 / 1492.5
  11890. }
  11891. },
  11892. },
  11893. [
  11894. {
  11895. name: "Normal",
  11896. height: math.unit(7 + 5 / 12, "feet"),
  11897. default: true
  11898. },
  11899. ]
  11900. ))
  11901. characterMakers.push(() => makeCharacter(
  11902. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11903. {
  11904. front: {
  11905. height: math.unit(8 + 5 / 12, "feet"),
  11906. weight: math.unit(150, "lb"),
  11907. name: "Front",
  11908. image: {
  11909. source: "./media/characters/keset-vanrel/front.svg",
  11910. extra: 1150 / 1084,
  11911. bottom: 0.05
  11912. }
  11913. },
  11914. hand: {
  11915. height: math.unit(0.6, "meters"),
  11916. name: "Hand",
  11917. image: {
  11918. source: "./media/characters/keset-vanrel/hand.svg"
  11919. }
  11920. },
  11921. foot: {
  11922. height: math.unit(0.94978, "meters"),
  11923. name: "Foot",
  11924. image: {
  11925. source: "./media/characters/keset-vanrel/foot.svg"
  11926. }
  11927. },
  11928. battle: {
  11929. height: math.unit(7.408, "feet"),
  11930. weight: math.unit(150, "lb"),
  11931. name: "Battle",
  11932. image: {
  11933. source: "./media/characters/keset-vanrel/battle.svg",
  11934. extra: 1890 / 1386,
  11935. bottom: 73.28 / 1970
  11936. }
  11937. },
  11938. },
  11939. [
  11940. {
  11941. name: "Normal",
  11942. height: math.unit(8 + 5 / 12, "feet"),
  11943. default: true
  11944. },
  11945. ]
  11946. ))
  11947. characterMakers.push(() => makeCharacter(
  11948. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11949. {
  11950. front: {
  11951. height: math.unit(6, "feet"),
  11952. weight: math.unit(150, "lb"),
  11953. name: "Front",
  11954. image: {
  11955. source: "./media/characters/neos/front.svg",
  11956. extra: 1696 / 992,
  11957. bottom: 0.14
  11958. }
  11959. },
  11960. },
  11961. [
  11962. {
  11963. name: "Normal",
  11964. height: math.unit(54, "cm"),
  11965. default: true
  11966. },
  11967. {
  11968. name: "Macro",
  11969. height: math.unit(100, "m")
  11970. },
  11971. {
  11972. name: "Megamacro",
  11973. height: math.unit(10, "km")
  11974. },
  11975. {
  11976. name: "Megamacro+",
  11977. height: math.unit(100, "km")
  11978. },
  11979. {
  11980. name: "Gigamacro",
  11981. height: math.unit(100, "Mm")
  11982. },
  11983. {
  11984. name: "Teramacro",
  11985. height: math.unit(100, "Gm")
  11986. },
  11987. {
  11988. name: "Examacro",
  11989. height: math.unit(100, "Em")
  11990. },
  11991. {
  11992. name: "Godly",
  11993. height: math.unit(10000, "Ym")
  11994. },
  11995. {
  11996. name: "Beyond Godly",
  11997. height: math.unit(25, "multiverses")
  11998. },
  11999. ]
  12000. ))
  12001. characterMakers.push(() => makeCharacter(
  12002. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12003. {
  12004. feminine: {
  12005. height: math.unit(5, "feet"),
  12006. weight: math.unit(100, "lb"),
  12007. name: "Feminine",
  12008. image: {
  12009. source: "./media/characters/sammy-mouse/feminine.svg",
  12010. extra: 2526 / 2425,
  12011. bottom: 0.123
  12012. }
  12013. },
  12014. masculine: {
  12015. height: math.unit(5, "feet"),
  12016. weight: math.unit(100, "lb"),
  12017. name: "Masculine",
  12018. image: {
  12019. source: "./media/characters/sammy-mouse/masculine.svg",
  12020. extra: 2526 / 2425,
  12021. bottom: 0.123
  12022. }
  12023. },
  12024. },
  12025. [
  12026. {
  12027. name: "Micro",
  12028. height: math.unit(5, "inches")
  12029. },
  12030. {
  12031. name: "Normal",
  12032. height: math.unit(5, "feet"),
  12033. default: true
  12034. },
  12035. {
  12036. name: "Macro",
  12037. height: math.unit(60, "feet")
  12038. },
  12039. ]
  12040. ))
  12041. characterMakers.push(() => makeCharacter(
  12042. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12043. {
  12044. front: {
  12045. height: math.unit(4, "feet"),
  12046. weight: math.unit(50, "lb"),
  12047. name: "Front",
  12048. image: {
  12049. source: "./media/characters/kole/front.svg",
  12050. extra: 1423 / 1303,
  12051. bottom: 0.025
  12052. }
  12053. },
  12054. back: {
  12055. height: math.unit(4, "feet"),
  12056. weight: math.unit(50, "lb"),
  12057. name: "Back",
  12058. image: {
  12059. source: "./media/characters/kole/back.svg",
  12060. extra: 1426 / 1280,
  12061. bottom: 0.02
  12062. }
  12063. },
  12064. },
  12065. [
  12066. {
  12067. name: "Normal",
  12068. height: math.unit(4, "feet"),
  12069. default: true
  12070. },
  12071. ]
  12072. ))
  12073. characterMakers.push(() => makeCharacter(
  12074. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  12075. {
  12076. front: {
  12077. height: math.unit(2 + 6 / 12, "feet"),
  12078. weight: math.unit(20, "lb"),
  12079. name: "Front",
  12080. image: {
  12081. source: "./media/characters/rufran/front.svg",
  12082. extra: 2041 / 1839,
  12083. bottom: 0.055
  12084. }
  12085. },
  12086. back: {
  12087. height: math.unit(2 + 6 / 12, "feet"),
  12088. weight: math.unit(20, "lb"),
  12089. name: "Back",
  12090. image: {
  12091. source: "./media/characters/rufran/back.svg",
  12092. extra: 2054 / 1839,
  12093. bottom: 0.01
  12094. }
  12095. },
  12096. hand: {
  12097. height: math.unit(0.2166, "meters"),
  12098. name: "Hand",
  12099. image: {
  12100. source: "./media/characters/rufran/hand.svg"
  12101. }
  12102. },
  12103. foot: {
  12104. height: math.unit(0.185, "meters"),
  12105. name: "Foot",
  12106. image: {
  12107. source: "./media/characters/rufran/foot.svg"
  12108. }
  12109. },
  12110. },
  12111. [
  12112. {
  12113. name: "Micro",
  12114. height: math.unit(1, "inch")
  12115. },
  12116. {
  12117. name: "Normal",
  12118. height: math.unit(2 + 6 / 12, "feet"),
  12119. default: true
  12120. },
  12121. {
  12122. name: "Big",
  12123. height: math.unit(60, "feet")
  12124. },
  12125. {
  12126. name: "Macro",
  12127. height: math.unit(325, "feet")
  12128. },
  12129. ]
  12130. ))
  12131. characterMakers.push(() => makeCharacter(
  12132. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12133. {
  12134. front: {
  12135. height: math.unit(0.3, "meters"),
  12136. weight: math.unit(3.5, "kg"),
  12137. name: "Front",
  12138. image: {
  12139. source: "./media/characters/chip/front.svg",
  12140. extra: 748 / 674
  12141. }
  12142. },
  12143. },
  12144. [
  12145. {
  12146. name: "Micro",
  12147. height: math.unit(1, "inch"),
  12148. default: true
  12149. },
  12150. ]
  12151. ))
  12152. characterMakers.push(() => makeCharacter(
  12153. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12154. {
  12155. side: {
  12156. height: math.unit(2.3, "meters"),
  12157. weight: math.unit(3500, "lb"),
  12158. name: "Side",
  12159. image: {
  12160. source: "./media/characters/torvid/side.svg",
  12161. extra: 1972 / 722,
  12162. bottom: 0.035
  12163. }
  12164. },
  12165. },
  12166. [
  12167. {
  12168. name: "Normal",
  12169. height: math.unit(2.3, "meters"),
  12170. default: true
  12171. },
  12172. ]
  12173. ))
  12174. characterMakers.push(() => makeCharacter(
  12175. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12176. {
  12177. front: {
  12178. height: math.unit(2, "meters"),
  12179. weight: math.unit(150.5, "kg"),
  12180. name: "Front",
  12181. image: {
  12182. source: "./media/characters/susan/front.svg",
  12183. extra: 693 / 635,
  12184. bottom: 0.05
  12185. }
  12186. },
  12187. },
  12188. [
  12189. {
  12190. name: "Megamacro",
  12191. height: math.unit(505, "miles"),
  12192. default: true
  12193. },
  12194. ]
  12195. ))
  12196. characterMakers.push(() => makeCharacter(
  12197. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12198. {
  12199. front: {
  12200. height: math.unit(6, "feet"),
  12201. weight: math.unit(150, "lb"),
  12202. name: "Front",
  12203. image: {
  12204. source: "./media/characters/raindrops/front.svg",
  12205. extra: 2655 / 2461,
  12206. bottom: 49 / 2705
  12207. }
  12208. },
  12209. back: {
  12210. height: math.unit(6, "feet"),
  12211. weight: math.unit(150, "lb"),
  12212. name: "Back",
  12213. image: {
  12214. source: "./media/characters/raindrops/back.svg",
  12215. extra: 2574 / 2400,
  12216. bottom: 65 / 2634
  12217. }
  12218. },
  12219. },
  12220. [
  12221. {
  12222. name: "Micro",
  12223. height: math.unit(6, "inches")
  12224. },
  12225. {
  12226. name: "Normal",
  12227. height: math.unit(6 + 2 / 12, "feet")
  12228. },
  12229. {
  12230. name: "Macro",
  12231. height: math.unit(131, "feet"),
  12232. default: true
  12233. },
  12234. {
  12235. name: "Megamacro",
  12236. height: math.unit(15, "miles")
  12237. },
  12238. {
  12239. name: "Gigamacro",
  12240. height: math.unit(4000, "miles")
  12241. },
  12242. {
  12243. name: "Teramacro",
  12244. height: math.unit(315000, "miles")
  12245. },
  12246. ]
  12247. ))
  12248. characterMakers.push(() => makeCharacter(
  12249. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12250. {
  12251. front: {
  12252. height: math.unit(2.794, "meters"),
  12253. weight: math.unit(325, "kg"),
  12254. name: "Front",
  12255. image: {
  12256. source: "./media/characters/tezwa/front.svg",
  12257. extra: 2083 / 1906,
  12258. bottom: 0.031
  12259. }
  12260. },
  12261. foot: {
  12262. height: math.unit(0.687, "meters"),
  12263. name: "Foot",
  12264. image: {
  12265. source: "./media/characters/tezwa/foot.svg"
  12266. }
  12267. },
  12268. },
  12269. [
  12270. {
  12271. name: "Normal",
  12272. height: math.unit(9 + 2 / 12, "feet"),
  12273. default: true
  12274. },
  12275. ]
  12276. ))
  12277. characterMakers.push(() => makeCharacter(
  12278. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12279. {
  12280. front: {
  12281. height: math.unit(58, "feet"),
  12282. weight: math.unit(89000, "lb"),
  12283. name: "Front",
  12284. image: {
  12285. source: "./media/characters/typhus/front.svg",
  12286. extra: 816 / 800,
  12287. bottom: 0.065
  12288. }
  12289. },
  12290. },
  12291. [
  12292. {
  12293. name: "Macro",
  12294. height: math.unit(58, "feet"),
  12295. default: true
  12296. },
  12297. ]
  12298. ))
  12299. characterMakers.push(() => makeCharacter(
  12300. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12301. {
  12302. front: {
  12303. height: math.unit(12, "feet"),
  12304. weight: math.unit(6, "tonnes"),
  12305. name: "Front",
  12306. image: {
  12307. source: "./media/characters/lyra-von-wulf/front.svg",
  12308. extra: 1,
  12309. bottom: 0.10
  12310. }
  12311. },
  12312. frontMecha: {
  12313. height: math.unit(12, "feet"),
  12314. weight: math.unit(12, "tonnes"),
  12315. name: "Front (Mecha)",
  12316. image: {
  12317. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12318. extra: 1,
  12319. bottom: 0.042
  12320. }
  12321. },
  12322. maw: {
  12323. height: math.unit(2.2, "feet"),
  12324. name: "Maw",
  12325. image: {
  12326. source: "./media/characters/lyra-von-wulf/maw.svg"
  12327. }
  12328. },
  12329. },
  12330. [
  12331. {
  12332. name: "Normal",
  12333. height: math.unit(12, "feet"),
  12334. default: true
  12335. },
  12336. {
  12337. name: "Classic",
  12338. height: math.unit(50, "feet")
  12339. },
  12340. {
  12341. name: "Macro",
  12342. height: math.unit(500, "feet")
  12343. },
  12344. {
  12345. name: "Megamacro",
  12346. height: math.unit(1, "mile")
  12347. },
  12348. {
  12349. name: "Gigamacro",
  12350. height: math.unit(400, "miles")
  12351. },
  12352. {
  12353. name: "Teramacro",
  12354. height: math.unit(22000, "miles")
  12355. },
  12356. {
  12357. name: "Solarmacro",
  12358. height: math.unit(8600000, "miles")
  12359. },
  12360. {
  12361. name: "Galactic",
  12362. height: math.unit(1057000, "lightyears")
  12363. },
  12364. ]
  12365. ))
  12366. characterMakers.push(() => makeCharacter(
  12367. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12368. {
  12369. front: {
  12370. height: math.unit(6 + 10 / 12, "feet"),
  12371. weight: math.unit(150, "lb"),
  12372. name: "Front",
  12373. image: {
  12374. source: "./media/characters/dixon/front.svg",
  12375. extra: 3361 / 3209,
  12376. bottom: 0.01
  12377. }
  12378. },
  12379. },
  12380. [
  12381. {
  12382. name: "Normal",
  12383. height: math.unit(6 + 10 / 12, "feet"),
  12384. default: true
  12385. },
  12386. {
  12387. name: "Big",
  12388. height: math.unit(12, "meters")
  12389. },
  12390. {
  12391. name: "Macro",
  12392. height: math.unit(500, "meters")
  12393. },
  12394. {
  12395. name: "Megamacro",
  12396. height: math.unit(2, "km")
  12397. },
  12398. ]
  12399. ))
  12400. characterMakers.push(() => makeCharacter(
  12401. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12402. {
  12403. front: {
  12404. height: math.unit(185, "cm"),
  12405. weight: math.unit(68, "kg"),
  12406. name: "Front",
  12407. image: {
  12408. source: "./media/characters/kauko/front.svg",
  12409. extra: 1455 / 1421,
  12410. bottom: 0.03
  12411. }
  12412. },
  12413. back: {
  12414. height: math.unit(185, "cm"),
  12415. weight: math.unit(68, "kg"),
  12416. name: "Back",
  12417. image: {
  12418. source: "./media/characters/kauko/back.svg",
  12419. extra: 1455 / 1421,
  12420. bottom: 0.004
  12421. }
  12422. },
  12423. },
  12424. [
  12425. {
  12426. name: "Normal",
  12427. height: math.unit(185, "cm"),
  12428. default: true
  12429. },
  12430. ]
  12431. ))
  12432. characterMakers.push(() => makeCharacter(
  12433. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12434. {
  12435. front: {
  12436. height: math.unit(6, "feet"),
  12437. weight: math.unit(150, "kg"),
  12438. name: "Front",
  12439. image: {
  12440. source: "./media/characters/varg/front.svg",
  12441. extra: 1108 / 1018,
  12442. bottom: 0.0375
  12443. }
  12444. },
  12445. },
  12446. [
  12447. {
  12448. name: "Normal",
  12449. height: math.unit(5, "meters")
  12450. },
  12451. {
  12452. name: "Macro",
  12453. height: math.unit(200, "meters")
  12454. },
  12455. {
  12456. name: "Megamacro",
  12457. height: math.unit(20, "kilometers")
  12458. },
  12459. {
  12460. name: "True Size",
  12461. height: math.unit(211, "km"),
  12462. default: true
  12463. },
  12464. {
  12465. name: "Gigamacro",
  12466. height: math.unit(1000, "km")
  12467. },
  12468. {
  12469. name: "Gigamacro+",
  12470. height: math.unit(8000, "km")
  12471. },
  12472. {
  12473. name: "Teramacro",
  12474. height: math.unit(1000000, "km")
  12475. },
  12476. ]
  12477. ))
  12478. characterMakers.push(() => makeCharacter(
  12479. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12480. {
  12481. front: {
  12482. height: math.unit(7 + 7 / 12, "feet"),
  12483. weight: math.unit(267, "lb"),
  12484. name: "Front",
  12485. image: {
  12486. source: "./media/characters/dayza/front.svg",
  12487. extra: 1262 / 1200,
  12488. bottom: 0.035
  12489. }
  12490. },
  12491. side: {
  12492. height: math.unit(7 + 7 / 12, "feet"),
  12493. weight: math.unit(267, "lb"),
  12494. name: "Side",
  12495. image: {
  12496. source: "./media/characters/dayza/side.svg",
  12497. extra: 1295 / 1245,
  12498. bottom: 0.05
  12499. }
  12500. },
  12501. back: {
  12502. height: math.unit(7 + 7 / 12, "feet"),
  12503. weight: math.unit(267, "lb"),
  12504. name: "Back",
  12505. image: {
  12506. source: "./media/characters/dayza/back.svg",
  12507. extra: 1241 / 1170
  12508. }
  12509. },
  12510. },
  12511. [
  12512. {
  12513. name: "Normal",
  12514. height: math.unit(7 + 7 / 12, "feet"),
  12515. default: true
  12516. },
  12517. {
  12518. name: "Macro",
  12519. height: math.unit(155, "feet")
  12520. },
  12521. ]
  12522. ))
  12523. characterMakers.push(() => makeCharacter(
  12524. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12525. {
  12526. front: {
  12527. height: math.unit(6 + 5 / 12, "feet"),
  12528. weight: math.unit(160, "lb"),
  12529. name: "Front",
  12530. image: {
  12531. source: "./media/characters/xanthos/front.svg",
  12532. extra: 1,
  12533. bottom: 0.04
  12534. }
  12535. },
  12536. back: {
  12537. height: math.unit(6 + 5 / 12, "feet"),
  12538. weight: math.unit(160, "lb"),
  12539. name: "Back",
  12540. image: {
  12541. source: "./media/characters/xanthos/back.svg",
  12542. extra: 1,
  12543. bottom: 0.03
  12544. }
  12545. },
  12546. hand: {
  12547. height: math.unit(0.928, "feet"),
  12548. name: "Hand",
  12549. image: {
  12550. source: "./media/characters/xanthos/hand.svg"
  12551. }
  12552. },
  12553. foot: {
  12554. height: math.unit(1.286, "feet"),
  12555. name: "Foot",
  12556. image: {
  12557. source: "./media/characters/xanthos/foot.svg"
  12558. }
  12559. },
  12560. },
  12561. [
  12562. {
  12563. name: "Normal",
  12564. height: math.unit(6 + 5 / 12, "feet"),
  12565. default: true
  12566. },
  12567. {
  12568. name: "Normal+",
  12569. height: math.unit(6, "meters")
  12570. },
  12571. {
  12572. name: "Macro",
  12573. height: math.unit(40, "feet")
  12574. },
  12575. {
  12576. name: "Macro+",
  12577. height: math.unit(200, "meters")
  12578. },
  12579. {
  12580. name: "Megamacro",
  12581. height: math.unit(20, "km")
  12582. },
  12583. {
  12584. name: "Megamacro+",
  12585. height: math.unit(100, "km")
  12586. },
  12587. ]
  12588. ))
  12589. characterMakers.push(() => makeCharacter(
  12590. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12591. {
  12592. front: {
  12593. height: math.unit(6 + 3 / 12, "feet"),
  12594. weight: math.unit(215, "lb"),
  12595. name: "Front",
  12596. image: {
  12597. source: "./media/characters/grynn/front.svg",
  12598. extra: 4627 / 4209,
  12599. bottom: 0.047
  12600. }
  12601. },
  12602. },
  12603. [
  12604. {
  12605. name: "Micro",
  12606. height: math.unit(6, "inches")
  12607. },
  12608. {
  12609. name: "Normal",
  12610. height: math.unit(6 + 3 / 12, "feet"),
  12611. default: true
  12612. },
  12613. {
  12614. name: "Big",
  12615. height: math.unit(104, "feet")
  12616. },
  12617. {
  12618. name: "Macro",
  12619. height: math.unit(944, "feet")
  12620. },
  12621. {
  12622. name: "Macro+",
  12623. height: math.unit(9480, "feet")
  12624. },
  12625. {
  12626. name: "Megamacro",
  12627. height: math.unit(78752, "feet")
  12628. },
  12629. {
  12630. name: "Megamacro+",
  12631. height: math.unit(630128, "feet")
  12632. },
  12633. {
  12634. name: "Megamacro++",
  12635. height: math.unit(3150695, "feet")
  12636. },
  12637. ]
  12638. ))
  12639. characterMakers.push(() => makeCharacter(
  12640. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12641. {
  12642. front: {
  12643. height: math.unit(7 + 5 / 12, "feet"),
  12644. weight: math.unit(450, "lb"),
  12645. name: "Front",
  12646. image: {
  12647. source: "./media/characters/mocha-aura/front.svg",
  12648. extra: 1907 / 1817,
  12649. bottom: 0.04
  12650. }
  12651. },
  12652. back: {
  12653. height: math.unit(7 + 5 / 12, "feet"),
  12654. weight: math.unit(450, "lb"),
  12655. name: "Back",
  12656. image: {
  12657. source: "./media/characters/mocha-aura/back.svg",
  12658. extra: 1900 / 1825,
  12659. bottom: 0.045
  12660. }
  12661. },
  12662. },
  12663. [
  12664. {
  12665. name: "Nano",
  12666. height: math.unit(1, "nm")
  12667. },
  12668. {
  12669. name: "Megamicro",
  12670. height: math.unit(1, "mm")
  12671. },
  12672. {
  12673. name: "Micro",
  12674. height: math.unit(3, "inches")
  12675. },
  12676. {
  12677. name: "Normal",
  12678. height: math.unit(7 + 5 / 12, "feet"),
  12679. default: true
  12680. },
  12681. {
  12682. name: "Macro",
  12683. height: math.unit(30, "feet")
  12684. },
  12685. {
  12686. name: "Megamacro",
  12687. height: math.unit(3500, "feet")
  12688. },
  12689. {
  12690. name: "Teramacro",
  12691. height: math.unit(500000, "miles")
  12692. },
  12693. {
  12694. name: "Petamacro",
  12695. height: math.unit(50000000000000000, "parsecs")
  12696. },
  12697. ]
  12698. ))
  12699. characterMakers.push(() => makeCharacter(
  12700. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12701. {
  12702. front: {
  12703. height: math.unit(6, "feet"),
  12704. weight: math.unit(150, "lb"),
  12705. name: "Front",
  12706. image: {
  12707. source: "./media/characters/ilisha-devya/front.svg",
  12708. extra: 1,
  12709. bottom: 0.175
  12710. }
  12711. },
  12712. back: {
  12713. height: math.unit(6, "feet"),
  12714. weight: math.unit(150, "lb"),
  12715. name: "Back",
  12716. image: {
  12717. source: "./media/characters/ilisha-devya/back.svg",
  12718. extra: 1,
  12719. bottom: 0.015
  12720. }
  12721. },
  12722. },
  12723. [
  12724. {
  12725. name: "Macro",
  12726. height: math.unit(500, "feet"),
  12727. default: true
  12728. },
  12729. {
  12730. name: "Megamacro",
  12731. height: math.unit(10, "miles")
  12732. },
  12733. {
  12734. name: "Gigamacro",
  12735. height: math.unit(100000, "miles")
  12736. },
  12737. {
  12738. name: "Examacro",
  12739. height: math.unit(1e9, "lightyears")
  12740. },
  12741. {
  12742. name: "Omniversal",
  12743. height: math.unit(1e33, "lightyears")
  12744. },
  12745. {
  12746. name: "Beyond Infinite",
  12747. height: math.unit(1e100, "lightyears")
  12748. },
  12749. ]
  12750. ))
  12751. characterMakers.push(() => makeCharacter(
  12752. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12753. {
  12754. Side: {
  12755. height: math.unit(6, "feet"),
  12756. weight: math.unit(150, "lb"),
  12757. name: "Side",
  12758. image: {
  12759. source: "./media/characters/mira/side.svg",
  12760. extra: 900 / 799,
  12761. bottom: 0.02
  12762. }
  12763. },
  12764. },
  12765. [
  12766. {
  12767. name: "Human Size",
  12768. height: math.unit(6, "feet")
  12769. },
  12770. {
  12771. name: "Macro",
  12772. height: math.unit(100, "feet"),
  12773. default: true
  12774. },
  12775. {
  12776. name: "Megamacro",
  12777. height: math.unit(10, "miles")
  12778. },
  12779. {
  12780. name: "Gigamacro",
  12781. height: math.unit(25000, "miles")
  12782. },
  12783. {
  12784. name: "Teramacro",
  12785. height: math.unit(300, "AU")
  12786. },
  12787. {
  12788. name: "Full Size",
  12789. height: math.unit(4.5e10, "lightyears")
  12790. },
  12791. ]
  12792. ))
  12793. characterMakers.push(() => makeCharacter(
  12794. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12795. {
  12796. front: {
  12797. height: math.unit(6, "feet"),
  12798. weight: math.unit(150, "lb"),
  12799. name: "Front",
  12800. image: {
  12801. source: "./media/characters/holly/front.svg",
  12802. extra: 639 / 606
  12803. }
  12804. },
  12805. back: {
  12806. height: math.unit(6, "feet"),
  12807. weight: math.unit(150, "lb"),
  12808. name: "Back",
  12809. image: {
  12810. source: "./media/characters/holly/back.svg",
  12811. extra: 623 / 598
  12812. }
  12813. },
  12814. frontWorking: {
  12815. height: math.unit(6, "feet"),
  12816. weight: math.unit(150, "lb"),
  12817. name: "Front (Working)",
  12818. image: {
  12819. source: "./media/characters/holly/front-working.svg",
  12820. extra: 607 / 577,
  12821. bottom: 0.048
  12822. }
  12823. },
  12824. },
  12825. [
  12826. {
  12827. name: "Normal",
  12828. height: math.unit(12 + 3 / 12, "feet"),
  12829. default: true
  12830. },
  12831. ]
  12832. ))
  12833. characterMakers.push(() => makeCharacter(
  12834. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12835. {
  12836. front: {
  12837. height: math.unit(6, "feet"),
  12838. weight: math.unit(150, "lb"),
  12839. name: "Front",
  12840. image: {
  12841. source: "./media/characters/porter/front.svg",
  12842. extra: 1,
  12843. bottom: 0.01
  12844. }
  12845. },
  12846. frontRobes: {
  12847. height: math.unit(6, "feet"),
  12848. weight: math.unit(150, "lb"),
  12849. name: "Front (Robes)",
  12850. image: {
  12851. source: "./media/characters/porter/front-robes.svg",
  12852. extra: 1.01,
  12853. bottom: 0.01
  12854. }
  12855. },
  12856. },
  12857. [
  12858. {
  12859. name: "Normal",
  12860. height: math.unit(11 + 9 / 12, "feet"),
  12861. default: true
  12862. },
  12863. ]
  12864. ))
  12865. characterMakers.push(() => makeCharacter(
  12866. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12867. {
  12868. legendary: {
  12869. height: math.unit(6, "feet"),
  12870. weight: math.unit(150, "lb"),
  12871. name: "Legendary",
  12872. image: {
  12873. source: "./media/characters/lucy/legendary.svg",
  12874. extra: 1355 / 1100,
  12875. bottom: 0.045
  12876. }
  12877. },
  12878. },
  12879. [
  12880. {
  12881. name: "Legendary",
  12882. height: math.unit(86882 * 2, "miles"),
  12883. default: true
  12884. },
  12885. ]
  12886. ))
  12887. characterMakers.push(() => makeCharacter(
  12888. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12889. {
  12890. front: {
  12891. height: math.unit(6, "feet"),
  12892. weight: math.unit(150, "lb"),
  12893. name: "Front",
  12894. image: {
  12895. source: "./media/characters/drusilla/front.svg",
  12896. extra: 678 / 635,
  12897. bottom: 0.03
  12898. }
  12899. },
  12900. back: {
  12901. height: math.unit(6, "feet"),
  12902. weight: math.unit(150, "lb"),
  12903. name: "Back",
  12904. image: {
  12905. source: "./media/characters/drusilla/back.svg",
  12906. extra: 678 / 635,
  12907. bottom: 0.005
  12908. }
  12909. },
  12910. },
  12911. [
  12912. {
  12913. name: "Macro",
  12914. height: math.unit(100, "feet")
  12915. },
  12916. {
  12917. name: "Canon Height",
  12918. height: math.unit(2000, "feet"),
  12919. default: true
  12920. },
  12921. ]
  12922. ))
  12923. characterMakers.push(() => makeCharacter(
  12924. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12925. {
  12926. front: {
  12927. height: math.unit(6, "feet"),
  12928. weight: math.unit(180, "lb"),
  12929. name: "Front",
  12930. image: {
  12931. source: "./media/characters/renard-thatch/front.svg",
  12932. extra: 2411 / 2275,
  12933. bottom: 0.01
  12934. }
  12935. },
  12936. frontPosing: {
  12937. height: math.unit(6, "feet"),
  12938. weight: math.unit(180, "lb"),
  12939. name: "Front (Posing)",
  12940. image: {
  12941. source: "./media/characters/renard-thatch/front-posing.svg",
  12942. extra: 2381 / 2261,
  12943. bottom: 0.01
  12944. }
  12945. },
  12946. back: {
  12947. height: math.unit(6, "feet"),
  12948. weight: math.unit(180, "lb"),
  12949. name: "Back",
  12950. image: {
  12951. source: "./media/characters/renard-thatch/back.svg",
  12952. extra: 2428 / 2288
  12953. }
  12954. },
  12955. },
  12956. [
  12957. {
  12958. name: "Micro",
  12959. height: math.unit(3, "inches")
  12960. },
  12961. {
  12962. name: "Default",
  12963. height: math.unit(6, "feet"),
  12964. default: true
  12965. },
  12966. {
  12967. name: "Macro",
  12968. height: math.unit(75, "feet")
  12969. },
  12970. ]
  12971. ))
  12972. characterMakers.push(() => makeCharacter(
  12973. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12974. {
  12975. front: {
  12976. height: math.unit(1450, "feet"),
  12977. weight: math.unit(1.21e6, "tons"),
  12978. name: "Front",
  12979. image: {
  12980. source: "./media/characters/sekvra/front.svg",
  12981. extra: 1,
  12982. bottom: 0.03
  12983. }
  12984. },
  12985. frontClothed: {
  12986. height: math.unit(1450, "feet"),
  12987. weight: math.unit(1.21e6, "tons"),
  12988. name: "Front (Clothed)",
  12989. image: {
  12990. source: "./media/characters/sekvra/front-clothed.svg",
  12991. extra: 1,
  12992. bottom: 0.03
  12993. }
  12994. },
  12995. side: {
  12996. height: math.unit(1450, "feet"),
  12997. weight: math.unit(1.21e6, "tons"),
  12998. name: "Side",
  12999. image: {
  13000. source: "./media/characters/sekvra/side.svg",
  13001. extra: 1,
  13002. bottom: 0.025
  13003. }
  13004. },
  13005. back: {
  13006. height: math.unit(1450, "feet"),
  13007. weight: math.unit(1.21e6, "tons"),
  13008. name: "Back",
  13009. image: {
  13010. source: "./media/characters/sekvra/back.svg",
  13011. extra: 1,
  13012. bottom: 0.005
  13013. }
  13014. },
  13015. },
  13016. [
  13017. {
  13018. name: "Macro",
  13019. height: math.unit(1450, "feet"),
  13020. default: true
  13021. },
  13022. {
  13023. name: "Megamacro",
  13024. height: math.unit(15000, "feet")
  13025. },
  13026. ]
  13027. ))
  13028. characterMakers.push(() => makeCharacter(
  13029. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13030. {
  13031. front: {
  13032. height: math.unit(6, "feet"),
  13033. weight: math.unit(150, "lb"),
  13034. name: "Front",
  13035. image: {
  13036. source: "./media/characters/carmine/front.svg",
  13037. extra: 1,
  13038. bottom: 0.035
  13039. }
  13040. },
  13041. frontArmor: {
  13042. height: math.unit(6, "feet"),
  13043. weight: math.unit(150, "lb"),
  13044. name: "Front (Armor)",
  13045. image: {
  13046. source: "./media/characters/carmine/front-armor.svg",
  13047. extra: 1,
  13048. bottom: 0.035
  13049. }
  13050. },
  13051. },
  13052. [
  13053. {
  13054. name: "Large",
  13055. height: math.unit(1, "mile")
  13056. },
  13057. {
  13058. name: "Huge",
  13059. height: math.unit(40, "miles"),
  13060. default: true
  13061. },
  13062. {
  13063. name: "Colossal",
  13064. height: math.unit(2500, "miles")
  13065. },
  13066. ]
  13067. ))
  13068. characterMakers.push(() => makeCharacter(
  13069. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13070. {
  13071. front: {
  13072. height: math.unit(6, "feet"),
  13073. weight: math.unit(150, "lb"),
  13074. name: "Front",
  13075. image: {
  13076. source: "./media/characters/elyssia/front.svg",
  13077. extra: 2201 / 2035,
  13078. bottom: 0.05
  13079. }
  13080. },
  13081. frontClothed: {
  13082. height: math.unit(6, "feet"),
  13083. weight: math.unit(150, "lb"),
  13084. name: "Front (Clothed)",
  13085. image: {
  13086. source: "./media/characters/elyssia/front-clothed.svg",
  13087. extra: 2201 / 2035,
  13088. bottom: 0.05
  13089. }
  13090. },
  13091. back: {
  13092. height: math.unit(6, "feet"),
  13093. weight: math.unit(150, "lb"),
  13094. name: "Back",
  13095. image: {
  13096. source: "./media/characters/elyssia/back.svg",
  13097. extra: 2201 / 2035,
  13098. bottom: 0.013
  13099. }
  13100. },
  13101. },
  13102. [
  13103. {
  13104. name: "Smaller",
  13105. height: math.unit(150, "feet")
  13106. },
  13107. {
  13108. name: "Standard",
  13109. height: math.unit(1400, "feet"),
  13110. default: true
  13111. },
  13112. {
  13113. name: "Distracted",
  13114. height: math.unit(15000, "feet")
  13115. },
  13116. ]
  13117. ))
  13118. characterMakers.push(() => makeCharacter(
  13119. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13120. {
  13121. front: {
  13122. height: math.unit(7 + 4 / 12, "feet"),
  13123. weight: math.unit(500, "lb"),
  13124. name: "Front",
  13125. image: {
  13126. source: "./media/characters/geno-maxwell/front.svg",
  13127. extra: 2207 / 2040,
  13128. bottom: 0.015
  13129. }
  13130. },
  13131. },
  13132. [
  13133. {
  13134. name: "Micro",
  13135. height: math.unit(3, "inches")
  13136. },
  13137. {
  13138. name: "Normal",
  13139. height: math.unit(7 + 4 / 12, "feet"),
  13140. default: true
  13141. },
  13142. {
  13143. name: "Macro",
  13144. height: math.unit(220, "feet")
  13145. },
  13146. {
  13147. name: "Megamacro",
  13148. height: math.unit(11, "miles")
  13149. },
  13150. ]
  13151. ))
  13152. characterMakers.push(() => makeCharacter(
  13153. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13154. {
  13155. front: {
  13156. height: math.unit(7 + 4 / 12, "feet"),
  13157. weight: math.unit(500, "lb"),
  13158. name: "Front",
  13159. image: {
  13160. source: "./media/characters/regena-maxwell/front.svg",
  13161. extra: 3115 / 2770,
  13162. bottom: 0.02
  13163. }
  13164. },
  13165. },
  13166. [
  13167. {
  13168. name: "Normal",
  13169. height: math.unit(7 + 4 / 12, "feet"),
  13170. default: true
  13171. },
  13172. {
  13173. name: "Macro",
  13174. height: math.unit(220, "feet")
  13175. },
  13176. {
  13177. name: "Megamacro",
  13178. height: math.unit(11, "miles")
  13179. },
  13180. ]
  13181. ))
  13182. characterMakers.push(() => makeCharacter(
  13183. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13184. {
  13185. front: {
  13186. height: math.unit(6, "feet"),
  13187. weight: math.unit(150, "lb"),
  13188. name: "Front",
  13189. image: {
  13190. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13191. extra: 860 / 690,
  13192. bottom: 0.03
  13193. }
  13194. },
  13195. },
  13196. [
  13197. {
  13198. name: "Normal",
  13199. height: math.unit(1.7, "meters"),
  13200. default: true
  13201. },
  13202. ]
  13203. ))
  13204. characterMakers.push(() => makeCharacter(
  13205. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13206. {
  13207. front: {
  13208. height: math.unit(6, "feet"),
  13209. weight: math.unit(150, "lb"),
  13210. name: "Front",
  13211. image: {
  13212. source: "./media/characters/quilly/front.svg",
  13213. extra: 890 / 776
  13214. }
  13215. },
  13216. },
  13217. [
  13218. {
  13219. name: "Gigamacro",
  13220. height: math.unit(404090, "miles"),
  13221. default: true
  13222. },
  13223. ]
  13224. ))
  13225. characterMakers.push(() => makeCharacter(
  13226. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13227. {
  13228. front: {
  13229. height: math.unit(7 + 8 / 12, "feet"),
  13230. weight: math.unit(350, "lb"),
  13231. name: "Front",
  13232. image: {
  13233. source: "./media/characters/tempest/front.svg",
  13234. extra: 1175 / 1086,
  13235. bottom: 0.02
  13236. }
  13237. },
  13238. },
  13239. [
  13240. {
  13241. name: "Normal",
  13242. height: math.unit(7 + 8 / 12, "feet"),
  13243. default: true
  13244. },
  13245. ]
  13246. ))
  13247. characterMakers.push(() => makeCharacter(
  13248. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13249. {
  13250. side: {
  13251. height: math.unit(4 + 5 / 12, "feet"),
  13252. weight: math.unit(80, "lb"),
  13253. name: "Side",
  13254. image: {
  13255. source: "./media/characters/rodger/side.svg",
  13256. extra: 1235 / 1118
  13257. }
  13258. },
  13259. },
  13260. [
  13261. {
  13262. name: "Micro",
  13263. height: math.unit(1, "inch")
  13264. },
  13265. {
  13266. name: "Normal",
  13267. height: math.unit(4 + 5 / 12, "feet"),
  13268. default: true
  13269. },
  13270. {
  13271. name: "Macro",
  13272. height: math.unit(120, "feet")
  13273. },
  13274. ]
  13275. ))
  13276. characterMakers.push(() => makeCharacter(
  13277. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13278. {
  13279. front: {
  13280. height: math.unit(6, "feet"),
  13281. weight: math.unit(150, "lb"),
  13282. name: "Front",
  13283. image: {
  13284. source: "./media/characters/danyel/front.svg",
  13285. extra: 1185 / 1123,
  13286. bottom: 0.05
  13287. }
  13288. },
  13289. },
  13290. [
  13291. {
  13292. name: "Shrunken",
  13293. height: math.unit(0.5, "mm")
  13294. },
  13295. {
  13296. name: "Micro",
  13297. height: math.unit(1, "mm"),
  13298. default: true
  13299. },
  13300. {
  13301. name: "Upsized",
  13302. height: math.unit(5 + 5 / 12, "feet")
  13303. },
  13304. ]
  13305. ))
  13306. characterMakers.push(() => makeCharacter(
  13307. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13308. {
  13309. front: {
  13310. height: math.unit(5 + 6 / 12, "feet"),
  13311. weight: math.unit(200, "lb"),
  13312. name: "Front",
  13313. image: {
  13314. source: "./media/characters/vivian-bijoux/front.svg",
  13315. extra: 1,
  13316. bottom: 0.072
  13317. }
  13318. },
  13319. },
  13320. [
  13321. {
  13322. name: "Normal",
  13323. height: math.unit(5 + 6 / 12, "feet"),
  13324. default: true
  13325. },
  13326. {
  13327. name: "Bad Dream",
  13328. height: math.unit(500, "feet")
  13329. },
  13330. {
  13331. name: "Nightmare",
  13332. height: math.unit(500, "miles")
  13333. },
  13334. ]
  13335. ))
  13336. characterMakers.push(() => makeCharacter(
  13337. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13338. {
  13339. front: {
  13340. height: math.unit(6 + 1 / 12, "feet"),
  13341. weight: math.unit(260, "lb"),
  13342. name: "Front",
  13343. image: {
  13344. source: "./media/characters/zeta/front.svg",
  13345. extra: 1968 / 1889,
  13346. bottom: 0.06
  13347. }
  13348. },
  13349. back: {
  13350. height: math.unit(6 + 1 / 12, "feet"),
  13351. weight: math.unit(260, "lb"),
  13352. name: "Back",
  13353. image: {
  13354. source: "./media/characters/zeta/back.svg",
  13355. extra: 1944 / 1858,
  13356. bottom: 0.03
  13357. }
  13358. },
  13359. hand: {
  13360. height: math.unit(1.112, "feet"),
  13361. name: "Hand",
  13362. image: {
  13363. source: "./media/characters/zeta/hand.svg"
  13364. }
  13365. },
  13366. foot: {
  13367. height: math.unit(1.48, "feet"),
  13368. name: "Foot",
  13369. image: {
  13370. source: "./media/characters/zeta/foot.svg"
  13371. }
  13372. },
  13373. },
  13374. [
  13375. {
  13376. name: "Micro",
  13377. height: math.unit(6, "inches")
  13378. },
  13379. {
  13380. name: "Normal",
  13381. height: math.unit(6 + 1 / 12, "feet"),
  13382. default: true
  13383. },
  13384. {
  13385. name: "Macro",
  13386. height: math.unit(20, "feet")
  13387. },
  13388. ]
  13389. ))
  13390. characterMakers.push(() => makeCharacter(
  13391. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13392. {
  13393. front: {
  13394. height: math.unit(6, "feet"),
  13395. weight: math.unit(150, "lb"),
  13396. name: "Front",
  13397. image: {
  13398. source: "./media/characters/jamie-larsen/front.svg",
  13399. extra: 962 / 933,
  13400. bottom: 0.02
  13401. }
  13402. },
  13403. back: {
  13404. height: math.unit(6, "feet"),
  13405. weight: math.unit(150, "lb"),
  13406. name: "Back",
  13407. image: {
  13408. source: "./media/characters/jamie-larsen/back.svg",
  13409. extra: 997 / 946
  13410. }
  13411. },
  13412. },
  13413. [
  13414. {
  13415. name: "Macro",
  13416. height: math.unit(28 + 7 / 12, "feet"),
  13417. default: true
  13418. },
  13419. {
  13420. name: "Macro+",
  13421. height: math.unit(180, "feet")
  13422. },
  13423. {
  13424. name: "Megamacro",
  13425. height: math.unit(10, "miles")
  13426. },
  13427. {
  13428. name: "Gigamacro",
  13429. height: math.unit(200000, "miles")
  13430. },
  13431. ]
  13432. ))
  13433. characterMakers.push(() => makeCharacter(
  13434. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13435. {
  13436. front: {
  13437. height: math.unit(6, "feet"),
  13438. weight: math.unit(120, "lb"),
  13439. name: "Front",
  13440. image: {
  13441. source: "./media/characters/vance/front.svg",
  13442. extra: 1980 / 1890,
  13443. bottom: 0.09
  13444. }
  13445. },
  13446. back: {
  13447. height: math.unit(6, "feet"),
  13448. weight: math.unit(120, "lb"),
  13449. name: "Back",
  13450. image: {
  13451. source: "./media/characters/vance/back.svg",
  13452. extra: 2081 / 1994,
  13453. bottom: 0.014
  13454. }
  13455. },
  13456. hand: {
  13457. height: math.unit(0.88, "feet"),
  13458. name: "Hand",
  13459. image: {
  13460. source: "./media/characters/vance/hand.svg"
  13461. }
  13462. },
  13463. foot: {
  13464. height: math.unit(0.64, "feet"),
  13465. name: "Foot",
  13466. image: {
  13467. source: "./media/characters/vance/foot.svg"
  13468. }
  13469. },
  13470. },
  13471. [
  13472. {
  13473. name: "Small",
  13474. height: math.unit(90, "feet"),
  13475. default: true
  13476. },
  13477. {
  13478. name: "Macro",
  13479. height: math.unit(100, "meters")
  13480. },
  13481. {
  13482. name: "Megamacro",
  13483. height: math.unit(15, "miles")
  13484. },
  13485. ]
  13486. ))
  13487. characterMakers.push(() => makeCharacter(
  13488. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13489. {
  13490. front: {
  13491. height: math.unit(6, "feet"),
  13492. weight: math.unit(180, "lb"),
  13493. name: "Front",
  13494. image: {
  13495. source: "./media/characters/xochitl/front.svg",
  13496. extra: 2297 / 2261,
  13497. bottom: 0.065
  13498. }
  13499. },
  13500. back: {
  13501. height: math.unit(6, "feet"),
  13502. weight: math.unit(180, "lb"),
  13503. name: "Back",
  13504. image: {
  13505. source: "./media/characters/xochitl/back.svg",
  13506. extra: 2386 / 2354,
  13507. bottom: 0.01
  13508. }
  13509. },
  13510. foot: {
  13511. height: math.unit(6 / 5 * 1.15, "feet"),
  13512. weight: math.unit(150, "lb"),
  13513. name: "Foot",
  13514. image: {
  13515. source: "./media/characters/xochitl/foot.svg"
  13516. }
  13517. },
  13518. },
  13519. [
  13520. {
  13521. name: "Macro",
  13522. height: math.unit(80, "feet")
  13523. },
  13524. {
  13525. name: "Macro+",
  13526. height: math.unit(400, "feet"),
  13527. default: true
  13528. },
  13529. {
  13530. name: "Gigamacro",
  13531. height: math.unit(80000, "miles")
  13532. },
  13533. {
  13534. name: "Gigamacro+",
  13535. height: math.unit(400000, "miles")
  13536. },
  13537. {
  13538. name: "Teramacro",
  13539. height: math.unit(300, "AU")
  13540. },
  13541. ]
  13542. ))
  13543. characterMakers.push(() => makeCharacter(
  13544. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13545. {
  13546. front: {
  13547. height: math.unit(6, "feet"),
  13548. weight: math.unit(150, "lb"),
  13549. name: "Front",
  13550. image: {
  13551. source: "./media/characters/vincent/front.svg",
  13552. extra: 1130 / 1080,
  13553. bottom: 0.055
  13554. }
  13555. },
  13556. beak: {
  13557. height: math.unit(6 * 0.1, "feet"),
  13558. name: "Beak",
  13559. image: {
  13560. source: "./media/characters/vincent/beak.svg"
  13561. }
  13562. },
  13563. hand: {
  13564. height: math.unit(6 * 0.85, "feet"),
  13565. weight: math.unit(150, "lb"),
  13566. name: "Hand",
  13567. image: {
  13568. source: "./media/characters/vincent/hand.svg"
  13569. }
  13570. },
  13571. foot: {
  13572. height: math.unit(6 * 0.19, "feet"),
  13573. weight: math.unit(150, "lb"),
  13574. name: "Foot",
  13575. image: {
  13576. source: "./media/characters/vincent/foot.svg"
  13577. }
  13578. },
  13579. },
  13580. [
  13581. {
  13582. name: "Base",
  13583. height: math.unit(6 + 5 / 12, "feet"),
  13584. default: true
  13585. },
  13586. {
  13587. name: "Macro",
  13588. height: math.unit(300, "feet")
  13589. },
  13590. {
  13591. name: "Megamacro",
  13592. height: math.unit(2, "miles")
  13593. },
  13594. {
  13595. name: "Gigamacro",
  13596. height: math.unit(1000, "miles")
  13597. },
  13598. ]
  13599. ))
  13600. characterMakers.push(() => makeCharacter(
  13601. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13602. {
  13603. front: {
  13604. height: math.unit(2, "meters"),
  13605. weight: math.unit(500, "kg"),
  13606. name: "Front",
  13607. image: {
  13608. source: "./media/characters/coatl/front.svg",
  13609. extra: 3948 / 3500,
  13610. bottom: 0.082
  13611. }
  13612. },
  13613. },
  13614. [
  13615. {
  13616. name: "Normal",
  13617. height: math.unit(4, "meters")
  13618. },
  13619. {
  13620. name: "Macro",
  13621. height: math.unit(100, "meters"),
  13622. default: true
  13623. },
  13624. {
  13625. name: "Macro+",
  13626. height: math.unit(300, "meters")
  13627. },
  13628. {
  13629. name: "Megamacro",
  13630. height: math.unit(3, "gigameters")
  13631. },
  13632. {
  13633. name: "Megamacro+",
  13634. height: math.unit(300, "terameters")
  13635. },
  13636. {
  13637. name: "Megamacro++",
  13638. height: math.unit(3, "lightyears")
  13639. },
  13640. ]
  13641. ))
  13642. characterMakers.push(() => makeCharacter(
  13643. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13644. {
  13645. front: {
  13646. height: math.unit(6, "feet"),
  13647. weight: math.unit(50, "kg"),
  13648. name: "front",
  13649. image: {
  13650. source: "./media/characters/shiroryu/front.svg",
  13651. extra: 1990 / 1935
  13652. }
  13653. },
  13654. },
  13655. [
  13656. {
  13657. name: "Mortal Mingling",
  13658. height: math.unit(3, "meters")
  13659. },
  13660. {
  13661. name: "Kaiju-ish",
  13662. height: math.unit(250, "meters")
  13663. },
  13664. {
  13665. name: "Somewhat Godly",
  13666. height: math.unit(400, "km"),
  13667. default: true
  13668. },
  13669. {
  13670. name: "Planetary",
  13671. height: math.unit(300, "megameters")
  13672. },
  13673. {
  13674. name: "Galaxy-dwarfing",
  13675. height: math.unit(450, "kiloparsecs")
  13676. },
  13677. {
  13678. name: "Universe Eater",
  13679. height: math.unit(150, "gigaparsecs")
  13680. },
  13681. {
  13682. name: "Almost Immeasurable",
  13683. height: math.unit(1.3e266, "yottaparsecs")
  13684. },
  13685. ]
  13686. ))
  13687. characterMakers.push(() => makeCharacter(
  13688. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13689. {
  13690. front: {
  13691. height: math.unit(6, "feet"),
  13692. weight: math.unit(150, "lb"),
  13693. name: "Front",
  13694. image: {
  13695. source: "./media/characters/umeko/front.svg",
  13696. extra: 1,
  13697. bottom: 0.019
  13698. }
  13699. },
  13700. frontArmored: {
  13701. height: math.unit(6, "feet"),
  13702. weight: math.unit(150, "lb"),
  13703. name: "Front (Armored)",
  13704. image: {
  13705. source: "./media/characters/umeko/front-armored.svg",
  13706. extra: 1,
  13707. bottom: 0.021
  13708. }
  13709. },
  13710. },
  13711. [
  13712. {
  13713. name: "Macro",
  13714. height: math.unit(220, "feet"),
  13715. default: true
  13716. },
  13717. {
  13718. name: "Guardian Dragon",
  13719. height: math.unit(50, "miles")
  13720. },
  13721. {
  13722. name: "Cosmic",
  13723. height: math.unit(800000, "miles")
  13724. },
  13725. ]
  13726. ))
  13727. characterMakers.push(() => makeCharacter(
  13728. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13729. {
  13730. front: {
  13731. height: math.unit(6, "feet"),
  13732. weight: math.unit(150, "lb"),
  13733. name: "Front",
  13734. image: {
  13735. source: "./media/characters/cassidy/front.svg",
  13736. extra: 1,
  13737. bottom: 0.043
  13738. }
  13739. },
  13740. },
  13741. [
  13742. {
  13743. name: "Canon Height",
  13744. height: math.unit(120, "feet"),
  13745. default: true
  13746. },
  13747. {
  13748. name: "Macro+",
  13749. height: math.unit(400, "feet")
  13750. },
  13751. {
  13752. name: "Macro++",
  13753. height: math.unit(4000, "feet")
  13754. },
  13755. {
  13756. name: "Megamacro",
  13757. height: math.unit(3, "miles")
  13758. },
  13759. ]
  13760. ))
  13761. characterMakers.push(() => makeCharacter(
  13762. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13763. {
  13764. front: {
  13765. height: math.unit(6, "feet"),
  13766. weight: math.unit(150, "lb"),
  13767. name: "Front",
  13768. image: {
  13769. source: "./media/characters/isaac/front.svg",
  13770. extra: 896 / 815,
  13771. bottom: 0.11
  13772. }
  13773. },
  13774. },
  13775. [
  13776. {
  13777. name: "Human Size",
  13778. height: math.unit(8, "feet"),
  13779. default: true
  13780. },
  13781. {
  13782. name: "Macro",
  13783. height: math.unit(400, "feet")
  13784. },
  13785. {
  13786. name: "Megamacro",
  13787. height: math.unit(50, "miles")
  13788. },
  13789. {
  13790. name: "Canon Height",
  13791. height: math.unit(200, "AU")
  13792. },
  13793. ]
  13794. ))
  13795. characterMakers.push(() => makeCharacter(
  13796. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13797. {
  13798. front: {
  13799. height: math.unit(6, "feet"),
  13800. weight: math.unit(72, "kg"),
  13801. name: "Front",
  13802. image: {
  13803. source: "./media/characters/sleekit/front.svg",
  13804. extra: 4693 / 4487,
  13805. bottom: 0.012
  13806. }
  13807. },
  13808. },
  13809. [
  13810. {
  13811. name: "Minimum Height",
  13812. height: math.unit(10, "meters")
  13813. },
  13814. {
  13815. name: "Smaller",
  13816. height: math.unit(25, "meters")
  13817. },
  13818. {
  13819. name: "Larger",
  13820. height: math.unit(38, "meters"),
  13821. default: true
  13822. },
  13823. {
  13824. name: "Maximum height",
  13825. height: math.unit(100, "meters")
  13826. },
  13827. ]
  13828. ))
  13829. characterMakers.push(() => makeCharacter(
  13830. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13831. {
  13832. front: {
  13833. height: math.unit(6, "feet"),
  13834. weight: math.unit(150, "lb"),
  13835. name: "Front",
  13836. image: {
  13837. source: "./media/characters/nillia/front.svg",
  13838. extra: 2195 / 2037,
  13839. bottom: 0.005
  13840. }
  13841. },
  13842. back: {
  13843. height: math.unit(6, "feet"),
  13844. weight: math.unit(150, "lb"),
  13845. name: "Back",
  13846. image: {
  13847. source: "./media/characters/nillia/back.svg",
  13848. extra: 2195 / 2037,
  13849. bottom: 0.005
  13850. }
  13851. },
  13852. },
  13853. [
  13854. {
  13855. name: "Canon Height",
  13856. height: math.unit(489, "feet"),
  13857. default: true
  13858. }
  13859. ]
  13860. ))
  13861. characterMakers.push(() => makeCharacter(
  13862. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13863. {
  13864. front: {
  13865. height: math.unit(6, "feet"),
  13866. weight: math.unit(150, "lb"),
  13867. name: "Front",
  13868. image: {
  13869. source: "./media/characters/mesmyriza/front.svg",
  13870. extra: 2067 / 1784,
  13871. bottom: 0.035
  13872. }
  13873. },
  13874. foot: {
  13875. height: math.unit(6 / (250 / 35), "feet"),
  13876. name: "Foot",
  13877. image: {
  13878. source: "./media/characters/mesmyriza/foot.svg"
  13879. }
  13880. },
  13881. },
  13882. [
  13883. {
  13884. name: "Macro",
  13885. height: math.unit(457, "meters"),
  13886. default: true
  13887. },
  13888. {
  13889. name: "Megamacro",
  13890. height: math.unit(8, "megameters")
  13891. },
  13892. ]
  13893. ))
  13894. characterMakers.push(() => makeCharacter(
  13895. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13896. {
  13897. front: {
  13898. height: math.unit(6, "feet"),
  13899. weight: math.unit(250, "lb"),
  13900. name: "Front",
  13901. image: {
  13902. source: "./media/characters/saudade/front.svg",
  13903. extra: 1172 / 1139,
  13904. bottom: 0.035
  13905. }
  13906. },
  13907. },
  13908. [
  13909. {
  13910. name: "Micro",
  13911. height: math.unit(3, "inches")
  13912. },
  13913. {
  13914. name: "Normal",
  13915. height: math.unit(6, "feet"),
  13916. default: true
  13917. },
  13918. {
  13919. name: "Macro",
  13920. height: math.unit(50, "feet")
  13921. },
  13922. {
  13923. name: "Megamacro",
  13924. height: math.unit(2800, "feet")
  13925. },
  13926. ]
  13927. ))
  13928. characterMakers.push(() => makeCharacter(
  13929. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13930. {
  13931. front: {
  13932. height: math.unit(5 + 4 / 12, "feet"),
  13933. weight: math.unit(100, "lb"),
  13934. name: "Front",
  13935. image: {
  13936. source: "./media/characters/keireer/front.svg",
  13937. extra: 716 / 666,
  13938. bottom: 0.05
  13939. }
  13940. },
  13941. },
  13942. [
  13943. {
  13944. name: "Normal",
  13945. height: math.unit(5 + 4 / 12, "feet"),
  13946. default: true
  13947. },
  13948. ]
  13949. ))
  13950. characterMakers.push(() => makeCharacter(
  13951. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13952. {
  13953. front: {
  13954. height: math.unit(6, "feet"),
  13955. weight: math.unit(90, "kg"),
  13956. name: "Front",
  13957. image: {
  13958. source: "./media/characters/mirja/front.svg",
  13959. extra: 1789 / 1683,
  13960. bottom: 0.05
  13961. }
  13962. },
  13963. frontDressed: {
  13964. height: math.unit(6, "feet"),
  13965. weight: math.unit(90, "lb"),
  13966. name: "Front (Dressed)",
  13967. image: {
  13968. source: "./media/characters/mirja/front-dressed.svg",
  13969. extra: 1789 / 1683,
  13970. bottom: 0.05
  13971. }
  13972. },
  13973. back: {
  13974. height: math.unit(6, "feet"),
  13975. weight: math.unit(90, "lb"),
  13976. name: "Back",
  13977. image: {
  13978. source: "./media/characters/mirja/back.svg",
  13979. extra: 953 / 917,
  13980. bottom: 0.017
  13981. }
  13982. },
  13983. },
  13984. [
  13985. {
  13986. name: "\"Incognito\"",
  13987. height: math.unit(3, "meters")
  13988. },
  13989. {
  13990. name: "Strolling Size",
  13991. height: math.unit(15, "km")
  13992. },
  13993. {
  13994. name: "Larger Strolling Size",
  13995. height: math.unit(400, "km")
  13996. },
  13997. {
  13998. name: "Preferred Size",
  13999. height: math.unit(5000, "km")
  14000. },
  14001. {
  14002. name: "True Size",
  14003. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14004. default: true
  14005. },
  14006. ]
  14007. ))
  14008. characterMakers.push(() => makeCharacter(
  14009. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14010. {
  14011. front: {
  14012. height: math.unit(15, "feet"),
  14013. weight: math.unit(880, "kg"),
  14014. name: "Front",
  14015. image: {
  14016. source: "./media/characters/nightraver/front.svg",
  14017. extra: 2444 / 2160,
  14018. bottom: 0.027
  14019. }
  14020. },
  14021. back: {
  14022. height: math.unit(15, "feet"),
  14023. weight: math.unit(880, "kg"),
  14024. name: "Back",
  14025. image: {
  14026. source: "./media/characters/nightraver/back.svg",
  14027. extra: 2309 / 2180,
  14028. bottom: 0.005
  14029. }
  14030. },
  14031. sole: {
  14032. height: math.unit(2.878, "feet"),
  14033. name: "Sole",
  14034. image: {
  14035. source: "./media/characters/nightraver/sole.svg"
  14036. }
  14037. },
  14038. foot: {
  14039. height: math.unit(2.285, "feet"),
  14040. name: "Foot",
  14041. image: {
  14042. source: "./media/characters/nightraver/foot.svg"
  14043. }
  14044. },
  14045. maw: {
  14046. height: math.unit(2.67, "feet"),
  14047. name: "Maw",
  14048. image: {
  14049. source: "./media/characters/nightraver/maw.svg"
  14050. }
  14051. },
  14052. },
  14053. [
  14054. {
  14055. name: "Micro",
  14056. height: math.unit(1, "cm")
  14057. },
  14058. {
  14059. name: "Normal",
  14060. height: math.unit(15, "feet"),
  14061. default: true
  14062. },
  14063. {
  14064. name: "Macro",
  14065. height: math.unit(300, "feet")
  14066. },
  14067. {
  14068. name: "Megamacro",
  14069. height: math.unit(300, "miles")
  14070. },
  14071. {
  14072. name: "Gigamacro",
  14073. height: math.unit(10000, "miles")
  14074. },
  14075. ]
  14076. ))
  14077. characterMakers.push(() => makeCharacter(
  14078. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14079. {
  14080. side: {
  14081. height: math.unit(2, "inches"),
  14082. weight: math.unit(5, "grams"),
  14083. name: "Side",
  14084. image: {
  14085. source: "./media/characters/arc/side.svg"
  14086. }
  14087. },
  14088. },
  14089. [
  14090. {
  14091. name: "Micro",
  14092. height: math.unit(2, "inches"),
  14093. default: true
  14094. },
  14095. ]
  14096. ))
  14097. characterMakers.push(() => makeCharacter(
  14098. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14099. {
  14100. front: {
  14101. height: math.unit(1.1938, "meters"),
  14102. weight: math.unit(54, "kg"),
  14103. name: "Front",
  14104. image: {
  14105. source: "./media/characters/nebula-shahar/front.svg",
  14106. extra: 1642 / 1436,
  14107. bottom: 0.06
  14108. }
  14109. },
  14110. },
  14111. [
  14112. {
  14113. name: "Megamicro",
  14114. height: math.unit(0.3, "mm")
  14115. },
  14116. {
  14117. name: "Micro",
  14118. height: math.unit(3, "cm")
  14119. },
  14120. {
  14121. name: "Normal",
  14122. height: math.unit(138, "cm"),
  14123. default: true
  14124. },
  14125. {
  14126. name: "Macro",
  14127. height: math.unit(30, "m")
  14128. },
  14129. ]
  14130. ))
  14131. characterMakers.push(() => makeCharacter(
  14132. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14133. {
  14134. front: {
  14135. height: math.unit(5.24, "feet"),
  14136. weight: math.unit(150, "lb"),
  14137. name: "Front",
  14138. image: {
  14139. source: "./media/characters/shayla/front.svg",
  14140. extra: 1512 / 1414,
  14141. bottom: 0.01
  14142. }
  14143. },
  14144. back: {
  14145. height: math.unit(5.24, "feet"),
  14146. weight: math.unit(150, "lb"),
  14147. name: "Back",
  14148. image: {
  14149. source: "./media/characters/shayla/back.svg",
  14150. extra: 1512 / 1414
  14151. }
  14152. },
  14153. hand: {
  14154. height: math.unit(0.7781496062992126, "feet"),
  14155. name: "Hand",
  14156. image: {
  14157. source: "./media/characters/shayla/hand.svg"
  14158. }
  14159. },
  14160. foot: {
  14161. height: math.unit(1.4206036745406823, "feet"),
  14162. name: "Foot",
  14163. image: {
  14164. source: "./media/characters/shayla/foot.svg"
  14165. }
  14166. },
  14167. },
  14168. [
  14169. {
  14170. name: "Micro",
  14171. height: math.unit(0.32, "feet")
  14172. },
  14173. {
  14174. name: "Normal",
  14175. height: math.unit(5.24, "feet"),
  14176. default: true
  14177. },
  14178. {
  14179. name: "Macro",
  14180. height: math.unit(492.12, "feet")
  14181. },
  14182. {
  14183. name: "Megamacro",
  14184. height: math.unit(186.41, "miles")
  14185. },
  14186. ]
  14187. ))
  14188. characterMakers.push(() => makeCharacter(
  14189. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14190. {
  14191. front: {
  14192. height: math.unit(2.2, "m"),
  14193. weight: math.unit(120, "kg"),
  14194. name: "Front",
  14195. image: {
  14196. source: "./media/characters/pia-jr/front.svg",
  14197. extra: 1000 / 970,
  14198. bottom: 0.035
  14199. }
  14200. },
  14201. hand: {
  14202. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14203. name: "Hand",
  14204. image: {
  14205. source: "./media/characters/pia-jr/hand.svg"
  14206. }
  14207. },
  14208. paw: {
  14209. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14210. name: "Paw",
  14211. image: {
  14212. source: "./media/characters/pia-jr/paw.svg"
  14213. }
  14214. },
  14215. },
  14216. [
  14217. {
  14218. name: "Micro",
  14219. height: math.unit(1.2, "cm")
  14220. },
  14221. {
  14222. name: "Normal",
  14223. height: math.unit(2.2, "m"),
  14224. default: true
  14225. },
  14226. {
  14227. name: "Macro",
  14228. height: math.unit(180, "m")
  14229. },
  14230. {
  14231. name: "Megamacro",
  14232. height: math.unit(420, "km")
  14233. },
  14234. ]
  14235. ))
  14236. characterMakers.push(() => makeCharacter(
  14237. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14238. {
  14239. front: {
  14240. height: math.unit(2, "m"),
  14241. weight: math.unit(115, "kg"),
  14242. name: "Front",
  14243. image: {
  14244. source: "./media/characters/pia-sr/front.svg",
  14245. extra: 760 / 730,
  14246. bottom: 0.015
  14247. }
  14248. },
  14249. back: {
  14250. height: math.unit(2, "m"),
  14251. weight: math.unit(115, "kg"),
  14252. name: "Back",
  14253. image: {
  14254. source: "./media/characters/pia-sr/back.svg",
  14255. extra: 760 / 730,
  14256. bottom: 0.01
  14257. }
  14258. },
  14259. hand: {
  14260. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14261. name: "Hand",
  14262. image: {
  14263. source: "./media/characters/pia-sr/hand.svg"
  14264. }
  14265. },
  14266. foot: {
  14267. height: math.unit(1.83, "feet"),
  14268. name: "Foot",
  14269. image: {
  14270. source: "./media/characters/pia-sr/foot.svg"
  14271. }
  14272. },
  14273. },
  14274. [
  14275. {
  14276. name: "Micro",
  14277. height: math.unit(88, "mm")
  14278. },
  14279. {
  14280. name: "Normal",
  14281. height: math.unit(2, "m"),
  14282. default: true
  14283. },
  14284. {
  14285. name: "Macro",
  14286. height: math.unit(200, "m")
  14287. },
  14288. {
  14289. name: "Megamacro",
  14290. height: math.unit(420, "km")
  14291. },
  14292. ]
  14293. ))
  14294. characterMakers.push(() => makeCharacter(
  14295. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14296. {
  14297. front: {
  14298. height: math.unit(8 + 2 / 12, "feet"),
  14299. weight: math.unit(300, "lb"),
  14300. name: "Front",
  14301. image: {
  14302. source: "./media/characters/kibibyte/front.svg",
  14303. extra: 2221 / 2098,
  14304. bottom: 0.04
  14305. }
  14306. },
  14307. },
  14308. [
  14309. {
  14310. name: "Normal",
  14311. height: math.unit(8 + 2 / 12, "feet"),
  14312. default: true
  14313. },
  14314. {
  14315. name: "Socialable Macro",
  14316. height: math.unit(50, "feet")
  14317. },
  14318. {
  14319. name: "Macro",
  14320. height: math.unit(300, "feet")
  14321. },
  14322. {
  14323. name: "Megamacro",
  14324. height: math.unit(500, "miles")
  14325. },
  14326. ]
  14327. ))
  14328. characterMakers.push(() => makeCharacter(
  14329. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14330. {
  14331. front: {
  14332. height: math.unit(6, "feet"),
  14333. weight: math.unit(150, "lb"),
  14334. name: "Front",
  14335. image: {
  14336. source: "./media/characters/felix/front.svg",
  14337. extra: 762 / 722,
  14338. bottom: 0.02
  14339. }
  14340. },
  14341. frontClothed: {
  14342. height: math.unit(6, "feet"),
  14343. weight: math.unit(150, "lb"),
  14344. name: "Front (Clothed)",
  14345. image: {
  14346. source: "./media/characters/felix/front-clothed.svg",
  14347. extra: 762 / 722,
  14348. bottom: 0.02
  14349. }
  14350. },
  14351. },
  14352. [
  14353. {
  14354. name: "Normal",
  14355. height: math.unit(6 + 8 / 12, "feet"),
  14356. default: true
  14357. },
  14358. {
  14359. name: "Macro",
  14360. height: math.unit(2600, "feet")
  14361. },
  14362. {
  14363. name: "Megamacro",
  14364. height: math.unit(450, "miles")
  14365. },
  14366. ]
  14367. ))
  14368. characterMakers.push(() => makeCharacter(
  14369. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14370. {
  14371. front: {
  14372. height: math.unit(6 + 1 / 12, "feet"),
  14373. weight: math.unit(250, "lb"),
  14374. name: "Front",
  14375. image: {
  14376. source: "./media/characters/tobo/front.svg",
  14377. extra: 608 / 586,
  14378. bottom: 0.023
  14379. }
  14380. },
  14381. back: {
  14382. height: math.unit(6 + 1 / 12, "feet"),
  14383. weight: math.unit(250, "lb"),
  14384. name: "Back",
  14385. image: {
  14386. source: "./media/characters/tobo/back.svg",
  14387. extra: 608 / 586
  14388. }
  14389. },
  14390. },
  14391. [
  14392. {
  14393. name: "Nano",
  14394. height: math.unit(2, "nm")
  14395. },
  14396. {
  14397. name: "Megamicro",
  14398. height: math.unit(0.1, "mm")
  14399. },
  14400. {
  14401. name: "Micro",
  14402. height: math.unit(1, "inch"),
  14403. default: true
  14404. },
  14405. {
  14406. name: "Human-sized",
  14407. height: math.unit(6 + 1 / 12, "feet")
  14408. },
  14409. {
  14410. name: "Macro",
  14411. height: math.unit(250, "feet")
  14412. },
  14413. {
  14414. name: "Megamacro",
  14415. height: math.unit(75, "miles")
  14416. },
  14417. {
  14418. name: "Texas-sized",
  14419. height: math.unit(750, "miles")
  14420. },
  14421. {
  14422. name: "Teramacro",
  14423. height: math.unit(50000, "miles")
  14424. },
  14425. ]
  14426. ))
  14427. characterMakers.push(() => makeCharacter(
  14428. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14429. {
  14430. front: {
  14431. height: math.unit(6, "feet"),
  14432. weight: math.unit(269, "lb"),
  14433. name: "Front",
  14434. image: {
  14435. source: "./media/characters/danny-kapowsky/front.svg",
  14436. extra: 766 / 736,
  14437. bottom: 0.044
  14438. }
  14439. },
  14440. back: {
  14441. height: math.unit(6, "feet"),
  14442. weight: math.unit(269, "lb"),
  14443. name: "Back",
  14444. image: {
  14445. source: "./media/characters/danny-kapowsky/back.svg",
  14446. extra: 797 / 760,
  14447. bottom: 0.025
  14448. }
  14449. },
  14450. },
  14451. [
  14452. {
  14453. name: "Macro",
  14454. height: math.unit(150, "feet"),
  14455. default: true
  14456. },
  14457. {
  14458. name: "Macro+",
  14459. height: math.unit(200, "feet")
  14460. },
  14461. {
  14462. name: "Macro++",
  14463. height: math.unit(300, "feet")
  14464. },
  14465. {
  14466. name: "Macro+++",
  14467. height: math.unit(400, "feet")
  14468. },
  14469. ]
  14470. ))
  14471. characterMakers.push(() => makeCharacter(
  14472. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14473. {
  14474. side: {
  14475. height: math.unit(6, "feet"),
  14476. weight: math.unit(170, "lb"),
  14477. name: "Side",
  14478. image: {
  14479. source: "./media/characters/finn/side.svg",
  14480. extra: 1953 / 1807,
  14481. bottom: 0.057
  14482. }
  14483. },
  14484. },
  14485. [
  14486. {
  14487. name: "Megamacro",
  14488. height: math.unit(14445, "feet"),
  14489. default: true
  14490. },
  14491. ]
  14492. ))
  14493. characterMakers.push(() => makeCharacter(
  14494. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14495. {
  14496. front: {
  14497. height: math.unit(5 + 6 / 12, "feet"),
  14498. weight: math.unit(125, "lb"),
  14499. name: "Front",
  14500. image: {
  14501. source: "./media/characters/roy/front.svg",
  14502. extra: 1,
  14503. bottom: 0.11
  14504. }
  14505. },
  14506. },
  14507. [
  14508. {
  14509. name: "Micro",
  14510. height: math.unit(3, "inches"),
  14511. default: true
  14512. },
  14513. {
  14514. name: "Normal",
  14515. height: math.unit(5 + 6 / 12, "feet")
  14516. },
  14517. {
  14518. name: "Lesser Macro",
  14519. height: math.unit(60, "feet")
  14520. },
  14521. {
  14522. name: "Greater Macro",
  14523. height: math.unit(120, "feet")
  14524. },
  14525. ]
  14526. ))
  14527. characterMakers.push(() => makeCharacter(
  14528. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14529. {
  14530. front: {
  14531. height: math.unit(6, "feet"),
  14532. weight: math.unit(100, "lb"),
  14533. name: "Front",
  14534. image: {
  14535. source: "./media/characters/aevsivs/front.svg",
  14536. extra: 1,
  14537. bottom: 0.03
  14538. }
  14539. },
  14540. back: {
  14541. height: math.unit(6, "feet"),
  14542. weight: math.unit(100, "lb"),
  14543. name: "Back",
  14544. image: {
  14545. source: "./media/characters/aevsivs/back.svg"
  14546. }
  14547. },
  14548. },
  14549. [
  14550. {
  14551. name: "Micro",
  14552. height: math.unit(2, "inches"),
  14553. default: true
  14554. },
  14555. {
  14556. name: "Normal",
  14557. height: math.unit(5, "feet")
  14558. },
  14559. ]
  14560. ))
  14561. characterMakers.push(() => makeCharacter(
  14562. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14563. {
  14564. front: {
  14565. height: math.unit(5 + 7 / 12, "feet"),
  14566. weight: math.unit(159, "lb"),
  14567. name: "Front",
  14568. image: {
  14569. source: "./media/characters/hildegard/front.svg",
  14570. extra: 289 / 269,
  14571. bottom: 7.63 / 297.8
  14572. }
  14573. },
  14574. back: {
  14575. height: math.unit(5 + 7 / 12, "feet"),
  14576. weight: math.unit(159, "lb"),
  14577. name: "Back",
  14578. image: {
  14579. source: "./media/characters/hildegard/back.svg",
  14580. extra: 280 / 260,
  14581. bottom: 2.3 / 282
  14582. }
  14583. },
  14584. },
  14585. [
  14586. {
  14587. name: "Normal",
  14588. height: math.unit(5 + 7 / 12, "feet"),
  14589. default: true
  14590. },
  14591. ]
  14592. ))
  14593. characterMakers.push(() => makeCharacter(
  14594. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14595. {
  14596. bernard: {
  14597. height: math.unit(2 + 7 / 12, "feet"),
  14598. weight: math.unit(66, "lb"),
  14599. name: "Bernard",
  14600. rename: true,
  14601. image: {
  14602. source: "./media/characters/bernard-wilder/bernard.svg",
  14603. extra: 192 / 128,
  14604. bottom: 0.05
  14605. }
  14606. },
  14607. wilder: {
  14608. height: math.unit(5 + 8 / 12, "feet"),
  14609. weight: math.unit(143, "lb"),
  14610. name: "Wilder",
  14611. rename: true,
  14612. image: {
  14613. source: "./media/characters/bernard-wilder/wilder.svg",
  14614. extra: 361 / 312,
  14615. bottom: 0.02
  14616. }
  14617. },
  14618. },
  14619. [
  14620. {
  14621. name: "Normal",
  14622. height: math.unit(2 + 7 / 12, "feet"),
  14623. default: true
  14624. },
  14625. ]
  14626. ))
  14627. characterMakers.push(() => makeCharacter(
  14628. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14629. {
  14630. anthro: {
  14631. height: math.unit(6 + 1 / 12, "feet"),
  14632. weight: math.unit(155, "lb"),
  14633. name: "Anthro",
  14634. image: {
  14635. source: "./media/characters/hearth/anthro.svg",
  14636. extra: 260 / 250,
  14637. bottom: 0.02
  14638. }
  14639. },
  14640. feral: {
  14641. height: math.unit(3.78, "feet"),
  14642. weight: math.unit(35, "kg"),
  14643. name: "Feral",
  14644. image: {
  14645. source: "./media/characters/hearth/feral.svg",
  14646. extra: 153 / 135,
  14647. bottom: 0.03
  14648. }
  14649. },
  14650. },
  14651. [
  14652. {
  14653. name: "Normal",
  14654. height: math.unit(6 + 1 / 12, "feet"),
  14655. default: true
  14656. },
  14657. ]
  14658. ))
  14659. characterMakers.push(() => makeCharacter(
  14660. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14661. {
  14662. front: {
  14663. height: math.unit(6, "feet"),
  14664. weight: math.unit(182, "lb"),
  14665. name: "Front",
  14666. image: {
  14667. source: "./media/characters/ingrid/front.svg",
  14668. extra: 294 / 268,
  14669. bottom: 0.027
  14670. }
  14671. },
  14672. },
  14673. [
  14674. {
  14675. name: "Normal",
  14676. height: math.unit(6, "feet"),
  14677. default: true
  14678. },
  14679. ]
  14680. ))
  14681. characterMakers.push(() => makeCharacter(
  14682. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14683. {
  14684. eevee: {
  14685. height: math.unit(2 + 10 / 12, "feet"),
  14686. weight: math.unit(86, "lb"),
  14687. name: "Malgam",
  14688. image: {
  14689. source: "./media/characters/malgam/eevee.svg",
  14690. extra: 218 / 180,
  14691. bottom: 0.2
  14692. }
  14693. },
  14694. sylveon: {
  14695. height: math.unit(4, "feet"),
  14696. weight: math.unit(101, "lb"),
  14697. name: "Future Malgam",
  14698. rename: true,
  14699. image: {
  14700. source: "./media/characters/malgam/sylveon.svg",
  14701. extra: 371 / 325,
  14702. bottom: 0.015
  14703. }
  14704. },
  14705. gigantamax: {
  14706. height: math.unit(50, "feet"),
  14707. name: "Gigantamax Malgam",
  14708. rename: true,
  14709. image: {
  14710. source: "./media/characters/malgam/gigantamax.svg"
  14711. }
  14712. },
  14713. },
  14714. [
  14715. {
  14716. name: "Normal",
  14717. height: math.unit(2 + 10 / 12, "feet"),
  14718. default: true
  14719. },
  14720. ]
  14721. ))
  14722. characterMakers.push(() => makeCharacter(
  14723. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14724. {
  14725. front: {
  14726. height: math.unit(5 + 11 / 12, "feet"),
  14727. weight: math.unit(188, "lb"),
  14728. name: "Front",
  14729. image: {
  14730. source: "./media/characters/fleur/front.svg",
  14731. extra: 309 / 283,
  14732. bottom: 0.007
  14733. }
  14734. },
  14735. },
  14736. [
  14737. {
  14738. name: "Normal",
  14739. height: math.unit(5 + 11 / 12, "feet"),
  14740. default: true
  14741. },
  14742. ]
  14743. ))
  14744. characterMakers.push(() => makeCharacter(
  14745. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14746. {
  14747. front: {
  14748. height: math.unit(5 + 4 / 12, "feet"),
  14749. weight: math.unit(122, "lb"),
  14750. name: "Front",
  14751. image: {
  14752. source: "./media/characters/jude/front.svg",
  14753. extra: 288 / 273,
  14754. bottom: 0.03
  14755. }
  14756. },
  14757. },
  14758. [
  14759. {
  14760. name: "Normal",
  14761. height: math.unit(5 + 4 / 12, "feet"),
  14762. default: true
  14763. },
  14764. ]
  14765. ))
  14766. characterMakers.push(() => makeCharacter(
  14767. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14768. {
  14769. front: {
  14770. height: math.unit(5 + 11 / 12, "feet"),
  14771. weight: math.unit(190, "lb"),
  14772. name: "Front",
  14773. image: {
  14774. source: "./media/characters/seara/front.svg",
  14775. extra: 1,
  14776. bottom: 0.05
  14777. }
  14778. },
  14779. },
  14780. [
  14781. {
  14782. name: "Normal",
  14783. height: math.unit(5 + 11 / 12, "feet"),
  14784. default: true
  14785. },
  14786. ]
  14787. ))
  14788. characterMakers.push(() => makeCharacter(
  14789. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14790. {
  14791. front: {
  14792. height: math.unit(16 + 5 / 12, "feet"),
  14793. weight: math.unit(524, "lb"),
  14794. name: "Front",
  14795. image: {
  14796. source: "./media/characters/caspian/front.svg",
  14797. extra: 1,
  14798. bottom: 0.04
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Normal",
  14805. height: math.unit(16 + 5 / 12, "feet"),
  14806. default: true
  14807. },
  14808. ]
  14809. ))
  14810. characterMakers.push(() => makeCharacter(
  14811. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14812. {
  14813. front: {
  14814. height: math.unit(5 + 7 / 12, "feet"),
  14815. weight: math.unit(170, "lb"),
  14816. name: "Front",
  14817. image: {
  14818. source: "./media/characters/mika/front.svg",
  14819. extra: 1,
  14820. bottom: 0.016
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "Normal",
  14827. height: math.unit(5 + 7 / 12, "feet"),
  14828. default: true
  14829. },
  14830. ]
  14831. ))
  14832. characterMakers.push(() => makeCharacter(
  14833. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14834. {
  14835. front: {
  14836. height: math.unit(6 + 2 / 12, "feet"),
  14837. weight: math.unit(268, "lb"),
  14838. name: "Front",
  14839. image: {
  14840. source: "./media/characters/sol/front.svg",
  14841. extra: 247 / 231,
  14842. bottom: 0.05
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Normal",
  14849. height: math.unit(6 + 2 / 12, "feet"),
  14850. default: true
  14851. },
  14852. ]
  14853. ))
  14854. characterMakers.push(() => makeCharacter(
  14855. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14856. {
  14857. buizel: {
  14858. height: math.unit(2 + 5 / 12, "feet"),
  14859. weight: math.unit(87, "lb"),
  14860. name: "Buizel",
  14861. image: {
  14862. source: "./media/characters/umiko/buizel.svg",
  14863. extra: 172 / 157,
  14864. bottom: 0.01
  14865. }
  14866. },
  14867. floatzel: {
  14868. height: math.unit(5 + 9 / 12, "feet"),
  14869. weight: math.unit(250, "lb"),
  14870. name: "Floatzel",
  14871. image: {
  14872. source: "./media/characters/umiko/floatzel.svg",
  14873. extra: 262 / 248
  14874. }
  14875. },
  14876. },
  14877. [
  14878. {
  14879. name: "Normal",
  14880. height: math.unit(2 + 5 / 12, "feet"),
  14881. default: true
  14882. },
  14883. ]
  14884. ))
  14885. characterMakers.push(() => makeCharacter(
  14886. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14887. {
  14888. front: {
  14889. height: math.unit(6 + 2 / 12, "feet"),
  14890. weight: math.unit(146, "lb"),
  14891. name: "Front",
  14892. image: {
  14893. source: "./media/characters/iliac/front.svg",
  14894. extra: 389 / 365,
  14895. bottom: 0.035
  14896. }
  14897. },
  14898. },
  14899. [
  14900. {
  14901. name: "Normal",
  14902. height: math.unit(6 + 2 / 12, "feet"),
  14903. default: true
  14904. },
  14905. ]
  14906. ))
  14907. characterMakers.push(() => makeCharacter(
  14908. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14909. {
  14910. front: {
  14911. height: math.unit(6, "feet"),
  14912. weight: math.unit(170, "lb"),
  14913. name: "Front",
  14914. image: {
  14915. source: "./media/characters/topaz/front.svg",
  14916. extra: 317 / 303,
  14917. bottom: 0.055
  14918. }
  14919. },
  14920. },
  14921. [
  14922. {
  14923. name: "Normal",
  14924. height: math.unit(6, "feet"),
  14925. default: true
  14926. },
  14927. ]
  14928. ))
  14929. characterMakers.push(() => makeCharacter(
  14930. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14931. {
  14932. front: {
  14933. height: math.unit(5 + 11 / 12, "feet"),
  14934. weight: math.unit(144, "lb"),
  14935. name: "Front",
  14936. image: {
  14937. source: "./media/characters/gabriel/front.svg",
  14938. extra: 285 / 262,
  14939. bottom: 0.004
  14940. }
  14941. },
  14942. },
  14943. [
  14944. {
  14945. name: "Normal",
  14946. height: math.unit(5 + 11 / 12, "feet"),
  14947. default: true
  14948. },
  14949. ]
  14950. ))
  14951. characterMakers.push(() => makeCharacter(
  14952. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14953. {
  14954. side: {
  14955. height: math.unit(6 + 5 / 12, "feet"),
  14956. weight: math.unit(300, "lb"),
  14957. name: "Side",
  14958. image: {
  14959. source: "./media/characters/tempest-suicune/side.svg",
  14960. extra: 195 / 154,
  14961. bottom: 0.04
  14962. }
  14963. },
  14964. },
  14965. [
  14966. {
  14967. name: "Normal",
  14968. height: math.unit(6 + 5 / 12, "feet"),
  14969. default: true
  14970. },
  14971. ]
  14972. ))
  14973. characterMakers.push(() => makeCharacter(
  14974. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14975. {
  14976. front: {
  14977. height: math.unit(7 + 2 / 12, "feet"),
  14978. weight: math.unit(322, "lb"),
  14979. name: "Front",
  14980. image: {
  14981. source: "./media/characters/vulcan/front.svg",
  14982. extra: 154 / 147,
  14983. bottom: 0.04
  14984. }
  14985. },
  14986. },
  14987. [
  14988. {
  14989. name: "Normal",
  14990. height: math.unit(7 + 2 / 12, "feet"),
  14991. default: true
  14992. },
  14993. ]
  14994. ))
  14995. characterMakers.push(() => makeCharacter(
  14996. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14997. {
  14998. front: {
  14999. height: math.unit(5 + 10 / 12, "feet"),
  15000. weight: math.unit(264, "lb"),
  15001. name: "Front",
  15002. image: {
  15003. source: "./media/characters/gault/front.svg",
  15004. extra: 161 / 140,
  15005. bottom: 0.028
  15006. }
  15007. },
  15008. },
  15009. [
  15010. {
  15011. name: "Normal",
  15012. height: math.unit(5 + 10 / 12, "feet"),
  15013. default: true
  15014. },
  15015. ]
  15016. ))
  15017. characterMakers.push(() => makeCharacter(
  15018. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15019. {
  15020. front: {
  15021. height: math.unit(6, "feet"),
  15022. weight: math.unit(150, "lb"),
  15023. name: "Front",
  15024. image: {
  15025. source: "./media/characters/shard/front.svg",
  15026. extra: 273 / 238,
  15027. bottom: 0.02
  15028. }
  15029. },
  15030. },
  15031. [
  15032. {
  15033. name: "Normal",
  15034. height: math.unit(3 + 6 / 12, "feet"),
  15035. default: true
  15036. },
  15037. ]
  15038. ))
  15039. characterMakers.push(() => makeCharacter(
  15040. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15041. {
  15042. front: {
  15043. height: math.unit(5 + 11 / 12, "feet"),
  15044. weight: math.unit(146, "lb"),
  15045. name: "Front",
  15046. image: {
  15047. source: "./media/characters/ashe/front.svg",
  15048. extra: 400 / 373,
  15049. bottom: 0.01
  15050. }
  15051. },
  15052. },
  15053. [
  15054. {
  15055. name: "Normal",
  15056. height: math.unit(5 + 11 / 12, "feet"),
  15057. default: true
  15058. },
  15059. ]
  15060. ))
  15061. characterMakers.push(() => makeCharacter(
  15062. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15063. {
  15064. front: {
  15065. height: math.unit(5 + 5 / 12, "feet"),
  15066. weight: math.unit(135, "lb"),
  15067. name: "Front",
  15068. image: {
  15069. source: "./media/characters/beatrix/front.svg",
  15070. extra: 392 / 379,
  15071. bottom: 0.01
  15072. }
  15073. },
  15074. },
  15075. [
  15076. {
  15077. name: "Normal",
  15078. height: math.unit(6, "feet"),
  15079. default: true
  15080. },
  15081. ]
  15082. ))
  15083. characterMakers.push(() => makeCharacter(
  15084. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15085. {
  15086. front: {
  15087. height: math.unit(6, "feet"),
  15088. weight: math.unit(150, "lb"),
  15089. name: "Front",
  15090. image: {
  15091. source: "./media/characters/ignatius/front.svg",
  15092. extra: 245 / 222,
  15093. bottom: 0.01
  15094. }
  15095. },
  15096. },
  15097. [
  15098. {
  15099. name: "Normal",
  15100. height: math.unit(5 + 5 / 12, "feet"),
  15101. default: true
  15102. },
  15103. ]
  15104. ))
  15105. characterMakers.push(() => makeCharacter(
  15106. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15107. {
  15108. front: {
  15109. height: math.unit(6 + 2 / 12, "feet"),
  15110. weight: math.unit(138, "lb"),
  15111. name: "Front",
  15112. image: {
  15113. source: "./media/characters/mei-li/front.svg",
  15114. extra: 237 / 229,
  15115. bottom: 0.03
  15116. }
  15117. },
  15118. },
  15119. [
  15120. {
  15121. name: "Normal",
  15122. height: math.unit(6 + 2 / 12, "feet"),
  15123. default: true
  15124. },
  15125. ]
  15126. ))
  15127. characterMakers.push(() => makeCharacter(
  15128. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15129. {
  15130. front: {
  15131. height: math.unit(2 + 4 / 12, "feet"),
  15132. weight: math.unit(62, "lb"),
  15133. name: "Front",
  15134. image: {
  15135. source: "./media/characters/puru/front.svg",
  15136. extra: 206 / 149,
  15137. bottom: 0.06
  15138. }
  15139. },
  15140. },
  15141. [
  15142. {
  15143. name: "Normal",
  15144. height: math.unit(2 + 4 / 12, "feet"),
  15145. default: true
  15146. },
  15147. ]
  15148. ))
  15149. characterMakers.push(() => makeCharacter(
  15150. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15151. {
  15152. anthro: {
  15153. height: math.unit(5 + 8/12, "feet"),
  15154. weight: math.unit(200, "lb"),
  15155. energyNeed: math.unit(2000, "kcal"),
  15156. name: "Anthro",
  15157. image: {
  15158. source: "./media/characters/kee/anthro.svg",
  15159. extra: 3251/3184,
  15160. bottom: 250/3501
  15161. }
  15162. },
  15163. taur: {
  15164. height: math.unit(11, "feet"),
  15165. weight: math.unit(500, "lb"),
  15166. energyNeed: math.unit(5000, "kcal"),
  15167. name: "Taur",
  15168. image: {
  15169. source: "./media/characters/kee/taur.svg",
  15170. extra: 1362/1320,
  15171. bottom: 83/1445
  15172. }
  15173. },
  15174. },
  15175. [
  15176. {
  15177. name: "Normal",
  15178. height: math.unit(5 + 8/12, "feet"),
  15179. default: true
  15180. },
  15181. {
  15182. name: "Macro",
  15183. height: math.unit(35, "feet")
  15184. },
  15185. ]
  15186. ))
  15187. characterMakers.push(() => makeCharacter(
  15188. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15189. {
  15190. anthro: {
  15191. height: math.unit(7, "feet"),
  15192. weight: math.unit(190, "lb"),
  15193. name: "Anthro",
  15194. image: {
  15195. source: "./media/characters/cobalt-dracha/anthro.svg",
  15196. extra: 231 / 225,
  15197. bottom: 0.04
  15198. }
  15199. },
  15200. feral: {
  15201. height: math.unit(9 + 7 / 12, "feet"),
  15202. weight: math.unit(294, "lb"),
  15203. name: "Feral",
  15204. image: {
  15205. source: "./media/characters/cobalt-dracha/feral.svg",
  15206. extra: 692 / 633,
  15207. bottom: 0.05
  15208. }
  15209. },
  15210. },
  15211. [
  15212. {
  15213. name: "Normal",
  15214. height: math.unit(7, "feet"),
  15215. default: true
  15216. },
  15217. ]
  15218. ))
  15219. characterMakers.push(() => makeCharacter(
  15220. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15221. {
  15222. fallen: {
  15223. height: math.unit(11 + 8 / 12, "feet"),
  15224. weight: math.unit(485, "lb"),
  15225. name: "Java (Fallen)",
  15226. rename: true,
  15227. image: {
  15228. source: "./media/characters/java/fallen.svg",
  15229. extra: 226 / 208,
  15230. bottom: 0.005
  15231. }
  15232. },
  15233. godkin: {
  15234. height: math.unit(10 + 6 / 12, "feet"),
  15235. weight: math.unit(328, "lb"),
  15236. name: "Java (Godkin)",
  15237. rename: true,
  15238. image: {
  15239. source: "./media/characters/java/godkin.svg",
  15240. extra: 270 / 262,
  15241. bottom: 0.02
  15242. }
  15243. },
  15244. },
  15245. [
  15246. {
  15247. name: "Normal",
  15248. height: math.unit(11 + 8 / 12, "feet"),
  15249. default: true
  15250. },
  15251. ]
  15252. ))
  15253. characterMakers.push(() => makeCharacter(
  15254. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15255. {
  15256. front: {
  15257. height: math.unit(7 + 8 / 12, "feet"),
  15258. weight: math.unit(320, "lb"),
  15259. name: "Front",
  15260. image: {
  15261. source: "./media/characters/skoll/front.svg",
  15262. extra: 232 / 220,
  15263. bottom: 0.02
  15264. }
  15265. },
  15266. },
  15267. [
  15268. {
  15269. name: "Normal",
  15270. height: math.unit(7 + 8 / 12, "feet"),
  15271. default: true
  15272. },
  15273. ]
  15274. ))
  15275. characterMakers.push(() => makeCharacter(
  15276. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15277. {
  15278. front: {
  15279. height: math.unit(5 + 9 / 12, "feet"),
  15280. weight: math.unit(170, "lb"),
  15281. name: "Front",
  15282. image: {
  15283. source: "./media/characters/purna/front.svg",
  15284. extra: 239 / 229,
  15285. bottom: 0.01
  15286. }
  15287. },
  15288. },
  15289. [
  15290. {
  15291. name: "Normal",
  15292. height: math.unit(5 + 9 / 12, "feet"),
  15293. default: true
  15294. },
  15295. ]
  15296. ))
  15297. characterMakers.push(() => makeCharacter(
  15298. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15299. {
  15300. front: {
  15301. height: math.unit(5 + 9 / 12, "feet"),
  15302. weight: math.unit(142, "lb"),
  15303. name: "Front",
  15304. image: {
  15305. source: "./media/characters/kuva/front.svg",
  15306. extra: 281 / 271,
  15307. bottom: 0.006
  15308. }
  15309. },
  15310. },
  15311. [
  15312. {
  15313. name: "Normal",
  15314. height: math.unit(5 + 9 / 12, "feet"),
  15315. default: true
  15316. },
  15317. ]
  15318. ))
  15319. characterMakers.push(() => makeCharacter(
  15320. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15321. {
  15322. anthro: {
  15323. height: math.unit(9 + 2 / 12, "feet"),
  15324. weight: math.unit(270, "lb"),
  15325. name: "Anthro",
  15326. image: {
  15327. source: "./media/characters/embra/anthro.svg",
  15328. extra: 200 / 187,
  15329. bottom: 0.02
  15330. }
  15331. },
  15332. feral: {
  15333. height: math.unit(18 + 8 / 12, "feet"),
  15334. weight: math.unit(576, "lb"),
  15335. name: "Feral",
  15336. image: {
  15337. source: "./media/characters/embra/feral.svg",
  15338. extra: 152 / 137,
  15339. bottom: 0.037
  15340. }
  15341. },
  15342. },
  15343. [
  15344. {
  15345. name: "Normal",
  15346. height: math.unit(9 + 2 / 12, "feet"),
  15347. default: true
  15348. },
  15349. ]
  15350. ))
  15351. characterMakers.push(() => makeCharacter(
  15352. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15353. {
  15354. anthro: {
  15355. height: math.unit(10 + 9 / 12, "feet"),
  15356. weight: math.unit(224, "lb"),
  15357. name: "Anthro",
  15358. image: {
  15359. source: "./media/characters/grottos/anthro.svg",
  15360. extra: 350 / 332,
  15361. bottom: 0.045
  15362. }
  15363. },
  15364. feral: {
  15365. height: math.unit(20 + 7 / 12, "feet"),
  15366. weight: math.unit(629, "lb"),
  15367. name: "Feral",
  15368. image: {
  15369. source: "./media/characters/grottos/feral.svg",
  15370. extra: 207 / 190,
  15371. bottom: 0.05
  15372. }
  15373. },
  15374. },
  15375. [
  15376. {
  15377. name: "Normal",
  15378. height: math.unit(10 + 9 / 12, "feet"),
  15379. default: true
  15380. },
  15381. ]
  15382. ))
  15383. characterMakers.push(() => makeCharacter(
  15384. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15385. {
  15386. anthro: {
  15387. height: math.unit(9 + 6 / 12, "feet"),
  15388. weight: math.unit(298, "lb"),
  15389. name: "Anthro",
  15390. image: {
  15391. source: "./media/characters/frifna/anthro.svg",
  15392. extra: 282 / 269,
  15393. bottom: 0.015
  15394. }
  15395. },
  15396. feral: {
  15397. height: math.unit(16 + 2 / 12, "feet"),
  15398. weight: math.unit(624, "lb"),
  15399. name: "Feral",
  15400. image: {
  15401. source: "./media/characters/frifna/feral.svg"
  15402. }
  15403. },
  15404. },
  15405. [
  15406. {
  15407. name: "Normal",
  15408. height: math.unit(9 + 6 / 12, "feet"),
  15409. default: true
  15410. },
  15411. ]
  15412. ))
  15413. characterMakers.push(() => makeCharacter(
  15414. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15415. {
  15416. front: {
  15417. height: math.unit(6 + 2 / 12, "feet"),
  15418. weight: math.unit(168, "lb"),
  15419. name: "Front",
  15420. image: {
  15421. source: "./media/characters/elise/front.svg",
  15422. extra: 276 / 271
  15423. }
  15424. },
  15425. },
  15426. [
  15427. {
  15428. name: "Normal",
  15429. height: math.unit(6 + 2 / 12, "feet"),
  15430. default: true
  15431. },
  15432. ]
  15433. ))
  15434. characterMakers.push(() => makeCharacter(
  15435. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15436. {
  15437. front: {
  15438. height: math.unit(5 + 10 / 12, "feet"),
  15439. weight: math.unit(210, "lb"),
  15440. name: "Front",
  15441. image: {
  15442. source: "./media/characters/glade/front.svg",
  15443. extra: 258 / 247,
  15444. bottom: 0.008
  15445. }
  15446. },
  15447. },
  15448. [
  15449. {
  15450. name: "Normal",
  15451. height: math.unit(5 + 10 / 12, "feet"),
  15452. default: true
  15453. },
  15454. ]
  15455. ))
  15456. characterMakers.push(() => makeCharacter(
  15457. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15458. {
  15459. front: {
  15460. height: math.unit(5 + 10 / 12, "feet"),
  15461. weight: math.unit(129, "lb"),
  15462. name: "Front",
  15463. image: {
  15464. source: "./media/characters/rina/front.svg",
  15465. extra: 266 / 255,
  15466. bottom: 0.005
  15467. }
  15468. },
  15469. },
  15470. [
  15471. {
  15472. name: "Normal",
  15473. height: math.unit(5 + 10 / 12, "feet"),
  15474. default: true
  15475. },
  15476. ]
  15477. ))
  15478. characterMakers.push(() => makeCharacter(
  15479. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15480. {
  15481. front: {
  15482. height: math.unit(6 + 1 / 12, "feet"),
  15483. weight: math.unit(192, "lb"),
  15484. name: "Front",
  15485. image: {
  15486. source: "./media/characters/veronica/front.svg",
  15487. extra: 319 / 309,
  15488. bottom: 0.005
  15489. }
  15490. },
  15491. },
  15492. [
  15493. {
  15494. name: "Normal",
  15495. height: math.unit(6 + 1 / 12, "feet"),
  15496. default: true
  15497. },
  15498. ]
  15499. ))
  15500. characterMakers.push(() => makeCharacter(
  15501. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15502. {
  15503. front: {
  15504. height: math.unit(9 + 3 / 12, "feet"),
  15505. weight: math.unit(1100, "lb"),
  15506. name: "Front",
  15507. image: {
  15508. source: "./media/characters/braxton/front.svg",
  15509. extra: 1057 / 984,
  15510. bottom: 0.05
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Normal",
  15517. height: math.unit(9 + 3 / 12, "feet")
  15518. },
  15519. {
  15520. name: "Giant",
  15521. height: math.unit(300, "feet"),
  15522. default: true
  15523. },
  15524. {
  15525. name: "Macro",
  15526. height: math.unit(700, "feet")
  15527. },
  15528. {
  15529. name: "Megamacro",
  15530. height: math.unit(6000, "feet")
  15531. },
  15532. ]
  15533. ))
  15534. characterMakers.push(() => makeCharacter(
  15535. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15536. {
  15537. front: {
  15538. height: math.unit(6 + 7 / 12, "feet"),
  15539. weight: math.unit(150, "lb"),
  15540. name: "Front",
  15541. image: {
  15542. source: "./media/characters/blue-feyonics/front.svg",
  15543. extra: 1403 / 1306,
  15544. bottom: 0.047
  15545. }
  15546. },
  15547. },
  15548. [
  15549. {
  15550. name: "Normal",
  15551. height: math.unit(6 + 7 / 12, "feet"),
  15552. default: true
  15553. },
  15554. ]
  15555. ))
  15556. characterMakers.push(() => makeCharacter(
  15557. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15558. {
  15559. front: {
  15560. height: math.unit(1.8, "meters"),
  15561. weight: math.unit(60, "kg"),
  15562. name: "Front",
  15563. image: {
  15564. source: "./media/characters/maxwell/front.svg",
  15565. extra: 2060 / 1873
  15566. }
  15567. },
  15568. },
  15569. [
  15570. {
  15571. name: "Micro",
  15572. height: math.unit(1, "mm")
  15573. },
  15574. {
  15575. name: "Normal",
  15576. height: math.unit(1.8, "meter"),
  15577. default: true
  15578. },
  15579. {
  15580. name: "Macro",
  15581. height: math.unit(30, "meters")
  15582. },
  15583. {
  15584. name: "Megamacro",
  15585. height: math.unit(10, "km")
  15586. },
  15587. ]
  15588. ))
  15589. characterMakers.push(() => makeCharacter(
  15590. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15591. {
  15592. front: {
  15593. height: math.unit(6, "feet"),
  15594. weight: math.unit(150, "lb"),
  15595. name: "Front",
  15596. image: {
  15597. source: "./media/characters/jack/front.svg",
  15598. extra: 1754 / 1640,
  15599. bottom: 0.01
  15600. }
  15601. },
  15602. },
  15603. [
  15604. {
  15605. name: "Normal",
  15606. height: math.unit(80000, "feet"),
  15607. default: true
  15608. },
  15609. {
  15610. name: "Max size",
  15611. height: math.unit(10, "lightyears")
  15612. },
  15613. ]
  15614. ))
  15615. characterMakers.push(() => makeCharacter(
  15616. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15617. {
  15618. urban: {
  15619. height: math.unit(5, "feet"),
  15620. weight: math.unit(240, "lb"),
  15621. name: "Urban",
  15622. image: {
  15623. source: "./media/characters/cafat/urban.svg",
  15624. extra: 1223/1126,
  15625. bottom: 205/1428
  15626. }
  15627. },
  15628. summer: {
  15629. height: math.unit(5, "feet"),
  15630. weight: math.unit(240, "lb"),
  15631. name: "Summer",
  15632. image: {
  15633. source: "./media/characters/cafat/summer.svg",
  15634. extra: 1223/1126,
  15635. bottom: 205/1428
  15636. }
  15637. },
  15638. winter: {
  15639. height: math.unit(5, "feet"),
  15640. weight: math.unit(240, "lb"),
  15641. name: "Winter",
  15642. image: {
  15643. source: "./media/characters/cafat/winter.svg",
  15644. extra: 1223/1126,
  15645. bottom: 205/1428
  15646. }
  15647. },
  15648. lingerie: {
  15649. height: math.unit(5, "feet"),
  15650. weight: math.unit(240, "lb"),
  15651. name: "Lingerie",
  15652. image: {
  15653. source: "./media/characters/cafat/lingerie.svg",
  15654. extra: 1223/1126,
  15655. bottom: 205/1428
  15656. }
  15657. },
  15658. upright: {
  15659. height: math.unit(6.3, "feet"),
  15660. weight: math.unit(240, "lb"),
  15661. name: "Upright",
  15662. image: {
  15663. source: "./media/characters/cafat/upright.svg",
  15664. bottom: 0.01
  15665. }
  15666. },
  15667. uprightFull: {
  15668. height: math.unit(6.3, "feet"),
  15669. weight: math.unit(240, "lb"),
  15670. name: "Upright (Full)",
  15671. image: {
  15672. source: "./media/characters/cafat/upright-full.svg",
  15673. bottom: 0.01
  15674. }
  15675. },
  15676. },
  15677. [
  15678. {
  15679. name: "Small",
  15680. height: math.unit(5, "feet"),
  15681. default: true
  15682. },
  15683. {
  15684. name: "Large",
  15685. height: math.unit(13, "feet")
  15686. },
  15687. ]
  15688. ))
  15689. characterMakers.push(() => makeCharacter(
  15690. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15691. {
  15692. front: {
  15693. height: math.unit(6, "feet"),
  15694. weight: math.unit(150, "lb"),
  15695. name: "Front",
  15696. image: {
  15697. source: "./media/characters/verin-raharra/front.svg",
  15698. extra: 5019 / 4835,
  15699. bottom: 0.023
  15700. }
  15701. },
  15702. },
  15703. [
  15704. {
  15705. name: "Normal",
  15706. height: math.unit(7 + 5 / 12, "feet"),
  15707. default: true
  15708. },
  15709. {
  15710. name: "Upsized",
  15711. height: math.unit(20, "feet")
  15712. },
  15713. ]
  15714. ))
  15715. characterMakers.push(() => makeCharacter(
  15716. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15717. {
  15718. front: {
  15719. height: math.unit(7, "feet"),
  15720. weight: math.unit(230, "lb"),
  15721. name: "Front",
  15722. image: {
  15723. source: "./media/characters/nakata/front.svg",
  15724. extra: 1.005,
  15725. bottom: 0.01
  15726. }
  15727. },
  15728. },
  15729. [
  15730. {
  15731. name: "Normal",
  15732. height: math.unit(7, "feet"),
  15733. default: true
  15734. },
  15735. {
  15736. name: "Big",
  15737. height: math.unit(14, "feet")
  15738. },
  15739. {
  15740. name: "Macro",
  15741. height: math.unit(400, "feet")
  15742. },
  15743. ]
  15744. ))
  15745. characterMakers.push(() => makeCharacter(
  15746. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15747. {
  15748. front: {
  15749. height: math.unit(4.91, "feet"),
  15750. weight: math.unit(100, "lb"),
  15751. name: "Front",
  15752. image: {
  15753. source: "./media/characters/lily/front.svg",
  15754. extra: 1585 / 1415,
  15755. bottom: 0.02
  15756. }
  15757. },
  15758. },
  15759. [
  15760. {
  15761. name: "Normal",
  15762. height: math.unit(4.91, "feet"),
  15763. default: true
  15764. },
  15765. ]
  15766. ))
  15767. characterMakers.push(() => makeCharacter(
  15768. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15769. {
  15770. laying: {
  15771. height: math.unit(4 + 4 / 12, "feet"),
  15772. weight: math.unit(600, "lb"),
  15773. name: "Laying",
  15774. image: {
  15775. source: "./media/characters/sheila/laying.svg",
  15776. extra: 1333 / 1265,
  15777. bottom: 0.16
  15778. }
  15779. },
  15780. },
  15781. [
  15782. {
  15783. name: "Normal",
  15784. height: math.unit(4 + 4 / 12, "feet"),
  15785. default: true
  15786. },
  15787. ]
  15788. ))
  15789. characterMakers.push(() => makeCharacter(
  15790. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15791. {
  15792. front: {
  15793. height: math.unit(6, "feet"),
  15794. weight: math.unit(190, "lb"),
  15795. name: "Front",
  15796. image: {
  15797. source: "./media/characters/sax/front.svg",
  15798. extra: 1187 / 973,
  15799. bottom: 0.042
  15800. }
  15801. },
  15802. },
  15803. [
  15804. {
  15805. name: "Micro",
  15806. height: math.unit(4, "inches"),
  15807. default: true
  15808. },
  15809. ]
  15810. ))
  15811. characterMakers.push(() => makeCharacter(
  15812. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15813. {
  15814. front: {
  15815. height: math.unit(6, "feet"),
  15816. weight: math.unit(150, "lb"),
  15817. name: "Front",
  15818. image: {
  15819. source: "./media/characters/pandora/front.svg",
  15820. extra: 2720 / 2556,
  15821. bottom: 0.015
  15822. }
  15823. },
  15824. back: {
  15825. height: math.unit(6, "feet"),
  15826. weight: math.unit(150, "lb"),
  15827. name: "Back",
  15828. image: {
  15829. source: "./media/characters/pandora/back.svg",
  15830. extra: 2720 / 2556,
  15831. bottom: 0.01
  15832. }
  15833. },
  15834. beans: {
  15835. height: math.unit(6 / 8, "feet"),
  15836. name: "Beans",
  15837. image: {
  15838. source: "./media/characters/pandora/beans.svg"
  15839. }
  15840. },
  15841. collar: {
  15842. height: math.unit(0.31, "feet"),
  15843. name: "Collar",
  15844. image: {
  15845. source: "./media/characters/pandora/collar.svg"
  15846. }
  15847. },
  15848. skirt: {
  15849. height: math.unit(6, "feet"),
  15850. weight: math.unit(150, "lb"),
  15851. name: "Skirt",
  15852. image: {
  15853. source: "./media/characters/pandora/skirt.svg",
  15854. extra: 1622 / 1525,
  15855. bottom: 0.015
  15856. }
  15857. },
  15858. hoodie: {
  15859. height: math.unit(6, "feet"),
  15860. weight: math.unit(150, "lb"),
  15861. name: "Hoodie",
  15862. image: {
  15863. source: "./media/characters/pandora/hoodie.svg",
  15864. extra: 1622 / 1525,
  15865. bottom: 0.015
  15866. }
  15867. },
  15868. casual: {
  15869. height: math.unit(6, "feet"),
  15870. weight: math.unit(150, "lb"),
  15871. name: "Casual",
  15872. image: {
  15873. source: "./media/characters/pandora/casual.svg",
  15874. extra: 1622 / 1525,
  15875. bottom: 0.015
  15876. }
  15877. },
  15878. },
  15879. [
  15880. {
  15881. name: "Normal",
  15882. height: math.unit(6, "feet")
  15883. },
  15884. {
  15885. name: "Big Steppy",
  15886. height: math.unit(1, "km"),
  15887. default: true
  15888. },
  15889. {
  15890. name: "Galactic Steppy",
  15891. height: math.unit(2, "gigameters")
  15892. },
  15893. ]
  15894. ))
  15895. characterMakers.push(() => makeCharacter(
  15896. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15897. {
  15898. side: {
  15899. height: math.unit(10, "feet"),
  15900. weight: math.unit(800, "kg"),
  15901. name: "Side",
  15902. image: {
  15903. source: "./media/characters/venio-darcony/side.svg",
  15904. extra: 1373 / 1003,
  15905. bottom: 0.037
  15906. }
  15907. },
  15908. front: {
  15909. height: math.unit(19, "feet"),
  15910. weight: math.unit(800, "kg"),
  15911. name: "Front",
  15912. image: {
  15913. source: "./media/characters/venio-darcony/front.svg"
  15914. }
  15915. },
  15916. back: {
  15917. height: math.unit(19, "feet"),
  15918. weight: math.unit(800, "kg"),
  15919. name: "Back",
  15920. image: {
  15921. source: "./media/characters/venio-darcony/back.svg"
  15922. }
  15923. },
  15924. sideNsfw: {
  15925. height: math.unit(10, "feet"),
  15926. weight: math.unit(800, "kg"),
  15927. name: "Side (NSFW)",
  15928. image: {
  15929. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15930. extra: 1373 / 1003,
  15931. bottom: 0.037
  15932. }
  15933. },
  15934. frontNsfw: {
  15935. height: math.unit(19, "feet"),
  15936. weight: math.unit(800, "kg"),
  15937. name: "Front (NSFW)",
  15938. image: {
  15939. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15940. }
  15941. },
  15942. backNsfw: {
  15943. height: math.unit(19, "feet"),
  15944. weight: math.unit(800, "kg"),
  15945. name: "Back (NSFW)",
  15946. image: {
  15947. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15948. }
  15949. },
  15950. sideArmored: {
  15951. height: math.unit(10, "feet"),
  15952. weight: math.unit(800, "kg"),
  15953. name: "Side (Armored)",
  15954. image: {
  15955. source: "./media/characters/venio-darcony/side-armored.svg",
  15956. extra: 1373 / 1003,
  15957. bottom: 0.037
  15958. }
  15959. },
  15960. frontArmored: {
  15961. height: math.unit(19, "feet"),
  15962. weight: math.unit(900, "kg"),
  15963. name: "Front (Armored)",
  15964. image: {
  15965. source: "./media/characters/venio-darcony/front-armored.svg"
  15966. }
  15967. },
  15968. backArmored: {
  15969. height: math.unit(19, "feet"),
  15970. weight: math.unit(900, "kg"),
  15971. name: "Back (Armored)",
  15972. image: {
  15973. source: "./media/characters/venio-darcony/back-armored.svg"
  15974. }
  15975. },
  15976. sword: {
  15977. height: math.unit(10, "feet"),
  15978. weight: math.unit(50, "lb"),
  15979. name: "Sword",
  15980. image: {
  15981. source: "./media/characters/venio-darcony/sword.svg"
  15982. }
  15983. },
  15984. },
  15985. [
  15986. {
  15987. name: "Normal",
  15988. height: math.unit(10, "feet")
  15989. },
  15990. {
  15991. name: "Macro",
  15992. height: math.unit(130, "feet"),
  15993. default: true
  15994. },
  15995. {
  15996. name: "Macro+",
  15997. height: math.unit(240, "feet")
  15998. },
  15999. ]
  16000. ))
  16001. characterMakers.push(() => makeCharacter(
  16002. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16003. {
  16004. front: {
  16005. height: math.unit(6, "feet"),
  16006. weight: math.unit(150, "lb"),
  16007. name: "Front",
  16008. image: {
  16009. source: "./media/characters/veski/front.svg",
  16010. extra: 1299 / 1225,
  16011. bottom: 0.04
  16012. }
  16013. },
  16014. back: {
  16015. height: math.unit(6, "feet"),
  16016. weight: math.unit(150, "lb"),
  16017. name: "Back",
  16018. image: {
  16019. source: "./media/characters/veski/back.svg",
  16020. extra: 1299 / 1225,
  16021. bottom: 0.008
  16022. }
  16023. },
  16024. maw: {
  16025. height: math.unit(1.5 * 1.21, "feet"),
  16026. name: "Maw",
  16027. image: {
  16028. source: "./media/characters/veski/maw.svg"
  16029. }
  16030. },
  16031. },
  16032. [
  16033. {
  16034. name: "Macro",
  16035. height: math.unit(2, "km"),
  16036. default: true
  16037. },
  16038. ]
  16039. ))
  16040. characterMakers.push(() => makeCharacter(
  16041. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16042. {
  16043. front: {
  16044. height: math.unit(5 + 7 / 12, "feet"),
  16045. name: "Front",
  16046. image: {
  16047. source: "./media/characters/isabelle/front.svg",
  16048. extra: 2130 / 1976,
  16049. bottom: 0.05
  16050. }
  16051. },
  16052. },
  16053. [
  16054. {
  16055. name: "Supermicro",
  16056. height: math.unit(10, "micrometers")
  16057. },
  16058. {
  16059. name: "Micro",
  16060. height: math.unit(1, "inch")
  16061. },
  16062. {
  16063. name: "Tiny",
  16064. height: math.unit(5, "inches")
  16065. },
  16066. {
  16067. name: "Standard",
  16068. height: math.unit(5 + 7 / 12, "inches")
  16069. },
  16070. {
  16071. name: "Macro",
  16072. height: math.unit(80, "meters"),
  16073. default: true
  16074. },
  16075. {
  16076. name: "Megamacro",
  16077. height: math.unit(250, "meters")
  16078. },
  16079. {
  16080. name: "Gigamacro",
  16081. height: math.unit(5, "km")
  16082. },
  16083. {
  16084. name: "Cosmic",
  16085. height: math.unit(2.5e6, "miles")
  16086. },
  16087. ]
  16088. ))
  16089. characterMakers.push(() => makeCharacter(
  16090. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16091. {
  16092. front: {
  16093. height: math.unit(6, "feet"),
  16094. weight: math.unit(150, "lb"),
  16095. name: "Front",
  16096. image: {
  16097. source: "./media/characters/hanzo/front.svg",
  16098. extra: 374 / 344,
  16099. bottom: 0.02
  16100. }
  16101. },
  16102. },
  16103. [
  16104. {
  16105. name: "Normal",
  16106. height: math.unit(8, "feet"),
  16107. default: true
  16108. },
  16109. ]
  16110. ))
  16111. characterMakers.push(() => makeCharacter(
  16112. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16113. {
  16114. front: {
  16115. height: math.unit(7, "feet"),
  16116. weight: math.unit(130, "lb"),
  16117. name: "Front",
  16118. image: {
  16119. source: "./media/characters/anna/front.svg",
  16120. extra: 169 / 145,
  16121. bottom: 0.06
  16122. }
  16123. },
  16124. full: {
  16125. height: math.unit(4.96, "feet"),
  16126. weight: math.unit(220, "lb"),
  16127. name: "Full",
  16128. image: {
  16129. source: "./media/characters/anna/full.svg",
  16130. extra: 138 / 114,
  16131. bottom: 0.15
  16132. }
  16133. },
  16134. tongue: {
  16135. height: math.unit(2.53, "feet"),
  16136. name: "Tongue",
  16137. image: {
  16138. source: "./media/characters/anna/tongue.svg"
  16139. }
  16140. },
  16141. },
  16142. [
  16143. {
  16144. name: "Normal",
  16145. height: math.unit(7, "feet"),
  16146. default: true
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16152. {
  16153. front: {
  16154. height: math.unit(7, "feet"),
  16155. weight: math.unit(150, "lb"),
  16156. name: "Front",
  16157. image: {
  16158. source: "./media/characters/ian-corvid/front.svg",
  16159. extra: 150 / 142,
  16160. bottom: 0.02
  16161. }
  16162. },
  16163. back: {
  16164. height: math.unit(7, "feet"),
  16165. weight: math.unit(150, "lb"),
  16166. name: "Back",
  16167. image: {
  16168. source: "./media/characters/ian-corvid/back.svg",
  16169. extra: 150 / 143,
  16170. bottom: 0.01
  16171. }
  16172. },
  16173. stomping: {
  16174. height: math.unit(7, "feet"),
  16175. weight: math.unit(150, "lb"),
  16176. name: "Stomping",
  16177. image: {
  16178. source: "./media/characters/ian-corvid/stomping.svg",
  16179. extra: 76 / 72
  16180. }
  16181. },
  16182. sitting: {
  16183. height: math.unit(7 / 1.8, "feet"),
  16184. weight: math.unit(150, "lb"),
  16185. name: "Sitting",
  16186. image: {
  16187. source: "./media/characters/ian-corvid/sitting.svg",
  16188. extra: 1400 / 1269,
  16189. bottom: 0.15
  16190. }
  16191. },
  16192. },
  16193. [
  16194. {
  16195. name: "Tiny Microw",
  16196. height: math.unit(1, "inch")
  16197. },
  16198. {
  16199. name: "Microw",
  16200. height: math.unit(6, "inches")
  16201. },
  16202. {
  16203. name: "Crow",
  16204. height: math.unit(7 + 1 / 12, "feet"),
  16205. default: true
  16206. },
  16207. {
  16208. name: "Macrow",
  16209. height: math.unit(176, "feet")
  16210. },
  16211. ]
  16212. ))
  16213. characterMakers.push(() => makeCharacter(
  16214. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16215. {
  16216. front: {
  16217. height: math.unit(5 + 7 / 12, "feet"),
  16218. weight: math.unit(147, "lb"),
  16219. name: "Front",
  16220. image: {
  16221. source: "./media/characters/natalie-kellon/front.svg",
  16222. extra: 1214 / 1141,
  16223. bottom: 0.02
  16224. }
  16225. },
  16226. },
  16227. [
  16228. {
  16229. name: "Micro",
  16230. height: math.unit(1 / 16, "inch")
  16231. },
  16232. {
  16233. name: "Tiny",
  16234. height: math.unit(4, "inches")
  16235. },
  16236. {
  16237. name: "Normal",
  16238. height: math.unit(5 + 7 / 12, "feet"),
  16239. default: true
  16240. },
  16241. {
  16242. name: "Amazon",
  16243. height: math.unit(12, "feet")
  16244. },
  16245. {
  16246. name: "Giantess",
  16247. height: math.unit(160, "meters")
  16248. },
  16249. {
  16250. name: "Titaness",
  16251. height: math.unit(800, "meters")
  16252. },
  16253. ]
  16254. ))
  16255. characterMakers.push(() => makeCharacter(
  16256. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16257. {
  16258. front: {
  16259. height: math.unit(6, "feet"),
  16260. weight: math.unit(150, "lb"),
  16261. name: "Front",
  16262. image: {
  16263. source: "./media/characters/alluria/front.svg",
  16264. extra: 806 / 738,
  16265. bottom: 0.01
  16266. }
  16267. },
  16268. side: {
  16269. height: math.unit(6, "feet"),
  16270. weight: math.unit(150, "lb"),
  16271. name: "Side",
  16272. image: {
  16273. source: "./media/characters/alluria/side.svg",
  16274. extra: 800 / 750,
  16275. }
  16276. },
  16277. back: {
  16278. height: math.unit(6, "feet"),
  16279. weight: math.unit(150, "lb"),
  16280. name: "Back",
  16281. image: {
  16282. source: "./media/characters/alluria/back.svg",
  16283. extra: 806 / 738,
  16284. }
  16285. },
  16286. frontMaid: {
  16287. height: math.unit(6, "feet"),
  16288. weight: math.unit(150, "lb"),
  16289. name: "Front (Maid)",
  16290. image: {
  16291. source: "./media/characters/alluria/front-maid.svg",
  16292. extra: 806 / 738,
  16293. bottom: 0.01
  16294. }
  16295. },
  16296. sideMaid: {
  16297. height: math.unit(6, "feet"),
  16298. weight: math.unit(150, "lb"),
  16299. name: "Side (Maid)",
  16300. image: {
  16301. source: "./media/characters/alluria/side-maid.svg",
  16302. extra: 800 / 750,
  16303. bottom: 0.005
  16304. }
  16305. },
  16306. backMaid: {
  16307. height: math.unit(6, "feet"),
  16308. weight: math.unit(150, "lb"),
  16309. name: "Back (Maid)",
  16310. image: {
  16311. source: "./media/characters/alluria/back-maid.svg",
  16312. extra: 806 / 738,
  16313. }
  16314. },
  16315. },
  16316. [
  16317. {
  16318. name: "Micro",
  16319. height: math.unit(6, "inches"),
  16320. default: true
  16321. },
  16322. ]
  16323. ))
  16324. characterMakers.push(() => makeCharacter(
  16325. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16326. {
  16327. front: {
  16328. height: math.unit(6, "feet"),
  16329. weight: math.unit(150, "lb"),
  16330. name: "Front",
  16331. image: {
  16332. source: "./media/characters/kyle/front.svg",
  16333. extra: 1069 / 962,
  16334. bottom: 77.228 / 1727.45
  16335. }
  16336. },
  16337. },
  16338. [
  16339. {
  16340. name: "Macro",
  16341. height: math.unit(150, "feet"),
  16342. default: true
  16343. },
  16344. ]
  16345. ))
  16346. characterMakers.push(() => makeCharacter(
  16347. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16348. {
  16349. front: {
  16350. height: math.unit(6, "feet"),
  16351. weight: math.unit(300, "lb"),
  16352. name: "Front",
  16353. image: {
  16354. source: "./media/characters/duncan/front.svg",
  16355. extra: 1650 / 1482,
  16356. bottom: 0.05
  16357. }
  16358. },
  16359. },
  16360. [
  16361. {
  16362. name: "Macro",
  16363. height: math.unit(100, "feet"),
  16364. default: true
  16365. },
  16366. ]
  16367. ))
  16368. characterMakers.push(() => makeCharacter(
  16369. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16370. {
  16371. front: {
  16372. height: math.unit(5 + 4 / 12, "feet"),
  16373. weight: math.unit(220, "lb"),
  16374. name: "Front",
  16375. image: {
  16376. source: "./media/characters/memory/front.svg",
  16377. extra: 3641 / 3545,
  16378. bottom: 0.03
  16379. }
  16380. },
  16381. back: {
  16382. height: math.unit(5 + 4 / 12, "feet"),
  16383. weight: math.unit(220, "lb"),
  16384. name: "Back",
  16385. image: {
  16386. source: "./media/characters/memory/back.svg",
  16387. extra: 3641 / 3545,
  16388. bottom: 0.025
  16389. }
  16390. },
  16391. frontSkirt: {
  16392. height: math.unit(5 + 4 / 12, "feet"),
  16393. weight: math.unit(220, "lb"),
  16394. name: "Front (Skirt)",
  16395. image: {
  16396. source: "./media/characters/memory/front-skirt.svg",
  16397. extra: 3641 / 3545,
  16398. bottom: 0.03
  16399. }
  16400. },
  16401. frontDress: {
  16402. height: math.unit(5 + 4 / 12, "feet"),
  16403. weight: math.unit(220, "lb"),
  16404. name: "Front (Dress)",
  16405. image: {
  16406. source: "./media/characters/memory/front-dress.svg",
  16407. extra: 3641 / 3545,
  16408. bottom: 0.03
  16409. }
  16410. },
  16411. },
  16412. [
  16413. {
  16414. name: "Micro",
  16415. height: math.unit(6, "inches"),
  16416. default: true
  16417. },
  16418. {
  16419. name: "Normal",
  16420. height: math.unit(5 + 4 / 12, "feet")
  16421. },
  16422. ]
  16423. ))
  16424. characterMakers.push(() => makeCharacter(
  16425. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16426. {
  16427. front: {
  16428. height: math.unit(4 + 11 / 12, "feet"),
  16429. weight: math.unit(100, "lb"),
  16430. name: "Front",
  16431. image: {
  16432. source: "./media/characters/luno/front.svg",
  16433. extra: 1535 / 1487,
  16434. bottom: 0.03
  16435. }
  16436. },
  16437. },
  16438. [
  16439. {
  16440. name: "Micro",
  16441. height: math.unit(3, "inches")
  16442. },
  16443. {
  16444. name: "Normal",
  16445. height: math.unit(4 + 11 / 12, "feet"),
  16446. default: true
  16447. },
  16448. {
  16449. name: "Macro",
  16450. height: math.unit(300, "feet")
  16451. },
  16452. {
  16453. name: "Megamacro",
  16454. height: math.unit(700, "miles")
  16455. },
  16456. ]
  16457. ))
  16458. characterMakers.push(() => makeCharacter(
  16459. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16460. {
  16461. front: {
  16462. height: math.unit(6 + 2 / 12, "feet"),
  16463. weight: math.unit(170, "lb"),
  16464. name: "Front",
  16465. image: {
  16466. source: "./media/characters/jamesy/front.svg",
  16467. extra: 440 / 382,
  16468. bottom: 0.005
  16469. }
  16470. },
  16471. },
  16472. [
  16473. {
  16474. name: "Micro",
  16475. height: math.unit(3, "inches")
  16476. },
  16477. {
  16478. name: "Normal",
  16479. height: math.unit(6 + 2 / 12, "feet"),
  16480. default: true
  16481. },
  16482. {
  16483. name: "Macro",
  16484. height: math.unit(300, "feet")
  16485. },
  16486. {
  16487. name: "Megamacro",
  16488. height: math.unit(700, "miles")
  16489. },
  16490. ]
  16491. ))
  16492. characterMakers.push(() => makeCharacter(
  16493. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16494. {
  16495. front: {
  16496. height: math.unit(6, "feet"),
  16497. weight: math.unit(160, "lb"),
  16498. name: "Front",
  16499. image: {
  16500. source: "./media/characters/mark/front.svg",
  16501. extra: 3300 / 3100,
  16502. bottom: 136.42 / 3440.47
  16503. }
  16504. },
  16505. },
  16506. [
  16507. {
  16508. name: "Macro",
  16509. height: math.unit(120, "meters")
  16510. },
  16511. {
  16512. name: "Bigger Macro",
  16513. height: math.unit(350, "meters")
  16514. },
  16515. {
  16516. name: "Megamacro",
  16517. height: math.unit(8, "km"),
  16518. default: true
  16519. },
  16520. {
  16521. name: "Continental",
  16522. height: math.unit(4550, "km")
  16523. },
  16524. {
  16525. name: "Planetary",
  16526. height: math.unit(65000, "km")
  16527. },
  16528. ]
  16529. ))
  16530. characterMakers.push(() => makeCharacter(
  16531. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16532. {
  16533. front: {
  16534. height: math.unit(6, "feet"),
  16535. weight: math.unit(400, "lb"),
  16536. name: "Front",
  16537. image: {
  16538. source: "./media/characters/mac/front.svg",
  16539. extra: 1048 / 987.7,
  16540. bottom: 60 / 1107.6,
  16541. }
  16542. },
  16543. },
  16544. [
  16545. {
  16546. name: "Macro",
  16547. height: math.unit(500, "feet"),
  16548. default: true
  16549. },
  16550. ]
  16551. ))
  16552. characterMakers.push(() => makeCharacter(
  16553. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16554. {
  16555. front: {
  16556. height: math.unit(5 + 2 / 12, "feet"),
  16557. weight: math.unit(190, "lb"),
  16558. name: "Front",
  16559. image: {
  16560. source: "./media/characters/bari/front.svg",
  16561. extra: 3156 / 2880,
  16562. bottom: 0.03
  16563. }
  16564. },
  16565. back: {
  16566. height: math.unit(5 + 2 / 12, "feet"),
  16567. weight: math.unit(190, "lb"),
  16568. name: "Back",
  16569. image: {
  16570. source: "./media/characters/bari/back.svg",
  16571. extra: 3260 / 2834,
  16572. bottom: 0.025
  16573. }
  16574. },
  16575. frontPlush: {
  16576. height: math.unit(5 + 2 / 12, "feet"),
  16577. weight: math.unit(190, "lb"),
  16578. name: "Front (Plush)",
  16579. image: {
  16580. source: "./media/characters/bari/front-plush.svg",
  16581. extra: 1112 / 1061,
  16582. bottom: 0.002
  16583. }
  16584. },
  16585. },
  16586. [
  16587. {
  16588. name: "Micro",
  16589. height: math.unit(3, "inches")
  16590. },
  16591. {
  16592. name: "Normal",
  16593. height: math.unit(5 + 2 / 12, "feet"),
  16594. default: true
  16595. },
  16596. {
  16597. name: "Macro",
  16598. height: math.unit(20, "feet")
  16599. },
  16600. ]
  16601. ))
  16602. characterMakers.push(() => makeCharacter(
  16603. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16604. {
  16605. front: {
  16606. height: math.unit(6 + 1 / 12, "feet"),
  16607. weight: math.unit(275, "lb"),
  16608. name: "Front",
  16609. image: {
  16610. source: "./media/characters/hunter-misha-raven/front.svg"
  16611. }
  16612. },
  16613. },
  16614. [
  16615. {
  16616. name: "Mortal",
  16617. height: math.unit(6 + 1 / 12, "feet")
  16618. },
  16619. {
  16620. name: "Divine",
  16621. height: math.unit(1.12134e34, "parsecs"),
  16622. default: true
  16623. },
  16624. ]
  16625. ))
  16626. characterMakers.push(() => makeCharacter(
  16627. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16628. {
  16629. front: {
  16630. height: math.unit(6 + 3 / 12, "feet"),
  16631. weight: math.unit(220, "lb"),
  16632. name: "Front",
  16633. image: {
  16634. source: "./media/characters/max-calore/front.svg",
  16635. extra: 1700 / 1648,
  16636. bottom: 0.01
  16637. }
  16638. },
  16639. back: {
  16640. height: math.unit(6 + 3 / 12, "feet"),
  16641. weight: math.unit(220, "lb"),
  16642. name: "Back",
  16643. image: {
  16644. source: "./media/characters/max-calore/back.svg",
  16645. extra: 1700 / 1648,
  16646. bottom: 0.01
  16647. }
  16648. },
  16649. },
  16650. [
  16651. {
  16652. name: "Normal",
  16653. height: math.unit(6 + 3 / 12, "feet"),
  16654. default: true
  16655. },
  16656. ]
  16657. ))
  16658. characterMakers.push(() => makeCharacter(
  16659. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16660. {
  16661. side: {
  16662. height: math.unit(2 + 8 / 12, "feet"),
  16663. weight: math.unit(99, "lb"),
  16664. name: "Side",
  16665. image: {
  16666. source: "./media/characters/aspen/side.svg",
  16667. extra: 152 / 138,
  16668. bottom: 0.032
  16669. }
  16670. },
  16671. },
  16672. [
  16673. {
  16674. name: "Normal",
  16675. height: math.unit(2 + 8 / 12, "feet"),
  16676. default: true
  16677. },
  16678. ]
  16679. ))
  16680. characterMakers.push(() => makeCharacter(
  16681. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16682. {
  16683. side: {
  16684. height: math.unit(3 + 2 / 12, "feet"),
  16685. weight: math.unit(224, "lb"),
  16686. name: "Side",
  16687. image: {
  16688. source: "./media/characters/sheila-feral-wolf/side.svg",
  16689. extra: 179 / 166,
  16690. bottom: 0.03
  16691. }
  16692. },
  16693. },
  16694. [
  16695. {
  16696. name: "Normal",
  16697. height: math.unit(3 + 2 / 12, "feet"),
  16698. default: true
  16699. },
  16700. ]
  16701. ))
  16702. characterMakers.push(() => makeCharacter(
  16703. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16704. {
  16705. side: {
  16706. height: math.unit(1 + 9 / 12, "feet"),
  16707. weight: math.unit(38, "lb"),
  16708. name: "Side",
  16709. image: {
  16710. source: "./media/characters/michelle/side.svg",
  16711. extra: 147 / 136.7,
  16712. bottom: 0.03
  16713. }
  16714. },
  16715. },
  16716. [
  16717. {
  16718. name: "Normal",
  16719. height: math.unit(1 + 9 / 12, "feet"),
  16720. default: true
  16721. },
  16722. ]
  16723. ))
  16724. characterMakers.push(() => makeCharacter(
  16725. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16726. {
  16727. front: {
  16728. height: math.unit(1 + 1 / 12, "feet"),
  16729. weight: math.unit(18, "lb"),
  16730. name: "Front",
  16731. image: {
  16732. source: "./media/characters/nino/front.svg"
  16733. }
  16734. },
  16735. },
  16736. [
  16737. {
  16738. name: "Normal",
  16739. height: math.unit(1 + 1 / 12, "feet"),
  16740. default: true
  16741. },
  16742. ]
  16743. ))
  16744. characterMakers.push(() => makeCharacter(
  16745. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16746. {
  16747. front: {
  16748. height: math.unit(1, "feet"),
  16749. weight: math.unit(16, "lb"),
  16750. name: "Front",
  16751. image: {
  16752. source: "./media/characters/viola/front.svg"
  16753. }
  16754. },
  16755. },
  16756. [
  16757. {
  16758. name: "Normal",
  16759. height: math.unit(1, "feet"),
  16760. default: true
  16761. },
  16762. ]
  16763. ))
  16764. characterMakers.push(() => makeCharacter(
  16765. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16766. {
  16767. front: {
  16768. height: math.unit(6 + 5 / 12, "feet"),
  16769. weight: math.unit(580, "lb"),
  16770. name: "Front",
  16771. image: {
  16772. source: "./media/characters/atlas/front.svg",
  16773. extra: 298.5 / 290,
  16774. bottom: 0.015
  16775. }
  16776. },
  16777. },
  16778. [
  16779. {
  16780. name: "Normal",
  16781. height: math.unit(6 + 5 / 12, "feet"),
  16782. default: true
  16783. },
  16784. ]
  16785. ))
  16786. characterMakers.push(() => makeCharacter(
  16787. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16788. {
  16789. side: {
  16790. height: math.unit(1 + 10 / 12, "feet"),
  16791. weight: math.unit(25, "lb"),
  16792. name: "Side",
  16793. image: {
  16794. source: "./media/characters/davy/side.svg",
  16795. extra: 200 / 170,
  16796. bottom: 0.01
  16797. }
  16798. },
  16799. },
  16800. [
  16801. {
  16802. name: "Normal",
  16803. height: math.unit(1 + 10 / 12, "feet"),
  16804. default: true
  16805. },
  16806. ]
  16807. ))
  16808. characterMakers.push(() => makeCharacter(
  16809. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16810. {
  16811. side: {
  16812. height: math.unit(4 + 8 / 12, "feet"),
  16813. weight: math.unit(166, "lb"),
  16814. name: "Side",
  16815. image: {
  16816. source: "./media/characters/fiona/side.svg",
  16817. extra: 232 / 220,
  16818. bottom: 0.03
  16819. }
  16820. },
  16821. },
  16822. [
  16823. {
  16824. name: "Normal",
  16825. height: math.unit(4 + 8 / 12, "feet"),
  16826. default: true
  16827. },
  16828. ]
  16829. ))
  16830. characterMakers.push(() => makeCharacter(
  16831. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16832. {
  16833. front: {
  16834. height: math.unit(2, "feet"),
  16835. weight: math.unit(62, "lb"),
  16836. name: "Front",
  16837. image: {
  16838. source: "./media/characters/lyla/front.svg",
  16839. bottom: 0.1
  16840. }
  16841. },
  16842. },
  16843. [
  16844. {
  16845. name: "Normal",
  16846. height: math.unit(2, "feet"),
  16847. default: true
  16848. },
  16849. ]
  16850. ))
  16851. characterMakers.push(() => makeCharacter(
  16852. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16853. {
  16854. side: {
  16855. height: math.unit(1.8, "feet"),
  16856. weight: math.unit(44, "lb"),
  16857. name: "Side",
  16858. image: {
  16859. source: "./media/characters/perseus/side.svg",
  16860. bottom: 0.21
  16861. }
  16862. },
  16863. },
  16864. [
  16865. {
  16866. name: "Normal",
  16867. height: math.unit(1.8, "feet"),
  16868. default: true
  16869. },
  16870. ]
  16871. ))
  16872. characterMakers.push(() => makeCharacter(
  16873. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16874. {
  16875. side: {
  16876. height: math.unit(4 + 2 / 12, "feet"),
  16877. weight: math.unit(20, "lb"),
  16878. name: "Side",
  16879. image: {
  16880. source: "./media/characters/remus/side.svg"
  16881. }
  16882. },
  16883. },
  16884. [
  16885. {
  16886. name: "Normal",
  16887. height: math.unit(4 + 2 / 12, "feet"),
  16888. default: true
  16889. },
  16890. ]
  16891. ))
  16892. characterMakers.push(() => makeCharacter(
  16893. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16894. {
  16895. front: {
  16896. height: math.unit(4 + 11 / 12, "feet"),
  16897. weight: math.unit(114, "lb"),
  16898. name: "Front",
  16899. image: {
  16900. source: "./media/characters/raf/front.svg",
  16901. bottom: 20.5 / 1863
  16902. }
  16903. },
  16904. side: {
  16905. height: math.unit(4 + 11 / 12, "feet"),
  16906. weight: math.unit(114, "lb"),
  16907. name: "Side",
  16908. image: {
  16909. source: "./media/characters/raf/side.svg",
  16910. bottom: 22 / 1822
  16911. }
  16912. },
  16913. },
  16914. [
  16915. {
  16916. name: "Micro",
  16917. height: math.unit(2, "inches")
  16918. },
  16919. {
  16920. name: "Normal",
  16921. height: math.unit(4 + 11 / 12, "feet"),
  16922. default: true
  16923. },
  16924. {
  16925. name: "Macro",
  16926. height: math.unit(70, "feet")
  16927. },
  16928. ]
  16929. ))
  16930. characterMakers.push(() => makeCharacter(
  16931. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16932. {
  16933. front: {
  16934. height: math.unit(1.5, "meters"),
  16935. weight: math.unit(68, "kg"),
  16936. name: "Front",
  16937. image: {
  16938. source: "./media/characters/liam-einarr/front.svg",
  16939. extra: 2822 / 2666
  16940. }
  16941. },
  16942. back: {
  16943. height: math.unit(1.5, "meters"),
  16944. weight: math.unit(68, "kg"),
  16945. name: "Back",
  16946. image: {
  16947. source: "./media/characters/liam-einarr/back.svg",
  16948. extra: 2822 / 2666,
  16949. bottom: 0.015
  16950. }
  16951. },
  16952. },
  16953. [
  16954. {
  16955. name: "Normal",
  16956. height: math.unit(1.5, "meters"),
  16957. default: true
  16958. },
  16959. {
  16960. name: "Macro",
  16961. height: math.unit(150, "meters")
  16962. },
  16963. {
  16964. name: "Megamacro",
  16965. height: math.unit(35, "km")
  16966. },
  16967. ]
  16968. ))
  16969. characterMakers.push(() => makeCharacter(
  16970. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16971. {
  16972. front: {
  16973. height: math.unit(6, "feet"),
  16974. weight: math.unit(75, "kg"),
  16975. name: "Front",
  16976. image: {
  16977. source: "./media/characters/linda/front.svg",
  16978. extra: 930 / 874,
  16979. bottom: 0.004
  16980. }
  16981. },
  16982. },
  16983. [
  16984. {
  16985. name: "Normal",
  16986. height: math.unit(6, "feet"),
  16987. default: true
  16988. },
  16989. ]
  16990. ))
  16991. characterMakers.push(() => makeCharacter(
  16992. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16993. {
  16994. front: {
  16995. height: math.unit(6 + 8 / 12, "feet"),
  16996. weight: math.unit(220, "lb"),
  16997. name: "Front",
  16998. image: {
  16999. source: "./media/characters/caylex/front.svg",
  17000. extra: 821 / 772,
  17001. bottom: 0.07
  17002. }
  17003. },
  17004. back: {
  17005. height: math.unit(6 + 8 / 12, "feet"),
  17006. weight: math.unit(220, "lb"),
  17007. name: "Back",
  17008. image: {
  17009. source: "./media/characters/caylex/back.svg",
  17010. extra: 821 / 772,
  17011. bottom: 0.022
  17012. }
  17013. },
  17014. hand: {
  17015. height: math.unit(1.25, "feet"),
  17016. name: "Hand",
  17017. image: {
  17018. source: "./media/characters/caylex/hand.svg"
  17019. }
  17020. },
  17021. foot: {
  17022. height: math.unit(1.6, "feet"),
  17023. name: "Foot",
  17024. image: {
  17025. source: "./media/characters/caylex/foot.svg"
  17026. }
  17027. },
  17028. armored: {
  17029. height: math.unit(6 + 8 / 12, "feet"),
  17030. weight: math.unit(250, "lb"),
  17031. name: "Armored",
  17032. image: {
  17033. source: "./media/characters/caylex/armored.svg",
  17034. extra: 1420 / 1310,
  17035. bottom: 0.045
  17036. }
  17037. },
  17038. },
  17039. [
  17040. {
  17041. name: "Normal",
  17042. height: math.unit(6 + 8 / 12, "feet"),
  17043. default: true
  17044. },
  17045. {
  17046. name: "Normal+",
  17047. height: math.unit(12, "feet")
  17048. },
  17049. ]
  17050. ))
  17051. characterMakers.push(() => makeCharacter(
  17052. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17053. {
  17054. front: {
  17055. height: math.unit(7 + 6 / 12, "feet"),
  17056. weight: math.unit(288, "lb"),
  17057. name: "Front",
  17058. image: {
  17059. source: "./media/characters/alana/front.svg",
  17060. extra: 679 / 653,
  17061. bottom: 22.5 / 701
  17062. }
  17063. },
  17064. },
  17065. [
  17066. {
  17067. name: "Normal",
  17068. height: math.unit(7 + 6 / 12, "feet")
  17069. },
  17070. {
  17071. name: "Large",
  17072. height: math.unit(50, "feet")
  17073. },
  17074. {
  17075. name: "Macro",
  17076. height: math.unit(100, "feet"),
  17077. default: true
  17078. },
  17079. {
  17080. name: "Macro+",
  17081. height: math.unit(200, "feet")
  17082. },
  17083. ]
  17084. ))
  17085. characterMakers.push(() => makeCharacter(
  17086. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17087. {
  17088. front: {
  17089. height: math.unit(6 + 1 / 12, "feet"),
  17090. weight: math.unit(210, "lb"),
  17091. name: "Front",
  17092. image: {
  17093. source: "./media/characters/hasani/front.svg",
  17094. extra: 244 / 232,
  17095. bottom: 0.01
  17096. }
  17097. },
  17098. back: {
  17099. height: math.unit(6 + 1 / 12, "feet"),
  17100. weight: math.unit(210, "lb"),
  17101. name: "Back",
  17102. image: {
  17103. source: "./media/characters/hasani/back.svg",
  17104. extra: 244 / 232,
  17105. bottom: 0.01
  17106. }
  17107. },
  17108. },
  17109. [
  17110. {
  17111. name: "Normal",
  17112. height: math.unit(6 + 1 / 12, "feet")
  17113. },
  17114. {
  17115. name: "Macro",
  17116. height: math.unit(175, "feet"),
  17117. default: true
  17118. },
  17119. ]
  17120. ))
  17121. characterMakers.push(() => makeCharacter(
  17122. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17123. {
  17124. front: {
  17125. height: math.unit(1.82, "meters"),
  17126. weight: math.unit(140, "lb"),
  17127. name: "Front",
  17128. image: {
  17129. source: "./media/characters/nita/front.svg",
  17130. extra: 2473 / 2363,
  17131. bottom: 0.01
  17132. }
  17133. },
  17134. },
  17135. [
  17136. {
  17137. name: "Normal",
  17138. height: math.unit(1.82, "m")
  17139. },
  17140. {
  17141. name: "Macro",
  17142. height: math.unit(300, "m")
  17143. },
  17144. {
  17145. name: "Mistake Canon",
  17146. height: math.unit(0.5, "miles"),
  17147. default: true
  17148. },
  17149. {
  17150. name: "Big Mistake",
  17151. height: math.unit(13, "miles")
  17152. },
  17153. {
  17154. name: "Playing God",
  17155. height: math.unit(2450, "miles")
  17156. },
  17157. ]
  17158. ))
  17159. characterMakers.push(() => makeCharacter(
  17160. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17161. {
  17162. front: {
  17163. height: math.unit(4, "feet"),
  17164. weight: math.unit(120, "lb"),
  17165. name: "Front",
  17166. image: {
  17167. source: "./media/characters/shiriko/front.svg",
  17168. extra: 195 / 188
  17169. }
  17170. },
  17171. },
  17172. [
  17173. {
  17174. name: "Normal",
  17175. height: math.unit(4, "feet"),
  17176. default: true
  17177. },
  17178. ]
  17179. ))
  17180. characterMakers.push(() => makeCharacter(
  17181. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17182. {
  17183. front: {
  17184. height: math.unit(6, "feet"),
  17185. name: "front",
  17186. image: {
  17187. source: "./media/characters/deja/front.svg",
  17188. extra: 926 / 840,
  17189. bottom: 0.07
  17190. }
  17191. },
  17192. },
  17193. [
  17194. {
  17195. name: "Planck Length",
  17196. height: math.unit(1.6e-35, "meters")
  17197. },
  17198. {
  17199. name: "Normal",
  17200. height: math.unit(30.48, "meters"),
  17201. default: true
  17202. },
  17203. {
  17204. name: "Universal",
  17205. height: math.unit(8.8e26, "meters")
  17206. },
  17207. ]
  17208. ))
  17209. characterMakers.push(() => makeCharacter(
  17210. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17211. {
  17212. side: {
  17213. height: math.unit(8, "feet"),
  17214. weight: math.unit(6300, "lb"),
  17215. name: "Side",
  17216. image: {
  17217. source: "./media/characters/anima/side.svg",
  17218. bottom: 0.035
  17219. }
  17220. },
  17221. },
  17222. [
  17223. {
  17224. name: "Normal",
  17225. height: math.unit(8, "feet"),
  17226. default: true
  17227. },
  17228. ]
  17229. ))
  17230. characterMakers.push(() => makeCharacter(
  17231. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17232. {
  17233. front: {
  17234. height: math.unit(8, "feet"),
  17235. weight: math.unit(350, "lb"),
  17236. name: "Front",
  17237. image: {
  17238. source: "./media/characters/bianca/front.svg",
  17239. extra: 234 / 225,
  17240. bottom: 0.03
  17241. }
  17242. },
  17243. },
  17244. [
  17245. {
  17246. name: "Normal",
  17247. height: math.unit(8, "feet"),
  17248. default: true
  17249. },
  17250. ]
  17251. ))
  17252. characterMakers.push(() => makeCharacter(
  17253. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17254. {
  17255. front: {
  17256. height: math.unit(6, "feet"),
  17257. weight: math.unit(150, "lb"),
  17258. name: "Front",
  17259. image: {
  17260. source: "./media/characters/adinia/front.svg",
  17261. extra: 1845 / 1672,
  17262. bottom: 0.02
  17263. }
  17264. },
  17265. back: {
  17266. height: math.unit(6, "feet"),
  17267. weight: math.unit(150, "lb"),
  17268. name: "Back",
  17269. image: {
  17270. source: "./media/characters/adinia/back.svg",
  17271. extra: 1845 / 1672,
  17272. bottom: 0.002
  17273. }
  17274. },
  17275. },
  17276. [
  17277. {
  17278. name: "Normal",
  17279. height: math.unit(11 + 5 / 12, "feet"),
  17280. default: true
  17281. },
  17282. ]
  17283. ))
  17284. characterMakers.push(() => makeCharacter(
  17285. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17286. {
  17287. front: {
  17288. height: math.unit(3, "meters"),
  17289. weight: math.unit(200, "kg"),
  17290. name: "Front",
  17291. image: {
  17292. source: "./media/characters/lykasa/front.svg",
  17293. extra: 1076 / 976,
  17294. bottom: 0.06
  17295. }
  17296. },
  17297. },
  17298. [
  17299. {
  17300. name: "Normal",
  17301. height: math.unit(3, "meters")
  17302. },
  17303. {
  17304. name: "Kaiju",
  17305. height: math.unit(120, "meters"),
  17306. default: true
  17307. },
  17308. {
  17309. name: "Mega Kaiju",
  17310. height: math.unit(240, "km")
  17311. },
  17312. {
  17313. name: "Giga Kaiju",
  17314. height: math.unit(400, "megameters")
  17315. },
  17316. {
  17317. name: "Tera Kaiju",
  17318. height: math.unit(800, "gigameters")
  17319. },
  17320. {
  17321. name: "Kaiju Dragon Goddess",
  17322. height: math.unit(26, "zettaparsecs")
  17323. },
  17324. ]
  17325. ))
  17326. characterMakers.push(() => makeCharacter(
  17327. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17328. {
  17329. side: {
  17330. height: math.unit(283 / 124 * 6, "feet"),
  17331. weight: math.unit(35000, "lb"),
  17332. name: "Side",
  17333. image: {
  17334. source: "./media/characters/malfaren/side.svg",
  17335. extra: 2500 / 1010,
  17336. bottom: 0.01
  17337. }
  17338. },
  17339. front: {
  17340. height: math.unit(22.36, "feet"),
  17341. weight: math.unit(35000, "lb"),
  17342. name: "Front",
  17343. image: {
  17344. source: "./media/characters/malfaren/front.svg",
  17345. extra: 1631 / 1476,
  17346. bottom: 0.01
  17347. }
  17348. },
  17349. maw: {
  17350. height: math.unit(6.9, "feet"),
  17351. name: "Maw",
  17352. image: {
  17353. source: "./media/characters/malfaren/maw.svg"
  17354. }
  17355. },
  17356. },
  17357. [
  17358. {
  17359. name: "Big",
  17360. height: math.unit(283 / 162 * 6, "feet"),
  17361. },
  17362. {
  17363. name: "Bigger",
  17364. height: math.unit(283 / 124 * 6, "feet")
  17365. },
  17366. {
  17367. name: "Massive",
  17368. height: math.unit(283 / 92 * 6, "feet"),
  17369. default: true
  17370. },
  17371. {
  17372. name: "👀💦",
  17373. height: math.unit(283 / 73 * 6, "feet"),
  17374. },
  17375. ]
  17376. ))
  17377. characterMakers.push(() => makeCharacter(
  17378. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17379. {
  17380. front: {
  17381. height: math.unit(1.7, "m"),
  17382. weight: math.unit(70, "kg"),
  17383. name: "Front",
  17384. image: {
  17385. source: "./media/characters/kernel/front.svg",
  17386. extra: 222 / 210,
  17387. bottom: 0.007
  17388. }
  17389. },
  17390. },
  17391. [
  17392. {
  17393. name: "Nano",
  17394. height: math.unit(17, "micrometers")
  17395. },
  17396. {
  17397. name: "Micro",
  17398. height: math.unit(1.7, "mm")
  17399. },
  17400. {
  17401. name: "Small",
  17402. height: math.unit(1.7, "cm")
  17403. },
  17404. {
  17405. name: "Normal",
  17406. height: math.unit(1.7, "m"),
  17407. default: true
  17408. },
  17409. ]
  17410. ))
  17411. characterMakers.push(() => makeCharacter(
  17412. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17413. {
  17414. front: {
  17415. height: math.unit(1.75, "meters"),
  17416. weight: math.unit(65, "kg"),
  17417. name: "Front",
  17418. image: {
  17419. source: "./media/characters/jayne-folest/front.svg",
  17420. extra: 2115 / 2007,
  17421. bottom: 0.02
  17422. }
  17423. },
  17424. back: {
  17425. height: math.unit(1.75, "meters"),
  17426. weight: math.unit(65, "kg"),
  17427. name: "Back",
  17428. image: {
  17429. source: "./media/characters/jayne-folest/back.svg",
  17430. extra: 2115 / 2007,
  17431. bottom: 0.005
  17432. }
  17433. },
  17434. frontClothed: {
  17435. height: math.unit(1.75, "meters"),
  17436. weight: math.unit(65, "kg"),
  17437. name: "Front (Clothed)",
  17438. image: {
  17439. source: "./media/characters/jayne-folest/front-clothed.svg",
  17440. extra: 2115 / 2007,
  17441. bottom: 0.035
  17442. }
  17443. },
  17444. hand: {
  17445. height: math.unit(1 / 1.260, "feet"),
  17446. name: "Hand",
  17447. image: {
  17448. source: "./media/characters/jayne-folest/hand.svg"
  17449. }
  17450. },
  17451. foot: {
  17452. height: math.unit(1 / 0.918, "feet"),
  17453. name: "Foot",
  17454. image: {
  17455. source: "./media/characters/jayne-folest/foot.svg"
  17456. }
  17457. },
  17458. },
  17459. [
  17460. {
  17461. name: "Micro",
  17462. height: math.unit(4, "cm")
  17463. },
  17464. {
  17465. name: "Normal",
  17466. height: math.unit(1.75, "meters")
  17467. },
  17468. {
  17469. name: "Macro",
  17470. height: math.unit(47.5, "meters"),
  17471. default: true
  17472. },
  17473. ]
  17474. ))
  17475. characterMakers.push(() => makeCharacter(
  17476. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17477. {
  17478. front: {
  17479. height: math.unit(180, "cm"),
  17480. weight: math.unit(70, "kg"),
  17481. name: "Front",
  17482. image: {
  17483. source: "./media/characters/algier/front.svg",
  17484. extra: 596 / 572,
  17485. bottom: 0.04
  17486. }
  17487. },
  17488. back: {
  17489. height: math.unit(180, "cm"),
  17490. weight: math.unit(70, "kg"),
  17491. name: "Back",
  17492. image: {
  17493. source: "./media/characters/algier/back.svg",
  17494. extra: 596 / 572,
  17495. bottom: 0.025
  17496. }
  17497. },
  17498. frontdressed: {
  17499. height: math.unit(180, "cm"),
  17500. weight: math.unit(150, "kg"),
  17501. name: "Front-dressed",
  17502. image: {
  17503. source: "./media/characters/algier/front-dressed.svg",
  17504. extra: 596 / 572,
  17505. bottom: 0.038
  17506. }
  17507. },
  17508. },
  17509. [
  17510. {
  17511. name: "Micro",
  17512. height: math.unit(5, "cm")
  17513. },
  17514. {
  17515. name: "Normal",
  17516. height: math.unit(180, "cm"),
  17517. default: true
  17518. },
  17519. {
  17520. name: "Macro",
  17521. height: math.unit(64, "m")
  17522. },
  17523. ]
  17524. ))
  17525. characterMakers.push(() => makeCharacter(
  17526. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17527. {
  17528. upright: {
  17529. height: math.unit(7, "feet"),
  17530. weight: math.unit(300, "lb"),
  17531. name: "Upright",
  17532. image: {
  17533. source: "./media/characters/pretzel/upright.svg",
  17534. extra: 534 / 522,
  17535. bottom: 0.065
  17536. }
  17537. },
  17538. sprawling: {
  17539. height: math.unit(3.75, "feet"),
  17540. weight: math.unit(300, "lb"),
  17541. name: "Sprawling",
  17542. image: {
  17543. source: "./media/characters/pretzel/sprawling.svg",
  17544. extra: 314 / 281,
  17545. bottom: 0.1
  17546. }
  17547. },
  17548. tongue: {
  17549. height: math.unit(2, "feet"),
  17550. name: "Tongue",
  17551. image: {
  17552. source: "./media/characters/pretzel/tongue.svg"
  17553. }
  17554. },
  17555. },
  17556. [
  17557. {
  17558. name: "Normal",
  17559. height: math.unit(7, "feet"),
  17560. default: true
  17561. },
  17562. {
  17563. name: "Oversized",
  17564. height: math.unit(15, "feet")
  17565. },
  17566. {
  17567. name: "Huge",
  17568. height: math.unit(30, "feet")
  17569. },
  17570. {
  17571. name: "Macro",
  17572. height: math.unit(250, "feet")
  17573. },
  17574. ]
  17575. ))
  17576. characterMakers.push(() => makeCharacter(
  17577. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17578. {
  17579. sideFront: {
  17580. height: math.unit(5 + 2 / 12, "feet"),
  17581. weight: math.unit(120, "lb"),
  17582. name: "Front Side",
  17583. image: {
  17584. source: "./media/characters/roxi/side-front.svg",
  17585. extra: 2924 / 2717,
  17586. bottom: 0.08
  17587. }
  17588. },
  17589. sideBack: {
  17590. height: math.unit(5 + 2 / 12, "feet"),
  17591. weight: math.unit(120, "lb"),
  17592. name: "Back Side",
  17593. image: {
  17594. source: "./media/characters/roxi/side-back.svg",
  17595. extra: 2904 / 2693,
  17596. bottom: 0.06
  17597. }
  17598. },
  17599. front: {
  17600. height: math.unit(5 + 2 / 12, "feet"),
  17601. weight: math.unit(120, "lb"),
  17602. name: "Front",
  17603. image: {
  17604. source: "./media/characters/roxi/front.svg",
  17605. extra: 2028 / 1907,
  17606. bottom: 0.01
  17607. }
  17608. },
  17609. frontAlt: {
  17610. height: math.unit(5 + 2 / 12, "feet"),
  17611. weight: math.unit(120, "lb"),
  17612. name: "Front (Alt)",
  17613. image: {
  17614. source: "./media/characters/roxi/front-alt.svg",
  17615. extra: 1828 / 1798,
  17616. bottom: 0.01
  17617. }
  17618. },
  17619. sitting: {
  17620. height: math.unit(2.8, "feet"),
  17621. weight: math.unit(120, "lb"),
  17622. name: "Sitting",
  17623. image: {
  17624. source: "./media/characters/roxi/sitting.svg",
  17625. extra: 2660 / 2462,
  17626. bottom: 0.1
  17627. }
  17628. },
  17629. },
  17630. [
  17631. {
  17632. name: "Normal",
  17633. height: math.unit(5 + 2 / 12, "feet"),
  17634. default: true
  17635. },
  17636. ]
  17637. ))
  17638. characterMakers.push(() => makeCharacter(
  17639. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17640. {
  17641. side: {
  17642. height: math.unit(55, "feet"),
  17643. weight: math.unit(153, "tons"),
  17644. name: "Side",
  17645. image: {
  17646. source: "./media/characters/shadow/side.svg",
  17647. extra: 701 / 628,
  17648. bottom: 0.02
  17649. }
  17650. },
  17651. flying: {
  17652. height: math.unit(145, "feet"),
  17653. weight: math.unit(153, "tons"),
  17654. name: "Flying",
  17655. image: {
  17656. source: "./media/characters/shadow/flying.svg"
  17657. }
  17658. },
  17659. },
  17660. [
  17661. {
  17662. name: "Normal",
  17663. height: math.unit(55, "feet"),
  17664. default: true
  17665. },
  17666. ]
  17667. ))
  17668. characterMakers.push(() => makeCharacter(
  17669. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17670. {
  17671. front: {
  17672. height: math.unit(6, "feet"),
  17673. weight: math.unit(200, "lb"),
  17674. name: "Front",
  17675. image: {
  17676. source: "./media/characters/marcie/front.svg",
  17677. extra: 960 / 876,
  17678. bottom: 58 / 1017.87
  17679. }
  17680. },
  17681. },
  17682. [
  17683. {
  17684. name: "Macro",
  17685. height: math.unit(1, "mile"),
  17686. default: true
  17687. },
  17688. ]
  17689. ))
  17690. characterMakers.push(() => makeCharacter(
  17691. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17692. {
  17693. front: {
  17694. height: math.unit(7, "feet"),
  17695. weight: math.unit(200, "lb"),
  17696. name: "Front",
  17697. image: {
  17698. source: "./media/characters/kachina/front.svg",
  17699. extra: 1290.68 / 1119,
  17700. bottom: 36.5 / 1327.18
  17701. }
  17702. },
  17703. },
  17704. [
  17705. {
  17706. name: "Normal",
  17707. height: math.unit(7, "feet"),
  17708. default: true
  17709. },
  17710. ]
  17711. ))
  17712. characterMakers.push(() => makeCharacter(
  17713. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17714. {
  17715. looking: {
  17716. height: math.unit(2, "meters"),
  17717. weight: math.unit(300, "kg"),
  17718. name: "Looking",
  17719. image: {
  17720. source: "./media/characters/kash/looking.svg",
  17721. extra: 474 / 344,
  17722. bottom: 0.03
  17723. }
  17724. },
  17725. side: {
  17726. height: math.unit(2, "meters"),
  17727. weight: math.unit(300, "kg"),
  17728. name: "Side",
  17729. image: {
  17730. source: "./media/characters/kash/side.svg",
  17731. extra: 302 / 251,
  17732. bottom: 0.03
  17733. }
  17734. },
  17735. front: {
  17736. height: math.unit(2, "meters"),
  17737. weight: math.unit(300, "kg"),
  17738. name: "Front",
  17739. image: {
  17740. source: "./media/characters/kash/front.svg",
  17741. extra: 495 / 360,
  17742. bottom: 0.015
  17743. }
  17744. },
  17745. },
  17746. [
  17747. {
  17748. name: "Normal",
  17749. height: math.unit(2, "meters"),
  17750. default: true
  17751. },
  17752. {
  17753. name: "Big",
  17754. height: math.unit(3, "meters")
  17755. },
  17756. {
  17757. name: "Large",
  17758. height: math.unit(5, "meters")
  17759. },
  17760. ]
  17761. ))
  17762. characterMakers.push(() => makeCharacter(
  17763. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17764. {
  17765. feeding: {
  17766. height: math.unit(6.7, "feet"),
  17767. weight: math.unit(350, "lb"),
  17768. name: "Feeding",
  17769. image: {
  17770. source: "./media/characters/lalim/feeding.svg",
  17771. }
  17772. },
  17773. },
  17774. [
  17775. {
  17776. name: "Normal",
  17777. height: math.unit(6.7, "feet"),
  17778. default: true
  17779. },
  17780. ]
  17781. ))
  17782. characterMakers.push(() => makeCharacter(
  17783. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17784. {
  17785. front: {
  17786. height: math.unit(9.5, "feet"),
  17787. weight: math.unit(600, "lb"),
  17788. name: "Front",
  17789. image: {
  17790. source: "./media/characters/de'vout/front.svg",
  17791. extra: 1443 / 1328,
  17792. bottom: 0.025
  17793. }
  17794. },
  17795. back: {
  17796. height: math.unit(9.5, "feet"),
  17797. weight: math.unit(600, "lb"),
  17798. name: "Back",
  17799. image: {
  17800. source: "./media/characters/de'vout/back.svg",
  17801. extra: 1443 / 1328
  17802. }
  17803. },
  17804. frontDressed: {
  17805. height: math.unit(9.5, "feet"),
  17806. weight: math.unit(600, "lb"),
  17807. name: "Front (Dressed",
  17808. image: {
  17809. source: "./media/characters/de'vout/front-dressed.svg",
  17810. extra: 1443 / 1328,
  17811. bottom: 0.025
  17812. }
  17813. },
  17814. backDressed: {
  17815. height: math.unit(9.5, "feet"),
  17816. weight: math.unit(600, "lb"),
  17817. name: "Back (Dressed",
  17818. image: {
  17819. source: "./media/characters/de'vout/back-dressed.svg",
  17820. extra: 1443 / 1328
  17821. }
  17822. },
  17823. },
  17824. [
  17825. {
  17826. name: "Normal",
  17827. height: math.unit(9.5, "feet"),
  17828. default: true
  17829. },
  17830. ]
  17831. ))
  17832. characterMakers.push(() => makeCharacter(
  17833. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17834. {
  17835. front: {
  17836. height: math.unit(8, "feet"),
  17837. weight: math.unit(225, "lb"),
  17838. name: "Front",
  17839. image: {
  17840. source: "./media/characters/talana/front.svg",
  17841. extra: 1410 / 1300,
  17842. bottom: 0.015
  17843. }
  17844. },
  17845. frontDressed: {
  17846. height: math.unit(8, "feet"),
  17847. weight: math.unit(225, "lb"),
  17848. name: "Front (Dressed",
  17849. image: {
  17850. source: "./media/characters/talana/front-dressed.svg",
  17851. extra: 1410 / 1300,
  17852. bottom: 0.015
  17853. }
  17854. },
  17855. },
  17856. [
  17857. {
  17858. name: "Normal",
  17859. height: math.unit(8, "feet"),
  17860. default: true
  17861. },
  17862. ]
  17863. ))
  17864. characterMakers.push(() => makeCharacter(
  17865. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17866. {
  17867. side: {
  17868. height: math.unit(7.2, "feet"),
  17869. weight: math.unit(150, "lb"),
  17870. name: "Side",
  17871. image: {
  17872. source: "./media/characters/xeauvok/side.svg",
  17873. extra: 1975 / 1523,
  17874. bottom: 0.07
  17875. }
  17876. },
  17877. },
  17878. [
  17879. {
  17880. name: "Normal",
  17881. height: math.unit(7.2, "feet"),
  17882. default: true
  17883. },
  17884. ]
  17885. ))
  17886. characterMakers.push(() => makeCharacter(
  17887. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17888. {
  17889. side: {
  17890. height: math.unit(10, "feet"),
  17891. weight: math.unit(900, "kg"),
  17892. name: "Side",
  17893. image: {
  17894. source: "./media/characters/zara/side.svg",
  17895. extra: 504 / 498
  17896. }
  17897. },
  17898. },
  17899. [
  17900. {
  17901. name: "Normal",
  17902. height: math.unit(10, "feet"),
  17903. default: true
  17904. },
  17905. ]
  17906. ))
  17907. characterMakers.push(() => makeCharacter(
  17908. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17909. {
  17910. side: {
  17911. height: math.unit(6, "feet"),
  17912. weight: math.unit(150, "lb"),
  17913. name: "Side",
  17914. image: {
  17915. source: "./media/characters/richard-dragon/side.svg",
  17916. extra: 845 / 340,
  17917. bottom: 0.017
  17918. }
  17919. },
  17920. maw: {
  17921. height: math.unit(2.97, "feet"),
  17922. name: "Maw",
  17923. image: {
  17924. source: "./media/characters/richard-dragon/maw.svg"
  17925. }
  17926. },
  17927. },
  17928. [
  17929. ]
  17930. ))
  17931. characterMakers.push(() => makeCharacter(
  17932. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17933. {
  17934. front: {
  17935. height: math.unit(4, "feet"),
  17936. weight: math.unit(100, "lb"),
  17937. name: "Front",
  17938. image: {
  17939. source: "./media/characters/richard-smeargle/front.svg",
  17940. extra: 2952 / 2820,
  17941. bottom: 0.028
  17942. }
  17943. },
  17944. },
  17945. [
  17946. {
  17947. name: "Normal",
  17948. height: math.unit(4, "feet"),
  17949. default: true
  17950. },
  17951. {
  17952. name: "Dynamax",
  17953. height: math.unit(20, "meters")
  17954. },
  17955. ]
  17956. ))
  17957. characterMakers.push(() => makeCharacter(
  17958. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17959. {
  17960. front: {
  17961. height: math.unit(6, "feet"),
  17962. weight: math.unit(110, "lb"),
  17963. name: "Front",
  17964. image: {
  17965. source: "./media/characters/klay/front.svg",
  17966. extra: 962 / 883,
  17967. bottom: 0.04
  17968. }
  17969. },
  17970. back: {
  17971. height: math.unit(6, "feet"),
  17972. weight: math.unit(110, "lb"),
  17973. name: "Back",
  17974. image: {
  17975. source: "./media/characters/klay/back.svg",
  17976. extra: 962 / 883
  17977. }
  17978. },
  17979. beans: {
  17980. height: math.unit(1.15, "feet"),
  17981. name: "Beans",
  17982. image: {
  17983. source: "./media/characters/klay/beans.svg"
  17984. }
  17985. },
  17986. },
  17987. [
  17988. {
  17989. name: "Micro",
  17990. height: math.unit(6, "inches")
  17991. },
  17992. {
  17993. name: "Mini",
  17994. height: math.unit(3, "feet")
  17995. },
  17996. {
  17997. name: "Normal",
  17998. height: math.unit(6, "feet"),
  17999. default: true
  18000. },
  18001. {
  18002. name: "Big",
  18003. height: math.unit(25, "feet")
  18004. },
  18005. {
  18006. name: "Macro",
  18007. height: math.unit(100, "feet")
  18008. },
  18009. {
  18010. name: "Megamacro",
  18011. height: math.unit(400, "feet")
  18012. },
  18013. ]
  18014. ))
  18015. characterMakers.push(() => makeCharacter(
  18016. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18017. {
  18018. front: {
  18019. height: math.unit(6, "feet"),
  18020. weight: math.unit(160, "lb"),
  18021. name: "Front",
  18022. image: {
  18023. source: "./media/characters/marcus/front.svg",
  18024. extra: 734 / 676,
  18025. bottom: 0.03
  18026. }
  18027. },
  18028. },
  18029. [
  18030. {
  18031. name: "Little",
  18032. height: math.unit(6, "feet")
  18033. },
  18034. {
  18035. name: "Normal",
  18036. height: math.unit(110, "feet"),
  18037. default: true
  18038. },
  18039. {
  18040. name: "Macro",
  18041. height: math.unit(250, "feet")
  18042. },
  18043. {
  18044. name: "Megamacro",
  18045. height: math.unit(1000, "feet")
  18046. },
  18047. ]
  18048. ))
  18049. characterMakers.push(() => makeCharacter(
  18050. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18051. {
  18052. front: {
  18053. height: math.unit(7, "feet"),
  18054. weight: math.unit(275, "lb"),
  18055. name: "Front",
  18056. image: {
  18057. source: "./media/characters/claude-delroute/front.svg",
  18058. extra: 230 / 214,
  18059. bottom: 0.007
  18060. }
  18061. },
  18062. side: {
  18063. height: math.unit(7, "feet"),
  18064. weight: math.unit(275, "lb"),
  18065. name: "Side",
  18066. image: {
  18067. source: "./media/characters/claude-delroute/side.svg",
  18068. extra: 222 / 214,
  18069. bottom: 0.01
  18070. }
  18071. },
  18072. back: {
  18073. height: math.unit(7, "feet"),
  18074. weight: math.unit(275, "lb"),
  18075. name: "Back",
  18076. image: {
  18077. source: "./media/characters/claude-delroute/back.svg",
  18078. extra: 230 / 214,
  18079. bottom: 0.015
  18080. }
  18081. },
  18082. maw: {
  18083. height: math.unit(0.6407, "meters"),
  18084. name: "Maw",
  18085. image: {
  18086. source: "./media/characters/claude-delroute/maw.svg"
  18087. }
  18088. },
  18089. },
  18090. [
  18091. {
  18092. name: "Normal",
  18093. height: math.unit(7, "feet"),
  18094. default: true
  18095. },
  18096. {
  18097. name: "Lorge",
  18098. height: math.unit(20, "feet")
  18099. },
  18100. ]
  18101. ))
  18102. characterMakers.push(() => makeCharacter(
  18103. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18104. {
  18105. front: {
  18106. height: math.unit(8 + 4 / 12, "feet"),
  18107. weight: math.unit(600, "lb"),
  18108. name: "Front",
  18109. image: {
  18110. source: "./media/characters/dragonien/front.svg",
  18111. extra: 100 / 94,
  18112. bottom: 3.3 / 103.3445
  18113. }
  18114. },
  18115. back: {
  18116. height: math.unit(8 + 4 / 12, "feet"),
  18117. weight: math.unit(600, "lb"),
  18118. name: "Back",
  18119. image: {
  18120. source: "./media/characters/dragonien/back.svg",
  18121. extra: 776 / 746,
  18122. bottom: 6.4 / 782.0616
  18123. }
  18124. },
  18125. foot: {
  18126. height: math.unit(1.54, "feet"),
  18127. name: "Foot",
  18128. image: {
  18129. source: "./media/characters/dragonien/foot.svg",
  18130. }
  18131. },
  18132. },
  18133. [
  18134. {
  18135. name: "Normal",
  18136. height: math.unit(8 + 4 / 12, "feet"),
  18137. default: true
  18138. },
  18139. {
  18140. name: "Macro",
  18141. height: math.unit(200, "feet")
  18142. },
  18143. {
  18144. name: "Megamacro",
  18145. height: math.unit(1, "mile")
  18146. },
  18147. {
  18148. name: "Gigamacro",
  18149. height: math.unit(1000, "miles")
  18150. },
  18151. ]
  18152. ))
  18153. characterMakers.push(() => makeCharacter(
  18154. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18155. {
  18156. front: {
  18157. height: math.unit(5 + 2 / 12, "feet"),
  18158. weight: math.unit(110, "lb"),
  18159. name: "Front",
  18160. image: {
  18161. source: "./media/characters/desta/front.svg",
  18162. extra: 767 / 726,
  18163. bottom: 11.7 / 779
  18164. }
  18165. },
  18166. back: {
  18167. height: math.unit(5 + 2 / 12, "feet"),
  18168. weight: math.unit(110, "lb"),
  18169. name: "Back",
  18170. image: {
  18171. source: "./media/characters/desta/back.svg",
  18172. extra: 777 / 728,
  18173. bottom: 6 / 784
  18174. }
  18175. },
  18176. frontAlt: {
  18177. height: math.unit(5 + 2 / 12, "feet"),
  18178. weight: math.unit(110, "lb"),
  18179. name: "Front",
  18180. image: {
  18181. source: "./media/characters/desta/front-alt.svg",
  18182. extra: 1482 / 1417
  18183. }
  18184. },
  18185. side: {
  18186. height: math.unit(5 + 2 / 12, "feet"),
  18187. weight: math.unit(110, "lb"),
  18188. name: "Side",
  18189. image: {
  18190. source: "./media/characters/desta/side.svg",
  18191. extra: 2579 / 2491,
  18192. bottom: 0.053
  18193. }
  18194. },
  18195. },
  18196. [
  18197. {
  18198. name: "Micro",
  18199. height: math.unit(6, "inches")
  18200. },
  18201. {
  18202. name: "Normal",
  18203. height: math.unit(5 + 2 / 12, "feet"),
  18204. default: true
  18205. },
  18206. {
  18207. name: "Macro",
  18208. height: math.unit(62, "feet")
  18209. },
  18210. {
  18211. name: "Megamacro",
  18212. height: math.unit(1800, "feet")
  18213. },
  18214. ]
  18215. ))
  18216. characterMakers.push(() => makeCharacter(
  18217. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18218. {
  18219. front: {
  18220. height: math.unit(10, "feet"),
  18221. weight: math.unit(700, "lb"),
  18222. name: "Front",
  18223. image: {
  18224. source: "./media/characters/storm-alystar/front.svg",
  18225. extra: 2112 / 1898,
  18226. bottom: 0.034
  18227. }
  18228. },
  18229. },
  18230. [
  18231. {
  18232. name: "Micro",
  18233. height: math.unit(3.5, "inches")
  18234. },
  18235. {
  18236. name: "Normal",
  18237. height: math.unit(10, "feet"),
  18238. default: true
  18239. },
  18240. {
  18241. name: "Macro",
  18242. height: math.unit(400, "feet")
  18243. },
  18244. {
  18245. name: "Deific",
  18246. height: math.unit(60, "miles")
  18247. },
  18248. ]
  18249. ))
  18250. characterMakers.push(() => makeCharacter(
  18251. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18252. {
  18253. front: {
  18254. height: math.unit(2.35, "meters"),
  18255. weight: math.unit(119, "kg"),
  18256. name: "Front",
  18257. image: {
  18258. source: "./media/characters/ilia/front.svg",
  18259. extra: 1285 / 1255,
  18260. bottom: 0.06
  18261. }
  18262. },
  18263. },
  18264. [
  18265. {
  18266. name: "Normal",
  18267. height: math.unit(2.35, "meters")
  18268. },
  18269. {
  18270. name: "Macro",
  18271. height: math.unit(140, "meters"),
  18272. default: true
  18273. },
  18274. {
  18275. name: "Megamacro",
  18276. height: math.unit(100, "miles")
  18277. },
  18278. ]
  18279. ))
  18280. characterMakers.push(() => makeCharacter(
  18281. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18282. {
  18283. front: {
  18284. height: math.unit(6 + 5 / 12, "feet"),
  18285. weight: math.unit(190, "lb"),
  18286. name: "Front",
  18287. image: {
  18288. source: "./media/characters/kingdead/front.svg",
  18289. extra: 1228 / 1177
  18290. }
  18291. },
  18292. },
  18293. [
  18294. {
  18295. name: "Micro",
  18296. height: math.unit(7, "inches")
  18297. },
  18298. {
  18299. name: "Normal",
  18300. height: math.unit(6 + 5 / 12, "feet")
  18301. },
  18302. {
  18303. name: "Macro",
  18304. height: math.unit(150, "feet"),
  18305. default: true
  18306. },
  18307. {
  18308. name: "Megamacro",
  18309. height: math.unit(200, "miles")
  18310. },
  18311. ]
  18312. ))
  18313. characterMakers.push(() => makeCharacter(
  18314. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18315. {
  18316. front: {
  18317. height: math.unit(8, "feet"),
  18318. weight: math.unit(600, "lb"),
  18319. name: "Front",
  18320. image: {
  18321. source: "./media/characters/kyrehx/front.svg",
  18322. extra: 1195 / 1095,
  18323. bottom: 0.034
  18324. }
  18325. },
  18326. },
  18327. [
  18328. {
  18329. name: "Micro",
  18330. height: math.unit(2, "inches")
  18331. },
  18332. {
  18333. name: "Normal",
  18334. height: math.unit(8, "feet"),
  18335. default: true
  18336. },
  18337. {
  18338. name: "Macro",
  18339. height: math.unit(255, "feet")
  18340. },
  18341. ]
  18342. ))
  18343. characterMakers.push(() => makeCharacter(
  18344. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18345. {
  18346. front: {
  18347. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18348. weight: math.unit(184, "lb"),
  18349. name: "Front",
  18350. image: {
  18351. source: "./media/characters/xang/front.svg",
  18352. extra: 845 / 755
  18353. }
  18354. },
  18355. },
  18356. [
  18357. {
  18358. name: "Normal",
  18359. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18360. default: true
  18361. },
  18362. {
  18363. name: "Macro",
  18364. height: math.unit(0.935 * 146, "feet")
  18365. },
  18366. {
  18367. name: "Megamacro",
  18368. height: math.unit(0.935 * 3, "miles")
  18369. },
  18370. ]
  18371. ))
  18372. characterMakers.push(() => makeCharacter(
  18373. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18374. {
  18375. frontDressed: {
  18376. height: math.unit(5 + 7 / 12, "feet"),
  18377. weight: math.unit(140, "lb"),
  18378. name: "Front (Dressed)",
  18379. image: {
  18380. source: "./media/characters/doc-weardno/front-dressed.svg",
  18381. extra: 263 / 234
  18382. }
  18383. },
  18384. backDressed: {
  18385. height: math.unit(5 + 7 / 12, "feet"),
  18386. weight: math.unit(140, "lb"),
  18387. name: "Back (Dressed)",
  18388. image: {
  18389. source: "./media/characters/doc-weardno/back-dressed.svg",
  18390. extra: 266 / 238
  18391. }
  18392. },
  18393. front: {
  18394. height: math.unit(5 + 7 / 12, "feet"),
  18395. weight: math.unit(140, "lb"),
  18396. name: "Front",
  18397. image: {
  18398. source: "./media/characters/doc-weardno/front.svg",
  18399. extra: 254 / 233
  18400. }
  18401. },
  18402. },
  18403. [
  18404. {
  18405. name: "Micro",
  18406. height: math.unit(3, "inches")
  18407. },
  18408. {
  18409. name: "Normal",
  18410. height: math.unit(5 + 7 / 12, "feet"),
  18411. default: true
  18412. },
  18413. {
  18414. name: "Macro",
  18415. height: math.unit(25, "feet")
  18416. },
  18417. {
  18418. name: "Megamacro",
  18419. height: math.unit(2, "miles")
  18420. },
  18421. ]
  18422. ))
  18423. characterMakers.push(() => makeCharacter(
  18424. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18425. {
  18426. front: {
  18427. height: math.unit(6 + 2 / 12, "feet"),
  18428. weight: math.unit(153, "lb"),
  18429. name: "Front",
  18430. image: {
  18431. source: "./media/characters/seth-whilst/front.svg",
  18432. bottom: 0.07
  18433. }
  18434. },
  18435. },
  18436. [
  18437. {
  18438. name: "Micro",
  18439. height: math.unit(5, "inches")
  18440. },
  18441. {
  18442. name: "Normal",
  18443. height: math.unit(6 + 2 / 12, "feet"),
  18444. default: true
  18445. },
  18446. ]
  18447. ))
  18448. characterMakers.push(() => makeCharacter(
  18449. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18450. {
  18451. front: {
  18452. height: math.unit(3, "inches"),
  18453. weight: math.unit(8, "grams"),
  18454. name: "Front",
  18455. image: {
  18456. source: "./media/characters/pocket-jabari/front.svg",
  18457. extra: 1024 / 974,
  18458. bottom: 0.039
  18459. }
  18460. },
  18461. },
  18462. [
  18463. {
  18464. name: "Minimicro",
  18465. height: math.unit(8, "mm")
  18466. },
  18467. {
  18468. name: "Micro",
  18469. height: math.unit(3, "inches"),
  18470. default: true
  18471. },
  18472. {
  18473. name: "Normal",
  18474. height: math.unit(3, "feet")
  18475. },
  18476. ]
  18477. ))
  18478. characterMakers.push(() => makeCharacter(
  18479. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18480. {
  18481. front: {
  18482. height: math.unit(15, "feet"),
  18483. weight: math.unit(3280, "lb"),
  18484. name: "Front",
  18485. image: {
  18486. source: "./media/characters/sapphy/front.svg",
  18487. extra: 671 / 577,
  18488. bottom: 0.085
  18489. }
  18490. },
  18491. back: {
  18492. height: math.unit(15, "feet"),
  18493. weight: math.unit(3280, "lb"),
  18494. name: "Back",
  18495. image: {
  18496. source: "./media/characters/sapphy/back.svg",
  18497. extra: 631 / 607,
  18498. bottom: 0.045
  18499. }
  18500. },
  18501. },
  18502. [
  18503. {
  18504. name: "Normal",
  18505. height: math.unit(15, "feet")
  18506. },
  18507. {
  18508. name: "Casual Macro",
  18509. height: math.unit(120, "feet")
  18510. },
  18511. {
  18512. name: "Macro",
  18513. height: math.unit(2150, "feet"),
  18514. default: true
  18515. },
  18516. {
  18517. name: "Megamacro",
  18518. height: math.unit(8, "miles")
  18519. },
  18520. {
  18521. name: "Galaxy Mom",
  18522. height: math.unit(6, "megalightyears")
  18523. },
  18524. ]
  18525. ))
  18526. characterMakers.push(() => makeCharacter(
  18527. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18528. {
  18529. front: {
  18530. height: math.unit(6, "feet"),
  18531. weight: math.unit(170, "lb"),
  18532. name: "Front",
  18533. image: {
  18534. source: "./media/characters/kiro/front.svg",
  18535. extra: 1064 / 1012,
  18536. bottom: 0.052
  18537. }
  18538. },
  18539. },
  18540. [
  18541. {
  18542. name: "Micro",
  18543. height: math.unit(6, "inches")
  18544. },
  18545. {
  18546. name: "Normal",
  18547. height: math.unit(6, "feet"),
  18548. default: true
  18549. },
  18550. {
  18551. name: "Macro",
  18552. height: math.unit(72, "feet")
  18553. },
  18554. ]
  18555. ))
  18556. characterMakers.push(() => makeCharacter(
  18557. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18558. {
  18559. front: {
  18560. height: math.unit(5 + 9 / 12, "feet"),
  18561. weight: math.unit(175, "lb"),
  18562. name: "Front",
  18563. image: {
  18564. source: "./media/characters/irishfox/front.svg",
  18565. extra: 1912 / 1680,
  18566. bottom: 0.02
  18567. }
  18568. },
  18569. },
  18570. [
  18571. {
  18572. name: "Nano",
  18573. height: math.unit(1, "mm")
  18574. },
  18575. {
  18576. name: "Micro",
  18577. height: math.unit(2, "inches")
  18578. },
  18579. {
  18580. name: "Normal",
  18581. height: math.unit(5 + 9 / 12, "feet"),
  18582. default: true
  18583. },
  18584. {
  18585. name: "Macro",
  18586. height: math.unit(45, "feet")
  18587. },
  18588. ]
  18589. ))
  18590. characterMakers.push(() => makeCharacter(
  18591. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18592. {
  18593. front: {
  18594. height: math.unit(6 + 1 / 12, "feet"),
  18595. weight: math.unit(75, "lb"),
  18596. name: "Front",
  18597. image: {
  18598. source: "./media/characters/aronai-sieyes/front.svg",
  18599. extra: 1556 / 1480,
  18600. bottom: 0.015
  18601. }
  18602. },
  18603. side: {
  18604. height: math.unit(6 + 1 / 12, "feet"),
  18605. weight: math.unit(75, "lb"),
  18606. name: "Side",
  18607. image: {
  18608. source: "./media/characters/aronai-sieyes/side.svg",
  18609. extra: 1433 / 1390,
  18610. bottom: 0.0393
  18611. }
  18612. },
  18613. back: {
  18614. height: math.unit(6 + 1 / 12, "feet"),
  18615. weight: math.unit(75, "lb"),
  18616. name: "Back",
  18617. image: {
  18618. source: "./media/characters/aronai-sieyes/back.svg",
  18619. extra: 1544 / 1494,
  18620. bottom: 0.02
  18621. }
  18622. },
  18623. frontClothed: {
  18624. height: math.unit(6 + 1 / 12, "feet"),
  18625. weight: math.unit(75, "lb"),
  18626. name: "Front (Clothed)",
  18627. image: {
  18628. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18629. extra: 1582 / 1527
  18630. }
  18631. },
  18632. feral: {
  18633. height: math.unit(18, "feet"),
  18634. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18635. name: "Feral",
  18636. image: {
  18637. source: "./media/characters/aronai-sieyes/feral.svg",
  18638. extra: 1530 / 1240,
  18639. bottom: 0.035
  18640. }
  18641. },
  18642. },
  18643. [
  18644. {
  18645. name: "Micro",
  18646. height: math.unit(2, "inches")
  18647. },
  18648. {
  18649. name: "Normal",
  18650. height: math.unit(6 + 1 / 12, "feet"),
  18651. default: true
  18652. }
  18653. ]
  18654. ))
  18655. characterMakers.push(() => makeCharacter(
  18656. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18657. {
  18658. front: {
  18659. height: math.unit(12, "feet"),
  18660. weight: math.unit(410, "kg"),
  18661. name: "Front",
  18662. image: {
  18663. source: "./media/characters/xuna/front.svg",
  18664. extra: 2184 / 1980
  18665. }
  18666. },
  18667. side: {
  18668. height: math.unit(12, "feet"),
  18669. weight: math.unit(410, "kg"),
  18670. name: "Side",
  18671. image: {
  18672. source: "./media/characters/xuna/side.svg",
  18673. extra: 2184 / 1980
  18674. }
  18675. },
  18676. back: {
  18677. height: math.unit(12, "feet"),
  18678. weight: math.unit(410, "kg"),
  18679. name: "Back",
  18680. image: {
  18681. source: "./media/characters/xuna/back.svg",
  18682. extra: 2184 / 1980
  18683. }
  18684. },
  18685. },
  18686. [
  18687. {
  18688. name: "Nano glow",
  18689. height: math.unit(10, "nm")
  18690. },
  18691. {
  18692. name: "Micro floof",
  18693. height: math.unit(0.3, "m")
  18694. },
  18695. {
  18696. name: "Huggable softy boi",
  18697. height: math.unit(3.6576, "m"),
  18698. default: true
  18699. },
  18700. {
  18701. name: "Admirable floof",
  18702. height: math.unit(80, "meters")
  18703. },
  18704. {
  18705. name: "Gentle macro",
  18706. height: math.unit(300, "meters")
  18707. },
  18708. {
  18709. name: "Very careful floof",
  18710. height: math.unit(3200, "meters")
  18711. },
  18712. {
  18713. name: "The mega floof",
  18714. height: math.unit(36000, "meters")
  18715. },
  18716. {
  18717. name: "Giga-fur-Wicker",
  18718. height: math.unit(4800000, "meters")
  18719. },
  18720. {
  18721. name: "Licky world",
  18722. height: math.unit(20000000, "meters")
  18723. },
  18724. {
  18725. name: "Floofy cyan sun",
  18726. height: math.unit(1500000000, "meters")
  18727. },
  18728. {
  18729. name: "Milky Wicker",
  18730. height: math.unit(1000000000000000000000, "meters")
  18731. },
  18732. {
  18733. name: "The observing Wicker",
  18734. height: math.unit(999999999999999999999999999, "meters")
  18735. },
  18736. ]
  18737. ))
  18738. characterMakers.push(() => makeCharacter(
  18739. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18740. {
  18741. front: {
  18742. height: math.unit(5 + 9 / 12, "feet"),
  18743. weight: math.unit(150, "lb"),
  18744. name: "Front",
  18745. image: {
  18746. source: "./media/characters/arokha-sieyes/front.svg",
  18747. extra: 1425 / 1284,
  18748. bottom: 0.05
  18749. }
  18750. },
  18751. },
  18752. [
  18753. {
  18754. name: "Normal",
  18755. height: math.unit(5 + 9 / 12, "feet")
  18756. },
  18757. {
  18758. name: "Macro",
  18759. height: math.unit(30, "meters"),
  18760. default: true
  18761. },
  18762. ]
  18763. ))
  18764. characterMakers.push(() => makeCharacter(
  18765. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18766. {
  18767. front: {
  18768. height: math.unit(6, "feet"),
  18769. weight: math.unit(180, "lb"),
  18770. name: "Front",
  18771. image: {
  18772. source: "./media/characters/arokh-sieyes/front.svg",
  18773. extra: 1830 / 1769,
  18774. bottom: 0.01
  18775. }
  18776. },
  18777. },
  18778. [
  18779. {
  18780. name: "Normal",
  18781. height: math.unit(6, "feet")
  18782. },
  18783. {
  18784. name: "Macro",
  18785. height: math.unit(30, "meters"),
  18786. default: true
  18787. },
  18788. ]
  18789. ))
  18790. characterMakers.push(() => makeCharacter(
  18791. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18792. {
  18793. side: {
  18794. height: math.unit(13 + 1 / 12, "feet"),
  18795. weight: math.unit(8.5, "tonnes"),
  18796. name: "Side",
  18797. image: {
  18798. source: "./media/characters/goldeneye/side.svg",
  18799. extra: 1182 / 778,
  18800. bottom: 0.067
  18801. }
  18802. },
  18803. paw: {
  18804. height: math.unit(3.4, "feet"),
  18805. name: "Paw",
  18806. image: {
  18807. source: "./media/characters/goldeneye/paw.svg"
  18808. }
  18809. },
  18810. },
  18811. [
  18812. {
  18813. name: "Normal",
  18814. height: math.unit(13 + 1 / 12, "feet"),
  18815. default: true
  18816. },
  18817. ]
  18818. ))
  18819. characterMakers.push(() => makeCharacter(
  18820. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18821. {
  18822. front: {
  18823. height: math.unit(6 + 1 / 12, "feet"),
  18824. weight: math.unit(210, "lb"),
  18825. name: "Front",
  18826. image: {
  18827. source: "./media/characters/leonardo-lycheborne/front.svg",
  18828. extra: 390 / 365,
  18829. bottom: 0.032
  18830. }
  18831. },
  18832. side: {
  18833. height: math.unit(6 + 1 / 12, "feet"),
  18834. weight: math.unit(210, "lb"),
  18835. name: "Side",
  18836. image: {
  18837. source: "./media/characters/leonardo-lycheborne/side.svg",
  18838. extra: 390 / 365,
  18839. bottom: 0.005
  18840. }
  18841. },
  18842. back: {
  18843. height: math.unit(6 + 1 / 12, "feet"),
  18844. weight: math.unit(210, "lb"),
  18845. name: "Back",
  18846. image: {
  18847. source: "./media/characters/leonardo-lycheborne/back.svg",
  18848. extra: 392 / 366,
  18849. bottom: 0.01
  18850. }
  18851. },
  18852. hand: {
  18853. height: math.unit(1.08, "feet"),
  18854. name: "Hand",
  18855. image: {
  18856. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18857. }
  18858. },
  18859. foot: {
  18860. height: math.unit(1.32, "feet"),
  18861. name: "Foot",
  18862. image: {
  18863. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18864. }
  18865. },
  18866. were: {
  18867. height: math.unit(20, "feet"),
  18868. weight: math.unit(7800, "lb"),
  18869. name: "Were",
  18870. image: {
  18871. source: "./media/characters/leonardo-lycheborne/were.svg",
  18872. extra: 308 / 294,
  18873. bottom: 0.048
  18874. }
  18875. },
  18876. feral: {
  18877. height: math.unit(7.5, "feet"),
  18878. weight: math.unit(600, "lb"),
  18879. name: "Feral",
  18880. image: {
  18881. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18882. extra: 210 / 186,
  18883. bottom: 0.108
  18884. }
  18885. },
  18886. taur: {
  18887. height: math.unit(11, "feet"),
  18888. weight: math.unit(3300, "lb"),
  18889. name: "Taur",
  18890. image: {
  18891. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18892. extra: 320 / 303,
  18893. bottom: 0.025
  18894. }
  18895. },
  18896. barghest: {
  18897. height: math.unit(11, "feet"),
  18898. weight: math.unit(1300, "lb"),
  18899. name: "Barghest",
  18900. image: {
  18901. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18902. extra: 323 / 302,
  18903. bottom: 0.027
  18904. }
  18905. },
  18906. dick: {
  18907. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18908. name: "Dick",
  18909. image: {
  18910. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18911. }
  18912. },
  18913. dickWere: {
  18914. height: math.unit((20) / 3.8, "feet"),
  18915. name: "Dick (Were)",
  18916. image: {
  18917. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18918. }
  18919. },
  18920. },
  18921. [
  18922. {
  18923. name: "Normal",
  18924. height: math.unit(6 + 1 / 12, "feet"),
  18925. default: true
  18926. },
  18927. ]
  18928. ))
  18929. characterMakers.push(() => makeCharacter(
  18930. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18931. {
  18932. front: {
  18933. height: math.unit(10, "feet"),
  18934. weight: math.unit(350, "lb"),
  18935. name: "Front",
  18936. image: {
  18937. source: "./media/characters/jet/front.svg",
  18938. extra: 2050 / 1980,
  18939. bottom: 0.013
  18940. }
  18941. },
  18942. back: {
  18943. height: math.unit(10, "feet"),
  18944. weight: math.unit(350, "lb"),
  18945. name: "Back",
  18946. image: {
  18947. source: "./media/characters/jet/back.svg",
  18948. extra: 2050 / 1980,
  18949. bottom: 0.013
  18950. }
  18951. },
  18952. },
  18953. [
  18954. {
  18955. name: "Micro",
  18956. height: math.unit(6, "inches")
  18957. },
  18958. {
  18959. name: "Normal",
  18960. height: math.unit(10, "feet"),
  18961. default: true
  18962. },
  18963. {
  18964. name: "Macro",
  18965. height: math.unit(100, "feet")
  18966. },
  18967. ]
  18968. ))
  18969. characterMakers.push(() => makeCharacter(
  18970. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18971. {
  18972. front: {
  18973. height: math.unit(15, "feet"),
  18974. weight: math.unit(2800, "lb"),
  18975. name: "Front",
  18976. image: {
  18977. source: "./media/characters/tanarath/front.svg",
  18978. extra: 2392 / 2220,
  18979. bottom: 0.03
  18980. }
  18981. },
  18982. back: {
  18983. height: math.unit(15, "feet"),
  18984. weight: math.unit(2800, "lb"),
  18985. name: "Back",
  18986. image: {
  18987. source: "./media/characters/tanarath/back.svg",
  18988. extra: 2392 / 2220,
  18989. bottom: 0.03
  18990. }
  18991. },
  18992. },
  18993. [
  18994. {
  18995. name: "Normal",
  18996. height: math.unit(15, "feet"),
  18997. default: true
  18998. },
  18999. ]
  19000. ))
  19001. characterMakers.push(() => makeCharacter(
  19002. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19003. {
  19004. front: {
  19005. height: math.unit(7 + 1 / 12, "feet"),
  19006. weight: math.unit(175, "lb"),
  19007. name: "Front",
  19008. image: {
  19009. source: "./media/characters/patty-cattybatty/front.svg",
  19010. extra: 908 / 874,
  19011. bottom: 0.025
  19012. }
  19013. },
  19014. },
  19015. [
  19016. {
  19017. name: "Micro",
  19018. height: math.unit(1, "inch")
  19019. },
  19020. {
  19021. name: "Normal",
  19022. height: math.unit(7 + 1 / 12, "feet")
  19023. },
  19024. {
  19025. name: "Mini Macro",
  19026. height: math.unit(155, "feet")
  19027. },
  19028. {
  19029. name: "Macro",
  19030. height: math.unit(1077, "feet")
  19031. },
  19032. {
  19033. name: "Mega Macro",
  19034. height: math.unit(47650, "feet"),
  19035. default: true
  19036. },
  19037. {
  19038. name: "Giga Macro",
  19039. height: math.unit(440, "miles")
  19040. },
  19041. {
  19042. name: "Tera Macro",
  19043. height: math.unit(8700, "miles")
  19044. },
  19045. {
  19046. name: "Planetary Macro",
  19047. height: math.unit(32700, "miles")
  19048. },
  19049. {
  19050. name: "Solar Macro",
  19051. height: math.unit(550000, "miles")
  19052. },
  19053. {
  19054. name: "Celestial Macro",
  19055. height: math.unit(2.5, "AU")
  19056. },
  19057. ]
  19058. ))
  19059. characterMakers.push(() => makeCharacter(
  19060. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19061. {
  19062. front: {
  19063. height: math.unit(4 + 5 / 12, "feet"),
  19064. weight: math.unit(90, "lb"),
  19065. name: "Front",
  19066. image: {
  19067. source: "./media/characters/cappu/front.svg",
  19068. extra: 1247 / 1152,
  19069. bottom: 0.012
  19070. }
  19071. },
  19072. },
  19073. [
  19074. {
  19075. name: "Normal",
  19076. height: math.unit(4 + 5 / 12, "feet"),
  19077. default: true
  19078. },
  19079. ]
  19080. ))
  19081. characterMakers.push(() => makeCharacter(
  19082. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19083. {
  19084. frontDressed: {
  19085. height: math.unit(70, "cm"),
  19086. weight: math.unit(6, "kg"),
  19087. name: "Front (Dressed)",
  19088. image: {
  19089. source: "./media/characters/sebi/front-dressed.svg",
  19090. extra: 713.5 / 686.5,
  19091. bottom: 0.003
  19092. }
  19093. },
  19094. front: {
  19095. height: math.unit(70, "cm"),
  19096. weight: math.unit(5, "kg"),
  19097. name: "Front",
  19098. image: {
  19099. source: "./media/characters/sebi/front.svg",
  19100. extra: 713.5 / 686.5,
  19101. bottom: 0.003
  19102. }
  19103. }
  19104. },
  19105. [
  19106. {
  19107. name: "Normal",
  19108. height: math.unit(70, "cm"),
  19109. default: true
  19110. },
  19111. {
  19112. name: "Macro",
  19113. height: math.unit(8, "meters")
  19114. },
  19115. ]
  19116. ))
  19117. characterMakers.push(() => makeCharacter(
  19118. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19119. {
  19120. front: {
  19121. height: math.unit(6, "feet"),
  19122. weight: math.unit(150, "lb"),
  19123. name: "Front",
  19124. image: {
  19125. source: "./media/characters/typhek/front.svg",
  19126. extra: 1948 / 1929,
  19127. bottom: 0.025
  19128. }
  19129. },
  19130. side: {
  19131. height: math.unit(6, "feet"),
  19132. weight: math.unit(150, "lb"),
  19133. name: "Side",
  19134. image: {
  19135. source: "./media/characters/typhek/side.svg",
  19136. extra: 2034 / 2010,
  19137. bottom: 0.003
  19138. }
  19139. },
  19140. back: {
  19141. height: math.unit(6, "feet"),
  19142. weight: math.unit(150, "lb"),
  19143. name: "Back",
  19144. image: {
  19145. source: "./media/characters/typhek/back.svg",
  19146. extra: 2005 / 1978,
  19147. bottom: 0.004
  19148. }
  19149. },
  19150. palm: {
  19151. height: math.unit(1.2, "feet"),
  19152. name: "Palm",
  19153. image: {
  19154. source: "./media/characters/typhek/palm.svg"
  19155. }
  19156. },
  19157. fist: {
  19158. height: math.unit(1.1, "feet"),
  19159. name: "Fist",
  19160. image: {
  19161. source: "./media/characters/typhek/fist.svg"
  19162. }
  19163. },
  19164. foot: {
  19165. height: math.unit(1.57, "feet"),
  19166. name: "Foot",
  19167. image: {
  19168. source: "./media/characters/typhek/foot.svg"
  19169. }
  19170. },
  19171. sole: {
  19172. height: math.unit(2.05, "feet"),
  19173. name: "Sole",
  19174. image: {
  19175. source: "./media/characters/typhek/sole.svg"
  19176. }
  19177. },
  19178. },
  19179. [
  19180. {
  19181. name: "Macro",
  19182. height: math.unit(40, "stories"),
  19183. default: true
  19184. },
  19185. {
  19186. name: "Megamacro",
  19187. height: math.unit(1, "mile")
  19188. },
  19189. {
  19190. name: "Gigamacro",
  19191. height: math.unit(4000, "solarradii")
  19192. },
  19193. {
  19194. name: "Universal",
  19195. height: math.unit(1.1, "universes")
  19196. }
  19197. ]
  19198. ))
  19199. characterMakers.push(() => makeCharacter(
  19200. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19201. {
  19202. side: {
  19203. height: math.unit(5 + 7 / 12, "feet"),
  19204. weight: math.unit(150, "lb"),
  19205. name: "Side",
  19206. image: {
  19207. source: "./media/characters/kassy/side.svg",
  19208. extra: 1280 / 1225,
  19209. bottom: 0.002
  19210. }
  19211. },
  19212. front: {
  19213. height: math.unit(5 + 7 / 12, "feet"),
  19214. weight: math.unit(150, "lb"),
  19215. name: "Front",
  19216. image: {
  19217. source: "./media/characters/kassy/front.svg",
  19218. extra: 1280 / 1225,
  19219. bottom: 0.025
  19220. }
  19221. },
  19222. back: {
  19223. height: math.unit(5 + 7 / 12, "feet"),
  19224. weight: math.unit(150, "lb"),
  19225. name: "Back",
  19226. image: {
  19227. source: "./media/characters/kassy/back.svg",
  19228. extra: 1280 / 1225,
  19229. bottom: 0.002
  19230. }
  19231. },
  19232. foot: {
  19233. height: math.unit(1.266, "feet"),
  19234. name: "Foot",
  19235. image: {
  19236. source: "./media/characters/kassy/foot.svg"
  19237. }
  19238. },
  19239. },
  19240. [
  19241. {
  19242. name: "Normal",
  19243. height: math.unit(5 + 7 / 12, "feet")
  19244. },
  19245. {
  19246. name: "Macro",
  19247. height: math.unit(137, "feet"),
  19248. default: true
  19249. },
  19250. {
  19251. name: "Megamacro",
  19252. height: math.unit(1, "mile")
  19253. },
  19254. ]
  19255. ))
  19256. characterMakers.push(() => makeCharacter(
  19257. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19258. {
  19259. front: {
  19260. height: math.unit(6 + 1 / 12, "feet"),
  19261. weight: math.unit(200, "lb"),
  19262. name: "Front",
  19263. image: {
  19264. source: "./media/characters/neil/front.svg",
  19265. extra: 1326 / 1250,
  19266. bottom: 0.023
  19267. }
  19268. },
  19269. },
  19270. [
  19271. {
  19272. name: "Normal",
  19273. height: math.unit(6 + 1 / 12, "feet"),
  19274. default: true
  19275. },
  19276. {
  19277. name: "Macro",
  19278. height: math.unit(200, "feet")
  19279. },
  19280. ]
  19281. ))
  19282. characterMakers.push(() => makeCharacter(
  19283. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19284. {
  19285. front: {
  19286. height: math.unit(5 + 9 / 12, "feet"),
  19287. weight: math.unit(190, "lb"),
  19288. name: "Front",
  19289. image: {
  19290. source: "./media/characters/atticus/front.svg",
  19291. extra: 2934 / 2785,
  19292. bottom: 0.025
  19293. }
  19294. },
  19295. },
  19296. [
  19297. {
  19298. name: "Normal",
  19299. height: math.unit(5 + 9 / 12, "feet"),
  19300. default: true
  19301. },
  19302. {
  19303. name: "Macro",
  19304. height: math.unit(180, "feet")
  19305. },
  19306. ]
  19307. ))
  19308. characterMakers.push(() => makeCharacter(
  19309. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19310. {
  19311. side: {
  19312. height: math.unit(9, "feet"),
  19313. weight: math.unit(650, "lb"),
  19314. name: "Side",
  19315. image: {
  19316. source: "./media/characters/milo/side.svg",
  19317. extra: 2644 / 2310,
  19318. bottom: 0.032
  19319. }
  19320. },
  19321. },
  19322. [
  19323. {
  19324. name: "Normal",
  19325. height: math.unit(9, "feet"),
  19326. default: true
  19327. },
  19328. {
  19329. name: "Macro",
  19330. height: math.unit(300, "feet")
  19331. },
  19332. ]
  19333. ))
  19334. characterMakers.push(() => makeCharacter(
  19335. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19336. {
  19337. side: {
  19338. height: math.unit(8, "meters"),
  19339. weight: math.unit(90000, "kg"),
  19340. name: "Side",
  19341. image: {
  19342. source: "./media/characters/ijzer/side.svg",
  19343. extra: 2756 / 1600,
  19344. bottom: 0.01
  19345. }
  19346. },
  19347. },
  19348. [
  19349. {
  19350. name: "Small",
  19351. height: math.unit(3, "meters")
  19352. },
  19353. {
  19354. name: "Normal",
  19355. height: math.unit(8, "meters"),
  19356. default: true
  19357. },
  19358. {
  19359. name: "Normal+",
  19360. height: math.unit(10, "meters")
  19361. },
  19362. {
  19363. name: "Bigger",
  19364. height: math.unit(24, "meters")
  19365. },
  19366. {
  19367. name: "Huge",
  19368. height: math.unit(80, "meters")
  19369. },
  19370. ]
  19371. ))
  19372. characterMakers.push(() => makeCharacter(
  19373. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19374. {
  19375. front: {
  19376. height: math.unit(6 + 2 / 12, "feet"),
  19377. weight: math.unit(153, "lb"),
  19378. name: "Front",
  19379. image: {
  19380. source: "./media/characters/luca-cervicum/front.svg",
  19381. extra: 370 / 327,
  19382. bottom: 0.015
  19383. }
  19384. },
  19385. back: {
  19386. height: math.unit(6 + 2 / 12, "feet"),
  19387. weight: math.unit(153, "lb"),
  19388. name: "Back",
  19389. image: {
  19390. source: "./media/characters/luca-cervicum/back.svg",
  19391. extra: 367 / 333,
  19392. bottom: 0.005
  19393. }
  19394. },
  19395. frontGear: {
  19396. height: math.unit(6 + 2 / 12, "feet"),
  19397. weight: math.unit(173, "lb"),
  19398. name: "Front (Gear)",
  19399. image: {
  19400. source: "./media/characters/luca-cervicum/front-gear.svg",
  19401. extra: 377 / 333,
  19402. bottom: 0.006
  19403. }
  19404. },
  19405. },
  19406. [
  19407. {
  19408. name: "Normal",
  19409. height: math.unit(6 + 2 / 12, "feet"),
  19410. default: true
  19411. },
  19412. ]
  19413. ))
  19414. characterMakers.push(() => makeCharacter(
  19415. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19416. {
  19417. front: {
  19418. height: math.unit(6 + 1 / 12, "feet"),
  19419. weight: math.unit(304, "lb"),
  19420. name: "Front",
  19421. image: {
  19422. source: "./media/characters/oliver/front.svg",
  19423. extra: 157 / 143,
  19424. bottom: 0.08
  19425. }
  19426. },
  19427. },
  19428. [
  19429. {
  19430. name: "Normal",
  19431. height: math.unit(6 + 1 / 12, "feet"),
  19432. default: true
  19433. },
  19434. ]
  19435. ))
  19436. characterMakers.push(() => makeCharacter(
  19437. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19438. {
  19439. front: {
  19440. height: math.unit(5 + 7 / 12, "feet"),
  19441. weight: math.unit(140, "lb"),
  19442. name: "Front",
  19443. image: {
  19444. source: "./media/characters/shane/front.svg",
  19445. extra: 304 / 289,
  19446. bottom: 0.005
  19447. }
  19448. },
  19449. },
  19450. [
  19451. {
  19452. name: "Normal",
  19453. height: math.unit(5 + 7 / 12, "feet"),
  19454. default: true
  19455. },
  19456. ]
  19457. ))
  19458. characterMakers.push(() => makeCharacter(
  19459. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19460. {
  19461. front: {
  19462. height: math.unit(5 + 9 / 12, "feet"),
  19463. weight: math.unit(178, "lb"),
  19464. name: "Front",
  19465. image: {
  19466. source: "./media/characters/shin/front.svg",
  19467. extra: 159 / 151,
  19468. bottom: 0.015
  19469. }
  19470. },
  19471. },
  19472. [
  19473. {
  19474. name: "Normal",
  19475. height: math.unit(5 + 9 / 12, "feet"),
  19476. default: true
  19477. },
  19478. ]
  19479. ))
  19480. characterMakers.push(() => makeCharacter(
  19481. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19482. {
  19483. front: {
  19484. height: math.unit(5 + 10 / 12, "feet"),
  19485. weight: math.unit(168, "lb"),
  19486. name: "Front",
  19487. image: {
  19488. source: "./media/characters/xerxes/front.svg",
  19489. extra: 282 / 260,
  19490. bottom: 0.045
  19491. }
  19492. },
  19493. },
  19494. [
  19495. {
  19496. name: "Normal",
  19497. height: math.unit(5 + 10 / 12, "feet"),
  19498. default: true
  19499. },
  19500. ]
  19501. ))
  19502. characterMakers.push(() => makeCharacter(
  19503. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19504. {
  19505. front: {
  19506. height: math.unit(6 + 7 / 12, "feet"),
  19507. weight: math.unit(208, "lb"),
  19508. name: "Front",
  19509. image: {
  19510. source: "./media/characters/chaska/front.svg",
  19511. extra: 332 / 319,
  19512. bottom: 0.015
  19513. }
  19514. },
  19515. },
  19516. [
  19517. {
  19518. name: "Normal",
  19519. height: math.unit(6 + 7 / 12, "feet"),
  19520. default: true
  19521. },
  19522. ]
  19523. ))
  19524. characterMakers.push(() => makeCharacter(
  19525. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19526. {
  19527. front: {
  19528. height: math.unit(5 + 8 / 12, "feet"),
  19529. weight: math.unit(208, "lb"),
  19530. name: "Front",
  19531. image: {
  19532. source: "./media/characters/enuk/front.svg",
  19533. extra: 437 / 406,
  19534. bottom: 0.02
  19535. }
  19536. },
  19537. },
  19538. [
  19539. {
  19540. name: "Normal",
  19541. height: math.unit(5 + 8 / 12, "feet"),
  19542. default: true
  19543. },
  19544. ]
  19545. ))
  19546. characterMakers.push(() => makeCharacter(
  19547. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19548. {
  19549. front: {
  19550. height: math.unit(5 + 10 / 12, "feet"),
  19551. weight: math.unit(252, "lb"),
  19552. name: "Front",
  19553. image: {
  19554. source: "./media/characters/bruun/front.svg",
  19555. extra: 197 / 187,
  19556. bottom: 0.012
  19557. }
  19558. },
  19559. },
  19560. [
  19561. {
  19562. name: "Normal",
  19563. height: math.unit(5 + 10 / 12, "feet"),
  19564. default: true
  19565. },
  19566. ]
  19567. ))
  19568. characterMakers.push(() => makeCharacter(
  19569. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19570. {
  19571. front: {
  19572. height: math.unit(6 + 10 / 12, "feet"),
  19573. weight: math.unit(255, "lb"),
  19574. name: "Front",
  19575. image: {
  19576. source: "./media/characters/alexeev/front.svg",
  19577. extra: 213 / 200,
  19578. bottom: 0.05
  19579. }
  19580. },
  19581. },
  19582. [
  19583. {
  19584. name: "Normal",
  19585. height: math.unit(6 + 10 / 12, "feet"),
  19586. default: true
  19587. },
  19588. ]
  19589. ))
  19590. characterMakers.push(() => makeCharacter(
  19591. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19592. {
  19593. front: {
  19594. height: math.unit(2 + 8 / 12, "feet"),
  19595. weight: math.unit(22, "lb"),
  19596. name: "Front",
  19597. image: {
  19598. source: "./media/characters/evelyn/front.svg",
  19599. extra: 208 / 180
  19600. }
  19601. },
  19602. },
  19603. [
  19604. {
  19605. name: "Normal",
  19606. height: math.unit(2 + 8 / 12, "feet"),
  19607. default: true
  19608. },
  19609. ]
  19610. ))
  19611. characterMakers.push(() => makeCharacter(
  19612. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19613. {
  19614. front: {
  19615. height: math.unit(5 + 9 / 12, "feet"),
  19616. weight: math.unit(139, "lb"),
  19617. name: "Front",
  19618. image: {
  19619. source: "./media/characters/inca/front.svg",
  19620. extra: 294 / 291,
  19621. bottom: 0.03
  19622. }
  19623. },
  19624. },
  19625. [
  19626. {
  19627. name: "Normal",
  19628. height: math.unit(5 + 9 / 12, "feet"),
  19629. default: true
  19630. },
  19631. ]
  19632. ))
  19633. characterMakers.push(() => makeCharacter(
  19634. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19635. {
  19636. front: {
  19637. height: math.unit(5 + 1 / 12, "feet"),
  19638. weight: math.unit(84, "lb"),
  19639. name: "Front",
  19640. image: {
  19641. source: "./media/characters/magdalene/front.svg",
  19642. extra: 293 / 273
  19643. }
  19644. },
  19645. },
  19646. [
  19647. {
  19648. name: "Normal",
  19649. height: math.unit(5 + 1 / 12, "feet"),
  19650. default: true
  19651. },
  19652. ]
  19653. ))
  19654. characterMakers.push(() => makeCharacter(
  19655. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19656. {
  19657. front: {
  19658. height: math.unit(6 + 3 / 12, "feet"),
  19659. weight: math.unit(185, "lb"),
  19660. name: "Front",
  19661. image: {
  19662. source: "./media/characters/mera/front.svg",
  19663. extra: 291 / 277,
  19664. bottom: 0.03
  19665. }
  19666. },
  19667. },
  19668. [
  19669. {
  19670. name: "Normal",
  19671. height: math.unit(6 + 3 / 12, "feet"),
  19672. default: true
  19673. },
  19674. ]
  19675. ))
  19676. characterMakers.push(() => makeCharacter(
  19677. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19678. {
  19679. front: {
  19680. height: math.unit(6 + 7 / 12, "feet"),
  19681. weight: math.unit(160, "lb"),
  19682. name: "Front",
  19683. image: {
  19684. source: "./media/characters/ceres/front.svg",
  19685. extra: 1023 / 950,
  19686. bottom: 0.027
  19687. }
  19688. },
  19689. back: {
  19690. height: math.unit(6 + 7 / 12, "feet"),
  19691. weight: math.unit(160, "lb"),
  19692. name: "Back",
  19693. image: {
  19694. source: "./media/characters/ceres/back.svg",
  19695. extra: 1023 / 950
  19696. }
  19697. },
  19698. },
  19699. [
  19700. {
  19701. name: "Normal",
  19702. height: math.unit(6 + 7 / 12, "feet"),
  19703. default: true
  19704. },
  19705. ]
  19706. ))
  19707. characterMakers.push(() => makeCharacter(
  19708. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19709. {
  19710. front: {
  19711. height: math.unit(5 + 10 / 12, "feet"),
  19712. weight: math.unit(150, "lb"),
  19713. name: "Front",
  19714. image: {
  19715. source: "./media/characters/kris/front.svg",
  19716. extra: 885 / 803,
  19717. bottom: 0.03
  19718. }
  19719. },
  19720. },
  19721. [
  19722. {
  19723. name: "Normal",
  19724. height: math.unit(5 + 10 / 12, "feet"),
  19725. default: true
  19726. },
  19727. ]
  19728. ))
  19729. characterMakers.push(() => makeCharacter(
  19730. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19731. {
  19732. front: {
  19733. height: math.unit(7, "feet"),
  19734. weight: math.unit(120, "kg"),
  19735. name: "Front",
  19736. image: {
  19737. source: "./media/characters/taluthus/front.svg",
  19738. extra: 903 / 833,
  19739. bottom: 0.015
  19740. }
  19741. },
  19742. },
  19743. [
  19744. {
  19745. name: "Normal",
  19746. height: math.unit(7, "feet"),
  19747. default: true
  19748. },
  19749. {
  19750. name: "Macro",
  19751. height: math.unit(300, "feet")
  19752. },
  19753. ]
  19754. ))
  19755. characterMakers.push(() => makeCharacter(
  19756. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19757. {
  19758. front: {
  19759. height: math.unit(5 + 9 / 12, "feet"),
  19760. weight: math.unit(145, "lb"),
  19761. name: "Front",
  19762. image: {
  19763. source: "./media/characters/dawn/front.svg",
  19764. extra: 2094 / 2016,
  19765. bottom: 0.025
  19766. }
  19767. },
  19768. back: {
  19769. height: math.unit(5 + 9 / 12, "feet"),
  19770. weight: math.unit(160, "lb"),
  19771. name: "Back",
  19772. image: {
  19773. source: "./media/characters/dawn/back.svg",
  19774. extra: 2112 / 2080,
  19775. bottom: 0.005
  19776. }
  19777. },
  19778. },
  19779. [
  19780. {
  19781. name: "Normal",
  19782. height: math.unit(6 + 7 / 12, "feet"),
  19783. default: true
  19784. },
  19785. ]
  19786. ))
  19787. characterMakers.push(() => makeCharacter(
  19788. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19789. {
  19790. anthro: {
  19791. height: math.unit(8 + 3 / 12, "feet"),
  19792. weight: math.unit(450, "lb"),
  19793. name: "Anthro",
  19794. image: {
  19795. source: "./media/characters/arador/anthro.svg",
  19796. extra: 1835 / 1718,
  19797. bottom: 0.025
  19798. }
  19799. },
  19800. feral: {
  19801. height: math.unit(4, "feet"),
  19802. weight: math.unit(200, "lb"),
  19803. name: "Feral",
  19804. image: {
  19805. source: "./media/characters/arador/feral.svg",
  19806. extra: 1683 / 1514,
  19807. bottom: 0.07
  19808. }
  19809. },
  19810. },
  19811. [
  19812. {
  19813. name: "Normal",
  19814. height: math.unit(8 + 3 / 12, "feet")
  19815. },
  19816. {
  19817. name: "Macro",
  19818. height: math.unit(82.5, "feet"),
  19819. default: true
  19820. },
  19821. ]
  19822. ))
  19823. characterMakers.push(() => makeCharacter(
  19824. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19825. {
  19826. front: {
  19827. height: math.unit(5 + 10 / 12, "feet"),
  19828. weight: math.unit(125, "lb"),
  19829. name: "Front",
  19830. image: {
  19831. source: "./media/characters/dharsi/front.svg",
  19832. extra: 716 / 630,
  19833. bottom: 0.035
  19834. }
  19835. },
  19836. },
  19837. [
  19838. {
  19839. name: "Nano",
  19840. height: math.unit(100, "nm")
  19841. },
  19842. {
  19843. name: "Micro",
  19844. height: math.unit(2, "inches")
  19845. },
  19846. {
  19847. name: "Normal",
  19848. height: math.unit(5 + 10 / 12, "feet"),
  19849. default: true
  19850. },
  19851. {
  19852. name: "Macro",
  19853. height: math.unit(1000, "feet")
  19854. },
  19855. {
  19856. name: "Megamacro",
  19857. height: math.unit(10, "miles")
  19858. },
  19859. {
  19860. name: "Gigamacro",
  19861. height: math.unit(3000, "miles")
  19862. },
  19863. {
  19864. name: "Teramacro",
  19865. height: math.unit(500000, "miles")
  19866. },
  19867. {
  19868. name: "Teramacro+",
  19869. height: math.unit(30, "galaxies")
  19870. },
  19871. ]
  19872. ))
  19873. characterMakers.push(() => makeCharacter(
  19874. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19875. {
  19876. front: {
  19877. height: math.unit(6, "feet"),
  19878. weight: math.unit(150, "lb"),
  19879. name: "Front",
  19880. image: {
  19881. source: "./media/characters/deathy/front.svg",
  19882. extra: 1552 / 1463,
  19883. bottom: 0.025
  19884. }
  19885. },
  19886. side: {
  19887. height: math.unit(6, "feet"),
  19888. weight: math.unit(150, "lb"),
  19889. name: "Side",
  19890. image: {
  19891. source: "./media/characters/deathy/side.svg",
  19892. extra: 1604 / 1455,
  19893. bottom: 0.025
  19894. }
  19895. },
  19896. back: {
  19897. height: math.unit(6, "feet"),
  19898. weight: math.unit(150, "lb"),
  19899. name: "Back",
  19900. image: {
  19901. source: "./media/characters/deathy/back.svg",
  19902. extra: 1580 / 1463,
  19903. bottom: 0.005
  19904. }
  19905. },
  19906. },
  19907. [
  19908. {
  19909. name: "Micro",
  19910. height: math.unit(5, "millimeters")
  19911. },
  19912. {
  19913. name: "Normal",
  19914. height: math.unit(6 + 5 / 12, "feet"),
  19915. default: true
  19916. },
  19917. ]
  19918. ))
  19919. characterMakers.push(() => makeCharacter(
  19920. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19921. {
  19922. front: {
  19923. height: math.unit(16, "feet"),
  19924. weight: math.unit(4000, "lb"),
  19925. name: "Front",
  19926. image: {
  19927. source: "./media/characters/juniper/front.svg",
  19928. bottom: 0.04
  19929. }
  19930. },
  19931. },
  19932. [
  19933. {
  19934. name: "Normal",
  19935. height: math.unit(16, "feet"),
  19936. default: true
  19937. },
  19938. ]
  19939. ))
  19940. characterMakers.push(() => makeCharacter(
  19941. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19942. {
  19943. front: {
  19944. height: math.unit(6, "feet"),
  19945. weight: math.unit(150, "lb"),
  19946. name: "Front",
  19947. image: {
  19948. source: "./media/characters/hipster/front.svg",
  19949. extra: 1312 / 1209,
  19950. bottom: 0.025
  19951. }
  19952. },
  19953. back: {
  19954. height: math.unit(6, "feet"),
  19955. weight: math.unit(150, "lb"),
  19956. name: "Back",
  19957. image: {
  19958. source: "./media/characters/hipster/back.svg",
  19959. extra: 1281 / 1196,
  19960. bottom: 0.01
  19961. }
  19962. },
  19963. },
  19964. [
  19965. {
  19966. name: "Micro",
  19967. height: math.unit(1, "mm")
  19968. },
  19969. {
  19970. name: "Normal",
  19971. height: math.unit(4, "inches"),
  19972. default: true
  19973. },
  19974. {
  19975. name: "Macro",
  19976. height: math.unit(500, "feet")
  19977. },
  19978. {
  19979. name: "Megamacro",
  19980. height: math.unit(1000, "miles")
  19981. },
  19982. ]
  19983. ))
  19984. characterMakers.push(() => makeCharacter(
  19985. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19986. {
  19987. front: {
  19988. height: math.unit(6, "feet"),
  19989. weight: math.unit(150, "lb"),
  19990. name: "Front",
  19991. image: {
  19992. source: "./media/characters/tendirmuldr/front.svg",
  19993. extra: 1878 / 1772,
  19994. bottom: 0.015
  19995. }
  19996. },
  19997. },
  19998. [
  19999. {
  20000. name: "Megamacro",
  20001. height: math.unit(1500, "miles"),
  20002. default: true
  20003. },
  20004. ]
  20005. ))
  20006. characterMakers.push(() => makeCharacter(
  20007. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20008. {
  20009. front: {
  20010. height: math.unit(14, "feet"),
  20011. weight: math.unit(12000, "lb"),
  20012. name: "Front",
  20013. image: {
  20014. source: "./media/characters/mort/front.svg",
  20015. extra: 365 / 318,
  20016. bottom: 0.01
  20017. }
  20018. },
  20019. side: {
  20020. height: math.unit(14, "feet"),
  20021. weight: math.unit(12000, "lb"),
  20022. name: "Side",
  20023. image: {
  20024. source: "./media/characters/mort/side.svg",
  20025. extra: 365 / 318,
  20026. bottom: 0.052
  20027. },
  20028. default: true
  20029. },
  20030. back: {
  20031. height: math.unit(14, "feet"),
  20032. weight: math.unit(12000, "lb"),
  20033. name: "Back",
  20034. image: {
  20035. source: "./media/characters/mort/back.svg",
  20036. extra: 371 / 332,
  20037. bottom: 0.18
  20038. }
  20039. },
  20040. },
  20041. [
  20042. {
  20043. name: "Normal",
  20044. height: math.unit(14, "feet"),
  20045. default: true
  20046. },
  20047. ]
  20048. ))
  20049. characterMakers.push(() => makeCharacter(
  20050. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20051. {
  20052. front: {
  20053. height: math.unit(8, "feet"),
  20054. weight: math.unit(1, "ton"),
  20055. name: "Front",
  20056. image: {
  20057. source: "./media/characters/lycoa/front.svg",
  20058. extra: 1875 / 1789,
  20059. bottom: 0.022
  20060. }
  20061. },
  20062. back: {
  20063. height: math.unit(8, "feet"),
  20064. weight: math.unit(1, "ton"),
  20065. name: "Back",
  20066. image: {
  20067. source: "./media/characters/lycoa/back.svg",
  20068. extra: 1835 / 1781,
  20069. bottom: 0.03
  20070. }
  20071. },
  20072. head: {
  20073. height: math.unit(2.1, "feet"),
  20074. name: "Head",
  20075. image: {
  20076. source: "./media/characters/lycoa/head.svg"
  20077. }
  20078. },
  20079. tailmaw: {
  20080. height: math.unit(1.9, "feet"),
  20081. name: "Tailmaw",
  20082. image: {
  20083. source: "./media/characters/lycoa/tailmaw.svg"
  20084. }
  20085. },
  20086. tentacles: {
  20087. height: math.unit(2.1, "feet"),
  20088. name: "Tentacles",
  20089. image: {
  20090. source: "./media/characters/lycoa/tentacles.svg"
  20091. }
  20092. },
  20093. dick: {
  20094. height: math.unit(1.73, "feet"),
  20095. name: "Dick",
  20096. image: {
  20097. source: "./media/characters/lycoa/dick.svg"
  20098. }
  20099. },
  20100. },
  20101. [
  20102. {
  20103. name: "Normal",
  20104. height: math.unit(8, "feet"),
  20105. default: true
  20106. },
  20107. {
  20108. name: "Macro",
  20109. height: math.unit(30, "feet")
  20110. },
  20111. ]
  20112. ))
  20113. characterMakers.push(() => makeCharacter(
  20114. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20115. {
  20116. front: {
  20117. height: math.unit(4 + 2 / 12, "feet"),
  20118. weight: math.unit(70, "lb"),
  20119. name: "Front",
  20120. image: {
  20121. source: "./media/characters/naldara/front.svg",
  20122. extra: 841 / 720,
  20123. bottom: 0.04
  20124. }
  20125. },
  20126. naga: {
  20127. height: math.unit(23, "feet"),
  20128. weight: math.unit(15000, "kg"),
  20129. name: "Naga",
  20130. image: {
  20131. source: "./media/characters/naldara/naga.svg",
  20132. extra: 3290 / 2959,
  20133. bottom: 124 / 3432
  20134. }
  20135. },
  20136. },
  20137. [
  20138. {
  20139. name: "Normal",
  20140. height: math.unit(4 + 2 / 12, "feet"),
  20141. default: true
  20142. },
  20143. ]
  20144. ))
  20145. characterMakers.push(() => makeCharacter(
  20146. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20147. {
  20148. front: {
  20149. height: math.unit(13 + 7 / 12, "feet"),
  20150. weight: math.unit(1500, "lb"),
  20151. name: "Front",
  20152. image: {
  20153. source: "./media/characters/briar/front.svg",
  20154. extra: 626 / 596,
  20155. bottom: 0.08
  20156. }
  20157. },
  20158. },
  20159. [
  20160. {
  20161. name: "Normal",
  20162. height: math.unit(13 + 7 / 12, "feet"),
  20163. default: true
  20164. },
  20165. ]
  20166. ))
  20167. characterMakers.push(() => makeCharacter(
  20168. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20169. {
  20170. side: {
  20171. height: math.unit(10, "feet"),
  20172. weight: math.unit(500, "lb"),
  20173. name: "Side",
  20174. image: {
  20175. source: "./media/characters/vanguard/side.svg",
  20176. extra: 502 / 425,
  20177. bottom: 0.087
  20178. }
  20179. },
  20180. },
  20181. [
  20182. {
  20183. name: "Normal",
  20184. height: math.unit(10, "feet"),
  20185. default: true
  20186. },
  20187. ]
  20188. ))
  20189. characterMakers.push(() => makeCharacter(
  20190. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20191. {
  20192. front: {
  20193. height: math.unit(7.5, "feet"),
  20194. weight: math.unit(2, "lb"),
  20195. name: "Front",
  20196. image: {
  20197. source: "./media/characters/artemis/front.svg",
  20198. extra: 1192 / 1075,
  20199. bottom: 0.07
  20200. }
  20201. },
  20202. frontNsfw: {
  20203. height: math.unit(7.5, "feet"),
  20204. weight: math.unit(2, "lb"),
  20205. name: "Front (NSFW)",
  20206. image: {
  20207. source: "./media/characters/artemis/front-nsfw.svg",
  20208. extra: 1192 / 1075,
  20209. bottom: 0.07
  20210. }
  20211. },
  20212. frontNsfwer: {
  20213. height: math.unit(7.5, "feet"),
  20214. weight: math.unit(2, "lb"),
  20215. name: "Front (NSFW-er)",
  20216. image: {
  20217. source: "./media/characters/artemis/front-nsfwer.svg",
  20218. extra: 1192 / 1075,
  20219. bottom: 0.07
  20220. }
  20221. },
  20222. side: {
  20223. height: math.unit(7.5, "feet"),
  20224. weight: math.unit(2, "lb"),
  20225. name: "Side",
  20226. image: {
  20227. source: "./media/characters/artemis/side.svg",
  20228. extra: 1192 / 1075,
  20229. bottom: 0.07
  20230. }
  20231. },
  20232. sideNsfw: {
  20233. height: math.unit(7.5, "feet"),
  20234. weight: math.unit(2, "lb"),
  20235. name: "Side (NSFW)",
  20236. image: {
  20237. source: "./media/characters/artemis/side-nsfw.svg",
  20238. extra: 1192 / 1075,
  20239. bottom: 0.07
  20240. }
  20241. },
  20242. sideNsfwer: {
  20243. height: math.unit(7.5, "feet"),
  20244. weight: math.unit(2, "lb"),
  20245. name: "Side (NSFW-er)",
  20246. image: {
  20247. source: "./media/characters/artemis/side-nsfwer.svg",
  20248. extra: 1192 / 1075,
  20249. bottom: 0.07
  20250. }
  20251. },
  20252. maw: {
  20253. height: math.unit(1.1, "feet"),
  20254. name: "Maw",
  20255. image: {
  20256. source: "./media/characters/artemis/maw.svg"
  20257. }
  20258. },
  20259. stomach: {
  20260. height: math.unit(0.95, "feet"),
  20261. name: "Stomach",
  20262. image: {
  20263. source: "./media/characters/artemis/stomach.svg"
  20264. }
  20265. },
  20266. dickCanine: {
  20267. height: math.unit(1, "feet"),
  20268. name: "Dick (Canine)",
  20269. image: {
  20270. source: "./media/characters/artemis/dick-canine.svg"
  20271. }
  20272. },
  20273. dickEquine: {
  20274. height: math.unit(0.85, "feet"),
  20275. name: "Dick (Equine)",
  20276. image: {
  20277. source: "./media/characters/artemis/dick-equine.svg"
  20278. }
  20279. },
  20280. dickExotic: {
  20281. height: math.unit(0.85, "feet"),
  20282. name: "Dick (Exotic)",
  20283. image: {
  20284. source: "./media/characters/artemis/dick-exotic.svg"
  20285. }
  20286. },
  20287. },
  20288. [
  20289. {
  20290. name: "Normal",
  20291. height: math.unit(7.5, "feet"),
  20292. default: true
  20293. },
  20294. {
  20295. name: "Enlarged",
  20296. height: math.unit(12, "feet")
  20297. },
  20298. ]
  20299. ))
  20300. characterMakers.push(() => makeCharacter(
  20301. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20302. {
  20303. front: {
  20304. height: math.unit(5 + 3 / 12, "feet"),
  20305. weight: math.unit(160, "lb"),
  20306. name: "Front",
  20307. image: {
  20308. source: "./media/characters/kira/front.svg",
  20309. extra: 906 / 786,
  20310. bottom: 0.01
  20311. }
  20312. },
  20313. back: {
  20314. height: math.unit(5 + 3 / 12, "feet"),
  20315. weight: math.unit(160, "lb"),
  20316. name: "Back",
  20317. image: {
  20318. source: "./media/characters/kira/back.svg",
  20319. extra: 882 / 757,
  20320. bottom: 0.005
  20321. }
  20322. },
  20323. frontDressed: {
  20324. height: math.unit(5 + 3 / 12, "feet"),
  20325. weight: math.unit(160, "lb"),
  20326. name: "Front (Dressed)",
  20327. image: {
  20328. source: "./media/characters/kira/front-dressed.svg",
  20329. extra: 906 / 786,
  20330. bottom: 0.01
  20331. }
  20332. },
  20333. beans: {
  20334. height: math.unit(0.92, "feet"),
  20335. name: "Beans",
  20336. image: {
  20337. source: "./media/characters/kira/beans.svg"
  20338. }
  20339. },
  20340. },
  20341. [
  20342. {
  20343. name: "Normal",
  20344. height: math.unit(5 + 3 / 12, "feet"),
  20345. default: true
  20346. },
  20347. ]
  20348. ))
  20349. characterMakers.push(() => makeCharacter(
  20350. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20351. {
  20352. front: {
  20353. height: math.unit(5 + 4 / 12, "feet"),
  20354. weight: math.unit(145, "lb"),
  20355. name: "Front",
  20356. image: {
  20357. source: "./media/characters/scramble/front.svg",
  20358. extra: 763 / 727,
  20359. bottom: 0.05
  20360. }
  20361. },
  20362. back: {
  20363. height: math.unit(5 + 4 / 12, "feet"),
  20364. weight: math.unit(145, "lb"),
  20365. name: "Back",
  20366. image: {
  20367. source: "./media/characters/scramble/back.svg",
  20368. extra: 826 / 737,
  20369. bottom: 0.002
  20370. }
  20371. },
  20372. },
  20373. [
  20374. {
  20375. name: "Normal",
  20376. height: math.unit(5 + 4 / 12, "feet"),
  20377. default: true
  20378. },
  20379. ]
  20380. ))
  20381. characterMakers.push(() => makeCharacter(
  20382. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20383. {
  20384. side: {
  20385. height: math.unit(6 + 2 / 12, "feet"),
  20386. weight: math.unit(190, "lb"),
  20387. name: "Side",
  20388. image: {
  20389. source: "./media/characters/biscuit/side.svg",
  20390. extra: 858 / 791,
  20391. bottom: 0.044
  20392. }
  20393. },
  20394. },
  20395. [
  20396. {
  20397. name: "Normal",
  20398. height: math.unit(6 + 2 / 12, "feet"),
  20399. default: true
  20400. },
  20401. ]
  20402. ))
  20403. characterMakers.push(() => makeCharacter(
  20404. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20405. {
  20406. front: {
  20407. height: math.unit(5 + 2 / 12, "feet"),
  20408. weight: math.unit(120, "lb"),
  20409. name: "Front",
  20410. image: {
  20411. source: "./media/characters/poffin/front.svg",
  20412. extra: 786 / 680,
  20413. bottom: 0.005
  20414. }
  20415. },
  20416. },
  20417. [
  20418. {
  20419. name: "Normal",
  20420. height: math.unit(5 + 2 / 12, "feet"),
  20421. default: true
  20422. },
  20423. ]
  20424. ))
  20425. characterMakers.push(() => makeCharacter(
  20426. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20427. {
  20428. front: {
  20429. height: math.unit(6 + 3 / 12, "feet"),
  20430. weight: math.unit(519, "lb"),
  20431. name: "Front",
  20432. image: {
  20433. source: "./media/characters/dhari/front.svg",
  20434. extra: 1048 / 946,
  20435. bottom: 0.015
  20436. }
  20437. },
  20438. back: {
  20439. height: math.unit(6 + 3 / 12, "feet"),
  20440. weight: math.unit(519, "lb"),
  20441. name: "Back",
  20442. image: {
  20443. source: "./media/characters/dhari/back.svg",
  20444. extra: 1048 / 931,
  20445. bottom: 0.005
  20446. }
  20447. },
  20448. frontDressed: {
  20449. height: math.unit(6 + 3 / 12, "feet"),
  20450. weight: math.unit(519, "lb"),
  20451. name: "Front (Dressed)",
  20452. image: {
  20453. source: "./media/characters/dhari/front-dressed.svg",
  20454. extra: 1713 / 1546,
  20455. bottom: 0.02
  20456. }
  20457. },
  20458. backDressed: {
  20459. height: math.unit(6 + 3 / 12, "feet"),
  20460. weight: math.unit(519, "lb"),
  20461. name: "Back (Dressed)",
  20462. image: {
  20463. source: "./media/characters/dhari/back-dressed.svg",
  20464. extra: 1699 / 1537,
  20465. bottom: 0.01
  20466. }
  20467. },
  20468. maw: {
  20469. height: math.unit(0.95, "feet"),
  20470. name: "Maw",
  20471. image: {
  20472. source: "./media/characters/dhari/maw.svg"
  20473. }
  20474. },
  20475. wereFront: {
  20476. height: math.unit(12 + 8 / 12, "feet"),
  20477. weight: math.unit(4000, "lb"),
  20478. name: "Front (Were)",
  20479. image: {
  20480. source: "./media/characters/dhari/were-front.svg",
  20481. extra: 1065 / 969,
  20482. bottom: 0.015
  20483. }
  20484. },
  20485. wereBack: {
  20486. height: math.unit(12 + 8 / 12, "feet"),
  20487. weight: math.unit(4000, "lb"),
  20488. name: "Back (Were)",
  20489. image: {
  20490. source: "./media/characters/dhari/were-back.svg",
  20491. extra: 1065 / 969,
  20492. bottom: 0.012
  20493. }
  20494. },
  20495. wereMaw: {
  20496. height: math.unit(0.625, "meters"),
  20497. name: "Maw (Were)",
  20498. image: {
  20499. source: "./media/characters/dhari/were-maw.svg"
  20500. }
  20501. },
  20502. },
  20503. [
  20504. {
  20505. name: "Normal",
  20506. height: math.unit(6 + 3 / 12, "feet"),
  20507. default: true
  20508. },
  20509. ]
  20510. ))
  20511. characterMakers.push(() => makeCharacter(
  20512. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20513. {
  20514. anthro: {
  20515. height: math.unit(5 + 7 / 12, "feet"),
  20516. weight: math.unit(175, "lb"),
  20517. name: "Anthro",
  20518. image: {
  20519. source: "./media/characters/rena-dyne/anthro.svg",
  20520. extra: 1849 / 1785,
  20521. bottom: 0.005
  20522. }
  20523. },
  20524. taur: {
  20525. height: math.unit(15 + 6 / 12, "feet"),
  20526. weight: math.unit(8000, "lb"),
  20527. name: "Taur",
  20528. image: {
  20529. source: "./media/characters/rena-dyne/taur.svg",
  20530. extra: 2315 / 2234,
  20531. bottom: 0.033
  20532. }
  20533. },
  20534. },
  20535. [
  20536. {
  20537. name: "Normal",
  20538. height: math.unit(5 + 7 / 12, "feet"),
  20539. default: true
  20540. },
  20541. ]
  20542. ))
  20543. characterMakers.push(() => makeCharacter(
  20544. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20545. {
  20546. front: {
  20547. height: math.unit(8, "feet"),
  20548. weight: math.unit(600, "lb"),
  20549. name: "Front",
  20550. image: {
  20551. source: "./media/characters/weremeep/front.svg",
  20552. extra: 967 / 862,
  20553. bottom: 0.01
  20554. }
  20555. },
  20556. },
  20557. [
  20558. {
  20559. name: "Normal",
  20560. height: math.unit(8, "feet"),
  20561. default: true
  20562. },
  20563. {
  20564. name: "Lorg",
  20565. height: math.unit(12, "feet")
  20566. },
  20567. {
  20568. name: "Oh Lawd She Comin'",
  20569. height: math.unit(20, "feet")
  20570. },
  20571. ]
  20572. ))
  20573. characterMakers.push(() => makeCharacter(
  20574. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20575. {
  20576. front: {
  20577. height: math.unit(4, "feet"),
  20578. weight: math.unit(90, "lb"),
  20579. name: "Front",
  20580. image: {
  20581. source: "./media/characters/reza/front.svg",
  20582. extra: 1183 / 1111,
  20583. bottom: 0.017
  20584. }
  20585. },
  20586. back: {
  20587. height: math.unit(4, "feet"),
  20588. weight: math.unit(90, "lb"),
  20589. name: "Back",
  20590. image: {
  20591. source: "./media/characters/reza/back.svg",
  20592. extra: 1183 / 1111,
  20593. bottom: 0.01
  20594. }
  20595. },
  20596. drake: {
  20597. height: math.unit(30, "feet"),
  20598. weight: math.unit(246960, "lb"),
  20599. name: "Drake",
  20600. image: {
  20601. source: "./media/characters/reza/drake.svg",
  20602. extra: 2350 / 2024,
  20603. bottom: 60.7 / 2403
  20604. }
  20605. },
  20606. },
  20607. [
  20608. {
  20609. name: "Normal",
  20610. height: math.unit(4, "feet"),
  20611. default: true
  20612. },
  20613. ]
  20614. ))
  20615. characterMakers.push(() => makeCharacter(
  20616. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20617. {
  20618. side: {
  20619. height: math.unit(15, "feet"),
  20620. weight: math.unit(14, "tons"),
  20621. name: "Side",
  20622. image: {
  20623. source: "./media/characters/athea/side.svg",
  20624. extra: 960 / 540,
  20625. bottom: 0.003
  20626. }
  20627. },
  20628. sitting: {
  20629. height: math.unit(6 * 2.85, "feet"),
  20630. weight: math.unit(14, "tons"),
  20631. name: "Sitting",
  20632. image: {
  20633. source: "./media/characters/athea/sitting.svg",
  20634. extra: 621 / 581,
  20635. bottom: 0.075
  20636. }
  20637. },
  20638. maw: {
  20639. height: math.unit(7.59498031496063, "feet"),
  20640. name: "Maw",
  20641. image: {
  20642. source: "./media/characters/athea/maw.svg"
  20643. }
  20644. },
  20645. },
  20646. [
  20647. {
  20648. name: "Lap Cat",
  20649. height: math.unit(2.5, "feet")
  20650. },
  20651. {
  20652. name: "Minimacro",
  20653. height: math.unit(15, "feet"),
  20654. default: true
  20655. },
  20656. {
  20657. name: "Macro",
  20658. height: math.unit(120, "feet")
  20659. },
  20660. {
  20661. name: "Macro+",
  20662. height: math.unit(640, "feet")
  20663. },
  20664. {
  20665. name: "Colossus",
  20666. height: math.unit(2.2, "miles")
  20667. },
  20668. ]
  20669. ))
  20670. characterMakers.push(() => makeCharacter(
  20671. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20672. {
  20673. front: {
  20674. height: math.unit(8 + 8 / 12, "feet"),
  20675. weight: math.unit(130, "kg"),
  20676. name: "Front",
  20677. image: {
  20678. source: "./media/characters/seroko/front.svg",
  20679. extra: 1385 / 1280,
  20680. bottom: 0.025
  20681. }
  20682. },
  20683. back: {
  20684. height: math.unit(8 + 8 / 12, "feet"),
  20685. weight: math.unit(130, "kg"),
  20686. name: "Back",
  20687. image: {
  20688. source: "./media/characters/seroko/back.svg",
  20689. extra: 1369 / 1238,
  20690. bottom: 0.018
  20691. }
  20692. },
  20693. frontDressed: {
  20694. height: math.unit(8 + 8 / 12, "feet"),
  20695. weight: math.unit(130, "kg"),
  20696. name: "Front (Dressed)",
  20697. image: {
  20698. source: "./media/characters/seroko/front-dressed.svg",
  20699. extra: 1366 / 1275,
  20700. bottom: 0.03
  20701. }
  20702. },
  20703. },
  20704. [
  20705. {
  20706. name: "Normal",
  20707. height: math.unit(8 + 8 / 12, "feet"),
  20708. default: true
  20709. },
  20710. ]
  20711. ))
  20712. characterMakers.push(() => makeCharacter(
  20713. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20714. {
  20715. front: {
  20716. height: math.unit(5.5, "feet"),
  20717. weight: math.unit(160, "lb"),
  20718. name: "Front",
  20719. image: {
  20720. source: "./media/characters/quatzi/front.svg",
  20721. extra: 2346 / 2242,
  20722. bottom: 0.015
  20723. }
  20724. },
  20725. },
  20726. [
  20727. {
  20728. name: "Normal",
  20729. height: math.unit(5.5, "feet"),
  20730. default: true
  20731. },
  20732. {
  20733. name: "Big",
  20734. height: math.unit(7.7, "feet")
  20735. },
  20736. ]
  20737. ))
  20738. characterMakers.push(() => makeCharacter(
  20739. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20740. {
  20741. front: {
  20742. height: math.unit(5 + 11 / 12, "feet"),
  20743. weight: math.unit(180, "lb"),
  20744. name: "Front",
  20745. image: {
  20746. source: "./media/characters/sen/front.svg",
  20747. extra: 1321 / 1254,
  20748. bottom: 0.015
  20749. }
  20750. },
  20751. side: {
  20752. height: math.unit(5 + 11 / 12, "feet"),
  20753. weight: math.unit(180, "lb"),
  20754. name: "Side",
  20755. image: {
  20756. source: "./media/characters/sen/side.svg",
  20757. extra: 1321 / 1254,
  20758. bottom: 0.007
  20759. }
  20760. },
  20761. back: {
  20762. height: math.unit(5 + 11 / 12, "feet"),
  20763. weight: math.unit(180, "lb"),
  20764. name: "Back",
  20765. image: {
  20766. source: "./media/characters/sen/back.svg",
  20767. extra: 1321 / 1254
  20768. }
  20769. },
  20770. },
  20771. [
  20772. {
  20773. name: "Normal",
  20774. height: math.unit(5 + 11 / 12, "feet"),
  20775. default: true
  20776. },
  20777. ]
  20778. ))
  20779. characterMakers.push(() => makeCharacter(
  20780. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20781. {
  20782. front: {
  20783. height: math.unit(166.6, "cm"),
  20784. weight: math.unit(66.6, "kg"),
  20785. name: "Front",
  20786. image: {
  20787. source: "./media/characters/fruity/front.svg",
  20788. extra: 1510 / 1386,
  20789. bottom: 0.04
  20790. }
  20791. },
  20792. back: {
  20793. height: math.unit(166.6, "cm"),
  20794. weight: math.unit(66.6, "lb"),
  20795. name: "Back",
  20796. image: {
  20797. source: "./media/characters/fruity/back.svg",
  20798. extra: 1563 / 1435,
  20799. bottom: 0.005
  20800. }
  20801. },
  20802. },
  20803. [
  20804. {
  20805. name: "Normal",
  20806. height: math.unit(166.6, "cm"),
  20807. default: true
  20808. },
  20809. {
  20810. name: "Demonic",
  20811. height: math.unit(166.6, "feet")
  20812. },
  20813. ]
  20814. ))
  20815. characterMakers.push(() => makeCharacter(
  20816. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20817. {
  20818. side: {
  20819. height: math.unit(10, "feet"),
  20820. weight: math.unit(500, "lb"),
  20821. name: "Side",
  20822. image: {
  20823. source: "./media/characters/zost/side.svg",
  20824. extra: 966 / 880,
  20825. bottom: 0.075
  20826. }
  20827. },
  20828. mawFront: {
  20829. height: math.unit(1.08, "meters"),
  20830. name: "Maw (Front)",
  20831. image: {
  20832. source: "./media/characters/zost/maw-front.svg"
  20833. }
  20834. },
  20835. mawSide: {
  20836. height: math.unit(2.66, "feet"),
  20837. name: "Maw (Side)",
  20838. image: {
  20839. source: "./media/characters/zost/maw-side.svg"
  20840. }
  20841. },
  20842. },
  20843. [
  20844. {
  20845. name: "Normal",
  20846. height: math.unit(10, "feet"),
  20847. default: true
  20848. },
  20849. ]
  20850. ))
  20851. characterMakers.push(() => makeCharacter(
  20852. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20853. {
  20854. front: {
  20855. height: math.unit(5 + 4 / 12, "feet"),
  20856. weight: math.unit(120, "lb"),
  20857. name: "Front",
  20858. image: {
  20859. source: "./media/characters/luci/front.svg",
  20860. extra: 1985 / 1884,
  20861. bottom: 0.04
  20862. }
  20863. },
  20864. back: {
  20865. height: math.unit(5 + 4 / 12, "feet"),
  20866. weight: math.unit(120, "lb"),
  20867. name: "Back",
  20868. image: {
  20869. source: "./media/characters/luci/back.svg",
  20870. extra: 1892 / 1791,
  20871. bottom: 0.002
  20872. }
  20873. },
  20874. },
  20875. [
  20876. {
  20877. name: "Normal",
  20878. height: math.unit(5 + 4 / 12, "feet"),
  20879. default: true
  20880. },
  20881. ]
  20882. ))
  20883. characterMakers.push(() => makeCharacter(
  20884. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20885. {
  20886. front: {
  20887. height: math.unit(1500, "feet"),
  20888. weight: math.unit(3.8e6, "tons"),
  20889. name: "Front",
  20890. image: {
  20891. source: "./media/characters/2th/front.svg",
  20892. extra: 3489 / 3350,
  20893. bottom: 0.1
  20894. }
  20895. },
  20896. foot: {
  20897. height: math.unit(461, "feet"),
  20898. name: "Foot",
  20899. image: {
  20900. source: "./media/characters/2th/foot.svg"
  20901. }
  20902. },
  20903. },
  20904. [
  20905. {
  20906. name: "\"Micro\"",
  20907. height: math.unit(15 + 7 / 12, "feet")
  20908. },
  20909. {
  20910. name: "Normal",
  20911. height: math.unit(1500, "feet"),
  20912. default: true
  20913. },
  20914. {
  20915. name: "Macro",
  20916. height: math.unit(5000, "feet")
  20917. },
  20918. {
  20919. name: "Megamacro",
  20920. height: math.unit(15, "miles")
  20921. },
  20922. {
  20923. name: "Gigamacro",
  20924. height: math.unit(4000, "miles")
  20925. },
  20926. {
  20927. name: "Galactic",
  20928. height: math.unit(50, "AU")
  20929. },
  20930. ]
  20931. ))
  20932. characterMakers.push(() => makeCharacter(
  20933. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20934. {
  20935. front: {
  20936. height: math.unit(5 + 6 / 12, "feet"),
  20937. weight: math.unit(220, "lb"),
  20938. name: "Front",
  20939. image: {
  20940. source: "./media/characters/amethyst/front.svg",
  20941. extra: 2078 / 2040,
  20942. bottom: 0.045
  20943. }
  20944. },
  20945. back: {
  20946. height: math.unit(5 + 6 / 12, "feet"),
  20947. weight: math.unit(220, "lb"),
  20948. name: "Back",
  20949. image: {
  20950. source: "./media/characters/amethyst/back.svg",
  20951. extra: 2021 / 1989,
  20952. bottom: 0.02
  20953. }
  20954. },
  20955. },
  20956. [
  20957. {
  20958. name: "Normal",
  20959. height: math.unit(5 + 6 / 12, "feet"),
  20960. default: true
  20961. },
  20962. ]
  20963. ))
  20964. characterMakers.push(() => makeCharacter(
  20965. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20966. {
  20967. front: {
  20968. height: math.unit(4 + 11 / 12, "feet"),
  20969. weight: math.unit(120, "lb"),
  20970. name: "Front",
  20971. image: {
  20972. source: "./media/characters/yumi-akiyama/front.svg",
  20973. extra: 1327 / 1235,
  20974. bottom: 0.02
  20975. }
  20976. },
  20977. back: {
  20978. height: math.unit(4 + 11 / 12, "feet"),
  20979. weight: math.unit(120, "lb"),
  20980. name: "Back",
  20981. image: {
  20982. source: "./media/characters/yumi-akiyama/back.svg",
  20983. extra: 1287 / 1245,
  20984. bottom: 0.002
  20985. }
  20986. },
  20987. },
  20988. [
  20989. {
  20990. name: "Galactic",
  20991. height: math.unit(50, "galaxies"),
  20992. default: true
  20993. },
  20994. {
  20995. name: "Universal",
  20996. height: math.unit(100, "universes")
  20997. },
  20998. ]
  20999. ))
  21000. characterMakers.push(() => makeCharacter(
  21001. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21002. {
  21003. front: {
  21004. height: math.unit(8, "feet"),
  21005. weight: math.unit(500, "lb"),
  21006. name: "Front",
  21007. image: {
  21008. source: "./media/characters/rifter-yrmori/front.svg",
  21009. extra: 1180 / 1125,
  21010. bottom: 0.02
  21011. }
  21012. },
  21013. back: {
  21014. height: math.unit(8, "feet"),
  21015. weight: math.unit(500, "lb"),
  21016. name: "Back",
  21017. image: {
  21018. source: "./media/characters/rifter-yrmori/back.svg",
  21019. extra: 1190 / 1145,
  21020. bottom: 0.001
  21021. }
  21022. },
  21023. wings: {
  21024. height: math.unit(7.75, "feet"),
  21025. weight: math.unit(500, "lb"),
  21026. name: "Wings",
  21027. image: {
  21028. source: "./media/characters/rifter-yrmori/wings.svg",
  21029. extra: 1357 / 1285
  21030. }
  21031. },
  21032. maw: {
  21033. height: math.unit(0.8, "feet"),
  21034. name: "Maw",
  21035. image: {
  21036. source: "./media/characters/rifter-yrmori/maw.svg"
  21037. }
  21038. },
  21039. mawfront: {
  21040. height: math.unit(1.45, "feet"),
  21041. name: "Maw (Front)",
  21042. image: {
  21043. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21044. }
  21045. },
  21046. },
  21047. [
  21048. {
  21049. name: "Normal",
  21050. height: math.unit(8, "feet"),
  21051. default: true
  21052. },
  21053. {
  21054. name: "Macro",
  21055. height: math.unit(42, "meters")
  21056. },
  21057. ]
  21058. ))
  21059. characterMakers.push(() => makeCharacter(
  21060. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21061. {
  21062. were: {
  21063. height: math.unit(25 + 6 / 12, "feet"),
  21064. weight: math.unit(10000, "lb"),
  21065. name: "Were",
  21066. image: {
  21067. source: "./media/characters/tahajin/were.svg",
  21068. extra: 801 / 770,
  21069. bottom: 0.042
  21070. }
  21071. },
  21072. aquatic: {
  21073. height: math.unit(6 + 4 / 12, "feet"),
  21074. weight: math.unit(160, "lb"),
  21075. name: "Aquatic",
  21076. image: {
  21077. source: "./media/characters/tahajin/aquatic.svg",
  21078. extra: 572 / 542,
  21079. bottom: 0.04
  21080. }
  21081. },
  21082. chow: {
  21083. height: math.unit(8 + 11 / 12, "feet"),
  21084. weight: math.unit(450, "lb"),
  21085. name: "Chow",
  21086. image: {
  21087. source: "./media/characters/tahajin/chow.svg",
  21088. extra: 660 / 640,
  21089. bottom: 0.015
  21090. }
  21091. },
  21092. demiNaga: {
  21093. height: math.unit(6 + 8 / 12, "feet"),
  21094. weight: math.unit(300, "lb"),
  21095. name: "Demi Naga",
  21096. image: {
  21097. source: "./media/characters/tahajin/demi-naga.svg",
  21098. extra: 643 / 615,
  21099. bottom: 0.1
  21100. }
  21101. },
  21102. data: {
  21103. height: math.unit(5, "inches"),
  21104. weight: math.unit(0.1, "lb"),
  21105. name: "Data",
  21106. image: {
  21107. source: "./media/characters/tahajin/data.svg"
  21108. }
  21109. },
  21110. fluu: {
  21111. height: math.unit(5 + 7 / 12, "feet"),
  21112. weight: math.unit(140, "lb"),
  21113. name: "Fluu",
  21114. image: {
  21115. source: "./media/characters/tahajin/fluu.svg",
  21116. extra: 628 / 592,
  21117. bottom: 0.02
  21118. }
  21119. },
  21120. starWarrior: {
  21121. height: math.unit(4 + 5 / 12, "feet"),
  21122. weight: math.unit(50, "lb"),
  21123. name: "Star Warrior",
  21124. image: {
  21125. source: "./media/characters/tahajin/star-warrior.svg"
  21126. }
  21127. },
  21128. },
  21129. [
  21130. {
  21131. name: "Normal",
  21132. height: math.unit(25 + 6 / 12, "feet"),
  21133. default: true
  21134. },
  21135. ]
  21136. ))
  21137. characterMakers.push(() => makeCharacter(
  21138. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21139. {
  21140. front: {
  21141. height: math.unit(8, "feet"),
  21142. weight: math.unit(350, "lb"),
  21143. name: "Front",
  21144. image: {
  21145. source: "./media/characters/gabira/front.svg",
  21146. extra: 608 / 580,
  21147. bottom: 0.03
  21148. }
  21149. },
  21150. back: {
  21151. height: math.unit(8, "feet"),
  21152. weight: math.unit(350, "lb"),
  21153. name: "Back",
  21154. image: {
  21155. source: "./media/characters/gabira/back.svg",
  21156. extra: 608 / 580,
  21157. bottom: 0.03
  21158. }
  21159. },
  21160. },
  21161. [
  21162. {
  21163. name: "Normal",
  21164. height: math.unit(8, "feet"),
  21165. default: true
  21166. },
  21167. ]
  21168. ))
  21169. characterMakers.push(() => makeCharacter(
  21170. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21171. {
  21172. front: {
  21173. height: math.unit(5 + 3 / 12, "feet"),
  21174. weight: math.unit(137, "lb"),
  21175. name: "Front",
  21176. image: {
  21177. source: "./media/characters/sasha-katraine/front.svg",
  21178. bottom: 0.045
  21179. }
  21180. },
  21181. },
  21182. [
  21183. {
  21184. name: "Micro",
  21185. height: math.unit(5, "inches")
  21186. },
  21187. {
  21188. name: "Normal",
  21189. height: math.unit(5 + 3 / 12, "feet"),
  21190. default: true
  21191. },
  21192. ]
  21193. ))
  21194. characterMakers.push(() => makeCharacter(
  21195. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21196. {
  21197. side: {
  21198. height: math.unit(4, "inches"),
  21199. weight: math.unit(200, "grams"),
  21200. name: "Side",
  21201. image: {
  21202. source: "./media/characters/der/side.svg",
  21203. extra: 719 / 400,
  21204. bottom: 30.6 / 749.9187
  21205. }
  21206. },
  21207. },
  21208. [
  21209. {
  21210. name: "Micro",
  21211. height: math.unit(4, "inches"),
  21212. default: true
  21213. },
  21214. ]
  21215. ))
  21216. characterMakers.push(() => makeCharacter(
  21217. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21218. {
  21219. side: {
  21220. height: math.unit(30, "meters"),
  21221. weight: math.unit(700, "tonnes"),
  21222. name: "Side",
  21223. image: {
  21224. source: "./media/characters/fixerdragon/side.svg",
  21225. extra: (1293.0514 - 116.03) / 1106.86,
  21226. bottom: 116.03 / 1293.0514
  21227. }
  21228. },
  21229. },
  21230. [
  21231. {
  21232. name: "Planck",
  21233. height: math.unit(1.6e-35, "meters")
  21234. },
  21235. {
  21236. name: "Micro",
  21237. height: math.unit(0.4, "meters")
  21238. },
  21239. {
  21240. name: "Normal",
  21241. height: math.unit(30, "meters"),
  21242. default: true
  21243. },
  21244. {
  21245. name: "Megamacro",
  21246. height: math.unit(1.2, "megameters")
  21247. },
  21248. {
  21249. name: "Teramacro",
  21250. height: math.unit(130, "terameters")
  21251. },
  21252. {
  21253. name: "Yottamacro",
  21254. height: math.unit(6200, "yottameters")
  21255. },
  21256. ]
  21257. ));
  21258. characterMakers.push(() => makeCharacter(
  21259. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21260. {
  21261. front: {
  21262. height: math.unit(8, "feet"),
  21263. weight: math.unit(250, "lb"),
  21264. name: "Front",
  21265. image: {
  21266. source: "./media/characters/kite/front.svg",
  21267. extra: 2796 / 2659,
  21268. bottom: 0.002
  21269. }
  21270. },
  21271. },
  21272. [
  21273. {
  21274. name: "Normal",
  21275. height: math.unit(8, "feet"),
  21276. default: true
  21277. },
  21278. {
  21279. name: "Macro",
  21280. height: math.unit(360, "feet")
  21281. },
  21282. {
  21283. name: "Megamacro",
  21284. height: math.unit(1500, "feet")
  21285. },
  21286. ]
  21287. ))
  21288. characterMakers.push(() => makeCharacter(
  21289. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21290. {
  21291. front: {
  21292. height: math.unit(5 + 10 / 12, "feet"),
  21293. weight: math.unit(150, "lb"),
  21294. name: "Front",
  21295. image: {
  21296. source: "./media/characters/poojawa-vynar/front.svg",
  21297. extra: (1506.1547 - 55) / 1356.6,
  21298. bottom: 55 / 1506.1547
  21299. }
  21300. },
  21301. frontTailless: {
  21302. height: math.unit(5 + 10 / 12, "feet"),
  21303. weight: math.unit(150, "lb"),
  21304. name: "Front (Tailless)",
  21305. image: {
  21306. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21307. extra: (1506.1547 - 55) / 1356.6,
  21308. bottom: 55 / 1506.1547
  21309. }
  21310. },
  21311. },
  21312. [
  21313. {
  21314. name: "Normal",
  21315. height: math.unit(5 + 10 / 12, "feet"),
  21316. default: true
  21317. },
  21318. ]
  21319. ))
  21320. characterMakers.push(() => makeCharacter(
  21321. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21322. {
  21323. front: {
  21324. height: math.unit(293, "meters"),
  21325. weight: math.unit(70400, "tons"),
  21326. name: "Front",
  21327. image: {
  21328. source: "./media/characters/violette/front.svg",
  21329. extra: 1227 / 1180,
  21330. bottom: 0.005
  21331. }
  21332. },
  21333. back: {
  21334. height: math.unit(293, "meters"),
  21335. weight: math.unit(70400, "tons"),
  21336. name: "Back",
  21337. image: {
  21338. source: "./media/characters/violette/back.svg",
  21339. extra: 1227 / 1180,
  21340. bottom: 0.005
  21341. }
  21342. },
  21343. },
  21344. [
  21345. {
  21346. name: "Macro",
  21347. height: math.unit(293, "meters"),
  21348. default: true
  21349. },
  21350. ]
  21351. ))
  21352. characterMakers.push(() => makeCharacter(
  21353. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21354. {
  21355. front: {
  21356. height: math.unit(1050, "feet"),
  21357. weight: math.unit(200000, "tons"),
  21358. name: "Front",
  21359. image: {
  21360. source: "./media/characters/alessandra/front.svg",
  21361. extra: 960 / 912,
  21362. bottom: 0.06
  21363. }
  21364. },
  21365. },
  21366. [
  21367. {
  21368. name: "Macro",
  21369. height: math.unit(1050, "feet")
  21370. },
  21371. {
  21372. name: "Macro+",
  21373. height: math.unit(900, "meters"),
  21374. default: true
  21375. },
  21376. ]
  21377. ))
  21378. characterMakers.push(() => makeCharacter(
  21379. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21380. {
  21381. front: {
  21382. height: math.unit(5, "feet"),
  21383. weight: math.unit(187, "lb"),
  21384. name: "Front",
  21385. image: {
  21386. source: "./media/characters/person/front.svg",
  21387. extra: 3087 / 2945,
  21388. bottom: 91 / 3181
  21389. }
  21390. },
  21391. },
  21392. [
  21393. {
  21394. name: "Micro",
  21395. height: math.unit(3, "inches")
  21396. },
  21397. {
  21398. name: "Normal",
  21399. height: math.unit(5, "feet"),
  21400. default: true
  21401. },
  21402. {
  21403. name: "Macro",
  21404. height: math.unit(90, "feet")
  21405. },
  21406. {
  21407. name: "Max Size",
  21408. height: math.unit(280, "feet")
  21409. },
  21410. ]
  21411. ))
  21412. characterMakers.push(() => makeCharacter(
  21413. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21414. {
  21415. front: {
  21416. height: math.unit(4.5, "meters"),
  21417. weight: math.unit(3200, "lb"),
  21418. name: "Front",
  21419. image: {
  21420. source: "./media/characters/ty/front.svg",
  21421. extra: 1038 / 960,
  21422. bottom: 31.156 / 1068
  21423. }
  21424. },
  21425. back: {
  21426. height: math.unit(4.5, "meters"),
  21427. weight: math.unit(3200, "lb"),
  21428. name: "Back",
  21429. image: {
  21430. source: "./media/characters/ty/back.svg",
  21431. extra: 1044 / 966,
  21432. bottom: 7.48 / 1049
  21433. }
  21434. },
  21435. },
  21436. [
  21437. {
  21438. name: "Normal",
  21439. height: math.unit(4.5, "meters"),
  21440. default: true
  21441. },
  21442. ]
  21443. ))
  21444. characterMakers.push(() => makeCharacter(
  21445. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21446. {
  21447. front: {
  21448. height: math.unit(5 + 4 / 12, "feet"),
  21449. weight: math.unit(115, "lb"),
  21450. name: "Front",
  21451. image: {
  21452. source: "./media/characters/rocky/front.svg",
  21453. extra: 1012 / 975,
  21454. bottom: 54 / 1066
  21455. }
  21456. },
  21457. },
  21458. [
  21459. {
  21460. name: "Normal",
  21461. height: math.unit(5 + 4 / 12, "feet"),
  21462. default: true
  21463. },
  21464. ]
  21465. ))
  21466. characterMakers.push(() => makeCharacter(
  21467. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21468. {
  21469. upright: {
  21470. height: math.unit(6, "meters"),
  21471. weight: math.unit(4000, "kg"),
  21472. name: "Upright",
  21473. image: {
  21474. source: "./media/characters/ruin/upright.svg",
  21475. extra: 668 / 661,
  21476. bottom: 42 / 799.8396
  21477. }
  21478. },
  21479. },
  21480. [
  21481. {
  21482. name: "Normal",
  21483. height: math.unit(6, "meters"),
  21484. default: true
  21485. },
  21486. ]
  21487. ))
  21488. characterMakers.push(() => makeCharacter(
  21489. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21490. {
  21491. front: {
  21492. height: math.unit(5, "feet"),
  21493. weight: math.unit(106, "lb"),
  21494. name: "Front",
  21495. image: {
  21496. source: "./media/characters/robin/front.svg",
  21497. extra: 862 / 799,
  21498. bottom: 42.4 / 914.8856
  21499. }
  21500. },
  21501. },
  21502. [
  21503. {
  21504. name: "Normal",
  21505. height: math.unit(5, "feet"),
  21506. default: true
  21507. },
  21508. ]
  21509. ))
  21510. characterMakers.push(() => makeCharacter(
  21511. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21512. {
  21513. side: {
  21514. height: math.unit(3, "feet"),
  21515. weight: math.unit(225, "lb"),
  21516. name: "Side",
  21517. image: {
  21518. source: "./media/characters/saian/side.svg",
  21519. extra: 566 / 356,
  21520. bottom: 79.7 / 643
  21521. }
  21522. },
  21523. maw: {
  21524. height: math.unit(2.85, "feet"),
  21525. name: "Maw",
  21526. image: {
  21527. source: "./media/characters/saian/maw.svg"
  21528. }
  21529. },
  21530. },
  21531. [
  21532. {
  21533. name: "Normal",
  21534. height: math.unit(3, "feet"),
  21535. default: true
  21536. },
  21537. ]
  21538. ))
  21539. characterMakers.push(() => makeCharacter(
  21540. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21541. {
  21542. side: {
  21543. height: math.unit(8, "feet"),
  21544. weight: math.unit(300, "lb"),
  21545. name: "Side",
  21546. image: {
  21547. source: "./media/characters/equus-silvermane/side.svg",
  21548. extra: 2176 / 2050,
  21549. bottom: 65.7 / 2245
  21550. }
  21551. },
  21552. front: {
  21553. height: math.unit(8, "feet"),
  21554. weight: math.unit(300, "lb"),
  21555. name: "Front",
  21556. image: {
  21557. source: "./media/characters/equus-silvermane/front.svg",
  21558. extra: 4633 / 4400,
  21559. bottom: 71.3 / 4706.915
  21560. }
  21561. },
  21562. sideStepping: {
  21563. height: math.unit(8, "feet"),
  21564. weight: math.unit(300, "lb"),
  21565. name: "Side (Stepping)",
  21566. image: {
  21567. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21568. extra: 1968 / 1860,
  21569. bottom: 16.4 / 1989
  21570. }
  21571. },
  21572. },
  21573. [
  21574. {
  21575. name: "Normal",
  21576. height: math.unit(8, "feet")
  21577. },
  21578. {
  21579. name: "Minimacro",
  21580. height: math.unit(75, "feet"),
  21581. default: true
  21582. },
  21583. {
  21584. name: "Macro",
  21585. height: math.unit(150, "feet")
  21586. },
  21587. {
  21588. name: "Macro+",
  21589. height: math.unit(1000, "feet")
  21590. },
  21591. {
  21592. name: "Megamacro",
  21593. height: math.unit(1, "mile")
  21594. },
  21595. ]
  21596. ))
  21597. characterMakers.push(() => makeCharacter(
  21598. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21599. {
  21600. side: {
  21601. height: math.unit(20, "feet"),
  21602. weight: math.unit(30000, "kg"),
  21603. name: "Side",
  21604. image: {
  21605. source: "./media/characters/windar/side.svg",
  21606. extra: 1491 / 1248,
  21607. bottom: 82.56 / 1568
  21608. }
  21609. },
  21610. },
  21611. [
  21612. {
  21613. name: "Normal",
  21614. height: math.unit(20, "feet"),
  21615. default: true
  21616. },
  21617. ]
  21618. ))
  21619. characterMakers.push(() => makeCharacter(
  21620. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21621. {
  21622. side: {
  21623. height: math.unit(15.66, "feet"),
  21624. weight: math.unit(150, "lb"),
  21625. name: "Side",
  21626. image: {
  21627. source: "./media/characters/melody/side.svg",
  21628. extra: 1097 / 944,
  21629. bottom: 11.8 / 1109
  21630. }
  21631. },
  21632. sideOutfit: {
  21633. height: math.unit(15.66, "feet"),
  21634. weight: math.unit(150, "lb"),
  21635. name: "Side (Outfit)",
  21636. image: {
  21637. source: "./media/characters/melody/side-outfit.svg",
  21638. extra: 1097 / 944,
  21639. bottom: 11.8 / 1109
  21640. }
  21641. },
  21642. },
  21643. [
  21644. {
  21645. name: "Normal",
  21646. height: math.unit(15.66, "feet"),
  21647. default: true
  21648. },
  21649. ]
  21650. ))
  21651. characterMakers.push(() => makeCharacter(
  21652. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21653. {
  21654. front: {
  21655. height: math.unit(8, "feet"),
  21656. weight: math.unit(325, "lb"),
  21657. name: "Front",
  21658. image: {
  21659. source: "./media/characters/windera/front.svg",
  21660. extra: 3180 / 2845,
  21661. bottom: 178 / 3365
  21662. }
  21663. },
  21664. },
  21665. [
  21666. {
  21667. name: "Normal",
  21668. height: math.unit(8, "feet"),
  21669. default: true
  21670. },
  21671. ]
  21672. ))
  21673. characterMakers.push(() => makeCharacter(
  21674. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21675. {
  21676. front: {
  21677. height: math.unit(28.75, "feet"),
  21678. weight: math.unit(2000, "kg"),
  21679. name: "Front",
  21680. image: {
  21681. source: "./media/characters/sonear/front.svg",
  21682. extra: 1041.1 / 964.9,
  21683. bottom: 53.7 / 1096.6
  21684. }
  21685. },
  21686. },
  21687. [
  21688. {
  21689. name: "Normal",
  21690. height: math.unit(28.75, "feet"),
  21691. default: true
  21692. },
  21693. ]
  21694. ))
  21695. characterMakers.push(() => makeCharacter(
  21696. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21697. {
  21698. side: {
  21699. height: math.unit(25.5, "feet"),
  21700. weight: math.unit(23000, "kg"),
  21701. name: "Side",
  21702. image: {
  21703. source: "./media/characters/kanara/side.svg"
  21704. }
  21705. },
  21706. },
  21707. [
  21708. {
  21709. name: "Normal",
  21710. height: math.unit(25.5, "feet"),
  21711. default: true
  21712. },
  21713. ]
  21714. ))
  21715. characterMakers.push(() => makeCharacter(
  21716. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21717. {
  21718. side: {
  21719. height: math.unit(10, "feet"),
  21720. weight: math.unit(1000, "kg"),
  21721. name: "Side",
  21722. image: {
  21723. source: "./media/characters/ereus/side.svg",
  21724. extra: 1157 / 959,
  21725. bottom: 153 / 1312.5
  21726. }
  21727. },
  21728. },
  21729. [
  21730. {
  21731. name: "Normal",
  21732. height: math.unit(10, "feet"),
  21733. default: true
  21734. },
  21735. ]
  21736. ))
  21737. characterMakers.push(() => makeCharacter(
  21738. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21739. {
  21740. side: {
  21741. height: math.unit(4.5, "feet"),
  21742. weight: math.unit(500, "lb"),
  21743. name: "Side",
  21744. image: {
  21745. source: "./media/characters/e-ter/side.svg",
  21746. extra: 1550 / 1248,
  21747. bottom: 146 / 1694
  21748. }
  21749. },
  21750. },
  21751. [
  21752. {
  21753. name: "Normal",
  21754. height: math.unit(4.5, "feet"),
  21755. default: true
  21756. },
  21757. ]
  21758. ))
  21759. characterMakers.push(() => makeCharacter(
  21760. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21761. {
  21762. side: {
  21763. height: math.unit(9.7, "feet"),
  21764. weight: math.unit(4000, "kg"),
  21765. name: "Side",
  21766. image: {
  21767. source: "./media/characters/yamie/side.svg"
  21768. }
  21769. },
  21770. },
  21771. [
  21772. {
  21773. name: "Normal",
  21774. height: math.unit(9.7, "feet"),
  21775. default: true
  21776. },
  21777. ]
  21778. ))
  21779. characterMakers.push(() => makeCharacter(
  21780. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21781. {
  21782. front: {
  21783. height: math.unit(50, "feet"),
  21784. weight: math.unit(50000, "kg"),
  21785. name: "Front",
  21786. image: {
  21787. source: "./media/characters/anders/front.svg",
  21788. extra: 570 / 539,
  21789. bottom: 14.7 / 586.7
  21790. }
  21791. },
  21792. },
  21793. [
  21794. {
  21795. name: "Large",
  21796. height: math.unit(50, "feet")
  21797. },
  21798. {
  21799. name: "Macro",
  21800. height: math.unit(2000, "feet"),
  21801. default: true
  21802. },
  21803. {
  21804. name: "Megamacro",
  21805. height: math.unit(12, "miles")
  21806. },
  21807. ]
  21808. ))
  21809. characterMakers.push(() => makeCharacter(
  21810. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21811. {
  21812. front: {
  21813. height: math.unit(7 + 2 / 12, "feet"),
  21814. weight: math.unit(300, "lb"),
  21815. name: "Front",
  21816. image: {
  21817. source: "./media/characters/reban/front.svg",
  21818. extra: 516 / 487,
  21819. bottom: 42.82 / 558.356
  21820. }
  21821. },
  21822. dick: {
  21823. height: math.unit(7 / 5, "feet"),
  21824. name: "Dick",
  21825. image: {
  21826. source: "./media/characters/reban/dick.svg"
  21827. }
  21828. },
  21829. },
  21830. [
  21831. {
  21832. name: "Natural Height",
  21833. height: math.unit(7 + 2 / 12, "feet")
  21834. },
  21835. {
  21836. name: "Macro",
  21837. height: math.unit(500, "feet"),
  21838. default: true
  21839. },
  21840. {
  21841. name: "Canon Height",
  21842. height: math.unit(50, "AU")
  21843. },
  21844. ]
  21845. ))
  21846. characterMakers.push(() => makeCharacter(
  21847. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21848. {
  21849. front: {
  21850. height: math.unit(6, "feet"),
  21851. weight: math.unit(150, "lb"),
  21852. name: "Front",
  21853. image: {
  21854. source: "./media/characters/terrance-keayes/front.svg",
  21855. extra: 1.005,
  21856. bottom: 151 / 1615
  21857. }
  21858. },
  21859. side: {
  21860. height: math.unit(6, "feet"),
  21861. weight: math.unit(150, "lb"),
  21862. name: "Side",
  21863. image: {
  21864. source: "./media/characters/terrance-keayes/side.svg",
  21865. extra: 1.005,
  21866. bottom: 129.4 / 1544
  21867. }
  21868. },
  21869. back: {
  21870. height: math.unit(6, "feet"),
  21871. weight: math.unit(150, "lb"),
  21872. name: "Back",
  21873. image: {
  21874. source: "./media/characters/terrance-keayes/back.svg",
  21875. extra: 1.005,
  21876. bottom: 58.4 / 1557.3
  21877. }
  21878. },
  21879. dick: {
  21880. height: math.unit(6 * 0.208, "feet"),
  21881. name: "Dick",
  21882. image: {
  21883. source: "./media/characters/terrance-keayes/dick.svg"
  21884. }
  21885. },
  21886. },
  21887. [
  21888. {
  21889. name: "Canon Height",
  21890. height: math.unit(35, "miles"),
  21891. default: true
  21892. },
  21893. ]
  21894. ))
  21895. characterMakers.push(() => makeCharacter(
  21896. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21897. {
  21898. front: {
  21899. height: math.unit(6, "feet"),
  21900. weight: math.unit(150, "lb"),
  21901. name: "Front",
  21902. image: {
  21903. source: "./media/characters/ofelia/front.svg",
  21904. extra: 546 / 541,
  21905. bottom: 39 / 583
  21906. }
  21907. },
  21908. back: {
  21909. height: math.unit(6, "feet"),
  21910. weight: math.unit(150, "lb"),
  21911. name: "Back",
  21912. image: {
  21913. source: "./media/characters/ofelia/back.svg",
  21914. extra: 564 / 559.5,
  21915. bottom: 8.69 / 573.02
  21916. }
  21917. },
  21918. maw: {
  21919. height: math.unit(1, "feet"),
  21920. name: "Maw",
  21921. image: {
  21922. source: "./media/characters/ofelia/maw.svg"
  21923. }
  21924. },
  21925. foot: {
  21926. height: math.unit(1.949, "feet"),
  21927. name: "Foot",
  21928. image: {
  21929. source: "./media/characters/ofelia/foot.svg"
  21930. }
  21931. },
  21932. },
  21933. [
  21934. {
  21935. name: "Canon Height",
  21936. height: math.unit(2000, "miles"),
  21937. default: true
  21938. },
  21939. ]
  21940. ))
  21941. characterMakers.push(() => makeCharacter(
  21942. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21943. {
  21944. front: {
  21945. height: math.unit(6, "feet"),
  21946. weight: math.unit(150, "lb"),
  21947. name: "Front",
  21948. image: {
  21949. source: "./media/characters/samuel/front.svg",
  21950. extra: 265 / 258,
  21951. bottom: 2 / 266.1566
  21952. }
  21953. },
  21954. },
  21955. [
  21956. {
  21957. name: "Macro",
  21958. height: math.unit(100, "feet"),
  21959. default: true
  21960. },
  21961. {
  21962. name: "Full Size",
  21963. height: math.unit(1000, "miles")
  21964. },
  21965. ]
  21966. ))
  21967. characterMakers.push(() => makeCharacter(
  21968. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21969. {
  21970. front: {
  21971. height: math.unit(6, "feet"),
  21972. weight: math.unit(300, "lb"),
  21973. name: "Front",
  21974. image: {
  21975. source: "./media/characters/beishir-kiel/front.svg",
  21976. extra: 569 / 547,
  21977. bottom: 41.9 / 609
  21978. }
  21979. },
  21980. maw: {
  21981. height: math.unit(6 * 0.202, "feet"),
  21982. name: "Maw",
  21983. image: {
  21984. source: "./media/characters/beishir-kiel/maw.svg"
  21985. }
  21986. },
  21987. },
  21988. [
  21989. {
  21990. name: "Macro",
  21991. height: math.unit(300, "feet"),
  21992. default: true
  21993. },
  21994. ]
  21995. ))
  21996. characterMakers.push(() => makeCharacter(
  21997. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21998. {
  21999. front: {
  22000. height: math.unit(5 + 7/12, "feet"),
  22001. weight: math.unit(120, "lb"),
  22002. name: "Front",
  22003. image: {
  22004. source: "./media/characters/logan-grey/front.svg",
  22005. extra: 1836/1738,
  22006. bottom: 108/1944
  22007. }
  22008. },
  22009. back: {
  22010. height: math.unit(5 + 7/12, "feet"),
  22011. weight: math.unit(120, "lb"),
  22012. name: "Back",
  22013. image: {
  22014. source: "./media/characters/logan-grey/back.svg",
  22015. extra: 1880/1794,
  22016. bottom: 24/1904
  22017. }
  22018. },
  22019. frontSfw: {
  22020. height: math.unit(5 + 7/12, "feet"),
  22021. weight: math.unit(120, "lb"),
  22022. name: "Front (SFW)",
  22023. image: {
  22024. source: "./media/characters/logan-grey/front-sfw.svg",
  22025. extra: 1836/1738,
  22026. bottom: 108/1944
  22027. }
  22028. },
  22029. backSfw: {
  22030. height: math.unit(5 + 7/12, "feet"),
  22031. weight: math.unit(120, "lb"),
  22032. name: "Back (SFW)",
  22033. image: {
  22034. source: "./media/characters/logan-grey/back-sfw.svg",
  22035. extra: 1880/1794,
  22036. bottom: 24/1904
  22037. }
  22038. },
  22039. hands: {
  22040. height: math.unit(0.84, "feet"),
  22041. name: "Hands",
  22042. image: {
  22043. source: "./media/characters/logan-grey/hands.svg"
  22044. }
  22045. },
  22046. paws: {
  22047. height: math.unit(0.72, "feet"),
  22048. name: "Paws",
  22049. image: {
  22050. source: "./media/characters/logan-grey/paws.svg"
  22051. }
  22052. },
  22053. cock: {
  22054. height: math.unit(1.45, "feet"),
  22055. name: "Cock",
  22056. image: {
  22057. source: "./media/characters/logan-grey/cock.svg"
  22058. }
  22059. },
  22060. cockAlt: {
  22061. height: math.unit(1.437, "feet"),
  22062. name: "Cock (alt)",
  22063. image: {
  22064. source: "./media/characters/logan-grey/cock-alt.svg"
  22065. }
  22066. },
  22067. },
  22068. [
  22069. {
  22070. name: "Normal",
  22071. height: math.unit(5 + 8 / 12, "feet")
  22072. },
  22073. {
  22074. name: "The 500 Foot Femboy",
  22075. height: math.unit(500, "feet"),
  22076. default: true
  22077. },
  22078. {
  22079. name: "Megmacro",
  22080. height: math.unit(20, "miles")
  22081. },
  22082. ]
  22083. ))
  22084. characterMakers.push(() => makeCharacter(
  22085. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22086. {
  22087. front: {
  22088. height: math.unit(8 + 2 / 12, "feet"),
  22089. weight: math.unit(275, "lb"),
  22090. name: "Front",
  22091. image: {
  22092. source: "./media/characters/draganta/front.svg",
  22093. extra: 1177 / 1135,
  22094. bottom: 33.46 / 1212.1
  22095. }
  22096. },
  22097. },
  22098. [
  22099. {
  22100. name: "Normal",
  22101. height: math.unit(8 + 6 / 12, "feet"),
  22102. default: true
  22103. },
  22104. {
  22105. name: "Macro",
  22106. height: math.unit(150, "feet")
  22107. },
  22108. {
  22109. name: "Megamacro",
  22110. height: math.unit(1000, "miles")
  22111. },
  22112. ]
  22113. ))
  22114. characterMakers.push(() => makeCharacter(
  22115. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22116. {
  22117. front: {
  22118. height: math.unit(1.72, "m"),
  22119. weight: math.unit(80, "lb"),
  22120. name: "Front",
  22121. image: {
  22122. source: "./media/characters/voski/front.svg",
  22123. extra: 2076.22 / 2022.4,
  22124. bottom: 102.7 / 2177.3866
  22125. }
  22126. },
  22127. frontNsfw: {
  22128. height: math.unit(1.72, "m"),
  22129. weight: math.unit(80, "lb"),
  22130. name: "Front (NSFW)",
  22131. image: {
  22132. source: "./media/characters/voski/front-nsfw.svg",
  22133. extra: 2076.22 / 2022.4,
  22134. bottom: 102.7 / 2177.3866
  22135. }
  22136. },
  22137. back: {
  22138. height: math.unit(1.72, "m"),
  22139. weight: math.unit(80, "lb"),
  22140. name: "Back",
  22141. image: {
  22142. source: "./media/characters/voski/back.svg",
  22143. extra: 2104 / 2051,
  22144. bottom: 10.45 / 2113.63
  22145. }
  22146. },
  22147. },
  22148. [
  22149. {
  22150. name: "Normal",
  22151. height: math.unit(1.72, "m")
  22152. },
  22153. {
  22154. name: "Macro",
  22155. height: math.unit(55, "m"),
  22156. default: true
  22157. },
  22158. {
  22159. name: "Macro+",
  22160. height: math.unit(300, "m")
  22161. },
  22162. {
  22163. name: "Macro++",
  22164. height: math.unit(700, "m")
  22165. },
  22166. {
  22167. name: "Macro+++",
  22168. height: math.unit(4500, "m")
  22169. },
  22170. {
  22171. name: "Macro++++",
  22172. height: math.unit(45, "km")
  22173. },
  22174. {
  22175. name: "Macro+++++",
  22176. height: math.unit(1220, "km")
  22177. },
  22178. ]
  22179. ))
  22180. characterMakers.push(() => makeCharacter(
  22181. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22182. {
  22183. front: {
  22184. height: math.unit(2.3, "m"),
  22185. weight: math.unit(304, "kg"),
  22186. name: "Front",
  22187. image: {
  22188. source: "./media/characters/icowom-lee/front.svg",
  22189. extra: 985 / 955,
  22190. bottom: 25.4 / 1012
  22191. }
  22192. },
  22193. fronttentacles: {
  22194. height: math.unit(2.3, "m"),
  22195. weight: math.unit(304, "kg"),
  22196. name: "Front-tentacles",
  22197. image: {
  22198. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22199. extra: 985 / 955,
  22200. bottom: 25.4 / 1012
  22201. }
  22202. },
  22203. back: {
  22204. height: math.unit(2.3, "m"),
  22205. weight: math.unit(304, "kg"),
  22206. name: "Back",
  22207. image: {
  22208. source: "./media/characters/icowom-lee/back.svg",
  22209. extra: 975 / 954,
  22210. bottom: 9.5 / 985
  22211. }
  22212. },
  22213. backtentacles: {
  22214. height: math.unit(2.3, "m"),
  22215. weight: math.unit(304, "kg"),
  22216. name: "Back-tentacles",
  22217. image: {
  22218. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22219. extra: 975 / 954,
  22220. bottom: 9.5 / 985
  22221. }
  22222. },
  22223. frontDressed: {
  22224. height: math.unit(2.3, "m"),
  22225. weight: math.unit(304, "kg"),
  22226. name: "Front (Dressed)",
  22227. image: {
  22228. source: "./media/characters/icowom-lee/front-dressed.svg",
  22229. extra: 3076 / 2933,
  22230. bottom: 51.4 / 3125.1889
  22231. }
  22232. },
  22233. rump: {
  22234. height: math.unit(0.776, "meters"),
  22235. name: "Rump",
  22236. image: {
  22237. source: "./media/characters/icowom-lee/rump.svg"
  22238. }
  22239. },
  22240. genitals: {
  22241. height: math.unit(0.78, "meters"),
  22242. name: "Genitals",
  22243. image: {
  22244. source: "./media/characters/icowom-lee/genitals.svg"
  22245. }
  22246. },
  22247. },
  22248. [
  22249. {
  22250. name: "Normal",
  22251. height: math.unit(2.3, "meters"),
  22252. default: true
  22253. },
  22254. {
  22255. name: "Macro",
  22256. height: math.unit(94, "meters"),
  22257. default: true
  22258. },
  22259. ]
  22260. ))
  22261. characterMakers.push(() => makeCharacter(
  22262. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22263. {
  22264. front: {
  22265. height: math.unit(22, "meters"),
  22266. weight: math.unit(21000, "kg"),
  22267. name: "Front",
  22268. image: {
  22269. source: "./media/characters/shock-diamond/front.svg",
  22270. extra: 2204 / 2053,
  22271. bottom: 65 / 2239.47
  22272. }
  22273. },
  22274. frontNude: {
  22275. height: math.unit(22, "meters"),
  22276. weight: math.unit(21000, "kg"),
  22277. name: "Front (Nude)",
  22278. image: {
  22279. source: "./media/characters/shock-diamond/front-nude.svg",
  22280. extra: 2514 / 2285,
  22281. bottom: 13 / 2527.56
  22282. }
  22283. },
  22284. },
  22285. [
  22286. {
  22287. name: "Normal",
  22288. height: math.unit(3, "meters")
  22289. },
  22290. {
  22291. name: "Macro",
  22292. height: math.unit(22, "meters"),
  22293. default: true
  22294. },
  22295. ]
  22296. ))
  22297. characterMakers.push(() => makeCharacter(
  22298. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22299. {
  22300. front: {
  22301. height: math.unit(5 + 4 / 12, "feet"),
  22302. weight: math.unit(120, "lb"),
  22303. name: "Front",
  22304. image: {
  22305. source: "./media/characters/rory/front.svg",
  22306. extra: 1318/1241,
  22307. bottom: 42/1360
  22308. }
  22309. },
  22310. back: {
  22311. height: math.unit(5 + 4 / 12, "feet"),
  22312. weight: math.unit(120, "lb"),
  22313. name: "Back",
  22314. image: {
  22315. source: "./media/characters/rory/back.svg",
  22316. extra: 1318/1241,
  22317. bottom: 42/1360
  22318. }
  22319. },
  22320. butt: {
  22321. height: math.unit(1.74, "feet"),
  22322. name: "Butt",
  22323. image: {
  22324. source: "./media/characters/rory/butt.svg"
  22325. }
  22326. },
  22327. dick: {
  22328. height: math.unit(1.02, "feet"),
  22329. name: "Dick",
  22330. image: {
  22331. source: "./media/characters/rory/dick.svg"
  22332. }
  22333. },
  22334. paws: {
  22335. height: math.unit(1, "feet"),
  22336. name: "Paws",
  22337. image: {
  22338. source: "./media/characters/rory/paws.svg"
  22339. }
  22340. },
  22341. frontAlt: {
  22342. height: math.unit(5 + 4 / 12, "feet"),
  22343. weight: math.unit(120, "lb"),
  22344. name: "Front (Alt)",
  22345. image: {
  22346. source: "./media/characters/rory/front-alt.svg",
  22347. extra: 589 / 556,
  22348. bottom: 45.7 / 635.76
  22349. }
  22350. },
  22351. frontAltNude: {
  22352. height: math.unit(5 + 4 / 12, "feet"),
  22353. weight: math.unit(120, "lb"),
  22354. name: "Front (Alt, Nude)",
  22355. image: {
  22356. source: "./media/characters/rory/front-alt-nude.svg",
  22357. extra: 589 / 556,
  22358. bottom: 45.7 / 635.76
  22359. }
  22360. },
  22361. side: {
  22362. height: math.unit(5 + 4 / 12, "feet"),
  22363. weight: math.unit(120, "lb"),
  22364. name: "Side",
  22365. image: {
  22366. source: "./media/characters/rory/side.svg",
  22367. extra: 597 / 564,
  22368. bottom: 55 / 653
  22369. }
  22370. },
  22371. backAlt: {
  22372. height: math.unit(5 + 4 / 12, "feet"),
  22373. weight: math.unit(120, "lb"),
  22374. name: "Back (Alt)",
  22375. image: {
  22376. source: "./media/characters/rory/back-alt.svg",
  22377. extra: 620 / 585,
  22378. bottom: 8.86 / 630.43
  22379. }
  22380. },
  22381. dickAlt: {
  22382. height: math.unit(0.86, "feet"),
  22383. name: "Dick (Alt)",
  22384. image: {
  22385. source: "./media/characters/rory/dick-alt.svg"
  22386. }
  22387. },
  22388. },
  22389. [
  22390. {
  22391. name: "Normal",
  22392. height: math.unit(5 + 4 / 12, "feet"),
  22393. default: true
  22394. },
  22395. {
  22396. name: "Macro",
  22397. height: math.unit(100, "feet")
  22398. },
  22399. {
  22400. name: "Macro+",
  22401. height: math.unit(140, "feet")
  22402. },
  22403. {
  22404. name: "Macro++",
  22405. height: math.unit(300, "feet")
  22406. },
  22407. ]
  22408. ))
  22409. characterMakers.push(() => makeCharacter(
  22410. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22411. {
  22412. front: {
  22413. height: math.unit(5 + 9 / 12, "feet"),
  22414. weight: math.unit(190, "lb"),
  22415. name: "Front",
  22416. image: {
  22417. source: "./media/characters/sprisk/front.svg",
  22418. extra: 1225 / 1180,
  22419. bottom: 42.7 / 1266.4
  22420. }
  22421. },
  22422. frontNsfw: {
  22423. height: math.unit(5 + 9 / 12, "feet"),
  22424. weight: math.unit(190, "lb"),
  22425. name: "Front (NSFW)",
  22426. image: {
  22427. source: "./media/characters/sprisk/front-nsfw.svg",
  22428. extra: 1225 / 1180,
  22429. bottom: 42.7 / 1266.4
  22430. }
  22431. },
  22432. back: {
  22433. height: math.unit(5 + 9 / 12, "feet"),
  22434. weight: math.unit(190, "lb"),
  22435. name: "Back",
  22436. image: {
  22437. source: "./media/characters/sprisk/back.svg",
  22438. extra: 1247 / 1200,
  22439. bottom: 5.6 / 1253.04
  22440. }
  22441. },
  22442. },
  22443. [
  22444. {
  22445. name: "Tiny",
  22446. height: math.unit(2, "inches")
  22447. },
  22448. {
  22449. name: "Normal",
  22450. height: math.unit(5 + 9 / 12, "feet"),
  22451. default: true
  22452. },
  22453. {
  22454. name: "Mini Macro",
  22455. height: math.unit(18, "feet")
  22456. },
  22457. {
  22458. name: "Macro",
  22459. height: math.unit(100, "feet")
  22460. },
  22461. {
  22462. name: "MACRO",
  22463. height: math.unit(50, "miles")
  22464. },
  22465. {
  22466. name: "M A C R O",
  22467. height: math.unit(300, "miles")
  22468. },
  22469. ]
  22470. ))
  22471. characterMakers.push(() => makeCharacter(
  22472. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22473. {
  22474. side: {
  22475. height: math.unit(15.6, "meters"),
  22476. weight: math.unit(700000, "kg"),
  22477. name: "Side",
  22478. image: {
  22479. source: "./media/characters/bunsen/side.svg",
  22480. extra: 1644 / 358
  22481. }
  22482. },
  22483. foot: {
  22484. height: math.unit(1.611 * 1644 / 358, "meter"),
  22485. name: "Foot",
  22486. image: {
  22487. source: "./media/characters/bunsen/foot.svg"
  22488. }
  22489. },
  22490. },
  22491. [
  22492. {
  22493. name: "Small",
  22494. height: math.unit(10, "feet")
  22495. },
  22496. {
  22497. name: "Normal",
  22498. height: math.unit(15.6, "meters"),
  22499. default: true
  22500. },
  22501. ]
  22502. ))
  22503. characterMakers.push(() => makeCharacter(
  22504. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22505. {
  22506. front: {
  22507. height: math.unit(4 + 11 / 12, "feet"),
  22508. weight: math.unit(140, "lb"),
  22509. name: "Front",
  22510. image: {
  22511. source: "./media/characters/sesh/front.svg",
  22512. extra: 3420 / 3231,
  22513. bottom: 72 / 3949.5
  22514. }
  22515. },
  22516. },
  22517. [
  22518. {
  22519. name: "Normal",
  22520. height: math.unit(4 + 11 / 12, "feet")
  22521. },
  22522. {
  22523. name: "Grown",
  22524. height: math.unit(15, "feet"),
  22525. default: true
  22526. },
  22527. {
  22528. name: "Macro",
  22529. height: math.unit(1500, "feet")
  22530. },
  22531. {
  22532. name: "Megamacro",
  22533. height: math.unit(30, "miles")
  22534. },
  22535. {
  22536. name: "Continental",
  22537. height: math.unit(3000, "miles")
  22538. },
  22539. {
  22540. name: "Gravity Mass",
  22541. height: math.unit(300000, "miles")
  22542. },
  22543. {
  22544. name: "Planet Buster",
  22545. height: math.unit(30000000, "miles")
  22546. },
  22547. {
  22548. name: "Big",
  22549. height: math.unit(3000000000, "miles")
  22550. },
  22551. ]
  22552. ))
  22553. characterMakers.push(() => makeCharacter(
  22554. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22555. {
  22556. front: {
  22557. height: math.unit(9, "feet"),
  22558. weight: math.unit(350, "lb"),
  22559. name: "Front",
  22560. image: {
  22561. source: "./media/characters/pepper/front.svg",
  22562. extra: 1448 / 1312,
  22563. bottom: 9.4 / 1457.88
  22564. }
  22565. },
  22566. back: {
  22567. height: math.unit(9, "feet"),
  22568. weight: math.unit(350, "lb"),
  22569. name: "Back",
  22570. image: {
  22571. source: "./media/characters/pepper/back.svg",
  22572. extra: 1423 / 1300,
  22573. bottom: 4.6 / 1429
  22574. }
  22575. },
  22576. maw: {
  22577. height: math.unit(0.932, "feet"),
  22578. name: "Maw",
  22579. image: {
  22580. source: "./media/characters/pepper/maw.svg"
  22581. }
  22582. },
  22583. },
  22584. [
  22585. {
  22586. name: "Normal",
  22587. height: math.unit(9, "feet"),
  22588. default: true
  22589. },
  22590. ]
  22591. ))
  22592. characterMakers.push(() => makeCharacter(
  22593. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22594. {
  22595. front: {
  22596. height: math.unit(6, "feet"),
  22597. weight: math.unit(150, "lb"),
  22598. name: "Front",
  22599. image: {
  22600. source: "./media/characters/maelstrom/front.svg",
  22601. extra: 2100 / 1883,
  22602. bottom: 94 / 2196.7
  22603. }
  22604. },
  22605. },
  22606. [
  22607. {
  22608. name: "Less Kaiju",
  22609. height: math.unit(200, "feet")
  22610. },
  22611. {
  22612. name: "Kaiju",
  22613. height: math.unit(400, "feet"),
  22614. default: true
  22615. },
  22616. {
  22617. name: "Kaiju-er",
  22618. height: math.unit(600, "feet")
  22619. },
  22620. ]
  22621. ))
  22622. characterMakers.push(() => makeCharacter(
  22623. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22624. {
  22625. front: {
  22626. height: math.unit(6 + 5 / 12, "feet"),
  22627. weight: math.unit(180, "lb"),
  22628. name: "Front",
  22629. image: {
  22630. source: "./media/characters/lexir/front.svg",
  22631. extra: 180 / 172,
  22632. bottom: 12 / 192
  22633. }
  22634. },
  22635. back: {
  22636. height: math.unit(6 + 5 / 12, "feet"),
  22637. weight: math.unit(180, "lb"),
  22638. name: "Back",
  22639. image: {
  22640. source: "./media/characters/lexir/back.svg",
  22641. extra: 183.84 / 175.5,
  22642. bottom: 3.1 / 187
  22643. }
  22644. },
  22645. },
  22646. [
  22647. {
  22648. name: "Very Smal",
  22649. height: math.unit(1, "nm")
  22650. },
  22651. {
  22652. name: "Normal",
  22653. height: math.unit(6 + 5 / 12, "feet"),
  22654. default: true
  22655. },
  22656. {
  22657. name: "Macro",
  22658. height: math.unit(1, "mile")
  22659. },
  22660. {
  22661. name: "Megamacro",
  22662. height: math.unit(50, "miles")
  22663. },
  22664. ]
  22665. ))
  22666. characterMakers.push(() => makeCharacter(
  22667. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22668. {
  22669. front: {
  22670. height: math.unit(1.5, "meters"),
  22671. weight: math.unit(100, "lb"),
  22672. name: "Front",
  22673. image: {
  22674. source: "./media/characters/maksio/front.svg",
  22675. extra: 1549 / 1531,
  22676. bottom: 123.7 / 1674.5429
  22677. }
  22678. },
  22679. back: {
  22680. height: math.unit(1.5, "meters"),
  22681. weight: math.unit(100, "lb"),
  22682. name: "Back",
  22683. image: {
  22684. source: "./media/characters/maksio/back.svg",
  22685. extra: 1541 / 1509,
  22686. bottom: 97 / 1639
  22687. }
  22688. },
  22689. hand: {
  22690. height: math.unit(0.621, "feet"),
  22691. name: "Hand",
  22692. image: {
  22693. source: "./media/characters/maksio/hand.svg"
  22694. }
  22695. },
  22696. foot: {
  22697. height: math.unit(1.611, "feet"),
  22698. name: "Foot",
  22699. image: {
  22700. source: "./media/characters/maksio/foot.svg"
  22701. }
  22702. },
  22703. },
  22704. [
  22705. {
  22706. name: "Shrunken",
  22707. height: math.unit(10, "cm")
  22708. },
  22709. {
  22710. name: "Normal",
  22711. height: math.unit(150, "cm"),
  22712. default: true
  22713. },
  22714. ]
  22715. ))
  22716. characterMakers.push(() => makeCharacter(
  22717. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22718. {
  22719. front: {
  22720. height: math.unit(100, "feet"),
  22721. name: "Front",
  22722. image: {
  22723. source: "./media/characters/erza-bear/front.svg",
  22724. extra: 2449 / 2390,
  22725. bottom: 46 / 2494
  22726. }
  22727. },
  22728. back: {
  22729. height: math.unit(100, "feet"),
  22730. name: "Back",
  22731. image: {
  22732. source: "./media/characters/erza-bear/back.svg",
  22733. extra: 2489 / 2430,
  22734. bottom: 85.4 / 2480
  22735. }
  22736. },
  22737. tail: {
  22738. height: math.unit(42, "feet"),
  22739. name: "Tail",
  22740. image: {
  22741. source: "./media/characters/erza-bear/tail.svg"
  22742. }
  22743. },
  22744. tongue: {
  22745. height: math.unit(8, "feet"),
  22746. name: "Tongue",
  22747. image: {
  22748. source: "./media/characters/erza-bear/tongue.svg"
  22749. }
  22750. },
  22751. dick: {
  22752. height: math.unit(10.5, "feet"),
  22753. name: "Dick",
  22754. image: {
  22755. source: "./media/characters/erza-bear/dick.svg"
  22756. }
  22757. },
  22758. dickVertical: {
  22759. height: math.unit(16.9, "feet"),
  22760. name: "Dick (Vertical)",
  22761. image: {
  22762. source: "./media/characters/erza-bear/dick-vertical.svg"
  22763. }
  22764. },
  22765. },
  22766. [
  22767. {
  22768. name: "Macro",
  22769. height: math.unit(100, "feet"),
  22770. default: true
  22771. },
  22772. ]
  22773. ))
  22774. characterMakers.push(() => makeCharacter(
  22775. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22776. {
  22777. front: {
  22778. height: math.unit(172, "cm"),
  22779. weight: math.unit(73, "kg"),
  22780. name: "Front",
  22781. image: {
  22782. source: "./media/characters/violet-flor/front.svg",
  22783. extra: 1530 / 1442,
  22784. bottom: 61.9 / 1588.8
  22785. }
  22786. },
  22787. back: {
  22788. height: math.unit(180, "cm"),
  22789. weight: math.unit(73, "kg"),
  22790. name: "Back",
  22791. image: {
  22792. source: "./media/characters/violet-flor/back.svg",
  22793. extra: 1692 / 1630,
  22794. bottom: 20 / 1712
  22795. }
  22796. },
  22797. },
  22798. [
  22799. {
  22800. name: "Normal",
  22801. height: math.unit(172, "cm"),
  22802. default: true
  22803. },
  22804. ]
  22805. ))
  22806. characterMakers.push(() => makeCharacter(
  22807. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22808. {
  22809. front: {
  22810. height: math.unit(6, "feet"),
  22811. weight: math.unit(220, "lb"),
  22812. name: "Front",
  22813. image: {
  22814. source: "./media/characters/lynn-rhea/front.svg",
  22815. extra: 310 / 273
  22816. }
  22817. },
  22818. back: {
  22819. height: math.unit(6, "feet"),
  22820. weight: math.unit(220, "lb"),
  22821. name: "Back",
  22822. image: {
  22823. source: "./media/characters/lynn-rhea/back.svg",
  22824. extra: 310 / 273
  22825. }
  22826. },
  22827. dicks: {
  22828. height: math.unit(0.9, "feet"),
  22829. name: "Dicks",
  22830. image: {
  22831. source: "./media/characters/lynn-rhea/dicks.svg"
  22832. }
  22833. },
  22834. slit: {
  22835. height: math.unit(0.4, "feet"),
  22836. name: "Slit",
  22837. image: {
  22838. source: "./media/characters/lynn-rhea/slit.svg"
  22839. }
  22840. },
  22841. },
  22842. [
  22843. {
  22844. name: "Micro",
  22845. height: math.unit(1, "inch")
  22846. },
  22847. {
  22848. name: "Macro",
  22849. height: math.unit(60, "feet"),
  22850. default: true
  22851. },
  22852. {
  22853. name: "Megamacro",
  22854. height: math.unit(2, "miles")
  22855. },
  22856. {
  22857. name: "Gigamacro",
  22858. height: math.unit(3, "earths")
  22859. },
  22860. {
  22861. name: "Galactic",
  22862. height: math.unit(0.8, "galaxies")
  22863. },
  22864. ]
  22865. ))
  22866. characterMakers.push(() => makeCharacter(
  22867. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22868. {
  22869. front: {
  22870. height: math.unit(1600, "feet"),
  22871. weight: math.unit(85758785169, "kg"),
  22872. name: "Front",
  22873. image: {
  22874. source: "./media/characters/valathos/front.svg",
  22875. extra: 1451 / 1339
  22876. }
  22877. },
  22878. },
  22879. [
  22880. {
  22881. name: "Macro",
  22882. height: math.unit(1600, "feet"),
  22883. default: true
  22884. },
  22885. ]
  22886. ))
  22887. characterMakers.push(() => makeCharacter(
  22888. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22889. {
  22890. front: {
  22891. height: math.unit(7 + 5 / 12, "feet"),
  22892. weight: math.unit(300, "lb"),
  22893. name: "Front",
  22894. image: {
  22895. source: "./media/characters/azula/front.svg",
  22896. extra: 3208 / 2880,
  22897. bottom: 80.2 / 3277
  22898. }
  22899. },
  22900. back: {
  22901. height: math.unit(7 + 5 / 12, "feet"),
  22902. weight: math.unit(300, "lb"),
  22903. name: "Back",
  22904. image: {
  22905. source: "./media/characters/azula/back.svg",
  22906. extra: 3169 / 2822,
  22907. bottom: 150.6 / 3321
  22908. }
  22909. },
  22910. },
  22911. [
  22912. {
  22913. name: "Normal",
  22914. height: math.unit(7 + 5 / 12, "feet"),
  22915. default: true
  22916. },
  22917. {
  22918. name: "Big",
  22919. height: math.unit(20, "feet")
  22920. },
  22921. ]
  22922. ))
  22923. characterMakers.push(() => makeCharacter(
  22924. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22925. {
  22926. front: {
  22927. height: math.unit(5 + 1 / 12, "feet"),
  22928. weight: math.unit(110, "lb"),
  22929. name: "Front",
  22930. image: {
  22931. source: "./media/characters/rupert/front.svg",
  22932. extra: 1549 / 1495,
  22933. bottom: 54.2 / 1604.4
  22934. }
  22935. },
  22936. },
  22937. [
  22938. {
  22939. name: "Normal",
  22940. height: math.unit(5 + 1 / 12, "feet"),
  22941. default: true
  22942. },
  22943. ]
  22944. ))
  22945. characterMakers.push(() => makeCharacter(
  22946. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22947. {
  22948. front: {
  22949. height: math.unit(8 + 4 / 12, "feet"),
  22950. weight: math.unit(350, "lb"),
  22951. name: "Front",
  22952. image: {
  22953. source: "./media/characters/sheera-castellar/front.svg",
  22954. extra: 1957 / 1894,
  22955. bottom: 26.97 / 1975.017
  22956. }
  22957. },
  22958. side: {
  22959. height: math.unit(8 + 4 / 12, "feet"),
  22960. weight: math.unit(350, "lb"),
  22961. name: "Side",
  22962. image: {
  22963. source: "./media/characters/sheera-castellar/side.svg",
  22964. extra: 1957 / 1894
  22965. }
  22966. },
  22967. back: {
  22968. height: math.unit(8 + 4 / 12, "feet"),
  22969. weight: math.unit(350, "lb"),
  22970. name: "Back",
  22971. image: {
  22972. source: "./media/characters/sheera-castellar/back.svg",
  22973. extra: 1957 / 1894
  22974. }
  22975. },
  22976. angled: {
  22977. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22978. weight: math.unit(350, "lb"),
  22979. name: "Angled",
  22980. image: {
  22981. source: "./media/characters/sheera-castellar/angled.svg",
  22982. extra: 1807 / 1707,
  22983. bottom: 68 / 1875
  22984. }
  22985. },
  22986. genitals: {
  22987. height: math.unit(2.2, "feet"),
  22988. name: "Genitals",
  22989. image: {
  22990. source: "./media/characters/sheera-castellar/genitals.svg"
  22991. }
  22992. },
  22993. taur: {
  22994. height: math.unit(10 + 6/12, "feet"),
  22995. name: "Taur",
  22996. image: {
  22997. source: "./media/characters/sheera-castellar/taur.svg",
  22998. extra: 2017/1909,
  22999. bottom: 185/2202
  23000. }
  23001. },
  23002. },
  23003. [
  23004. {
  23005. name: "Normal",
  23006. height: math.unit(8 + 4 / 12, "feet")
  23007. },
  23008. {
  23009. name: "Macro",
  23010. height: math.unit(150, "feet"),
  23011. default: true
  23012. },
  23013. {
  23014. name: "Macro+",
  23015. height: math.unit(800, "feet")
  23016. },
  23017. ]
  23018. ))
  23019. characterMakers.push(() => makeCharacter(
  23020. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23021. {
  23022. front: {
  23023. height: math.unit(6, "feet"),
  23024. weight: math.unit(150, "lb"),
  23025. name: "Front",
  23026. image: {
  23027. source: "./media/characters/jaipur/front.svg",
  23028. extra: 3860 / 3731,
  23029. bottom: 287 / 4140
  23030. }
  23031. },
  23032. back: {
  23033. height: math.unit(6, "feet"),
  23034. weight: math.unit(150, "lb"),
  23035. name: "Back",
  23036. image: {
  23037. source: "./media/characters/jaipur/back.svg",
  23038. extra: 4060 / 3930,
  23039. bottom: 151 / 4200
  23040. }
  23041. },
  23042. },
  23043. [
  23044. {
  23045. name: "Normal",
  23046. height: math.unit(1.85, "meters"),
  23047. default: true
  23048. },
  23049. {
  23050. name: "Macro",
  23051. height: math.unit(150, "meters")
  23052. },
  23053. {
  23054. name: "Macro+",
  23055. height: math.unit(0.5, "miles")
  23056. },
  23057. {
  23058. name: "Macro++",
  23059. height: math.unit(2.5, "miles")
  23060. },
  23061. {
  23062. name: "Macro+++",
  23063. height: math.unit(12, "miles")
  23064. },
  23065. {
  23066. name: "Macro++++",
  23067. height: math.unit(120, "miles")
  23068. },
  23069. {
  23070. name: "Macro+++++",
  23071. height: math.unit(1200, "miles")
  23072. },
  23073. ]
  23074. ))
  23075. characterMakers.push(() => makeCharacter(
  23076. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23077. {
  23078. front: {
  23079. height: math.unit(6, "feet"),
  23080. weight: math.unit(150, "lb"),
  23081. name: "Front",
  23082. image: {
  23083. source: "./media/characters/sheila-wolf/front.svg",
  23084. extra: 1931 / 1808,
  23085. bottom: 29.5 / 1960
  23086. }
  23087. },
  23088. dick: {
  23089. height: math.unit(1.464, "feet"),
  23090. name: "Dick",
  23091. image: {
  23092. source: "./media/characters/sheila-wolf/dick.svg"
  23093. }
  23094. },
  23095. muzzle: {
  23096. height: math.unit(0.513, "feet"),
  23097. name: "Muzzle",
  23098. image: {
  23099. source: "./media/characters/sheila-wolf/muzzle.svg"
  23100. }
  23101. },
  23102. },
  23103. [
  23104. {
  23105. name: "Macro",
  23106. height: math.unit(70, "feet"),
  23107. default: true
  23108. },
  23109. ]
  23110. ))
  23111. characterMakers.push(() => makeCharacter(
  23112. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23113. {
  23114. front: {
  23115. height: math.unit(32, "meters"),
  23116. weight: math.unit(300000, "kg"),
  23117. name: "Front",
  23118. image: {
  23119. source: "./media/characters/almor/front.svg",
  23120. extra: 1408 / 1322,
  23121. bottom: 94.6 / 1506.5
  23122. }
  23123. },
  23124. },
  23125. [
  23126. {
  23127. name: "Macro",
  23128. height: math.unit(32, "meters"),
  23129. default: true
  23130. },
  23131. ]
  23132. ))
  23133. characterMakers.push(() => makeCharacter(
  23134. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23135. {
  23136. front: {
  23137. height: math.unit(7, "feet"),
  23138. weight: math.unit(200, "lb"),
  23139. name: "Front",
  23140. image: {
  23141. source: "./media/characters/silver/front.svg",
  23142. extra: 472.1 / 450.5,
  23143. bottom: 26.5 / 499.424
  23144. }
  23145. },
  23146. },
  23147. [
  23148. {
  23149. name: "Normal",
  23150. height: math.unit(7, "feet"),
  23151. default: true
  23152. },
  23153. {
  23154. name: "Macro",
  23155. height: math.unit(800, "feet")
  23156. },
  23157. {
  23158. name: "Megamacro",
  23159. height: math.unit(250, "miles")
  23160. },
  23161. ]
  23162. ))
  23163. characterMakers.push(() => makeCharacter(
  23164. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23165. {
  23166. front: {
  23167. height: math.unit(6, "feet"),
  23168. weight: math.unit(150, "lb"),
  23169. name: "Front",
  23170. image: {
  23171. source: "./media/characters/pliskin/front.svg",
  23172. extra: 1469 / 1359,
  23173. bottom: 70 / 1540
  23174. }
  23175. },
  23176. },
  23177. [
  23178. {
  23179. name: "Micro",
  23180. height: math.unit(3, "inches")
  23181. },
  23182. {
  23183. name: "Normal",
  23184. height: math.unit(5 + 11 / 12, "feet"),
  23185. default: true
  23186. },
  23187. {
  23188. name: "Macro",
  23189. height: math.unit(120, "feet")
  23190. },
  23191. ]
  23192. ))
  23193. characterMakers.push(() => makeCharacter(
  23194. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23195. {
  23196. front: {
  23197. height: math.unit(6, "feet"),
  23198. weight: math.unit(150, "lb"),
  23199. name: "Front",
  23200. image: {
  23201. source: "./media/characters/sammy/front.svg",
  23202. extra: 1193 / 1089,
  23203. bottom: 30.5 / 1226
  23204. }
  23205. },
  23206. },
  23207. [
  23208. {
  23209. name: "Macro",
  23210. height: math.unit(1700, "feet"),
  23211. default: true
  23212. },
  23213. {
  23214. name: "Examacro",
  23215. height: math.unit(2.5e9, "lightyears")
  23216. },
  23217. ]
  23218. ))
  23219. characterMakers.push(() => makeCharacter(
  23220. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23221. {
  23222. front: {
  23223. height: math.unit(21, "meters"),
  23224. weight: math.unit(12, "tonnes"),
  23225. name: "Front",
  23226. image: {
  23227. source: "./media/characters/kuru/front.svg",
  23228. extra: 4301 / 3785,
  23229. bottom: 371.3 / 4691
  23230. }
  23231. },
  23232. },
  23233. [
  23234. {
  23235. name: "Macro",
  23236. height: math.unit(21, "meters"),
  23237. default: true
  23238. },
  23239. ]
  23240. ))
  23241. characterMakers.push(() => makeCharacter(
  23242. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23243. {
  23244. front: {
  23245. height: math.unit(23, "meters"),
  23246. weight: math.unit(12.2, "tonnes"),
  23247. name: "Front",
  23248. image: {
  23249. source: "./media/characters/rakka/front.svg",
  23250. extra: 4670 / 4169,
  23251. bottom: 301 / 4968.7
  23252. }
  23253. },
  23254. },
  23255. [
  23256. {
  23257. name: "Macro",
  23258. height: math.unit(23, "meters"),
  23259. default: true
  23260. },
  23261. ]
  23262. ))
  23263. characterMakers.push(() => makeCharacter(
  23264. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23265. {
  23266. front: {
  23267. height: math.unit(6, "feet"),
  23268. weight: math.unit(150, "lb"),
  23269. name: "Front",
  23270. image: {
  23271. source: "./media/characters/rhys-feline/front.svg",
  23272. extra: 2488 / 2308,
  23273. bottom: 35.67 / 2519.19
  23274. }
  23275. },
  23276. },
  23277. [
  23278. {
  23279. name: "Really Small",
  23280. height: math.unit(1, "nm")
  23281. },
  23282. {
  23283. name: "Micro",
  23284. height: math.unit(4, "inches")
  23285. },
  23286. {
  23287. name: "Normal",
  23288. height: math.unit(4 + 10 / 12, "feet"),
  23289. default: true
  23290. },
  23291. {
  23292. name: "Macro",
  23293. height: math.unit(100, "feet")
  23294. },
  23295. {
  23296. name: "Megamacto",
  23297. height: math.unit(50, "miles")
  23298. },
  23299. ]
  23300. ))
  23301. characterMakers.push(() => makeCharacter(
  23302. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23303. {
  23304. side: {
  23305. height: math.unit(30, "feet"),
  23306. weight: math.unit(35000, "kg"),
  23307. name: "Side",
  23308. image: {
  23309. source: "./media/characters/alydar/side.svg",
  23310. extra: 234 / 222,
  23311. bottom: 6.5 / 241
  23312. }
  23313. },
  23314. front: {
  23315. height: math.unit(30, "feet"),
  23316. weight: math.unit(35000, "kg"),
  23317. name: "Front",
  23318. image: {
  23319. source: "./media/characters/alydar/front.svg",
  23320. extra: 223.37 / 210.2,
  23321. bottom: 22.3 / 246.76
  23322. }
  23323. },
  23324. top: {
  23325. height: math.unit(64.54, "feet"),
  23326. weight: math.unit(35000, "kg"),
  23327. name: "Top",
  23328. image: {
  23329. source: "./media/characters/alydar/top.svg"
  23330. }
  23331. },
  23332. anthro: {
  23333. height: math.unit(30, "feet"),
  23334. weight: math.unit(9000, "kg"),
  23335. name: "Anthro",
  23336. image: {
  23337. source: "./media/characters/alydar/anthro.svg",
  23338. extra: 432 / 421,
  23339. bottom: 7.18 / 440
  23340. }
  23341. },
  23342. maw: {
  23343. height: math.unit(11.693, "feet"),
  23344. name: "Maw",
  23345. image: {
  23346. source: "./media/characters/alydar/maw.svg"
  23347. }
  23348. },
  23349. head: {
  23350. height: math.unit(11.693, "feet"),
  23351. name: "Head",
  23352. image: {
  23353. source: "./media/characters/alydar/head.svg"
  23354. }
  23355. },
  23356. headAlt: {
  23357. height: math.unit(12.861, "feet"),
  23358. name: "Head (Alt)",
  23359. image: {
  23360. source: "./media/characters/alydar/head-alt.svg"
  23361. }
  23362. },
  23363. wing: {
  23364. height: math.unit(20.712, "feet"),
  23365. name: "Wing",
  23366. image: {
  23367. source: "./media/characters/alydar/wing.svg"
  23368. }
  23369. },
  23370. wingFeather: {
  23371. height: math.unit(9.662, "feet"),
  23372. name: "Wing Feather",
  23373. image: {
  23374. source: "./media/characters/alydar/wing-feather.svg"
  23375. }
  23376. },
  23377. countourFeather: {
  23378. height: math.unit(4.154, "feet"),
  23379. name: "Contour Feather",
  23380. image: {
  23381. source: "./media/characters/alydar/contour-feather.svg"
  23382. }
  23383. },
  23384. },
  23385. [
  23386. {
  23387. name: "Diplomatic",
  23388. height: math.unit(13, "feet"),
  23389. default: true
  23390. },
  23391. {
  23392. name: "Small",
  23393. height: math.unit(30, "feet")
  23394. },
  23395. {
  23396. name: "Normal",
  23397. height: math.unit(95, "feet"),
  23398. default: true
  23399. },
  23400. {
  23401. name: "Large",
  23402. height: math.unit(285, "feet")
  23403. },
  23404. {
  23405. name: "Incomprehensible",
  23406. height: math.unit(450, "megameters")
  23407. },
  23408. ]
  23409. ))
  23410. characterMakers.push(() => makeCharacter(
  23411. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23412. {
  23413. side: {
  23414. height: math.unit(11, "feet"),
  23415. weight: math.unit(1750, "kg"),
  23416. name: "Side",
  23417. image: {
  23418. source: "./media/characters/selicia/side.svg",
  23419. extra: 440 / 396,
  23420. bottom: 24.8 / 465.979
  23421. }
  23422. },
  23423. maw: {
  23424. height: math.unit(4.665, "feet"),
  23425. name: "Maw",
  23426. image: {
  23427. source: "./media/characters/selicia/maw.svg"
  23428. }
  23429. },
  23430. },
  23431. [
  23432. {
  23433. name: "Normal",
  23434. height: math.unit(11, "feet"),
  23435. default: true
  23436. },
  23437. ]
  23438. ))
  23439. characterMakers.push(() => makeCharacter(
  23440. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23441. {
  23442. side: {
  23443. height: math.unit(2 + 6 / 12, "feet"),
  23444. weight: math.unit(30, "lb"),
  23445. name: "Side",
  23446. image: {
  23447. source: "./media/characters/layla/side.svg",
  23448. extra: 244 / 188,
  23449. bottom: 18.2 / 262.1
  23450. }
  23451. },
  23452. back: {
  23453. height: math.unit(2 + 6 / 12, "feet"),
  23454. weight: math.unit(30, "lb"),
  23455. name: "Back",
  23456. image: {
  23457. source: "./media/characters/layla/back.svg",
  23458. extra: 308 / 241.5,
  23459. bottom: 8.9 / 316.8
  23460. }
  23461. },
  23462. cumming: {
  23463. height: math.unit(2 + 6 / 12, "feet"),
  23464. weight: math.unit(30, "lb"),
  23465. name: "Cumming",
  23466. image: {
  23467. source: "./media/characters/layla/cumming.svg",
  23468. extra: 342 / 279,
  23469. bottom: 595 / 938
  23470. }
  23471. },
  23472. dickFlaccid: {
  23473. height: math.unit(2.595, "feet"),
  23474. name: "Flaccid Genitals",
  23475. image: {
  23476. source: "./media/characters/layla/dick-flaccid.svg"
  23477. }
  23478. },
  23479. dickErect: {
  23480. height: math.unit(2.359, "feet"),
  23481. name: "Erect Genitals",
  23482. image: {
  23483. source: "./media/characters/layla/dick-erect.svg"
  23484. }
  23485. },
  23486. dragon: {
  23487. height: math.unit(40, "feet"),
  23488. name: "Dragon",
  23489. image: {
  23490. source: "./media/characters/layla/dragon.svg",
  23491. extra: 610/535,
  23492. bottom: 367/977
  23493. }
  23494. },
  23495. taur: {
  23496. height: math.unit(30, "feet"),
  23497. name: "Taur",
  23498. image: {
  23499. source: "./media/characters/layla/taur.svg",
  23500. extra: 1268/1199,
  23501. bottom: 112/1380
  23502. }
  23503. },
  23504. },
  23505. [
  23506. {
  23507. name: "Micro",
  23508. height: math.unit(1, "inch")
  23509. },
  23510. {
  23511. name: "Small",
  23512. height: math.unit(1, "foot")
  23513. },
  23514. {
  23515. name: "Normal",
  23516. height: math.unit(2 + 6 / 12, "feet"),
  23517. default: true
  23518. },
  23519. {
  23520. name: "Macro",
  23521. height: math.unit(200, "feet")
  23522. },
  23523. {
  23524. name: "Megamacro",
  23525. height: math.unit(1000, "miles")
  23526. },
  23527. {
  23528. name: "Planetary",
  23529. height: math.unit(8000, "miles")
  23530. },
  23531. {
  23532. name: "True Layla",
  23533. height: math.unit(200000 * 7, "multiverses")
  23534. },
  23535. ]
  23536. ))
  23537. characterMakers.push(() => makeCharacter(
  23538. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23539. {
  23540. back: {
  23541. height: math.unit(10.5, "feet"),
  23542. weight: math.unit(800, "lb"),
  23543. name: "Back",
  23544. image: {
  23545. source: "./media/characters/knox/back.svg",
  23546. extra: 1486 / 1089,
  23547. bottom: 107 / 1601.4
  23548. }
  23549. },
  23550. side: {
  23551. height: math.unit(10.5, "feet"),
  23552. weight: math.unit(800, "lb"),
  23553. name: "Side",
  23554. image: {
  23555. source: "./media/characters/knox/side.svg",
  23556. extra: 244 / 218,
  23557. bottom: 14 / 260
  23558. }
  23559. },
  23560. },
  23561. [
  23562. {
  23563. name: "Compact",
  23564. height: math.unit(10.5, "feet"),
  23565. default: true
  23566. },
  23567. {
  23568. name: "Dynamax",
  23569. height: math.unit(210, "feet")
  23570. },
  23571. {
  23572. name: "Full Macro",
  23573. height: math.unit(850, "feet")
  23574. },
  23575. ]
  23576. ))
  23577. characterMakers.push(() => makeCharacter(
  23578. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23579. {
  23580. front: {
  23581. height: math.unit(6, "feet"),
  23582. weight: math.unit(152, "lb"),
  23583. name: "Front",
  23584. image: {
  23585. source: "./media/characters/shin-pikachu/front.svg",
  23586. extra: 1854/1602,
  23587. bottom: 166/2020
  23588. }
  23589. },
  23590. hand: {
  23591. height: math.unit(1.055, "feet"),
  23592. name: "Hand",
  23593. image: {
  23594. source: "./media/characters/shin-pikachu/hand.svg"
  23595. }
  23596. },
  23597. foot: {
  23598. height: math.unit(1.1, "feet"),
  23599. name: "Foot",
  23600. image: {
  23601. source: "./media/characters/shin-pikachu/foot.svg"
  23602. }
  23603. },
  23604. collar: {
  23605. height: math.unit(0.386, "feet"),
  23606. name: "Collar",
  23607. image: {
  23608. source: "./media/characters/shin-pikachu/collar.svg"
  23609. }
  23610. },
  23611. },
  23612. [
  23613. {
  23614. name: "Smallest",
  23615. height: math.unit(0.5, "inches")
  23616. },
  23617. {
  23618. name: "Micro",
  23619. height: math.unit(6, "inches")
  23620. },
  23621. {
  23622. name: "Normal",
  23623. height: math.unit(6, "feet"),
  23624. default: true
  23625. },
  23626. {
  23627. name: "Macro",
  23628. height: math.unit(150, "feet")
  23629. },
  23630. ]
  23631. ))
  23632. characterMakers.push(() => makeCharacter(
  23633. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23634. {
  23635. front: {
  23636. height: math.unit(28, "feet"),
  23637. weight: math.unit(10500, "lb"),
  23638. name: "Front",
  23639. image: {
  23640. source: "./media/characters/kayda/front.svg",
  23641. extra: 1536 / 1428,
  23642. bottom: 68.7 / 1603
  23643. }
  23644. },
  23645. back: {
  23646. height: math.unit(28, "feet"),
  23647. weight: math.unit(10500, "lb"),
  23648. name: "Back",
  23649. image: {
  23650. source: "./media/characters/kayda/back.svg",
  23651. extra: 1557 / 1464,
  23652. bottom: 39.5 / 1597.49
  23653. }
  23654. },
  23655. dick: {
  23656. height: math.unit(3.858, "feet"),
  23657. name: "Dick",
  23658. image: {
  23659. source: "./media/characters/kayda/dick.svg"
  23660. }
  23661. },
  23662. },
  23663. [
  23664. {
  23665. name: "Macro",
  23666. height: math.unit(28, "feet"),
  23667. default: true
  23668. },
  23669. ]
  23670. ))
  23671. characterMakers.push(() => makeCharacter(
  23672. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23673. {
  23674. front: {
  23675. height: math.unit(10 + 11 / 12, "feet"),
  23676. weight: math.unit(1400, "lb"),
  23677. name: "Front",
  23678. image: {
  23679. source: "./media/characters/brian/front.svg",
  23680. extra: 737 / 692,
  23681. bottom: 55.4 / 785
  23682. }
  23683. },
  23684. },
  23685. [
  23686. {
  23687. name: "Normal",
  23688. height: math.unit(10 + 11 / 12, "feet"),
  23689. default: true
  23690. },
  23691. ]
  23692. ))
  23693. characterMakers.push(() => makeCharacter(
  23694. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23695. {
  23696. front: {
  23697. height: math.unit(5 + 8 / 12, "feet"),
  23698. weight: math.unit(140, "lb"),
  23699. name: "Front",
  23700. image: {
  23701. source: "./media/characters/khemri/front.svg",
  23702. extra: 4780 / 4059,
  23703. bottom: 80.1 / 4859.25
  23704. }
  23705. },
  23706. },
  23707. [
  23708. {
  23709. name: "Micro",
  23710. height: math.unit(6, "inches")
  23711. },
  23712. {
  23713. name: "Normal",
  23714. height: math.unit(5 + 8 / 12, "feet"),
  23715. default: true
  23716. },
  23717. ]
  23718. ))
  23719. characterMakers.push(() => makeCharacter(
  23720. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23721. {
  23722. front: {
  23723. height: math.unit(13, "feet"),
  23724. weight: math.unit(1700, "lb"),
  23725. name: "Front",
  23726. image: {
  23727. source: "./media/characters/felix-braveheart/front.svg",
  23728. extra: 1222 / 1157,
  23729. bottom: 53.2 / 1280
  23730. }
  23731. },
  23732. back: {
  23733. height: math.unit(13, "feet"),
  23734. weight: math.unit(1700, "lb"),
  23735. name: "Back",
  23736. image: {
  23737. source: "./media/characters/felix-braveheart/back.svg",
  23738. extra: 1277 / 1203,
  23739. bottom: 50.2 / 1327
  23740. }
  23741. },
  23742. feral: {
  23743. height: math.unit(6, "feet"),
  23744. weight: math.unit(400, "lb"),
  23745. name: "Feral",
  23746. image: {
  23747. source: "./media/characters/felix-braveheart/feral.svg",
  23748. extra: 682 / 625,
  23749. bottom: 6.9 / 688
  23750. }
  23751. },
  23752. },
  23753. [
  23754. {
  23755. name: "Normal",
  23756. height: math.unit(13, "feet"),
  23757. default: true
  23758. },
  23759. ]
  23760. ))
  23761. characterMakers.push(() => makeCharacter(
  23762. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23763. {
  23764. side: {
  23765. height: math.unit(5 + 11 / 12, "feet"),
  23766. weight: math.unit(1400, "lb"),
  23767. name: "Side",
  23768. image: {
  23769. source: "./media/characters/shadow-blade/side.svg",
  23770. extra: 1726 / 1267,
  23771. bottom: 58.4 / 1785
  23772. }
  23773. },
  23774. },
  23775. [
  23776. {
  23777. name: "Normal",
  23778. height: math.unit(5 + 11 / 12, "feet"),
  23779. default: true
  23780. },
  23781. ]
  23782. ))
  23783. characterMakers.push(() => makeCharacter(
  23784. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23785. {
  23786. front: {
  23787. height: math.unit(1 + 6 / 12, "feet"),
  23788. weight: math.unit(25, "lb"),
  23789. name: "Front",
  23790. image: {
  23791. source: "./media/characters/karla-halldor/front.svg",
  23792. extra: 1459 / 1383,
  23793. bottom: 12 / 1472
  23794. }
  23795. },
  23796. },
  23797. [
  23798. {
  23799. name: "Normal",
  23800. height: math.unit(1 + 6 / 12, "feet"),
  23801. default: true
  23802. },
  23803. ]
  23804. ))
  23805. characterMakers.push(() => makeCharacter(
  23806. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23807. {
  23808. front: {
  23809. height: math.unit(6 + 2 / 12, "feet"),
  23810. weight: math.unit(160, "lb"),
  23811. name: "Front",
  23812. image: {
  23813. source: "./media/characters/ariam/front.svg",
  23814. extra: 714 / 617,
  23815. bottom: 23.4 / 737,
  23816. }
  23817. },
  23818. squatting: {
  23819. height: math.unit(4.1, "feet"),
  23820. weight: math.unit(160, "lb"),
  23821. name: "Squatting",
  23822. image: {
  23823. source: "./media/characters/ariam/squatting.svg",
  23824. extra: 2617 / 2112,
  23825. bottom: 61.2 / 2681,
  23826. }
  23827. },
  23828. },
  23829. [
  23830. {
  23831. name: "Normal",
  23832. height: math.unit(6 + 2 / 12, "feet"),
  23833. default: true
  23834. },
  23835. {
  23836. name: "Normal+",
  23837. height: math.unit(4, "meters")
  23838. },
  23839. {
  23840. name: "Macro",
  23841. height: math.unit(50, "meters")
  23842. },
  23843. {
  23844. name: "Macro+",
  23845. height: math.unit(100, "meters")
  23846. },
  23847. {
  23848. name: "Megamacro",
  23849. height: math.unit(20, "km")
  23850. },
  23851. ]
  23852. ))
  23853. characterMakers.push(() => makeCharacter(
  23854. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23855. {
  23856. front: {
  23857. height: math.unit(1.67, "meters"),
  23858. weight: math.unit(140, "lb"),
  23859. name: "Front",
  23860. image: {
  23861. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23862. extra: 438 / 410,
  23863. bottom: 0.75 / 439
  23864. }
  23865. },
  23866. },
  23867. [
  23868. {
  23869. name: "Shrunken",
  23870. height: math.unit(7.6, "cm")
  23871. },
  23872. {
  23873. name: "Human Scale",
  23874. height: math.unit(1.67, "meters")
  23875. },
  23876. {
  23877. name: "Wolxi Scale",
  23878. height: math.unit(36.7, "meters"),
  23879. default: true
  23880. },
  23881. ]
  23882. ))
  23883. characterMakers.push(() => makeCharacter(
  23884. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23885. {
  23886. front: {
  23887. height: math.unit(1.73, "meters"),
  23888. weight: math.unit(240, "lb"),
  23889. name: "Front",
  23890. image: {
  23891. source: "./media/characters/izue-two-mothers/front.svg",
  23892. extra: 469 / 437,
  23893. bottom: 1.24 / 470.6
  23894. }
  23895. },
  23896. },
  23897. [
  23898. {
  23899. name: "Shrunken",
  23900. height: math.unit(7.86, "cm")
  23901. },
  23902. {
  23903. name: "Human Scale",
  23904. height: math.unit(1.73, "meters")
  23905. },
  23906. {
  23907. name: "Wolxi Scale",
  23908. height: math.unit(38, "meters"),
  23909. default: true
  23910. },
  23911. ]
  23912. ))
  23913. characterMakers.push(() => makeCharacter(
  23914. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23915. {
  23916. front: {
  23917. height: math.unit(1.55, "meters"),
  23918. weight: math.unit(120, "lb"),
  23919. name: "Front",
  23920. image: {
  23921. source: "./media/characters/teeku-love-shack/front.svg",
  23922. extra: 387 / 362,
  23923. bottom: 1.51 / 388
  23924. }
  23925. },
  23926. },
  23927. [
  23928. {
  23929. name: "Shrunken",
  23930. height: math.unit(7, "cm")
  23931. },
  23932. {
  23933. name: "Human Scale",
  23934. height: math.unit(1.55, "meters")
  23935. },
  23936. {
  23937. name: "Wolxi Scale",
  23938. height: math.unit(34.1, "meters"),
  23939. default: true
  23940. },
  23941. ]
  23942. ))
  23943. characterMakers.push(() => makeCharacter(
  23944. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23945. {
  23946. front: {
  23947. height: math.unit(1.83, "meters"),
  23948. weight: math.unit(135, "lb"),
  23949. name: "Front",
  23950. image: {
  23951. source: "./media/characters/dejma-the-red/front.svg",
  23952. extra: 480 / 458,
  23953. bottom: 1.8 / 482
  23954. }
  23955. },
  23956. },
  23957. [
  23958. {
  23959. name: "Shrunken",
  23960. height: math.unit(8.3, "cm")
  23961. },
  23962. {
  23963. name: "Human Scale",
  23964. height: math.unit(1.83, "meters")
  23965. },
  23966. {
  23967. name: "Wolxi Scale",
  23968. height: math.unit(40, "meters"),
  23969. default: true
  23970. },
  23971. ]
  23972. ))
  23973. characterMakers.push(() => makeCharacter(
  23974. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23975. {
  23976. front: {
  23977. height: math.unit(1.78, "meters"),
  23978. weight: math.unit(65, "kg"),
  23979. name: "Front",
  23980. image: {
  23981. source: "./media/characters/aki/front.svg",
  23982. extra: 452 / 415
  23983. }
  23984. },
  23985. frontNsfw: {
  23986. height: math.unit(1.78, "meters"),
  23987. weight: math.unit(65, "kg"),
  23988. name: "Front (NSFW)",
  23989. image: {
  23990. source: "./media/characters/aki/front-nsfw.svg",
  23991. extra: 452 / 415
  23992. }
  23993. },
  23994. back: {
  23995. height: math.unit(1.78, "meters"),
  23996. weight: math.unit(65, "kg"),
  23997. name: "Back",
  23998. image: {
  23999. source: "./media/characters/aki/back.svg",
  24000. extra: 452 / 415
  24001. }
  24002. },
  24003. rump: {
  24004. height: math.unit(2.05, "feet"),
  24005. name: "Rump",
  24006. image: {
  24007. source: "./media/characters/aki/rump.svg"
  24008. }
  24009. },
  24010. dick: {
  24011. height: math.unit(0.95, "feet"),
  24012. name: "Dick",
  24013. image: {
  24014. source: "./media/characters/aki/dick.svg"
  24015. }
  24016. },
  24017. },
  24018. [
  24019. {
  24020. name: "Micro",
  24021. height: math.unit(15, "cm")
  24022. },
  24023. {
  24024. name: "Normal",
  24025. height: math.unit(178, "cm"),
  24026. default: true
  24027. },
  24028. {
  24029. name: "Macro",
  24030. height: math.unit(214, "m")
  24031. },
  24032. {
  24033. name: "Macro+",
  24034. height: math.unit(534, "m")
  24035. },
  24036. ]
  24037. ))
  24038. characterMakers.push(() => makeCharacter(
  24039. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24040. {
  24041. front: {
  24042. height: math.unit(5 + 5 / 12, "feet"),
  24043. weight: math.unit(120, "lb"),
  24044. name: "Front",
  24045. image: {
  24046. source: "./media/characters/ari/front.svg",
  24047. extra: 714.5 / 682,
  24048. bottom: 8 / 722.5
  24049. }
  24050. },
  24051. },
  24052. [
  24053. {
  24054. name: "Normal",
  24055. height: math.unit(5 + 5 / 12, "feet")
  24056. },
  24057. {
  24058. name: "Macro",
  24059. height: math.unit(100, "feet"),
  24060. default: true
  24061. },
  24062. {
  24063. name: "Megamacro",
  24064. height: math.unit(100, "miles")
  24065. },
  24066. {
  24067. name: "Gigamacro",
  24068. height: math.unit(80000, "miles")
  24069. },
  24070. ]
  24071. ))
  24072. characterMakers.push(() => makeCharacter(
  24073. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24074. {
  24075. side: {
  24076. height: math.unit(9, "feet"),
  24077. weight: math.unit(400, "kg"),
  24078. name: "Side",
  24079. image: {
  24080. source: "./media/characters/bolt/side.svg",
  24081. extra: 1126 / 896,
  24082. bottom: 60 / 1187.3,
  24083. }
  24084. },
  24085. },
  24086. [
  24087. {
  24088. name: "Micro",
  24089. height: math.unit(5, "inches")
  24090. },
  24091. {
  24092. name: "Normal",
  24093. height: math.unit(9, "feet"),
  24094. default: true
  24095. },
  24096. {
  24097. name: "Macro",
  24098. height: math.unit(700, "feet")
  24099. },
  24100. {
  24101. name: "Max Size",
  24102. height: math.unit(1.52e22, "yottameters")
  24103. },
  24104. ]
  24105. ))
  24106. characterMakers.push(() => makeCharacter(
  24107. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24108. {
  24109. front: {
  24110. height: math.unit(4.53, "meters"),
  24111. weight: math.unit(3, "tons"),
  24112. name: "Front",
  24113. image: {
  24114. source: "./media/characters/draekon-sylviar/front.svg",
  24115. extra: 1228 / 1068,
  24116. bottom: 41 / 1270
  24117. }
  24118. },
  24119. tail: {
  24120. height: math.unit(1.772, "meter"),
  24121. name: "Tail",
  24122. image: {
  24123. source: "./media/characters/draekon-sylviar/tail.svg"
  24124. }
  24125. },
  24126. head: {
  24127. height: math.unit(1.331, "meter"),
  24128. name: "Head",
  24129. image: {
  24130. source: "./media/characters/draekon-sylviar/head.svg"
  24131. }
  24132. },
  24133. hand: {
  24134. height: math.unit(0.564, "meter"),
  24135. name: "Hand",
  24136. image: {
  24137. source: "./media/characters/draekon-sylviar/hand.svg"
  24138. }
  24139. },
  24140. foot: {
  24141. height: math.unit(0.621, "meter"),
  24142. name: "Foot",
  24143. image: {
  24144. source: "./media/characters/draekon-sylviar/foot.svg",
  24145. bottom: 32 / 324
  24146. }
  24147. },
  24148. dick: {
  24149. height: math.unit(61, "cm"),
  24150. name: "Dick",
  24151. image: {
  24152. source: "./media/characters/draekon-sylviar/dick.svg"
  24153. }
  24154. },
  24155. dickseparated: {
  24156. height: math.unit(61, "cm"),
  24157. name: "Dick-separated",
  24158. image: {
  24159. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24160. }
  24161. },
  24162. },
  24163. [
  24164. {
  24165. name: "Small",
  24166. height: math.unit(4.53 / 2, "meters"),
  24167. default: true
  24168. },
  24169. {
  24170. name: "Normal",
  24171. height: math.unit(4.53, "meters"),
  24172. default: true
  24173. },
  24174. {
  24175. name: "Large",
  24176. height: math.unit(4.53 * 2, "meters"),
  24177. },
  24178. ]
  24179. ))
  24180. characterMakers.push(() => makeCharacter(
  24181. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24182. {
  24183. front: {
  24184. height: math.unit(6 + 2 / 12, "feet"),
  24185. weight: math.unit(180, "lb"),
  24186. name: "Front",
  24187. image: {
  24188. source: "./media/characters/brawler/front.svg",
  24189. extra: 3301 / 3027,
  24190. bottom: 138 / 3439
  24191. }
  24192. },
  24193. },
  24194. [
  24195. {
  24196. name: "Normal",
  24197. height: math.unit(6 + 2 / 12, "feet"),
  24198. default: true
  24199. },
  24200. ]
  24201. ))
  24202. characterMakers.push(() => makeCharacter(
  24203. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24204. {
  24205. front: {
  24206. height: math.unit(11, "feet"),
  24207. weight: math.unit(1000, "lb"),
  24208. name: "Front",
  24209. image: {
  24210. source: "./media/characters/alex/front.svg",
  24211. bottom: 44.5 / 620
  24212. }
  24213. },
  24214. },
  24215. [
  24216. {
  24217. name: "Micro",
  24218. height: math.unit(5, "inches")
  24219. },
  24220. {
  24221. name: "Normal",
  24222. height: math.unit(11, "feet"),
  24223. default: true
  24224. },
  24225. {
  24226. name: "Macro",
  24227. height: math.unit(9.5e9, "feet")
  24228. },
  24229. {
  24230. name: "Max Size",
  24231. height: math.unit(1.4e283, "yottameters")
  24232. },
  24233. ]
  24234. ))
  24235. characterMakers.push(() => makeCharacter(
  24236. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24237. {
  24238. female: {
  24239. height: math.unit(29.9, "m"),
  24240. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24241. name: "Female",
  24242. image: {
  24243. source: "./media/characters/zenari/female.svg",
  24244. extra: 3281.6 / 3217,
  24245. bottom: 72.2 / 3353
  24246. }
  24247. },
  24248. male: {
  24249. height: math.unit(27.7, "m"),
  24250. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24251. name: "Male",
  24252. image: {
  24253. source: "./media/characters/zenari/male.svg",
  24254. extra: 3008 / 2991,
  24255. bottom: 54.6 / 3069
  24256. }
  24257. },
  24258. },
  24259. [
  24260. {
  24261. name: "Macro",
  24262. height: math.unit(29.7, "meters"),
  24263. default: true
  24264. },
  24265. ]
  24266. ))
  24267. characterMakers.push(() => makeCharacter(
  24268. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24269. {
  24270. female: {
  24271. height: math.unit(23.8, "m"),
  24272. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24273. name: "Female",
  24274. image: {
  24275. source: "./media/characters/mactarian/female.svg",
  24276. extra: 2662 / 2569,
  24277. bottom: 73 / 2736
  24278. }
  24279. },
  24280. male: {
  24281. height: math.unit(23.8, "m"),
  24282. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24283. name: "Male",
  24284. image: {
  24285. source: "./media/characters/mactarian/male.svg",
  24286. extra: 2673 / 2600,
  24287. bottom: 76 / 2750
  24288. }
  24289. },
  24290. },
  24291. [
  24292. {
  24293. name: "Macro",
  24294. height: math.unit(23.8, "meters"),
  24295. default: true
  24296. },
  24297. ]
  24298. ))
  24299. characterMakers.push(() => makeCharacter(
  24300. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24301. {
  24302. female: {
  24303. height: math.unit(19.3, "m"),
  24304. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24305. name: "Female",
  24306. image: {
  24307. source: "./media/characters/umok/female.svg",
  24308. extra: 2186 / 2078,
  24309. bottom: 87 / 2277
  24310. }
  24311. },
  24312. male: {
  24313. height: math.unit(19.5, "m"),
  24314. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24315. name: "Male",
  24316. image: {
  24317. source: "./media/characters/umok/male.svg",
  24318. extra: 2233 / 2140,
  24319. bottom: 24.4 / 2258
  24320. }
  24321. },
  24322. },
  24323. [
  24324. {
  24325. name: "Macro",
  24326. height: math.unit(19.3, "meters"),
  24327. default: true
  24328. },
  24329. ]
  24330. ))
  24331. characterMakers.push(() => makeCharacter(
  24332. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24333. {
  24334. female: {
  24335. height: math.unit(26.15, "m"),
  24336. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24337. name: "Female",
  24338. image: {
  24339. source: "./media/characters/joraxian/female.svg",
  24340. extra: 2912 / 2824,
  24341. bottom: 36 / 2956
  24342. }
  24343. },
  24344. male: {
  24345. height: math.unit(25.4, "m"),
  24346. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24347. name: "Male",
  24348. image: {
  24349. source: "./media/characters/joraxian/male.svg",
  24350. extra: 2877 / 2721,
  24351. bottom: 82 / 2967
  24352. }
  24353. },
  24354. },
  24355. [
  24356. {
  24357. name: "Macro",
  24358. height: math.unit(26.15, "meters"),
  24359. default: true
  24360. },
  24361. ]
  24362. ))
  24363. characterMakers.push(() => makeCharacter(
  24364. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24365. {
  24366. female: {
  24367. height: math.unit(21.6, "m"),
  24368. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24369. name: "Female",
  24370. image: {
  24371. source: "./media/characters/sthara/female.svg",
  24372. extra: 2516 / 2347,
  24373. bottom: 21.5 / 2537
  24374. }
  24375. },
  24376. male: {
  24377. height: math.unit(24, "m"),
  24378. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24379. name: "Male",
  24380. image: {
  24381. source: "./media/characters/sthara/male.svg",
  24382. extra: 2732 / 2607,
  24383. bottom: 23 / 2732
  24384. }
  24385. },
  24386. },
  24387. [
  24388. {
  24389. name: "Macro",
  24390. height: math.unit(21.6, "meters"),
  24391. default: true
  24392. },
  24393. ]
  24394. ))
  24395. characterMakers.push(() => makeCharacter(
  24396. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24397. {
  24398. front: {
  24399. height: math.unit(6 + 4 / 12, "feet"),
  24400. weight: math.unit(175, "lb"),
  24401. name: "Front",
  24402. image: {
  24403. source: "./media/characters/luka-bryzant/front.svg",
  24404. extra: 311 / 289,
  24405. bottom: 4 / 315
  24406. }
  24407. },
  24408. back: {
  24409. height: math.unit(6 + 4 / 12, "feet"),
  24410. weight: math.unit(175, "lb"),
  24411. name: "Back",
  24412. image: {
  24413. source: "./media/characters/luka-bryzant/back.svg",
  24414. extra: 311 / 289,
  24415. bottom: 3.8 / 313.7
  24416. }
  24417. },
  24418. },
  24419. [
  24420. {
  24421. name: "Micro",
  24422. height: math.unit(10, "inches")
  24423. },
  24424. {
  24425. name: "Normal",
  24426. height: math.unit(6 + 4 / 12, "feet"),
  24427. default: true
  24428. },
  24429. {
  24430. name: "Large",
  24431. height: math.unit(12, "feet")
  24432. },
  24433. ]
  24434. ))
  24435. characterMakers.push(() => makeCharacter(
  24436. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24437. {
  24438. front: {
  24439. height: math.unit(5 + 7 / 12, "feet"),
  24440. weight: math.unit(185, "lb"),
  24441. name: "Front",
  24442. image: {
  24443. source: "./media/characters/aman-aquila/front.svg",
  24444. extra: 1013 / 976,
  24445. bottom: 45.6 / 1057
  24446. }
  24447. },
  24448. side: {
  24449. height: math.unit(5 + 7 / 12, "feet"),
  24450. weight: math.unit(185, "lb"),
  24451. name: "Side",
  24452. image: {
  24453. source: "./media/characters/aman-aquila/side.svg",
  24454. extra: 1054 / 1011,
  24455. bottom: 15 / 1070
  24456. }
  24457. },
  24458. back: {
  24459. height: math.unit(5 + 7 / 12, "feet"),
  24460. weight: math.unit(185, "lb"),
  24461. name: "Back",
  24462. image: {
  24463. source: "./media/characters/aman-aquila/back.svg",
  24464. extra: 1026 / 970,
  24465. bottom: 12 / 1039
  24466. }
  24467. },
  24468. head: {
  24469. height: math.unit(1.211, "feet"),
  24470. name: "Head",
  24471. image: {
  24472. source: "./media/characters/aman-aquila/head.svg",
  24473. }
  24474. },
  24475. },
  24476. [
  24477. {
  24478. name: "Minimicro",
  24479. height: math.unit(0.057, "inches")
  24480. },
  24481. {
  24482. name: "Micro",
  24483. height: math.unit(7, "inches")
  24484. },
  24485. {
  24486. name: "Mini",
  24487. height: math.unit(3 + 7 / 12, "feet")
  24488. },
  24489. {
  24490. name: "Normal",
  24491. height: math.unit(5 + 7 / 12, "feet"),
  24492. default: true
  24493. },
  24494. {
  24495. name: "Macro",
  24496. height: math.unit(157 + 7 / 12, "feet")
  24497. },
  24498. {
  24499. name: "Megamacro",
  24500. height: math.unit(1557 + 7 / 12, "feet")
  24501. },
  24502. {
  24503. name: "Gigamacro",
  24504. height: math.unit(15557 + 7 / 12, "feet")
  24505. },
  24506. ]
  24507. ))
  24508. characterMakers.push(() => makeCharacter(
  24509. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24510. {
  24511. front: {
  24512. height: math.unit(3 + 2 / 12, "inches"),
  24513. weight: math.unit(0.3, "ounces"),
  24514. name: "Front",
  24515. image: {
  24516. source: "./media/characters/hiphae/front.svg",
  24517. extra: 1931 / 1683,
  24518. bottom: 24 / 1955
  24519. }
  24520. },
  24521. },
  24522. [
  24523. {
  24524. name: "Normal",
  24525. height: math.unit(3 + 1 / 2, "inches"),
  24526. default: true
  24527. },
  24528. ]
  24529. ))
  24530. characterMakers.push(() => makeCharacter(
  24531. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24532. {
  24533. front: {
  24534. height: math.unit(5 + 10 / 12, "feet"),
  24535. weight: math.unit(165, "lb"),
  24536. name: "Front",
  24537. image: {
  24538. source: "./media/characters/nicky/front.svg",
  24539. extra: 3144 / 2886,
  24540. bottom: 45.6 / 3192
  24541. }
  24542. },
  24543. back: {
  24544. height: math.unit(5 + 10 / 12, "feet"),
  24545. weight: math.unit(165, "lb"),
  24546. name: "Back",
  24547. image: {
  24548. source: "./media/characters/nicky/back.svg",
  24549. extra: 3055 / 2804,
  24550. bottom: 28.4 / 3087
  24551. }
  24552. },
  24553. frontclothed: {
  24554. height: math.unit(5 + 10 / 12, "feet"),
  24555. weight: math.unit(165, "lb"),
  24556. name: "Front-clothed",
  24557. image: {
  24558. source: "./media/characters/nicky/front-clothed.svg",
  24559. extra: 3184.9 / 2926.9,
  24560. bottom: 86.5 / 3239.9
  24561. }
  24562. },
  24563. foot: {
  24564. height: math.unit(1.16, "feet"),
  24565. name: "Foot",
  24566. image: {
  24567. source: "./media/characters/nicky/foot.svg"
  24568. }
  24569. },
  24570. feet: {
  24571. height: math.unit(1.34, "feet"),
  24572. name: "Feet",
  24573. image: {
  24574. source: "./media/characters/nicky/feet.svg"
  24575. }
  24576. },
  24577. maw: {
  24578. height: math.unit(0.9, "feet"),
  24579. name: "Maw",
  24580. image: {
  24581. source: "./media/characters/nicky/maw.svg"
  24582. }
  24583. },
  24584. },
  24585. [
  24586. {
  24587. name: "Normal",
  24588. height: math.unit(5 + 10 / 12, "feet"),
  24589. default: true
  24590. },
  24591. {
  24592. name: "Macro",
  24593. height: math.unit(60, "feet")
  24594. },
  24595. {
  24596. name: "Megamacro",
  24597. height: math.unit(1, "mile")
  24598. },
  24599. ]
  24600. ))
  24601. characterMakers.push(() => makeCharacter(
  24602. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24603. {
  24604. side: {
  24605. height: math.unit(10, "feet"),
  24606. weight: math.unit(600, "lb"),
  24607. name: "Side",
  24608. image: {
  24609. source: "./media/characters/blair/side.svg",
  24610. bottom: 16.6 / 475,
  24611. extra: 458 / 431
  24612. }
  24613. },
  24614. },
  24615. [
  24616. {
  24617. name: "Micro",
  24618. height: math.unit(8, "inches")
  24619. },
  24620. {
  24621. name: "Normal",
  24622. height: math.unit(10, "feet"),
  24623. default: true
  24624. },
  24625. {
  24626. name: "Macro",
  24627. height: math.unit(180, "feet")
  24628. },
  24629. ]
  24630. ))
  24631. characterMakers.push(() => makeCharacter(
  24632. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24633. {
  24634. front: {
  24635. height: math.unit(5 + 4 / 12, "feet"),
  24636. weight: math.unit(125, "lb"),
  24637. name: "Front",
  24638. image: {
  24639. source: "./media/characters/fisher/front.svg",
  24640. extra: 444 / 390,
  24641. bottom: 2 / 444.8
  24642. }
  24643. },
  24644. },
  24645. [
  24646. {
  24647. name: "Micro",
  24648. height: math.unit(4, "inches")
  24649. },
  24650. {
  24651. name: "Normal",
  24652. height: math.unit(5 + 4 / 12, "feet"),
  24653. default: true
  24654. },
  24655. {
  24656. name: "Macro",
  24657. height: math.unit(100, "feet")
  24658. },
  24659. ]
  24660. ))
  24661. characterMakers.push(() => makeCharacter(
  24662. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24663. {
  24664. front: {
  24665. height: math.unit(6.71, "feet"),
  24666. weight: math.unit(200, "lb"),
  24667. capacity: math.unit(1000000, "people"),
  24668. name: "Front",
  24669. image: {
  24670. source: "./media/characters/gliss/front.svg",
  24671. extra: 2347 / 2231,
  24672. bottom: 113 / 2462
  24673. }
  24674. },
  24675. hammerspaceSize: {
  24676. height: math.unit(6.71 * 717, "feet"),
  24677. weight: math.unit(200, "lb"),
  24678. capacity: math.unit(1000000, "people"),
  24679. name: "Hammerspace Size",
  24680. image: {
  24681. source: "./media/characters/gliss/front.svg",
  24682. extra: 2347 / 2231,
  24683. bottom: 113 / 2462
  24684. }
  24685. },
  24686. },
  24687. [
  24688. {
  24689. name: "Normal",
  24690. height: math.unit(6.71, "feet"),
  24691. default: true
  24692. },
  24693. ]
  24694. ))
  24695. characterMakers.push(() => makeCharacter(
  24696. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24697. {
  24698. side: {
  24699. height: math.unit(1.44, "m"),
  24700. weight: math.unit(80, "kg"),
  24701. name: "Side",
  24702. image: {
  24703. source: "./media/characters/dune-anderson/side.svg",
  24704. bottom: 49 / 1426
  24705. }
  24706. },
  24707. },
  24708. [
  24709. {
  24710. name: "Wolf-sized",
  24711. height: math.unit(1.44, "meters")
  24712. },
  24713. {
  24714. name: "Normal",
  24715. height: math.unit(5.05, "meters"),
  24716. default: true
  24717. },
  24718. {
  24719. name: "Big",
  24720. height: math.unit(14.4, "meters")
  24721. },
  24722. {
  24723. name: "Huge",
  24724. height: math.unit(144, "meters")
  24725. },
  24726. ]
  24727. ))
  24728. characterMakers.push(() => makeCharacter(
  24729. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24730. {
  24731. front: {
  24732. height: math.unit(7, "feet"),
  24733. weight: math.unit(425, "lb"),
  24734. name: "Front",
  24735. image: {
  24736. source: "./media/characters/hind/front.svg",
  24737. extra: 2091 / 1860,
  24738. bottom: 129 / 2220
  24739. }
  24740. },
  24741. back: {
  24742. height: math.unit(7, "feet"),
  24743. weight: math.unit(425, "lb"),
  24744. name: "Back",
  24745. image: {
  24746. source: "./media/characters/hind/back.svg",
  24747. extra: 2091 / 1860,
  24748. bottom: 24.6 / 2309
  24749. }
  24750. },
  24751. tail: {
  24752. height: math.unit(2.8, "feet"),
  24753. name: "Tail",
  24754. image: {
  24755. source: "./media/characters/hind/tail.svg"
  24756. }
  24757. },
  24758. head: {
  24759. height: math.unit(2.55, "feet"),
  24760. name: "Head",
  24761. image: {
  24762. source: "./media/characters/hind/head.svg"
  24763. }
  24764. },
  24765. },
  24766. [
  24767. {
  24768. name: "XS",
  24769. height: math.unit(0.7, "feet")
  24770. },
  24771. {
  24772. name: "Normal",
  24773. height: math.unit(7, "feet"),
  24774. default: true
  24775. },
  24776. {
  24777. name: "XL",
  24778. height: math.unit(70, "feet")
  24779. },
  24780. ]
  24781. ))
  24782. characterMakers.push(() => makeCharacter(
  24783. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24784. {
  24785. front: {
  24786. height: math.unit(6, "feet"),
  24787. weight: math.unit(150, "lb"),
  24788. name: "Front",
  24789. image: {
  24790. source: "./media/characters/dylan-skaven/front.svg",
  24791. extra: 2318 / 2063,
  24792. bottom: 93.4 / 2410
  24793. }
  24794. },
  24795. },
  24796. [
  24797. {
  24798. name: "Nano",
  24799. height: math.unit(1, "mm")
  24800. },
  24801. {
  24802. name: "Micro",
  24803. height: math.unit(1, "cm")
  24804. },
  24805. {
  24806. name: "Normal",
  24807. height: math.unit(2.1, "meters"),
  24808. default: true
  24809. },
  24810. ]
  24811. ))
  24812. characterMakers.push(() => makeCharacter(
  24813. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24814. {
  24815. front: {
  24816. height: math.unit(7 + 5 / 12, "feet"),
  24817. weight: math.unit(357, "lb"),
  24818. name: "Front",
  24819. image: {
  24820. source: "./media/characters/solex-draconov/front.svg",
  24821. extra: 1993 / 1865,
  24822. bottom: 117 / 2111
  24823. }
  24824. },
  24825. },
  24826. [
  24827. {
  24828. name: "Natural Height",
  24829. height: math.unit(7 + 5 / 12, "feet"),
  24830. default: true
  24831. },
  24832. {
  24833. name: "Macro",
  24834. height: math.unit(350, "feet")
  24835. },
  24836. {
  24837. name: "Macro+",
  24838. height: math.unit(1000, "feet")
  24839. },
  24840. {
  24841. name: "Megamacro",
  24842. height: math.unit(20, "km")
  24843. },
  24844. {
  24845. name: "Megamacro+",
  24846. height: math.unit(1000, "km")
  24847. },
  24848. {
  24849. name: "Gigamacro",
  24850. height: math.unit(2.5, "Gm")
  24851. },
  24852. {
  24853. name: "Teramacro",
  24854. height: math.unit(15, "Tm")
  24855. },
  24856. {
  24857. name: "Galactic",
  24858. height: math.unit(30, "Zm")
  24859. },
  24860. {
  24861. name: "Universal",
  24862. height: math.unit(21000, "Ym")
  24863. },
  24864. {
  24865. name: "Omniversal",
  24866. height: math.unit(9.861e50, "Ym")
  24867. },
  24868. {
  24869. name: "Existential",
  24870. height: math.unit(1e300, "meters")
  24871. },
  24872. ]
  24873. ))
  24874. characterMakers.push(() => makeCharacter(
  24875. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24876. {
  24877. side: {
  24878. height: math.unit(25, "feet"),
  24879. weight: math.unit(90000, "lb"),
  24880. name: "Side",
  24881. image: {
  24882. source: "./media/characters/mandarax/side.svg",
  24883. extra: 614 / 332,
  24884. bottom: 55 / 630
  24885. }
  24886. },
  24887. head: {
  24888. height: math.unit(11.4, "feet"),
  24889. name: "Head",
  24890. image: {
  24891. source: "./media/characters/mandarax/head.svg"
  24892. }
  24893. },
  24894. belly: {
  24895. height: math.unit(33, "feet"),
  24896. name: "Belly",
  24897. capacity: math.unit(500, "people"),
  24898. image: {
  24899. source: "./media/characters/mandarax/belly.svg"
  24900. }
  24901. },
  24902. dick: {
  24903. height: math.unit(8.46, "feet"),
  24904. name: "Dick",
  24905. image: {
  24906. source: "./media/characters/mandarax/dick.svg"
  24907. }
  24908. },
  24909. top: {
  24910. height: math.unit(28, "meters"),
  24911. name: "Top",
  24912. image: {
  24913. source: "./media/characters/mandarax/top.svg"
  24914. }
  24915. },
  24916. },
  24917. [
  24918. {
  24919. name: "Normal",
  24920. height: math.unit(25, "feet"),
  24921. default: true
  24922. },
  24923. ]
  24924. ))
  24925. characterMakers.push(() => makeCharacter(
  24926. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24927. {
  24928. front: {
  24929. height: math.unit(5, "feet"),
  24930. weight: math.unit(90, "lb"),
  24931. name: "Front",
  24932. image: {
  24933. source: "./media/characters/pixil/front.svg",
  24934. extra: 2000 / 1618,
  24935. bottom: 12.3 / 2011
  24936. }
  24937. },
  24938. },
  24939. [
  24940. {
  24941. name: "Normal",
  24942. height: math.unit(5, "feet"),
  24943. default: true
  24944. },
  24945. {
  24946. name: "Megamacro",
  24947. height: math.unit(10, "miles"),
  24948. },
  24949. ]
  24950. ))
  24951. characterMakers.push(() => makeCharacter(
  24952. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24953. {
  24954. front: {
  24955. height: math.unit(7 + 2 / 12, "feet"),
  24956. weight: math.unit(200, "lb"),
  24957. name: "Front",
  24958. image: {
  24959. source: "./media/characters/angel/front.svg",
  24960. extra: 1830 / 1737,
  24961. bottom: 22.6 / 1854,
  24962. }
  24963. },
  24964. },
  24965. [
  24966. {
  24967. name: "Normal",
  24968. height: math.unit(7 + 2 / 12, "feet"),
  24969. default: true
  24970. },
  24971. {
  24972. name: "Macro",
  24973. height: math.unit(1000, "feet")
  24974. },
  24975. {
  24976. name: "Megamacro",
  24977. height: math.unit(2, "miles")
  24978. },
  24979. {
  24980. name: "Gigamacro",
  24981. height: math.unit(20, "earths")
  24982. },
  24983. ]
  24984. ))
  24985. characterMakers.push(() => makeCharacter(
  24986. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24987. {
  24988. front: {
  24989. height: math.unit(5, "feet"),
  24990. weight: math.unit(180, "lb"),
  24991. name: "Front",
  24992. image: {
  24993. source: "./media/characters/mekana/front.svg",
  24994. extra: 1671 / 1605,
  24995. bottom: 3.5 / 1691
  24996. }
  24997. },
  24998. side: {
  24999. height: math.unit(5, "feet"),
  25000. weight: math.unit(180, "lb"),
  25001. name: "Side",
  25002. image: {
  25003. source: "./media/characters/mekana/side.svg",
  25004. extra: 1671 / 1605,
  25005. bottom: 3.5 / 1691
  25006. }
  25007. },
  25008. back: {
  25009. height: math.unit(5, "feet"),
  25010. weight: math.unit(180, "lb"),
  25011. name: "Back",
  25012. image: {
  25013. source: "./media/characters/mekana/back.svg",
  25014. extra: 1671 / 1605,
  25015. bottom: 3.5 / 1691
  25016. }
  25017. },
  25018. },
  25019. [
  25020. {
  25021. name: "Normal",
  25022. height: math.unit(5, "feet"),
  25023. default: true
  25024. },
  25025. ]
  25026. ))
  25027. characterMakers.push(() => makeCharacter(
  25028. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25029. {
  25030. front: {
  25031. height: math.unit(4 + 6 / 12, "feet"),
  25032. weight: math.unit(80, "lb"),
  25033. name: "Front",
  25034. image: {
  25035. source: "./media/characters/pixie/front.svg",
  25036. extra: 1924 / 1825,
  25037. bottom: 22.4 / 1946
  25038. }
  25039. },
  25040. },
  25041. [
  25042. {
  25043. name: "Normal",
  25044. height: math.unit(4 + 6 / 12, "feet"),
  25045. default: true
  25046. },
  25047. {
  25048. name: "Macro",
  25049. height: math.unit(40, "feet")
  25050. },
  25051. ]
  25052. ))
  25053. characterMakers.push(() => makeCharacter(
  25054. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25055. {
  25056. front: {
  25057. height: math.unit(2.1, "meters"),
  25058. weight: math.unit(200, "lb"),
  25059. name: "Front",
  25060. image: {
  25061. source: "./media/characters/the-lascivious/front.svg",
  25062. extra: 1 / 0.893,
  25063. bottom: 3.5 / 573.7
  25064. }
  25065. },
  25066. },
  25067. [
  25068. {
  25069. name: "Human Scale",
  25070. height: math.unit(2.1, "meters")
  25071. },
  25072. {
  25073. name: "Wolxi Scale",
  25074. height: math.unit(46.2, "m"),
  25075. default: true
  25076. },
  25077. {
  25078. name: "Boinker of Buildings",
  25079. height: math.unit(10, "km")
  25080. },
  25081. {
  25082. name: "Shagger of Skyscrapers",
  25083. height: math.unit(40, "km")
  25084. },
  25085. {
  25086. name: "Banger of Boroughs",
  25087. height: math.unit(4000, "km")
  25088. },
  25089. {
  25090. name: "Screwer of States",
  25091. height: math.unit(100000, "km")
  25092. },
  25093. {
  25094. name: "Pounder of Planets",
  25095. height: math.unit(2000000, "km")
  25096. },
  25097. ]
  25098. ))
  25099. characterMakers.push(() => makeCharacter(
  25100. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25101. {
  25102. front: {
  25103. height: math.unit(6, "feet"),
  25104. weight: math.unit(150, "lb"),
  25105. name: "Front",
  25106. image: {
  25107. source: "./media/characters/aj/front.svg",
  25108. extra: 2039 / 1562,
  25109. bottom: 40 / 2079
  25110. }
  25111. },
  25112. },
  25113. [
  25114. {
  25115. name: "Normal",
  25116. height: math.unit(11 + 6 / 12, "feet"),
  25117. default: true
  25118. },
  25119. {
  25120. name: "Megamacro",
  25121. height: math.unit(60, "megameters")
  25122. },
  25123. ]
  25124. ))
  25125. characterMakers.push(() => makeCharacter(
  25126. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25127. {
  25128. side: {
  25129. height: math.unit(31 + 8 / 12, "feet"),
  25130. weight: math.unit(75000, "kg"),
  25131. name: "Side",
  25132. image: {
  25133. source: "./media/characters/koros/side.svg",
  25134. extra: 1442 / 1297,
  25135. bottom: 122.7 / 1562
  25136. }
  25137. },
  25138. dicksKingsCrown: {
  25139. height: math.unit(6, "feet"),
  25140. name: "Dicks (King's Crown)",
  25141. image: {
  25142. source: "./media/characters/koros/dicks-kings-crown.svg"
  25143. }
  25144. },
  25145. dicksTailSet: {
  25146. height: math.unit(3, "feet"),
  25147. name: "Dicks (Tail Set)",
  25148. image: {
  25149. source: "./media/characters/koros/dicks-tail-set.svg"
  25150. }
  25151. },
  25152. dickCumming: {
  25153. height: math.unit(7.98, "feet"),
  25154. name: "Dick (Cumming)",
  25155. image: {
  25156. source: "./media/characters/koros/dick-cumming.svg"
  25157. }
  25158. },
  25159. dicksBack: {
  25160. height: math.unit(5.9, "feet"),
  25161. name: "Dicks (Back)",
  25162. image: {
  25163. source: "./media/characters/koros/dicks-back.svg"
  25164. }
  25165. },
  25166. dicksFront: {
  25167. height: math.unit(3.72, "feet"),
  25168. name: "Dicks (Front)",
  25169. image: {
  25170. source: "./media/characters/koros/dicks-front.svg"
  25171. }
  25172. },
  25173. dicksPeeking: {
  25174. height: math.unit(3.0, "feet"),
  25175. name: "Dicks (Peeking)",
  25176. image: {
  25177. source: "./media/characters/koros/dicks-peeking.svg"
  25178. }
  25179. },
  25180. eye: {
  25181. height: math.unit(1.7, "feet"),
  25182. name: "Eye",
  25183. image: {
  25184. source: "./media/characters/koros/eye.svg"
  25185. }
  25186. },
  25187. headFront: {
  25188. height: math.unit(11.69, "feet"),
  25189. name: "Head (Front)",
  25190. image: {
  25191. source: "./media/characters/koros/head-front.svg"
  25192. }
  25193. },
  25194. headSide: {
  25195. height: math.unit(14, "feet"),
  25196. name: "Head (Side)",
  25197. image: {
  25198. source: "./media/characters/koros/head-side.svg"
  25199. }
  25200. },
  25201. leg: {
  25202. height: math.unit(17, "feet"),
  25203. name: "Leg",
  25204. image: {
  25205. source: "./media/characters/koros/leg.svg"
  25206. }
  25207. },
  25208. mawSide: {
  25209. height: math.unit(12.8, "feet"),
  25210. name: "Maw (Side)",
  25211. image: {
  25212. source: "./media/characters/koros/maw-side.svg"
  25213. }
  25214. },
  25215. mawSpitting: {
  25216. height: math.unit(17, "feet"),
  25217. name: "Maw (Spitting)",
  25218. image: {
  25219. source: "./media/characters/koros/maw-spitting.svg"
  25220. }
  25221. },
  25222. slit: {
  25223. height: math.unit(2.8, "feet"),
  25224. name: "Slit",
  25225. image: {
  25226. source: "./media/characters/koros/slit.svg"
  25227. }
  25228. },
  25229. stomach: {
  25230. height: math.unit(6.8, "feet"),
  25231. capacity: math.unit(20, "people"),
  25232. name: "Stomach",
  25233. image: {
  25234. source: "./media/characters/koros/stomach.svg"
  25235. }
  25236. },
  25237. wingspanBottom: {
  25238. height: math.unit(114, "feet"),
  25239. name: "Wingspan (Bottom)",
  25240. image: {
  25241. source: "./media/characters/koros/wingspan-bottom.svg"
  25242. }
  25243. },
  25244. wingspanTop: {
  25245. height: math.unit(104, "feet"),
  25246. name: "Wingspan (Top)",
  25247. image: {
  25248. source: "./media/characters/koros/wingspan-top.svg"
  25249. }
  25250. },
  25251. },
  25252. [
  25253. {
  25254. name: "Normal",
  25255. height: math.unit(31 + 8 / 12, "feet"),
  25256. default: true
  25257. },
  25258. ]
  25259. ))
  25260. characterMakers.push(() => makeCharacter(
  25261. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25262. {
  25263. front: {
  25264. height: math.unit(18 + 5 / 12, "feet"),
  25265. weight: math.unit(3750, "kg"),
  25266. name: "Front",
  25267. image: {
  25268. source: "./media/characters/vexx/front.svg",
  25269. extra: 426 / 396,
  25270. bottom: 31.5 / 458
  25271. }
  25272. },
  25273. maw: {
  25274. height: math.unit(6, "feet"),
  25275. name: "Maw",
  25276. image: {
  25277. source: "./media/characters/vexx/maw.svg"
  25278. }
  25279. },
  25280. },
  25281. [
  25282. {
  25283. name: "Normal",
  25284. height: math.unit(18 + 5 / 12, "feet"),
  25285. default: true
  25286. },
  25287. ]
  25288. ))
  25289. characterMakers.push(() => makeCharacter(
  25290. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25291. {
  25292. front: {
  25293. height: math.unit(17 + 6 / 12, "feet"),
  25294. weight: math.unit(150, "lb"),
  25295. name: "Front",
  25296. image: {
  25297. source: "./media/characters/baadra/front.svg",
  25298. extra: 3137 / 2890,
  25299. bottom: 168.4 / 3305
  25300. }
  25301. },
  25302. back: {
  25303. height: math.unit(17 + 6 / 12, "feet"),
  25304. weight: math.unit(150, "lb"),
  25305. name: "Back",
  25306. image: {
  25307. source: "./media/characters/baadra/back.svg",
  25308. extra: 3142 / 2890,
  25309. bottom: 220 / 3371
  25310. }
  25311. },
  25312. head: {
  25313. height: math.unit(5.45, "feet"),
  25314. name: "Head",
  25315. image: {
  25316. source: "./media/characters/baadra/head.svg"
  25317. }
  25318. },
  25319. headAngry: {
  25320. height: math.unit(4.95, "feet"),
  25321. name: "Head (Angry)",
  25322. image: {
  25323. source: "./media/characters/baadra/head-angry.svg"
  25324. }
  25325. },
  25326. headOpen: {
  25327. height: math.unit(6, "feet"),
  25328. name: "Head (Open)",
  25329. image: {
  25330. source: "./media/characters/baadra/head-open.svg"
  25331. }
  25332. },
  25333. },
  25334. [
  25335. {
  25336. name: "Normal",
  25337. height: math.unit(17 + 6 / 12, "feet"),
  25338. default: true
  25339. },
  25340. ]
  25341. ))
  25342. characterMakers.push(() => makeCharacter(
  25343. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25344. {
  25345. front: {
  25346. height: math.unit(7 + 3 / 12, "feet"),
  25347. weight: math.unit(180, "lb"),
  25348. name: "Front",
  25349. image: {
  25350. source: "./media/characters/juri/front.svg",
  25351. extra: 1401 / 1237,
  25352. bottom: 18.5 / 1418
  25353. }
  25354. },
  25355. side: {
  25356. height: math.unit(7 + 3 / 12, "feet"),
  25357. weight: math.unit(180, "lb"),
  25358. name: "Side",
  25359. image: {
  25360. source: "./media/characters/juri/side.svg",
  25361. extra: 1424 / 1242,
  25362. bottom: 18.5 / 1447
  25363. }
  25364. },
  25365. sitting: {
  25366. height: math.unit(6, "feet"),
  25367. weight: math.unit(180, "lb"),
  25368. name: "Sitting",
  25369. image: {
  25370. source: "./media/characters/juri/sitting.svg",
  25371. extra: 1270 / 1143,
  25372. bottom: 100 / 1343
  25373. }
  25374. },
  25375. back: {
  25376. height: math.unit(7 + 3 / 12, "feet"),
  25377. weight: math.unit(180, "lb"),
  25378. name: "Back",
  25379. image: {
  25380. source: "./media/characters/juri/back.svg",
  25381. extra: 1377 / 1240,
  25382. bottom: 23.7 / 1405
  25383. }
  25384. },
  25385. maw: {
  25386. height: math.unit(2.8, "feet"),
  25387. name: "Maw",
  25388. image: {
  25389. source: "./media/characters/juri/maw.svg"
  25390. }
  25391. },
  25392. stomach: {
  25393. height: math.unit(0.89, "feet"),
  25394. capacity: math.unit(4, "liters"),
  25395. name: "Stomach",
  25396. image: {
  25397. source: "./media/characters/juri/stomach.svg"
  25398. }
  25399. },
  25400. },
  25401. [
  25402. {
  25403. name: "Normal",
  25404. height: math.unit(7 + 3 / 12, "feet"),
  25405. default: true
  25406. },
  25407. ]
  25408. ))
  25409. characterMakers.push(() => makeCharacter(
  25410. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25411. {
  25412. fox: {
  25413. height: math.unit(5 + 6 / 12, "feet"),
  25414. weight: math.unit(140, "lb"),
  25415. name: "Fox",
  25416. image: {
  25417. source: "./media/characters/maxene-sita/fox.svg",
  25418. extra: 146 / 138,
  25419. bottom: 2.1 / 148.19
  25420. }
  25421. },
  25422. foxLaying: {
  25423. height: math.unit(1.70, "feet"),
  25424. weight: math.unit(140, "lb"),
  25425. name: "Fox (Laying)",
  25426. image: {
  25427. source: "./media/characters/maxene-sita/fox-laying.svg",
  25428. extra: 910 / 572,
  25429. bottom: 71 / 981
  25430. }
  25431. },
  25432. kitsune: {
  25433. height: math.unit(10, "feet"),
  25434. weight: math.unit(800, "lb"),
  25435. name: "Kitsune",
  25436. image: {
  25437. source: "./media/characters/maxene-sita/kitsune.svg",
  25438. extra: 185 / 176,
  25439. bottom: 4.7 / 189.9
  25440. }
  25441. },
  25442. hellhound: {
  25443. height: math.unit(10, "feet"),
  25444. weight: math.unit(700, "lb"),
  25445. name: "Hellhound",
  25446. image: {
  25447. source: "./media/characters/maxene-sita/hellhound.svg",
  25448. extra: 1600 / 1545,
  25449. bottom: 81 / 1681
  25450. }
  25451. },
  25452. },
  25453. [
  25454. {
  25455. name: "Normal",
  25456. height: math.unit(5 + 6 / 12, "feet"),
  25457. default: true
  25458. },
  25459. ]
  25460. ))
  25461. characterMakers.push(() => makeCharacter(
  25462. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25463. {
  25464. front: {
  25465. height: math.unit(3 + 4 / 12, "feet"),
  25466. weight: math.unit(70, "lb"),
  25467. name: "Front",
  25468. image: {
  25469. source: "./media/characters/maia/front.svg",
  25470. extra: 227 / 219.5,
  25471. bottom: 40 / 267
  25472. }
  25473. },
  25474. back: {
  25475. height: math.unit(3 + 4 / 12, "feet"),
  25476. weight: math.unit(70, "lb"),
  25477. name: "Back",
  25478. image: {
  25479. source: "./media/characters/maia/back.svg",
  25480. extra: 237 / 225
  25481. }
  25482. },
  25483. },
  25484. [
  25485. {
  25486. name: "Normal",
  25487. height: math.unit(3 + 4 / 12, "feet"),
  25488. default: true
  25489. },
  25490. ]
  25491. ))
  25492. characterMakers.push(() => makeCharacter(
  25493. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25494. {
  25495. front: {
  25496. height: math.unit(5 + 10 / 12, "feet"),
  25497. weight: math.unit(197, "lb"),
  25498. name: "Front",
  25499. image: {
  25500. source: "./media/characters/jabaro/front.svg",
  25501. extra: 225 / 216,
  25502. bottom: 5.06 / 230
  25503. }
  25504. },
  25505. back: {
  25506. height: math.unit(5 + 10 / 12, "feet"),
  25507. weight: math.unit(197, "lb"),
  25508. name: "Back",
  25509. image: {
  25510. source: "./media/characters/jabaro/back.svg",
  25511. extra: 225 / 219,
  25512. bottom: 1.9 / 227
  25513. }
  25514. },
  25515. },
  25516. [
  25517. {
  25518. name: "Normal",
  25519. height: math.unit(5 + 10 / 12, "feet"),
  25520. default: true
  25521. },
  25522. ]
  25523. ))
  25524. characterMakers.push(() => makeCharacter(
  25525. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25526. {
  25527. front: {
  25528. height: math.unit(5 + 8 / 12, "feet"),
  25529. weight: math.unit(139, "lb"),
  25530. name: "Front",
  25531. image: {
  25532. source: "./media/characters/risa/front.svg",
  25533. extra: 270 / 260,
  25534. bottom: 11.2 / 282
  25535. }
  25536. },
  25537. back: {
  25538. height: math.unit(5 + 8 / 12, "feet"),
  25539. weight: math.unit(139, "lb"),
  25540. name: "Back",
  25541. image: {
  25542. source: "./media/characters/risa/back.svg",
  25543. extra: 264 / 255,
  25544. bottom: 4 / 268
  25545. }
  25546. },
  25547. },
  25548. [
  25549. {
  25550. name: "Normal",
  25551. height: math.unit(5 + 8 / 12, "feet"),
  25552. default: true
  25553. },
  25554. ]
  25555. ))
  25556. characterMakers.push(() => makeCharacter(
  25557. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25558. {
  25559. front: {
  25560. height: math.unit(2 + 11 / 12, "feet"),
  25561. weight: math.unit(30, "lb"),
  25562. name: "Front",
  25563. image: {
  25564. source: "./media/characters/weatley/front.svg",
  25565. bottom: 10.7 / 414,
  25566. extra: 403.5 / 362
  25567. }
  25568. },
  25569. back: {
  25570. height: math.unit(2 + 11 / 12, "feet"),
  25571. weight: math.unit(30, "lb"),
  25572. name: "Back",
  25573. image: {
  25574. source: "./media/characters/weatley/back.svg",
  25575. bottom: 10.7 / 414,
  25576. extra: 403.5 / 362
  25577. }
  25578. },
  25579. },
  25580. [
  25581. {
  25582. name: "Normal",
  25583. height: math.unit(2 + 11 / 12, "feet"),
  25584. default: true
  25585. },
  25586. ]
  25587. ))
  25588. characterMakers.push(() => makeCharacter(
  25589. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25590. {
  25591. front: {
  25592. height: math.unit(5 + 2 / 12, "feet"),
  25593. weight: math.unit(50, "kg"),
  25594. name: "Front",
  25595. image: {
  25596. source: "./media/characters/mercury-crescent/front.svg",
  25597. extra: 1088 / 1033,
  25598. bottom: 18.9 / 1109
  25599. }
  25600. },
  25601. },
  25602. [
  25603. {
  25604. name: "Normal",
  25605. height: math.unit(5 + 2 / 12, "feet"),
  25606. default: true
  25607. },
  25608. ]
  25609. ))
  25610. characterMakers.push(() => makeCharacter(
  25611. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25612. {
  25613. front: {
  25614. height: math.unit(2, "feet"),
  25615. weight: math.unit(15, "kg"),
  25616. name: "Front",
  25617. image: {
  25618. source: "./media/characters/diamond-jones/front.svg",
  25619. extra: 727/723,
  25620. bottom: 46/773
  25621. }
  25622. },
  25623. },
  25624. [
  25625. {
  25626. name: "Normal",
  25627. height: math.unit(2, "feet"),
  25628. default: true
  25629. },
  25630. ]
  25631. ))
  25632. characterMakers.push(() => makeCharacter(
  25633. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25634. {
  25635. front: {
  25636. height: math.unit(3, "feet"),
  25637. weight: math.unit(30, "kg"),
  25638. name: "Front",
  25639. image: {
  25640. source: "./media/characters/sweet-bit/front.svg",
  25641. extra: 675 / 567,
  25642. bottom: 27.7 / 703
  25643. }
  25644. },
  25645. },
  25646. [
  25647. {
  25648. name: "Normal",
  25649. height: math.unit(3, "feet"),
  25650. default: true
  25651. },
  25652. ]
  25653. ))
  25654. characterMakers.push(() => makeCharacter(
  25655. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25656. {
  25657. side: {
  25658. height: math.unit(9.178, "feet"),
  25659. weight: math.unit(500, "lb"),
  25660. name: "Side",
  25661. image: {
  25662. source: "./media/characters/umbrazen/side.svg",
  25663. extra: 1730 / 1473,
  25664. bottom: 34.6 / 1765
  25665. }
  25666. },
  25667. },
  25668. [
  25669. {
  25670. name: "Normal",
  25671. height: math.unit(9.178, "feet"),
  25672. default: true
  25673. },
  25674. ]
  25675. ))
  25676. characterMakers.push(() => makeCharacter(
  25677. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25678. {
  25679. front: {
  25680. height: math.unit(10, "feet"),
  25681. weight: math.unit(750, "lb"),
  25682. name: "Front",
  25683. image: {
  25684. source: "./media/characters/arlist/front.svg",
  25685. extra: 961 / 778,
  25686. bottom: 6.2 / 986
  25687. }
  25688. },
  25689. },
  25690. [
  25691. {
  25692. name: "Normal",
  25693. height: math.unit(10, "feet"),
  25694. default: true
  25695. },
  25696. ]
  25697. ))
  25698. characterMakers.push(() => makeCharacter(
  25699. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25700. {
  25701. front: {
  25702. height: math.unit(5 + 1 / 12, "feet"),
  25703. weight: math.unit(110, "lb"),
  25704. name: "Front",
  25705. image: {
  25706. source: "./media/characters/aradel/front.svg",
  25707. extra: 324 / 303,
  25708. bottom: 3.6 / 329.4
  25709. }
  25710. },
  25711. },
  25712. [
  25713. {
  25714. name: "Normal",
  25715. height: math.unit(5 + 1 / 12, "feet"),
  25716. default: true
  25717. },
  25718. ]
  25719. ))
  25720. characterMakers.push(() => makeCharacter(
  25721. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25722. {
  25723. front: {
  25724. height: math.unit(3 + 8 / 12, "feet"),
  25725. weight: math.unit(50, "lb"),
  25726. name: "Front",
  25727. image: {
  25728. source: "./media/characters/serryn/front.svg",
  25729. extra: 1792 / 1656,
  25730. bottom: 43.5 / 1840
  25731. }
  25732. },
  25733. },
  25734. [
  25735. {
  25736. name: "Normal",
  25737. height: math.unit(3 + 8 / 12, "feet"),
  25738. default: true
  25739. },
  25740. ]
  25741. ))
  25742. characterMakers.push(() => makeCharacter(
  25743. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25744. {
  25745. front: {
  25746. height: math.unit(7 + 10 / 12, "feet"),
  25747. weight: math.unit(255, "lb"),
  25748. name: "Front",
  25749. image: {
  25750. source: "./media/characters/xavier-thyme/front.svg",
  25751. extra: 3733 / 3642,
  25752. bottom: 131 / 3869
  25753. }
  25754. },
  25755. frontRaven: {
  25756. height: math.unit(7 + 10 / 12, "feet"),
  25757. weight: math.unit(255, "lb"),
  25758. name: "Front (Raven)",
  25759. image: {
  25760. source: "./media/characters/xavier-thyme/front-raven.svg",
  25761. extra: 4385 / 3642,
  25762. bottom: 131 / 4517
  25763. }
  25764. },
  25765. },
  25766. [
  25767. {
  25768. name: "Normal",
  25769. height: math.unit(7 + 10 / 12, "feet"),
  25770. default: true
  25771. },
  25772. ]
  25773. ))
  25774. characterMakers.push(() => makeCharacter(
  25775. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25776. {
  25777. front: {
  25778. height: math.unit(1.6, "m"),
  25779. weight: math.unit(50, "kg"),
  25780. name: "Front",
  25781. image: {
  25782. source: "./media/characters/kiki/front.svg",
  25783. extra: 4682 / 3610,
  25784. bottom: 115 / 4777
  25785. }
  25786. },
  25787. },
  25788. [
  25789. {
  25790. name: "Normal",
  25791. height: math.unit(1.6, "meters"),
  25792. default: true
  25793. },
  25794. ]
  25795. ))
  25796. characterMakers.push(() => makeCharacter(
  25797. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25798. {
  25799. front: {
  25800. height: math.unit(50, "m"),
  25801. weight: math.unit(500, "tonnes"),
  25802. name: "Front",
  25803. image: {
  25804. source: "./media/characters/ryoko/front.svg",
  25805. extra: 4632 / 3926,
  25806. bottom: 193 / 4823
  25807. }
  25808. },
  25809. },
  25810. [
  25811. {
  25812. name: "Normal",
  25813. height: math.unit(50, "meters"),
  25814. default: true
  25815. },
  25816. ]
  25817. ))
  25818. characterMakers.push(() => makeCharacter(
  25819. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25820. {
  25821. front: {
  25822. height: math.unit(30, "m"),
  25823. weight: math.unit(22, "tonnes"),
  25824. name: "Front",
  25825. image: {
  25826. source: "./media/characters/elio/front.svg",
  25827. extra: 4582 / 3720,
  25828. bottom: 236 / 4828
  25829. }
  25830. },
  25831. },
  25832. [
  25833. {
  25834. name: "Normal",
  25835. height: math.unit(30, "meters"),
  25836. default: true
  25837. },
  25838. ]
  25839. ))
  25840. characterMakers.push(() => makeCharacter(
  25841. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25842. {
  25843. front: {
  25844. height: math.unit(6 + 3 / 12, "feet"),
  25845. weight: math.unit(120, "lb"),
  25846. name: "Front",
  25847. image: {
  25848. source: "./media/characters/azura/front.svg",
  25849. extra: 1149 / 1135,
  25850. bottom: 45 / 1194
  25851. }
  25852. },
  25853. frontClothed: {
  25854. height: math.unit(6 + 3 / 12, "feet"),
  25855. weight: math.unit(120, "lb"),
  25856. name: "Front (Clothed)",
  25857. image: {
  25858. source: "./media/characters/azura/front-clothed.svg",
  25859. extra: 1149 / 1135,
  25860. bottom: 45 / 1194
  25861. }
  25862. },
  25863. },
  25864. [
  25865. {
  25866. name: "Normal",
  25867. height: math.unit(6 + 3 / 12, "feet"),
  25868. default: true
  25869. },
  25870. {
  25871. name: "Macro",
  25872. height: math.unit(20 + 6 / 12, "feet")
  25873. },
  25874. {
  25875. name: "Megamacro",
  25876. height: math.unit(12, "miles")
  25877. },
  25878. {
  25879. name: "Gigamacro",
  25880. height: math.unit(10000, "miles")
  25881. },
  25882. {
  25883. name: "Teramacro",
  25884. height: math.unit(900000, "miles")
  25885. },
  25886. ]
  25887. ))
  25888. characterMakers.push(() => makeCharacter(
  25889. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25890. {
  25891. front: {
  25892. height: math.unit(12, "feet"),
  25893. weight: math.unit(1, "ton"),
  25894. capacity: math.unit(660000, "gallons"),
  25895. name: "Front",
  25896. image: {
  25897. source: "./media/characters/zeus/front.svg",
  25898. extra: 5005 / 4717,
  25899. bottom: 363 / 5388
  25900. }
  25901. },
  25902. },
  25903. [
  25904. {
  25905. name: "Normal",
  25906. height: math.unit(12, "feet")
  25907. },
  25908. {
  25909. name: "Preferred Size",
  25910. height: math.unit(0.5, "miles"),
  25911. default: true
  25912. },
  25913. {
  25914. name: "Giga Horse",
  25915. height: math.unit(300, "miles")
  25916. },
  25917. {
  25918. name: "Riding Planets",
  25919. height: math.unit(30, "megameters")
  25920. },
  25921. {
  25922. name: "Cosmic Giant",
  25923. height: math.unit(3, "zettameters")
  25924. },
  25925. {
  25926. name: "Breeding God",
  25927. height: math.unit(9.92e22, "yottameters")
  25928. },
  25929. ]
  25930. ))
  25931. characterMakers.push(() => makeCharacter(
  25932. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25933. {
  25934. side: {
  25935. height: math.unit(9, "feet"),
  25936. weight: math.unit(1500, "kg"),
  25937. name: "Side",
  25938. image: {
  25939. source: "./media/characters/fang/side.svg",
  25940. extra: 924 / 866,
  25941. bottom: 47.5 / 972.3
  25942. }
  25943. },
  25944. },
  25945. [
  25946. {
  25947. name: "Normal",
  25948. height: math.unit(9, "feet"),
  25949. default: true
  25950. },
  25951. {
  25952. name: "Macro",
  25953. height: math.unit(75 + 6 / 12, "feet")
  25954. },
  25955. {
  25956. name: "Teramacro",
  25957. height: math.unit(50000, "miles")
  25958. },
  25959. ]
  25960. ))
  25961. characterMakers.push(() => makeCharacter(
  25962. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25963. {
  25964. front: {
  25965. height: math.unit(10, "feet"),
  25966. weight: math.unit(2, "tons"),
  25967. name: "Front",
  25968. image: {
  25969. source: "./media/characters/rekhit/front.svg",
  25970. extra: 2796 / 2590,
  25971. bottom: 225 / 3022
  25972. }
  25973. },
  25974. },
  25975. [
  25976. {
  25977. name: "Normal",
  25978. height: math.unit(10, "feet"),
  25979. default: true
  25980. },
  25981. {
  25982. name: "Macro",
  25983. height: math.unit(500, "feet")
  25984. },
  25985. ]
  25986. ))
  25987. characterMakers.push(() => makeCharacter(
  25988. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  25989. {
  25990. front: {
  25991. height: math.unit(7 + 6.451 / 12, "feet"),
  25992. weight: math.unit(310, "lb"),
  25993. name: "Front",
  25994. image: {
  25995. source: "./media/characters/dahlia-verrick/front.svg",
  25996. extra: 1488 / 1365,
  25997. bottom: 6.2 / 1495
  25998. }
  25999. },
  26000. back: {
  26001. height: math.unit(7 + 6.451 / 12, "feet"),
  26002. weight: math.unit(310, "lb"),
  26003. name: "Back",
  26004. image: {
  26005. source: "./media/characters/dahlia-verrick/back.svg",
  26006. extra: 1472 / 1351,
  26007. bottom: 5.28 / 1477
  26008. }
  26009. },
  26010. frontBusiness: {
  26011. height: math.unit(7 + 6.451 / 12, "feet"),
  26012. weight: math.unit(200, "lb"),
  26013. name: "Front (Business)",
  26014. image: {
  26015. source: "./media/characters/dahlia-verrick/front-business.svg",
  26016. extra: 1478 / 1381,
  26017. bottom: 5.5 / 1484
  26018. }
  26019. },
  26020. frontCasual: {
  26021. height: math.unit(7 + 6.451 / 12, "feet"),
  26022. weight: math.unit(200, "lb"),
  26023. name: "Front (Casual)",
  26024. image: {
  26025. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26026. extra: 1478 / 1381,
  26027. bottom: 5.5 / 1484
  26028. }
  26029. },
  26030. },
  26031. [
  26032. {
  26033. name: "Travel-Sized",
  26034. height: math.unit(7.45, "inches")
  26035. },
  26036. {
  26037. name: "Normal",
  26038. height: math.unit(7 + 6.451 / 12, "feet"),
  26039. default: true
  26040. },
  26041. {
  26042. name: "Hitting the Town",
  26043. height: math.unit(37 + 8 / 12, "feet")
  26044. },
  26045. {
  26046. name: "Stomp in the Suburbs",
  26047. height: math.unit(964 + 9.728 / 12, "feet")
  26048. },
  26049. {
  26050. name: "Sit on the City",
  26051. height: math.unit(61747 + 10.592 / 12, "feet")
  26052. },
  26053. {
  26054. name: "Glomp the Globe",
  26055. height: math.unit(252919327 + 4.832 / 12, "feet")
  26056. },
  26057. ]
  26058. ))
  26059. characterMakers.push(() => makeCharacter(
  26060. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26061. {
  26062. front: {
  26063. height: math.unit(6 + 4 / 12, "feet"),
  26064. weight: math.unit(320, "lb"),
  26065. name: "Front",
  26066. image: {
  26067. source: "./media/characters/balina-mahigan/front.svg",
  26068. extra: 447 / 428,
  26069. bottom: 18 / 466
  26070. }
  26071. },
  26072. back: {
  26073. height: math.unit(6 + 4 / 12, "feet"),
  26074. weight: math.unit(320, "lb"),
  26075. name: "Back",
  26076. image: {
  26077. source: "./media/characters/balina-mahigan/back.svg",
  26078. extra: 445 / 428,
  26079. bottom: 4.07 / 448
  26080. }
  26081. },
  26082. arm: {
  26083. height: math.unit(1.88, "feet"),
  26084. name: "Arm",
  26085. image: {
  26086. source: "./media/characters/balina-mahigan/arm.svg"
  26087. }
  26088. },
  26089. backPort: {
  26090. height: math.unit(0.685, "feet"),
  26091. name: "Back Port",
  26092. image: {
  26093. source: "./media/characters/balina-mahigan/back-port.svg"
  26094. }
  26095. },
  26096. hoofpaw: {
  26097. height: math.unit(1.41, "feet"),
  26098. name: "Hoofpaw",
  26099. image: {
  26100. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26101. }
  26102. },
  26103. leftHandBack: {
  26104. height: math.unit(0.938, "feet"),
  26105. name: "Left Hand (Back)",
  26106. image: {
  26107. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26108. }
  26109. },
  26110. leftHandFront: {
  26111. height: math.unit(0.938, "feet"),
  26112. name: "Left Hand (Front)",
  26113. image: {
  26114. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26115. }
  26116. },
  26117. rightHandBack: {
  26118. height: math.unit(0.95, "feet"),
  26119. name: "Right Hand (Back)",
  26120. image: {
  26121. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26122. }
  26123. },
  26124. rightHandFront: {
  26125. height: math.unit(0.95, "feet"),
  26126. name: "Right Hand (Front)",
  26127. image: {
  26128. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26129. }
  26130. },
  26131. },
  26132. [
  26133. {
  26134. name: "Normal",
  26135. height: math.unit(6 + 4 / 12, "feet"),
  26136. default: true
  26137. },
  26138. ]
  26139. ))
  26140. characterMakers.push(() => makeCharacter(
  26141. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26142. {
  26143. front: {
  26144. height: math.unit(6, "feet"),
  26145. weight: math.unit(320, "lb"),
  26146. name: "Front",
  26147. image: {
  26148. source: "./media/characters/balina-mejeri/front.svg",
  26149. extra: 517 / 488,
  26150. bottom: 44.2 / 561
  26151. }
  26152. },
  26153. },
  26154. [
  26155. {
  26156. name: "Normal",
  26157. height: math.unit(6 + 4 / 12, "feet")
  26158. },
  26159. {
  26160. name: "Business",
  26161. height: math.unit(155, "feet"),
  26162. default: true
  26163. },
  26164. ]
  26165. ))
  26166. characterMakers.push(() => makeCharacter(
  26167. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26168. {
  26169. kneeling: {
  26170. height: math.unit(6 + 4 / 12, "feet"),
  26171. weight: math.unit(300 * 20, "lb"),
  26172. name: "Kneeling",
  26173. image: {
  26174. source: "./media/characters/balbarian/kneeling.svg",
  26175. extra: 922 / 862,
  26176. bottom: 42.4 / 965
  26177. }
  26178. },
  26179. },
  26180. [
  26181. {
  26182. name: "Normal",
  26183. height: math.unit(6 + 4 / 12, "feet")
  26184. },
  26185. {
  26186. name: "Treasured",
  26187. height: math.unit(18 + 9 / 12, "feet"),
  26188. default: true
  26189. },
  26190. {
  26191. name: "Macro",
  26192. height: math.unit(900, "feet")
  26193. },
  26194. ]
  26195. ))
  26196. characterMakers.push(() => makeCharacter(
  26197. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26198. {
  26199. front: {
  26200. height: math.unit(6 + 4 / 12, "feet"),
  26201. weight: math.unit(325, "lb"),
  26202. name: "Front",
  26203. image: {
  26204. source: "./media/characters/balina-amarini/front.svg",
  26205. extra: 415 / 403,
  26206. bottom: 19 / 433.4
  26207. }
  26208. },
  26209. back: {
  26210. height: math.unit(6 + 4 / 12, "feet"),
  26211. weight: math.unit(325, "lb"),
  26212. name: "Back",
  26213. image: {
  26214. source: "./media/characters/balina-amarini/back.svg",
  26215. extra: 415 / 403,
  26216. bottom: 13.5 / 432
  26217. }
  26218. },
  26219. overdrive: {
  26220. height: math.unit(6 + 4 / 12, "feet"),
  26221. weight: math.unit(400, "lb"),
  26222. name: "Overdrive",
  26223. image: {
  26224. source: "./media/characters/balina-amarini/overdrive.svg",
  26225. extra: 269 / 259,
  26226. bottom: 12 / 282
  26227. }
  26228. },
  26229. },
  26230. [
  26231. {
  26232. name: "Boom",
  26233. height: math.unit(9 + 10 / 12, "feet"),
  26234. default: true
  26235. },
  26236. {
  26237. name: "Macro",
  26238. height: math.unit(280, "feet")
  26239. },
  26240. ]
  26241. ))
  26242. characterMakers.push(() => makeCharacter(
  26243. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26244. {
  26245. goddess: {
  26246. height: math.unit(600, "feet"),
  26247. weight: math.unit(2000000, "tons"),
  26248. name: "Goddess",
  26249. image: {
  26250. source: "./media/characters/lady-kubwa/goddess.svg",
  26251. extra: 1240.5 / 1223,
  26252. bottom: 22 / 1263
  26253. }
  26254. },
  26255. goddesser: {
  26256. height: math.unit(900, "feet"),
  26257. weight: math.unit(20000000, "lb"),
  26258. name: "Goddess-er",
  26259. image: {
  26260. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26261. extra: 899 / 888,
  26262. bottom: 12.6 / 912
  26263. }
  26264. },
  26265. },
  26266. [
  26267. {
  26268. name: "Macro",
  26269. height: math.unit(600, "feet"),
  26270. default: true
  26271. },
  26272. {
  26273. name: "Megamacro",
  26274. height: math.unit(250, "miles")
  26275. },
  26276. ]
  26277. ))
  26278. characterMakers.push(() => makeCharacter(
  26279. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26280. {
  26281. front: {
  26282. height: math.unit(7 + 7 / 12, "feet"),
  26283. weight: math.unit(250, "lb"),
  26284. name: "Front",
  26285. image: {
  26286. source: "./media/characters/tala-grovehorn/front.svg",
  26287. extra: 2636 / 2525,
  26288. bottom: 147 / 2781
  26289. }
  26290. },
  26291. back: {
  26292. height: math.unit(7 + 7 / 12, "feet"),
  26293. weight: math.unit(250, "lb"),
  26294. name: "Back",
  26295. image: {
  26296. source: "./media/characters/tala-grovehorn/back.svg",
  26297. extra: 2635 / 2539,
  26298. bottom: 100 / 2732.8
  26299. }
  26300. },
  26301. mouth: {
  26302. height: math.unit(1.15, "feet"),
  26303. name: "Mouth",
  26304. image: {
  26305. source: "./media/characters/tala-grovehorn/mouth.svg"
  26306. }
  26307. },
  26308. dick: {
  26309. height: math.unit(2.36, "feet"),
  26310. name: "Dick",
  26311. image: {
  26312. source: "./media/characters/tala-grovehorn/dick.svg"
  26313. }
  26314. },
  26315. slit: {
  26316. height: math.unit(0.61, "feet"),
  26317. name: "Slit",
  26318. image: {
  26319. source: "./media/characters/tala-grovehorn/slit.svg"
  26320. }
  26321. },
  26322. },
  26323. [
  26324. ]
  26325. ))
  26326. characterMakers.push(() => makeCharacter(
  26327. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26328. {
  26329. front: {
  26330. height: math.unit(7 + 7 / 12, "feet"),
  26331. weight: math.unit(225, "lb"),
  26332. name: "Front",
  26333. image: {
  26334. source: "./media/characters/epona/front.svg",
  26335. extra: 2445 / 2290,
  26336. bottom: 251 / 2696
  26337. }
  26338. },
  26339. back: {
  26340. height: math.unit(7 + 7 / 12, "feet"),
  26341. weight: math.unit(225, "lb"),
  26342. name: "Back",
  26343. image: {
  26344. source: "./media/characters/epona/back.svg",
  26345. extra: 2546 / 2408,
  26346. bottom: 44 / 2589
  26347. }
  26348. },
  26349. genitals: {
  26350. height: math.unit(1.5, "feet"),
  26351. name: "Genitals",
  26352. image: {
  26353. source: "./media/characters/epona/genitals.svg"
  26354. }
  26355. },
  26356. },
  26357. [
  26358. {
  26359. name: "Normal",
  26360. height: math.unit(7 + 7 / 12, "feet"),
  26361. default: true
  26362. },
  26363. ]
  26364. ))
  26365. characterMakers.push(() => makeCharacter(
  26366. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26367. {
  26368. front: {
  26369. height: math.unit(7, "feet"),
  26370. weight: math.unit(518, "lb"),
  26371. name: "Front",
  26372. image: {
  26373. source: "./media/characters/avia-bloodbourn/front.svg",
  26374. extra: 1466 / 1350,
  26375. bottom: 65 / 1527
  26376. }
  26377. },
  26378. },
  26379. [
  26380. ]
  26381. ))
  26382. characterMakers.push(() => makeCharacter(
  26383. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26384. {
  26385. front: {
  26386. height: math.unit(9.35, "feet"),
  26387. weight: math.unit(600, "lb"),
  26388. name: "Front",
  26389. image: {
  26390. source: "./media/characters/amera/front.svg",
  26391. extra: 891 / 818,
  26392. bottom: 30 / 922.7
  26393. }
  26394. },
  26395. back: {
  26396. height: math.unit(9.35, "feet"),
  26397. weight: math.unit(600, "lb"),
  26398. name: "Back",
  26399. image: {
  26400. source: "./media/characters/amera/back.svg",
  26401. extra: 876 / 824,
  26402. bottom: 6.8 / 884
  26403. }
  26404. },
  26405. dick: {
  26406. height: math.unit(2.14, "feet"),
  26407. name: "Dick",
  26408. image: {
  26409. source: "./media/characters/amera/dick.svg"
  26410. }
  26411. },
  26412. },
  26413. [
  26414. {
  26415. name: "Normal",
  26416. height: math.unit(9.35, "feet"),
  26417. default: true
  26418. },
  26419. ]
  26420. ))
  26421. characterMakers.push(() => makeCharacter(
  26422. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26423. {
  26424. kneeling: {
  26425. height: math.unit(3 + 4 / 12, "feet"),
  26426. weight: math.unit(90, "lb"),
  26427. name: "Kneeling",
  26428. image: {
  26429. source: "./media/characters/rosewen/kneeling.svg",
  26430. extra: 1835 / 1571,
  26431. bottom: 27.7 / 1862
  26432. }
  26433. },
  26434. },
  26435. [
  26436. {
  26437. name: "Normal",
  26438. height: math.unit(3 + 4 / 12, "feet"),
  26439. default: true
  26440. },
  26441. ]
  26442. ))
  26443. characterMakers.push(() => makeCharacter(
  26444. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26445. {
  26446. front: {
  26447. height: math.unit(5 + 10 / 12, "feet"),
  26448. weight: math.unit(200, "lb"),
  26449. name: "Front",
  26450. image: {
  26451. source: "./media/characters/sabah/front.svg",
  26452. extra: 849 / 763,
  26453. bottom: 33.9 / 881
  26454. }
  26455. },
  26456. },
  26457. [
  26458. {
  26459. name: "Normal",
  26460. height: math.unit(5 + 10 / 12, "feet"),
  26461. default: true
  26462. },
  26463. ]
  26464. ))
  26465. characterMakers.push(() => makeCharacter(
  26466. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26467. {
  26468. front: {
  26469. height: math.unit(3 + 5 / 12, "feet"),
  26470. weight: math.unit(40, "kg"),
  26471. name: "Front",
  26472. image: {
  26473. source: "./media/characters/purple-flame/front.svg",
  26474. extra: 1577 / 1412,
  26475. bottom: 97 / 1694
  26476. }
  26477. },
  26478. frontDressed: {
  26479. height: math.unit(3 + 5 / 12, "feet"),
  26480. weight: math.unit(40, "kg"),
  26481. name: "Front (Dressed)",
  26482. image: {
  26483. source: "./media/characters/purple-flame/front-dressed.svg",
  26484. extra: 1577 / 1412,
  26485. bottom: 97 / 1694
  26486. }
  26487. },
  26488. headphones: {
  26489. height: math.unit(0.85, "feet"),
  26490. name: "Headphones",
  26491. image: {
  26492. source: "./media/characters/purple-flame/headphones.svg"
  26493. }
  26494. },
  26495. },
  26496. [
  26497. {
  26498. name: "Really Small",
  26499. height: math.unit(5, "cm")
  26500. },
  26501. {
  26502. name: "Micro",
  26503. height: math.unit(1 + 5 / 12, "feet")
  26504. },
  26505. {
  26506. name: "Normal",
  26507. height: math.unit(3 + 5 / 12, "feet"),
  26508. default: true
  26509. },
  26510. {
  26511. name: "Minimacro",
  26512. height: math.unit(125, "feet")
  26513. },
  26514. {
  26515. name: "Macro",
  26516. height: math.unit(0.5, "miles")
  26517. },
  26518. {
  26519. name: "Megamacro",
  26520. height: math.unit(50, "miles")
  26521. },
  26522. {
  26523. name: "Gigantic",
  26524. height: math.unit(750, "miles")
  26525. },
  26526. {
  26527. name: "Planetary",
  26528. height: math.unit(15000, "miles")
  26529. },
  26530. ]
  26531. ))
  26532. characterMakers.push(() => makeCharacter(
  26533. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26534. {
  26535. front: {
  26536. height: math.unit(14, "feet"),
  26537. weight: math.unit(959, "lb"),
  26538. name: "Front",
  26539. image: {
  26540. source: "./media/characters/arsenal/front.svg",
  26541. extra: 2357 / 2157,
  26542. bottom: 93 / 2458
  26543. }
  26544. },
  26545. },
  26546. [
  26547. {
  26548. name: "Normal",
  26549. height: math.unit(14, "feet"),
  26550. default: true
  26551. },
  26552. ]
  26553. ))
  26554. characterMakers.push(() => makeCharacter(
  26555. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26556. {
  26557. front: {
  26558. height: math.unit(6, "feet"),
  26559. weight: math.unit(150, "lb"),
  26560. name: "Front",
  26561. image: {
  26562. source: "./media/characters/adira/front.svg",
  26563. extra: 1078 / 1029,
  26564. bottom: 87 / 1166
  26565. }
  26566. },
  26567. },
  26568. [
  26569. {
  26570. name: "Micro",
  26571. height: math.unit(4, "inches"),
  26572. default: true
  26573. },
  26574. {
  26575. name: "Macro",
  26576. height: math.unit(50, "feet")
  26577. },
  26578. ]
  26579. ))
  26580. characterMakers.push(() => makeCharacter(
  26581. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26582. {
  26583. front: {
  26584. height: math.unit(16, "feet"),
  26585. weight: math.unit(1000, "lb"),
  26586. name: "Front",
  26587. image: {
  26588. source: "./media/characters/grim/front.svg",
  26589. extra: 622 / 614,
  26590. bottom: 18.1 / 642
  26591. }
  26592. },
  26593. back: {
  26594. height: math.unit(16, "feet"),
  26595. weight: math.unit(1000, "lb"),
  26596. name: "Back",
  26597. image: {
  26598. source: "./media/characters/grim/back.svg",
  26599. extra: 610.6 / 602,
  26600. bottom: 40.8 / 652
  26601. }
  26602. },
  26603. hunched: {
  26604. height: math.unit(9.75, "feet"),
  26605. weight: math.unit(1000, "lb"),
  26606. name: "Hunched",
  26607. image: {
  26608. source: "./media/characters/grim/hunched.svg",
  26609. extra: 304 / 297,
  26610. bottom: 35.4 / 394
  26611. }
  26612. },
  26613. },
  26614. [
  26615. {
  26616. name: "Normal",
  26617. height: math.unit(16, "feet"),
  26618. default: true
  26619. },
  26620. ]
  26621. ))
  26622. characterMakers.push(() => makeCharacter(
  26623. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26624. {
  26625. front: {
  26626. height: math.unit(2.3, "meters"),
  26627. weight: math.unit(300, "lb"),
  26628. name: "Front",
  26629. image: {
  26630. source: "./media/characters/sinja/front-sfw.svg",
  26631. extra: 1393 / 1294,
  26632. bottom: 70 / 1463
  26633. }
  26634. },
  26635. frontNsfw: {
  26636. height: math.unit(2.3, "meters"),
  26637. weight: math.unit(300, "lb"),
  26638. name: "Front (NSFW)",
  26639. image: {
  26640. source: "./media/characters/sinja/front-nsfw.svg",
  26641. extra: 1393 / 1294,
  26642. bottom: 70 / 1463
  26643. }
  26644. },
  26645. back: {
  26646. height: math.unit(2.3, "meters"),
  26647. weight: math.unit(300, "lb"),
  26648. name: "Back",
  26649. image: {
  26650. source: "./media/characters/sinja/back.svg",
  26651. extra: 1393 / 1294,
  26652. bottom: 70 / 1463
  26653. }
  26654. },
  26655. head: {
  26656. height: math.unit(1.771, "feet"),
  26657. name: "Head",
  26658. image: {
  26659. source: "./media/characters/sinja/head.svg"
  26660. }
  26661. },
  26662. slit: {
  26663. height: math.unit(0.8, "feet"),
  26664. name: "Slit",
  26665. image: {
  26666. source: "./media/characters/sinja/slit.svg"
  26667. }
  26668. },
  26669. },
  26670. [
  26671. {
  26672. name: "Normal",
  26673. height: math.unit(2.3, "meters")
  26674. },
  26675. {
  26676. name: "Macro",
  26677. height: math.unit(91, "meters"),
  26678. default: true
  26679. },
  26680. {
  26681. name: "Megamacro",
  26682. height: math.unit(91440, "meters")
  26683. },
  26684. {
  26685. name: "Gigamacro",
  26686. height: math.unit(60960000, "meters")
  26687. },
  26688. {
  26689. name: "Teramacro",
  26690. height: math.unit(9144000000, "meters")
  26691. },
  26692. ]
  26693. ))
  26694. characterMakers.push(() => makeCharacter(
  26695. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26696. {
  26697. front: {
  26698. height: math.unit(1.7, "meters"),
  26699. weight: math.unit(130, "lb"),
  26700. name: "Front",
  26701. image: {
  26702. source: "./media/characters/kyu/front.svg",
  26703. extra: 415 / 395,
  26704. bottom: 5 / 420
  26705. }
  26706. },
  26707. head: {
  26708. height: math.unit(1.75, "feet"),
  26709. name: "Head",
  26710. image: {
  26711. source: "./media/characters/kyu/head.svg"
  26712. }
  26713. },
  26714. foot: {
  26715. height: math.unit(0.81, "feet"),
  26716. name: "Foot",
  26717. image: {
  26718. source: "./media/characters/kyu/foot.svg"
  26719. }
  26720. },
  26721. },
  26722. [
  26723. {
  26724. name: "Normal",
  26725. height: math.unit(1.7, "meters")
  26726. },
  26727. {
  26728. name: "Macro",
  26729. height: math.unit(131, "feet"),
  26730. default: true
  26731. },
  26732. {
  26733. name: "Megamacro",
  26734. height: math.unit(91440, "meters")
  26735. },
  26736. {
  26737. name: "Gigamacro",
  26738. height: math.unit(60960000, "meters")
  26739. },
  26740. {
  26741. name: "Teramacro",
  26742. height: math.unit(9144000000, "meters")
  26743. },
  26744. ]
  26745. ))
  26746. characterMakers.push(() => makeCharacter(
  26747. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26748. {
  26749. front: {
  26750. height: math.unit(7 + 1 / 12, "feet"),
  26751. weight: math.unit(250, "lb"),
  26752. name: "Front",
  26753. image: {
  26754. source: "./media/characters/joey/front.svg",
  26755. extra: 1791 / 1537,
  26756. bottom: 28 / 1816
  26757. }
  26758. },
  26759. },
  26760. [
  26761. {
  26762. name: "Micro",
  26763. height: math.unit(3, "inches")
  26764. },
  26765. {
  26766. name: "Normal",
  26767. height: math.unit(7 + 1 / 12, "feet"),
  26768. default: true
  26769. },
  26770. ]
  26771. ))
  26772. characterMakers.push(() => makeCharacter(
  26773. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26774. {
  26775. front: {
  26776. height: math.unit(165, "cm"),
  26777. weight: math.unit(140, "lb"),
  26778. name: "Front",
  26779. image: {
  26780. source: "./media/characters/sam-evans/front.svg",
  26781. extra: 3417 / 3230,
  26782. bottom: 41.3 / 3417
  26783. }
  26784. },
  26785. frontSixTails: {
  26786. height: math.unit(165, "cm"),
  26787. weight: math.unit(140, "lb"),
  26788. name: "Front-six-tails",
  26789. image: {
  26790. source: "./media/characters/sam-evans/front-six-tails.svg",
  26791. extra: 3417 / 3230,
  26792. bottom: 41.3 / 3417
  26793. }
  26794. },
  26795. back: {
  26796. height: math.unit(165, "cm"),
  26797. weight: math.unit(140, "lb"),
  26798. name: "Back",
  26799. image: {
  26800. source: "./media/characters/sam-evans/back.svg",
  26801. extra: 3227 / 3032,
  26802. bottom: 6.8 / 3234
  26803. }
  26804. },
  26805. face: {
  26806. height: math.unit(0.68, "feet"),
  26807. name: "Face",
  26808. image: {
  26809. source: "./media/characters/sam-evans/face.svg"
  26810. }
  26811. },
  26812. },
  26813. [
  26814. {
  26815. name: "Normal",
  26816. height: math.unit(165, "cm"),
  26817. default: true
  26818. },
  26819. {
  26820. name: "Macro",
  26821. height: math.unit(100, "meters")
  26822. },
  26823. {
  26824. name: "Macro+",
  26825. height: math.unit(800, "meters")
  26826. },
  26827. {
  26828. name: "Macro++",
  26829. height: math.unit(3, "km")
  26830. },
  26831. {
  26832. name: "Macro+++",
  26833. height: math.unit(30, "km")
  26834. },
  26835. ]
  26836. ))
  26837. characterMakers.push(() => makeCharacter(
  26838. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26839. {
  26840. front: {
  26841. height: math.unit(10, "feet"),
  26842. weight: math.unit(750, "lb"),
  26843. name: "Front",
  26844. image: {
  26845. source: "./media/characters/juliet-a/front.svg",
  26846. extra: 1766 / 1720,
  26847. bottom: 43 / 1809
  26848. }
  26849. },
  26850. back: {
  26851. height: math.unit(10, "feet"),
  26852. weight: math.unit(750, "lb"),
  26853. name: "Back",
  26854. image: {
  26855. source: "./media/characters/juliet-a/back.svg",
  26856. extra: 1781 / 1734,
  26857. bottom: 35 / 1810,
  26858. }
  26859. },
  26860. },
  26861. [
  26862. {
  26863. name: "Normal",
  26864. height: math.unit(10, "feet"),
  26865. default: true
  26866. },
  26867. {
  26868. name: "Dragon Form",
  26869. height: math.unit(250, "feet")
  26870. },
  26871. {
  26872. name: "Macro",
  26873. height: math.unit(1000, "feet")
  26874. },
  26875. {
  26876. name: "Megamacro",
  26877. height: math.unit(10000, "feet")
  26878. }
  26879. ]
  26880. ))
  26881. characterMakers.push(() => makeCharacter(
  26882. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26883. {
  26884. regular: {
  26885. height: math.unit(7 + 3 / 12, "feet"),
  26886. weight: math.unit(260, "lb"),
  26887. name: "Regular",
  26888. image: {
  26889. source: "./media/characters/wild/regular.svg",
  26890. extra: 97.45 / 92,
  26891. bottom: 6.8 / 104.3
  26892. }
  26893. },
  26894. biggums: {
  26895. height: math.unit(8 + 6 / 12, "feet"),
  26896. weight: math.unit(425, "lb"),
  26897. name: "Biggums",
  26898. image: {
  26899. source: "./media/characters/wild/biggums.svg",
  26900. extra: 97.45 / 92,
  26901. bottom: 7.5 / 132.34
  26902. }
  26903. },
  26904. mawRegular: {
  26905. height: math.unit(1.24, "feet"),
  26906. name: "Maw (Regular)",
  26907. image: {
  26908. source: "./media/characters/wild/maw.svg"
  26909. }
  26910. },
  26911. mawBiggums: {
  26912. height: math.unit(1.47, "feet"),
  26913. name: "Maw (Biggums)",
  26914. image: {
  26915. source: "./media/characters/wild/maw.svg"
  26916. }
  26917. },
  26918. },
  26919. [
  26920. {
  26921. name: "Normal",
  26922. height: math.unit(7 + 3 / 12, "feet"),
  26923. default: true
  26924. },
  26925. ]
  26926. ))
  26927. characterMakers.push(() => makeCharacter(
  26928. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26929. {
  26930. front: {
  26931. height: math.unit(2.5, "meters"),
  26932. weight: math.unit(200, "kg"),
  26933. name: "Front",
  26934. image: {
  26935. source: "./media/characters/vidar/front.svg",
  26936. extra: 2994 / 2795,
  26937. bottom: 56 / 3061
  26938. }
  26939. },
  26940. back: {
  26941. height: math.unit(2.5, "meters"),
  26942. weight: math.unit(200, "kg"),
  26943. name: "Back",
  26944. image: {
  26945. source: "./media/characters/vidar/back.svg",
  26946. extra: 3131 / 2928,
  26947. bottom: 13.5 / 3141.5
  26948. }
  26949. },
  26950. feral: {
  26951. height: math.unit(2.5, "meters"),
  26952. weight: math.unit(2000, "kg"),
  26953. name: "Feral",
  26954. image: {
  26955. source: "./media/characters/vidar/feral.svg",
  26956. extra: 2790 / 1765,
  26957. bottom: 6 / 2796
  26958. }
  26959. },
  26960. },
  26961. [
  26962. {
  26963. name: "Normal",
  26964. height: math.unit(2.5, "meters"),
  26965. default: true
  26966. },
  26967. {
  26968. name: "Macro",
  26969. height: math.unit(100, "meters")
  26970. },
  26971. ]
  26972. ))
  26973. characterMakers.push(() => makeCharacter(
  26974. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26975. {
  26976. front: {
  26977. height: math.unit(5 + 9 / 12, "feet"),
  26978. weight: math.unit(120, "lb"),
  26979. name: "Front",
  26980. image: {
  26981. source: "./media/characters/ash/front.svg",
  26982. extra: 2189 / 1961,
  26983. bottom: 5.2 / 2194
  26984. }
  26985. },
  26986. },
  26987. [
  26988. {
  26989. name: "Normal",
  26990. height: math.unit(5 + 9 / 12, "feet"),
  26991. default: true
  26992. },
  26993. ]
  26994. ))
  26995. characterMakers.push(() => makeCharacter(
  26996. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26997. {
  26998. front: {
  26999. height: math.unit(9, "feet"),
  27000. weight: math.unit(10000, "lb"),
  27001. name: "Front",
  27002. image: {
  27003. source: "./media/characters/gygabite/front.svg",
  27004. bottom: 31.7 / 537.8,
  27005. extra: 505 / 370
  27006. }
  27007. },
  27008. },
  27009. [
  27010. {
  27011. name: "Normal",
  27012. height: math.unit(9, "feet"),
  27013. default: true
  27014. },
  27015. ]
  27016. ))
  27017. characterMakers.push(() => makeCharacter(
  27018. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27019. {
  27020. front: {
  27021. height: math.unit(12, "feet"),
  27022. weight: math.unit(35000, "lb"),
  27023. name: "Front",
  27024. image: {
  27025. source: "./media/characters/p0tat0/front.svg",
  27026. extra: 1065 / 921,
  27027. bottom: 55.7 / 1121.25
  27028. }
  27029. },
  27030. },
  27031. [
  27032. {
  27033. name: "Normal",
  27034. height: math.unit(12, "feet"),
  27035. default: true
  27036. },
  27037. ]
  27038. ))
  27039. characterMakers.push(() => makeCharacter(
  27040. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27041. {
  27042. side: {
  27043. height: math.unit(6.5, "feet"),
  27044. weight: math.unit(800, "lb"),
  27045. name: "Side",
  27046. image: {
  27047. source: "./media/characters/dusk/side.svg",
  27048. extra: 615 / 373,
  27049. bottom: 53 / 664
  27050. }
  27051. },
  27052. sitting: {
  27053. height: math.unit(7, "feet"),
  27054. weight: math.unit(800, "lb"),
  27055. name: "Sitting",
  27056. image: {
  27057. source: "./media/characters/dusk/sitting.svg",
  27058. extra: 753 / 425,
  27059. bottom: 33 / 774
  27060. }
  27061. },
  27062. head: {
  27063. height: math.unit(6.1, "feet"),
  27064. name: "Head",
  27065. image: {
  27066. source: "./media/characters/dusk/head.svg"
  27067. }
  27068. },
  27069. },
  27070. [
  27071. {
  27072. name: "Normal",
  27073. height: math.unit(7, "feet"),
  27074. default: true
  27075. },
  27076. ]
  27077. ))
  27078. characterMakers.push(() => makeCharacter(
  27079. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27080. {
  27081. front: {
  27082. height: math.unit(15, "feet"),
  27083. weight: math.unit(7000, "lb"),
  27084. name: "Front",
  27085. image: {
  27086. source: "./media/characters/jay-direwolf/front.svg",
  27087. extra: 1810 / 1732,
  27088. bottom: 66 / 1892
  27089. }
  27090. },
  27091. },
  27092. [
  27093. {
  27094. name: "Normal",
  27095. height: math.unit(15, "feet"),
  27096. default: true
  27097. },
  27098. ]
  27099. ))
  27100. characterMakers.push(() => makeCharacter(
  27101. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27102. {
  27103. front: {
  27104. height: math.unit(4 + 9 / 12, "feet"),
  27105. weight: math.unit(130, "lb"),
  27106. name: "Front",
  27107. image: {
  27108. source: "./media/characters/anchovie/front.svg",
  27109. extra: 382 / 350,
  27110. bottom: 25 / 409
  27111. }
  27112. },
  27113. back: {
  27114. height: math.unit(4 + 9 / 12, "feet"),
  27115. weight: math.unit(130, "lb"),
  27116. name: "Back",
  27117. image: {
  27118. source: "./media/characters/anchovie/back.svg",
  27119. extra: 385 / 352,
  27120. bottom: 16.6 / 402
  27121. }
  27122. },
  27123. frontDressed: {
  27124. height: math.unit(4 + 9 / 12, "feet"),
  27125. weight: math.unit(130, "lb"),
  27126. name: "Front (Dressed)",
  27127. image: {
  27128. source: "./media/characters/anchovie/front-dressed.svg",
  27129. extra: 382 / 350,
  27130. bottom: 25 / 409
  27131. }
  27132. },
  27133. backDressed: {
  27134. height: math.unit(4 + 9 / 12, "feet"),
  27135. weight: math.unit(130, "lb"),
  27136. name: "Back (Dressed)",
  27137. image: {
  27138. source: "./media/characters/anchovie/back-dressed.svg",
  27139. extra: 385 / 352,
  27140. bottom: 16.6 / 402
  27141. }
  27142. },
  27143. },
  27144. [
  27145. {
  27146. name: "Micro",
  27147. height: math.unit(6.4, "inches")
  27148. },
  27149. {
  27150. name: "Normal",
  27151. height: math.unit(4 + 9 / 12, "feet"),
  27152. default: true
  27153. },
  27154. ]
  27155. ))
  27156. characterMakers.push(() => makeCharacter(
  27157. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27158. {
  27159. front: {
  27160. height: math.unit(2, "meters"),
  27161. weight: math.unit(180, "lb"),
  27162. name: "Front",
  27163. image: {
  27164. source: "./media/characters/acidrenamon/front.svg",
  27165. extra: 987 / 890,
  27166. bottom: 22.8 / 1009
  27167. }
  27168. },
  27169. back: {
  27170. height: math.unit(2, "meters"),
  27171. weight: math.unit(180, "lb"),
  27172. name: "Back",
  27173. image: {
  27174. source: "./media/characters/acidrenamon/back.svg",
  27175. extra: 983 / 891,
  27176. bottom: 8.4 / 992
  27177. }
  27178. },
  27179. head: {
  27180. height: math.unit(1.92, "feet"),
  27181. name: "Head",
  27182. image: {
  27183. source: "./media/characters/acidrenamon/head.svg"
  27184. }
  27185. },
  27186. rump: {
  27187. height: math.unit(1.72, "feet"),
  27188. name: "Rump",
  27189. image: {
  27190. source: "./media/characters/acidrenamon/rump.svg"
  27191. }
  27192. },
  27193. tail: {
  27194. height: math.unit(4.2, "feet"),
  27195. name: "Tail",
  27196. image: {
  27197. source: "./media/characters/acidrenamon/tail.svg"
  27198. }
  27199. },
  27200. },
  27201. [
  27202. {
  27203. name: "Normal",
  27204. height: math.unit(2, "meters"),
  27205. default: true
  27206. },
  27207. {
  27208. name: "Minimacro",
  27209. height: math.unit(7, "meters")
  27210. },
  27211. {
  27212. name: "Macro",
  27213. height: math.unit(200, "meters")
  27214. },
  27215. {
  27216. name: "Gigamacro",
  27217. height: math.unit(0.2, "earths")
  27218. },
  27219. ]
  27220. ))
  27221. characterMakers.push(() => makeCharacter(
  27222. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27223. {
  27224. front: {
  27225. height: math.unit(6, "feet"),
  27226. weight: math.unit(150, "lb"),
  27227. name: "Front",
  27228. image: {
  27229. source: "./media/characters/kenzie-lee/front.svg",
  27230. extra: 1525 / 1465,
  27231. bottom: 45 / 1570
  27232. }
  27233. },
  27234. side: {
  27235. height: math.unit(6, "feet"),
  27236. weight: math.unit(150, "lb"),
  27237. name: "Side",
  27238. image: {
  27239. source: "./media/characters/kenzie-lee/side.svg",
  27240. extra: 5505 / 5383,
  27241. bottom: 60 / 5573
  27242. }
  27243. },
  27244. paw: {
  27245. height: math.unit(0.57, "feet"),
  27246. name: "Paw",
  27247. image: {
  27248. source: "./media/characters/kenzie-lee/paw.svg"
  27249. }
  27250. },
  27251. },
  27252. [
  27253. {
  27254. name: "Normal",
  27255. height: math.unit(152, "feet"),
  27256. default: true
  27257. },
  27258. {
  27259. name: "Megamacro",
  27260. height: math.unit(7, "miles")
  27261. },
  27262. {
  27263. name: "Gigamacro",
  27264. height: math.unit(8000, "miles")
  27265. },
  27266. ]
  27267. ))
  27268. characterMakers.push(() => makeCharacter(
  27269. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27270. {
  27271. side: {
  27272. height: math.unit(6, "feet"),
  27273. weight: math.unit(150, "lb"),
  27274. name: "Side",
  27275. image: {
  27276. source: "./media/characters/withers/side.svg",
  27277. extra: 1830 / 1728,
  27278. bottom: 96 / 1927
  27279. }
  27280. },
  27281. front: {
  27282. height: math.unit(6, "feet"),
  27283. weight: math.unit(150, "lb"),
  27284. name: "Front",
  27285. image: {
  27286. source: "./media/characters/withers/front.svg",
  27287. extra: 1514 / 1438,
  27288. bottom: 118 / 1632
  27289. }
  27290. },
  27291. },
  27292. [
  27293. {
  27294. name: "Macro",
  27295. height: math.unit(168, "feet"),
  27296. default: true
  27297. },
  27298. {
  27299. name: "Megamacro",
  27300. height: math.unit(15, "miles")
  27301. }
  27302. ]
  27303. ))
  27304. characterMakers.push(() => makeCharacter(
  27305. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27306. {
  27307. front: {
  27308. height: math.unit(6 + 7 / 12, "feet"),
  27309. weight: math.unit(250, "lb"),
  27310. name: "Front",
  27311. image: {
  27312. source: "./media/characters/nemoskii/front.svg",
  27313. extra: 2270 / 1734,
  27314. bottom: 86 / 2354
  27315. }
  27316. },
  27317. back: {
  27318. height: math.unit(6 + 7 / 12, "feet"),
  27319. weight: math.unit(250, "lb"),
  27320. name: "Back",
  27321. image: {
  27322. source: "./media/characters/nemoskii/back.svg",
  27323. extra: 1845 / 1788,
  27324. bottom: 10.5 / 1852
  27325. }
  27326. },
  27327. head: {
  27328. height: math.unit(1.31, "feet"),
  27329. name: "Head",
  27330. image: {
  27331. source: "./media/characters/nemoskii/head.svg"
  27332. }
  27333. },
  27334. },
  27335. [
  27336. {
  27337. name: "Micro",
  27338. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27339. },
  27340. {
  27341. name: "Normal",
  27342. height: math.unit(6 + 7 / 12, "feet"),
  27343. default: true
  27344. },
  27345. {
  27346. name: "Macro",
  27347. height: math.unit((6 + 7 / 12) * 150, "feet")
  27348. },
  27349. {
  27350. name: "Macro+",
  27351. height: math.unit((6 + 7 / 12) * 500, "feet")
  27352. },
  27353. {
  27354. name: "Megamacro",
  27355. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27356. },
  27357. ]
  27358. ))
  27359. characterMakers.push(() => makeCharacter(
  27360. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27361. {
  27362. front: {
  27363. height: math.unit(1, "mile"),
  27364. weight: math.unit(265261.9, "lb"),
  27365. name: "Front",
  27366. image: {
  27367. source: "./media/characters/shui/front.svg",
  27368. extra: 1633 / 1564,
  27369. bottom: 91.5 / 1726
  27370. }
  27371. },
  27372. },
  27373. [
  27374. {
  27375. name: "Macro",
  27376. height: math.unit(1, "mile"),
  27377. default: true
  27378. },
  27379. ]
  27380. ))
  27381. characterMakers.push(() => makeCharacter(
  27382. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27383. {
  27384. front: {
  27385. height: math.unit(12 + 6 / 12, "feet"),
  27386. weight: math.unit(1342, "lb"),
  27387. name: "Front",
  27388. image: {
  27389. source: "./media/characters/arokh-takakura/front.svg",
  27390. extra: 1089 / 1043,
  27391. bottom: 77.4 / 1176.7
  27392. }
  27393. },
  27394. back: {
  27395. height: math.unit(12 + 6 / 12, "feet"),
  27396. weight: math.unit(1342, "lb"),
  27397. name: "Back",
  27398. image: {
  27399. source: "./media/characters/arokh-takakura/back.svg",
  27400. extra: 1046 / 1019,
  27401. bottom: 102 / 1150
  27402. }
  27403. },
  27404. },
  27405. [
  27406. {
  27407. name: "Big",
  27408. height: math.unit(12 + 6 / 12, "feet"),
  27409. default: true
  27410. },
  27411. ]
  27412. ))
  27413. characterMakers.push(() => makeCharacter(
  27414. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27415. {
  27416. front: {
  27417. height: math.unit(5 + 6 / 12, "feet"),
  27418. weight: math.unit(150, "lb"),
  27419. name: "Front",
  27420. image: {
  27421. source: "./media/characters/theo/front.svg",
  27422. extra: 1184 / 1131,
  27423. bottom: 7.4 / 1191
  27424. }
  27425. },
  27426. },
  27427. [
  27428. {
  27429. name: "Micro",
  27430. height: math.unit(5, "inches")
  27431. },
  27432. {
  27433. name: "Normal",
  27434. height: math.unit(5 + 6 / 12, "feet"),
  27435. default: true
  27436. },
  27437. ]
  27438. ))
  27439. characterMakers.push(() => makeCharacter(
  27440. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27441. {
  27442. front: {
  27443. height: math.unit(5 + 9 / 12, "feet"),
  27444. weight: math.unit(130, "lb"),
  27445. name: "Front",
  27446. image: {
  27447. source: "./media/characters/cecelia-swift/front.svg",
  27448. extra: 502 / 484,
  27449. bottom: 23 / 523
  27450. }
  27451. },
  27452. back: {
  27453. height: math.unit(5 + 9 / 12, "feet"),
  27454. weight: math.unit(130, "lb"),
  27455. name: "Back",
  27456. image: {
  27457. source: "./media/characters/cecelia-swift/back.svg",
  27458. extra: 499 / 485,
  27459. bottom: 12 / 511
  27460. }
  27461. },
  27462. head: {
  27463. height: math.unit(0.90, "feet"),
  27464. name: "Head",
  27465. image: {
  27466. source: "./media/characters/cecelia-swift/head.svg"
  27467. }
  27468. },
  27469. rump: {
  27470. height: math.unit(1.75, "feet"),
  27471. name: "Rump",
  27472. image: {
  27473. source: "./media/characters/cecelia-swift/rump.svg"
  27474. }
  27475. },
  27476. },
  27477. [
  27478. {
  27479. name: "Normal",
  27480. height: math.unit(5 + 9 / 12, "feet"),
  27481. default: true
  27482. },
  27483. {
  27484. name: "Big",
  27485. height: math.unit(50, "feet")
  27486. },
  27487. {
  27488. name: "Macro",
  27489. height: math.unit(100, "feet")
  27490. },
  27491. {
  27492. name: "Macro+",
  27493. height: math.unit(500, "feet")
  27494. },
  27495. {
  27496. name: "Macro++",
  27497. height: math.unit(1000, "feet")
  27498. },
  27499. ]
  27500. ))
  27501. characterMakers.push(() => makeCharacter(
  27502. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27503. {
  27504. front: {
  27505. height: math.unit(6, "feet"),
  27506. weight: math.unit(150, "lb"),
  27507. name: "Front",
  27508. image: {
  27509. source: "./media/characters/kaunan/front.svg",
  27510. extra: 2890 / 2523,
  27511. bottom: 49 / 2939
  27512. }
  27513. },
  27514. },
  27515. [
  27516. {
  27517. name: "Macro",
  27518. height: math.unit(150, "feet"),
  27519. default: true
  27520. },
  27521. ]
  27522. ))
  27523. characterMakers.push(() => makeCharacter(
  27524. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27525. {
  27526. front: {
  27527. height: math.unit(175, "cm"),
  27528. weight: math.unit(60, "kg"),
  27529. name: "Front",
  27530. image: {
  27531. source: "./media/characters/fei/front.svg",
  27532. extra: 1873/1723,
  27533. bottom: 53/1926
  27534. }
  27535. },
  27536. },
  27537. [
  27538. {
  27539. name: "Mortal",
  27540. height: math.unit(175, "cm")
  27541. },
  27542. {
  27543. name: "Normal",
  27544. height: math.unit(3500, "m"),
  27545. default: true
  27546. },
  27547. {
  27548. name: "Stroll",
  27549. height: math.unit(17.5, "km")
  27550. },
  27551. {
  27552. name: "Showoff",
  27553. height: math.unit(175, "km")
  27554. },
  27555. ]
  27556. ))
  27557. characterMakers.push(() => makeCharacter(
  27558. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27559. {
  27560. front: {
  27561. height: math.unit(7, "feet"),
  27562. weight: math.unit(1000, "kg"),
  27563. name: "Front",
  27564. image: {
  27565. source: "./media/characters/edrax/front.svg",
  27566. extra: 2838 / 2550,
  27567. bottom: 130 / 2968
  27568. }
  27569. },
  27570. },
  27571. [
  27572. {
  27573. name: "Small",
  27574. height: math.unit(7, "feet")
  27575. },
  27576. {
  27577. name: "Normal",
  27578. height: math.unit(1500, "meters")
  27579. },
  27580. {
  27581. name: "Mega",
  27582. height: math.unit(12000000, "km"),
  27583. default: true
  27584. },
  27585. {
  27586. name: "Megamacro",
  27587. height: math.unit(10600000, "lightyears")
  27588. },
  27589. {
  27590. name: "Hypermacro",
  27591. height: math.unit(256, "yottameters")
  27592. },
  27593. ]
  27594. ))
  27595. characterMakers.push(() => makeCharacter(
  27596. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27597. {
  27598. front: {
  27599. height: math.unit(10, "feet"),
  27600. weight: math.unit(750, "lb"),
  27601. name: "Front",
  27602. image: {
  27603. source: "./media/characters/clove/front.svg",
  27604. extra: 2031 / 1860,
  27605. bottom: 47.8 / 2080
  27606. }
  27607. },
  27608. back: {
  27609. height: math.unit(10, "feet"),
  27610. weight: math.unit(750, "lb"),
  27611. name: "Back",
  27612. image: {
  27613. source: "./media/characters/clove/back.svg",
  27614. extra: 2025 / 1859,
  27615. bottom: 46 / 2071
  27616. }
  27617. },
  27618. },
  27619. [
  27620. {
  27621. name: "Normal",
  27622. height: math.unit(10, "feet"),
  27623. default: true
  27624. },
  27625. ]
  27626. ))
  27627. characterMakers.push(() => makeCharacter(
  27628. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27629. {
  27630. front: {
  27631. height: math.unit(4, "feet"),
  27632. weight: math.unit(50, "lb"),
  27633. name: "Front",
  27634. image: {
  27635. source: "./media/characters/alex-rabbit/front.svg",
  27636. extra: 507 / 458,
  27637. bottom: 18.5 / 527
  27638. }
  27639. },
  27640. back: {
  27641. height: math.unit(4, "feet"),
  27642. weight: math.unit(50, "lb"),
  27643. name: "Back",
  27644. image: {
  27645. source: "./media/characters/alex-rabbit/back.svg",
  27646. extra: 502 / 460,
  27647. bottom: 18.9 / 521
  27648. }
  27649. },
  27650. },
  27651. [
  27652. {
  27653. name: "Normal",
  27654. height: math.unit(4, "feet"),
  27655. default: true
  27656. },
  27657. ]
  27658. ))
  27659. characterMakers.push(() => makeCharacter(
  27660. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27661. {
  27662. front: {
  27663. height: math.unit(1 + 3 / 12, "feet"),
  27664. weight: math.unit(80, "lb"),
  27665. name: "Front",
  27666. image: {
  27667. source: "./media/characters/zander-rose/front.svg",
  27668. extra: 916 / 797,
  27669. bottom: 17 / 933
  27670. }
  27671. },
  27672. back: {
  27673. height: math.unit(1 + 3 / 12, "feet"),
  27674. weight: math.unit(80, "lb"),
  27675. name: "Back",
  27676. image: {
  27677. source: "./media/characters/zander-rose/back.svg",
  27678. extra: 903 / 779,
  27679. bottom: 31 / 934
  27680. }
  27681. },
  27682. },
  27683. [
  27684. {
  27685. name: "Normal",
  27686. height: math.unit(1 + 3 / 12, "feet"),
  27687. default: true
  27688. },
  27689. ]
  27690. ))
  27691. characterMakers.push(() => makeCharacter(
  27692. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27693. {
  27694. anthro: {
  27695. height: math.unit(6, "feet"),
  27696. weight: math.unit(150, "lb"),
  27697. name: "Anthro",
  27698. image: {
  27699. source: "./media/characters/razz/anthro.svg",
  27700. extra: 1437 / 1343,
  27701. bottom: 48 / 1485
  27702. }
  27703. },
  27704. feral: {
  27705. height: math.unit(6, "feet"),
  27706. weight: math.unit(150, "lb"),
  27707. name: "Feral",
  27708. image: {
  27709. source: "./media/characters/razz/feral.svg",
  27710. extra: 2569 / 1385,
  27711. bottom: 95 / 2664
  27712. }
  27713. },
  27714. },
  27715. [
  27716. {
  27717. name: "Normal",
  27718. height: math.unit(6, "feet"),
  27719. default: true
  27720. },
  27721. ]
  27722. ))
  27723. characterMakers.push(() => makeCharacter(
  27724. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27725. {
  27726. front: {
  27727. height: math.unit(9 + 4 / 12, "feet"),
  27728. weight: math.unit(500, "lb"),
  27729. name: "Front",
  27730. image: {
  27731. source: "./media/characters/morrigan/front.svg",
  27732. extra: 2707 / 2579,
  27733. bottom: 156 / 2863
  27734. }
  27735. },
  27736. },
  27737. [
  27738. {
  27739. name: "Normal",
  27740. height: math.unit(9 + 4 / 12, "feet"),
  27741. default: true
  27742. },
  27743. ]
  27744. ))
  27745. characterMakers.push(() => makeCharacter(
  27746. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27747. {
  27748. front: {
  27749. height: math.unit(5, "stories"),
  27750. weight: math.unit(4000, "lb"),
  27751. name: "Front",
  27752. image: {
  27753. source: "./media/characters/jenene/front.svg",
  27754. extra: 1780 / 1710,
  27755. bottom: 57 / 1837
  27756. }
  27757. },
  27758. },
  27759. [
  27760. {
  27761. name: "Normal",
  27762. height: math.unit(5, "stories"),
  27763. default: true
  27764. },
  27765. ]
  27766. ))
  27767. characterMakers.push(() => makeCharacter(
  27768. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27769. {
  27770. taurSfw: {
  27771. height: math.unit(10, "meters"),
  27772. weight: math.unit(17500, "kg"),
  27773. name: "Taur",
  27774. image: {
  27775. source: "./media/characters/faey/taur-sfw.svg",
  27776. extra: 1200 / 968,
  27777. bottom: 41 / 1241
  27778. }
  27779. },
  27780. chestmaw: {
  27781. height: math.unit(2.01, "meters"),
  27782. name: "Chestmaw",
  27783. image: {
  27784. source: "./media/characters/faey/chestmaw.svg"
  27785. }
  27786. },
  27787. foot: {
  27788. height: math.unit(2.43, "meters"),
  27789. name: "Foot",
  27790. image: {
  27791. source: "./media/characters/faey/foot.svg"
  27792. }
  27793. },
  27794. jaws: {
  27795. height: math.unit(1.66, "meters"),
  27796. name: "Jaws",
  27797. image: {
  27798. source: "./media/characters/faey/jaws.svg"
  27799. }
  27800. },
  27801. tongues: {
  27802. height: math.unit(2.01, "meters"),
  27803. name: "Tongues",
  27804. image: {
  27805. source: "./media/characters/faey/tongues.svg"
  27806. }
  27807. },
  27808. },
  27809. [
  27810. {
  27811. name: "Small",
  27812. height: math.unit(10, "meters"),
  27813. default: true
  27814. },
  27815. {
  27816. name: "Big",
  27817. height: math.unit(500000, "km")
  27818. },
  27819. ]
  27820. ))
  27821. characterMakers.push(() => makeCharacter(
  27822. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27823. {
  27824. front: {
  27825. height: math.unit(7, "feet"),
  27826. weight: math.unit(275, "lb"),
  27827. name: "Front",
  27828. image: {
  27829. source: "./media/characters/roku/front.svg",
  27830. extra: 903 / 878,
  27831. bottom: 37 / 940
  27832. }
  27833. },
  27834. },
  27835. [
  27836. {
  27837. name: "Normal",
  27838. height: math.unit(7, "feet"),
  27839. default: true
  27840. },
  27841. {
  27842. name: "Macro",
  27843. height: math.unit(500, "feet")
  27844. },
  27845. {
  27846. name: "Megamacro",
  27847. height: math.unit(200, "miles")
  27848. },
  27849. ]
  27850. ))
  27851. characterMakers.push(() => makeCharacter(
  27852. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27853. {
  27854. front: {
  27855. height: math.unit(6 + 2 / 12, "feet"),
  27856. weight: math.unit(150, "lb"),
  27857. name: "Front",
  27858. image: {
  27859. source: "./media/characters/lira/front.svg",
  27860. extra: 1727 / 1605,
  27861. bottom: 26 / 1753
  27862. }
  27863. },
  27864. back: {
  27865. height: math.unit(6 + 2 / 12, "feet"),
  27866. weight: math.unit(150, "lb"),
  27867. name: "Back",
  27868. image: {
  27869. source: "./media/characters/lira/back.svg",
  27870. extra: 1713/1621,
  27871. bottom: 20/1733
  27872. }
  27873. },
  27874. hand: {
  27875. height: math.unit(0.75, "feet"),
  27876. name: "Hand",
  27877. image: {
  27878. source: "./media/characters/lira/hand.svg"
  27879. }
  27880. },
  27881. maw: {
  27882. height: math.unit(0.65, "feet"),
  27883. name: "Maw",
  27884. image: {
  27885. source: "./media/characters/lira/maw.svg"
  27886. }
  27887. },
  27888. pawDigi: {
  27889. height: math.unit(1.6, "feet"),
  27890. name: "Paw Digi",
  27891. image: {
  27892. source: "./media/characters/lira/paw-digi.svg"
  27893. }
  27894. },
  27895. pawPlanti: {
  27896. height: math.unit(1.4, "feet"),
  27897. name: "Paw Planti",
  27898. image: {
  27899. source: "./media/characters/lira/paw-planti.svg"
  27900. }
  27901. },
  27902. },
  27903. [
  27904. {
  27905. name: "Normal",
  27906. height: math.unit(6 + 2 / 12, "feet"),
  27907. default: true
  27908. },
  27909. {
  27910. name: "Macro",
  27911. height: math.unit(100, "feet")
  27912. },
  27913. {
  27914. name: "Macro²",
  27915. height: math.unit(1600, "feet")
  27916. },
  27917. {
  27918. name: "Planetary",
  27919. height: math.unit(20, "earths")
  27920. },
  27921. ]
  27922. ))
  27923. characterMakers.push(() => makeCharacter(
  27924. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27925. {
  27926. front: {
  27927. height: math.unit(6, "feet"),
  27928. weight: math.unit(150, "lb"),
  27929. name: "Front",
  27930. image: {
  27931. source: "./media/characters/hadjet/front.svg",
  27932. extra: 1480 / 1346,
  27933. bottom: 26 / 1506
  27934. }
  27935. },
  27936. frontNsfw: {
  27937. height: math.unit(6, "feet"),
  27938. weight: math.unit(150, "lb"),
  27939. name: "Front (NSFW)",
  27940. image: {
  27941. source: "./media/characters/hadjet/front-nsfw.svg",
  27942. extra: 1440 / 1358,
  27943. bottom: 52 / 1492
  27944. }
  27945. },
  27946. },
  27947. [
  27948. {
  27949. name: "Macro",
  27950. height: math.unit(10, "stories"),
  27951. default: true
  27952. },
  27953. {
  27954. name: "Megamacro",
  27955. height: math.unit(1.5, "miles")
  27956. },
  27957. {
  27958. name: "Megamacro+",
  27959. height: math.unit(5, "miles")
  27960. },
  27961. ]
  27962. ))
  27963. characterMakers.push(() => makeCharacter(
  27964. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27965. {
  27966. side: {
  27967. height: math.unit(106, "feet"),
  27968. weight: math.unit(500, "tonnes"),
  27969. name: "Side",
  27970. image: {
  27971. source: "./media/characters/kodran/side.svg",
  27972. extra: 553 / 480,
  27973. bottom: 33 / 586
  27974. }
  27975. },
  27976. front: {
  27977. height: math.unit(132, "feet"),
  27978. weight: math.unit(500, "tonnes"),
  27979. name: "Front",
  27980. image: {
  27981. source: "./media/characters/kodran/front.svg",
  27982. extra: 667 / 643,
  27983. bottom: 42 / 709
  27984. }
  27985. },
  27986. flying: {
  27987. height: math.unit(350, "feet"),
  27988. weight: math.unit(500, "tonnes"),
  27989. name: "Flying",
  27990. image: {
  27991. source: "./media/characters/kodran/flying.svg"
  27992. }
  27993. },
  27994. foot: {
  27995. height: math.unit(33, "feet"),
  27996. name: "Foot",
  27997. image: {
  27998. source: "./media/characters/kodran/foot.svg"
  27999. }
  28000. },
  28001. footFront: {
  28002. height: math.unit(19, "feet"),
  28003. name: "Foot (Front)",
  28004. image: {
  28005. source: "./media/characters/kodran/foot-front.svg",
  28006. extra: 261 / 261,
  28007. bottom: 91 / 352
  28008. }
  28009. },
  28010. headFront: {
  28011. height: math.unit(53, "feet"),
  28012. name: "Head (Front)",
  28013. image: {
  28014. source: "./media/characters/kodran/head-front.svg"
  28015. }
  28016. },
  28017. headSide: {
  28018. height: math.unit(65, "feet"),
  28019. name: "Head (Side)",
  28020. image: {
  28021. source: "./media/characters/kodran/head-side.svg"
  28022. }
  28023. },
  28024. throat: {
  28025. height: math.unit(79, "feet"),
  28026. name: "Throat",
  28027. image: {
  28028. source: "./media/characters/kodran/throat.svg"
  28029. }
  28030. },
  28031. },
  28032. [
  28033. {
  28034. name: "Large",
  28035. height: math.unit(106, "feet"),
  28036. default: true
  28037. },
  28038. ]
  28039. ))
  28040. characterMakers.push(() => makeCharacter(
  28041. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28042. {
  28043. side: {
  28044. height: math.unit(11, "feet"),
  28045. weight: math.unit(150, "lb"),
  28046. name: "Side",
  28047. image: {
  28048. source: "./media/characters/pyxaron/side.svg",
  28049. extra: 305 / 195,
  28050. bottom: 17 / 322
  28051. }
  28052. },
  28053. },
  28054. [
  28055. {
  28056. name: "Normal",
  28057. height: math.unit(11, "feet"),
  28058. default: true
  28059. },
  28060. ]
  28061. ))
  28062. characterMakers.push(() => makeCharacter(
  28063. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28064. {
  28065. front: {
  28066. height: math.unit(6, "feet"),
  28067. weight: math.unit(150, "lb"),
  28068. name: "Front",
  28069. image: {
  28070. source: "./media/characters/meep/front.svg",
  28071. extra: 88 / 80,
  28072. bottom: 6 / 94
  28073. }
  28074. },
  28075. },
  28076. [
  28077. {
  28078. name: "Fun Sized",
  28079. height: math.unit(2, "inches"),
  28080. default: true
  28081. },
  28082. {
  28083. name: "Friend Sized",
  28084. height: math.unit(8, "inches")
  28085. },
  28086. ]
  28087. ))
  28088. characterMakers.push(() => makeCharacter(
  28089. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28090. {
  28091. front: {
  28092. height: math.unit(15, "feet"),
  28093. weight: math.unit(2500, "lb"),
  28094. name: "Front",
  28095. image: {
  28096. source: "./media/characters/holly-rabbit/front.svg",
  28097. extra: 1433 / 1233,
  28098. bottom: 125 / 1558
  28099. }
  28100. },
  28101. dick: {
  28102. height: math.unit(4.6, "feet"),
  28103. name: "Dick",
  28104. image: {
  28105. source: "./media/characters/holly-rabbit/dick.svg"
  28106. }
  28107. },
  28108. },
  28109. [
  28110. {
  28111. name: "Normal",
  28112. height: math.unit(15, "feet"),
  28113. default: true
  28114. },
  28115. {
  28116. name: "Macro",
  28117. height: math.unit(250, "feet")
  28118. },
  28119. {
  28120. name: "Macro+",
  28121. height: math.unit(2500, "feet")
  28122. },
  28123. ]
  28124. ))
  28125. characterMakers.push(() => makeCharacter(
  28126. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28127. {
  28128. front: {
  28129. height: math.unit(3.02, "meters"),
  28130. weight: math.unit(500, "kg"),
  28131. name: "Front",
  28132. image: {
  28133. source: "./media/characters/drena/front.svg",
  28134. extra: 282 / 243,
  28135. bottom: 8 / 290
  28136. }
  28137. },
  28138. side: {
  28139. height: math.unit(3.02, "meters"),
  28140. weight: math.unit(500, "kg"),
  28141. name: "Side",
  28142. image: {
  28143. source: "./media/characters/drena/side.svg",
  28144. extra: 280 / 245,
  28145. bottom: 10 / 290
  28146. }
  28147. },
  28148. back: {
  28149. height: math.unit(3.02, "meters"),
  28150. weight: math.unit(500, "kg"),
  28151. name: "Back",
  28152. image: {
  28153. source: "./media/characters/drena/back.svg",
  28154. extra: 278 / 243,
  28155. bottom: 2 / 280
  28156. }
  28157. },
  28158. foot: {
  28159. height: math.unit(0.75, "meters"),
  28160. name: "Foot",
  28161. image: {
  28162. source: "./media/characters/drena/foot.svg"
  28163. }
  28164. },
  28165. maw: {
  28166. height: math.unit(0.82, "meters"),
  28167. name: "Maw",
  28168. image: {
  28169. source: "./media/characters/drena/maw.svg"
  28170. }
  28171. },
  28172. rump: {
  28173. height: math.unit(0.93, "meters"),
  28174. name: "Rump",
  28175. image: {
  28176. source: "./media/characters/drena/rump.svg"
  28177. }
  28178. },
  28179. },
  28180. [
  28181. {
  28182. name: "Normal",
  28183. height: math.unit(3.02, "meters"),
  28184. default: true
  28185. },
  28186. ]
  28187. ))
  28188. characterMakers.push(() => makeCharacter(
  28189. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28190. {
  28191. front: {
  28192. height: math.unit(6 + 4 / 12, "feet"),
  28193. weight: math.unit(250, "lb"),
  28194. name: "Front",
  28195. image: {
  28196. source: "./media/characters/remmyzilla/front.svg",
  28197. extra: 4033 / 3588,
  28198. bottom: 123 / 4156
  28199. }
  28200. },
  28201. back: {
  28202. height: math.unit(6 + 4 / 12, "feet"),
  28203. weight: math.unit(250, "lb"),
  28204. name: "Back",
  28205. image: {
  28206. source: "./media/characters/remmyzilla/back.svg",
  28207. extra: 2687 / 2555,
  28208. bottom: 48 / 2735
  28209. }
  28210. },
  28211. paw: {
  28212. height: math.unit(1.73, "feet"),
  28213. name: "Paw",
  28214. image: {
  28215. source: "./media/characters/remmyzilla/paw.svg"
  28216. }
  28217. },
  28218. maw: {
  28219. height: math.unit(1.73, "feet"),
  28220. name: "Maw",
  28221. image: {
  28222. source: "./media/characters/remmyzilla/maw.svg"
  28223. }
  28224. },
  28225. },
  28226. [
  28227. {
  28228. name: "Normal",
  28229. height: math.unit(6 + 4 / 12, "feet")
  28230. },
  28231. {
  28232. name: "Minimacro",
  28233. height: math.unit(12 + 8 / 12, "feet")
  28234. },
  28235. {
  28236. name: "Normal",
  28237. height: math.unit(640, "feet"),
  28238. default: true
  28239. },
  28240. {
  28241. name: "Megamacro",
  28242. height: math.unit(6400, "feet")
  28243. },
  28244. {
  28245. name: "Gigamacro",
  28246. height: math.unit(64000, "miles")
  28247. },
  28248. ]
  28249. ))
  28250. characterMakers.push(() => makeCharacter(
  28251. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28252. {
  28253. front: {
  28254. height: math.unit(2.5, "meters"),
  28255. weight: math.unit(300, "lb"),
  28256. name: "Front",
  28257. image: {
  28258. source: "./media/characters/lawrence/front.svg",
  28259. extra: 357 / 335,
  28260. bottom: 30 / 387
  28261. }
  28262. },
  28263. back: {
  28264. height: math.unit(2.5, "meters"),
  28265. weight: math.unit(300, "lb"),
  28266. name: "Back",
  28267. image: {
  28268. source: "./media/characters/lawrence/back.svg",
  28269. extra: 357 / 338,
  28270. bottom: 16 / 373
  28271. }
  28272. },
  28273. head: {
  28274. height: math.unit(0.9, "meter"),
  28275. name: "Head",
  28276. image: {
  28277. source: "./media/characters/lawrence/head.svg"
  28278. }
  28279. },
  28280. maw: {
  28281. height: math.unit(0.7, "meter"),
  28282. name: "Maw",
  28283. image: {
  28284. source: "./media/characters/lawrence/maw.svg"
  28285. }
  28286. },
  28287. footBottom: {
  28288. height: math.unit(0.5, "meter"),
  28289. name: "Foot (Bottom)",
  28290. image: {
  28291. source: "./media/characters/lawrence/foot-bottom.svg"
  28292. }
  28293. },
  28294. footTop: {
  28295. height: math.unit(0.5, "meter"),
  28296. name: "Foot (Top)",
  28297. image: {
  28298. source: "./media/characters/lawrence/foot-top.svg"
  28299. }
  28300. },
  28301. },
  28302. [
  28303. {
  28304. name: "Normal",
  28305. height: math.unit(2.5, "meters"),
  28306. default: true
  28307. },
  28308. {
  28309. name: "Macro",
  28310. height: math.unit(95, "meters")
  28311. },
  28312. {
  28313. name: "Megamacro",
  28314. height: math.unit(150, "km")
  28315. },
  28316. ]
  28317. ))
  28318. characterMakers.push(() => makeCharacter(
  28319. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28320. {
  28321. front: {
  28322. height: math.unit(4.2, "meters"),
  28323. name: "Front",
  28324. image: {
  28325. source: "./media/characters/sydney/front.svg",
  28326. extra: 1323 / 1277,
  28327. bottom: 111 / 1434
  28328. }
  28329. },
  28330. },
  28331. [
  28332. {
  28333. name: "Normal",
  28334. height: math.unit(4.2, "meters"),
  28335. default: true
  28336. },
  28337. ]
  28338. ))
  28339. characterMakers.push(() => makeCharacter(
  28340. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28341. {
  28342. back: {
  28343. height: math.unit(201, "feet"),
  28344. name: "Back",
  28345. image: {
  28346. source: "./media/characters/jessica/back.svg",
  28347. extra: 273 / 259,
  28348. bottom: 7 / 280
  28349. }
  28350. },
  28351. },
  28352. [
  28353. {
  28354. name: "Normal",
  28355. height: math.unit(201, "feet"),
  28356. default: true
  28357. },
  28358. {
  28359. name: "Megamacro",
  28360. height: math.unit(8, "miles")
  28361. },
  28362. ]
  28363. ))
  28364. characterMakers.push(() => makeCharacter(
  28365. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28366. {
  28367. side: {
  28368. height: math.unit(320, "cm"),
  28369. name: "Side",
  28370. image: {
  28371. source: "./media/characters/victoria/side.svg",
  28372. extra: 778 / 346,
  28373. bottom: 56 / 834
  28374. }
  28375. },
  28376. maw: {
  28377. height: math.unit(5.9, "feet"),
  28378. name: "Maw",
  28379. image: {
  28380. source: "./media/characters/victoria/maw.svg"
  28381. }
  28382. },
  28383. },
  28384. [
  28385. {
  28386. name: "Normal",
  28387. height: math.unit(320, "cm"),
  28388. default: true
  28389. },
  28390. ]
  28391. ))
  28392. characterMakers.push(() => makeCharacter(
  28393. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28394. {
  28395. front: {
  28396. height: math.unit(5 + 6 / 12, "feet"),
  28397. name: "Front",
  28398. image: {
  28399. source: "./media/characters/cat/front.svg",
  28400. extra: 1374 / 1257,
  28401. bottom: 59 / 1433
  28402. }
  28403. },
  28404. back: {
  28405. height: math.unit(5 + 6 / 12, "feet"),
  28406. name: "Back",
  28407. image: {
  28408. source: "./media/characters/cat/back.svg",
  28409. extra: 1337 / 1226,
  28410. bottom: 34 / 1371
  28411. }
  28412. },
  28413. taur: {
  28414. height: math.unit(7, "feet"),
  28415. name: "Taur",
  28416. image: {
  28417. source: "./media/characters/cat/taur.svg",
  28418. extra: 1345 / 1231,
  28419. bottom: 66 / 1411
  28420. }
  28421. },
  28422. lucario: {
  28423. height: math.unit(4, "feet"),
  28424. name: "Lucario",
  28425. image: {
  28426. source: "./media/characters/cat/lucario.svg",
  28427. extra: 1470 / 1318,
  28428. bottom: 65 / 1535
  28429. }
  28430. },
  28431. megaLucario: {
  28432. height: math.unit(4, "feet"),
  28433. name: "Mega Lucario",
  28434. image: {
  28435. source: "./media/characters/cat/mega-lucario.svg",
  28436. extra: 1515 / 1319,
  28437. bottom: 63 / 1578
  28438. }
  28439. },
  28440. nickit: {
  28441. height: math.unit(2, "feet"),
  28442. name: "Nickit",
  28443. image: {
  28444. source: "./media/characters/cat/nickit.svg",
  28445. extra: 1980 / 1585,
  28446. bottom: 102 / 2082
  28447. }
  28448. },
  28449. lopunnyFront: {
  28450. height: math.unit(5, "feet"),
  28451. name: "Lopunny (Front)",
  28452. image: {
  28453. source: "./media/characters/cat/lopunny-front.svg",
  28454. extra: 1782 / 1469,
  28455. bottom: 38 / 1820
  28456. }
  28457. },
  28458. lopunnyBack: {
  28459. height: math.unit(5, "feet"),
  28460. name: "Lopunny (Back)",
  28461. image: {
  28462. source: "./media/characters/cat/lopunny-back.svg",
  28463. extra: 1660 / 1490,
  28464. bottom: 25 / 1685
  28465. }
  28466. },
  28467. },
  28468. [
  28469. {
  28470. name: "Really small",
  28471. height: math.unit(1, "nm")
  28472. },
  28473. {
  28474. name: "Micro",
  28475. height: math.unit(5, "inches")
  28476. },
  28477. {
  28478. name: "Normal",
  28479. height: math.unit(5 + 6 / 12, "feet"),
  28480. default: true
  28481. },
  28482. {
  28483. name: "Macro",
  28484. height: math.unit(50, "feet")
  28485. },
  28486. {
  28487. name: "Macro+",
  28488. height: math.unit(150, "feet")
  28489. },
  28490. {
  28491. name: "Megamacro",
  28492. height: math.unit(100, "miles")
  28493. },
  28494. ]
  28495. ))
  28496. characterMakers.push(() => makeCharacter(
  28497. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28498. {
  28499. front: {
  28500. height: math.unit(63.4, "meters"),
  28501. weight: math.unit(3.28349e+6, "kilograms"),
  28502. name: "Front",
  28503. image: {
  28504. source: "./media/characters/kirina-violet/front.svg",
  28505. extra: 2812 / 2725,
  28506. bottom: 0 / 2812
  28507. }
  28508. },
  28509. back: {
  28510. height: math.unit(63.4, "meters"),
  28511. weight: math.unit(3.28349e+6, "kilograms"),
  28512. name: "Back",
  28513. image: {
  28514. source: "./media/characters/kirina-violet/back.svg",
  28515. extra: 2812 / 2725,
  28516. bottom: 0 / 2812
  28517. }
  28518. },
  28519. mouth: {
  28520. height: math.unit(4.35, "meters"),
  28521. name: "Mouth",
  28522. image: {
  28523. source: "./media/characters/kirina-violet/mouth.svg"
  28524. }
  28525. },
  28526. paw: {
  28527. height: math.unit(5.6, "meters"),
  28528. name: "Paw",
  28529. image: {
  28530. source: "./media/characters/kirina-violet/paw.svg"
  28531. }
  28532. },
  28533. tail: {
  28534. height: math.unit(18, "meters"),
  28535. name: "Tail",
  28536. image: {
  28537. source: "./media/characters/kirina-violet/tail.svg"
  28538. }
  28539. },
  28540. },
  28541. [
  28542. {
  28543. name: "Macro",
  28544. height: math.unit(63.4, "meters"),
  28545. default: true
  28546. },
  28547. ]
  28548. ))
  28549. characterMakers.push(() => makeCharacter(
  28550. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28551. {
  28552. front: {
  28553. height: math.unit(75, "feet"),
  28554. name: "Front",
  28555. image: {
  28556. source: "./media/characters/cat-gigachu/front.svg",
  28557. extra: 1239/1027,
  28558. bottom: 32/1271
  28559. }
  28560. },
  28561. back: {
  28562. height: math.unit(75, "feet"),
  28563. name: "Back",
  28564. image: {
  28565. source: "./media/characters/cat-gigachu/back.svg",
  28566. extra: 1229/1030,
  28567. bottom: 9/1238
  28568. }
  28569. },
  28570. },
  28571. [
  28572. {
  28573. name: "Dynamax",
  28574. height: math.unit(75, "feet"),
  28575. default: true
  28576. },
  28577. ]
  28578. ))
  28579. characterMakers.push(() => makeCharacter(
  28580. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28581. {
  28582. front: {
  28583. height: math.unit(6, "feet"),
  28584. weight: math.unit(150, "lb"),
  28585. name: "Front",
  28586. image: {
  28587. source: "./media/characters/sfaiyan/front.svg",
  28588. extra: 999 / 978,
  28589. bottom: 5 / 1004
  28590. }
  28591. },
  28592. },
  28593. [
  28594. {
  28595. name: "Normal",
  28596. height: math.unit(1.82, "meters")
  28597. },
  28598. {
  28599. name: "Giant",
  28600. height: math.unit(2.27, "km"),
  28601. default: true
  28602. },
  28603. ]
  28604. ))
  28605. characterMakers.push(() => makeCharacter(
  28606. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28607. {
  28608. front: {
  28609. height: math.unit(179, "cm"),
  28610. weight: math.unit(100, "kg"),
  28611. name: "Front",
  28612. image: {
  28613. source: "./media/characters/raunehkeli/front.svg",
  28614. extra: 1934 / 1926,
  28615. bottom: 0 / 1934
  28616. }
  28617. },
  28618. },
  28619. [
  28620. {
  28621. name: "Normal",
  28622. height: math.unit(179, "cm")
  28623. },
  28624. {
  28625. name: "Maximum",
  28626. height: math.unit(575, "meters"),
  28627. default: true
  28628. },
  28629. ]
  28630. ))
  28631. characterMakers.push(() => makeCharacter(
  28632. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28633. {
  28634. front: {
  28635. height: math.unit(6, "feet"),
  28636. weight: math.unit(150, "lb"),
  28637. name: "Front",
  28638. image: {
  28639. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28640. extra: 2625 / 2518,
  28641. bottom: 60 / 2685
  28642. }
  28643. },
  28644. },
  28645. [
  28646. {
  28647. name: "Normal",
  28648. height: math.unit(6 + 2 / 12, "feet")
  28649. },
  28650. {
  28651. name: "Macro",
  28652. height: math.unit(1180, "feet"),
  28653. default: true
  28654. },
  28655. ]
  28656. ))
  28657. characterMakers.push(() => makeCharacter(
  28658. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28659. {
  28660. front: {
  28661. height: math.unit(5 + 6 / 12, "feet"),
  28662. weight: math.unit(108, "lb"),
  28663. name: "Front",
  28664. image: {
  28665. source: "./media/characters/lilith-zott/front.svg",
  28666. extra: 2510 / 2238,
  28667. bottom: 100 / 2610
  28668. }
  28669. },
  28670. frontDressed: {
  28671. height: math.unit(5 + 6 / 12, "feet"),
  28672. weight: math.unit(108, "lb"),
  28673. name: "Front (Dressed)",
  28674. image: {
  28675. source: "./media/characters/lilith-zott/front-dressed.svg",
  28676. extra: 2510 / 2238,
  28677. bottom: 100 / 2610
  28678. }
  28679. },
  28680. },
  28681. [
  28682. {
  28683. name: "Normal",
  28684. height: math.unit(5 + 6 / 12, "feet")
  28685. },
  28686. {
  28687. name: "Macro",
  28688. height: math.unit(1030, "feet"),
  28689. default: true
  28690. },
  28691. ]
  28692. ))
  28693. characterMakers.push(() => makeCharacter(
  28694. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28695. {
  28696. front: {
  28697. height: math.unit(6, "feet"),
  28698. weight: math.unit(150, "lb"),
  28699. name: "Front",
  28700. image: {
  28701. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28702. extra: 2567 / 2435,
  28703. bottom: 39 / 2606
  28704. }
  28705. },
  28706. frontSuper: {
  28707. height: math.unit(6, "feet"),
  28708. name: "Front (Super)",
  28709. image: {
  28710. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28711. extra: 2567 / 2435,
  28712. bottom: 39 / 2606
  28713. }
  28714. },
  28715. },
  28716. [
  28717. {
  28718. name: "Normal",
  28719. height: math.unit(5 + 10 / 12, "feet")
  28720. },
  28721. {
  28722. name: "Macro",
  28723. height: math.unit(1100, "feet"),
  28724. default: true
  28725. },
  28726. ]
  28727. ))
  28728. characterMakers.push(() => makeCharacter(
  28729. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28730. {
  28731. front: {
  28732. height: math.unit(100, "miles"),
  28733. name: "Front",
  28734. image: {
  28735. source: "./media/characters/sona/front.svg",
  28736. extra: 2433 / 2201,
  28737. bottom: 53 / 2486
  28738. }
  28739. },
  28740. foot: {
  28741. height: math.unit(16.1, "miles"),
  28742. name: "Foot",
  28743. image: {
  28744. source: "./media/characters/sona/foot.svg"
  28745. }
  28746. },
  28747. },
  28748. [
  28749. {
  28750. name: "Macro",
  28751. height: math.unit(100, "miles"),
  28752. default: true
  28753. },
  28754. ]
  28755. ))
  28756. characterMakers.push(() => makeCharacter(
  28757. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28758. {
  28759. front: {
  28760. height: math.unit(6, "feet"),
  28761. weight: math.unit(150, "lb"),
  28762. name: "Front",
  28763. image: {
  28764. source: "./media/characters/bailey/front.svg",
  28765. extra: 1778 / 1724,
  28766. bottom: 30 / 1808
  28767. }
  28768. },
  28769. },
  28770. [
  28771. {
  28772. name: "Micro",
  28773. height: math.unit(4, "inches")
  28774. },
  28775. {
  28776. name: "Normal",
  28777. height: math.unit(5 + 5 / 12, "feet"),
  28778. default: true
  28779. },
  28780. {
  28781. name: "Macro",
  28782. height: math.unit(250, "feet")
  28783. },
  28784. {
  28785. name: "Megamacro",
  28786. height: math.unit(100, "miles")
  28787. },
  28788. ]
  28789. ))
  28790. characterMakers.push(() => makeCharacter(
  28791. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28792. {
  28793. front: {
  28794. height: math.unit(5 + 2 / 12, "feet"),
  28795. weight: math.unit(120, "lb"),
  28796. name: "Front",
  28797. image: {
  28798. source: "./media/characters/snaps/front.svg",
  28799. extra: 2370 / 2177,
  28800. bottom: 48 / 2418
  28801. }
  28802. },
  28803. back: {
  28804. height: math.unit(5 + 2 / 12, "feet"),
  28805. weight: math.unit(120, "lb"),
  28806. name: "Back",
  28807. image: {
  28808. source: "./media/characters/snaps/back.svg",
  28809. extra: 2408 / 2258,
  28810. bottom: 15 / 2423
  28811. }
  28812. },
  28813. },
  28814. [
  28815. {
  28816. name: "Micro",
  28817. height: math.unit(9, "inches")
  28818. },
  28819. {
  28820. name: "Normal",
  28821. height: math.unit(5 + 2 / 12, "feet"),
  28822. default: true
  28823. },
  28824. {
  28825. name: "Mini Macro",
  28826. height: math.unit(10, "feet")
  28827. },
  28828. ]
  28829. ))
  28830. characterMakers.push(() => makeCharacter(
  28831. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28832. {
  28833. front: {
  28834. height: math.unit(1.8, "meters"),
  28835. weight: math.unit(85, "kg"),
  28836. name: "Front",
  28837. image: {
  28838. source: "./media/characters/azteck/front.svg",
  28839. extra: 2815 / 2625,
  28840. bottom: 89 / 2904
  28841. }
  28842. },
  28843. back: {
  28844. height: math.unit(1.8, "meters"),
  28845. weight: math.unit(85, "kg"),
  28846. name: "Back",
  28847. image: {
  28848. source: "./media/characters/azteck/back.svg",
  28849. extra: 2856 / 2648,
  28850. bottom: 85 / 2941
  28851. }
  28852. },
  28853. frontDressed: {
  28854. height: math.unit(1.8, "meters"),
  28855. weight: math.unit(85, "kg"),
  28856. name: "Front (Dressed)",
  28857. image: {
  28858. source: "./media/characters/azteck/front-dressed.svg",
  28859. extra: 2147 / 2003,
  28860. bottom: 68 / 2215
  28861. }
  28862. },
  28863. head: {
  28864. height: math.unit(0.47, "meters"),
  28865. weight: math.unit(85, "kg"),
  28866. name: "Head",
  28867. image: {
  28868. source: "./media/characters/azteck/head.svg"
  28869. }
  28870. },
  28871. },
  28872. [
  28873. {
  28874. name: "Bite sized",
  28875. height: math.unit(16, "cm")
  28876. },
  28877. {
  28878. name: "Normal",
  28879. height: math.unit(1.8, "meters"),
  28880. default: true
  28881. },
  28882. ]
  28883. ))
  28884. characterMakers.push(() => makeCharacter(
  28885. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28886. {
  28887. front: {
  28888. height: math.unit(6, "feet"),
  28889. weight: math.unit(150, "lb"),
  28890. name: "Front",
  28891. image: {
  28892. source: "./media/characters/pidge/front.svg",
  28893. extra: 620 / 588,
  28894. bottom: 9 / 629
  28895. }
  28896. },
  28897. back: {
  28898. height: math.unit(6, "feet"),
  28899. weight: math.unit(150, "lb"),
  28900. name: "Back",
  28901. image: {
  28902. source: "./media/characters/pidge/back.svg",
  28903. extra: 620 / 588,
  28904. bottom: 9 / 629
  28905. }
  28906. },
  28907. },
  28908. [
  28909. {
  28910. name: "Macro",
  28911. height: math.unit(1, "mile"),
  28912. default: true
  28913. },
  28914. ]
  28915. ))
  28916. characterMakers.push(() => makeCharacter(
  28917. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28918. {
  28919. front: {
  28920. height: math.unit(6, "feet"),
  28921. weight: math.unit(150, "lb"),
  28922. name: "Front",
  28923. image: {
  28924. source: "./media/characters/en/front.svg",
  28925. extra: 1697 / 1563,
  28926. bottom: 103 / 1800
  28927. }
  28928. },
  28929. back: {
  28930. height: math.unit(6, "feet"),
  28931. weight: math.unit(150, "lb"),
  28932. name: "Back",
  28933. image: {
  28934. source: "./media/characters/en/back.svg",
  28935. extra: 1700 / 1570,
  28936. bottom: 51 / 1751
  28937. }
  28938. },
  28939. frontDressed: {
  28940. height: math.unit(6, "feet"),
  28941. weight: math.unit(150, "lb"),
  28942. name: "Front (Dressed)",
  28943. image: {
  28944. source: "./media/characters/en/front-dressed.svg",
  28945. extra: 1697 / 1563,
  28946. bottom: 103 / 1800
  28947. }
  28948. },
  28949. backDressed: {
  28950. height: math.unit(6, "feet"),
  28951. weight: math.unit(150, "lb"),
  28952. name: "Back (Dressed)",
  28953. image: {
  28954. source: "./media/characters/en/back-dressed.svg",
  28955. extra: 1700 / 1570,
  28956. bottom: 51 / 1751
  28957. }
  28958. },
  28959. },
  28960. [
  28961. {
  28962. name: "Macro",
  28963. height: math.unit(210, "feet"),
  28964. default: true
  28965. },
  28966. ]
  28967. ))
  28968. characterMakers.push(() => makeCharacter(
  28969. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28970. {
  28971. front: {
  28972. height: math.unit(6, "feet"),
  28973. weight: math.unit(150, "lb"),
  28974. name: "Front",
  28975. image: {
  28976. source: "./media/characters/haze-orris/front.svg",
  28977. extra: 3975 / 3525,
  28978. bottom: 137 / 4112
  28979. }
  28980. },
  28981. },
  28982. [
  28983. {
  28984. name: "Micro",
  28985. height: math.unit(150, "mm"),
  28986. default: true
  28987. },
  28988. ]
  28989. ))
  28990. characterMakers.push(() => makeCharacter(
  28991. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28992. {
  28993. front: {
  28994. height: math.unit(6, "feet"),
  28995. weight: math.unit(150, "lb"),
  28996. name: "Front",
  28997. image: {
  28998. source: "./media/characters/casselene-yaro/front.svg",
  28999. extra: 4721 / 4541,
  29000. bottom: 82 / 4803
  29001. }
  29002. },
  29003. back: {
  29004. height: math.unit(6, "feet"),
  29005. weight: math.unit(150, "lb"),
  29006. name: "Back",
  29007. image: {
  29008. source: "./media/characters/casselene-yaro/back.svg",
  29009. extra: 4569 / 4377,
  29010. bottom: 69 / 4638
  29011. }
  29012. },
  29013. frontDressed: {
  29014. height: math.unit(6, "feet"),
  29015. weight: math.unit(150, "lb"),
  29016. name: "Front-dressed",
  29017. image: {
  29018. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29019. extra: 4721 / 4541,
  29020. bottom: 82 / 4803
  29021. }
  29022. },
  29023. },
  29024. [
  29025. {
  29026. name: "Macro",
  29027. height: math.unit(190, "feet"),
  29028. default: true
  29029. },
  29030. ]
  29031. ))
  29032. characterMakers.push(() => makeCharacter(
  29033. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29034. {
  29035. front: {
  29036. height: math.unit(6, "feet"),
  29037. weight: math.unit(150, "lb"),
  29038. name: "Front",
  29039. image: {
  29040. source: "./media/characters/myra-rue-delore/front.svg",
  29041. extra: 1340 / 1308,
  29042. bottom: 67 / 1407
  29043. }
  29044. },
  29045. back: {
  29046. height: math.unit(6, "feet"),
  29047. weight: math.unit(150, "lb"),
  29048. name: "Back",
  29049. image: {
  29050. source: "./media/characters/myra-rue-delore/back.svg",
  29051. extra: 1341 / 1310,
  29052. bottom: 40 / 1381
  29053. }
  29054. },
  29055. frontDressed: {
  29056. height: math.unit(6, "feet"),
  29057. weight: math.unit(150, "lb"),
  29058. name: "Front (Dressed)",
  29059. image: {
  29060. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29061. extra: 1340 / 1308,
  29062. bottom: 67 / 1407
  29063. }
  29064. },
  29065. },
  29066. [
  29067. {
  29068. name: "Macro",
  29069. height: math.unit(150, "feet"),
  29070. default: true
  29071. },
  29072. ]
  29073. ))
  29074. characterMakers.push(() => makeCharacter(
  29075. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29076. {
  29077. front: {
  29078. height: math.unit(10, "feet"),
  29079. weight: math.unit(15015, "lb"),
  29080. name: "Front",
  29081. image: {
  29082. source: "./media/characters/fem!plat/front.svg",
  29083. extra: 2799 / 2604,
  29084. bottom: 149 / 2948
  29085. }
  29086. },
  29087. },
  29088. [
  29089. {
  29090. name: "Normal",
  29091. height: math.unit(10, "feet"),
  29092. default: true
  29093. },
  29094. {
  29095. name: "Macro",
  29096. height: math.unit(100, "feet")
  29097. },
  29098. {
  29099. name: "Megamacro",
  29100. height: math.unit(1000, "feet")
  29101. },
  29102. ]
  29103. ))
  29104. characterMakers.push(() => makeCharacter(
  29105. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29106. {
  29107. front: {
  29108. height: math.unit(15 + 5 / 12, "feet"),
  29109. weight: math.unit(4600, "lb"),
  29110. name: "Front",
  29111. image: {
  29112. source: "./media/characters/neapolitan-ananassa/front.svg",
  29113. extra: 2903 / 2736,
  29114. bottom: 0 / 2903
  29115. }
  29116. },
  29117. side: {
  29118. height: math.unit(15 + 5 / 12, "feet"),
  29119. weight: math.unit(4600, "lb"),
  29120. name: "Side",
  29121. image: {
  29122. source: "./media/characters/neapolitan-ananassa/side.svg",
  29123. extra: 2925 / 2719,
  29124. bottom: 0 / 2925
  29125. }
  29126. },
  29127. back: {
  29128. height: math.unit(15 + 5 / 12, "feet"),
  29129. weight: math.unit(4600, "lb"),
  29130. name: "Back",
  29131. image: {
  29132. source: "./media/characters/neapolitan-ananassa/back.svg",
  29133. extra: 2903 / 2736,
  29134. bottom: 0 / 2903
  29135. }
  29136. },
  29137. },
  29138. [
  29139. {
  29140. name: "Normal",
  29141. height: math.unit(15 + 5 / 12, "feet"),
  29142. default: true
  29143. },
  29144. {
  29145. name: "Post-Millenium",
  29146. height: math.unit(35 + 5 / 12, "feet")
  29147. },
  29148. {
  29149. name: "Post-Era",
  29150. height: math.unit(450 + 5 / 12, "feet")
  29151. },
  29152. ]
  29153. ))
  29154. characterMakers.push(() => makeCharacter(
  29155. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29156. {
  29157. front: {
  29158. height: math.unit(300, "meters"),
  29159. weight: math.unit(125000, "tonnes"),
  29160. name: "Front",
  29161. image: {
  29162. source: "./media/characters/pazuzu/front.svg",
  29163. extra: 877 / 794,
  29164. bottom: 47 / 924
  29165. }
  29166. },
  29167. },
  29168. [
  29169. {
  29170. name: "Macro",
  29171. height: math.unit(300, "meters"),
  29172. default: true
  29173. },
  29174. ]
  29175. ))
  29176. characterMakers.push(() => makeCharacter(
  29177. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29178. {
  29179. side: {
  29180. height: math.unit(10 + 7 / 12, "feet"),
  29181. weight: math.unit(2.5, "tons"),
  29182. name: "Side",
  29183. image: {
  29184. source: "./media/characters/aasha/side.svg",
  29185. extra: 1345 / 1245,
  29186. bottom: 111 / 1456
  29187. }
  29188. },
  29189. back: {
  29190. height: math.unit(10 + 7 / 12, "feet"),
  29191. weight: math.unit(2.5, "tons"),
  29192. name: "Back",
  29193. image: {
  29194. source: "./media/characters/aasha/back.svg",
  29195. extra: 1133 / 1057,
  29196. bottom: 257 / 1390
  29197. }
  29198. },
  29199. },
  29200. [
  29201. {
  29202. name: "Normal",
  29203. height: math.unit(10 + 7 / 12, "feet"),
  29204. default: true
  29205. },
  29206. ]
  29207. ))
  29208. characterMakers.push(() => makeCharacter(
  29209. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29210. {
  29211. front: {
  29212. height: math.unit(6 + 3 / 12, "feet"),
  29213. name: "Front",
  29214. image: {
  29215. source: "./media/characters/nevan/front.svg",
  29216. extra: 704 / 704,
  29217. bottom: 28 / 732
  29218. }
  29219. },
  29220. back: {
  29221. height: math.unit(6 + 3 / 12, "feet"),
  29222. name: "Back",
  29223. image: {
  29224. source: "./media/characters/nevan/back.svg",
  29225. extra: 714 / 714,
  29226. bottom: 21 / 735
  29227. }
  29228. },
  29229. frontFlaccid: {
  29230. height: math.unit(6 + 3 / 12, "feet"),
  29231. name: "Front (Flaccid)",
  29232. image: {
  29233. source: "./media/characters/nevan/front-flaccid.svg",
  29234. extra: 704 / 704,
  29235. bottom: 28 / 732
  29236. }
  29237. },
  29238. frontErect: {
  29239. height: math.unit(6 + 3 / 12, "feet"),
  29240. name: "Front (Erect)",
  29241. image: {
  29242. source: "./media/characters/nevan/front-erect.svg",
  29243. extra: 704 / 704,
  29244. bottom: 28 / 732
  29245. }
  29246. },
  29247. backFlaccid: {
  29248. height: math.unit(6 + 3 / 12, "feet"),
  29249. name: "Back (Flaccid)",
  29250. image: {
  29251. source: "./media/characters/nevan/back-flaccid.svg",
  29252. extra: 714 / 714,
  29253. bottom: 21 / 735
  29254. }
  29255. },
  29256. },
  29257. [
  29258. {
  29259. name: "Normal",
  29260. height: math.unit(6 + 3 / 12, "feet"),
  29261. default: true
  29262. },
  29263. ]
  29264. ))
  29265. characterMakers.push(() => makeCharacter(
  29266. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29267. {
  29268. front: {
  29269. height: math.unit(4, "feet"),
  29270. name: "Front",
  29271. image: {
  29272. source: "./media/characters/arhan/front.svg",
  29273. extra: 3368 / 3133,
  29274. bottom: 0 / 3368
  29275. }
  29276. },
  29277. side: {
  29278. height: math.unit(4, "feet"),
  29279. name: "Side",
  29280. image: {
  29281. source: "./media/characters/arhan/side.svg",
  29282. extra: 3347 / 3105,
  29283. bottom: 0 / 3347
  29284. }
  29285. },
  29286. tongue: {
  29287. height: math.unit(1.42, "feet"),
  29288. name: "Tongue",
  29289. image: {
  29290. source: "./media/characters/arhan/tongue.svg"
  29291. }
  29292. },
  29293. head: {
  29294. height: math.unit(0.85, "feet"),
  29295. name: "Head",
  29296. image: {
  29297. source: "./media/characters/arhan/head.svg"
  29298. }
  29299. },
  29300. },
  29301. [
  29302. {
  29303. name: "Normal",
  29304. height: math.unit(4, "feet"),
  29305. default: true
  29306. },
  29307. ]
  29308. ))
  29309. characterMakers.push(() => makeCharacter(
  29310. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29311. {
  29312. front: {
  29313. height: math.unit(5 + 7.5 / 12, "feet"),
  29314. weight: math.unit(120, "lb"),
  29315. name: "Front",
  29316. image: {
  29317. source: "./media/characters/digi-duncan/front.svg",
  29318. extra: 330 / 326,
  29319. bottom: 16 / 346
  29320. }
  29321. },
  29322. side: {
  29323. height: math.unit(5 + 7.5 / 12, "feet"),
  29324. weight: math.unit(120, "lb"),
  29325. name: "Side",
  29326. image: {
  29327. source: "./media/characters/digi-duncan/side.svg",
  29328. extra: 341 / 337,
  29329. bottom: 1 / 342
  29330. }
  29331. },
  29332. back: {
  29333. height: math.unit(5 + 7.5 / 12, "feet"),
  29334. weight: math.unit(120, "lb"),
  29335. name: "Back",
  29336. image: {
  29337. source: "./media/characters/digi-duncan/back.svg",
  29338. extra: 330 / 326,
  29339. bottom: 12 / 342
  29340. }
  29341. },
  29342. },
  29343. [
  29344. {
  29345. name: "Speck",
  29346. height: math.unit(0.25, "mm")
  29347. },
  29348. {
  29349. name: "Micro",
  29350. height: math.unit(5, "mm")
  29351. },
  29352. {
  29353. name: "Tiny",
  29354. height: math.unit(0.5, "inches"),
  29355. default: true
  29356. },
  29357. {
  29358. name: "Human",
  29359. height: math.unit(5 + 7.5 / 12, "feet")
  29360. },
  29361. {
  29362. name: "Minigiant",
  29363. height: math.unit(8 + 5.25, "feet")
  29364. },
  29365. {
  29366. name: "Giant",
  29367. height: math.unit(2000, "feet")
  29368. },
  29369. {
  29370. name: "Mega",
  29371. height: math.unit(371.1, "miles")
  29372. },
  29373. ]
  29374. ))
  29375. characterMakers.push(() => makeCharacter(
  29376. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29377. {
  29378. front: {
  29379. height: math.unit(2, "meters"),
  29380. weight: math.unit(350, "kg"),
  29381. name: "Front",
  29382. image: {
  29383. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29384. extra: 898 / 838,
  29385. bottom: 9 / 907
  29386. }
  29387. },
  29388. },
  29389. [
  29390. {
  29391. name: "Micro",
  29392. height: math.unit(8, "meters")
  29393. },
  29394. {
  29395. name: "Normal",
  29396. height: math.unit(50, "meters"),
  29397. default: true
  29398. },
  29399. {
  29400. name: "Macro",
  29401. height: math.unit(500, "meters")
  29402. },
  29403. ]
  29404. ))
  29405. characterMakers.push(() => makeCharacter(
  29406. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29407. {
  29408. front: {
  29409. height: math.unit(6 + 6 / 12, "feet"),
  29410. name: "Front",
  29411. image: {
  29412. source: "./media/characters/khardesh/front.svg",
  29413. extra: 888 / 797,
  29414. bottom: 25 / 913
  29415. }
  29416. },
  29417. },
  29418. [
  29419. {
  29420. name: "Normal",
  29421. height: math.unit(6 + 6 / 12, "feet"),
  29422. default: true
  29423. },
  29424. {
  29425. name: "Normal+",
  29426. height: math.unit(4, "meters")
  29427. },
  29428. {
  29429. name: "Macro",
  29430. height: math.unit(50, "meters")
  29431. },
  29432. {
  29433. name: "Macro+",
  29434. height: math.unit(100, "meters")
  29435. },
  29436. {
  29437. name: "Megamacro",
  29438. height: math.unit(20, "km")
  29439. },
  29440. ]
  29441. ))
  29442. characterMakers.push(() => makeCharacter(
  29443. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29444. {
  29445. front: {
  29446. height: math.unit(6, "feet"),
  29447. weight: math.unit(150, "lb"),
  29448. name: "Front",
  29449. image: {
  29450. source: "./media/characters/kosho/front.svg",
  29451. extra: 1847 / 1847,
  29452. bottom: 86 / 1933
  29453. }
  29454. },
  29455. },
  29456. [
  29457. {
  29458. name: "Second-stage micro",
  29459. height: math.unit(0.5, "inches")
  29460. },
  29461. {
  29462. name: "First-stage micro",
  29463. height: math.unit(6, "inches")
  29464. },
  29465. {
  29466. name: "Normal",
  29467. height: math.unit(6, "feet"),
  29468. default: true
  29469. },
  29470. {
  29471. name: "First-stage macro",
  29472. height: math.unit(72, "feet")
  29473. },
  29474. {
  29475. name: "Second-stage macro",
  29476. height: math.unit(864, "feet")
  29477. },
  29478. ]
  29479. ))
  29480. characterMakers.push(() => makeCharacter(
  29481. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29482. {
  29483. normal: {
  29484. height: math.unit(4 + 6 / 12, "feet"),
  29485. name: "Normal",
  29486. image: {
  29487. source: "./media/characters/hydra/normal.svg",
  29488. extra: 2833 / 2634,
  29489. bottom: 68 / 2901
  29490. }
  29491. },
  29492. smol: {
  29493. height: math.unit(0.705, "inches"),
  29494. name: "Smol",
  29495. image: {
  29496. source: "./media/characters/hydra/smol.svg",
  29497. extra: 2715 / 2540,
  29498. bottom: 0 / 2715
  29499. }
  29500. },
  29501. },
  29502. [
  29503. {
  29504. name: "Normal",
  29505. height: math.unit(4 + 6 / 12, "feet"),
  29506. default: true
  29507. }
  29508. ]
  29509. ))
  29510. characterMakers.push(() => makeCharacter(
  29511. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29512. {
  29513. front: {
  29514. height: math.unit(0.6, "cm"),
  29515. name: "Front",
  29516. image: {
  29517. source: "./media/characters/daz/front.svg",
  29518. extra: 1682 / 1164,
  29519. bottom: 42 / 1724
  29520. }
  29521. },
  29522. },
  29523. [
  29524. {
  29525. name: "Normal",
  29526. height: math.unit(0.6, "cm"),
  29527. default: true
  29528. },
  29529. ]
  29530. ))
  29531. characterMakers.push(() => makeCharacter(
  29532. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29533. {
  29534. front: {
  29535. height: math.unit(6, "feet"),
  29536. weight: math.unit(235, "lb"),
  29537. name: "Front",
  29538. image: {
  29539. source: "./media/characters/theo-pangolin/front.svg",
  29540. extra: 1996 / 1969,
  29541. bottom: 115 / 2111
  29542. }
  29543. },
  29544. back: {
  29545. height: math.unit(6, "feet"),
  29546. weight: math.unit(235, "lb"),
  29547. name: "Back",
  29548. image: {
  29549. source: "./media/characters/theo-pangolin/back.svg",
  29550. extra: 1979 / 1979,
  29551. bottom: 40 / 2019
  29552. }
  29553. },
  29554. feral: {
  29555. height: math.unit(2, "feet"),
  29556. weight: math.unit(30, "lb"),
  29557. name: "Feral",
  29558. image: {
  29559. source: "./media/characters/theo-pangolin/feral.svg",
  29560. extra: 803 / 791,
  29561. bottom: 181 / 984
  29562. }
  29563. },
  29564. footFive: {
  29565. height: math.unit(1.43, "feet"),
  29566. name: "Foot (Five Toes)",
  29567. image: {
  29568. source: "./media/characters/theo-pangolin/foot-five.svg"
  29569. }
  29570. },
  29571. footFour: {
  29572. height: math.unit(1.43, "feet"),
  29573. name: "Foot (Four Toes)",
  29574. image: {
  29575. source: "./media/characters/theo-pangolin/foot-four.svg"
  29576. }
  29577. },
  29578. handFour: {
  29579. height: math.unit(0.81, "feet"),
  29580. name: "Hand (Four Fingers)",
  29581. image: {
  29582. source: "./media/characters/theo-pangolin/hand-four.svg"
  29583. }
  29584. },
  29585. handThree: {
  29586. height: math.unit(0.81, "feet"),
  29587. name: "Hand (Three Fingers)",
  29588. image: {
  29589. source: "./media/characters/theo-pangolin/hand-three.svg"
  29590. }
  29591. },
  29592. headFront: {
  29593. height: math.unit(1.37, "feet"),
  29594. name: "Head (Front)",
  29595. image: {
  29596. source: "./media/characters/theo-pangolin/head-front.svg"
  29597. }
  29598. },
  29599. headSide: {
  29600. height: math.unit(1.43, "feet"),
  29601. name: "Head (Side)",
  29602. image: {
  29603. source: "./media/characters/theo-pangolin/head-side.svg"
  29604. }
  29605. },
  29606. tongue: {
  29607. height: math.unit(2.29, "feet"),
  29608. name: "Tongue",
  29609. image: {
  29610. source: "./media/characters/theo-pangolin/tongue.svg"
  29611. }
  29612. },
  29613. },
  29614. [
  29615. {
  29616. name: "Normal",
  29617. height: math.unit(6, "feet")
  29618. },
  29619. {
  29620. name: "Macro",
  29621. height: math.unit(400, "feet"),
  29622. default: true
  29623. },
  29624. ]
  29625. ))
  29626. characterMakers.push(() => makeCharacter(
  29627. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29628. {
  29629. front: {
  29630. height: math.unit(6, "inches"),
  29631. weight: math.unit(0.036, "kg"),
  29632. name: "Front",
  29633. image: {
  29634. source: "./media/characters/renée/front.svg",
  29635. extra: 900 / 886,
  29636. bottom: 8 / 908
  29637. }
  29638. },
  29639. },
  29640. [
  29641. {
  29642. name: "Nano",
  29643. height: math.unit(1, "nm")
  29644. },
  29645. {
  29646. name: "Micro",
  29647. height: math.unit(1, "mm")
  29648. },
  29649. {
  29650. name: "Normal",
  29651. height: math.unit(6, "inches")
  29652. },
  29653. {
  29654. name: "Macro",
  29655. height: math.unit(2000, "feet"),
  29656. default: true
  29657. },
  29658. {
  29659. name: "Megamacro",
  29660. height: math.unit(2, "km")
  29661. },
  29662. {
  29663. name: "Gigamacro",
  29664. height: math.unit(2000, "km")
  29665. },
  29666. {
  29667. name: "Teramacro",
  29668. height: math.unit(250000, "km")
  29669. },
  29670. ]
  29671. ))
  29672. characterMakers.push(() => makeCharacter(
  29673. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29674. {
  29675. front: {
  29676. height: math.unit(4, "meters"),
  29677. weight: math.unit(150, "kg"),
  29678. name: "Front",
  29679. image: {
  29680. source: "./media/characters/caledvwlch/front.svg",
  29681. extra: 1760 / 1551,
  29682. bottom: 28 / 1788
  29683. }
  29684. },
  29685. side: {
  29686. height: math.unit(4, "meters"),
  29687. weight: math.unit(150, "kg"),
  29688. name: "Side",
  29689. image: {
  29690. source: "./media/characters/caledvwlch/side.svg",
  29691. extra: 1605 / 1536,
  29692. bottom: 31 / 1636
  29693. }
  29694. },
  29695. back: {
  29696. height: math.unit(4, "meters"),
  29697. weight: math.unit(150, "kg"),
  29698. name: "Back",
  29699. image: {
  29700. source: "./media/characters/caledvwlch/back.svg",
  29701. extra: 1635 / 1565,
  29702. bottom: 27 / 1662
  29703. }
  29704. },
  29705. },
  29706. [
  29707. {
  29708. name: "\"Incognito\"",
  29709. height: math.unit(4, "meters")
  29710. },
  29711. {
  29712. name: "Small rampage",
  29713. height: math.unit(600, "meters")
  29714. },
  29715. {
  29716. name: "Mega",
  29717. height: math.unit(30, "km")
  29718. },
  29719. {
  29720. name: "Home-size",
  29721. height: math.unit(50, "km"),
  29722. default: true
  29723. },
  29724. {
  29725. name: "Giga",
  29726. height: math.unit(300, "km")
  29727. },
  29728. {
  29729. name: "Lounging",
  29730. height: math.unit(11000, "km")
  29731. },
  29732. {
  29733. name: "Planet snacking",
  29734. height: math.unit(2000000, "km")
  29735. },
  29736. ]
  29737. ))
  29738. characterMakers.push(() => makeCharacter(
  29739. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29740. {
  29741. front: {
  29742. height: math.unit(6, "feet"),
  29743. weight: math.unit(215, "lb"),
  29744. name: "Front",
  29745. image: {
  29746. source: "./media/characters/sapphire-svell/front.svg",
  29747. extra: 495 / 455,
  29748. bottom: 20 / 515
  29749. }
  29750. },
  29751. back: {
  29752. height: math.unit(6, "feet"),
  29753. weight: math.unit(216, "lb"),
  29754. name: "Back",
  29755. image: {
  29756. source: "./media/characters/sapphire-svell/back.svg",
  29757. extra: 497 / 477,
  29758. bottom: 7 / 504
  29759. }
  29760. },
  29761. maw: {
  29762. height: math.unit(1.57, "feet"),
  29763. name: "Maw",
  29764. image: {
  29765. source: "./media/characters/sapphire-svell/maw.svg"
  29766. }
  29767. },
  29768. foot: {
  29769. height: math.unit(1.07, "feet"),
  29770. name: "Foot",
  29771. image: {
  29772. source: "./media/characters/sapphire-svell/foot.svg"
  29773. }
  29774. },
  29775. toering: {
  29776. height: math.unit(1.7, "inch"),
  29777. name: "Toering",
  29778. image: {
  29779. source: "./media/characters/sapphire-svell/toering.svg"
  29780. }
  29781. },
  29782. },
  29783. [
  29784. {
  29785. name: "Normal",
  29786. height: math.unit(300, "feet"),
  29787. default: true
  29788. },
  29789. {
  29790. name: "Augmented",
  29791. height: math.unit(1250, "feet")
  29792. },
  29793. {
  29794. name: "Unleashed",
  29795. height: math.unit(3000, "feet")
  29796. },
  29797. ]
  29798. ))
  29799. characterMakers.push(() => makeCharacter(
  29800. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29801. {
  29802. side: {
  29803. height: math.unit(2 + 3 / 12, "feet"),
  29804. weight: math.unit(110, "lb"),
  29805. name: "Side",
  29806. image: {
  29807. source: "./media/characters/glitch-flux/side.svg",
  29808. extra: 997 / 805,
  29809. bottom: 20 / 1017
  29810. }
  29811. },
  29812. },
  29813. [
  29814. {
  29815. name: "Normal",
  29816. height: math.unit(2 + 3 / 12, "feet"),
  29817. default: true
  29818. },
  29819. ]
  29820. ))
  29821. characterMakers.push(() => makeCharacter(
  29822. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29823. {
  29824. front: {
  29825. height: math.unit(4, "meters"),
  29826. name: "Front",
  29827. image: {
  29828. source: "./media/characters/mid/front.svg",
  29829. extra: 507 / 476,
  29830. bottom: 17 / 524
  29831. }
  29832. },
  29833. back: {
  29834. height: math.unit(4, "meters"),
  29835. name: "Back",
  29836. image: {
  29837. source: "./media/characters/mid/back.svg",
  29838. extra: 519 / 487,
  29839. bottom: 7 / 526
  29840. }
  29841. },
  29842. stuck: {
  29843. height: math.unit(2.2, "meters"),
  29844. name: "Stuck",
  29845. image: {
  29846. source: "./media/characters/mid/stuck.svg",
  29847. extra: 1951 / 1869,
  29848. bottom: 88 / 2039
  29849. }
  29850. }
  29851. },
  29852. [
  29853. {
  29854. name: "Normal",
  29855. height: math.unit(4, "meters"),
  29856. default: true
  29857. },
  29858. {
  29859. name: "Big",
  29860. height: math.unit(10, "meters")
  29861. },
  29862. {
  29863. name: "Macro",
  29864. height: math.unit(800, "meters")
  29865. },
  29866. {
  29867. name: "Megamacro",
  29868. height: math.unit(100, "km")
  29869. },
  29870. {
  29871. name: "Overgrown",
  29872. height: math.unit(1, "parsec")
  29873. },
  29874. ]
  29875. ))
  29876. characterMakers.push(() => makeCharacter(
  29877. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29878. {
  29879. front: {
  29880. height: math.unit(2.5, "meters"),
  29881. weight: math.unit(225, "kg"),
  29882. name: "Front",
  29883. image: {
  29884. source: "./media/characters/iris/front.svg",
  29885. extra: 3348 / 3251,
  29886. bottom: 205 / 3553
  29887. }
  29888. },
  29889. maw: {
  29890. height: math.unit(0.56, "meter"),
  29891. name: "Maw",
  29892. image: {
  29893. source: "./media/characters/iris/maw.svg"
  29894. }
  29895. },
  29896. },
  29897. [
  29898. {
  29899. name: "Mewter cat",
  29900. height: math.unit(1.2, "meters")
  29901. },
  29902. {
  29903. name: "Minimacro",
  29904. height: math.unit(2.5, "meters"),
  29905. default: true
  29906. },
  29907. {
  29908. name: "Macro",
  29909. height: math.unit(180, "meters")
  29910. },
  29911. {
  29912. name: "Megamacro",
  29913. height: math.unit(2746, "meters")
  29914. },
  29915. ]
  29916. ))
  29917. characterMakers.push(() => makeCharacter(
  29918. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29919. {
  29920. front: {
  29921. height: math.unit(6, "feet"),
  29922. weight: math.unit(135, "lb"),
  29923. name: "Front",
  29924. image: {
  29925. source: "./media/characters/axel/front.svg",
  29926. extra: 908 / 908,
  29927. bottom: 58 / 966
  29928. }
  29929. },
  29930. side: {
  29931. height: math.unit(6, "feet"),
  29932. weight: math.unit(135, "lb"),
  29933. name: "Side",
  29934. image: {
  29935. source: "./media/characters/axel/side.svg",
  29936. extra: 958 / 958,
  29937. bottom: 11 / 969
  29938. }
  29939. },
  29940. back: {
  29941. height: math.unit(6, "feet"),
  29942. weight: math.unit(135, "lb"),
  29943. name: "Back",
  29944. image: {
  29945. source: "./media/characters/axel/back.svg",
  29946. extra: 887 / 887,
  29947. bottom: 34 / 921
  29948. }
  29949. },
  29950. head: {
  29951. height: math.unit(1.07, "feet"),
  29952. name: "Head",
  29953. image: {
  29954. source: "./media/characters/axel/head.svg"
  29955. }
  29956. },
  29957. beak: {
  29958. height: math.unit(1.4, "feet"),
  29959. name: "Beak",
  29960. image: {
  29961. source: "./media/characters/axel/beak.svg"
  29962. }
  29963. },
  29964. beakSide: {
  29965. height: math.unit(1.4, "feet"),
  29966. name: "Beak Side",
  29967. image: {
  29968. source: "./media/characters/axel/beak-side.svg"
  29969. }
  29970. },
  29971. sheath: {
  29972. height: math.unit(0.5, "feet"),
  29973. name: "Sheath",
  29974. image: {
  29975. source: "./media/characters/axel/sheath.svg"
  29976. }
  29977. },
  29978. dick: {
  29979. height: math.unit(0.98, "feet"),
  29980. name: "Dick",
  29981. image: {
  29982. source: "./media/characters/axel/dick.svg"
  29983. }
  29984. },
  29985. },
  29986. [
  29987. {
  29988. name: "Macro",
  29989. height: math.unit(68, "meters"),
  29990. default: true
  29991. },
  29992. ]
  29993. ))
  29994. characterMakers.push(() => makeCharacter(
  29995. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29996. {
  29997. front: {
  29998. height: math.unit(3.5, "meters"),
  29999. weight: math.unit(1200, "kg"),
  30000. name: "Front",
  30001. image: {
  30002. source: "./media/characters/joanna/front.svg",
  30003. extra: 1596 / 1488,
  30004. bottom: 29 / 1625
  30005. }
  30006. },
  30007. back: {
  30008. height: math.unit(3.5, "meters"),
  30009. weight: math.unit(1200, "kg"),
  30010. name: "Back",
  30011. image: {
  30012. source: "./media/characters/joanna/back.svg",
  30013. extra: 1594 / 1495,
  30014. bottom: 26 / 1620
  30015. }
  30016. },
  30017. frontShorts: {
  30018. height: math.unit(3.5, "meters"),
  30019. weight: math.unit(1200, "kg"),
  30020. name: "Front (Shorts)",
  30021. image: {
  30022. source: "./media/characters/joanna/front-shorts.svg",
  30023. extra: 1596 / 1488,
  30024. bottom: 29 / 1625
  30025. }
  30026. },
  30027. frontBiker: {
  30028. height: math.unit(3.5, "meters"),
  30029. weight: math.unit(1200, "kg"),
  30030. name: "Front (Biker)",
  30031. image: {
  30032. source: "./media/characters/joanna/front-biker.svg",
  30033. extra: 1596 / 1488,
  30034. bottom: 29 / 1625
  30035. }
  30036. },
  30037. backBiker: {
  30038. height: math.unit(3.5, "meters"),
  30039. weight: math.unit(1200, "kg"),
  30040. name: "Back (Biker)",
  30041. image: {
  30042. source: "./media/characters/joanna/back-biker.svg",
  30043. extra: 1594 / 1495,
  30044. bottom: 88 / 1682
  30045. }
  30046. },
  30047. bikeLeft: {
  30048. height: math.unit(2.4, "meters"),
  30049. weight: math.unit(1600, "kg"),
  30050. name: "Bike (Left)",
  30051. image: {
  30052. source: "./media/characters/joanna/bike-left.svg",
  30053. extra: 720 / 720,
  30054. bottom: 8 / 728
  30055. }
  30056. },
  30057. bikeRight: {
  30058. height: math.unit(2.4, "meters"),
  30059. weight: math.unit(1600, "kg"),
  30060. name: "Bike (Right)",
  30061. image: {
  30062. source: "./media/characters/joanna/bike-right.svg",
  30063. extra: 720 / 720,
  30064. bottom: 8 / 728
  30065. }
  30066. },
  30067. },
  30068. [
  30069. {
  30070. name: "Incognito",
  30071. height: math.unit(3.5, "meters")
  30072. },
  30073. {
  30074. name: "Casual Big",
  30075. height: math.unit(200, "meters")
  30076. },
  30077. {
  30078. name: "Macro",
  30079. height: math.unit(600, "meters")
  30080. },
  30081. {
  30082. name: "Original",
  30083. height: math.unit(20, "km"),
  30084. default: true
  30085. },
  30086. {
  30087. name: "Giga",
  30088. height: math.unit(400, "km")
  30089. },
  30090. {
  30091. name: "Lounging",
  30092. height: math.unit(1500, "km")
  30093. },
  30094. {
  30095. name: "Planetary",
  30096. height: math.unit(200000, "km")
  30097. },
  30098. ]
  30099. ))
  30100. characterMakers.push(() => makeCharacter(
  30101. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30102. {
  30103. front: {
  30104. height: math.unit(6, "feet"),
  30105. weight: math.unit(150, "lb"),
  30106. name: "Front",
  30107. image: {
  30108. source: "./media/characters/hugo-sigil/front.svg",
  30109. extra: 522 / 500,
  30110. bottom: 2 / 524
  30111. }
  30112. },
  30113. back: {
  30114. height: math.unit(6, "feet"),
  30115. weight: math.unit(150, "lb"),
  30116. name: "Back",
  30117. image: {
  30118. source: "./media/characters/hugo-sigil/back.svg",
  30119. extra: 519 / 495,
  30120. bottom: 5 / 524
  30121. }
  30122. },
  30123. maw: {
  30124. height: math.unit(1.4, "feet"),
  30125. weight: math.unit(150, "lb"),
  30126. name: "Maw",
  30127. image: {
  30128. source: "./media/characters/hugo-sigil/maw.svg"
  30129. }
  30130. },
  30131. feet: {
  30132. height: math.unit(1.56, "feet"),
  30133. weight: math.unit(150, "lb"),
  30134. name: "Feet",
  30135. image: {
  30136. source: "./media/characters/hugo-sigil/feet.svg",
  30137. extra: 177 / 177,
  30138. bottom: 12 / 189
  30139. }
  30140. },
  30141. },
  30142. [
  30143. {
  30144. name: "Normal",
  30145. height: math.unit(6, "feet")
  30146. },
  30147. {
  30148. name: "Macro",
  30149. height: math.unit(200, "feet"),
  30150. default: true
  30151. },
  30152. ]
  30153. ))
  30154. characterMakers.push(() => makeCharacter(
  30155. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30156. {
  30157. front: {
  30158. height: math.unit(6, "feet"),
  30159. weight: math.unit(150, "lb"),
  30160. name: "Front",
  30161. image: {
  30162. source: "./media/characters/peri/front.svg",
  30163. extra: 2354 / 2233,
  30164. bottom: 49 / 2403
  30165. }
  30166. },
  30167. },
  30168. [
  30169. {
  30170. name: "Really Small",
  30171. height: math.unit(1, "nm")
  30172. },
  30173. {
  30174. name: "Micro",
  30175. height: math.unit(4, "inches")
  30176. },
  30177. {
  30178. name: "Normal",
  30179. height: math.unit(7, "inches"),
  30180. default: true
  30181. },
  30182. {
  30183. name: "Macro",
  30184. height: math.unit(400, "feet")
  30185. },
  30186. {
  30187. name: "Megamacro",
  30188. height: math.unit(100, "miles")
  30189. },
  30190. ]
  30191. ))
  30192. characterMakers.push(() => makeCharacter(
  30193. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30194. {
  30195. frontSlim: {
  30196. height: math.unit(7, "feet"),
  30197. name: "Front (Slim)",
  30198. image: {
  30199. source: "./media/characters/issilora/front-slim.svg",
  30200. extra: 529 / 449,
  30201. bottom: 53 / 582
  30202. }
  30203. },
  30204. sideSlim: {
  30205. height: math.unit(7, "feet"),
  30206. name: "Side (Slim)",
  30207. image: {
  30208. source: "./media/characters/issilora/side-slim.svg",
  30209. extra: 570 / 480,
  30210. bottom: 30 / 600
  30211. }
  30212. },
  30213. backSlim: {
  30214. height: math.unit(7, "feet"),
  30215. name: "Back (Slim)",
  30216. image: {
  30217. source: "./media/characters/issilora/back-slim.svg",
  30218. extra: 537 / 455,
  30219. bottom: 46 / 583
  30220. }
  30221. },
  30222. frontBuff: {
  30223. height: math.unit(7, "feet"),
  30224. name: "Front (Buff)",
  30225. image: {
  30226. source: "./media/characters/issilora/front-buff.svg",
  30227. extra: 2310 / 2035,
  30228. bottom: 335 / 2645
  30229. }
  30230. },
  30231. head: {
  30232. height: math.unit(1.94, "feet"),
  30233. name: "Head",
  30234. image: {
  30235. source: "./media/characters/issilora/head.svg"
  30236. }
  30237. },
  30238. },
  30239. [
  30240. {
  30241. name: "Minimum",
  30242. height: math.unit(7, "feet")
  30243. },
  30244. {
  30245. name: "Comfortable",
  30246. height: math.unit(17, "feet")
  30247. },
  30248. {
  30249. name: "Fun Size",
  30250. height: math.unit(47, "feet")
  30251. },
  30252. {
  30253. name: "Natural Macro",
  30254. height: math.unit(137, "feet"),
  30255. default: true
  30256. },
  30257. {
  30258. name: "Maximum Kaiju",
  30259. height: math.unit(397, "feet")
  30260. },
  30261. ]
  30262. ))
  30263. characterMakers.push(() => makeCharacter(
  30264. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30265. {
  30266. front: {
  30267. height: math.unit(50 + 9/12, "feet"),
  30268. weight: math.unit(32.8, "tons"),
  30269. name: "Front",
  30270. image: {
  30271. source: "./media/characters/irb'iiritaahn/front.svg",
  30272. extra: 1878/1826,
  30273. bottom: 326/2204
  30274. }
  30275. },
  30276. back: {
  30277. height: math.unit(50 + 9/12, "feet"),
  30278. weight: math.unit(32.8, "tons"),
  30279. name: "Back",
  30280. image: {
  30281. source: "./media/characters/irb'iiritaahn/back.svg",
  30282. extra: 2052/2018,
  30283. bottom: 152/2204
  30284. }
  30285. },
  30286. head: {
  30287. height: math.unit(12.86, "feet"),
  30288. name: "Head",
  30289. image: {
  30290. source: "./media/characters/irb'iiritaahn/head.svg"
  30291. }
  30292. },
  30293. maw: {
  30294. height: math.unit(9.66, "feet"),
  30295. name: "Maw",
  30296. image: {
  30297. source: "./media/characters/irb'iiritaahn/maw.svg"
  30298. }
  30299. },
  30300. frontDick: {
  30301. height: math.unit(8.78461, "feet"),
  30302. name: "Front Dick",
  30303. image: {
  30304. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30305. }
  30306. },
  30307. rearDick: {
  30308. height: math.unit(8.78461, "feet"),
  30309. name: "Rear Dick",
  30310. image: {
  30311. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30312. }
  30313. },
  30314. rearDickUnfolded: {
  30315. height: math.unit(8.78, "feet"),
  30316. name: "Rear Dick (Unfolded)",
  30317. image: {
  30318. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30319. }
  30320. },
  30321. wings: {
  30322. height: math.unit(43, "feet"),
  30323. name: "Wings",
  30324. image: {
  30325. source: "./media/characters/irb'iiritaahn/wings.svg"
  30326. }
  30327. },
  30328. },
  30329. [
  30330. {
  30331. name: "Macro",
  30332. height: math.unit(50 + 9/12, "feet"),
  30333. default: true
  30334. },
  30335. ]
  30336. ))
  30337. characterMakers.push(() => makeCharacter(
  30338. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30339. {
  30340. front: {
  30341. height: math.unit(205, "cm"),
  30342. weight: math.unit(102, "kg"),
  30343. name: "Front",
  30344. image: {
  30345. source: "./media/characters/irbisgreif/front.svg",
  30346. extra: 785/706,
  30347. bottom: 13/798
  30348. }
  30349. },
  30350. back: {
  30351. height: math.unit(205, "cm"),
  30352. weight: math.unit(102, "kg"),
  30353. name: "Back",
  30354. image: {
  30355. source: "./media/characters/irbisgreif/back.svg",
  30356. extra: 713/701,
  30357. bottom: 26/739
  30358. }
  30359. },
  30360. frontDressed: {
  30361. height: math.unit(216, "cm"),
  30362. weight: math.unit(102, "kg"),
  30363. name: "Front-dressed",
  30364. image: {
  30365. source: "./media/characters/irbisgreif/front-dressed.svg",
  30366. extra: 902/776,
  30367. bottom: 14/916
  30368. }
  30369. },
  30370. sideDressed: {
  30371. height: math.unit(195, "cm"),
  30372. weight: math.unit(102, "kg"),
  30373. name: "Side-dressed",
  30374. image: {
  30375. source: "./media/characters/irbisgreif/side-dressed.svg",
  30376. extra: 788/688,
  30377. bottom: 21/809
  30378. }
  30379. },
  30380. backDressed: {
  30381. height: math.unit(216, "cm"),
  30382. weight: math.unit(102, "kg"),
  30383. name: "Back-dressed",
  30384. image: {
  30385. source: "./media/characters/irbisgreif/back-dressed.svg",
  30386. extra: 901/783,
  30387. bottom: 10/911
  30388. }
  30389. },
  30390. dick: {
  30391. height: math.unit(0.49, "feet"),
  30392. name: "Dick",
  30393. image: {
  30394. source: "./media/characters/irbisgreif/dick.svg"
  30395. }
  30396. },
  30397. wingTop: {
  30398. height: math.unit(1.93 , "feet"),
  30399. name: "Wing-top",
  30400. image: {
  30401. source: "./media/characters/irbisgreif/wing-top.svg"
  30402. }
  30403. },
  30404. wingBottom: {
  30405. height: math.unit(1.93 , "feet"),
  30406. name: "Wing-bottom",
  30407. image: {
  30408. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30409. }
  30410. },
  30411. },
  30412. [
  30413. {
  30414. name: "Normal",
  30415. height: math.unit(216, "cm"),
  30416. default: true
  30417. },
  30418. ]
  30419. ))
  30420. characterMakers.push(() => makeCharacter(
  30421. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30422. {
  30423. front: {
  30424. height: math.unit(6, "feet"),
  30425. weight: math.unit(150, "lb"),
  30426. name: "Front",
  30427. image: {
  30428. source: "./media/characters/pride/front.svg",
  30429. extra: 1299/1230,
  30430. bottom: 18/1317
  30431. }
  30432. },
  30433. },
  30434. [
  30435. {
  30436. name: "Normal",
  30437. height: math.unit(7, "feet")
  30438. },
  30439. {
  30440. name: "Mini-macro",
  30441. height: math.unit(11, "feet")
  30442. },
  30443. {
  30444. name: "Macro",
  30445. height: math.unit(15, "meters"),
  30446. default: true
  30447. },
  30448. {
  30449. name: "Macro+",
  30450. height: math.unit(40, "meters")
  30451. },
  30452. ]
  30453. ))
  30454. characterMakers.push(() => makeCharacter(
  30455. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30456. {
  30457. front: {
  30458. height: math.unit(4 + 2 / 12, "feet"),
  30459. weight: math.unit(95, "lb"),
  30460. name: "Front",
  30461. image: {
  30462. source: "./media/characters/vaelophis-nyx/front.svg",
  30463. extra: 2532/2330,
  30464. bottom: 0/2532
  30465. }
  30466. },
  30467. back: {
  30468. height: math.unit(4 + 2 / 12, "feet"),
  30469. weight: math.unit(95, "lb"),
  30470. name: "Back",
  30471. image: {
  30472. source: "./media/characters/vaelophis-nyx/back.svg",
  30473. extra: 2484/2361,
  30474. bottom: 0/2484
  30475. }
  30476. },
  30477. feralSide: {
  30478. height: math.unit(2 + 1/12, "feet"),
  30479. weight: math.unit(20, "lb"),
  30480. name: "Feral (Side)",
  30481. image: {
  30482. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30483. extra: 1721/1581,
  30484. bottom: 70/1791
  30485. }
  30486. },
  30487. feralLazing: {
  30488. height: math.unit(1.08, "feet"),
  30489. weight: math.unit(20, "lb"),
  30490. name: "Feral (Lazing)",
  30491. image: {
  30492. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30493. extra: 822/822,
  30494. bottom: 248/1070
  30495. }
  30496. },
  30497. ear: {
  30498. height: math.unit(0.416, "feet"),
  30499. name: "Ear",
  30500. image: {
  30501. source: "./media/characters/vaelophis-nyx/ear.svg"
  30502. }
  30503. },
  30504. eye: {
  30505. height: math.unit(0.0748, "feet"),
  30506. name: "Eye",
  30507. image: {
  30508. source: "./media/characters/vaelophis-nyx/eye.svg"
  30509. }
  30510. },
  30511. mouth: {
  30512. height: math.unit(0.378, "feet"),
  30513. name: "Mouth",
  30514. image: {
  30515. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30516. }
  30517. },
  30518. spade: {
  30519. height: math.unit(0.55, "feet"),
  30520. name: "Spade",
  30521. image: {
  30522. source: "./media/characters/vaelophis-nyx/spade.svg"
  30523. }
  30524. },
  30525. },
  30526. [
  30527. {
  30528. name: "Normal",
  30529. height: math.unit(4 + 2/12, "feet"),
  30530. default: true
  30531. },
  30532. ]
  30533. ))
  30534. characterMakers.push(() => makeCharacter(
  30535. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30536. {
  30537. front: {
  30538. height: math.unit(7, "feet"),
  30539. weight: math.unit(231, "lb"),
  30540. name: "Front",
  30541. image: {
  30542. source: "./media/characters/flux/front.svg",
  30543. extra: 919/871,
  30544. bottom: 0/919
  30545. }
  30546. },
  30547. back: {
  30548. height: math.unit(7, "feet"),
  30549. weight: math.unit(231, "lb"),
  30550. name: "Back",
  30551. image: {
  30552. source: "./media/characters/flux/back.svg",
  30553. extra: 1040/992,
  30554. bottom: 0/1040
  30555. }
  30556. },
  30557. frontDressed: {
  30558. height: math.unit(7, "feet"),
  30559. weight: math.unit(231, "lb"),
  30560. name: "Front (Dressed)",
  30561. image: {
  30562. source: "./media/characters/flux/front-dressed.svg",
  30563. extra: 919/871,
  30564. bottom: 0/919
  30565. }
  30566. },
  30567. feralSide: {
  30568. height: math.unit(5, "feet"),
  30569. weight: math.unit(150, "lb"),
  30570. name: "Feral (Side)",
  30571. image: {
  30572. source: "./media/characters/flux/feral-side.svg",
  30573. extra: 598/528,
  30574. bottom: 28/626
  30575. }
  30576. },
  30577. head: {
  30578. height: math.unit(1.585, "feet"),
  30579. name: "Head",
  30580. image: {
  30581. source: "./media/characters/flux/head.svg"
  30582. }
  30583. },
  30584. headSide: {
  30585. height: math.unit(1.74, "feet"),
  30586. name: "Head (Side)",
  30587. image: {
  30588. source: "./media/characters/flux/head-side.svg"
  30589. }
  30590. },
  30591. headSideFire: {
  30592. height: math.unit(1.76, "feet"),
  30593. name: "Head (Side, Fire)",
  30594. image: {
  30595. source: "./media/characters/flux/head-side-fire.svg"
  30596. }
  30597. },
  30598. },
  30599. [
  30600. {
  30601. name: "Normal",
  30602. height: math.unit(7, "feet"),
  30603. default: true
  30604. },
  30605. ]
  30606. ))
  30607. characterMakers.push(() => makeCharacter(
  30608. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30609. {
  30610. front: {
  30611. height: math.unit(9, "feet"),
  30612. weight: math.unit(1012, "lb"),
  30613. name: "Front",
  30614. image: {
  30615. source: "./media/characters/ulfra-lupae/front.svg",
  30616. extra: 1083/1011,
  30617. bottom: 67/1150
  30618. }
  30619. },
  30620. },
  30621. [
  30622. {
  30623. name: "Micro",
  30624. height: math.unit(6, "inches")
  30625. },
  30626. {
  30627. name: "Socializing",
  30628. height: math.unit(6 + 5/12, "feet")
  30629. },
  30630. {
  30631. name: "Normal",
  30632. height: math.unit(9, "feet"),
  30633. default: true
  30634. },
  30635. {
  30636. name: "Macro",
  30637. height: math.unit(150, "feet")
  30638. },
  30639. ]
  30640. ))
  30641. characterMakers.push(() => makeCharacter(
  30642. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30643. {
  30644. front: {
  30645. height: math.unit(5 + 2/12, "feet"),
  30646. weight: math.unit(120, "lb"),
  30647. name: "Front",
  30648. image: {
  30649. source: "./media/characters/timber/front.svg",
  30650. extra: 2814/2705,
  30651. bottom: 181/2995
  30652. }
  30653. },
  30654. },
  30655. [
  30656. {
  30657. name: "Normal",
  30658. height: math.unit(5 + 2/12, "feet"),
  30659. default: true
  30660. },
  30661. ]
  30662. ))
  30663. characterMakers.push(() => makeCharacter(
  30664. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30665. {
  30666. front: {
  30667. height: math.unit(5 + 7/12, "feet"),
  30668. weight: math.unit(220, "lb"),
  30669. name: "Front",
  30670. image: {
  30671. source: "./media/characters/nicki/front.svg",
  30672. extra: 453/419,
  30673. bottom: 7/460
  30674. }
  30675. },
  30676. frontAlt: {
  30677. height: math.unit(5 + 7/12, "feet"),
  30678. weight: math.unit(220, "lb"),
  30679. name: "Front-alt",
  30680. image: {
  30681. source: "./media/characters/nicki/front-alt.svg",
  30682. extra: 435/411,
  30683. bottom: 12/447
  30684. }
  30685. },
  30686. back: {
  30687. height: math.unit(5 + 7/12, "feet"),
  30688. weight: math.unit(220, "lb"),
  30689. name: "Back",
  30690. image: {
  30691. source: "./media/characters/nicki/back.svg",
  30692. extra: 440/413,
  30693. bottom: 19/459
  30694. }
  30695. },
  30696. taur: {
  30697. height: math.unit(7 + 6/12, "feet"),
  30698. weight: math.unit(700, "lb"),
  30699. name: "Taur",
  30700. image: {
  30701. source: "./media/characters/nicki/taur.svg",
  30702. extra: 975/773,
  30703. bottom: 0/975
  30704. }
  30705. },
  30706. frontNsfw: {
  30707. height: math.unit(5 + 7/12, "feet"),
  30708. weight: math.unit(220, "lb"),
  30709. name: "Front (NSFW)",
  30710. image: {
  30711. source: "./media/characters/nicki/front-nsfw.svg",
  30712. extra: 453/419,
  30713. bottom: 7/460
  30714. }
  30715. },
  30716. frontNsfwAlt: {
  30717. height: math.unit(5 + 7/12, "feet"),
  30718. weight: math.unit(220, "lb"),
  30719. name: "Front (Alt, NSFW)",
  30720. image: {
  30721. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30722. extra: 435/411,
  30723. bottom: 12/447
  30724. }
  30725. },
  30726. backNsfw: {
  30727. height: math.unit(5 + 7/12, "feet"),
  30728. weight: math.unit(220, "lb"),
  30729. name: "Back (NSFW)",
  30730. image: {
  30731. source: "./media/characters/nicki/back-nsfw.svg",
  30732. extra: 440/413,
  30733. bottom: 19/459
  30734. }
  30735. },
  30736. head: {
  30737. height: math.unit(2.1, "feet"),
  30738. name: "Head",
  30739. image: {
  30740. source: "./media/characters/nicki/head.svg"
  30741. }
  30742. },
  30743. paw: {
  30744. height: math.unit(1.88, "feet"),
  30745. name: "Paw",
  30746. image: {
  30747. source: "./media/characters/nicki/paw.svg"
  30748. }
  30749. },
  30750. },
  30751. [
  30752. {
  30753. name: "Normal",
  30754. height: math.unit(5 + 7/12, "feet"),
  30755. default: true
  30756. },
  30757. ]
  30758. ))
  30759. characterMakers.push(() => makeCharacter(
  30760. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30761. {
  30762. front: {
  30763. height: math.unit(7 + 10/12, "feet"),
  30764. weight: math.unit(3.5, "tons"),
  30765. name: "Front",
  30766. image: {
  30767. source: "./media/characters/lee/front.svg",
  30768. extra: 1773/1615,
  30769. bottom: 86/1859
  30770. }
  30771. },
  30772. hand: {
  30773. height: math.unit(1.78, "feet"),
  30774. name: "Hand",
  30775. image: {
  30776. source: "./media/characters/lee/hand.svg"
  30777. }
  30778. },
  30779. maw: {
  30780. height: math.unit(1.18, "feet"),
  30781. name: "Maw",
  30782. image: {
  30783. source: "./media/characters/lee/maw.svg"
  30784. }
  30785. },
  30786. },
  30787. [
  30788. {
  30789. name: "Normal",
  30790. height: math.unit(7 + 10/12, "feet"),
  30791. default: true
  30792. },
  30793. ]
  30794. ))
  30795. characterMakers.push(() => makeCharacter(
  30796. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30797. {
  30798. front: {
  30799. height: math.unit(9, "feet"),
  30800. name: "Front",
  30801. image: {
  30802. source: "./media/characters/guti/front.svg",
  30803. extra: 4551/4355,
  30804. bottom: 123/4674
  30805. }
  30806. },
  30807. tongue: {
  30808. height: math.unit(1, "feet"),
  30809. name: "Tongue",
  30810. image: {
  30811. source: "./media/characters/guti/tongue.svg"
  30812. }
  30813. },
  30814. paw: {
  30815. height: math.unit(1.18, "feet"),
  30816. name: "Paw",
  30817. image: {
  30818. source: "./media/characters/guti/paw.svg"
  30819. }
  30820. },
  30821. },
  30822. [
  30823. {
  30824. name: "Normal",
  30825. height: math.unit(9, "feet"),
  30826. default: true
  30827. },
  30828. ]
  30829. ))
  30830. characterMakers.push(() => makeCharacter(
  30831. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30832. {
  30833. side: {
  30834. height: math.unit(5, "meters"),
  30835. name: "Side",
  30836. image: {
  30837. source: "./media/characters/vesper/side.svg",
  30838. extra: 1605/1518,
  30839. bottom: 0/1605
  30840. }
  30841. },
  30842. },
  30843. [
  30844. {
  30845. name: "Small",
  30846. height: math.unit(5, "meters")
  30847. },
  30848. {
  30849. name: "Sage",
  30850. height: math.unit(100, "meters"),
  30851. default: true
  30852. },
  30853. {
  30854. name: "Fun Size",
  30855. height: math.unit(600, "meters")
  30856. },
  30857. {
  30858. name: "Goddess",
  30859. height: math.unit(20000, "km")
  30860. },
  30861. {
  30862. name: "Maximum",
  30863. height: math.unit(5, "galaxies")
  30864. },
  30865. ]
  30866. ))
  30867. characterMakers.push(() => makeCharacter(
  30868. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30869. {
  30870. front: {
  30871. height: math.unit(6 + 3/12, "feet"),
  30872. weight: math.unit(190, "lb"),
  30873. name: "Front",
  30874. image: {
  30875. source: "./media/characters/gawain/front.svg",
  30876. extra: 2222/2139,
  30877. bottom: 90/2312
  30878. }
  30879. },
  30880. back: {
  30881. height: math.unit(6 + 3/12, "feet"),
  30882. weight: math.unit(190, "lb"),
  30883. name: "Back",
  30884. image: {
  30885. source: "./media/characters/gawain/back.svg",
  30886. extra: 2199/2111,
  30887. bottom: 73/2272
  30888. }
  30889. },
  30890. },
  30891. [
  30892. {
  30893. name: "Normal",
  30894. height: math.unit(6 + 3/12, "feet"),
  30895. default: true
  30896. },
  30897. ]
  30898. ))
  30899. characterMakers.push(() => makeCharacter(
  30900. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30901. {
  30902. side: {
  30903. height: math.unit(3.5, "meters"),
  30904. weight: math.unit(16000, "lb"),
  30905. name: "Side",
  30906. image: {
  30907. source: "./media/characters/dascalti/side.svg",
  30908. extra: 392/273,
  30909. bottom: 47/439
  30910. }
  30911. },
  30912. breath: {
  30913. height: math.unit(7.4, "feet"),
  30914. name: "Breath",
  30915. image: {
  30916. source: "./media/characters/dascalti/breath.svg"
  30917. }
  30918. },
  30919. fed: {
  30920. height: math.unit(3.6, "meters"),
  30921. weight: math.unit(16000, "lb"),
  30922. name: "Fed",
  30923. image: {
  30924. source: "./media/characters/dascalti/fed.svg",
  30925. extra: 1419/820,
  30926. bottom: 95/1514
  30927. }
  30928. },
  30929. },
  30930. [
  30931. {
  30932. name: "Normal",
  30933. height: math.unit(3.5, "meters"),
  30934. default: true
  30935. },
  30936. ]
  30937. ))
  30938. characterMakers.push(() => makeCharacter(
  30939. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30940. {
  30941. front: {
  30942. height: math.unit(3 + 5/12, "feet"),
  30943. name: "Front",
  30944. image: {
  30945. source: "./media/characters/mauve/front.svg",
  30946. extra: 1126/1033,
  30947. bottom: 65/1191
  30948. }
  30949. },
  30950. side: {
  30951. height: math.unit(3 + 5/12, "feet"),
  30952. name: "Side",
  30953. image: {
  30954. source: "./media/characters/mauve/side.svg",
  30955. extra: 1089/1001,
  30956. bottom: 29/1118
  30957. }
  30958. },
  30959. back: {
  30960. height: math.unit(3 + 5/12, "feet"),
  30961. name: "Back",
  30962. image: {
  30963. source: "./media/characters/mauve/back.svg",
  30964. extra: 1173/1053,
  30965. bottom: 109/1282
  30966. }
  30967. },
  30968. },
  30969. [
  30970. {
  30971. name: "Normal",
  30972. height: math.unit(3 + 5/12, "feet"),
  30973. default: true
  30974. },
  30975. ]
  30976. ))
  30977. characterMakers.push(() => makeCharacter(
  30978. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30979. {
  30980. front: {
  30981. height: math.unit(6 + 3/12, "feet"),
  30982. weight: math.unit(430, "lb"),
  30983. name: "Front",
  30984. image: {
  30985. source: "./media/characters/carlos/front.svg",
  30986. extra: 1964/1913,
  30987. bottom: 70/2034
  30988. }
  30989. },
  30990. },
  30991. [
  30992. {
  30993. name: "Normal",
  30994. height: math.unit(6 + 3/12, "feet"),
  30995. default: true
  30996. },
  30997. ]
  30998. ))
  30999. characterMakers.push(() => makeCharacter(
  31000. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31001. {
  31002. back: {
  31003. height: math.unit(5 + 10/12, "feet"),
  31004. weight: math.unit(200, "lb"),
  31005. name: "Back",
  31006. image: {
  31007. source: "./media/characters/jax/back.svg",
  31008. extra: 764/739,
  31009. bottom: 25/789
  31010. }
  31011. },
  31012. },
  31013. [
  31014. {
  31015. name: "Normal",
  31016. height: math.unit(5 + 10/12, "feet"),
  31017. default: true
  31018. },
  31019. ]
  31020. ))
  31021. characterMakers.push(() => makeCharacter(
  31022. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31023. {
  31024. front: {
  31025. height: math.unit(8, "feet"),
  31026. weight: math.unit(250, "lb"),
  31027. name: "Front",
  31028. image: {
  31029. source: "./media/characters/eikthynir/front.svg",
  31030. extra: 1332/1166,
  31031. bottom: 82/1414
  31032. }
  31033. },
  31034. back: {
  31035. height: math.unit(8, "feet"),
  31036. weight: math.unit(250, "lb"),
  31037. name: "Back",
  31038. image: {
  31039. source: "./media/characters/eikthynir/back.svg",
  31040. extra: 1342/1190,
  31041. bottom: 19/1361
  31042. }
  31043. },
  31044. dick: {
  31045. height: math.unit(2.35, "feet"),
  31046. name: "Dick",
  31047. image: {
  31048. source: "./media/characters/eikthynir/dick.svg"
  31049. }
  31050. },
  31051. },
  31052. [
  31053. {
  31054. name: "Normal",
  31055. height: math.unit(8, "feet"),
  31056. default: true
  31057. },
  31058. ]
  31059. ))
  31060. characterMakers.push(() => makeCharacter(
  31061. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31062. {
  31063. front: {
  31064. height: math.unit(99, "meters"),
  31065. weight: math.unit(13000, "tons"),
  31066. name: "Front",
  31067. image: {
  31068. source: "./media/characters/zlmos/front.svg",
  31069. extra: 2202/1992,
  31070. bottom: 315/2517
  31071. }
  31072. },
  31073. },
  31074. [
  31075. {
  31076. name: "Macro",
  31077. height: math.unit(99, "meters"),
  31078. default: true
  31079. },
  31080. ]
  31081. ))
  31082. characterMakers.push(() => makeCharacter(
  31083. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31084. {
  31085. front: {
  31086. height: math.unit(6 + 5/12, "feet"),
  31087. name: "Front",
  31088. image: {
  31089. source: "./media/characters/purri/front.svg",
  31090. extra: 1698/1610,
  31091. bottom: 32/1730
  31092. }
  31093. },
  31094. frontAlt: {
  31095. height: math.unit(6 + 5/12, "feet"),
  31096. name: "Front (Alt)",
  31097. image: {
  31098. source: "./media/characters/purri/front-alt.svg",
  31099. extra: 450/420,
  31100. bottom: 26/476
  31101. }
  31102. },
  31103. boots: {
  31104. height: math.unit(5.5, "feet"),
  31105. name: "Boots",
  31106. image: {
  31107. source: "./media/characters/purri/boots.svg",
  31108. extra: 905/853,
  31109. bottom: 18/923
  31110. }
  31111. },
  31112. lying: {
  31113. height: math.unit(2, "feet"),
  31114. name: "Lying",
  31115. image: {
  31116. source: "./media/characters/purri/lying.svg",
  31117. extra: 940/843,
  31118. bottom: 146/1086
  31119. }
  31120. },
  31121. devious: {
  31122. height: math.unit(1.77, "feet"),
  31123. name: "Devious",
  31124. image: {
  31125. source: "./media/characters/purri/devious.svg",
  31126. extra: 1440/1155,
  31127. bottom: 147/1587
  31128. }
  31129. },
  31130. bean: {
  31131. height: math.unit(1.94, "feet"),
  31132. name: "Bean",
  31133. image: {
  31134. source: "./media/characters/purri/bean.svg"
  31135. }
  31136. },
  31137. },
  31138. [
  31139. {
  31140. name: "Micro",
  31141. height: math.unit(1, "mm")
  31142. },
  31143. {
  31144. name: "Normal",
  31145. height: math.unit(6 + 5/12, "feet"),
  31146. default: true
  31147. },
  31148. {
  31149. name: "Macro :3c",
  31150. height: math.unit(2, "miles")
  31151. },
  31152. ]
  31153. ))
  31154. characterMakers.push(() => makeCharacter(
  31155. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31156. {
  31157. front: {
  31158. height: math.unit(6 + 2/12, "feet"),
  31159. weight: math.unit(250, "lb"),
  31160. name: "Front",
  31161. image: {
  31162. source: "./media/characters/moonlight/front.svg",
  31163. extra: 1044/908,
  31164. bottom: 56/1100
  31165. }
  31166. },
  31167. feral: {
  31168. height: math.unit(3 + 1/12, "feet"),
  31169. weight: math.unit(50, "kg"),
  31170. name: "Feral",
  31171. image: {
  31172. source: "./media/characters/moonlight/feral.svg",
  31173. extra: 3705/2791,
  31174. bottom: 145/3850
  31175. }
  31176. },
  31177. paw: {
  31178. height: math.unit(1, "feet"),
  31179. name: "Paw",
  31180. image: {
  31181. source: "./media/characters/moonlight/paw.svg"
  31182. }
  31183. },
  31184. paws: {
  31185. height: math.unit(0.98, "feet"),
  31186. name: "Paws",
  31187. image: {
  31188. source: "./media/characters/moonlight/paws.svg",
  31189. extra: 939/939,
  31190. bottom: 50/989
  31191. }
  31192. },
  31193. mouth: {
  31194. height: math.unit(0.48, "feet"),
  31195. name: "Mouth",
  31196. image: {
  31197. source: "./media/characters/moonlight/mouth.svg"
  31198. }
  31199. },
  31200. dick: {
  31201. height: math.unit(1.46, "feet"),
  31202. name: "Dick",
  31203. image: {
  31204. source: "./media/characters/moonlight/dick.svg"
  31205. }
  31206. },
  31207. },
  31208. [
  31209. {
  31210. name: "Normal",
  31211. height: math.unit(6 + 2/12, "feet"),
  31212. default: true
  31213. },
  31214. {
  31215. name: "Macro",
  31216. height: math.unit(300, "feet")
  31217. },
  31218. {
  31219. name: "Macro+",
  31220. height: math.unit(1, "mile")
  31221. },
  31222. {
  31223. name: "Mt. Moon",
  31224. height: math.unit(5, "miles")
  31225. },
  31226. {
  31227. name: "Megamacro",
  31228. height: math.unit(15, "miles")
  31229. },
  31230. ]
  31231. ))
  31232. characterMakers.push(() => makeCharacter(
  31233. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31234. {
  31235. back: {
  31236. height: math.unit(6, "feet"),
  31237. weight: math.unit(150, "lb"),
  31238. name: "Back",
  31239. image: {
  31240. source: "./media/characters/sylen/back.svg",
  31241. extra: 1335/1273,
  31242. bottom: 107/1442
  31243. }
  31244. },
  31245. },
  31246. [
  31247. {
  31248. name: "Normal",
  31249. height: math.unit(5 + 5/12, "feet")
  31250. },
  31251. {
  31252. name: "Megamacro",
  31253. height: math.unit(3, "miles"),
  31254. default: true
  31255. },
  31256. ]
  31257. ))
  31258. characterMakers.push(() => makeCharacter(
  31259. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31260. {
  31261. front: {
  31262. height: math.unit(6, "feet"),
  31263. weight: math.unit(190, "lb"),
  31264. name: "Front",
  31265. image: {
  31266. source: "./media/characters/huttser/front.svg",
  31267. extra: 1152/1058,
  31268. bottom: 23/1175
  31269. }
  31270. },
  31271. side: {
  31272. height: math.unit(6, "feet"),
  31273. weight: math.unit(190, "lb"),
  31274. name: "Side",
  31275. image: {
  31276. source: "./media/characters/huttser/side.svg",
  31277. extra: 1174/1065,
  31278. bottom: 18/1192
  31279. }
  31280. },
  31281. back: {
  31282. height: math.unit(6, "feet"),
  31283. weight: math.unit(190, "lb"),
  31284. name: "Back",
  31285. image: {
  31286. source: "./media/characters/huttser/back.svg",
  31287. extra: 1158/1056,
  31288. bottom: 12/1170
  31289. }
  31290. },
  31291. },
  31292. [
  31293. ]
  31294. ))
  31295. characterMakers.push(() => makeCharacter(
  31296. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31297. {
  31298. side: {
  31299. height: math.unit(12 + 9/12, "feet"),
  31300. weight: math.unit(15000, "lb"),
  31301. name: "Side",
  31302. image: {
  31303. source: "./media/characters/faan/side.svg",
  31304. extra: 2747/2697,
  31305. bottom: 0/2747
  31306. }
  31307. },
  31308. front: {
  31309. height: math.unit(12 + 9/12, "feet"),
  31310. weight: math.unit(15000, "lb"),
  31311. name: "Front",
  31312. image: {
  31313. source: "./media/characters/faan/front.svg",
  31314. extra: 607/571,
  31315. bottom: 24/631
  31316. }
  31317. },
  31318. head: {
  31319. height: math.unit(2.85, "feet"),
  31320. name: "Head",
  31321. image: {
  31322. source: "./media/characters/faan/head.svg"
  31323. }
  31324. },
  31325. headAlt: {
  31326. height: math.unit(3.13, "feet"),
  31327. name: "Head-alt",
  31328. image: {
  31329. source: "./media/characters/faan/head-alt.svg"
  31330. }
  31331. },
  31332. },
  31333. [
  31334. {
  31335. name: "Normal",
  31336. height: math.unit(12 + 9/12, "feet"),
  31337. default: true
  31338. },
  31339. ]
  31340. ))
  31341. characterMakers.push(() => makeCharacter(
  31342. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31343. {
  31344. front: {
  31345. height: math.unit(6, "feet"),
  31346. weight: math.unit(300, "lb"),
  31347. name: "Front",
  31348. image: {
  31349. source: "./media/characters/tanio/front.svg",
  31350. extra: 711/673,
  31351. bottom: 25/736
  31352. }
  31353. },
  31354. },
  31355. [
  31356. {
  31357. name: "Normal",
  31358. height: math.unit(6, "feet"),
  31359. default: true
  31360. },
  31361. ]
  31362. ))
  31363. characterMakers.push(() => makeCharacter(
  31364. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31365. {
  31366. front: {
  31367. height: math.unit(3, "inches"),
  31368. name: "Front",
  31369. image: {
  31370. source: "./media/characters/noboru/front.svg",
  31371. extra: 1039/932,
  31372. bottom: 18/1057
  31373. }
  31374. },
  31375. },
  31376. [
  31377. {
  31378. name: "Micro",
  31379. height: math.unit(3, "inches"),
  31380. default: true
  31381. },
  31382. ]
  31383. ))
  31384. characterMakers.push(() => makeCharacter(
  31385. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31386. {
  31387. front: {
  31388. height: math.unit(1.85, "meters"),
  31389. weight: math.unit(80, "kg"),
  31390. name: "Front",
  31391. image: {
  31392. source: "./media/characters/daniel-barrett/front.svg",
  31393. extra: 355/337,
  31394. bottom: 9/364
  31395. }
  31396. },
  31397. },
  31398. [
  31399. {
  31400. name: "Pico",
  31401. height: math.unit(0.0433, "mm")
  31402. },
  31403. {
  31404. name: "Nano",
  31405. height: math.unit(1.5, "mm")
  31406. },
  31407. {
  31408. name: "Micro",
  31409. height: math.unit(5.3, "cm"),
  31410. default: true
  31411. },
  31412. {
  31413. name: "Normal",
  31414. height: math.unit(1.85, "meters")
  31415. },
  31416. {
  31417. name: "Macro",
  31418. height: math.unit(64.7, "meters")
  31419. },
  31420. {
  31421. name: "Megamacro",
  31422. height: math.unit(2.26, "km")
  31423. },
  31424. {
  31425. name: "Gigamacro",
  31426. height: math.unit(79, "km")
  31427. },
  31428. {
  31429. name: "Teramacro",
  31430. height: math.unit(2765, "km")
  31431. },
  31432. {
  31433. name: "Petamacro",
  31434. height: math.unit(96678, "km")
  31435. },
  31436. ]
  31437. ))
  31438. characterMakers.push(() => makeCharacter(
  31439. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31440. {
  31441. front: {
  31442. height: math.unit(30, "meters"),
  31443. weight: math.unit(400, "tons"),
  31444. name: "Front",
  31445. image: {
  31446. source: "./media/characters/zeel/front.svg",
  31447. extra: 2599/2599,
  31448. bottom: 226/2825
  31449. }
  31450. },
  31451. },
  31452. [
  31453. {
  31454. name: "Macro",
  31455. height: math.unit(30, "meters"),
  31456. default: true
  31457. },
  31458. ]
  31459. ))
  31460. characterMakers.push(() => makeCharacter(
  31461. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31462. {
  31463. front: {
  31464. height: math.unit(6 + 7/12, "feet"),
  31465. weight: math.unit(210, "lb"),
  31466. name: "Front",
  31467. image: {
  31468. source: "./media/characters/tarn/front.svg",
  31469. extra: 3517/3220,
  31470. bottom: 91/3608
  31471. }
  31472. },
  31473. back: {
  31474. height: math.unit(6 + 7/12, "feet"),
  31475. weight: math.unit(210, "lb"),
  31476. name: "Back",
  31477. image: {
  31478. source: "./media/characters/tarn/back.svg",
  31479. extra: 3566/3241,
  31480. bottom: 34/3600
  31481. }
  31482. },
  31483. dick: {
  31484. height: math.unit(1.65, "feet"),
  31485. name: "Dick",
  31486. image: {
  31487. source: "./media/characters/tarn/dick.svg"
  31488. }
  31489. },
  31490. paw: {
  31491. height: math.unit(1.80, "feet"),
  31492. name: "Paw",
  31493. image: {
  31494. source: "./media/characters/tarn/paw.svg"
  31495. }
  31496. },
  31497. tongue: {
  31498. height: math.unit(0.97, "feet"),
  31499. name: "Tongue",
  31500. image: {
  31501. source: "./media/characters/tarn/tongue.svg"
  31502. }
  31503. },
  31504. },
  31505. [
  31506. {
  31507. name: "Micro",
  31508. height: math.unit(4, "inches")
  31509. },
  31510. {
  31511. name: "Normal",
  31512. height: math.unit(6 + 7/12, "feet"),
  31513. default: true
  31514. },
  31515. {
  31516. name: "Macro",
  31517. height: math.unit(300, "feet")
  31518. },
  31519. ]
  31520. ))
  31521. characterMakers.push(() => makeCharacter(
  31522. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31523. {
  31524. front: {
  31525. height: math.unit(5 + 7/12, "feet"),
  31526. weight: math.unit(80, "kg"),
  31527. name: "Front",
  31528. image: {
  31529. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31530. extra: 3023/2865,
  31531. bottom: 33/3056
  31532. }
  31533. },
  31534. back: {
  31535. height: math.unit(5 + 7/12, "feet"),
  31536. weight: math.unit(80, "kg"),
  31537. name: "Back",
  31538. image: {
  31539. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31540. extra: 3020/2886,
  31541. bottom: 30/3050
  31542. }
  31543. },
  31544. dick: {
  31545. height: math.unit(0.98, "feet"),
  31546. name: "Dick",
  31547. image: {
  31548. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31549. }
  31550. },
  31551. anatomy: {
  31552. height: math.unit(2.86, "feet"),
  31553. name: "Anatomy",
  31554. image: {
  31555. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31556. }
  31557. },
  31558. },
  31559. [
  31560. {
  31561. name: "Really Small",
  31562. height: math.unit(2, "inches")
  31563. },
  31564. {
  31565. name: "Micro",
  31566. height: math.unit(5.583, "inches")
  31567. },
  31568. {
  31569. name: "Normal",
  31570. height: math.unit(5 + 7/12, "feet"),
  31571. default: true
  31572. },
  31573. {
  31574. name: "Macro",
  31575. height: math.unit(67, "feet")
  31576. },
  31577. {
  31578. name: "Megamacro",
  31579. height: math.unit(134, "feet")
  31580. },
  31581. ]
  31582. ))
  31583. characterMakers.push(() => makeCharacter(
  31584. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31585. {
  31586. front: {
  31587. height: math.unit(9, "feet"),
  31588. weight: math.unit(120, "lb"),
  31589. name: "Front",
  31590. image: {
  31591. source: "./media/characters/sally/front.svg",
  31592. extra: 1506/1349,
  31593. bottom: 66/1572
  31594. }
  31595. },
  31596. },
  31597. [
  31598. {
  31599. name: "Normal",
  31600. height: math.unit(9, "feet"),
  31601. default: true
  31602. },
  31603. ]
  31604. ))
  31605. characterMakers.push(() => makeCharacter(
  31606. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31607. {
  31608. front: {
  31609. height: math.unit(8, "feet"),
  31610. weight: math.unit(900, "lb"),
  31611. name: "Front",
  31612. image: {
  31613. source: "./media/characters/owen/front.svg",
  31614. extra: 1761/1657,
  31615. bottom: 74/1835
  31616. }
  31617. },
  31618. side: {
  31619. height: math.unit(8, "feet"),
  31620. weight: math.unit(900, "lb"),
  31621. name: "Side",
  31622. image: {
  31623. source: "./media/characters/owen/side.svg",
  31624. extra: 1797/1734,
  31625. bottom: 30/1827
  31626. }
  31627. },
  31628. back: {
  31629. height: math.unit(8, "feet"),
  31630. weight: math.unit(900, "lb"),
  31631. name: "Back",
  31632. image: {
  31633. source: "./media/characters/owen/back.svg",
  31634. extra: 1796/1706,
  31635. bottom: 59/1855
  31636. }
  31637. },
  31638. maw: {
  31639. height: math.unit(1.76, "feet"),
  31640. name: "Maw",
  31641. image: {
  31642. source: "./media/characters/owen/maw.svg"
  31643. }
  31644. },
  31645. },
  31646. [
  31647. {
  31648. name: "Normal",
  31649. height: math.unit(8, "feet"),
  31650. default: true
  31651. },
  31652. ]
  31653. ))
  31654. characterMakers.push(() => makeCharacter(
  31655. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31656. {
  31657. front: {
  31658. height: math.unit(4, "feet"),
  31659. weight: math.unit(400, "lb"),
  31660. name: "Front",
  31661. image: {
  31662. source: "./media/characters/ryth/front.svg",
  31663. extra: 876/691,
  31664. bottom: 25/901
  31665. }
  31666. },
  31667. goia: {
  31668. height: math.unit(12, "feet"),
  31669. weight: math.unit(10800, "lb"),
  31670. name: "Goia",
  31671. image: {
  31672. source: "./media/characters/ryth/goia.svg",
  31673. extra: 3450/3198,
  31674. bottom: 61/3511
  31675. }
  31676. },
  31677. },
  31678. [
  31679. {
  31680. name: "Normal",
  31681. height: math.unit(4, "feet"),
  31682. default: true
  31683. },
  31684. ]
  31685. ))
  31686. characterMakers.push(() => makeCharacter(
  31687. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31688. {
  31689. front: {
  31690. height: math.unit(7, "feet"),
  31691. weight: math.unit(180, "lb"),
  31692. name: "Front",
  31693. image: {
  31694. source: "./media/characters/necrolance/front.svg",
  31695. extra: 1062/947,
  31696. bottom: 41/1103
  31697. }
  31698. },
  31699. back: {
  31700. height: math.unit(7, "feet"),
  31701. weight: math.unit(180, "lb"),
  31702. name: "Back",
  31703. image: {
  31704. source: "./media/characters/necrolance/back.svg",
  31705. extra: 1045/984,
  31706. bottom: 14/1059
  31707. }
  31708. },
  31709. wing: {
  31710. height: math.unit(2.67, "feet"),
  31711. name: "Wing",
  31712. image: {
  31713. source: "./media/characters/necrolance/wing.svg"
  31714. }
  31715. },
  31716. },
  31717. [
  31718. {
  31719. name: "Normal",
  31720. height: math.unit(7, "feet"),
  31721. default: true
  31722. },
  31723. ]
  31724. ))
  31725. characterMakers.push(() => makeCharacter(
  31726. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31727. {
  31728. front: {
  31729. height: math.unit(76, "meters"),
  31730. weight: math.unit(30000, "tons"),
  31731. name: "Front",
  31732. image: {
  31733. source: "./media/characters/tyler/front.svg",
  31734. extra: 1640/1640,
  31735. bottom: 114/1754
  31736. }
  31737. },
  31738. },
  31739. [
  31740. {
  31741. name: "Macro",
  31742. height: math.unit(76, "meters"),
  31743. default: true
  31744. },
  31745. ]
  31746. ))
  31747. characterMakers.push(() => makeCharacter(
  31748. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31749. {
  31750. front: {
  31751. height: math.unit(4 + 11/12, "feet"),
  31752. weight: math.unit(132, "lb"),
  31753. name: "Front",
  31754. image: {
  31755. source: "./media/characters/icey/front.svg",
  31756. extra: 2750/2550,
  31757. bottom: 33/2783
  31758. }
  31759. },
  31760. back: {
  31761. height: math.unit(4 + 11/12, "feet"),
  31762. weight: math.unit(132, "lb"),
  31763. name: "Back",
  31764. image: {
  31765. source: "./media/characters/icey/back.svg",
  31766. extra: 2624/2481,
  31767. bottom: 35/2659
  31768. }
  31769. },
  31770. },
  31771. [
  31772. {
  31773. name: "Normal",
  31774. height: math.unit(4 + 11/12, "feet"),
  31775. default: true
  31776. },
  31777. ]
  31778. ))
  31779. characterMakers.push(() => makeCharacter(
  31780. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31781. {
  31782. front: {
  31783. height: math.unit(100, "feet"),
  31784. weight: math.unit(0, "lb"),
  31785. name: "Front",
  31786. image: {
  31787. source: "./media/characters/smile/front.svg",
  31788. extra: 2983/2912,
  31789. bottom: 162/3145
  31790. }
  31791. },
  31792. back: {
  31793. height: math.unit(100, "feet"),
  31794. weight: math.unit(0, "lb"),
  31795. name: "Back",
  31796. image: {
  31797. source: "./media/characters/smile/back.svg",
  31798. extra: 3143/3031,
  31799. bottom: 91/3234
  31800. }
  31801. },
  31802. head: {
  31803. height: math.unit(26.3, "feet"),
  31804. weight: math.unit(0, "lb"),
  31805. name: "Head",
  31806. image: {
  31807. source: "./media/characters/smile/head.svg"
  31808. }
  31809. },
  31810. collar: {
  31811. height: math.unit(5.3, "feet"),
  31812. weight: math.unit(0, "lb"),
  31813. name: "Collar",
  31814. image: {
  31815. source: "./media/characters/smile/collar.svg"
  31816. }
  31817. },
  31818. },
  31819. [
  31820. {
  31821. name: "Macro",
  31822. height: math.unit(100, "feet"),
  31823. default: true
  31824. },
  31825. ]
  31826. ))
  31827. characterMakers.push(() => makeCharacter(
  31828. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31829. {
  31830. dragon: {
  31831. height: math.unit(26, "feet"),
  31832. weight: math.unit(36, "tons"),
  31833. name: "Dragon",
  31834. image: {
  31835. source: "./media/characters/arimphae/dragon.svg",
  31836. extra: 1574/983,
  31837. bottom: 357/1931
  31838. }
  31839. },
  31840. drake: {
  31841. height: math.unit(9, "feet"),
  31842. weight: math.unit(1.5, "tons"),
  31843. name: "Drake",
  31844. image: {
  31845. source: "./media/characters/arimphae/drake.svg",
  31846. extra: 1120/925,
  31847. bottom: 435/1555
  31848. }
  31849. },
  31850. },
  31851. [
  31852. {
  31853. name: "Small",
  31854. height: math.unit(26*5/9, "feet")
  31855. },
  31856. {
  31857. name: "Normal",
  31858. height: math.unit(26, "feet"),
  31859. default: true
  31860. },
  31861. ]
  31862. ))
  31863. characterMakers.push(() => makeCharacter(
  31864. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31865. {
  31866. front: {
  31867. height: math.unit(8 + 9/12, "feet"),
  31868. name: "Front",
  31869. image: {
  31870. source: "./media/characters/xander/front.svg",
  31871. extra: 848/673,
  31872. bottom: 62/910
  31873. }
  31874. },
  31875. },
  31876. [
  31877. {
  31878. name: "Normal",
  31879. height: math.unit(8 + 9/12, "feet"),
  31880. default: true
  31881. },
  31882. {
  31883. name: "Gaze Grabber",
  31884. height: math.unit(13 + 8/12, "feet")
  31885. },
  31886. {
  31887. name: "Jaw Dropper",
  31888. height: math.unit(27, "feet")
  31889. },
  31890. {
  31891. name: "Show Stopper",
  31892. height: math.unit(136, "feet")
  31893. },
  31894. {
  31895. name: "Superstar",
  31896. height: math.unit(1.9e6, "miles")
  31897. },
  31898. ]
  31899. ))
  31900. characterMakers.push(() => makeCharacter(
  31901. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31902. {
  31903. side: {
  31904. height: math.unit(2100, "feet"),
  31905. name: "Side",
  31906. image: {
  31907. source: "./media/characters/osiris/side.svg",
  31908. extra: 1105/939,
  31909. bottom: 167/1272
  31910. }
  31911. },
  31912. },
  31913. [
  31914. {
  31915. name: "Macro",
  31916. height: math.unit(2100, "feet"),
  31917. default: true
  31918. },
  31919. ]
  31920. ))
  31921. characterMakers.push(() => makeCharacter(
  31922. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31923. {
  31924. front: {
  31925. height: math.unit(6 + 8/12, "feet"),
  31926. weight: math.unit(225, "lb"),
  31927. name: "Front",
  31928. image: {
  31929. source: "./media/characters/rhys-londe/front.svg",
  31930. extra: 2258/2141,
  31931. bottom: 188/2446
  31932. }
  31933. },
  31934. back: {
  31935. height: math.unit(6 + 8/12, "feet"),
  31936. weight: math.unit(225, "lb"),
  31937. name: "Back",
  31938. image: {
  31939. source: "./media/characters/rhys-londe/back.svg",
  31940. extra: 2237/2137,
  31941. bottom: 63/2300
  31942. }
  31943. },
  31944. frontNsfw: {
  31945. height: math.unit(6 + 8/12, "feet"),
  31946. weight: math.unit(225, "lb"),
  31947. name: "Front (NSFW)",
  31948. image: {
  31949. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31950. extra: 2258/2141,
  31951. bottom: 188/2446
  31952. }
  31953. },
  31954. backNsfw: {
  31955. height: math.unit(6 + 8/12, "feet"),
  31956. weight: math.unit(225, "lb"),
  31957. name: "Back (NSFW)",
  31958. image: {
  31959. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31960. extra: 2237/2137,
  31961. bottom: 63/2300
  31962. }
  31963. },
  31964. dick: {
  31965. height: math.unit(30, "inches"),
  31966. name: "Dick",
  31967. image: {
  31968. source: "./media/characters/rhys-londe/dick.svg"
  31969. }
  31970. },
  31971. maw: {
  31972. height: math.unit(1.6, "feet"),
  31973. name: "Maw",
  31974. image: {
  31975. source: "./media/characters/rhys-londe/maw.svg"
  31976. }
  31977. },
  31978. },
  31979. [
  31980. {
  31981. name: "Normal",
  31982. height: math.unit(6 + 8/12, "feet"),
  31983. default: true
  31984. },
  31985. ]
  31986. ))
  31987. characterMakers.push(() => makeCharacter(
  31988. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31989. {
  31990. front: {
  31991. height: math.unit(3 + 10/12, "feet"),
  31992. weight: math.unit(90, "lb"),
  31993. name: "Front",
  31994. image: {
  31995. source: "./media/characters/taivas-ensim/front.svg",
  31996. extra: 1327/1216,
  31997. bottom: 96/1423
  31998. }
  31999. },
  32000. back: {
  32001. height: math.unit(3 + 10/12, "feet"),
  32002. weight: math.unit(90, "lb"),
  32003. name: "Back",
  32004. image: {
  32005. source: "./media/characters/taivas-ensim/back.svg",
  32006. extra: 1355/1247,
  32007. bottom: 11/1366
  32008. }
  32009. },
  32010. frontNsfw: {
  32011. height: math.unit(3 + 10/12, "feet"),
  32012. weight: math.unit(90, "lb"),
  32013. name: "Front (NSFW)",
  32014. image: {
  32015. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32016. extra: 1327/1216,
  32017. bottom: 96/1423
  32018. }
  32019. },
  32020. backNsfw: {
  32021. height: math.unit(3 + 10/12, "feet"),
  32022. weight: math.unit(90, "lb"),
  32023. name: "Back (NSFW)",
  32024. image: {
  32025. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32026. extra: 1355/1247,
  32027. bottom: 11/1366
  32028. }
  32029. },
  32030. },
  32031. [
  32032. {
  32033. name: "Normal",
  32034. height: math.unit(3 + 10/12, "feet"),
  32035. default: true
  32036. },
  32037. ]
  32038. ))
  32039. characterMakers.push(() => makeCharacter(
  32040. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32041. {
  32042. front: {
  32043. height: math.unit(9 + 6/12, "feet"),
  32044. weight: math.unit(940, "lb"),
  32045. name: "Front",
  32046. image: {
  32047. source: "./media/characters/byliss/front.svg",
  32048. extra: 1327/1290,
  32049. bottom: 82/1409
  32050. }
  32051. },
  32052. back: {
  32053. height: math.unit(9 + 6/12, "feet"),
  32054. weight: math.unit(940, "lb"),
  32055. name: "Back",
  32056. image: {
  32057. source: "./media/characters/byliss/back.svg",
  32058. extra: 1376/1349,
  32059. bottom: 9/1385
  32060. }
  32061. },
  32062. frontNsfw: {
  32063. height: math.unit(9 + 6/12, "feet"),
  32064. weight: math.unit(940, "lb"),
  32065. name: "Front (NSFW)",
  32066. image: {
  32067. source: "./media/characters/byliss/front-nsfw.svg",
  32068. extra: 1327/1290,
  32069. bottom: 82/1409
  32070. }
  32071. },
  32072. backNsfw: {
  32073. height: math.unit(9 + 6/12, "feet"),
  32074. weight: math.unit(940, "lb"),
  32075. name: "Back (NSFW)",
  32076. image: {
  32077. source: "./media/characters/byliss/back-nsfw.svg",
  32078. extra: 1376/1349,
  32079. bottom: 9/1385
  32080. }
  32081. },
  32082. },
  32083. [
  32084. {
  32085. name: "Normal",
  32086. height: math.unit(9 + 6/12, "feet"),
  32087. default: true
  32088. },
  32089. ]
  32090. ))
  32091. characterMakers.push(() => makeCharacter(
  32092. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32093. {
  32094. front: {
  32095. height: math.unit(5 + 2/12, "feet"),
  32096. weight: math.unit(200, "lb"),
  32097. name: "Front",
  32098. image: {
  32099. source: "./media/characters/noraly/front.svg",
  32100. extra: 4985/4773,
  32101. bottom: 150/5135
  32102. }
  32103. },
  32104. full: {
  32105. height: math.unit(5 + 2/12, "feet"),
  32106. weight: math.unit(164, "lb"),
  32107. name: "Full",
  32108. image: {
  32109. source: "./media/characters/noraly/full.svg",
  32110. extra: 1114/1059,
  32111. bottom: 35/1149
  32112. }
  32113. },
  32114. fuller: {
  32115. height: math.unit(5 + 2/12, "feet"),
  32116. weight: math.unit(230, "lb"),
  32117. name: "Fuller",
  32118. image: {
  32119. source: "./media/characters/noraly/fuller.svg",
  32120. extra: 1114/1059,
  32121. bottom: 35/1149
  32122. }
  32123. },
  32124. fullest: {
  32125. height: math.unit(5 + 2/12, "feet"),
  32126. weight: math.unit(300, "lb"),
  32127. name: "Fullest",
  32128. image: {
  32129. source: "./media/characters/noraly/fullest.svg",
  32130. extra: 1114/1059,
  32131. bottom: 35/1149
  32132. }
  32133. },
  32134. },
  32135. [
  32136. {
  32137. name: "Normal",
  32138. height: math.unit(5 + 2/12, "feet"),
  32139. default: true
  32140. },
  32141. ]
  32142. ))
  32143. characterMakers.push(() => makeCharacter(
  32144. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32145. {
  32146. front: {
  32147. height: math.unit(5 + 2/12, "feet"),
  32148. weight: math.unit(210, "lb"),
  32149. name: "Front",
  32150. image: {
  32151. source: "./media/characters/pera/front.svg",
  32152. extra: 1560/1531,
  32153. bottom: 165/1725
  32154. }
  32155. },
  32156. back: {
  32157. height: math.unit(5 + 2/12, "feet"),
  32158. weight: math.unit(210, "lb"),
  32159. name: "Back",
  32160. image: {
  32161. source: "./media/characters/pera/back.svg",
  32162. extra: 1523/1493,
  32163. bottom: 152/1675
  32164. }
  32165. },
  32166. dick: {
  32167. height: math.unit(2.4, "feet"),
  32168. name: "Dick",
  32169. image: {
  32170. source: "./media/characters/pera/dick.svg"
  32171. }
  32172. },
  32173. },
  32174. [
  32175. {
  32176. name: "Normal",
  32177. height: math.unit(5 + 2/12, "feet"),
  32178. default: true
  32179. },
  32180. ]
  32181. ))
  32182. characterMakers.push(() => makeCharacter(
  32183. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32184. {
  32185. front: {
  32186. height: math.unit(12, "feet"),
  32187. weight: math.unit(3200, "lb"),
  32188. name: "Front",
  32189. image: {
  32190. source: "./media/characters/julian/front.svg",
  32191. extra: 2962/2701,
  32192. bottom: 184/3146
  32193. }
  32194. },
  32195. maw: {
  32196. height: math.unit(5.35, "feet"),
  32197. name: "Maw",
  32198. image: {
  32199. source: "./media/characters/julian/maw.svg"
  32200. }
  32201. },
  32202. paw: {
  32203. height: math.unit(3.07, "feet"),
  32204. name: "Paw",
  32205. image: {
  32206. source: "./media/characters/julian/paw.svg"
  32207. }
  32208. },
  32209. },
  32210. [
  32211. {
  32212. name: "Default",
  32213. height: math.unit(12, "feet"),
  32214. default: true
  32215. },
  32216. {
  32217. name: "Big",
  32218. height: math.unit(50, "feet")
  32219. },
  32220. {
  32221. name: "Really Big",
  32222. height: math.unit(1, "mile")
  32223. },
  32224. {
  32225. name: "Extremely Big",
  32226. height: math.unit(100, "miles")
  32227. },
  32228. {
  32229. name: "Planet Hugger",
  32230. height: math.unit(200, "megameters")
  32231. },
  32232. {
  32233. name: "Unreasonably Big",
  32234. height: math.unit(1e300, "meters")
  32235. },
  32236. ]
  32237. ))
  32238. characterMakers.push(() => makeCharacter(
  32239. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32240. {
  32241. solgooleo: {
  32242. height: math.unit(4, "meters"),
  32243. weight: math.unit(6000*1.5, "kg"),
  32244. volume: math.unit(6000, "liters"),
  32245. name: "Solgooleo",
  32246. image: {
  32247. source: "./media/characters/pi/solgooleo.svg",
  32248. extra: 388/331,
  32249. bottom: 29/417
  32250. }
  32251. },
  32252. },
  32253. [
  32254. {
  32255. name: "Normal",
  32256. height: math.unit(4, "meters"),
  32257. default: true
  32258. },
  32259. ]
  32260. ))
  32261. characterMakers.push(() => makeCharacter(
  32262. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32263. {
  32264. front: {
  32265. height: math.unit(8 + 2/12, "feet"),
  32266. weight: math.unit(4, "tons"),
  32267. name: "Front",
  32268. image: {
  32269. source: "./media/characters/shaun/front.svg",
  32270. extra: 1550/1505,
  32271. bottom: 353/1903
  32272. }
  32273. },
  32274. },
  32275. [
  32276. {
  32277. name: "Lorg",
  32278. height: math.unit(8 + 2/12, "feet"),
  32279. default: true
  32280. },
  32281. ]
  32282. ))
  32283. characterMakers.push(() => makeCharacter(
  32284. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32285. {
  32286. front: {
  32287. height: math.unit(7, "feet"),
  32288. name: "Front",
  32289. image: {
  32290. source: "./media/characters/sini/front.svg",
  32291. extra: 726/678,
  32292. bottom: 35/761
  32293. }
  32294. },
  32295. back: {
  32296. height: math.unit(7, "feet"),
  32297. name: "Back",
  32298. image: {
  32299. source: "./media/characters/sini/back.svg",
  32300. extra: 743/701,
  32301. bottom: 12/755
  32302. }
  32303. },
  32304. mawAnthro: {
  32305. height: math.unit(2.14, "feet"),
  32306. name: "Maw (Anthro)",
  32307. image: {
  32308. source: "./media/characters/sini/maw-anthro.svg"
  32309. }
  32310. },
  32311. dick: {
  32312. height: math.unit(1.45, "feet"),
  32313. name: "Dick (Anthro)",
  32314. image: {
  32315. source: "./media/characters/sini/dick-anthro.svg"
  32316. }
  32317. },
  32318. feral: {
  32319. height: math.unit(16, "feet"),
  32320. name: "Feral",
  32321. image: {
  32322. source: "./media/characters/sini/feral.svg",
  32323. extra: 814/605,
  32324. bottom: 11/825
  32325. }
  32326. },
  32327. mawFeral: {
  32328. height: math.unit(5.66, "feet"),
  32329. name: "Maw-feral",
  32330. image: {
  32331. source: "./media/characters/sini/maw-feral.svg"
  32332. }
  32333. },
  32334. footFeral: {
  32335. height: math.unit(5.17, "feet"),
  32336. name: "Foot-feral",
  32337. image: {
  32338. source: "./media/characters/sini/foot-feral.svg"
  32339. }
  32340. },
  32341. },
  32342. [
  32343. {
  32344. name: "Normal",
  32345. height: math.unit(7, "feet"),
  32346. default: true
  32347. },
  32348. ]
  32349. ))
  32350. characterMakers.push(() => makeCharacter(
  32351. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32352. {
  32353. side: {
  32354. height: math.unit(13, "meters"),
  32355. weight: math.unit(9072, "kg"),
  32356. name: "Side",
  32357. image: {
  32358. source: "./media/characters/raylldo/side.svg",
  32359. extra: 403/344,
  32360. bottom: 42/445
  32361. }
  32362. },
  32363. leaping: {
  32364. height: math.unit(12.3, "meters"),
  32365. weight: math.unit(9072, "kg"),
  32366. name: "Leaping",
  32367. image: {
  32368. source: "./media/characters/raylldo/leaping.svg",
  32369. extra: 470/249,
  32370. bottom: 13/483
  32371. }
  32372. },
  32373. flying: {
  32374. height: math.unit(18, "meters"),
  32375. weight: math.unit(9072, "kg"),
  32376. name: "Flying",
  32377. image: {
  32378. source: "./media/characters/raylldo/flying.svg"
  32379. }
  32380. },
  32381. head: {
  32382. height: math.unit(5.85, "meters"),
  32383. name: "Head",
  32384. image: {
  32385. source: "./media/characters/raylldo/head.svg"
  32386. }
  32387. },
  32388. maw: {
  32389. height: math.unit(5.32, "meters"),
  32390. name: "Maw",
  32391. image: {
  32392. source: "./media/characters/raylldo/maw.svg"
  32393. }
  32394. },
  32395. eye: {
  32396. height: math.unit(0.54, "meters"),
  32397. name: "Eye",
  32398. image: {
  32399. source: "./media/characters/raylldo/eye.svg"
  32400. }
  32401. },
  32402. },
  32403. [
  32404. {
  32405. name: "Normal",
  32406. height: math.unit(13, "meters"),
  32407. default: true
  32408. },
  32409. ]
  32410. ))
  32411. characterMakers.push(() => makeCharacter(
  32412. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32413. {
  32414. anthroFront: {
  32415. height: math.unit(9, "feet"),
  32416. weight: math.unit(600, "lb"),
  32417. name: "Anthro (Front)",
  32418. image: {
  32419. source: "./media/characters/glint/anthro-front.svg",
  32420. extra: 1097/1018,
  32421. bottom: 28/1125
  32422. }
  32423. },
  32424. anthroBack: {
  32425. height: math.unit(9, "feet"),
  32426. weight: math.unit(600, "lb"),
  32427. name: "Anthro (Back)",
  32428. image: {
  32429. source: "./media/characters/glint/anthro-back.svg",
  32430. extra: 1154/997,
  32431. bottom: 36/1190
  32432. }
  32433. },
  32434. feral: {
  32435. height: math.unit(11, "feet"),
  32436. weight: math.unit(50000, "lb"),
  32437. name: "Feral",
  32438. image: {
  32439. source: "./media/characters/glint/feral.svg",
  32440. extra: 3035/1585,
  32441. bottom: 1169/4204
  32442. }
  32443. },
  32444. dickAnthro: {
  32445. height: math.unit(0.7, "meters"),
  32446. name: "Dick (Anthro)",
  32447. image: {
  32448. source: "./media/characters/glint/dick-anthro.svg"
  32449. }
  32450. },
  32451. dickFeral: {
  32452. height: math.unit(2.65, "meters"),
  32453. name: "Dick (Feral)",
  32454. image: {
  32455. source: "./media/characters/glint/dick-feral.svg"
  32456. }
  32457. },
  32458. slitHidden: {
  32459. height: math.unit(5.85, "meters"),
  32460. name: "Slit (Hidden)",
  32461. image: {
  32462. source: "./media/characters/glint/slit-hidden.svg"
  32463. }
  32464. },
  32465. slitErect: {
  32466. height: math.unit(5.85, "meters"),
  32467. name: "Slit (Erect)",
  32468. image: {
  32469. source: "./media/characters/glint/slit-erect.svg"
  32470. }
  32471. },
  32472. mawAnthro: {
  32473. height: math.unit(0.63, "meters"),
  32474. name: "Maw (Anthro)",
  32475. image: {
  32476. source: "./media/characters/glint/maw.svg"
  32477. }
  32478. },
  32479. mawFeral: {
  32480. height: math.unit(2.89, "meters"),
  32481. name: "Maw (Feral)",
  32482. image: {
  32483. source: "./media/characters/glint/maw.svg"
  32484. }
  32485. },
  32486. },
  32487. [
  32488. {
  32489. name: "Normal",
  32490. height: math.unit(9, "feet"),
  32491. default: true
  32492. },
  32493. ]
  32494. ))
  32495. characterMakers.push(() => makeCharacter(
  32496. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32497. {
  32498. side: {
  32499. height: math.unit(15, "feet"),
  32500. weight: math.unit(5000, "kg"),
  32501. name: "Side",
  32502. image: {
  32503. source: "./media/characters/kairne/side.svg",
  32504. extra: 979/811,
  32505. bottom: 13/992
  32506. }
  32507. },
  32508. front: {
  32509. height: math.unit(15, "feet"),
  32510. weight: math.unit(5000, "kg"),
  32511. name: "Front",
  32512. image: {
  32513. source: "./media/characters/kairne/front.svg",
  32514. extra: 908/814,
  32515. bottom: 26/934
  32516. }
  32517. },
  32518. sideNsfw: {
  32519. height: math.unit(15, "feet"),
  32520. weight: math.unit(5000, "kg"),
  32521. name: "Side (NSFW)",
  32522. image: {
  32523. source: "./media/characters/kairne/side-nsfw.svg",
  32524. extra: 979/811,
  32525. bottom: 13/992
  32526. }
  32527. },
  32528. frontNsfw: {
  32529. height: math.unit(15, "feet"),
  32530. weight: math.unit(5000, "kg"),
  32531. name: "Front (NSFW)",
  32532. image: {
  32533. source: "./media/characters/kairne/front-nsfw.svg",
  32534. extra: 908/814,
  32535. bottom: 26/934
  32536. }
  32537. },
  32538. dickCaged: {
  32539. height: math.unit(0.65, "meters"),
  32540. name: "Dick-caged",
  32541. image: {
  32542. source: "./media/characters/kairne/dick-caged.svg"
  32543. }
  32544. },
  32545. dick: {
  32546. height: math.unit(0.79, "meters"),
  32547. name: "Dick",
  32548. image: {
  32549. source: "./media/characters/kairne/dick.svg"
  32550. }
  32551. },
  32552. genitals: {
  32553. height: math.unit(1.29, "meters"),
  32554. name: "Genitals",
  32555. image: {
  32556. source: "./media/characters/kairne/genitals.svg"
  32557. }
  32558. },
  32559. maw: {
  32560. height: math.unit(1.73, "meters"),
  32561. name: "Maw",
  32562. image: {
  32563. source: "./media/characters/kairne/maw.svg"
  32564. }
  32565. },
  32566. },
  32567. [
  32568. {
  32569. name: "Normal",
  32570. height: math.unit(15, "feet"),
  32571. default: true
  32572. },
  32573. ]
  32574. ))
  32575. characterMakers.push(() => makeCharacter(
  32576. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32577. {
  32578. front: {
  32579. height: math.unit(5 + 8/12, "feet"),
  32580. weight: math.unit(139, "lb"),
  32581. name: "Front",
  32582. image: {
  32583. source: "./media/characters/biscuit-jackal/front.svg",
  32584. extra: 2106/1961,
  32585. bottom: 58/2164
  32586. }
  32587. },
  32588. back: {
  32589. height: math.unit(5 + 8/12, "feet"),
  32590. weight: math.unit(139, "lb"),
  32591. name: "Back",
  32592. image: {
  32593. source: "./media/characters/biscuit-jackal/back.svg",
  32594. extra: 2132/1976,
  32595. bottom: 57/2189
  32596. }
  32597. },
  32598. werejackal: {
  32599. height: math.unit(6 + 3/12, "feet"),
  32600. weight: math.unit(188, "lb"),
  32601. name: "Werejackal",
  32602. image: {
  32603. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32604. extra: 2373/2178,
  32605. bottom: 53/2426
  32606. }
  32607. },
  32608. },
  32609. [
  32610. {
  32611. name: "Normal",
  32612. height: math.unit(5 + 8/12, "feet"),
  32613. default: true
  32614. },
  32615. ]
  32616. ))
  32617. characterMakers.push(() => makeCharacter(
  32618. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32619. {
  32620. front: {
  32621. height: math.unit(140, "cm"),
  32622. weight: math.unit(45, "kg"),
  32623. name: "Front",
  32624. image: {
  32625. source: "./media/characters/tayra-white/front.svg",
  32626. extra: 2229/2192,
  32627. bottom: 75/2304
  32628. }
  32629. },
  32630. },
  32631. [
  32632. {
  32633. name: "Normal",
  32634. height: math.unit(140, "cm"),
  32635. default: true
  32636. },
  32637. ]
  32638. ))
  32639. characterMakers.push(() => makeCharacter(
  32640. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32641. {
  32642. front: {
  32643. height: math.unit(4 + 5/12, "feet"),
  32644. name: "Front",
  32645. image: {
  32646. source: "./media/characters/scoop/front.svg",
  32647. extra: 1257/1136,
  32648. bottom: 69/1326
  32649. }
  32650. },
  32651. back: {
  32652. height: math.unit(4 + 5/12, "feet"),
  32653. name: "Back",
  32654. image: {
  32655. source: "./media/characters/scoop/back.svg",
  32656. extra: 1321/1152,
  32657. bottom: 32/1353
  32658. }
  32659. },
  32660. maw: {
  32661. height: math.unit(0.68, "feet"),
  32662. name: "Maw",
  32663. image: {
  32664. source: "./media/characters/scoop/maw.svg"
  32665. }
  32666. },
  32667. },
  32668. [
  32669. {
  32670. name: "Really Small",
  32671. height: math.unit(1, "mm")
  32672. },
  32673. {
  32674. name: "Micro",
  32675. height: math.unit(1, "inch")
  32676. },
  32677. {
  32678. name: "Normal",
  32679. height: math.unit(4 + 5/12, "feet"),
  32680. default: true
  32681. },
  32682. {
  32683. name: "Macro",
  32684. height: math.unit(200, "feet")
  32685. },
  32686. {
  32687. name: "Megamacro",
  32688. height: math.unit(3240, "feet")
  32689. },
  32690. {
  32691. name: "Teramacro",
  32692. height: math.unit(2500, "miles")
  32693. },
  32694. ]
  32695. ))
  32696. characterMakers.push(() => makeCharacter(
  32697. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32698. {
  32699. front: {
  32700. height: math.unit(15 + 7/12, "feet"),
  32701. name: "Front",
  32702. image: {
  32703. source: "./media/characters/saphinara/front.svg",
  32704. extra: 604/546,
  32705. bottom: 19/623
  32706. }
  32707. },
  32708. side: {
  32709. height: math.unit(15 + 7/12, "feet"),
  32710. name: "Side",
  32711. image: {
  32712. source: "./media/characters/saphinara/side.svg",
  32713. extra: 605/547,
  32714. bottom: 6/611
  32715. }
  32716. },
  32717. back: {
  32718. height: math.unit(15 + 7/12, "feet"),
  32719. name: "Back",
  32720. image: {
  32721. source: "./media/characters/saphinara/back.svg",
  32722. extra: 591/531,
  32723. bottom: 13/604
  32724. }
  32725. },
  32726. frontTail: {
  32727. height: math.unit(15 + 7/12, "feet"),
  32728. name: "Front (Full Tail)",
  32729. image: {
  32730. source: "./media/characters/saphinara/front-tail.svg",
  32731. extra: 748/547,
  32732. bottom: 66/814
  32733. }
  32734. },
  32735. },
  32736. [
  32737. {
  32738. name: "Normal",
  32739. height: math.unit(15 + 7/12, "feet"),
  32740. default: true
  32741. },
  32742. {
  32743. name: "Angry",
  32744. height: math.unit(30 + 6/12, "feet")
  32745. },
  32746. {
  32747. name: "Enraged",
  32748. height: math.unit(102 + 1/12, "feet")
  32749. },
  32750. ]
  32751. ))
  32752. characterMakers.push(() => makeCharacter(
  32753. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32754. {
  32755. front: {
  32756. height: math.unit(6 + 8/12, "feet"),
  32757. weight: math.unit(300, "lb"),
  32758. name: "Front",
  32759. image: {
  32760. source: "./media/characters/jrain/front.svg",
  32761. extra: 3039/2865,
  32762. bottom: 399/3438
  32763. }
  32764. },
  32765. back: {
  32766. height: math.unit(6 + 8/12, "feet"),
  32767. weight: math.unit(300, "lb"),
  32768. name: "Back",
  32769. image: {
  32770. source: "./media/characters/jrain/back.svg",
  32771. extra: 3089/2938,
  32772. bottom: 172/3261
  32773. }
  32774. },
  32775. head: {
  32776. height: math.unit(2.14, "feet"),
  32777. name: "Head",
  32778. image: {
  32779. source: "./media/characters/jrain/head.svg"
  32780. }
  32781. },
  32782. maw: {
  32783. height: math.unit(1.77, "feet"),
  32784. name: "Maw",
  32785. image: {
  32786. source: "./media/characters/jrain/maw.svg"
  32787. }
  32788. },
  32789. leftHand: {
  32790. height: math.unit(1.1, "feet"),
  32791. name: "Left Hand",
  32792. image: {
  32793. source: "./media/characters/jrain/left-hand.svg"
  32794. }
  32795. },
  32796. rightHand: {
  32797. height: math.unit(1.1, "feet"),
  32798. name: "Right Hand",
  32799. image: {
  32800. source: "./media/characters/jrain/right-hand.svg"
  32801. }
  32802. },
  32803. eye: {
  32804. height: math.unit(0.35, "feet"),
  32805. name: "Eye",
  32806. image: {
  32807. source: "./media/characters/jrain/eye.svg"
  32808. }
  32809. },
  32810. },
  32811. [
  32812. {
  32813. name: "Normal",
  32814. height: math.unit(6 + 8/12, "feet"),
  32815. default: true
  32816. },
  32817. {
  32818. name: "Casually Large",
  32819. height: math.unit(25, "feet")
  32820. },
  32821. {
  32822. name: "Giant",
  32823. height: math.unit(100, "feet")
  32824. },
  32825. {
  32826. name: "Kaiju",
  32827. height: math.unit(300, "feet")
  32828. },
  32829. ]
  32830. ))
  32831. characterMakers.push(() => makeCharacter(
  32832. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32833. {
  32834. dragon: {
  32835. height: math.unit(5, "meters"),
  32836. name: "Dragon",
  32837. image: {
  32838. source: "./media/characters/sabrina/dragon.svg",
  32839. extra: 3670 / 2365,
  32840. bottom: 333 / 4003
  32841. }
  32842. },
  32843. gryphon: {
  32844. height: math.unit(3, "meters"),
  32845. name: "Gryphon",
  32846. image: {
  32847. source: "./media/characters/sabrina/gryphon.svg",
  32848. extra: 1576 / 945,
  32849. bottom: 71 / 1647
  32850. }
  32851. },
  32852. snake: {
  32853. height: math.unit(12, "meters"),
  32854. name: "Snake",
  32855. image: {
  32856. source: "./media/characters/sabrina/snake.svg",
  32857. extra: 1758 / 1320,
  32858. bottom: 186 / 1944
  32859. }
  32860. },
  32861. collar: {
  32862. height: math.unit(1.86, "meters"),
  32863. name: "Collar",
  32864. image: {
  32865. source: "./media/characters/sabrina/collar.svg"
  32866. }
  32867. },
  32868. eye: {
  32869. height: math.unit(0.53, "meters"),
  32870. name: "Eye",
  32871. image: {
  32872. source: "./media/characters/sabrina/eye.svg"
  32873. }
  32874. },
  32875. foot: {
  32876. height: math.unit(1.86, "meters"),
  32877. name: "Foot",
  32878. image: {
  32879. source: "./media/characters/sabrina/foot.svg"
  32880. }
  32881. },
  32882. hand: {
  32883. height: math.unit(1.32, "meters"),
  32884. name: "Hand",
  32885. image: {
  32886. source: "./media/characters/sabrina/hand.svg"
  32887. }
  32888. },
  32889. head: {
  32890. height: math.unit(2.44, "meters"),
  32891. name: "Head",
  32892. image: {
  32893. source: "./media/characters/sabrina/head.svg"
  32894. }
  32895. },
  32896. headAngry: {
  32897. height: math.unit(2.44, "meters"),
  32898. name: "Head (Angry))",
  32899. image: {
  32900. source: "./media/characters/sabrina/head-angry.svg"
  32901. }
  32902. },
  32903. maw: {
  32904. height: math.unit(1.65, "meters"),
  32905. name: "Maw",
  32906. image: {
  32907. source: "./media/characters/sabrina/maw.svg"
  32908. }
  32909. },
  32910. spikes: {
  32911. height: math.unit(1.69, "meters"),
  32912. name: "Spikes",
  32913. image: {
  32914. source: "./media/characters/sabrina/spikes.svg"
  32915. }
  32916. },
  32917. stomach: {
  32918. height: math.unit(1.15, "meters"),
  32919. name: "Stomach",
  32920. image: {
  32921. source: "./media/characters/sabrina/stomach.svg"
  32922. }
  32923. },
  32924. tongue: {
  32925. height: math.unit(1.27, "meters"),
  32926. name: "Tongue",
  32927. image: {
  32928. source: "./media/characters/sabrina/tongue.svg"
  32929. }
  32930. },
  32931. wingDorsal: {
  32932. height: math.unit(4.85, "meters"),
  32933. name: "Wing (Dorsal)",
  32934. image: {
  32935. source: "./media/characters/sabrina/wing-dorsal.svg"
  32936. }
  32937. },
  32938. wingVentral: {
  32939. height: math.unit(4.85, "meters"),
  32940. name: "Wing (Ventral)",
  32941. image: {
  32942. source: "./media/characters/sabrina/wing-ventral.svg"
  32943. }
  32944. },
  32945. },
  32946. [
  32947. {
  32948. name: "Normal",
  32949. height: math.unit(5, "meters"),
  32950. default: true
  32951. },
  32952. ]
  32953. ))
  32954. characterMakers.push(() => makeCharacter(
  32955. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32956. {
  32957. frontMaid: {
  32958. height: math.unit(5 + 5/12, "feet"),
  32959. weight: math.unit(130, "lb"),
  32960. name: "Front (Maid)",
  32961. image: {
  32962. source: "./media/characters/midnight-tales/front-maid.svg",
  32963. extra: 489/454,
  32964. bottom: 61/550
  32965. }
  32966. },
  32967. frontFormal: {
  32968. height: math.unit(5 + 5/12, "feet"),
  32969. weight: math.unit(130, "lb"),
  32970. name: "Front (Formal)",
  32971. image: {
  32972. source: "./media/characters/midnight-tales/front-formal.svg",
  32973. extra: 489/454,
  32974. bottom: 61/550
  32975. }
  32976. },
  32977. back: {
  32978. height: math.unit(5 + 5/12, "feet"),
  32979. weight: math.unit(130, "lb"),
  32980. name: "Back",
  32981. image: {
  32982. source: "./media/characters/midnight-tales/back.svg",
  32983. extra: 498/456,
  32984. bottom: 33/531
  32985. }
  32986. },
  32987. frontBeast: {
  32988. height: math.unit(40, "feet"),
  32989. weight: math.unit(64000, "lb"),
  32990. name: "Front (Beast)",
  32991. image: {
  32992. source: "./media/characters/midnight-tales/front-beast.svg",
  32993. extra: 927/860,
  32994. bottom: 53/980
  32995. }
  32996. },
  32997. backBeast: {
  32998. height: math.unit(40, "feet"),
  32999. weight: math.unit(64000, "lb"),
  33000. name: "Back (Beast)",
  33001. image: {
  33002. source: "./media/characters/midnight-tales/back-beast.svg",
  33003. extra: 929/855,
  33004. bottom: 16/945
  33005. }
  33006. },
  33007. footBeast: {
  33008. height: math.unit(6.7, "feet"),
  33009. name: "Foot (Beast)",
  33010. image: {
  33011. source: "./media/characters/midnight-tales/foot-beast.svg"
  33012. }
  33013. },
  33014. headBeast: {
  33015. height: math.unit(8, "feet"),
  33016. name: "Head (Beast)",
  33017. image: {
  33018. source: "./media/characters/midnight-tales/head-beast.svg"
  33019. }
  33020. },
  33021. },
  33022. [
  33023. {
  33024. name: "Normal",
  33025. height: math.unit(5 + 5 / 12, "feet"),
  33026. default: true
  33027. },
  33028. {
  33029. name: "Macro",
  33030. height: math.unit(25, "feet")
  33031. },
  33032. ]
  33033. ))
  33034. characterMakers.push(() => makeCharacter(
  33035. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33036. {
  33037. front: {
  33038. height: math.unit(5 + 10/12, "feet"),
  33039. name: "Front",
  33040. image: {
  33041. source: "./media/characters/argon/front.svg",
  33042. extra: 2009/1935,
  33043. bottom: 118/2127
  33044. }
  33045. },
  33046. back: {
  33047. height: math.unit(5 + 10/12, "feet"),
  33048. name: "Back",
  33049. image: {
  33050. source: "./media/characters/argon/back.svg",
  33051. extra: 2047/1992,
  33052. bottom: 20/2067
  33053. }
  33054. },
  33055. frontDressed: {
  33056. height: math.unit(5 + 10/12, "feet"),
  33057. name: "Front (Dressed)",
  33058. image: {
  33059. source: "./media/characters/argon/front-dressed.svg",
  33060. extra: 2009/1935,
  33061. bottom: 118/2127
  33062. }
  33063. },
  33064. },
  33065. [
  33066. {
  33067. name: "Normal",
  33068. height: math.unit(5 + 10/12, "feet"),
  33069. default: true
  33070. },
  33071. ]
  33072. ))
  33073. characterMakers.push(() => makeCharacter(
  33074. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33075. {
  33076. front: {
  33077. height: math.unit(8 + 6/12, "feet"),
  33078. weight: math.unit(1150, "lb"),
  33079. name: "Front",
  33080. image: {
  33081. source: "./media/characters/kichi/front.svg",
  33082. extra: 1267/1164,
  33083. bottom: 61/1328
  33084. }
  33085. },
  33086. back: {
  33087. height: math.unit(8 + 6/12, "feet"),
  33088. weight: math.unit(1150, "lb"),
  33089. name: "Back",
  33090. image: {
  33091. source: "./media/characters/kichi/back.svg",
  33092. extra: 1273/1166,
  33093. bottom: 33/1306
  33094. }
  33095. },
  33096. },
  33097. [
  33098. {
  33099. name: "Normal",
  33100. height: math.unit(8 + 6/12, "feet"),
  33101. default: true
  33102. },
  33103. ]
  33104. ))
  33105. characterMakers.push(() => makeCharacter(
  33106. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33107. {
  33108. front: {
  33109. height: math.unit(6, "feet"),
  33110. weight: math.unit(210, "lb"),
  33111. name: "Front",
  33112. image: {
  33113. source: "./media/characters/manetel-greyscale/front.svg",
  33114. extra: 350/312,
  33115. bottom: 8/358
  33116. }
  33117. },
  33118. },
  33119. [
  33120. {
  33121. name: "Micro",
  33122. height: math.unit(2, "inches")
  33123. },
  33124. {
  33125. name: "Normal",
  33126. height: math.unit(6, "feet"),
  33127. default: true
  33128. },
  33129. {
  33130. name: "Minimacro",
  33131. height: math.unit(17, "feet")
  33132. },
  33133. {
  33134. name: "Macro",
  33135. height: math.unit(117, "feet")
  33136. },
  33137. ]
  33138. ))
  33139. characterMakers.push(() => makeCharacter(
  33140. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33141. {
  33142. side: {
  33143. height: math.unit(5 + 1/12, "feet"),
  33144. weight: math.unit(418, "lb"),
  33145. name: "Side",
  33146. image: {
  33147. source: "./media/characters/softpurr/side.svg",
  33148. extra: 1993/1945,
  33149. bottom: 134/2127
  33150. }
  33151. },
  33152. front: {
  33153. height: math.unit(5 + 1/12, "feet"),
  33154. weight: math.unit(418, "lb"),
  33155. name: "Front",
  33156. image: {
  33157. source: "./media/characters/softpurr/front.svg",
  33158. extra: 1950/1856,
  33159. bottom: 174/2124
  33160. }
  33161. },
  33162. paw: {
  33163. height: math.unit(1, "feet"),
  33164. name: "Paw",
  33165. image: {
  33166. source: "./media/characters/softpurr/paw.svg"
  33167. }
  33168. },
  33169. },
  33170. [
  33171. {
  33172. name: "Normal",
  33173. height: math.unit(5 + 1/12, "feet"),
  33174. default: true
  33175. },
  33176. ]
  33177. ))
  33178. characterMakers.push(() => makeCharacter(
  33179. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33180. {
  33181. front: {
  33182. height: math.unit(260, "meters"),
  33183. name: "Front",
  33184. image: {
  33185. source: "./media/characters/anahita/front.svg",
  33186. extra: 665/635,
  33187. bottom: 89/754
  33188. }
  33189. },
  33190. },
  33191. [
  33192. {
  33193. name: "Macro",
  33194. height: math.unit(260, "meters"),
  33195. default: true
  33196. },
  33197. ]
  33198. ))
  33199. characterMakers.push(() => makeCharacter(
  33200. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33201. {
  33202. front: {
  33203. height: math.unit(4 + 10/12, "feet"),
  33204. weight: math.unit(160, "lb"),
  33205. name: "Front",
  33206. image: {
  33207. source: "./media/characters/chip-mouse/front.svg",
  33208. extra: 3528/3408,
  33209. bottom: 0/3528
  33210. }
  33211. },
  33212. frontNsfw: {
  33213. height: math.unit(4 + 10/12, "feet"),
  33214. weight: math.unit(160, "lb"),
  33215. name: "Front (NSFW)",
  33216. image: {
  33217. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33218. extra: 3528/3408,
  33219. bottom: 0/3528
  33220. }
  33221. },
  33222. },
  33223. [
  33224. {
  33225. name: "Normal",
  33226. height: math.unit(4 + 10/12, "feet"),
  33227. default: true
  33228. },
  33229. ]
  33230. ))
  33231. characterMakers.push(() => makeCharacter(
  33232. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33233. {
  33234. side: {
  33235. height: math.unit(10, "feet"),
  33236. weight: math.unit(14000, "lb"),
  33237. name: "Side",
  33238. image: {
  33239. source: "./media/characters/kremm/side.svg",
  33240. extra: 1390/1053,
  33241. bottom: 90/1480
  33242. }
  33243. },
  33244. gut: {
  33245. height: math.unit(5.8, "feet"),
  33246. name: "Gut",
  33247. image: {
  33248. source: "./media/characters/kremm/gut.svg"
  33249. }
  33250. },
  33251. ass: {
  33252. height: math.unit(6.1, "feet"),
  33253. name: "Ass",
  33254. image: {
  33255. source: "./media/characters/kremm/ass.svg"
  33256. }
  33257. },
  33258. jaws: {
  33259. height: math.unit(2.2, "feet"),
  33260. name: "Jaws",
  33261. image: {
  33262. source: "./media/characters/kremm/jaws.svg"
  33263. }
  33264. },
  33265. dick: {
  33266. height: math.unit(4.26, "feet"),
  33267. name: "Dick",
  33268. image: {
  33269. source: "./media/characters/kremm/dick.svg"
  33270. }
  33271. },
  33272. },
  33273. [
  33274. {
  33275. name: "Normal",
  33276. height: math.unit(10, "feet"),
  33277. default: true
  33278. },
  33279. ]
  33280. ))
  33281. characterMakers.push(() => makeCharacter(
  33282. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33283. {
  33284. front: {
  33285. height: math.unit(30, "stories"),
  33286. name: "Front",
  33287. image: {
  33288. source: "./media/characters/kai/front.svg",
  33289. extra: 1892/1718,
  33290. bottom: 162/2054
  33291. }
  33292. },
  33293. },
  33294. [
  33295. {
  33296. name: "Macro",
  33297. height: math.unit(30, "stories"),
  33298. default: true
  33299. },
  33300. ]
  33301. ))
  33302. characterMakers.push(() => makeCharacter(
  33303. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33304. {
  33305. front: {
  33306. height: math.unit(6 + 4/12, "feet"),
  33307. weight: math.unit(145, "lb"),
  33308. name: "Front",
  33309. image: {
  33310. source: "./media/characters/sykes/front.svg",
  33311. extra: 1321 / 1187,
  33312. bottom: 66 / 1387
  33313. }
  33314. },
  33315. back: {
  33316. height: math.unit(6 + 4/12, "feet"),
  33317. weight: math.unit(145, "lb"),
  33318. name: "Back",
  33319. image: {
  33320. source: "./media/characters/sykes/back.svg",
  33321. extra: 1326/1181,
  33322. bottom: 31/1357
  33323. }
  33324. },
  33325. handBack: {
  33326. height: math.unit(0.9, "feet"),
  33327. name: "Hand (Back)",
  33328. image: {
  33329. source: "./media/characters/sykes/hand-back.svg"
  33330. }
  33331. },
  33332. handFront: {
  33333. height: math.unit(0.839, "feet"),
  33334. name: "Hand (Front)",
  33335. image: {
  33336. source: "./media/characters/sykes/hand-front.svg"
  33337. }
  33338. },
  33339. leftFoot: {
  33340. height: math.unit(1.2, "feet"),
  33341. name: "Foot (Left)",
  33342. image: {
  33343. source: "./media/characters/sykes/foot-left.svg"
  33344. }
  33345. },
  33346. rightFoot: {
  33347. height: math.unit(1.2, "feet"),
  33348. name: "Foot (Right)",
  33349. image: {
  33350. source: "./media/characters/sykes/foot-right.svg"
  33351. }
  33352. },
  33353. maw: {
  33354. height: math.unit(1.93, "feet"),
  33355. name: "Maw",
  33356. image: {
  33357. source: "./media/characters/sykes/maw.svg"
  33358. }
  33359. },
  33360. teeth: {
  33361. height: math.unit(0.51, "feet"),
  33362. name: "Teeth",
  33363. image: {
  33364. source: "./media/characters/sykes/teeth.svg"
  33365. }
  33366. },
  33367. tongue: {
  33368. height: math.unit(2.13, "feet"),
  33369. name: "Tongue",
  33370. image: {
  33371. source: "./media/characters/sykes/tongue.svg"
  33372. }
  33373. },
  33374. uvula: {
  33375. height: math.unit(0.16, "feet"),
  33376. name: "Uvula",
  33377. image: {
  33378. source: "./media/characters/sykes/uvula.svg"
  33379. }
  33380. },
  33381. collar: {
  33382. height: math.unit(0.287, "feet"),
  33383. name: "Collar",
  33384. image: {
  33385. source: "./media/characters/sykes/collar.svg"
  33386. }
  33387. },
  33388. },
  33389. [
  33390. {
  33391. name: "Shrunken",
  33392. height: math.unit(5, "inches")
  33393. },
  33394. {
  33395. name: "Normal",
  33396. height: math.unit(6 + 4 / 12, "feet"),
  33397. default: true
  33398. },
  33399. {
  33400. name: "Big",
  33401. height: math.unit(15, "feet")
  33402. },
  33403. ]
  33404. ))
  33405. characterMakers.push(() => makeCharacter(
  33406. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33407. {
  33408. front: {
  33409. height: math.unit(5 + 8/12, "feet"),
  33410. weight: math.unit(190, "lb"),
  33411. name: "Front",
  33412. image: {
  33413. source: "./media/characters/oven-otter/front.svg",
  33414. extra: 1809/1740,
  33415. bottom: 181/1990
  33416. }
  33417. },
  33418. back: {
  33419. height: math.unit(5 + 8/12, "feet"),
  33420. weight: math.unit(190, "lb"),
  33421. name: "Back",
  33422. image: {
  33423. source: "./media/characters/oven-otter/back.svg",
  33424. extra: 1709/1635,
  33425. bottom: 118/1827
  33426. }
  33427. },
  33428. hand: {
  33429. height: math.unit(1.07, "feet"),
  33430. name: "Hand",
  33431. image: {
  33432. source: "./media/characters/oven-otter/hand.svg"
  33433. }
  33434. },
  33435. beans: {
  33436. height: math.unit(1.74, "feet"),
  33437. name: "Beans",
  33438. image: {
  33439. source: "./media/characters/oven-otter/beans.svg"
  33440. }
  33441. },
  33442. },
  33443. [
  33444. {
  33445. name: "Micro",
  33446. height: math.unit(0.5, "inches")
  33447. },
  33448. {
  33449. name: "Normal",
  33450. height: math.unit(5 + 8/12, "feet"),
  33451. default: true
  33452. },
  33453. {
  33454. name: "Macro",
  33455. height: math.unit(250, "feet")
  33456. },
  33457. {
  33458. name: "Really High",
  33459. height: math.unit(420, "feet")
  33460. },
  33461. ]
  33462. ))
  33463. characterMakers.push(() => makeCharacter(
  33464. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33465. {
  33466. front: {
  33467. height: math.unit(5, "meters"),
  33468. weight: math.unit(292000000000000, "kg"),
  33469. name: "Front",
  33470. image: {
  33471. source: "./media/characters/devourer/front.svg",
  33472. extra: 1800/1733,
  33473. bottom: 211/2011
  33474. }
  33475. },
  33476. maw: {
  33477. height: math.unit(1.1, "meter"),
  33478. name: "Maw",
  33479. image: {
  33480. source: "./media/characters/devourer/maw.svg"
  33481. }
  33482. },
  33483. },
  33484. [
  33485. {
  33486. name: "Small",
  33487. height: math.unit(3, "meters")
  33488. },
  33489. {
  33490. name: "Large",
  33491. height: math.unit(5, "meters"),
  33492. default: true
  33493. },
  33494. ]
  33495. ))
  33496. characterMakers.push(() => makeCharacter(
  33497. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33498. {
  33499. front: {
  33500. height: math.unit(6, "feet"),
  33501. weight: math.unit(400, "lb"),
  33502. name: "Front",
  33503. image: {
  33504. source: "./media/characters/ellarby/front.svg",
  33505. extra: 1909/1763,
  33506. bottom: 80/1989
  33507. }
  33508. },
  33509. back: {
  33510. height: math.unit(6, "feet"),
  33511. weight: math.unit(400, "lb"),
  33512. name: "Back",
  33513. image: {
  33514. source: "./media/characters/ellarby/back.svg",
  33515. extra: 1914/1784,
  33516. bottom: 172/2086
  33517. }
  33518. },
  33519. },
  33520. [
  33521. {
  33522. name: "Mischief",
  33523. height: math.unit(18, "inches")
  33524. },
  33525. {
  33526. name: "Trouble",
  33527. height: math.unit(12, "feet")
  33528. },
  33529. {
  33530. name: "Havoc",
  33531. height: math.unit(200, "feet"),
  33532. default: true
  33533. },
  33534. {
  33535. name: "Pandemonium",
  33536. height: math.unit(1, "mile")
  33537. },
  33538. {
  33539. name: "Catastrophe",
  33540. height: math.unit(100, "miles")
  33541. },
  33542. ]
  33543. ))
  33544. characterMakers.push(() => makeCharacter(
  33545. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33546. {
  33547. front: {
  33548. height: math.unit(4.7, "meters"),
  33549. weight: math.unit(6500, "kg"),
  33550. name: "Front",
  33551. image: {
  33552. source: "./media/characters/vex/front.svg",
  33553. extra: 1288/1140,
  33554. bottom: 100/1388
  33555. }
  33556. },
  33557. },
  33558. [
  33559. {
  33560. name: "Normal",
  33561. height: math.unit(4.7, "meters"),
  33562. default: true
  33563. },
  33564. ]
  33565. ))
  33566. characterMakers.push(() => makeCharacter(
  33567. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33568. {
  33569. normal: {
  33570. height: math.unit(6, "feet"),
  33571. weight: math.unit(350, "lb"),
  33572. name: "Normal",
  33573. image: {
  33574. source: "./media/characters/teshy/normal.svg",
  33575. extra: 1795/1735,
  33576. bottom: 16/1811
  33577. }
  33578. },
  33579. monsterFront: {
  33580. height: math.unit(12, "feet"),
  33581. weight: math.unit(4700, "lb"),
  33582. name: "Monster (Front)",
  33583. image: {
  33584. source: "./media/characters/teshy/monster-front.svg",
  33585. extra: 2042/2034,
  33586. bottom: 128/2170
  33587. }
  33588. },
  33589. monsterSide: {
  33590. height: math.unit(12, "feet"),
  33591. weight: math.unit(4700, "lb"),
  33592. name: "Monster (Side)",
  33593. image: {
  33594. source: "./media/characters/teshy/monster-side.svg",
  33595. extra: 2067/2056,
  33596. bottom: 70/2137
  33597. }
  33598. },
  33599. monsterBack: {
  33600. height: math.unit(12, "feet"),
  33601. weight: math.unit(4700, "lb"),
  33602. name: "Monster (Back)",
  33603. image: {
  33604. source: "./media/characters/teshy/monster-back.svg",
  33605. extra: 1921/1914,
  33606. bottom: 171/2092
  33607. }
  33608. },
  33609. },
  33610. [
  33611. {
  33612. name: "Normal",
  33613. height: math.unit(6, "feet"),
  33614. default: true
  33615. },
  33616. ]
  33617. ))
  33618. characterMakers.push(() => makeCharacter(
  33619. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33620. {
  33621. front: {
  33622. height: math.unit(6, "feet"),
  33623. name: "Front",
  33624. image: {
  33625. source: "./media/characters/ramey/front.svg",
  33626. extra: 790/787,
  33627. bottom: 27/817
  33628. }
  33629. },
  33630. },
  33631. [
  33632. {
  33633. name: "Normal",
  33634. height: math.unit(6, "feet"),
  33635. default: true
  33636. },
  33637. ]
  33638. ))
  33639. characterMakers.push(() => makeCharacter(
  33640. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33641. {
  33642. front: {
  33643. height: math.unit(5 + 5/12, "feet"),
  33644. weight: math.unit(120, "lb"),
  33645. name: "Front",
  33646. image: {
  33647. source: "./media/characters/phirae/front.svg",
  33648. extra: 2491/2436,
  33649. bottom: 38/2529
  33650. }
  33651. },
  33652. },
  33653. [
  33654. {
  33655. name: "Normal",
  33656. height: math.unit(5 + 5/12, "feet"),
  33657. default: true
  33658. },
  33659. ]
  33660. ))
  33661. characterMakers.push(() => makeCharacter(
  33662. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33663. {
  33664. front: {
  33665. height: math.unit(6, "feet"),
  33666. weight: math.unit(150, "lb"),
  33667. name: "Front",
  33668. image: {
  33669. source: "./media/characters/stagglas/front.svg",
  33670. extra: 962/882,
  33671. bottom: 53/1015
  33672. }
  33673. },
  33674. },
  33675. [
  33676. {
  33677. name: "Normal",
  33678. height: math.unit(5 + 3/12, "feet"),
  33679. default: true
  33680. },
  33681. ]
  33682. ))
  33683. characterMakers.push(() => makeCharacter(
  33684. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33685. {
  33686. front: {
  33687. height: math.unit(5 + 4/12, "feet"),
  33688. weight: math.unit(145, "lb"),
  33689. name: "Front",
  33690. image: {
  33691. source: "./media/characters/starra/front.svg",
  33692. extra: 1790/1691,
  33693. bottom: 91/1881
  33694. }
  33695. },
  33696. },
  33697. [
  33698. {
  33699. name: "Normal",
  33700. height: math.unit(5 + 4/12, "feet"),
  33701. default: true
  33702. },
  33703. ]
  33704. ))
  33705. characterMakers.push(() => makeCharacter(
  33706. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33707. {
  33708. front: {
  33709. height: math.unit(2.2, "meters"),
  33710. name: "Front",
  33711. image: {
  33712. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33713. extra: 1194/1005,
  33714. bottom: 25/1219
  33715. }
  33716. },
  33717. },
  33718. [
  33719. {
  33720. name: "Normal",
  33721. height: math.unit(2.2, "meters"),
  33722. default: true
  33723. },
  33724. ]
  33725. ))
  33726. characterMakers.push(() => makeCharacter(
  33727. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33728. {
  33729. side: {
  33730. height: math.unit(8 + 2/12, "feet"),
  33731. weight: math.unit(1240, "lb"),
  33732. name: "Side",
  33733. image: {
  33734. source: "./media/characters/mika-valentine/side.svg",
  33735. extra: 2670/2501,
  33736. bottom: 250/2920
  33737. }
  33738. },
  33739. },
  33740. [
  33741. {
  33742. name: "Normal",
  33743. height: math.unit(8 + 2/12, "feet"),
  33744. default: true
  33745. },
  33746. ]
  33747. ))
  33748. characterMakers.push(() => makeCharacter(
  33749. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33750. {
  33751. front: {
  33752. height: math.unit(7 + 2/12, "feet"),
  33753. name: "Front",
  33754. image: {
  33755. source: "./media/characters/xoltol/front.svg",
  33756. extra: 2212/2124,
  33757. bottom: 84/2296
  33758. }
  33759. },
  33760. side: {
  33761. height: math.unit(7 + 2/12, "feet"),
  33762. name: "Side",
  33763. image: {
  33764. source: "./media/characters/xoltol/side.svg",
  33765. extra: 2273/2197,
  33766. bottom: 26/2299
  33767. }
  33768. },
  33769. hand: {
  33770. height: math.unit(2.5, "feet"),
  33771. name: "Hand",
  33772. image: {
  33773. source: "./media/characters/xoltol/hand.svg"
  33774. }
  33775. },
  33776. },
  33777. [
  33778. {
  33779. name: "Small-ish",
  33780. height: math.unit(5 + 11/12, "feet")
  33781. },
  33782. {
  33783. name: "Normal",
  33784. height: math.unit(7 + 2/12, "feet")
  33785. },
  33786. {
  33787. name: "\"Macro\"",
  33788. height: math.unit(14 + 9/12, "feet"),
  33789. default: true
  33790. },
  33791. {
  33792. name: "Alternate Height",
  33793. height: math.unit(20, "feet")
  33794. },
  33795. {
  33796. name: "Actually Macro",
  33797. height: math.unit(100, "feet")
  33798. },
  33799. ]
  33800. ))
  33801. characterMakers.push(() => makeCharacter(
  33802. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33803. {
  33804. front: {
  33805. height: math.unit(5 + 2/12, "feet"),
  33806. name: "Front",
  33807. image: {
  33808. source: "./media/characters/kotetsu-redwood/front.svg",
  33809. extra: 1053/942,
  33810. bottom: 60/1113
  33811. }
  33812. },
  33813. },
  33814. [
  33815. {
  33816. name: "Normal",
  33817. height: math.unit(5 + 2/12, "feet"),
  33818. default: true
  33819. },
  33820. ]
  33821. ))
  33822. characterMakers.push(() => makeCharacter(
  33823. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33824. {
  33825. front: {
  33826. height: math.unit(2.4, "meters"),
  33827. weight: math.unit(125, "kg"),
  33828. name: "Front",
  33829. image: {
  33830. source: "./media/characters/lilith/front.svg",
  33831. extra: 1590/1513,
  33832. bottom: 203/1793
  33833. }
  33834. },
  33835. },
  33836. [
  33837. {
  33838. name: "Humanoid",
  33839. height: math.unit(2.4, "meters")
  33840. },
  33841. {
  33842. name: "Normal",
  33843. height: math.unit(6, "meters"),
  33844. default: true
  33845. },
  33846. {
  33847. name: "Largest",
  33848. height: math.unit(55, "meters")
  33849. },
  33850. ]
  33851. ))
  33852. characterMakers.push(() => makeCharacter(
  33853. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33854. {
  33855. front: {
  33856. height: math.unit(8 + 4/12, "feet"),
  33857. weight: math.unit(535, "lb"),
  33858. name: "Front",
  33859. image: {
  33860. source: "./media/characters/beh'kah-bolger/front.svg",
  33861. extra: 1660/1603,
  33862. bottom: 37/1697
  33863. }
  33864. },
  33865. },
  33866. [
  33867. {
  33868. name: "Normal",
  33869. height: math.unit(8 + 4/12, "feet"),
  33870. default: true
  33871. },
  33872. {
  33873. name: "Kaiju",
  33874. height: math.unit(250, "feet")
  33875. },
  33876. {
  33877. name: "Still Growing",
  33878. height: math.unit(10, "miles")
  33879. },
  33880. {
  33881. name: "Continental",
  33882. height: math.unit(5000, "miles")
  33883. },
  33884. {
  33885. name: "Final Form",
  33886. height: math.unit(2500000, "miles")
  33887. },
  33888. ]
  33889. ))
  33890. characterMakers.push(() => makeCharacter(
  33891. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33892. {
  33893. front: {
  33894. height: math.unit(7 + 2/12, "feet"),
  33895. weight: math.unit(230, "kg"),
  33896. name: "Front",
  33897. image: {
  33898. source: "./media/characters/tatyana-milewska/front.svg",
  33899. extra: 1199/1150,
  33900. bottom: 86/1285
  33901. }
  33902. },
  33903. },
  33904. [
  33905. {
  33906. name: "Normal",
  33907. height: math.unit(7 + 2/12, "feet"),
  33908. default: true
  33909. },
  33910. {
  33911. name: "Big",
  33912. height: math.unit(12, "feet")
  33913. },
  33914. {
  33915. name: "Minimacro",
  33916. height: math.unit(20, "feet")
  33917. },
  33918. {
  33919. name: "Macro",
  33920. height: math.unit(120, "feet")
  33921. },
  33922. ]
  33923. ))
  33924. characterMakers.push(() => makeCharacter(
  33925. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33926. {
  33927. front: {
  33928. height: math.unit(7 + 8/12, "feet"),
  33929. weight: math.unit(152, "kg"),
  33930. name: "Front",
  33931. image: {
  33932. source: "./media/characters/helen-arri/front.svg",
  33933. extra: 440/423,
  33934. bottom: 14/454
  33935. }
  33936. },
  33937. back: {
  33938. height: math.unit(7 + 8/12, "feet"),
  33939. weight: math.unit(152, "kg"),
  33940. name: "Back",
  33941. image: {
  33942. source: "./media/characters/helen-arri/back.svg",
  33943. extra: 443/426,
  33944. bottom: 8/451
  33945. }
  33946. },
  33947. },
  33948. [
  33949. {
  33950. name: "Normal",
  33951. height: math.unit(7 + 8/12, "feet"),
  33952. default: true
  33953. },
  33954. {
  33955. name: "Big",
  33956. height: math.unit(14, "feet")
  33957. },
  33958. {
  33959. name: "Minimacro",
  33960. height: math.unit(24, "feet")
  33961. },
  33962. {
  33963. name: "Macro",
  33964. height: math.unit(140, "feet")
  33965. },
  33966. ]
  33967. ))
  33968. characterMakers.push(() => makeCharacter(
  33969. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33970. {
  33971. front: {
  33972. height: math.unit(6, "meters"),
  33973. name: "Front",
  33974. image: {
  33975. source: "./media/characters/ehanu-rehu/front.svg",
  33976. extra: 1800/1800,
  33977. bottom: 59/1859
  33978. }
  33979. },
  33980. },
  33981. [
  33982. {
  33983. name: "Normal",
  33984. height: math.unit(6, "meters"),
  33985. default: true
  33986. },
  33987. ]
  33988. ))
  33989. characterMakers.push(() => makeCharacter(
  33990. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33991. {
  33992. front: {
  33993. height: math.unit(7 + 3/12, "feet"),
  33994. name: "Front",
  33995. image: {
  33996. source: "./media/characters/renholder/front.svg",
  33997. extra: 3096/2960,
  33998. bottom: 250/3346
  33999. }
  34000. },
  34001. },
  34002. [
  34003. {
  34004. name: "Normal Bat",
  34005. height: math.unit(7 + 3/12, "feet"),
  34006. default: true
  34007. },
  34008. {
  34009. name: "Slightly Tall Bat",
  34010. height: math.unit(100, "feet")
  34011. },
  34012. {
  34013. name: "Big Bat",
  34014. height: math.unit(1000, "feet")
  34015. },
  34016. {
  34017. name: "City-Sized Bat",
  34018. height: math.unit(200000, "feet")
  34019. },
  34020. {
  34021. name: "Bigger Bat",
  34022. height: math.unit(10000, "miles")
  34023. },
  34024. {
  34025. name: "Solar Sized Bat",
  34026. height: math.unit(100, "AU")
  34027. },
  34028. {
  34029. name: "Galactic Bat",
  34030. height: math.unit(200000, "lightyears")
  34031. },
  34032. {
  34033. name: "Universally Known Bat",
  34034. height: math.unit(1, "universe")
  34035. },
  34036. ]
  34037. ))
  34038. characterMakers.push(() => makeCharacter(
  34039. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34040. {
  34041. front: {
  34042. height: math.unit(6 + 11/12, "feet"),
  34043. weight: math.unit(250, "lb"),
  34044. name: "Front",
  34045. image: {
  34046. source: "./media/characters/cookiecat/front.svg",
  34047. extra: 893/827,
  34048. bottom: 14/907
  34049. }
  34050. },
  34051. },
  34052. [
  34053. {
  34054. name: "Micro",
  34055. height: math.unit(3, "inches")
  34056. },
  34057. {
  34058. name: "Normal",
  34059. height: math.unit(6 + 11/12, "feet"),
  34060. default: true
  34061. },
  34062. {
  34063. name: "Macro",
  34064. height: math.unit(100, "feet")
  34065. },
  34066. {
  34067. name: "Macro+",
  34068. height: math.unit(404, "feet")
  34069. },
  34070. {
  34071. name: "Megamacro",
  34072. height: math.unit(165, "miles")
  34073. },
  34074. {
  34075. name: "Planetary",
  34076. height: math.unit(4600, "miles")
  34077. },
  34078. ]
  34079. ))
  34080. characterMakers.push(() => makeCharacter(
  34081. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34082. {
  34083. front: {
  34084. height: math.unit(10 + 3/12, "feet"),
  34085. weight: math.unit(1500, "lb"),
  34086. name: "Front",
  34087. image: {
  34088. source: "./media/characters/tux-kusanagi/front.svg",
  34089. extra: 944/840,
  34090. bottom: 39/983
  34091. }
  34092. },
  34093. back: {
  34094. height: math.unit(10 + 3/12, "feet"),
  34095. weight: math.unit(1500, "lb"),
  34096. name: "Back",
  34097. image: {
  34098. source: "./media/characters/tux-kusanagi/back.svg",
  34099. extra: 941/842,
  34100. bottom: 28/969
  34101. }
  34102. },
  34103. rump: {
  34104. height: math.unit(5.25, "feet"),
  34105. name: "Rump",
  34106. image: {
  34107. source: "./media/characters/tux-kusanagi/rump.svg"
  34108. }
  34109. },
  34110. beak: {
  34111. height: math.unit(1.54, "feet"),
  34112. name: "Beak",
  34113. image: {
  34114. source: "./media/characters/tux-kusanagi/beak.svg"
  34115. }
  34116. },
  34117. },
  34118. [
  34119. {
  34120. name: "Normal",
  34121. height: math.unit(10 + 3/12, "feet"),
  34122. default: true
  34123. },
  34124. ]
  34125. ))
  34126. characterMakers.push(() => makeCharacter(
  34127. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34128. {
  34129. front: {
  34130. height: math.unit(58, "feet"),
  34131. weight: math.unit(200, "tons"),
  34132. name: "Front",
  34133. image: {
  34134. source: "./media/characters/uzarmazari/front.svg",
  34135. extra: 1575/1455,
  34136. bottom: 152/1727
  34137. }
  34138. },
  34139. back: {
  34140. height: math.unit(58, "feet"),
  34141. weight: math.unit(200, "tons"),
  34142. name: "Back",
  34143. image: {
  34144. source: "./media/characters/uzarmazari/back.svg",
  34145. extra: 1585/1510,
  34146. bottom: 157/1742
  34147. }
  34148. },
  34149. head: {
  34150. height: math.unit(26, "feet"),
  34151. name: "Head",
  34152. image: {
  34153. source: "./media/characters/uzarmazari/head.svg"
  34154. }
  34155. },
  34156. },
  34157. [
  34158. {
  34159. name: "Normal",
  34160. height: math.unit(58, "feet"),
  34161. default: true
  34162. },
  34163. ]
  34164. ))
  34165. characterMakers.push(() => makeCharacter(
  34166. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34167. {
  34168. side: {
  34169. height: math.unit(15, "feet"),
  34170. name: "Side",
  34171. image: {
  34172. source: "./media/characters/akitu/side.svg",
  34173. extra: 1421/1321,
  34174. bottom: 157/1578
  34175. }
  34176. },
  34177. front: {
  34178. height: math.unit(15, "feet"),
  34179. name: "Front",
  34180. image: {
  34181. source: "./media/characters/akitu/front.svg",
  34182. extra: 1435/1326,
  34183. bottom: 232/1667
  34184. }
  34185. },
  34186. },
  34187. [
  34188. {
  34189. name: "Normal",
  34190. height: math.unit(15, "feet"),
  34191. default: true
  34192. },
  34193. ]
  34194. ))
  34195. characterMakers.push(() => makeCharacter(
  34196. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34197. {
  34198. front: {
  34199. height: math.unit(10 + 8/12, "feet"),
  34200. name: "Front",
  34201. image: {
  34202. source: "./media/characters/azalie-croixland/front.svg",
  34203. extra: 1972/1856,
  34204. bottom: 31/2003
  34205. }
  34206. },
  34207. },
  34208. [
  34209. {
  34210. name: "Original Height",
  34211. height: math.unit(5 + 4/12, "feet")
  34212. },
  34213. {
  34214. name: "Normal Height",
  34215. height: math.unit(10 + 8/12, "feet"),
  34216. default: true
  34217. },
  34218. ]
  34219. ))
  34220. characterMakers.push(() => makeCharacter(
  34221. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34222. {
  34223. side: {
  34224. height: math.unit(7 + 1/12, "feet"),
  34225. weight: math.unit(245, "lb"),
  34226. name: "Side",
  34227. image: {
  34228. source: "./media/characters/kavus-kazian/side.svg",
  34229. extra: 349/342,
  34230. bottom: 15/364
  34231. }
  34232. },
  34233. },
  34234. [
  34235. {
  34236. name: "Normal",
  34237. height: math.unit(7 + 1/12, "feet"),
  34238. default: true
  34239. },
  34240. ]
  34241. ))
  34242. characterMakers.push(() => makeCharacter(
  34243. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34244. {
  34245. normal: {
  34246. height: math.unit(5 + 11/12, "feet"),
  34247. name: "Normal",
  34248. image: {
  34249. source: "./media/characters/moonlight-rose/normal.svg",
  34250. extra: 1979/1835,
  34251. bottom: 14/1993
  34252. }
  34253. },
  34254. demon: {
  34255. height: math.unit(5, "km"),
  34256. name: "Demon",
  34257. image: {
  34258. source: "./media/characters/moonlight-rose/demon.svg",
  34259. extra: 986/916,
  34260. bottom: 28/1014
  34261. }
  34262. },
  34263. },
  34264. [
  34265. {
  34266. name: "\"Natural\" height",
  34267. height: math.unit(5 + 11/12, "feet")
  34268. },
  34269. {
  34270. name: "Comfortable Size",
  34271. height: math.unit(40, "meters")
  34272. },
  34273. {
  34274. name: "Common Size",
  34275. height: math.unit(50, "km"),
  34276. default: true
  34277. },
  34278. {
  34279. name: "Demonic",
  34280. height: math.unit(1.24415e+21, "meters")
  34281. },
  34282. ]
  34283. ))
  34284. characterMakers.push(() => makeCharacter(
  34285. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34286. {
  34287. front: {
  34288. height: math.unit(16, "feet"),
  34289. weight: math.unit(610, "kg"),
  34290. name: "Front",
  34291. image: {
  34292. source: "./media/characters/huckle/front.svg",
  34293. extra: 1731/1625,
  34294. bottom: 33/1764
  34295. }
  34296. },
  34297. back: {
  34298. height: math.unit(16, "feet"),
  34299. weight: math.unit(610, "kg"),
  34300. name: "Back",
  34301. image: {
  34302. source: "./media/characters/huckle/back.svg",
  34303. extra: 1738/1651,
  34304. bottom: 37/1775
  34305. }
  34306. },
  34307. laughing: {
  34308. height: math.unit(3.75, "feet"),
  34309. name: "Laughing",
  34310. image: {
  34311. source: "./media/characters/huckle/laughing.svg"
  34312. }
  34313. },
  34314. angry: {
  34315. height: math.unit(4.15, "feet"),
  34316. name: "Angry",
  34317. image: {
  34318. source: "./media/characters/huckle/angry.svg"
  34319. }
  34320. },
  34321. },
  34322. [
  34323. {
  34324. name: "Normal",
  34325. height: math.unit(16, "feet"),
  34326. default: true
  34327. },
  34328. {
  34329. name: "Mini Macro",
  34330. height: math.unit(463, "feet")
  34331. },
  34332. {
  34333. name: "Macro",
  34334. height: math.unit(1680, "meters")
  34335. },
  34336. {
  34337. name: "Mega Macro",
  34338. height: math.unit(175, "km")
  34339. },
  34340. {
  34341. name: "Terra Macro",
  34342. height: math.unit(32, "gigameters")
  34343. },
  34344. {
  34345. name: "Multiverse+",
  34346. height: math.unit(2.56e23, "yottameters")
  34347. },
  34348. ]
  34349. ))
  34350. characterMakers.push(() => makeCharacter(
  34351. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34352. {
  34353. front: {
  34354. height: math.unit(6 + 9/12, "feet"),
  34355. weight: math.unit(280, "lb"),
  34356. name: "Front",
  34357. image: {
  34358. source: "./media/characters/candy/front.svg",
  34359. extra: 234/217,
  34360. bottom: 11/245
  34361. }
  34362. },
  34363. },
  34364. [
  34365. {
  34366. name: "Really Small",
  34367. height: math.unit(0.1, "nm")
  34368. },
  34369. {
  34370. name: "Micro",
  34371. height: math.unit(2, "inches")
  34372. },
  34373. {
  34374. name: "Normal",
  34375. height: math.unit(6 + 9/12, "feet"),
  34376. default: true
  34377. },
  34378. {
  34379. name: "Small Macro",
  34380. height: math.unit(69, "feet")
  34381. },
  34382. {
  34383. name: "Macro",
  34384. height: math.unit(160, "feet")
  34385. },
  34386. {
  34387. name: "Megamacro",
  34388. height: math.unit(22000, "miles")
  34389. },
  34390. {
  34391. name: "Gigamacro",
  34392. height: math.unit(50000, "miles")
  34393. },
  34394. ]
  34395. ))
  34396. characterMakers.push(() => makeCharacter(
  34397. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34398. {
  34399. front: {
  34400. height: math.unit(4, "feet"),
  34401. weight: math.unit(90, "lb"),
  34402. name: "Front",
  34403. image: {
  34404. source: "./media/characters/joey-mcdonald/front.svg",
  34405. extra: 1059/852,
  34406. bottom: 33/1092
  34407. }
  34408. },
  34409. back: {
  34410. height: math.unit(4, "feet"),
  34411. weight: math.unit(90, "lb"),
  34412. name: "Back",
  34413. image: {
  34414. source: "./media/characters/joey-mcdonald/back.svg",
  34415. extra: 1077/879,
  34416. bottom: 5/1082
  34417. }
  34418. },
  34419. },
  34420. [
  34421. {
  34422. name: "Normal",
  34423. height: math.unit(4, "feet"),
  34424. default: true
  34425. },
  34426. ]
  34427. ))
  34428. characterMakers.push(() => makeCharacter(
  34429. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34430. {
  34431. front: {
  34432. height: math.unit(12 + 6/12, "feet"),
  34433. name: "Front",
  34434. image: {
  34435. source: "./media/characters/kass-lockheed/front.svg",
  34436. extra: 354/343,
  34437. bottom: 9/363
  34438. }
  34439. },
  34440. back: {
  34441. height: math.unit(12 + 6/12, "feet"),
  34442. name: "Back",
  34443. image: {
  34444. source: "./media/characters/kass-lockheed/back.svg",
  34445. extra: 364/352,
  34446. bottom: 3/367
  34447. }
  34448. },
  34449. dick: {
  34450. height: math.unit(3.12, "feet"),
  34451. name: "Dick",
  34452. image: {
  34453. source: "./media/characters/kass-lockheed/dick.svg"
  34454. }
  34455. },
  34456. head: {
  34457. height: math.unit(2.6, "feet"),
  34458. name: "Head",
  34459. image: {
  34460. source: "./media/characters/kass-lockheed/head.svg"
  34461. }
  34462. },
  34463. bleh: {
  34464. height: math.unit(2.85, "feet"),
  34465. name: "Bleh",
  34466. image: {
  34467. source: "./media/characters/kass-lockheed/bleh.svg"
  34468. }
  34469. },
  34470. smug: {
  34471. height: math.unit(2.85, "feet"),
  34472. name: "Smug",
  34473. image: {
  34474. source: "./media/characters/kass-lockheed/smug.svg"
  34475. }
  34476. },
  34477. },
  34478. [
  34479. {
  34480. name: "Normal",
  34481. height: math.unit(12 + 6/12, "feet"),
  34482. default: true
  34483. },
  34484. ]
  34485. ))
  34486. characterMakers.push(() => makeCharacter(
  34487. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34488. {
  34489. front: {
  34490. height: math.unit(6 + 2/12, "feet"),
  34491. name: "Front",
  34492. image: {
  34493. source: "./media/characters/taylor/front.svg",
  34494. extra: 639/495,
  34495. bottom: 12/651
  34496. }
  34497. },
  34498. },
  34499. [
  34500. {
  34501. name: "Normal",
  34502. height: math.unit(6 + 2/12, "feet"),
  34503. default: true
  34504. },
  34505. {
  34506. name: "Big",
  34507. height: math.unit(15, "feet")
  34508. },
  34509. {
  34510. name: "Lorg",
  34511. height: math.unit(80, "feet")
  34512. },
  34513. {
  34514. name: "Too Lorg",
  34515. height: math.unit(120, "feet")
  34516. },
  34517. ]
  34518. ))
  34519. characterMakers.push(() => makeCharacter(
  34520. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34521. {
  34522. front: {
  34523. height: math.unit(15, "feet"),
  34524. name: "Front",
  34525. image: {
  34526. source: "./media/characters/kaizer/front.svg",
  34527. extra: 1612/1436,
  34528. bottom: 43/1655
  34529. }
  34530. },
  34531. },
  34532. [
  34533. {
  34534. name: "Normal",
  34535. height: math.unit(15, "feet"),
  34536. default: true
  34537. },
  34538. ]
  34539. ))
  34540. characterMakers.push(() => makeCharacter(
  34541. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34542. {
  34543. front: {
  34544. height: math.unit(2, "feet"),
  34545. weight: math.unit(30, "lb"),
  34546. name: "Front",
  34547. image: {
  34548. source: "./media/characters/sandy/front.svg",
  34549. extra: 1439/1307,
  34550. bottom: 194/1633
  34551. }
  34552. },
  34553. },
  34554. [
  34555. {
  34556. name: "Normal",
  34557. height: math.unit(2, "feet"),
  34558. default: true
  34559. },
  34560. ]
  34561. ))
  34562. characterMakers.push(() => makeCharacter(
  34563. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34564. {
  34565. front: {
  34566. height: math.unit(3, "feet"),
  34567. name: "Front",
  34568. image: {
  34569. source: "./media/characters/mellvi/front.svg",
  34570. extra: 1831/1630,
  34571. bottom: 58/1889
  34572. }
  34573. },
  34574. },
  34575. [
  34576. {
  34577. name: "Normal",
  34578. height: math.unit(3, "feet"),
  34579. default: true
  34580. },
  34581. ]
  34582. ))
  34583. characterMakers.push(() => makeCharacter(
  34584. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34585. {
  34586. front: {
  34587. height: math.unit(5 + 11/12, "feet"),
  34588. weight: math.unit(200, "lb"),
  34589. name: "Front",
  34590. image: {
  34591. source: "./media/characters/shirou/front.svg",
  34592. extra: 2491/2383,
  34593. bottom: 189/2680
  34594. }
  34595. },
  34596. back: {
  34597. height: math.unit(5 + 11/12, "feet"),
  34598. weight: math.unit(200, "lb"),
  34599. name: "Back",
  34600. image: {
  34601. source: "./media/characters/shirou/back.svg",
  34602. extra: 2554/2450,
  34603. bottom: 76/2630
  34604. }
  34605. },
  34606. },
  34607. [
  34608. {
  34609. name: "Normal",
  34610. height: math.unit(5 + 11/12, "feet"),
  34611. default: true
  34612. },
  34613. ]
  34614. ))
  34615. characterMakers.push(() => makeCharacter(
  34616. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34617. {
  34618. front: {
  34619. height: math.unit(6 + 3/12, "feet"),
  34620. weight: math.unit(177, "lb"),
  34621. name: "Front",
  34622. image: {
  34623. source: "./media/characters/noryu/front.svg",
  34624. extra: 973/885,
  34625. bottom: 10/983
  34626. }
  34627. },
  34628. },
  34629. [
  34630. {
  34631. name: "Normal",
  34632. height: math.unit(6 + 3/12, "feet"),
  34633. default: true
  34634. },
  34635. ]
  34636. ))
  34637. characterMakers.push(() => makeCharacter(
  34638. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34639. {
  34640. front: {
  34641. height: math.unit(5 + 6/12, "feet"),
  34642. weight: math.unit(170, "lb"),
  34643. name: "Front",
  34644. image: {
  34645. source: "./media/characters/mevolas-rubenido/front.svg",
  34646. extra: 2109/1901,
  34647. bottom: 96/2205
  34648. }
  34649. },
  34650. },
  34651. [
  34652. {
  34653. name: "Normal",
  34654. height: math.unit(5 + 6/12, "feet"),
  34655. default: true
  34656. },
  34657. ]
  34658. ))
  34659. characterMakers.push(() => makeCharacter(
  34660. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34661. {
  34662. front: {
  34663. height: math.unit(100, "feet"),
  34664. name: "Front",
  34665. image: {
  34666. source: "./media/characters/dee/front.svg",
  34667. extra: 2153/2036,
  34668. bottom: 59/2212
  34669. }
  34670. },
  34671. back: {
  34672. height: math.unit(100, "feet"),
  34673. name: "Back",
  34674. image: {
  34675. source: "./media/characters/dee/back.svg",
  34676. extra: 2183/2058,
  34677. bottom: 75/2258
  34678. }
  34679. },
  34680. foot: {
  34681. height: math.unit(19.43, "feet"),
  34682. name: "Foot",
  34683. image: {
  34684. source: "./media/characters/dee/foot.svg"
  34685. }
  34686. },
  34687. hoof: {
  34688. height: math.unit(20.6, "feet"),
  34689. name: "Hoof",
  34690. image: {
  34691. source: "./media/characters/dee/hoof.svg"
  34692. }
  34693. },
  34694. },
  34695. [
  34696. {
  34697. name: "Macro",
  34698. height: math.unit(100, "feet"),
  34699. default: true
  34700. },
  34701. ]
  34702. ))
  34703. characterMakers.push(() => makeCharacter(
  34704. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34705. {
  34706. front: {
  34707. height: math.unit(5 + 6/12, "feet"),
  34708. name: "Front",
  34709. image: {
  34710. source: "./media/characters/teh/front.svg",
  34711. extra: 1002/847,
  34712. bottom: 62/1064
  34713. }
  34714. },
  34715. },
  34716. [
  34717. {
  34718. name: "Normal",
  34719. height: math.unit(5 + 6/12, "feet"),
  34720. default: true
  34721. },
  34722. ]
  34723. ))
  34724. characterMakers.push(() => makeCharacter(
  34725. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34726. {
  34727. side: {
  34728. height: math.unit(6 + 1/12, "feet"),
  34729. weight: math.unit(204, "lb"),
  34730. name: "Side",
  34731. image: {
  34732. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34733. extra: 974/775,
  34734. bottom: 169/1143
  34735. }
  34736. },
  34737. sitting: {
  34738. height: math.unit(6 + 2/12, "feet"),
  34739. weight: math.unit(204, "lb"),
  34740. name: "Sitting",
  34741. image: {
  34742. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34743. extra: 1175/964,
  34744. bottom: 378/1553
  34745. }
  34746. },
  34747. },
  34748. [
  34749. {
  34750. name: "Normal",
  34751. height: math.unit(6 + 1/12, "feet"),
  34752. default: true
  34753. },
  34754. ]
  34755. ))
  34756. characterMakers.push(() => makeCharacter(
  34757. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34758. {
  34759. front: {
  34760. height: math.unit(6, "inches"),
  34761. name: "Front",
  34762. image: {
  34763. source: "./media/characters/tululi/front.svg",
  34764. extra: 1997/1876,
  34765. bottom: 20/2017
  34766. }
  34767. },
  34768. },
  34769. [
  34770. {
  34771. name: "Normal",
  34772. height: math.unit(6, "inches"),
  34773. default: true
  34774. },
  34775. ]
  34776. ))
  34777. characterMakers.push(() => makeCharacter(
  34778. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34779. {
  34780. front: {
  34781. height: math.unit(4 + 1/12, "feet"),
  34782. name: "Front",
  34783. image: {
  34784. source: "./media/characters/star/front.svg",
  34785. extra: 1493/1189,
  34786. bottom: 48/1541
  34787. }
  34788. },
  34789. },
  34790. [
  34791. {
  34792. name: "Normal",
  34793. height: math.unit(4 + 1/12, "feet"),
  34794. default: true
  34795. },
  34796. ]
  34797. ))
  34798. characterMakers.push(() => makeCharacter(
  34799. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34800. {
  34801. front: {
  34802. height: math.unit(6 + 3/12, "feet"),
  34803. name: "Front",
  34804. image: {
  34805. source: "./media/characters/comet/front.svg",
  34806. extra: 1681/1462,
  34807. bottom: 26/1707
  34808. }
  34809. },
  34810. },
  34811. [
  34812. {
  34813. name: "Normal",
  34814. height: math.unit(6 + 3/12, "feet"),
  34815. default: true
  34816. },
  34817. ]
  34818. ))
  34819. characterMakers.push(() => makeCharacter(
  34820. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34821. {
  34822. front: {
  34823. height: math.unit(950, "feet"),
  34824. name: "Front",
  34825. image: {
  34826. source: "./media/characters/vortex/front.svg",
  34827. extra: 1497/1434,
  34828. bottom: 56/1553
  34829. }
  34830. },
  34831. maw: {
  34832. height: math.unit(285, "feet"),
  34833. name: "Maw",
  34834. image: {
  34835. source: "./media/characters/vortex/maw.svg"
  34836. }
  34837. },
  34838. },
  34839. [
  34840. {
  34841. name: "Macro",
  34842. height: math.unit(950, "feet"),
  34843. default: true
  34844. },
  34845. ]
  34846. ))
  34847. characterMakers.push(() => makeCharacter(
  34848. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34849. {
  34850. front: {
  34851. height: math.unit(600, "feet"),
  34852. weight: math.unit(0.02, "grams"),
  34853. name: "Front",
  34854. image: {
  34855. source: "./media/characters/doodle/front.svg",
  34856. extra: 1578/1413,
  34857. bottom: 37/1615
  34858. }
  34859. },
  34860. },
  34861. [
  34862. {
  34863. name: "Macro",
  34864. height: math.unit(600, "feet"),
  34865. default: true
  34866. },
  34867. ]
  34868. ))
  34869. characterMakers.push(() => makeCharacter(
  34870. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34871. {
  34872. front: {
  34873. height: math.unit(6 + 6/12, "feet"),
  34874. name: "Front",
  34875. image: {
  34876. source: "./media/characters/jai/front.svg",
  34877. extra: 1645/1534,
  34878. bottom: 115/1760
  34879. }
  34880. },
  34881. },
  34882. [
  34883. {
  34884. name: "Normal",
  34885. height: math.unit(6 + 6/12, "feet"),
  34886. default: true
  34887. },
  34888. ]
  34889. ))
  34890. characterMakers.push(() => makeCharacter(
  34891. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34892. {
  34893. front: {
  34894. height: math.unit(6 + 8/12, "feet"),
  34895. name: "Front",
  34896. image: {
  34897. source: "./media/characters/pixel/front.svg",
  34898. extra: 1900/1735,
  34899. bottom: 63/1963
  34900. }
  34901. },
  34902. },
  34903. [
  34904. {
  34905. name: "Normal",
  34906. height: math.unit(6 + 8/12, "feet"),
  34907. default: true
  34908. },
  34909. ]
  34910. ))
  34911. characterMakers.push(() => makeCharacter(
  34912. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34913. {
  34914. front: {
  34915. height: math.unit(4 + 11/12, "feet"),
  34916. weight: math.unit(111, "lb"),
  34917. name: "Front",
  34918. image: {
  34919. source: "./media/characters/rhett/front.svg",
  34920. extra: 1682/1586,
  34921. bottom: 92/1774
  34922. }
  34923. },
  34924. },
  34925. [
  34926. {
  34927. name: "Mini",
  34928. height: math.unit(1 + 1/12, "feet")
  34929. },
  34930. {
  34931. name: "Normal",
  34932. height: math.unit(4 + 11/12, "feet"),
  34933. default: true
  34934. },
  34935. ]
  34936. ))
  34937. characterMakers.push(() => makeCharacter(
  34938. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34939. {
  34940. front: {
  34941. height: math.unit(3 + 3/12, "feet"),
  34942. name: "Front",
  34943. image: {
  34944. source: "./media/characters/penny/front.svg",
  34945. extra: 1406/1311,
  34946. bottom: 26/1432
  34947. }
  34948. },
  34949. },
  34950. [
  34951. {
  34952. name: "Normal",
  34953. height: math.unit(3 + 3/12, "feet"),
  34954. default: true
  34955. },
  34956. ]
  34957. ))
  34958. characterMakers.push(() => makeCharacter(
  34959. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34960. {
  34961. front: {
  34962. height: math.unit(4 + 11/12, "feet"),
  34963. name: "Front",
  34964. image: {
  34965. source: "./media/characters/monty/front.svg",
  34966. extra: 1479/1209,
  34967. bottom: 0/1479
  34968. }
  34969. },
  34970. },
  34971. [
  34972. {
  34973. name: "Normal",
  34974. height: math.unit(4 + 11/12, "feet"),
  34975. default: true
  34976. },
  34977. ]
  34978. ))
  34979. characterMakers.push(() => makeCharacter(
  34980. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34981. {
  34982. front: {
  34983. height: math.unit(8 + 4/12, "feet"),
  34984. name: "Front",
  34985. image: {
  34986. source: "./media/characters/sterling/front.svg",
  34987. extra: 1420/1236,
  34988. bottom: 27/1447
  34989. }
  34990. },
  34991. },
  34992. [
  34993. {
  34994. name: "Normal",
  34995. height: math.unit(8 + 4/12, "feet"),
  34996. default: true
  34997. },
  34998. ]
  34999. ))
  35000. characterMakers.push(() => makeCharacter(
  35001. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35002. {
  35003. front: {
  35004. height: math.unit(15, "feet"),
  35005. name: "Front",
  35006. image: {
  35007. source: "./media/characters/marble/front.svg",
  35008. extra: 973/937,
  35009. bottom: 32/1005
  35010. }
  35011. },
  35012. },
  35013. [
  35014. {
  35015. name: "Normal",
  35016. height: math.unit(15, "feet"),
  35017. default: true
  35018. },
  35019. ]
  35020. ))
  35021. characterMakers.push(() => makeCharacter(
  35022. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35023. {
  35024. front: {
  35025. height: math.unit(3, "inches"),
  35026. name: "Front",
  35027. image: {
  35028. source: "./media/characters/powder/front.svg",
  35029. extra: 1504/1334,
  35030. bottom: 518/2022
  35031. }
  35032. },
  35033. },
  35034. [
  35035. {
  35036. name: "Normal",
  35037. height: math.unit(3, "inches"),
  35038. default: true
  35039. },
  35040. ]
  35041. ))
  35042. characterMakers.push(() => makeCharacter(
  35043. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35044. {
  35045. front: {
  35046. height: math.unit(4 + 5/12, "feet"),
  35047. name: "Front",
  35048. image: {
  35049. source: "./media/characters/joey-raccoon/front.svg",
  35050. extra: 1273/1197,
  35051. bottom: 0/1273
  35052. }
  35053. },
  35054. },
  35055. [
  35056. {
  35057. name: "Normal",
  35058. height: math.unit(4 + 5/12, "feet"),
  35059. default: true
  35060. },
  35061. ]
  35062. ))
  35063. characterMakers.push(() => makeCharacter(
  35064. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35065. {
  35066. front: {
  35067. height: math.unit(8 + 4/12, "feet"),
  35068. name: "Front",
  35069. image: {
  35070. source: "./media/characters/vick/front.svg",
  35071. extra: 2187/2118,
  35072. bottom: 47/2234
  35073. }
  35074. },
  35075. },
  35076. [
  35077. {
  35078. name: "Normal",
  35079. height: math.unit(8 + 4/12, "feet"),
  35080. default: true
  35081. },
  35082. ]
  35083. ))
  35084. characterMakers.push(() => makeCharacter(
  35085. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35086. {
  35087. front: {
  35088. height: math.unit(5 + 5/12, "feet"),
  35089. name: "Front",
  35090. image: {
  35091. source: "./media/characters/mitsy/front.svg",
  35092. extra: 1842/1695,
  35093. bottom: 0/1842
  35094. }
  35095. },
  35096. },
  35097. [
  35098. {
  35099. name: "Normal",
  35100. height: math.unit(5 + 5/12, "feet"),
  35101. default: true
  35102. },
  35103. ]
  35104. ))
  35105. characterMakers.push(() => makeCharacter(
  35106. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35107. {
  35108. front: {
  35109. height: math.unit(6 + 3/12, "feet"),
  35110. name: "Front",
  35111. image: {
  35112. source: "./media/characters/silvy/front.svg",
  35113. extra: 1995/1836,
  35114. bottom: 225/2220
  35115. }
  35116. },
  35117. },
  35118. [
  35119. {
  35120. name: "Normal",
  35121. height: math.unit(6 + 3/12, "feet"),
  35122. default: true
  35123. },
  35124. ]
  35125. ))
  35126. characterMakers.push(() => makeCharacter(
  35127. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35128. {
  35129. front: {
  35130. height: math.unit(3 + 8/12, "feet"),
  35131. name: "Front",
  35132. image: {
  35133. source: "./media/characters/rodney/front.svg",
  35134. extra: 1956/1747,
  35135. bottom: 31/1987
  35136. }
  35137. },
  35138. frontDressed: {
  35139. height: math.unit(2.9, "feet"),
  35140. name: "Front (Dressed)",
  35141. image: {
  35142. source: "./media/characters/rodney/front-dressed.svg",
  35143. extra: 1382/1241,
  35144. bottom: 385/1767
  35145. }
  35146. },
  35147. },
  35148. [
  35149. {
  35150. name: "Normal",
  35151. height: math.unit(3 + 8/12, "feet"),
  35152. default: true
  35153. },
  35154. ]
  35155. ))
  35156. characterMakers.push(() => makeCharacter(
  35157. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35158. {
  35159. front: {
  35160. height: math.unit(5 + 9/12, "feet"),
  35161. weight: math.unit(194, "lbs"),
  35162. name: "Front",
  35163. image: {
  35164. source: "./media/characters/zakail-sudekai/front.svg",
  35165. extra: 2696/2533,
  35166. bottom: 248/2944
  35167. }
  35168. },
  35169. maw: {
  35170. height: math.unit(1.35, "feet"),
  35171. name: "Maw",
  35172. image: {
  35173. source: "./media/characters/zakail-sudekai/maw.svg"
  35174. }
  35175. },
  35176. },
  35177. [
  35178. {
  35179. name: "Normal",
  35180. height: math.unit(5 + 9/12, "feet"),
  35181. default: true
  35182. },
  35183. ]
  35184. ))
  35185. characterMakers.push(() => makeCharacter(
  35186. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35187. {
  35188. front: {
  35189. height: math.unit(8 + 4/12, "feet"),
  35190. weight: math.unit(1200, "lb"),
  35191. name: "Front",
  35192. image: {
  35193. source: "./media/characters/eleanor/front.svg",
  35194. extra: 1226/1192,
  35195. bottom: 52/1278
  35196. }
  35197. },
  35198. back: {
  35199. height: math.unit(8 + 4/12, "feet"),
  35200. weight: math.unit(1200, "lb"),
  35201. name: "Back",
  35202. image: {
  35203. source: "./media/characters/eleanor/back.svg",
  35204. extra: 1242/1184,
  35205. bottom: 60/1302
  35206. }
  35207. },
  35208. head: {
  35209. height: math.unit(2.62, "feet"),
  35210. name: "Head",
  35211. image: {
  35212. source: "./media/characters/eleanor/head.svg"
  35213. }
  35214. },
  35215. },
  35216. [
  35217. {
  35218. name: "Normal",
  35219. height: math.unit(8 + 4/12, "feet"),
  35220. default: true
  35221. },
  35222. ]
  35223. ))
  35224. characterMakers.push(() => makeCharacter(
  35225. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35226. {
  35227. front: {
  35228. height: math.unit(8 + 4/12, "feet"),
  35229. weight: math.unit(750, "lb"),
  35230. name: "Front",
  35231. image: {
  35232. source: "./media/characters/tanya/front.svg",
  35233. extra: 1749/1615,
  35234. bottom: 33/1782
  35235. }
  35236. },
  35237. },
  35238. [
  35239. {
  35240. name: "Normal",
  35241. height: math.unit(8 + 4/12, "feet"),
  35242. default: true
  35243. },
  35244. ]
  35245. ))
  35246. characterMakers.push(() => makeCharacter(
  35247. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35248. {
  35249. front: {
  35250. height: math.unit(5, "feet"),
  35251. weight: math.unit(225, "lb"),
  35252. name: "Front",
  35253. image: {
  35254. source: "./media/characters/cindy/front.svg",
  35255. extra: 1320/1250,
  35256. bottom: 42/1362
  35257. }
  35258. },
  35259. frontDressed: {
  35260. height: math.unit(5, "feet"),
  35261. weight: math.unit(225, "lb"),
  35262. name: "Front (Dressed)",
  35263. image: {
  35264. source: "./media/characters/cindy/front-dressed.svg",
  35265. extra: 1320/1250,
  35266. bottom: 42/1362
  35267. }
  35268. },
  35269. back: {
  35270. height: math.unit(5, "feet"),
  35271. weight: math.unit(225, "lb"),
  35272. name: "Back",
  35273. image: {
  35274. source: "./media/characters/cindy/back.svg",
  35275. extra: 1384/1346,
  35276. bottom: 14/1398
  35277. }
  35278. },
  35279. },
  35280. [
  35281. {
  35282. name: "Normal",
  35283. height: math.unit(5, "feet"),
  35284. default: true
  35285. },
  35286. ]
  35287. ))
  35288. characterMakers.push(() => makeCharacter(
  35289. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35290. {
  35291. front: {
  35292. height: math.unit(6 + 9/12, "feet"),
  35293. weight: math.unit(440, "lb"),
  35294. name: "Front",
  35295. image: {
  35296. source: "./media/characters/wilbur-owen/front.svg",
  35297. extra: 1575/1448,
  35298. bottom: 72/1647
  35299. }
  35300. },
  35301. back: {
  35302. height: math.unit(6 + 9/12, "feet"),
  35303. weight: math.unit(440, "lb"),
  35304. name: "Back",
  35305. image: {
  35306. source: "./media/characters/wilbur-owen/back.svg",
  35307. extra: 1578/1445,
  35308. bottom: 36/1614
  35309. }
  35310. },
  35311. },
  35312. [
  35313. {
  35314. name: "Normal",
  35315. height: math.unit(6 + 9/12, "feet"),
  35316. default: true
  35317. },
  35318. ]
  35319. ))
  35320. characterMakers.push(() => makeCharacter(
  35321. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35322. {
  35323. front: {
  35324. height: math.unit(6 + 5/12, "feet"),
  35325. weight: math.unit(650, "lb"),
  35326. name: "Front",
  35327. image: {
  35328. source: "./media/characters/keegan/front.svg",
  35329. extra: 2387/2198,
  35330. bottom: 33/2420
  35331. }
  35332. },
  35333. side: {
  35334. height: math.unit(6 + 5/12, "feet"),
  35335. weight: math.unit(650, "lb"),
  35336. name: "Side",
  35337. image: {
  35338. source: "./media/characters/keegan/side.svg",
  35339. extra: 2390/2202,
  35340. bottom: 47/2437
  35341. }
  35342. },
  35343. back: {
  35344. height: math.unit(6 + 5/12, "feet"),
  35345. weight: math.unit(650, "lb"),
  35346. name: "Back",
  35347. image: {
  35348. source: "./media/characters/keegan/back.svg",
  35349. extra: 2418/2268,
  35350. bottom: 15/2433
  35351. }
  35352. },
  35353. frontSfw: {
  35354. height: math.unit(6 + 5/12, "feet"),
  35355. weight: math.unit(650, "lb"),
  35356. name: "Front (SFW)",
  35357. image: {
  35358. source: "./media/characters/keegan/front-sfw.svg",
  35359. extra: 2387/2198,
  35360. bottom: 33/2420
  35361. }
  35362. },
  35363. beans: {
  35364. height: math.unit(1.85, "feet"),
  35365. name: "Beans",
  35366. image: {
  35367. source: "./media/characters/keegan/beans.svg"
  35368. }
  35369. },
  35370. },
  35371. [
  35372. {
  35373. name: "Normal",
  35374. height: math.unit(6 + 5/12, "feet"),
  35375. default: true
  35376. },
  35377. ]
  35378. ))
  35379. characterMakers.push(() => makeCharacter(
  35380. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35381. {
  35382. front: {
  35383. height: math.unit(9, "feet"),
  35384. name: "Front",
  35385. image: {
  35386. source: "./media/characters/colton/front.svg",
  35387. extra: 1589/1326,
  35388. bottom: 139/1728
  35389. }
  35390. },
  35391. },
  35392. [
  35393. {
  35394. name: "Normal",
  35395. height: math.unit(9, "feet"),
  35396. default: true
  35397. },
  35398. ]
  35399. ))
  35400. characterMakers.push(() => makeCharacter(
  35401. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35402. {
  35403. front: {
  35404. height: math.unit(2 + 9/12, "feet"),
  35405. name: "Front",
  35406. image: {
  35407. source: "./media/characters/bora/front.svg",
  35408. extra: 1265/1250,
  35409. bottom: 24/1289
  35410. }
  35411. },
  35412. },
  35413. [
  35414. {
  35415. name: "Normal",
  35416. height: math.unit(2 + 9/12, "feet"),
  35417. default: true
  35418. },
  35419. ]
  35420. ))
  35421. characterMakers.push(() => makeCharacter(
  35422. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35423. {
  35424. front: {
  35425. height: math.unit(8, "feet"),
  35426. name: "Front",
  35427. image: {
  35428. source: "./media/characters/myu-myu/front.svg",
  35429. extra: 1949/1857,
  35430. bottom: 90/2039
  35431. }
  35432. },
  35433. },
  35434. [
  35435. {
  35436. name: "Normal",
  35437. height: math.unit(8, "feet"),
  35438. default: true
  35439. },
  35440. {
  35441. name: "Big",
  35442. height: math.unit(15, "feet")
  35443. },
  35444. {
  35445. name: "BIG",
  35446. height: math.unit(25, "feet")
  35447. },
  35448. ]
  35449. ))
  35450. characterMakers.push(() => makeCharacter(
  35451. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35452. {
  35453. side: {
  35454. height: math.unit(7 + 5/12, "feet"),
  35455. weight: math.unit(2800, "lb"),
  35456. name: "Side",
  35457. image: {
  35458. source: "./media/characters/haloren/side.svg",
  35459. extra: 1793/409,
  35460. bottom: 59/1852
  35461. }
  35462. },
  35463. frontPaw: {
  35464. height: math.unit(2.36, "feet"),
  35465. name: "Front paw",
  35466. image: {
  35467. source: "./media/characters/haloren/front-paw.svg"
  35468. }
  35469. },
  35470. hindPaw: {
  35471. height: math.unit(3.18, "feet"),
  35472. name: "Hind paw",
  35473. image: {
  35474. source: "./media/characters/haloren/hind-paw.svg"
  35475. }
  35476. },
  35477. maw: {
  35478. height: math.unit(5.05, "feet"),
  35479. name: "Maw",
  35480. image: {
  35481. source: "./media/characters/haloren/maw.svg"
  35482. }
  35483. },
  35484. dick: {
  35485. height: math.unit(2.90, "feet"),
  35486. name: "Dick",
  35487. image: {
  35488. source: "./media/characters/haloren/dick.svg"
  35489. }
  35490. },
  35491. },
  35492. [
  35493. {
  35494. name: "Normal",
  35495. height: math.unit(7 + 5/12, "feet"),
  35496. default: true
  35497. },
  35498. {
  35499. name: "Enhanced",
  35500. height: math.unit(14 + 3/12, "feet")
  35501. },
  35502. ]
  35503. ))
  35504. characterMakers.push(() => makeCharacter(
  35505. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35506. {
  35507. front: {
  35508. height: math.unit(171, "cm"),
  35509. name: "Front",
  35510. image: {
  35511. source: "./media/characters/kimmy/front.svg",
  35512. extra: 1491/1435,
  35513. bottom: 53/1544
  35514. }
  35515. },
  35516. },
  35517. [
  35518. {
  35519. name: "Small",
  35520. height: math.unit(9, "cm")
  35521. },
  35522. {
  35523. name: "Normal",
  35524. height: math.unit(171, "cm"),
  35525. default: true
  35526. },
  35527. ]
  35528. ))
  35529. characterMakers.push(() => makeCharacter(
  35530. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35531. {
  35532. front: {
  35533. height: math.unit(8, "feet"),
  35534. weight: math.unit(300, "lb"),
  35535. name: "Front",
  35536. image: {
  35537. source: "./media/characters/galeboomer/front.svg",
  35538. extra: 4651/4415,
  35539. bottom: 162/4813
  35540. }
  35541. },
  35542. back: {
  35543. height: math.unit(8, "feet"),
  35544. weight: math.unit(300, "lb"),
  35545. name: "Back",
  35546. image: {
  35547. source: "./media/characters/galeboomer/back.svg",
  35548. extra: 4544/4314,
  35549. bottom: 16/4560
  35550. }
  35551. },
  35552. frontAlt: {
  35553. height: math.unit(8, "feet"),
  35554. weight: math.unit(300, "lb"),
  35555. name: "Front (Alt)",
  35556. image: {
  35557. source: "./media/characters/galeboomer/front-alt.svg",
  35558. extra: 4458/4228,
  35559. bottom: 68/4526
  35560. }
  35561. },
  35562. maw: {
  35563. height: math.unit(1.2, "feet"),
  35564. name: "Maw",
  35565. image: {
  35566. source: "./media/characters/galeboomer/maw.svg"
  35567. }
  35568. },
  35569. },
  35570. [
  35571. {
  35572. name: "Normal",
  35573. height: math.unit(8, "feet"),
  35574. default: true
  35575. },
  35576. ]
  35577. ))
  35578. characterMakers.push(() => makeCharacter(
  35579. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35580. {
  35581. front: {
  35582. height: math.unit(5 + 9/12, "feet"),
  35583. weight: math.unit(120, "lb"),
  35584. name: "Front",
  35585. image: {
  35586. source: "./media/characters/chyr/front.svg",
  35587. extra: 1323/1254,
  35588. bottom: 63/1386
  35589. }
  35590. },
  35591. back: {
  35592. height: math.unit(5 + 9/12, "feet"),
  35593. weight: math.unit(120, "lb"),
  35594. name: "Back",
  35595. image: {
  35596. source: "./media/characters/chyr/back.svg",
  35597. extra: 1323/1252,
  35598. bottom: 48/1371
  35599. }
  35600. },
  35601. },
  35602. [
  35603. {
  35604. name: "Normal",
  35605. height: math.unit(5 + 9/12, "feet"),
  35606. default: true
  35607. },
  35608. ]
  35609. ))
  35610. characterMakers.push(() => makeCharacter(
  35611. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35612. {
  35613. front: {
  35614. height: math.unit(7, "feet"),
  35615. weight: math.unit(310, "lb"),
  35616. name: "Front",
  35617. image: {
  35618. source: "./media/characters/solarus/front.svg",
  35619. extra: 2415/2021,
  35620. bottom: 103/2518
  35621. }
  35622. },
  35623. back: {
  35624. height: math.unit(7, "feet"),
  35625. weight: math.unit(310, "lb"),
  35626. name: "Back",
  35627. image: {
  35628. source: "./media/characters/solarus/back.svg",
  35629. extra: 2463/2089,
  35630. bottom: 79/2542
  35631. }
  35632. },
  35633. },
  35634. [
  35635. {
  35636. name: "Normal",
  35637. height: math.unit(7, "feet"),
  35638. default: true
  35639. },
  35640. ]
  35641. ))
  35642. characterMakers.push(() => makeCharacter(
  35643. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35644. {
  35645. front: {
  35646. height: math.unit(16, "feet"),
  35647. name: "Front",
  35648. image: {
  35649. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35650. extra: 1844/1780,
  35651. bottom: 58/1902
  35652. }
  35653. },
  35654. },
  35655. [
  35656. {
  35657. name: "Normal",
  35658. height: math.unit(16, "feet"),
  35659. default: true
  35660. },
  35661. ]
  35662. ))
  35663. characterMakers.push(() => makeCharacter(
  35664. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35665. {
  35666. front: {
  35667. height: math.unit(11 + 6/12, "feet"),
  35668. weight: math.unit(1366, "lb"),
  35669. name: "Front",
  35670. image: {
  35671. source: "./media/characters/lexor/front.svg",
  35672. extra: 1560/1481,
  35673. bottom: 211/1771
  35674. }
  35675. },
  35676. back: {
  35677. height: math.unit(11 + 6/12, "feet"),
  35678. weight: math.unit(1366, "lb"),
  35679. name: "Back",
  35680. image: {
  35681. source: "./media/characters/lexor/back.svg",
  35682. extra: 1614/1533,
  35683. bottom: 76/1690
  35684. }
  35685. },
  35686. maw: {
  35687. height: math.unit(3, "feet"),
  35688. name: "Maw",
  35689. image: {
  35690. source: "./media/characters/lexor/maw.svg"
  35691. }
  35692. },
  35693. dick: {
  35694. height: math.unit(2.59, "feet"),
  35695. name: "Dick",
  35696. image: {
  35697. source: "./media/characters/lexor/dick.svg"
  35698. }
  35699. },
  35700. },
  35701. [
  35702. {
  35703. name: "Normal",
  35704. height: math.unit(11 + 6/12, "feet"),
  35705. default: true
  35706. },
  35707. ]
  35708. ))
  35709. characterMakers.push(() => makeCharacter(
  35710. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35711. {
  35712. front: {
  35713. height: math.unit(5 + 8/12, "feet"),
  35714. name: "Front",
  35715. image: {
  35716. source: "./media/characters/magnum/front.svg",
  35717. extra: 942/855,
  35718. bottom: 26/968
  35719. }
  35720. },
  35721. },
  35722. [
  35723. {
  35724. name: "Normal",
  35725. height: math.unit(5 + 8/12, "feet"),
  35726. default: true
  35727. },
  35728. ]
  35729. ))
  35730. characterMakers.push(() => makeCharacter(
  35731. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35732. {
  35733. front: {
  35734. height: math.unit(18 + 4/12, "feet"),
  35735. weight: math.unit(1500, "kg"),
  35736. name: "Front",
  35737. image: {
  35738. source: "./media/characters/solas-sharpsman/front.svg",
  35739. extra: 1698/1589,
  35740. bottom: 0/1698
  35741. }
  35742. },
  35743. },
  35744. [
  35745. {
  35746. name: "Normal",
  35747. height: math.unit(18 + 4/12, "feet"),
  35748. default: true
  35749. },
  35750. ]
  35751. ))
  35752. characterMakers.push(() => makeCharacter(
  35753. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35754. {
  35755. front: {
  35756. height: math.unit(5 + 5/12, "feet"),
  35757. weight: math.unit(180, "lb"),
  35758. name: "Front",
  35759. image: {
  35760. source: "./media/characters/october/front.svg",
  35761. extra: 1800/1650,
  35762. bottom: 0/1800
  35763. }
  35764. },
  35765. frontNsfw: {
  35766. height: math.unit(5 + 5/12, "feet"),
  35767. weight: math.unit(180, "lb"),
  35768. name: "Front (NSFW)",
  35769. image: {
  35770. source: "./media/characters/october/front-nsfw.svg",
  35771. extra: 1392/1307,
  35772. bottom: 42/1434
  35773. }
  35774. },
  35775. },
  35776. [
  35777. {
  35778. name: "Normal",
  35779. height: math.unit(5 + 5/12, "feet"),
  35780. default: true
  35781. },
  35782. ]
  35783. ))
  35784. characterMakers.push(() => makeCharacter(
  35785. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35786. {
  35787. front: {
  35788. height: math.unit(8 + 6/12, "feet"),
  35789. name: "Front",
  35790. image: {
  35791. source: "./media/characters/essynkardi/front.svg",
  35792. extra: 1914/1846,
  35793. bottom: 22/1936
  35794. }
  35795. },
  35796. },
  35797. [
  35798. {
  35799. name: "Normal",
  35800. height: math.unit(8 + 6/12, "feet"),
  35801. default: true
  35802. },
  35803. ]
  35804. ))
  35805. characterMakers.push(() => makeCharacter(
  35806. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35807. {
  35808. front: {
  35809. height: math.unit(6 + 6/12, "feet"),
  35810. weight: math.unit(7, "lb"),
  35811. name: "Front",
  35812. image: {
  35813. source: "./media/characters/icky/front.svg",
  35814. extra: 813/782,
  35815. bottom: 66/879
  35816. }
  35817. },
  35818. back: {
  35819. height: math.unit(6 + 6/12, "feet"),
  35820. weight: math.unit(7, "lb"),
  35821. name: "Back",
  35822. image: {
  35823. source: "./media/characters/icky/back.svg",
  35824. extra: 754/735,
  35825. bottom: 56/810
  35826. }
  35827. },
  35828. },
  35829. [
  35830. {
  35831. name: "Normal",
  35832. height: math.unit(6 + 6/12, "feet"),
  35833. default: true
  35834. },
  35835. ]
  35836. ))
  35837. characterMakers.push(() => makeCharacter(
  35838. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35839. {
  35840. front: {
  35841. height: math.unit(15, "feet"),
  35842. name: "Front",
  35843. image: {
  35844. source: "./media/characters/rojas/front.svg",
  35845. extra: 1462/1408,
  35846. bottom: 95/1557
  35847. }
  35848. },
  35849. back: {
  35850. height: math.unit(15, "feet"),
  35851. name: "Back",
  35852. image: {
  35853. source: "./media/characters/rojas/back.svg",
  35854. extra: 1023/954,
  35855. bottom: 28/1051
  35856. }
  35857. },
  35858. },
  35859. [
  35860. {
  35861. name: "Normal",
  35862. height: math.unit(15, "feet"),
  35863. default: true
  35864. },
  35865. ]
  35866. ))
  35867. characterMakers.push(() => makeCharacter(
  35868. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35869. {
  35870. frontHuman: {
  35871. height: math.unit(5 + 7/12, "feet"),
  35872. name: "Front (Human)",
  35873. image: {
  35874. source: "./media/characters/alek-dryagan/front-human.svg",
  35875. extra: 1687/1667,
  35876. bottom: 69/1756
  35877. }
  35878. },
  35879. backHuman: {
  35880. height: math.unit(5 + 7/12, "feet"),
  35881. name: "Back (Human)",
  35882. image: {
  35883. source: "./media/characters/alek-dryagan/back-human.svg",
  35884. extra: 1670/1649,
  35885. bottom: 65/1735
  35886. }
  35887. },
  35888. frontDemi: {
  35889. height: math.unit(65, "feet"),
  35890. name: "Front (Demi)",
  35891. image: {
  35892. source: "./media/characters/alek-dryagan/front-demi.svg",
  35893. extra: 1669/1642,
  35894. bottom: 49/1718
  35895. }
  35896. },
  35897. backDemi: {
  35898. height: math.unit(65, "feet"),
  35899. name: "Back (Demi)",
  35900. image: {
  35901. source: "./media/characters/alek-dryagan/back-demi.svg",
  35902. extra: 1658/1637,
  35903. bottom: 40/1698
  35904. }
  35905. },
  35906. mawHuman: {
  35907. height: math.unit(0.3, "feet"),
  35908. name: "Maw (Human)",
  35909. image: {
  35910. source: "./media/characters/alek-dryagan/maw-human.svg"
  35911. }
  35912. },
  35913. mawDemi: {
  35914. height: math.unit(3.8, "feet"),
  35915. name: "Maw (Demi)",
  35916. image: {
  35917. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35918. }
  35919. },
  35920. },
  35921. [
  35922. {
  35923. name: "Normal",
  35924. height: math.unit(5 + 7/12, "feet"),
  35925. default: true
  35926. },
  35927. ]
  35928. ))
  35929. characterMakers.push(() => makeCharacter(
  35930. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35931. {
  35932. frontHuman: {
  35933. height: math.unit(5 + 2/12, "feet"),
  35934. name: "Front (Human)",
  35935. image: {
  35936. source: "./media/characters/gen/front-human.svg",
  35937. extra: 1627/1538,
  35938. bottom: 71/1698
  35939. }
  35940. },
  35941. backHuman: {
  35942. height: math.unit(5 + 2/12, "feet"),
  35943. name: "Back (Human)",
  35944. image: {
  35945. source: "./media/characters/gen/back-human.svg",
  35946. extra: 1638/1548,
  35947. bottom: 69/1707
  35948. }
  35949. },
  35950. frontDemi: {
  35951. height: math.unit(5 + 2/12, "feet"),
  35952. name: "Front (Demi)",
  35953. image: {
  35954. source: "./media/characters/gen/front-demi.svg",
  35955. extra: 1627/1538,
  35956. bottom: 71/1698
  35957. }
  35958. },
  35959. backDemi: {
  35960. height: math.unit(5 + 2/12, "feet"),
  35961. name: "Back (Demi)",
  35962. image: {
  35963. source: "./media/characters/gen/back-demi.svg",
  35964. extra: 1638/1548,
  35965. bottom: 69/1707
  35966. }
  35967. },
  35968. },
  35969. [
  35970. {
  35971. name: "Normal",
  35972. height: math.unit(5 + 2/12, "feet"),
  35973. default: true
  35974. },
  35975. ]
  35976. ))
  35977. characterMakers.push(() => makeCharacter(
  35978. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35979. {
  35980. frontImp: {
  35981. height: math.unit(1 + 11/12, "feet"),
  35982. name: "Front (Imp)",
  35983. image: {
  35984. source: "./media/characters/max-kobold/front-imp.svg",
  35985. extra: 1238/1134,
  35986. bottom: 81/1319
  35987. }
  35988. },
  35989. backImp: {
  35990. height: math.unit(1 + 11/12, "feet"),
  35991. name: "Back (Imp)",
  35992. image: {
  35993. source: "./media/characters/max-kobold/back-imp.svg",
  35994. extra: 1334/1175,
  35995. bottom: 34/1368
  35996. }
  35997. },
  35998. frontDemi: {
  35999. height: math.unit(5 + 9/12, "feet"),
  36000. name: "Front (Demi)",
  36001. image: {
  36002. source: "./media/characters/max-kobold/front-demi.svg",
  36003. extra: 1715/1685,
  36004. bottom: 54/1769
  36005. }
  36006. },
  36007. backDemi: {
  36008. height: math.unit(5 + 9/12, "feet"),
  36009. name: "Back (Demi)",
  36010. image: {
  36011. source: "./media/characters/max-kobold/back-demi.svg",
  36012. extra: 1752/1729,
  36013. bottom: 41/1793
  36014. }
  36015. },
  36016. handImp: {
  36017. height: math.unit(0.45, "feet"),
  36018. name: "Hand (Imp)",
  36019. image: {
  36020. source: "./media/characters/max-kobold/hand.svg"
  36021. }
  36022. },
  36023. pawImp: {
  36024. height: math.unit(0.46, "feet"),
  36025. name: "Paw (Imp)",
  36026. image: {
  36027. source: "./media/characters/max-kobold/paw.svg"
  36028. }
  36029. },
  36030. handDemi: {
  36031. height: math.unit(0.80, "feet"),
  36032. name: "Hand (Demi)",
  36033. image: {
  36034. source: "./media/characters/max-kobold/hand.svg"
  36035. }
  36036. },
  36037. pawDemi: {
  36038. height: math.unit(1.1, "feet"),
  36039. name: "Paw (Demi)",
  36040. image: {
  36041. source: "./media/characters/max-kobold/paw.svg"
  36042. }
  36043. },
  36044. headImp: {
  36045. height: math.unit(1.33, "feet"),
  36046. name: "Head (Imp)",
  36047. image: {
  36048. source: "./media/characters/max-kobold/head-imp.svg"
  36049. }
  36050. },
  36051. mawImp: {
  36052. height: math.unit(0.75, "feet"),
  36053. name: "Maw (Imp)",
  36054. image: {
  36055. source: "./media/characters/max-kobold/maw-imp.svg"
  36056. }
  36057. },
  36058. mawDemi: {
  36059. height: math.unit(0.42, "feet"),
  36060. name: "Maw (Demi)",
  36061. image: {
  36062. source: "./media/characters/max-kobold/maw-demi.svg"
  36063. }
  36064. },
  36065. },
  36066. [
  36067. {
  36068. name: "Normal",
  36069. height: math.unit(1 + 11/12, "feet"),
  36070. default: true
  36071. },
  36072. ]
  36073. ))
  36074. characterMakers.push(() => makeCharacter(
  36075. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36076. {
  36077. front: {
  36078. height: math.unit(7 + 5/12, "feet"),
  36079. name: "Front",
  36080. image: {
  36081. source: "./media/characters/carbon/front.svg",
  36082. extra: 1754/1689,
  36083. bottom: 65/1819
  36084. }
  36085. },
  36086. back: {
  36087. height: math.unit(7 + 5/12, "feet"),
  36088. name: "Back",
  36089. image: {
  36090. source: "./media/characters/carbon/back.svg",
  36091. extra: 1762/1695,
  36092. bottom: 24/1786
  36093. }
  36094. },
  36095. frontGigantamax: {
  36096. height: math.unit(150, "feet"),
  36097. name: "Front (Gigantamax)",
  36098. image: {
  36099. source: "./media/characters/carbon/front-gigantamax.svg",
  36100. extra: 1826/1669,
  36101. bottom: 59/1885
  36102. }
  36103. },
  36104. backGigantamax: {
  36105. height: math.unit(150, "feet"),
  36106. name: "Back (Gigantamax)",
  36107. image: {
  36108. source: "./media/characters/carbon/back-gigantamax.svg",
  36109. extra: 1796/1653,
  36110. bottom: 53/1849
  36111. }
  36112. },
  36113. maw: {
  36114. height: math.unit(0.48, "feet"),
  36115. name: "Maw",
  36116. image: {
  36117. source: "./media/characters/carbon/maw.svg"
  36118. }
  36119. },
  36120. mawGigantamax: {
  36121. height: math.unit(7.5, "feet"),
  36122. name: "Maw (Gigantamax)",
  36123. image: {
  36124. source: "./media/characters/carbon/maw-gigantamax.svg"
  36125. }
  36126. },
  36127. },
  36128. [
  36129. {
  36130. name: "Normal",
  36131. height: math.unit(7 + 5/12, "feet"),
  36132. default: true
  36133. },
  36134. ]
  36135. ))
  36136. characterMakers.push(() => makeCharacter(
  36137. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36138. {
  36139. front: {
  36140. height: math.unit(6, "feet"),
  36141. name: "Front",
  36142. image: {
  36143. source: "./media/characters/maverick/front.svg",
  36144. extra: 1672/1661,
  36145. bottom: 85/1757
  36146. }
  36147. },
  36148. back: {
  36149. height: math.unit(6, "feet"),
  36150. name: "Back",
  36151. image: {
  36152. source: "./media/characters/maverick/back.svg",
  36153. extra: 1642/1631,
  36154. bottom: 38/1680
  36155. }
  36156. },
  36157. },
  36158. [
  36159. {
  36160. name: "Normal",
  36161. height: math.unit(6, "feet"),
  36162. default: true
  36163. },
  36164. ]
  36165. ))
  36166. characterMakers.push(() => makeCharacter(
  36167. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36168. {
  36169. front: {
  36170. height: math.unit(15, "feet"),
  36171. weight: math.unit(615, "lb"),
  36172. name: "Front",
  36173. image: {
  36174. source: "./media/characters/grockle/front.svg",
  36175. extra: 1535/1427,
  36176. bottom: 56/1591
  36177. }
  36178. },
  36179. },
  36180. [
  36181. {
  36182. name: "Normal",
  36183. height: math.unit(15, "feet"),
  36184. default: true
  36185. },
  36186. {
  36187. name: "Large",
  36188. height: math.unit(150, "feet")
  36189. },
  36190. {
  36191. name: "Macro",
  36192. height: math.unit(1876, "feet")
  36193. },
  36194. {
  36195. name: "Mega Macro",
  36196. height: math.unit(121940, "feet")
  36197. },
  36198. {
  36199. name: "Giga Macro",
  36200. height: math.unit(750, "km")
  36201. },
  36202. {
  36203. name: "Tera Macro",
  36204. height: math.unit(750000, "km")
  36205. },
  36206. {
  36207. name: "Galactic",
  36208. height: math.unit(1.4e5, "km")
  36209. },
  36210. {
  36211. name: "Godlike",
  36212. height: math.unit(9.8e280, "galaxies")
  36213. },
  36214. ]
  36215. ))
  36216. characterMakers.push(() => makeCharacter(
  36217. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36218. {
  36219. front: {
  36220. height: math.unit(11, "meters"),
  36221. weight: math.unit(20, "tonnes"),
  36222. name: "Front",
  36223. image: {
  36224. source: "./media/characters/alistair/front.svg",
  36225. extra: 1265/1009,
  36226. bottom: 93/1358
  36227. }
  36228. },
  36229. },
  36230. [
  36231. {
  36232. name: "Normal",
  36233. height: math.unit(11, "meters"),
  36234. default: true
  36235. },
  36236. ]
  36237. ))
  36238. characterMakers.push(() => makeCharacter(
  36239. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36240. {
  36241. front: {
  36242. height: math.unit(5 + 8/12, "feet"),
  36243. name: "Front",
  36244. image: {
  36245. source: "./media/characters/haruka/front.svg",
  36246. extra: 2012/1952,
  36247. bottom: 0/2012
  36248. }
  36249. },
  36250. },
  36251. [
  36252. {
  36253. name: "Normal",
  36254. height: math.unit(5 + 8/12, "feet"),
  36255. default: true
  36256. },
  36257. ]
  36258. ))
  36259. characterMakers.push(() => makeCharacter(
  36260. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36261. {
  36262. back: {
  36263. height: math.unit(9, "feet"),
  36264. name: "Back",
  36265. image: {
  36266. source: "./media/characters/vivian-sylveon/back.svg",
  36267. extra: 1853/1714,
  36268. bottom: 0/1853
  36269. }
  36270. },
  36271. },
  36272. [
  36273. {
  36274. name: "Normal",
  36275. height: math.unit(9, "feet"),
  36276. default: true
  36277. },
  36278. {
  36279. name: "Macro",
  36280. height: math.unit(500, "feet")
  36281. },
  36282. {
  36283. name: "Megamacro",
  36284. height: math.unit(600, "miles")
  36285. },
  36286. {
  36287. name: "Gigamacro",
  36288. height: math.unit(30000, "miles")
  36289. },
  36290. ]
  36291. ))
  36292. characterMakers.push(() => makeCharacter(
  36293. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36294. {
  36295. anthro: {
  36296. height: math.unit(5 + 10/12, "feet"),
  36297. weight: math.unit(100, "lb"),
  36298. name: "Anthro",
  36299. image: {
  36300. source: "./media/characters/daiki/anthro.svg",
  36301. extra: 1115/1027,
  36302. bottom: 69/1184
  36303. }
  36304. },
  36305. feral: {
  36306. height: math.unit(200, "feet"),
  36307. name: "Feral",
  36308. image: {
  36309. source: "./media/characters/daiki/feral.svg",
  36310. extra: 1256/313,
  36311. bottom: 39/1295
  36312. }
  36313. },
  36314. feralHead: {
  36315. height: math.unit(171, "feet"),
  36316. name: "Feral Head",
  36317. image: {
  36318. source: "./media/characters/daiki/feral-head.svg"
  36319. }
  36320. },
  36321. },
  36322. [
  36323. {
  36324. name: "Normal",
  36325. height: math.unit(5 + 10/12, "feet"),
  36326. default: true
  36327. },
  36328. ]
  36329. ))
  36330. characterMakers.push(() => makeCharacter(
  36331. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36332. {
  36333. fullyEquippedFront: {
  36334. height: math.unit(3 + 1/12, "feet"),
  36335. weight: math.unit(24, "lb"),
  36336. name: "Fully Equipped (Front)",
  36337. image: {
  36338. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36339. extra: 687/605,
  36340. bottom: 18/705
  36341. }
  36342. },
  36343. fullyEquippedBack: {
  36344. height: math.unit(3 + 1/12, "feet"),
  36345. weight: math.unit(24, "lb"),
  36346. name: "Fully Equipped (Back)",
  36347. image: {
  36348. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36349. extra: 689/590,
  36350. bottom: 18/707
  36351. }
  36352. },
  36353. dailyWear: {
  36354. height: math.unit(3 + 1/12, "feet"),
  36355. weight: math.unit(24, "lb"),
  36356. name: "Daily Wear",
  36357. image: {
  36358. source: "./media/characters/tea-spot/daily-wear.svg",
  36359. extra: 701/620,
  36360. bottom: 21/722
  36361. }
  36362. },
  36363. maidWork: {
  36364. height: math.unit(3 + 1/12, "feet"),
  36365. weight: math.unit(24, "lb"),
  36366. name: "Maid Work",
  36367. image: {
  36368. source: "./media/characters/tea-spot/maid-work.svg",
  36369. extra: 693/609,
  36370. bottom: 15/708
  36371. }
  36372. },
  36373. },
  36374. [
  36375. {
  36376. name: "Normal",
  36377. height: math.unit(3 + 1/12, "feet"),
  36378. default: true
  36379. },
  36380. ]
  36381. ))
  36382. characterMakers.push(() => makeCharacter(
  36383. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36384. {
  36385. front: {
  36386. height: math.unit(175, "cm"),
  36387. weight: math.unit(75, "kg"),
  36388. name: "Front",
  36389. image: {
  36390. source: "./media/characters/chee/front.svg",
  36391. extra: 1796/1740,
  36392. bottom: 40/1836
  36393. }
  36394. },
  36395. },
  36396. [
  36397. {
  36398. name: "Micro-Micro",
  36399. height: math.unit(1, "nm")
  36400. },
  36401. {
  36402. name: "Micro-erst",
  36403. height: math.unit(1, "micrometer")
  36404. },
  36405. {
  36406. name: "Micro-er",
  36407. height: math.unit(1, "cm")
  36408. },
  36409. {
  36410. name: "Normal",
  36411. height: math.unit(175, "cm"),
  36412. default: true
  36413. },
  36414. {
  36415. name: "Macro",
  36416. height: math.unit(100, "m")
  36417. },
  36418. {
  36419. name: "Macro-er",
  36420. height: math.unit(1, "km")
  36421. },
  36422. {
  36423. name: "Macro-erst",
  36424. height: math.unit(10, "km")
  36425. },
  36426. {
  36427. name: "Macro-Macro",
  36428. height: math.unit(100, "km")
  36429. },
  36430. ]
  36431. ))
  36432. characterMakers.push(() => makeCharacter(
  36433. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36434. {
  36435. front: {
  36436. height: math.unit(11 + 9/12, "feet"),
  36437. weight: math.unit(935, "lb"),
  36438. name: "Front",
  36439. image: {
  36440. source: "./media/characters/kingsley/front.svg",
  36441. extra: 1803/1674,
  36442. bottom: 127/1930
  36443. }
  36444. },
  36445. frontNude: {
  36446. height: math.unit(11 + 9/12, "feet"),
  36447. weight: math.unit(935, "lb"),
  36448. name: "Front (Nude)",
  36449. image: {
  36450. source: "./media/characters/kingsley/front-nude.svg",
  36451. extra: 1803/1674,
  36452. bottom: 127/1930
  36453. }
  36454. },
  36455. },
  36456. [
  36457. {
  36458. name: "Normal",
  36459. height: math.unit(11 + 9/12, "feet"),
  36460. default: true
  36461. },
  36462. ]
  36463. ))
  36464. characterMakers.push(() => makeCharacter(
  36465. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36466. {
  36467. side: {
  36468. height: math.unit(9, "feet"),
  36469. name: "Side",
  36470. image: {
  36471. source: "./media/characters/rymel/side.svg",
  36472. extra: 792/469,
  36473. bottom: 121/913
  36474. }
  36475. },
  36476. maw: {
  36477. height: math.unit(2.4, "meters"),
  36478. name: "Maw",
  36479. image: {
  36480. source: "./media/characters/rymel/maw.svg"
  36481. }
  36482. },
  36483. },
  36484. [
  36485. {
  36486. name: "House Drake",
  36487. height: math.unit(2, "feet")
  36488. },
  36489. {
  36490. name: "Reduced",
  36491. height: math.unit(4.5, "feet")
  36492. },
  36493. {
  36494. name: "Normal",
  36495. height: math.unit(9, "feet"),
  36496. default: true
  36497. },
  36498. ]
  36499. ))
  36500. characterMakers.push(() => makeCharacter(
  36501. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36502. {
  36503. front: {
  36504. height: math.unit(1.74, "meters"),
  36505. weight: math.unit(55, "kg"),
  36506. name: "Front",
  36507. image: {
  36508. source: "./media/characters/rubus/front.svg",
  36509. extra: 1894/1742,
  36510. bottom: 44/1938
  36511. }
  36512. },
  36513. },
  36514. [
  36515. {
  36516. name: "Normal",
  36517. height: math.unit(1.74, "meters"),
  36518. default: true
  36519. },
  36520. ]
  36521. ))
  36522. characterMakers.push(() => makeCharacter(
  36523. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36524. {
  36525. front: {
  36526. height: math.unit(5 + 2/12, "feet"),
  36527. weight: math.unit(112, "lb"),
  36528. name: "Front",
  36529. image: {
  36530. source: "./media/characters/cassie-kingston/front.svg",
  36531. extra: 1438/1390,
  36532. bottom: 47/1485
  36533. }
  36534. },
  36535. },
  36536. [
  36537. {
  36538. name: "Normal",
  36539. height: math.unit(5 + 2/12, "feet"),
  36540. default: true
  36541. },
  36542. {
  36543. name: "Macro",
  36544. height: math.unit(128, "feet")
  36545. },
  36546. {
  36547. name: "Megamacro",
  36548. height: math.unit(2.56, "miles")
  36549. },
  36550. ]
  36551. ))
  36552. characterMakers.push(() => makeCharacter(
  36553. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36554. {
  36555. front: {
  36556. height: math.unit(7, "feet"),
  36557. name: "Front",
  36558. image: {
  36559. source: "./media/characters/fox/front.svg",
  36560. extra: 1798/1703,
  36561. bottom: 55/1853
  36562. }
  36563. },
  36564. back: {
  36565. height: math.unit(7, "feet"),
  36566. name: "Back",
  36567. image: {
  36568. source: "./media/characters/fox/back.svg",
  36569. extra: 1748/1649,
  36570. bottom: 32/1780
  36571. }
  36572. },
  36573. head: {
  36574. height: math.unit(1.95, "feet"),
  36575. name: "Head",
  36576. image: {
  36577. source: "./media/characters/fox/head.svg"
  36578. }
  36579. },
  36580. dick: {
  36581. height: math.unit(1.33, "feet"),
  36582. name: "Dick",
  36583. image: {
  36584. source: "./media/characters/fox/dick.svg"
  36585. }
  36586. },
  36587. foot: {
  36588. height: math.unit(1, "feet"),
  36589. name: "Foot",
  36590. image: {
  36591. source: "./media/characters/fox/foot.svg"
  36592. }
  36593. },
  36594. paw: {
  36595. height: math.unit(0.92, "feet"),
  36596. name: "Paw",
  36597. image: {
  36598. source: "./media/characters/fox/paw.svg"
  36599. }
  36600. },
  36601. },
  36602. [
  36603. {
  36604. name: "Small",
  36605. height: math.unit(3, "inches")
  36606. },
  36607. {
  36608. name: "\"Realistic\"",
  36609. height: math.unit(7, "feet")
  36610. },
  36611. {
  36612. name: "Normal",
  36613. height: math.unit(150, "feet"),
  36614. default: true
  36615. },
  36616. {
  36617. name: "BIG",
  36618. height: math.unit(1200, "feet")
  36619. },
  36620. {
  36621. name: "👀",
  36622. height: math.unit(5, "miles")
  36623. },
  36624. {
  36625. name: "👀👀👀",
  36626. height: math.unit(64, "miles")
  36627. },
  36628. ]
  36629. ))
  36630. characterMakers.push(() => makeCharacter(
  36631. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36632. {
  36633. front: {
  36634. height: math.unit(625, "feet"),
  36635. name: "Front",
  36636. image: {
  36637. source: "./media/characters/asonja-rossa/front.svg",
  36638. extra: 1833/1686,
  36639. bottom: 24/1857
  36640. }
  36641. },
  36642. back: {
  36643. height: math.unit(625, "feet"),
  36644. name: "Back",
  36645. image: {
  36646. source: "./media/characters/asonja-rossa/back.svg",
  36647. extra: 1852/1753,
  36648. bottom: 26/1878
  36649. }
  36650. },
  36651. },
  36652. [
  36653. {
  36654. name: "Macro",
  36655. height: math.unit(625, "feet"),
  36656. default: true
  36657. },
  36658. ]
  36659. ))
  36660. characterMakers.push(() => makeCharacter(
  36661. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36662. {
  36663. side: {
  36664. height: math.unit(6, "feet"),
  36665. weight: math.unit(150, "lb"),
  36666. name: "Side",
  36667. image: {
  36668. source: "./media/characters/rezukii/side.svg",
  36669. extra: 979/542,
  36670. bottom: 87/1066
  36671. }
  36672. },
  36673. },
  36674. [
  36675. {
  36676. name: "Tiny",
  36677. height: math.unit(2, "feet")
  36678. },
  36679. {
  36680. name: "Smol",
  36681. height: math.unit(4, "feet")
  36682. },
  36683. {
  36684. name: "Normal",
  36685. height: math.unit(8, "feet"),
  36686. default: true
  36687. },
  36688. {
  36689. name: "Big",
  36690. height: math.unit(12, "feet")
  36691. },
  36692. {
  36693. name: "Macro",
  36694. height: math.unit(30, "feet")
  36695. },
  36696. ]
  36697. ))
  36698. characterMakers.push(() => makeCharacter(
  36699. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36700. {
  36701. front: {
  36702. height: math.unit(14, "feet"),
  36703. weight: math.unit(9.5, "tonnes"),
  36704. name: "Front",
  36705. image: {
  36706. source: "./media/characters/dawnheart/front.svg",
  36707. extra: 2792/2675,
  36708. bottom: 64/2856
  36709. }
  36710. },
  36711. },
  36712. [
  36713. {
  36714. name: "Normal",
  36715. height: math.unit(14, "feet"),
  36716. default: true
  36717. },
  36718. ]
  36719. ))
  36720. characterMakers.push(() => makeCharacter(
  36721. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36722. {
  36723. front: {
  36724. height: math.unit(1.7, "m"),
  36725. name: "Front",
  36726. image: {
  36727. source: "./media/characters/gladi/front.svg",
  36728. extra: 1460/1362,
  36729. bottom: 19/1479
  36730. }
  36731. },
  36732. back: {
  36733. height: math.unit(1.7, "m"),
  36734. name: "Back",
  36735. image: {
  36736. source: "./media/characters/gladi/back.svg",
  36737. extra: 1459/1357,
  36738. bottom: 12/1471
  36739. }
  36740. },
  36741. feral: {
  36742. height: math.unit(2.05, "m"),
  36743. name: "Feral",
  36744. image: {
  36745. source: "./media/characters/gladi/feral.svg",
  36746. extra: 821/557,
  36747. bottom: 91/912
  36748. }
  36749. },
  36750. },
  36751. [
  36752. {
  36753. name: "Shortest",
  36754. height: math.unit(70, "cm")
  36755. },
  36756. {
  36757. name: "Normal",
  36758. height: math.unit(1.7, "m")
  36759. },
  36760. {
  36761. name: "Macro",
  36762. height: math.unit(10, "m"),
  36763. default: true
  36764. },
  36765. {
  36766. name: "Tallest",
  36767. height: math.unit(200, "m")
  36768. },
  36769. ]
  36770. ))
  36771. characterMakers.push(() => makeCharacter(
  36772. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36773. {
  36774. front: {
  36775. height: math.unit(5 + 7/12, "feet"),
  36776. weight: math.unit(92, "kg"),
  36777. name: "Front",
  36778. image: {
  36779. source: "./media/characters/erdno/front.svg",
  36780. extra: 1954/1889,
  36781. bottom: 22/1976
  36782. }
  36783. },
  36784. },
  36785. [
  36786. {
  36787. name: "Normal",
  36788. height: math.unit(5 + 7/12, "feet"),
  36789. default: true
  36790. },
  36791. ]
  36792. ))
  36793. characterMakers.push(() => makeCharacter(
  36794. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36795. {
  36796. front: {
  36797. height: math.unit(5 + 10/12, "feet"),
  36798. weight: math.unit(150, "lb"),
  36799. name: "Front",
  36800. image: {
  36801. source: "./media/characters/jamie/front.svg",
  36802. extra: 1908/1768,
  36803. bottom: 19/1927
  36804. }
  36805. },
  36806. },
  36807. [
  36808. {
  36809. name: "Minimum",
  36810. height: math.unit(2, "cm")
  36811. },
  36812. {
  36813. name: "Micro",
  36814. height: math.unit(3, "inches")
  36815. },
  36816. {
  36817. name: "Normal",
  36818. height: math.unit(5 + 10/12, "feet"),
  36819. default: true
  36820. },
  36821. {
  36822. name: "Macro",
  36823. height: math.unit(150, "feet")
  36824. },
  36825. {
  36826. name: "Megamacro",
  36827. height: math.unit(10000, "m")
  36828. },
  36829. ]
  36830. ))
  36831. characterMakers.push(() => makeCharacter(
  36832. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36833. {
  36834. front: {
  36835. height: math.unit(2, "meters"),
  36836. weight: math.unit(100, "kg"),
  36837. name: "Front",
  36838. image: {
  36839. source: "./media/characters/shiron/front.svg",
  36840. extra: 2103/1985,
  36841. bottom: 98/2201
  36842. }
  36843. },
  36844. back: {
  36845. height: math.unit(2, "meters"),
  36846. weight: math.unit(100, "kg"),
  36847. name: "Back",
  36848. image: {
  36849. source: "./media/characters/shiron/back.svg",
  36850. extra: 2110/2015,
  36851. bottom: 89/2199
  36852. }
  36853. },
  36854. hand: {
  36855. height: math.unit(0.96, "feet"),
  36856. name: "Hand",
  36857. image: {
  36858. source: "./media/characters/shiron/hand.svg"
  36859. }
  36860. },
  36861. foot: {
  36862. height: math.unit(1.464, "feet"),
  36863. name: "Foot",
  36864. image: {
  36865. source: "./media/characters/shiron/foot.svg"
  36866. }
  36867. },
  36868. },
  36869. [
  36870. {
  36871. name: "Normal",
  36872. height: math.unit(2, "meters")
  36873. },
  36874. {
  36875. name: "Macro",
  36876. height: math.unit(500, "meters"),
  36877. default: true
  36878. },
  36879. {
  36880. name: "Megamacro",
  36881. height: math.unit(20, "km")
  36882. },
  36883. ]
  36884. ))
  36885. characterMakers.push(() => makeCharacter(
  36886. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36887. {
  36888. front: {
  36889. height: math.unit(6, "feet"),
  36890. name: "Front",
  36891. image: {
  36892. source: "./media/characters/sam/front.svg",
  36893. extra: 849/826,
  36894. bottom: 19/868
  36895. }
  36896. },
  36897. },
  36898. [
  36899. {
  36900. name: "Normal",
  36901. height: math.unit(6, "feet"),
  36902. default: true
  36903. },
  36904. ]
  36905. ))
  36906. characterMakers.push(() => makeCharacter(
  36907. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36908. {
  36909. front: {
  36910. height: math.unit(8 + 4/12, "feet"),
  36911. weight: math.unit(122, "kg"),
  36912. name: "Front",
  36913. image: {
  36914. source: "./media/characters/namori-kurogawa/front.svg",
  36915. extra: 1894/1576,
  36916. bottom: 34/1928
  36917. }
  36918. },
  36919. },
  36920. [
  36921. {
  36922. name: "Normal",
  36923. height: math.unit(8 + 4/12, "feet"),
  36924. default: true
  36925. },
  36926. ]
  36927. ))
  36928. characterMakers.push(() => makeCharacter(
  36929. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  36930. {
  36931. front: {
  36932. height: math.unit(9, "feet"),
  36933. weight: math.unit(621, "lb"),
  36934. name: "Front",
  36935. image: {
  36936. source: "./media/characters/unmru/front.svg",
  36937. extra: 1853/1747,
  36938. bottom: 73/1926
  36939. }
  36940. },
  36941. side: {
  36942. height: math.unit(9, "feet"),
  36943. weight: math.unit(621, "lb"),
  36944. name: "Side",
  36945. image: {
  36946. source: "./media/characters/unmru/side.svg",
  36947. extra: 1781/1671,
  36948. bottom: 127/1908
  36949. }
  36950. },
  36951. back: {
  36952. height: math.unit(9, "feet"),
  36953. weight: math.unit(621, "lb"),
  36954. name: "Back",
  36955. image: {
  36956. source: "./media/characters/unmru/back.svg",
  36957. extra: 1894/1765,
  36958. bottom: 75/1969
  36959. }
  36960. },
  36961. dick: {
  36962. height: math.unit(3, "feet"),
  36963. weight: math.unit(35, "lb"),
  36964. name: "Dick",
  36965. image: {
  36966. source: "./media/characters/unmru/dick.svg"
  36967. }
  36968. },
  36969. },
  36970. [
  36971. {
  36972. name: "Normal",
  36973. height: math.unit(9, "feet")
  36974. },
  36975. {
  36976. name: "Natural",
  36977. height: math.unit(27, "feet"),
  36978. default: true
  36979. },
  36980. {
  36981. name: "Giant",
  36982. height: math.unit(90, "feet")
  36983. },
  36984. {
  36985. name: "Kaiju",
  36986. height: math.unit(270, "feet")
  36987. },
  36988. {
  36989. name: "Macro",
  36990. height: math.unit(900, "feet")
  36991. },
  36992. {
  36993. name: "Macro+",
  36994. height: math.unit(2700, "feet")
  36995. },
  36996. {
  36997. name: "Megamacro",
  36998. height: math.unit(9000, "feet")
  36999. },
  37000. {
  37001. name: "City-Crushing",
  37002. height: math.unit(27000, "feet")
  37003. },
  37004. {
  37005. name: "Mountain-Mashing",
  37006. height: math.unit(90000, "feet")
  37007. },
  37008. {
  37009. name: "Earth-Eclipsing",
  37010. height: math.unit(2.7e8, "feet")
  37011. },
  37012. {
  37013. name: "Sol-Swallowing",
  37014. height: math.unit(9e10, "feet")
  37015. },
  37016. {
  37017. name: "Majoris-Munching",
  37018. height: math.unit(2.7e13, "feet")
  37019. },
  37020. ]
  37021. ))
  37022. characterMakers.push(() => makeCharacter(
  37023. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37024. {
  37025. front: {
  37026. height: math.unit(1, "inch"),
  37027. name: "Front",
  37028. image: {
  37029. source: "./media/characters/squeaks-mouse/front.svg",
  37030. extra: 352/308,
  37031. bottom: 25/377
  37032. }
  37033. },
  37034. },
  37035. [
  37036. {
  37037. name: "Micro",
  37038. height: math.unit(1, "inch"),
  37039. default: true
  37040. },
  37041. ]
  37042. ))
  37043. characterMakers.push(() => makeCharacter(
  37044. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37045. {
  37046. side: {
  37047. height: math.unit(35, "feet"),
  37048. name: "Side",
  37049. image: {
  37050. source: "./media/characters/sayko/side.svg",
  37051. extra: 1697/1021,
  37052. bottom: 82/1779
  37053. }
  37054. },
  37055. head: {
  37056. height: math.unit(16, "feet"),
  37057. name: "Head",
  37058. image: {
  37059. source: "./media/characters/sayko/head.svg"
  37060. }
  37061. },
  37062. forepaw: {
  37063. height: math.unit(7.85, "feet"),
  37064. name: "Forepaw",
  37065. image: {
  37066. source: "./media/characters/sayko/forepaw.svg"
  37067. }
  37068. },
  37069. hindpaw: {
  37070. height: math.unit(8.8, "feet"),
  37071. name: "Hindpaw",
  37072. image: {
  37073. source: "./media/characters/sayko/hindpaw.svg"
  37074. }
  37075. },
  37076. },
  37077. [
  37078. {
  37079. name: "Normal",
  37080. height: math.unit(35, "feet"),
  37081. default: true
  37082. },
  37083. {
  37084. name: "Colossus",
  37085. height: math.unit(100, "meters")
  37086. },
  37087. {
  37088. name: "\"Small\" Deity",
  37089. height: math.unit(1, "km")
  37090. },
  37091. {
  37092. name: "\"Large\" Deity",
  37093. height: math.unit(15, "km")
  37094. },
  37095. ]
  37096. ))
  37097. characterMakers.push(() => makeCharacter(
  37098. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37099. {
  37100. front: {
  37101. height: math.unit(6, "feet"),
  37102. weight: math.unit(250, "lb"),
  37103. name: "Front",
  37104. image: {
  37105. source: "./media/characters/mukiro/front.svg",
  37106. extra: 1368/1310,
  37107. bottom: 34/1402
  37108. }
  37109. },
  37110. },
  37111. [
  37112. {
  37113. name: "Normal",
  37114. height: math.unit(6, "feet"),
  37115. default: true
  37116. },
  37117. ]
  37118. ))
  37119. characterMakers.push(() => makeCharacter(
  37120. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37121. {
  37122. front: {
  37123. height: math.unit(12 + 4/12, "feet"),
  37124. name: "Front",
  37125. image: {
  37126. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37127. extra: 1346/1311,
  37128. bottom: 65/1411
  37129. }
  37130. },
  37131. },
  37132. [
  37133. {
  37134. name: "Base",
  37135. height: math.unit(12 + 4/12, "feet"),
  37136. default: true
  37137. },
  37138. {
  37139. name: "Macro",
  37140. height: math.unit(150, "feet")
  37141. },
  37142. {
  37143. name: "Mega",
  37144. height: math.unit(2, "miles")
  37145. },
  37146. {
  37147. name: "Demi God",
  37148. height: math.unit(4, "AU")
  37149. },
  37150. {
  37151. name: "God Size",
  37152. height: math.unit(1, "universe")
  37153. },
  37154. ]
  37155. ))
  37156. characterMakers.push(() => makeCharacter(
  37157. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37158. {
  37159. front: {
  37160. height: math.unit(3 + 3/12, "feet"),
  37161. weight: math.unit(88, "lb"),
  37162. name: "Front",
  37163. image: {
  37164. source: "./media/characters/trey/front.svg",
  37165. extra: 1815/1509,
  37166. bottom: 60/1875
  37167. }
  37168. },
  37169. },
  37170. [
  37171. {
  37172. name: "Normal",
  37173. height: math.unit(3 + 3/12, "feet"),
  37174. default: true
  37175. },
  37176. ]
  37177. ))
  37178. characterMakers.push(() => makeCharacter(
  37179. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37180. {
  37181. front: {
  37182. height: math.unit(4, "meters"),
  37183. name: "Front",
  37184. image: {
  37185. source: "./media/characters/adelonda/front.svg",
  37186. extra: 1942/1775,
  37187. bottom: 33/1975
  37188. }
  37189. },
  37190. back: {
  37191. height: math.unit(4, "meters"),
  37192. name: "Back",
  37193. image: {
  37194. source: "./media/characters/adelonda/back.svg",
  37195. extra: 1932/1780,
  37196. bottom: 42/1974
  37197. }
  37198. },
  37199. bust: {
  37200. height: math.unit(1.8, "meter"),
  37201. name: "Bust",
  37202. image: {
  37203. source: "./media/characters/adelonda/bust.svg"
  37204. }
  37205. },
  37206. },
  37207. [
  37208. {
  37209. name: "Normal",
  37210. height: math.unit(4, "meters"),
  37211. default: true
  37212. },
  37213. ]
  37214. ))
  37215. characterMakers.push(() => makeCharacter(
  37216. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37217. {
  37218. front: {
  37219. height: math.unit(8 + 4/12, "feet"),
  37220. weight: math.unit(670, "lb"),
  37221. name: "Front",
  37222. image: {
  37223. source: "./media/characters/acadiel/front.svg",
  37224. extra: 1901/1595,
  37225. bottom: 142/2043
  37226. }
  37227. },
  37228. },
  37229. [
  37230. {
  37231. name: "Normal",
  37232. height: math.unit(8 + 4/12, "feet"),
  37233. default: true
  37234. },
  37235. {
  37236. name: "Macro",
  37237. height: math.unit(200, "feet")
  37238. },
  37239. ]
  37240. ))
  37241. characterMakers.push(() => makeCharacter(
  37242. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37243. {
  37244. front: {
  37245. height: math.unit(6 + 2/12, "feet"),
  37246. weight: math.unit(185, "lb"),
  37247. name: "Front",
  37248. image: {
  37249. source: "./media/characters/kayne-ein/front.svg",
  37250. extra: 1780/1560,
  37251. bottom: 81/1861
  37252. }
  37253. },
  37254. },
  37255. [
  37256. {
  37257. name: "Normal",
  37258. height: math.unit(6 + 2/12, "feet"),
  37259. default: true
  37260. },
  37261. {
  37262. name: "Transformation Stage",
  37263. height: math.unit(15, "feet")
  37264. },
  37265. {
  37266. name: "Macro",
  37267. height: math.unit(150, "feet")
  37268. },
  37269. {
  37270. name: "Earth's Shadow",
  37271. height: math.unit(6200, "miles")
  37272. },
  37273. {
  37274. name: "Universal Demon",
  37275. height: math.unit(28e9, "parsecs")
  37276. },
  37277. {
  37278. name: "Multiverse God",
  37279. height: math.unit(3, "multiverses")
  37280. },
  37281. ]
  37282. ))
  37283. characterMakers.push(() => makeCharacter(
  37284. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37285. {
  37286. front: {
  37287. height: math.unit(5 + 5/12, "feet"),
  37288. name: "Front",
  37289. image: {
  37290. source: "./media/characters/fawn/front.svg",
  37291. extra: 1873/1731,
  37292. bottom: 95/1968
  37293. }
  37294. },
  37295. back: {
  37296. height: math.unit(5 + 5/12, "feet"),
  37297. name: "Back",
  37298. image: {
  37299. source: "./media/characters/fawn/back.svg",
  37300. extra: 1813/1700,
  37301. bottom: 14/1827
  37302. }
  37303. },
  37304. hoof: {
  37305. height: math.unit(1.45, "feet"),
  37306. name: "Hoof",
  37307. image: {
  37308. source: "./media/characters/fawn/hoof.svg"
  37309. }
  37310. },
  37311. },
  37312. [
  37313. {
  37314. name: "Normal",
  37315. height: math.unit(5 + 5/12, "feet"),
  37316. default: true
  37317. },
  37318. ]
  37319. ))
  37320. characterMakers.push(() => makeCharacter(
  37321. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37322. {
  37323. front: {
  37324. height: math.unit(2 + 5/12, "feet"),
  37325. name: "Front",
  37326. image: {
  37327. source: "./media/characters/orion/front.svg",
  37328. extra: 1366/1304,
  37329. bottom: 43/1409
  37330. }
  37331. },
  37332. paw: {
  37333. height: math.unit(0.52, "feet"),
  37334. name: "Paw",
  37335. image: {
  37336. source: "./media/characters/orion/paw.svg"
  37337. }
  37338. },
  37339. },
  37340. [
  37341. {
  37342. name: "Normal",
  37343. height: math.unit(2 + 5/12, "feet"),
  37344. default: true
  37345. },
  37346. ]
  37347. ))
  37348. characterMakers.push(() => makeCharacter(
  37349. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37350. {
  37351. front: {
  37352. height: math.unit(5 + 10/12, "feet"),
  37353. name: "Front",
  37354. image: {
  37355. source: "./media/characters/vera/front.svg",
  37356. extra: 1680/1575,
  37357. bottom: 49/1729
  37358. }
  37359. },
  37360. back: {
  37361. height: math.unit(5 + 10/12, "feet"),
  37362. name: "Back",
  37363. image: {
  37364. source: "./media/characters/vera/back.svg",
  37365. extra: 1700/1588,
  37366. bottom: 18/1718
  37367. }
  37368. },
  37369. arcanine: {
  37370. height: math.unit(6 + 8/12, "feet"),
  37371. name: "Arcanine",
  37372. image: {
  37373. source: "./media/characters/vera/arcanine.svg",
  37374. extra: 1590/1511,
  37375. bottom: 71/1661
  37376. }
  37377. },
  37378. maw: {
  37379. height: math.unit(0.82, "feet"),
  37380. name: "Maw",
  37381. image: {
  37382. source: "./media/characters/vera/maw.svg"
  37383. }
  37384. },
  37385. mawArcanine: {
  37386. height: math.unit(0.97, "feet"),
  37387. name: "Maw (Arcanine)",
  37388. image: {
  37389. source: "./media/characters/vera/maw-arcanine.svg"
  37390. }
  37391. },
  37392. paw: {
  37393. height: math.unit(0.75, "feet"),
  37394. name: "Paw",
  37395. image: {
  37396. source: "./media/characters/vera/paw.svg"
  37397. }
  37398. },
  37399. pawprint: {
  37400. height: math.unit(0.52, "feet"),
  37401. name: "Pawprint",
  37402. image: {
  37403. source: "./media/characters/vera/pawprint.svg"
  37404. }
  37405. },
  37406. },
  37407. [
  37408. {
  37409. name: "Normal",
  37410. height: math.unit(5 + 10/12, "feet"),
  37411. default: true
  37412. },
  37413. {
  37414. name: "Macro",
  37415. height: math.unit(75, "feet")
  37416. },
  37417. ]
  37418. ))
  37419. characterMakers.push(() => makeCharacter(
  37420. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37421. {
  37422. front: {
  37423. height: math.unit(4, "feet"),
  37424. weight: math.unit(40, "lb"),
  37425. name: "Front",
  37426. image: {
  37427. source: "./media/characters/orvan-rabbit/front.svg",
  37428. extra: 1896/1642,
  37429. bottom: 29/1925
  37430. }
  37431. },
  37432. },
  37433. [
  37434. {
  37435. name: "Normal",
  37436. height: math.unit(4, "feet"),
  37437. default: true
  37438. },
  37439. ]
  37440. ))
  37441. characterMakers.push(() => makeCharacter(
  37442. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37443. {
  37444. front: {
  37445. height: math.unit(6, "feet"),
  37446. weight: math.unit(168, "lb"),
  37447. name: "Front",
  37448. image: {
  37449. source: "./media/characters/lisa/front.svg",
  37450. extra: 2065/1867,
  37451. bottom: 46/2111
  37452. }
  37453. },
  37454. back: {
  37455. height: math.unit(6, "feet"),
  37456. weight: math.unit(168, "lb"),
  37457. name: "Back",
  37458. image: {
  37459. source: "./media/characters/lisa/back.svg",
  37460. extra: 1982/1838,
  37461. bottom: 29/2011
  37462. }
  37463. },
  37464. maw: {
  37465. height: math.unit(0.81, "feet"),
  37466. name: "Maw",
  37467. image: {
  37468. source: "./media/characters/lisa/maw.svg"
  37469. }
  37470. },
  37471. paw: {
  37472. height: math.unit(0.9, "feet"),
  37473. name: "Paw",
  37474. image: {
  37475. source: "./media/characters/lisa/paw.svg"
  37476. }
  37477. },
  37478. caribousune: {
  37479. height: math.unit(7 + 2/12, "feet"),
  37480. weight: math.unit(268, "lb"),
  37481. name: "Caribousune",
  37482. image: {
  37483. source: "./media/characters/lisa/caribousune.svg",
  37484. extra: 1843/1633,
  37485. bottom: 29/1872
  37486. }
  37487. },
  37488. frontCaribousune: {
  37489. height: math.unit(7 + 2/12, "feet"),
  37490. weight: math.unit(268, "lb"),
  37491. name: "Front (Caribousune)",
  37492. image: {
  37493. source: "./media/characters/lisa/front-caribousune.svg",
  37494. extra: 1818/1638,
  37495. bottom: 52/1870
  37496. }
  37497. },
  37498. sideCaribousune: {
  37499. height: math.unit(7 + 2/12, "feet"),
  37500. weight: math.unit(268, "lb"),
  37501. name: "Side (Caribousune)",
  37502. image: {
  37503. source: "./media/characters/lisa/side-caribousune.svg",
  37504. extra: 1851/1635,
  37505. bottom: 16/1867
  37506. }
  37507. },
  37508. backCaribousune: {
  37509. height: math.unit(7 + 2/12, "feet"),
  37510. weight: math.unit(268, "lb"),
  37511. name: "Back (Caribousune)",
  37512. image: {
  37513. source: "./media/characters/lisa/back-caribousune.svg",
  37514. extra: 1801/1604,
  37515. bottom: 44/1845
  37516. }
  37517. },
  37518. caribou: {
  37519. height: math.unit(7 + 2/12, "feet"),
  37520. weight: math.unit(268, "lb"),
  37521. name: "Caribou",
  37522. image: {
  37523. source: "./media/characters/lisa/caribou.svg",
  37524. extra: 1843/1633,
  37525. bottom: 29/1872
  37526. }
  37527. },
  37528. frontCaribou: {
  37529. height: math.unit(7 + 2/12, "feet"),
  37530. weight: math.unit(268, "lb"),
  37531. name: "Front (Caribou)",
  37532. image: {
  37533. source: "./media/characters/lisa/front-caribou.svg",
  37534. extra: 1818/1638,
  37535. bottom: 52/1870
  37536. }
  37537. },
  37538. sideCaribou: {
  37539. height: math.unit(7 + 2/12, "feet"),
  37540. weight: math.unit(268, "lb"),
  37541. name: "Side (Caribou)",
  37542. image: {
  37543. source: "./media/characters/lisa/side-caribou.svg",
  37544. extra: 1851/1635,
  37545. bottom: 16/1867
  37546. }
  37547. },
  37548. backCaribou: {
  37549. height: math.unit(7 + 2/12, "feet"),
  37550. weight: math.unit(268, "lb"),
  37551. name: "Back (Caribou)",
  37552. image: {
  37553. source: "./media/characters/lisa/back-caribou.svg",
  37554. extra: 1801/1604,
  37555. bottom: 44/1845
  37556. }
  37557. },
  37558. mawCaribou: {
  37559. height: math.unit(1.45, "feet"),
  37560. name: "Maw (Caribou)",
  37561. image: {
  37562. source: "./media/characters/lisa/maw-caribou.svg"
  37563. }
  37564. },
  37565. mawCaribousune: {
  37566. height: math.unit(1.45, "feet"),
  37567. name: "Maw (Caribousune)",
  37568. image: {
  37569. source: "./media/characters/lisa/maw-caribousune.svg"
  37570. }
  37571. },
  37572. pawCaribousune: {
  37573. height: math.unit(1.61, "feet"),
  37574. name: "Paw (Caribou)",
  37575. image: {
  37576. source: "./media/characters/lisa/paw-caribousune.svg"
  37577. }
  37578. },
  37579. },
  37580. [
  37581. {
  37582. name: "Normal",
  37583. height: math.unit(6, "feet")
  37584. },
  37585. {
  37586. name: "God Size",
  37587. height: math.unit(72, "feet"),
  37588. default: true
  37589. },
  37590. {
  37591. name: "Towering",
  37592. height: math.unit(288, "feet")
  37593. },
  37594. {
  37595. name: "City Size",
  37596. height: math.unit(48384, "feet")
  37597. },
  37598. {
  37599. name: "Continental",
  37600. height: math.unit(4200, "miles")
  37601. },
  37602. {
  37603. name: "Planet Eater",
  37604. height: math.unit(42, "earths")
  37605. },
  37606. {
  37607. name: "Star Swallower",
  37608. height: math.unit(42, "solarradii")
  37609. },
  37610. {
  37611. name: "System Swallower",
  37612. height: math.unit(84000, "AU")
  37613. },
  37614. {
  37615. name: "Galaxy Gobbler",
  37616. height: math.unit(42, "galaxies")
  37617. },
  37618. {
  37619. name: "Universe Devourer",
  37620. height: math.unit(42, "universes")
  37621. },
  37622. {
  37623. name: "Multiverse Muncher",
  37624. height: math.unit(42, "multiverses")
  37625. },
  37626. ]
  37627. ))
  37628. characterMakers.push(() => makeCharacter(
  37629. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37630. {
  37631. front: {
  37632. height: math.unit(36, "feet"),
  37633. name: "Front",
  37634. image: {
  37635. source: "./media/characters/shadow-rat/front.svg",
  37636. extra: 1845/1758,
  37637. bottom: 83/1928
  37638. }
  37639. },
  37640. },
  37641. [
  37642. {
  37643. name: "Macro",
  37644. height: math.unit(36, "feet"),
  37645. default: true
  37646. },
  37647. ]
  37648. ))
  37649. characterMakers.push(() => makeCharacter(
  37650. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37651. {
  37652. side: {
  37653. height: math.unit(8, "feet"),
  37654. weight: math.unit(2630, "lb"),
  37655. name: "Side",
  37656. image: {
  37657. source: "./media/characters/torallia/side.svg",
  37658. extra: 2164/2021,
  37659. bottom: 371/2535
  37660. }
  37661. },
  37662. },
  37663. [
  37664. {
  37665. name: "Mortal Interaction",
  37666. height: math.unit(8, "feet")
  37667. },
  37668. {
  37669. name: "Natural",
  37670. height: math.unit(24, "feet"),
  37671. default: true
  37672. },
  37673. {
  37674. name: "Giant",
  37675. height: math.unit(80, "feet")
  37676. },
  37677. {
  37678. name: "Kaiju",
  37679. height: math.unit(240, "feet")
  37680. },
  37681. {
  37682. name: "Macro",
  37683. height: math.unit(800, "feet")
  37684. },
  37685. {
  37686. name: "Macro+",
  37687. height: math.unit(2400, "feet")
  37688. },
  37689. {
  37690. name: "Macro++",
  37691. height: math.unit(8000, "feet")
  37692. },
  37693. {
  37694. name: "City-Crushing",
  37695. height: math.unit(24000, "feet")
  37696. },
  37697. {
  37698. name: "Mountain-Mashing",
  37699. height: math.unit(80000, "feet")
  37700. },
  37701. {
  37702. name: "District Demolisher",
  37703. height: math.unit(240000, "feet")
  37704. },
  37705. {
  37706. name: "Tri-County Terror",
  37707. height: math.unit(800000, "feet")
  37708. },
  37709. {
  37710. name: "State Smasher",
  37711. height: math.unit(2.4e6, "feet")
  37712. },
  37713. {
  37714. name: "Nation Nemesis",
  37715. height: math.unit(8e6, "feet")
  37716. },
  37717. {
  37718. name: "Continent Cracker",
  37719. height: math.unit(2.4e7, "feet")
  37720. },
  37721. {
  37722. name: "Planet-Pillaging",
  37723. height: math.unit(8e7, "feet")
  37724. },
  37725. {
  37726. name: "Earth-Eclipsing",
  37727. height: math.unit(2.4e8, "feet")
  37728. },
  37729. {
  37730. name: "Jovian-Jostling",
  37731. height: math.unit(8e8, "feet")
  37732. },
  37733. {
  37734. name: "Gas Giant Gulper",
  37735. height: math.unit(2.4e9, "feet")
  37736. },
  37737. {
  37738. name: "Astral Annihilator",
  37739. height: math.unit(8e9, "feet")
  37740. },
  37741. {
  37742. name: "Celestial Conqueror",
  37743. height: math.unit(2.4e10, "feet")
  37744. },
  37745. {
  37746. name: "Sol-Swallowing",
  37747. height: math.unit(8e10, "feet")
  37748. },
  37749. {
  37750. name: "Hunter of the Heavens",
  37751. height: math.unit(2.4e13, "feet")
  37752. },
  37753. ]
  37754. ))
  37755. characterMakers.push(() => makeCharacter(
  37756. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37757. {
  37758. front: {
  37759. height: math.unit(6 + 8/12, "feet"),
  37760. name: "Front",
  37761. image: {
  37762. source: "./media/characters/rebecca-pawlson/front.svg",
  37763. extra: 1737/1596,
  37764. bottom: 107/1844
  37765. }
  37766. },
  37767. back: {
  37768. height: math.unit(6 + 8/12, "feet"),
  37769. name: "Back",
  37770. image: {
  37771. source: "./media/characters/rebecca-pawlson/back.svg",
  37772. extra: 1702/1523,
  37773. bottom: 86/1788
  37774. }
  37775. },
  37776. },
  37777. [
  37778. {
  37779. name: "Normal",
  37780. height: math.unit(6 + 8/12, "feet")
  37781. },
  37782. {
  37783. name: "Mini Macro",
  37784. height: math.unit(10, "feet"),
  37785. default: true
  37786. },
  37787. {
  37788. name: "Macro",
  37789. height: math.unit(100, "feet")
  37790. },
  37791. {
  37792. name: "Mega Macro",
  37793. height: math.unit(2500, "feet")
  37794. },
  37795. {
  37796. name: "Giga Macro",
  37797. height: math.unit(50, "miles")
  37798. },
  37799. ]
  37800. ))
  37801. characterMakers.push(() => makeCharacter(
  37802. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37803. {
  37804. front: {
  37805. height: math.unit(7 + 6/12, "feet"),
  37806. weight: math.unit(600, "lb"),
  37807. name: "Front",
  37808. image: {
  37809. source: "./media/characters/moxie-nova/front.svg",
  37810. extra: 1734/1652,
  37811. bottom: 41/1775
  37812. }
  37813. },
  37814. },
  37815. [
  37816. {
  37817. name: "Normal",
  37818. height: math.unit(7 + 6/12, "feet"),
  37819. default: true
  37820. },
  37821. ]
  37822. ))
  37823. characterMakers.push(() => makeCharacter(
  37824. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37825. {
  37826. front: {
  37827. height: math.unit(5, "feet"),
  37828. weight: math.unit(150, "lb"),
  37829. name: "Front",
  37830. image: {
  37831. source: "./media/characters/tiffany/front.svg",
  37832. extra: 1941/1845,
  37833. bottom: 58/1999
  37834. }
  37835. },
  37836. },
  37837. [
  37838. {
  37839. name: "Normal",
  37840. height: math.unit(5, "feet"),
  37841. default: true
  37842. },
  37843. ]
  37844. ))
  37845. characterMakers.push(() => makeCharacter(
  37846. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37847. {
  37848. front: {
  37849. height: math.unit(8, "feet"),
  37850. weight: math.unit(300, "lb"),
  37851. name: "Front",
  37852. image: {
  37853. source: "./media/characters/raxinath/front.svg",
  37854. extra: 1407/1309,
  37855. bottom: 39/1446
  37856. }
  37857. },
  37858. back: {
  37859. height: math.unit(8, "feet"),
  37860. weight: math.unit(300, "lb"),
  37861. name: "Back",
  37862. image: {
  37863. source: "./media/characters/raxinath/back.svg",
  37864. extra: 1405/1315,
  37865. bottom: 9/1414
  37866. }
  37867. },
  37868. },
  37869. [
  37870. {
  37871. name: "Speck",
  37872. height: math.unit(0.5, "nm")
  37873. },
  37874. {
  37875. name: "Micro",
  37876. height: math.unit(3, "inches")
  37877. },
  37878. {
  37879. name: "Kobold",
  37880. height: math.unit(3, "feet")
  37881. },
  37882. {
  37883. name: "Normal",
  37884. height: math.unit(8, "feet"),
  37885. default: true
  37886. },
  37887. {
  37888. name: "Giant",
  37889. height: math.unit(50, "feet")
  37890. },
  37891. {
  37892. name: "Macro",
  37893. height: math.unit(1000, "feet")
  37894. },
  37895. {
  37896. name: "Megamacro",
  37897. height: math.unit(1, "mile")
  37898. },
  37899. ]
  37900. ))
  37901. characterMakers.push(() => makeCharacter(
  37902. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  37903. {
  37904. front: {
  37905. height: math.unit(10, "feet"),
  37906. weight: math.unit(1442, "lb"),
  37907. name: "Front",
  37908. image: {
  37909. source: "./media/characters/mal-dragon/front.svg",
  37910. extra: 1515/1444,
  37911. bottom: 113/1628
  37912. }
  37913. },
  37914. back: {
  37915. height: math.unit(10, "feet"),
  37916. weight: math.unit(1442, "lb"),
  37917. name: "Back",
  37918. image: {
  37919. source: "./media/characters/mal-dragon/back.svg",
  37920. extra: 1527/1434,
  37921. bottom: 25/1552
  37922. }
  37923. },
  37924. },
  37925. [
  37926. {
  37927. name: "Mortal Interaction",
  37928. height: math.unit(10, "feet"),
  37929. default: true
  37930. },
  37931. {
  37932. name: "Large",
  37933. height: math.unit(30, "feet")
  37934. },
  37935. {
  37936. name: "Kaiju",
  37937. height: math.unit(300, "feet")
  37938. },
  37939. {
  37940. name: "Megamacro",
  37941. height: math.unit(10000, "feet")
  37942. },
  37943. {
  37944. name: "Continent Cracker",
  37945. height: math.unit(30000000, "feet")
  37946. },
  37947. {
  37948. name: "Sol-Swallowing",
  37949. height: math.unit(1e11, "feet")
  37950. },
  37951. {
  37952. name: "Light Universal",
  37953. height: math.unit(5, "universes")
  37954. },
  37955. {
  37956. name: "Universe Atoms",
  37957. height: math.unit(1.829e9, "universes")
  37958. },
  37959. {
  37960. name: "Light Multiversal",
  37961. height: math.unit(5, "multiverses")
  37962. },
  37963. {
  37964. name: "Multiverse Atoms",
  37965. height: math.unit(1.829e9, "multiverses")
  37966. },
  37967. {
  37968. name: "Fabric of Time",
  37969. height: math.unit(1e262, "multiverses")
  37970. },
  37971. ]
  37972. ))
  37973. characterMakers.push(() => makeCharacter(
  37974. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  37975. {
  37976. front: {
  37977. height: math.unit(9, "feet"),
  37978. weight: math.unit(1050, "lb"),
  37979. name: "Front",
  37980. image: {
  37981. source: "./media/characters/tabitha/front.svg",
  37982. extra: 2083/1994,
  37983. bottom: 68/2151
  37984. }
  37985. },
  37986. },
  37987. [
  37988. {
  37989. name: "Baseline",
  37990. height: math.unit(9, "feet"),
  37991. default: true
  37992. },
  37993. {
  37994. name: "Giant",
  37995. height: math.unit(90, "feet")
  37996. },
  37997. {
  37998. name: "Macro",
  37999. height: math.unit(900, "feet")
  38000. },
  38001. {
  38002. name: "Megamacro",
  38003. height: math.unit(9000, "feet")
  38004. },
  38005. {
  38006. name: "City-Crushing",
  38007. height: math.unit(27000, "feet")
  38008. },
  38009. {
  38010. name: "Mountain-Mashing",
  38011. height: math.unit(90000, "feet")
  38012. },
  38013. {
  38014. name: "Nation Nemesis",
  38015. height: math.unit(9e6, "feet")
  38016. },
  38017. {
  38018. name: "Continent Cracker",
  38019. height: math.unit(27e6, "feet")
  38020. },
  38021. {
  38022. name: "Earth-Eclipsing",
  38023. height: math.unit(2.7e8, "feet")
  38024. },
  38025. {
  38026. name: "Gas Giant Gulper",
  38027. height: math.unit(2.7e9, "feet")
  38028. },
  38029. {
  38030. name: "Sol-Swallowing",
  38031. height: math.unit(9e10, "feet")
  38032. },
  38033. {
  38034. name: "Galaxy Gulper",
  38035. height: math.unit(9, "galaxies")
  38036. },
  38037. {
  38038. name: "Cosmos Churner",
  38039. height: math.unit(9, "universes")
  38040. },
  38041. ]
  38042. ))
  38043. characterMakers.push(() => makeCharacter(
  38044. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38045. {
  38046. front: {
  38047. height: math.unit(160, "cm"),
  38048. weight: math.unit(55, "kg"),
  38049. name: "Front",
  38050. image: {
  38051. source: "./media/characters/tow/front.svg",
  38052. extra: 1751/1722,
  38053. bottom: 74/1825
  38054. }
  38055. },
  38056. },
  38057. [
  38058. {
  38059. name: "Norm",
  38060. height: math.unit(160, "cm")
  38061. },
  38062. {
  38063. name: "Casual",
  38064. height: math.unit(3200, "m"),
  38065. default: true
  38066. },
  38067. {
  38068. name: "Show-Off",
  38069. height: math.unit(160, "km")
  38070. },
  38071. ]
  38072. ))
  38073. characterMakers.push(() => makeCharacter(
  38074. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38075. {
  38076. front: {
  38077. height: math.unit(7 + 11/12, "feet"),
  38078. weight: math.unit(342.8, "lb"),
  38079. name: "Front",
  38080. image: {
  38081. source: "./media/characters/vivian-orca-dragon/front.svg",
  38082. extra: 1890/1865,
  38083. bottom: 28/1918
  38084. }
  38085. },
  38086. },
  38087. [
  38088. {
  38089. name: "Micro",
  38090. height: math.unit(5, "inches")
  38091. },
  38092. {
  38093. name: "Normal",
  38094. height: math.unit(7 + 11/12, "feet"),
  38095. default: true
  38096. },
  38097. {
  38098. name: "Macro",
  38099. height: math.unit(395 + 7/12, "feet")
  38100. },
  38101. ]
  38102. ))
  38103. characterMakers.push(() => makeCharacter(
  38104. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38105. {
  38106. side: {
  38107. height: math.unit(10, "feet"),
  38108. weight: math.unit(1442, "lb"),
  38109. name: "Side",
  38110. image: {
  38111. source: "./media/characters/lotherakon/side.svg",
  38112. extra: 1604/1497,
  38113. bottom: 89/1693
  38114. }
  38115. },
  38116. },
  38117. [
  38118. {
  38119. name: "Mortal Interaction",
  38120. height: math.unit(10, "feet")
  38121. },
  38122. {
  38123. name: "Large",
  38124. height: math.unit(30, "feet"),
  38125. default: true
  38126. },
  38127. {
  38128. name: "Giant",
  38129. height: math.unit(100, "feet")
  38130. },
  38131. {
  38132. name: "Kaiju",
  38133. height: math.unit(300, "feet")
  38134. },
  38135. {
  38136. name: "Macro",
  38137. height: math.unit(1000, "feet")
  38138. },
  38139. {
  38140. name: "Macro+",
  38141. height: math.unit(3000, "feet")
  38142. },
  38143. {
  38144. name: "Megamacro",
  38145. height: math.unit(10000, "feet")
  38146. },
  38147. {
  38148. name: "City-Crushing",
  38149. height: math.unit(30000, "feet")
  38150. },
  38151. {
  38152. name: "Continent Cracker",
  38153. height: math.unit(30e6, "feet")
  38154. },
  38155. {
  38156. name: "Earth Eclipsing",
  38157. height: math.unit(3e8, "feet")
  38158. },
  38159. {
  38160. name: "Gas Giant Gulper",
  38161. height: math.unit(3e9, "feet")
  38162. },
  38163. {
  38164. name: "Sol-Swallowing",
  38165. height: math.unit(1e11, "feet")
  38166. },
  38167. {
  38168. name: "System Swallower",
  38169. height: math.unit(3e14, "feet")
  38170. },
  38171. {
  38172. name: "Galaxy Gulper",
  38173. height: math.unit(10, "galaxies")
  38174. },
  38175. {
  38176. name: "Light Universal",
  38177. height: math.unit(5, "universes")
  38178. },
  38179. {
  38180. name: "Universe Palm",
  38181. height: math.unit(20, "universes")
  38182. },
  38183. {
  38184. name: "Light Multiversal",
  38185. height: math.unit(5, "multiverses")
  38186. },
  38187. {
  38188. name: "Multiverse Palm",
  38189. height: math.unit(20, "multiverses")
  38190. },
  38191. {
  38192. name: "Inferno Incarnate",
  38193. height: math.unit(1e7, "multiverses")
  38194. },
  38195. ]
  38196. ))
  38197. characterMakers.push(() => makeCharacter(
  38198. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38199. {
  38200. front: {
  38201. height: math.unit(8, "feet"),
  38202. weight: math.unit(1200, "lb"),
  38203. name: "Front",
  38204. image: {
  38205. source: "./media/characters/malithee/front.svg",
  38206. extra: 1675/1640,
  38207. bottom: 162/1837
  38208. }
  38209. },
  38210. },
  38211. [
  38212. {
  38213. name: "Mortal Interaction",
  38214. height: math.unit(8, "feet"),
  38215. default: true
  38216. },
  38217. {
  38218. name: "Large",
  38219. height: math.unit(24, "feet")
  38220. },
  38221. {
  38222. name: "Kaiju",
  38223. height: math.unit(240, "feet")
  38224. },
  38225. {
  38226. name: "Megamacro",
  38227. height: math.unit(8000, "feet")
  38228. },
  38229. {
  38230. name: "Continent Cracker",
  38231. height: math.unit(24e6, "feet")
  38232. },
  38233. {
  38234. name: "Earth-Eclipsing",
  38235. height: math.unit(2.4e8, "feet")
  38236. },
  38237. {
  38238. name: "Sol-Swallowing",
  38239. height: math.unit(8e10, "feet")
  38240. },
  38241. {
  38242. name: "Galaxy Gulper",
  38243. height: math.unit(8, "galaxies")
  38244. },
  38245. {
  38246. name: "Light Universal",
  38247. height: math.unit(4, "universes")
  38248. },
  38249. {
  38250. name: "Universe Atoms",
  38251. height: math.unit(1.829e9, "universes")
  38252. },
  38253. {
  38254. name: "Light Multiversal",
  38255. height: math.unit(4, "multiverses")
  38256. },
  38257. {
  38258. name: "Multiverse Atoms",
  38259. height: math.unit(1.829e9, "multiverses")
  38260. },
  38261. {
  38262. name: "Nigh-Omnipresence",
  38263. height: math.unit(8e261, "multiverses")
  38264. },
  38265. ]
  38266. ))
  38267. characterMakers.push(() => makeCharacter(
  38268. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38269. {
  38270. front: {
  38271. height: math.unit(10, "feet"),
  38272. weight: math.unit(1500, "lb"),
  38273. name: "Front",
  38274. image: {
  38275. source: "./media/characters/miles-thestia/front.svg",
  38276. extra: 1812/1727,
  38277. bottom: 86/1898
  38278. }
  38279. },
  38280. back: {
  38281. height: math.unit(10, "feet"),
  38282. weight: math.unit(1500, "lb"),
  38283. name: "Back",
  38284. image: {
  38285. source: "./media/characters/miles-thestia/back.svg",
  38286. extra: 1799/1690,
  38287. bottom: 47/1846
  38288. }
  38289. },
  38290. frontNsfw: {
  38291. height: math.unit(10, "feet"),
  38292. weight: math.unit(1500, "lb"),
  38293. name: "Front (NSFW)",
  38294. image: {
  38295. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38296. extra: 1812/1727,
  38297. bottom: 86/1898
  38298. }
  38299. },
  38300. },
  38301. [
  38302. {
  38303. name: "Mini-Macro",
  38304. height: math.unit(10, "feet"),
  38305. default: true
  38306. },
  38307. ]
  38308. ))
  38309. characterMakers.push(() => makeCharacter(
  38310. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38311. {
  38312. front: {
  38313. height: math.unit(25, "feet"),
  38314. name: "Front",
  38315. image: {
  38316. source: "./media/characters/titan-s-wulf/front.svg",
  38317. extra: 1560/1484,
  38318. bottom: 76/1636
  38319. }
  38320. },
  38321. },
  38322. [
  38323. {
  38324. name: "Smallest",
  38325. height: math.unit(25, "feet"),
  38326. default: true
  38327. },
  38328. {
  38329. name: "Normal",
  38330. height: math.unit(200, "feet")
  38331. },
  38332. {
  38333. name: "Macro",
  38334. height: math.unit(200000, "feet")
  38335. },
  38336. {
  38337. name: "Multiversal Original",
  38338. height: math.unit(10000, "multiverses")
  38339. },
  38340. ]
  38341. ))
  38342. characterMakers.push(() => makeCharacter(
  38343. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38344. {
  38345. front: {
  38346. height: math.unit(8, "feet"),
  38347. weight: math.unit(553, "lb"),
  38348. name: "Front",
  38349. image: {
  38350. source: "./media/characters/tawendeh/front.svg",
  38351. extra: 2365/2268,
  38352. bottom: 83/2448
  38353. }
  38354. },
  38355. frontClothed: {
  38356. height: math.unit(8, "feet"),
  38357. weight: math.unit(553, "lb"),
  38358. name: "Front (Clothed)",
  38359. image: {
  38360. source: "./media/characters/tawendeh/front-clothed.svg",
  38361. extra: 2365/2268,
  38362. bottom: 83/2448
  38363. }
  38364. },
  38365. back: {
  38366. height: math.unit(8, "feet"),
  38367. weight: math.unit(553, "lb"),
  38368. name: "Back",
  38369. image: {
  38370. source: "./media/characters/tawendeh/back.svg",
  38371. extra: 2397/2294,
  38372. bottom: 42/2439
  38373. }
  38374. },
  38375. },
  38376. [
  38377. {
  38378. name: "Mortal Interaction",
  38379. height: math.unit(8, "feet"),
  38380. default: true
  38381. },
  38382. {
  38383. name: "Giant",
  38384. height: math.unit(80, "feet")
  38385. },
  38386. {
  38387. name: "Macro",
  38388. height: math.unit(800, "feet")
  38389. },
  38390. {
  38391. name: "Megamacro",
  38392. height: math.unit(8000, "feet")
  38393. },
  38394. {
  38395. name: "City-Crushing",
  38396. height: math.unit(24000, "feet")
  38397. },
  38398. {
  38399. name: "Mountain-Mashing",
  38400. height: math.unit(80000, "feet")
  38401. },
  38402. {
  38403. name: "Nation Nemesis",
  38404. height: math.unit(8e6, "feet")
  38405. },
  38406. {
  38407. name: "Continent Cracker",
  38408. height: math.unit(24e6, "feet")
  38409. },
  38410. {
  38411. name: "Earth-Eclipsing",
  38412. height: math.unit(2.4e8, "feet")
  38413. },
  38414. {
  38415. name: "Gas Giant Gulper",
  38416. height: math.unit(2.4e9, "feet")
  38417. },
  38418. {
  38419. name: "Sol-Swallowing",
  38420. height: math.unit(8e10, "feet")
  38421. },
  38422. {
  38423. name: "Galaxy Gulper",
  38424. height: math.unit(8, "galaxies")
  38425. },
  38426. {
  38427. name: "Cosmos Churner",
  38428. height: math.unit(8, "universes")
  38429. },
  38430. {
  38431. name: "Omnipotent Otter",
  38432. height: math.unit(80, "universes")
  38433. },
  38434. ]
  38435. ))
  38436. characterMakers.push(() => makeCharacter(
  38437. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38438. {
  38439. front: {
  38440. height: math.unit(2.6, "meters"),
  38441. weight: math.unit(900, "kg"),
  38442. name: "Front",
  38443. image: {
  38444. source: "./media/characters/neesha/front.svg",
  38445. extra: 1803/1653,
  38446. bottom: 128/1931
  38447. }
  38448. },
  38449. },
  38450. [
  38451. {
  38452. name: "Normal",
  38453. height: math.unit(2.6, "meters"),
  38454. default: true
  38455. },
  38456. {
  38457. name: "Macro",
  38458. height: math.unit(50, "meters")
  38459. },
  38460. ]
  38461. ))
  38462. characterMakers.push(() => makeCharacter(
  38463. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38464. {
  38465. front: {
  38466. height: math.unit(5, "feet"),
  38467. weight: math.unit(185, "lb"),
  38468. name: "Front",
  38469. image: {
  38470. source: "./media/characters/kyera/front.svg",
  38471. extra: 1875/1790,
  38472. bottom: 96/1971
  38473. }
  38474. },
  38475. },
  38476. [
  38477. {
  38478. name: "Normal",
  38479. height: math.unit(5, "feet"),
  38480. default: true
  38481. },
  38482. ]
  38483. ))
  38484. characterMakers.push(() => makeCharacter(
  38485. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38486. {
  38487. front: {
  38488. height: math.unit(7 + 6/12, "feet"),
  38489. weight: math.unit(540, "lb"),
  38490. name: "Front",
  38491. image: {
  38492. source: "./media/characters/yuko/front.svg",
  38493. extra: 1282/1222,
  38494. bottom: 101/1383
  38495. }
  38496. },
  38497. frontClothed: {
  38498. height: math.unit(7 + 6/12, "feet"),
  38499. weight: math.unit(540, "lb"),
  38500. name: "Front (Clothed)",
  38501. image: {
  38502. source: "./media/characters/yuko/front-clothed.svg",
  38503. extra: 1282/1222,
  38504. bottom: 101/1383
  38505. }
  38506. },
  38507. },
  38508. [
  38509. {
  38510. name: "Normal",
  38511. height: math.unit(7 + 6/12, "feet"),
  38512. default: true
  38513. },
  38514. {
  38515. name: "Macro",
  38516. height: math.unit(26 + 9/12, "feet")
  38517. },
  38518. {
  38519. name: "Megamacro",
  38520. height: math.unit(300, "feet")
  38521. },
  38522. {
  38523. name: "Gigamacro",
  38524. height: math.unit(5000, "feet")
  38525. },
  38526. {
  38527. name: "Planetary",
  38528. height: math.unit(10000, "miles")
  38529. },
  38530. ]
  38531. ))
  38532. characterMakers.push(() => makeCharacter(
  38533. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38534. {
  38535. front: {
  38536. height: math.unit(8 + 2/12, "feet"),
  38537. weight: math.unit(600, "lb"),
  38538. name: "Front",
  38539. image: {
  38540. source: "./media/characters/deam-nitrel/front.svg",
  38541. extra: 1308/1234,
  38542. bottom: 125/1433
  38543. }
  38544. },
  38545. },
  38546. [
  38547. {
  38548. name: "Normal",
  38549. height: math.unit(8 + 2/12, "feet"),
  38550. default: true
  38551. },
  38552. ]
  38553. ))
  38554. characterMakers.push(() => makeCharacter(
  38555. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38556. {
  38557. front: {
  38558. height: math.unit(6.1, "feet"),
  38559. weight: math.unit(180, "lb"),
  38560. name: "Front",
  38561. image: {
  38562. source: "./media/characters/skyress/front.svg",
  38563. extra: 1045/915,
  38564. bottom: 28/1073
  38565. }
  38566. },
  38567. maw: {
  38568. height: math.unit(1, "feet"),
  38569. name: "Maw",
  38570. image: {
  38571. source: "./media/characters/skyress/maw.svg"
  38572. }
  38573. },
  38574. },
  38575. [
  38576. {
  38577. name: "Normal",
  38578. height: math.unit(6.1, "feet"),
  38579. default: true
  38580. },
  38581. {
  38582. name: "Macro",
  38583. height: math.unit(200, "feet")
  38584. },
  38585. ]
  38586. ))
  38587. characterMakers.push(() => makeCharacter(
  38588. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38589. {
  38590. front: {
  38591. height: math.unit(4 + 2/12, "feet"),
  38592. weight: math.unit(40, "kg"),
  38593. name: "Front",
  38594. image: {
  38595. source: "./media/characters/amethyst-jones/front.svg",
  38596. extra: 1220/1150,
  38597. bottom: 101/1321
  38598. }
  38599. },
  38600. },
  38601. [
  38602. {
  38603. name: "Normal",
  38604. height: math.unit(4 + 2/12, "feet"),
  38605. default: true
  38606. },
  38607. ]
  38608. ))
  38609. characterMakers.push(() => makeCharacter(
  38610. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38611. {
  38612. front: {
  38613. height: math.unit(1.7, "m"),
  38614. weight: math.unit(135, "lb"),
  38615. name: "Front",
  38616. image: {
  38617. source: "./media/characters/jade/front.svg",
  38618. extra: 1818/1767,
  38619. bottom: 32/1850
  38620. }
  38621. },
  38622. back: {
  38623. height: math.unit(1.7, "m"),
  38624. weight: math.unit(135, "lb"),
  38625. name: "Back",
  38626. image: {
  38627. source: "./media/characters/jade/back.svg",
  38628. extra: 1869/1809,
  38629. bottom: 35/1904
  38630. }
  38631. },
  38632. hand: {
  38633. height: math.unit(0.24, "m"),
  38634. name: "Hand",
  38635. image: {
  38636. source: "./media/characters/jade/hand.svg"
  38637. }
  38638. },
  38639. foot: {
  38640. height: math.unit(0.263, "m"),
  38641. name: "Foot",
  38642. image: {
  38643. source: "./media/characters/jade/foot.svg"
  38644. }
  38645. },
  38646. dick: {
  38647. height: math.unit(0.47, "m"),
  38648. name: "Dick",
  38649. image: {
  38650. source: "./media/characters/jade/dick.svg"
  38651. }
  38652. },
  38653. },
  38654. [
  38655. {
  38656. name: "Micro",
  38657. height: math.unit(22, "cm")
  38658. },
  38659. {
  38660. name: "Normal",
  38661. height: math.unit(1.7, "m"),
  38662. default: true
  38663. },
  38664. {
  38665. name: "Macro",
  38666. height: math.unit(152, "m")
  38667. },
  38668. ]
  38669. ))
  38670. characterMakers.push(() => makeCharacter(
  38671. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38672. {
  38673. front: {
  38674. height: math.unit(100, "miles"),
  38675. weight: math.unit(20000, "tons"),
  38676. name: "Front",
  38677. image: {
  38678. source: "./media/characters/cookie/front.svg",
  38679. extra: 1125/1070,
  38680. bottom: 30/1155
  38681. }
  38682. },
  38683. },
  38684. [
  38685. {
  38686. name: "Big",
  38687. height: math.unit(50, "feet")
  38688. },
  38689. {
  38690. name: "Macro",
  38691. height: math.unit(100, "miles"),
  38692. default: true
  38693. },
  38694. {
  38695. name: "Megamacro",
  38696. height: math.unit(90000, "miles")
  38697. },
  38698. ]
  38699. ))
  38700. characterMakers.push(() => makeCharacter(
  38701. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38702. {
  38703. front: {
  38704. height: math.unit(6, "feet"),
  38705. weight: math.unit(145, "lb"),
  38706. name: "Front",
  38707. image: {
  38708. source: "./media/characters/farzian/front.svg",
  38709. extra: 1902/1693,
  38710. bottom: 108/2010
  38711. }
  38712. },
  38713. },
  38714. [
  38715. {
  38716. name: "Macro",
  38717. height: math.unit(500, "feet"),
  38718. default: true
  38719. },
  38720. ]
  38721. ))
  38722. characterMakers.push(() => makeCharacter(
  38723. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38724. {
  38725. front: {
  38726. height: math.unit(3 + 6/12, "feet"),
  38727. weight: math.unit(50, "lb"),
  38728. name: "Front",
  38729. image: {
  38730. source: "./media/characters/kimberly-tilson/front.svg",
  38731. extra: 1400/1322,
  38732. bottom: 36/1436
  38733. }
  38734. },
  38735. back: {
  38736. height: math.unit(3 + 6/12, "feet"),
  38737. weight: math.unit(50, "lb"),
  38738. name: "Back",
  38739. image: {
  38740. source: "./media/characters/kimberly-tilson/back.svg",
  38741. extra: 1370/1307,
  38742. bottom: 20/1390
  38743. }
  38744. },
  38745. },
  38746. [
  38747. {
  38748. name: "Normal",
  38749. height: math.unit(3 + 6/12, "feet"),
  38750. default: true
  38751. },
  38752. ]
  38753. ))
  38754. characterMakers.push(() => makeCharacter(
  38755. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38756. {
  38757. front: {
  38758. height: math.unit(1148, "feet"),
  38759. weight: math.unit(34057, "lb"),
  38760. name: "Front",
  38761. image: {
  38762. source: "./media/characters/harthos/front.svg",
  38763. extra: 1391/1339,
  38764. bottom: 13/1404
  38765. }
  38766. },
  38767. },
  38768. [
  38769. {
  38770. name: "Macro",
  38771. height: math.unit(1148, "feet"),
  38772. default: true
  38773. },
  38774. ]
  38775. ))
  38776. characterMakers.push(() => makeCharacter(
  38777. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38778. {
  38779. front: {
  38780. height: math.unit(15, "feet"),
  38781. name: "Front",
  38782. image: {
  38783. source: "./media/characters/hypatia/front.svg",
  38784. extra: 1653/1591,
  38785. bottom: 79/1732
  38786. }
  38787. },
  38788. },
  38789. [
  38790. {
  38791. name: "Normal",
  38792. height: math.unit(15, "feet")
  38793. },
  38794. {
  38795. name: "Small",
  38796. height: math.unit(300, "feet")
  38797. },
  38798. {
  38799. name: "Macro",
  38800. height: math.unit(2500, "feet"),
  38801. default: true
  38802. },
  38803. {
  38804. name: "Mega Macro",
  38805. height: math.unit(1500, "miles")
  38806. },
  38807. {
  38808. name: "Giga Macro",
  38809. height: math.unit(1.5e6, "miles")
  38810. },
  38811. ]
  38812. ))
  38813. characterMakers.push(() => makeCharacter(
  38814. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38815. {
  38816. front: {
  38817. height: math.unit(6, "feet"),
  38818. weight: math.unit(200, "lb"),
  38819. name: "Front",
  38820. image: {
  38821. source: "./media/characters/wulver/front.svg",
  38822. extra: 1724/1632,
  38823. bottom: 130/1854
  38824. }
  38825. },
  38826. frontNsfw: {
  38827. height: math.unit(6, "feet"),
  38828. weight: math.unit(200, "lb"),
  38829. name: "Front (NSFW)",
  38830. image: {
  38831. source: "./media/characters/wulver/front-nsfw.svg",
  38832. extra: 1724/1632,
  38833. bottom: 130/1854
  38834. }
  38835. },
  38836. },
  38837. [
  38838. {
  38839. name: "Human-Sized",
  38840. height: math.unit(6, "feet")
  38841. },
  38842. {
  38843. name: "Normal",
  38844. height: math.unit(4, "meters"),
  38845. default: true
  38846. },
  38847. {
  38848. name: "Large",
  38849. height: math.unit(6, "m")
  38850. },
  38851. ]
  38852. ))
  38853. characterMakers.push(() => makeCharacter(
  38854. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38855. {
  38856. front: {
  38857. height: math.unit(7, "feet"),
  38858. name: "Front",
  38859. image: {
  38860. source: "./media/characters/maru/front.svg",
  38861. extra: 1595/1570,
  38862. bottom: 0/1595
  38863. }
  38864. },
  38865. },
  38866. [
  38867. {
  38868. name: "Normal",
  38869. height: math.unit(7, "feet"),
  38870. default: true
  38871. },
  38872. {
  38873. name: "Macro",
  38874. height: math.unit(700, "feet")
  38875. },
  38876. {
  38877. name: "Mega Macro",
  38878. height: math.unit(25, "miles")
  38879. },
  38880. ]
  38881. ))
  38882. characterMakers.push(() => makeCharacter(
  38883. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  38884. {
  38885. front: {
  38886. height: math.unit(6, "feet"),
  38887. weight: math.unit(170, "lb"),
  38888. name: "Front",
  38889. image: {
  38890. source: "./media/characters/xenon/front.svg",
  38891. extra: 1376/1305,
  38892. bottom: 56/1432
  38893. }
  38894. },
  38895. back: {
  38896. height: math.unit(6, "feet"),
  38897. weight: math.unit(170, "lb"),
  38898. name: "Back",
  38899. image: {
  38900. source: "./media/characters/xenon/back.svg",
  38901. extra: 1328/1259,
  38902. bottom: 95/1423
  38903. }
  38904. },
  38905. maw: {
  38906. height: math.unit(0.52, "feet"),
  38907. name: "Maw",
  38908. image: {
  38909. source: "./media/characters/xenon/maw.svg"
  38910. }
  38911. },
  38912. hand: {
  38913. height: math.unit(0.82, "feet"),
  38914. name: "Hand",
  38915. image: {
  38916. source: "./media/characters/xenon/hand.svg"
  38917. }
  38918. },
  38919. foot: {
  38920. height: math.unit(1.13, "feet"),
  38921. name: "Foot",
  38922. image: {
  38923. source: "./media/characters/xenon/foot.svg"
  38924. }
  38925. },
  38926. },
  38927. [
  38928. {
  38929. name: "Micro",
  38930. height: math.unit(0.8, "inches")
  38931. },
  38932. {
  38933. name: "Normal",
  38934. height: math.unit(6, "feet")
  38935. },
  38936. {
  38937. name: "Macro",
  38938. height: math.unit(50, "feet"),
  38939. default: true
  38940. },
  38941. {
  38942. name: "Macro+",
  38943. height: math.unit(250, "feet")
  38944. },
  38945. {
  38946. name: "Megamacro",
  38947. height: math.unit(1500, "feet")
  38948. },
  38949. ]
  38950. ))
  38951. characterMakers.push(() => makeCharacter(
  38952. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  38953. {
  38954. front: {
  38955. height: math.unit(7 + 5/12, "feet"),
  38956. name: "Front",
  38957. image: {
  38958. source: "./media/characters/zane/front.svg",
  38959. extra: 1260/1203,
  38960. bottom: 94/1354
  38961. }
  38962. },
  38963. back: {
  38964. height: math.unit(5.05, "feet"),
  38965. name: "Back",
  38966. image: {
  38967. source: "./media/characters/zane/back.svg",
  38968. extra: 893/829,
  38969. bottom: 30/923
  38970. }
  38971. },
  38972. werewolf: {
  38973. height: math.unit(11, "feet"),
  38974. name: "Werewolf",
  38975. image: {
  38976. source: "./media/characters/zane/werewolf.svg",
  38977. extra: 1383/1323,
  38978. bottom: 89/1472
  38979. }
  38980. },
  38981. foot: {
  38982. height: math.unit(1.46, "feet"),
  38983. name: "Foot",
  38984. image: {
  38985. source: "./media/characters/zane/foot.svg"
  38986. }
  38987. },
  38988. footFront: {
  38989. height: math.unit(0.784, "feet"),
  38990. name: "Foot (Front)",
  38991. image: {
  38992. source: "./media/characters/zane/foot-front.svg"
  38993. }
  38994. },
  38995. dick: {
  38996. height: math.unit(1.95, "feet"),
  38997. name: "Dick",
  38998. image: {
  38999. source: "./media/characters/zane/dick.svg"
  39000. }
  39001. },
  39002. dickWerewolf: {
  39003. height: math.unit(3.77, "feet"),
  39004. name: "Dick (Werewolf)",
  39005. image: {
  39006. source: "./media/characters/zane/dick.svg"
  39007. }
  39008. },
  39009. },
  39010. [
  39011. {
  39012. name: "Normal",
  39013. height: math.unit(7 + 5/12, "feet"),
  39014. default: true
  39015. },
  39016. ]
  39017. ))
  39018. characterMakers.push(() => makeCharacter(
  39019. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39020. {
  39021. front: {
  39022. height: math.unit(6 + 2/12, "feet"),
  39023. weight: math.unit(284, "lb"),
  39024. name: "Front",
  39025. image: {
  39026. source: "./media/characters/benni-desparque/front.svg",
  39027. extra: 1353/1126,
  39028. bottom: 69/1422
  39029. }
  39030. },
  39031. },
  39032. [
  39033. {
  39034. name: "Civilian",
  39035. height: math.unit(6 + 2/12, "feet")
  39036. },
  39037. {
  39038. name: "Normal",
  39039. height: math.unit(98, "feet"),
  39040. default: true
  39041. },
  39042. {
  39043. name: "Kaiju Fighter",
  39044. height: math.unit(268, "feet")
  39045. },
  39046. ]
  39047. ))
  39048. characterMakers.push(() => makeCharacter(
  39049. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39050. {
  39051. front: {
  39052. height: math.unit(5, "feet"),
  39053. weight: math.unit(105, "lb"),
  39054. name: "Front",
  39055. image: {
  39056. source: "./media/characters/maxine/front.svg",
  39057. extra: 1386/1250,
  39058. bottom: 71/1457
  39059. }
  39060. },
  39061. },
  39062. [
  39063. {
  39064. name: "Normal",
  39065. height: math.unit(5, "feet"),
  39066. default: true
  39067. },
  39068. ]
  39069. ))
  39070. characterMakers.push(() => makeCharacter(
  39071. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39072. {
  39073. front: {
  39074. height: math.unit(11 + 7/12, "feet"),
  39075. weight: math.unit(9576, "lb"),
  39076. name: "Front",
  39077. image: {
  39078. source: "./media/characters/scaly/front.svg",
  39079. extra: 888/867,
  39080. bottom: 36/924
  39081. }
  39082. },
  39083. },
  39084. [
  39085. {
  39086. name: "Normal",
  39087. height: math.unit(11 + 7/12, "feet"),
  39088. default: true
  39089. },
  39090. ]
  39091. ))
  39092. characterMakers.push(() => makeCharacter(
  39093. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39094. {
  39095. front: {
  39096. height: math.unit(9, "inches"),
  39097. name: "Front",
  39098. image: {
  39099. source: "./media/characters/saelria/front.svg",
  39100. extra: 662/621,
  39101. bottom: 12/674
  39102. }
  39103. },
  39104. },
  39105. [
  39106. {
  39107. name: "Tiny",
  39108. height: math.unit(9, "inches"),
  39109. default: true
  39110. },
  39111. ]
  39112. ))
  39113. characterMakers.push(() => makeCharacter(
  39114. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39115. {
  39116. front: {
  39117. height: math.unit(80, "meters"),
  39118. weight: math.unit(7000, "tonnes"),
  39119. name: "Front",
  39120. image: {
  39121. source: "./media/characters/tef/front.svg",
  39122. extra: 2036/1991,
  39123. bottom: 54/2090
  39124. }
  39125. },
  39126. back: {
  39127. height: math.unit(80, "meters"),
  39128. weight: math.unit(7000, "tonnes"),
  39129. name: "Back",
  39130. image: {
  39131. source: "./media/characters/tef/back.svg",
  39132. extra: 2036/1991,
  39133. bottom: 54/2090
  39134. }
  39135. },
  39136. },
  39137. [
  39138. {
  39139. name: "Macro",
  39140. height: math.unit(80, "meters"),
  39141. default: true
  39142. },
  39143. ]
  39144. ))
  39145. characterMakers.push(() => makeCharacter(
  39146. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39147. {
  39148. front: {
  39149. height: math.unit(13, "feet"),
  39150. weight: math.unit(6, "tons"),
  39151. name: "Front",
  39152. image: {
  39153. source: "./media/characters/rover/front.svg",
  39154. extra: 1233/1156,
  39155. bottom: 50/1283
  39156. }
  39157. },
  39158. back: {
  39159. height: math.unit(13, "feet"),
  39160. weight: math.unit(6, "tons"),
  39161. name: "Back",
  39162. image: {
  39163. source: "./media/characters/rover/back.svg",
  39164. extra: 1327/1258,
  39165. bottom: 39/1366
  39166. }
  39167. },
  39168. },
  39169. [
  39170. {
  39171. name: "Normal",
  39172. height: math.unit(13, "feet"),
  39173. default: true
  39174. },
  39175. {
  39176. name: "Macro",
  39177. height: math.unit(1300, "feet")
  39178. },
  39179. {
  39180. name: "Megamacro",
  39181. height: math.unit(1300, "miles")
  39182. },
  39183. {
  39184. name: "Gigamacro",
  39185. height: math.unit(1300000, "miles")
  39186. },
  39187. ]
  39188. ))
  39189. characterMakers.push(() => makeCharacter(
  39190. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39191. {
  39192. front: {
  39193. height: math.unit(6, "feet"),
  39194. weight: math.unit(150, "lb"),
  39195. name: "Front",
  39196. image: {
  39197. source: "./media/characters/ariz/front.svg",
  39198. extra: 1401/1346,
  39199. bottom: 5/1406
  39200. }
  39201. },
  39202. },
  39203. [
  39204. {
  39205. name: "Normal",
  39206. height: math.unit(10, "feet"),
  39207. default: true
  39208. },
  39209. ]
  39210. ))
  39211. characterMakers.push(() => makeCharacter(
  39212. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39213. {
  39214. front: {
  39215. height: math.unit(6, "feet"),
  39216. weight: math.unit(140, "lb"),
  39217. name: "Front",
  39218. image: {
  39219. source: "./media/characters/sigrun/front.svg",
  39220. extra: 1418/1359,
  39221. bottom: 27/1445
  39222. }
  39223. },
  39224. },
  39225. [
  39226. {
  39227. name: "Macro",
  39228. height: math.unit(35, "feet"),
  39229. default: true
  39230. },
  39231. ]
  39232. ))
  39233. characterMakers.push(() => makeCharacter(
  39234. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39235. {
  39236. front: {
  39237. height: math.unit(6, "feet"),
  39238. weight: math.unit(150, "lb"),
  39239. name: "Front",
  39240. image: {
  39241. source: "./media/characters/numin/front.svg",
  39242. extra: 1433/1388,
  39243. bottom: 12/1445
  39244. }
  39245. },
  39246. },
  39247. [
  39248. {
  39249. name: "Macro",
  39250. height: math.unit(21.5, "km"),
  39251. default: true
  39252. },
  39253. ]
  39254. ))
  39255. characterMakers.push(() => makeCharacter(
  39256. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39257. {
  39258. front: {
  39259. height: math.unit(6, "feet"),
  39260. weight: math.unit(463, "lb"),
  39261. name: "Front",
  39262. image: {
  39263. source: "./media/characters/melwa/front.svg",
  39264. extra: 1307/1248,
  39265. bottom: 93/1400
  39266. }
  39267. },
  39268. },
  39269. [
  39270. {
  39271. name: "Macro",
  39272. height: math.unit(50, "meters"),
  39273. default: true
  39274. },
  39275. ]
  39276. ))
  39277. characterMakers.push(() => makeCharacter(
  39278. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39279. {
  39280. front: {
  39281. height: math.unit(325, "feet"),
  39282. name: "Front",
  39283. image: {
  39284. source: "./media/characters/zorkaiju/front.svg",
  39285. extra: 1955/1814,
  39286. bottom: 40/1995
  39287. }
  39288. },
  39289. frontExtended: {
  39290. height: math.unit(325, "feet"),
  39291. name: "Front (Extended)",
  39292. image: {
  39293. source: "./media/characters/zorkaiju/front-extended.svg",
  39294. extra: 1955/1814,
  39295. bottom: 40/1995
  39296. }
  39297. },
  39298. side: {
  39299. height: math.unit(325, "feet"),
  39300. name: "Side",
  39301. image: {
  39302. source: "./media/characters/zorkaiju/side.svg",
  39303. extra: 1495/1396,
  39304. bottom: 17/1512
  39305. }
  39306. },
  39307. sideExtended: {
  39308. height: math.unit(325, "feet"),
  39309. name: "Side (Extended)",
  39310. image: {
  39311. source: "./media/characters/zorkaiju/side-extended.svg",
  39312. extra: 1495/1396,
  39313. bottom: 17/1512
  39314. }
  39315. },
  39316. back: {
  39317. height: math.unit(325, "feet"),
  39318. name: "Back",
  39319. image: {
  39320. source: "./media/characters/zorkaiju/back.svg",
  39321. extra: 1959/1821,
  39322. bottom: 31/1990
  39323. }
  39324. },
  39325. backExtended: {
  39326. height: math.unit(325, "feet"),
  39327. name: "Back (Extended)",
  39328. image: {
  39329. source: "./media/characters/zorkaiju/back-extended.svg",
  39330. extra: 1959/1821,
  39331. bottom: 31/1990
  39332. }
  39333. },
  39334. hand: {
  39335. height: math.unit(58.4, "feet"),
  39336. name: "Hand",
  39337. image: {
  39338. source: "./media/characters/zorkaiju/hand.svg"
  39339. }
  39340. },
  39341. handExtended: {
  39342. height: math.unit(61.4, "feet"),
  39343. name: "Hand (Extended)",
  39344. image: {
  39345. source: "./media/characters/zorkaiju/hand-extended.svg"
  39346. }
  39347. },
  39348. foot: {
  39349. height: math.unit(95, "feet"),
  39350. name: "Foot",
  39351. image: {
  39352. source: "./media/characters/zorkaiju/foot.svg"
  39353. }
  39354. },
  39355. leftArm: {
  39356. height: math.unit(59, "feet"),
  39357. name: "Left Arm",
  39358. image: {
  39359. source: "./media/characters/zorkaiju/left-arm.svg"
  39360. }
  39361. },
  39362. rightArm: {
  39363. height: math.unit(59, "feet"),
  39364. name: "Right Arm",
  39365. image: {
  39366. source: "./media/characters/zorkaiju/right-arm.svg"
  39367. }
  39368. },
  39369. tail: {
  39370. height: math.unit(104, "feet"),
  39371. name: "Tail",
  39372. image: {
  39373. source: "./media/characters/zorkaiju/tail.svg"
  39374. }
  39375. },
  39376. tailExtended: {
  39377. height: math.unit(104, "feet"),
  39378. name: "Tail (Extended)",
  39379. image: {
  39380. source: "./media/characters/zorkaiju/tail-extended.svg"
  39381. }
  39382. },
  39383. tailBottom: {
  39384. height: math.unit(104, "feet"),
  39385. name: "Tail Bottom",
  39386. image: {
  39387. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39388. }
  39389. },
  39390. crystal: {
  39391. height: math.unit(27.54, "feet"),
  39392. name: "Crystal",
  39393. image: {
  39394. source: "./media/characters/zorkaiju/crystal.svg"
  39395. }
  39396. },
  39397. },
  39398. [
  39399. {
  39400. name: "Kaiju",
  39401. height: math.unit(325, "feet"),
  39402. default: true
  39403. },
  39404. ]
  39405. ))
  39406. characterMakers.push(() => makeCharacter(
  39407. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39408. {
  39409. front: {
  39410. height: math.unit(6 + 1/12, "feet"),
  39411. weight: math.unit(115, "lb"),
  39412. name: "Front",
  39413. image: {
  39414. source: "./media/characters/bailey-belfry/front.svg",
  39415. extra: 1240/1121,
  39416. bottom: 101/1341
  39417. }
  39418. },
  39419. },
  39420. [
  39421. {
  39422. name: "Normal",
  39423. height: math.unit(6 + 1/12, "feet"),
  39424. default: true
  39425. },
  39426. ]
  39427. ))
  39428. characterMakers.push(() => makeCharacter(
  39429. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39430. {
  39431. side: {
  39432. height: math.unit(4, "meters"),
  39433. weight: math.unit(250, "kg"),
  39434. name: "Side",
  39435. image: {
  39436. source: "./media/characters/blacky/side.svg",
  39437. extra: 1027/919,
  39438. bottom: 43/1070
  39439. }
  39440. },
  39441. maw: {
  39442. height: math.unit(1, "meters"),
  39443. name: "Maw",
  39444. image: {
  39445. source: "./media/characters/blacky/maw.svg"
  39446. }
  39447. },
  39448. paw: {
  39449. height: math.unit(1, "meters"),
  39450. name: "Paw",
  39451. image: {
  39452. source: "./media/characters/blacky/paw.svg"
  39453. }
  39454. },
  39455. },
  39456. [
  39457. {
  39458. name: "Normal",
  39459. height: math.unit(4, "meters"),
  39460. default: true
  39461. },
  39462. ]
  39463. ))
  39464. characterMakers.push(() => makeCharacter(
  39465. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39466. {
  39467. front: {
  39468. height: math.unit(170, "cm"),
  39469. weight: math.unit(66, "kg"),
  39470. name: "Front",
  39471. image: {
  39472. source: "./media/characters/thux-ei/front.svg",
  39473. extra: 1109/1011,
  39474. bottom: 8/1117
  39475. }
  39476. },
  39477. },
  39478. [
  39479. {
  39480. name: "Normal",
  39481. height: math.unit(170, "cm"),
  39482. default: true
  39483. },
  39484. ]
  39485. ))
  39486. characterMakers.push(() => makeCharacter(
  39487. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39488. {
  39489. front: {
  39490. height: math.unit(5, "feet"),
  39491. weight: math.unit(120, "lb"),
  39492. name: "Front",
  39493. image: {
  39494. source: "./media/characters/roxanne-voltaire/front.svg",
  39495. extra: 1901/1779,
  39496. bottom: 53/1954
  39497. }
  39498. },
  39499. },
  39500. [
  39501. {
  39502. name: "Normal",
  39503. height: math.unit(5, "feet"),
  39504. default: true
  39505. },
  39506. {
  39507. name: "Giant",
  39508. height: math.unit(50, "feet")
  39509. },
  39510. {
  39511. name: "Titan",
  39512. height: math.unit(500, "feet")
  39513. },
  39514. {
  39515. name: "Macro",
  39516. height: math.unit(5000, "feet")
  39517. },
  39518. {
  39519. name: "Megamacro",
  39520. height: math.unit(50000, "feet")
  39521. },
  39522. {
  39523. name: "Gigamacro",
  39524. height: math.unit(500000, "feet")
  39525. },
  39526. {
  39527. name: "Teramacro",
  39528. height: math.unit(5e6, "feet")
  39529. },
  39530. ]
  39531. ))
  39532. characterMakers.push(() => makeCharacter(
  39533. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39534. {
  39535. front: {
  39536. height: math.unit(6 + 2/12, "feet"),
  39537. name: "Front",
  39538. image: {
  39539. source: "./media/characters/squeaks/front.svg",
  39540. extra: 1823/1768,
  39541. bottom: 138/1961
  39542. }
  39543. },
  39544. },
  39545. [
  39546. {
  39547. name: "Micro",
  39548. height: math.unit(0.5, "inches")
  39549. },
  39550. {
  39551. name: "Normal",
  39552. height: math.unit(6 + 2/12, "feet"),
  39553. default: true
  39554. },
  39555. {
  39556. name: "Macro",
  39557. height: math.unit(600, "feet")
  39558. },
  39559. ]
  39560. ))
  39561. characterMakers.push(() => makeCharacter(
  39562. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39563. {
  39564. front: {
  39565. height: math.unit(1.72, "meters"),
  39566. name: "Front",
  39567. image: {
  39568. source: "./media/characters/archinger/front.svg",
  39569. extra: 1861/1675,
  39570. bottom: 125/1986
  39571. }
  39572. },
  39573. back: {
  39574. height: math.unit(1.72, "meters"),
  39575. name: "Back",
  39576. image: {
  39577. source: "./media/characters/archinger/back.svg",
  39578. extra: 1844/1701,
  39579. bottom: 104/1948
  39580. }
  39581. },
  39582. cock: {
  39583. height: math.unit(0.59, "feet"),
  39584. name: "Cock",
  39585. image: {
  39586. source: "./media/characters/archinger/cock.svg"
  39587. }
  39588. },
  39589. },
  39590. [
  39591. {
  39592. name: "Normal",
  39593. height: math.unit(1.72, "meters"),
  39594. default: true
  39595. },
  39596. {
  39597. name: "Macro",
  39598. height: math.unit(84, "meters")
  39599. },
  39600. {
  39601. name: "Macro+",
  39602. height: math.unit(112, "meters")
  39603. },
  39604. {
  39605. name: "Macro++",
  39606. height: math.unit(960, "meters")
  39607. },
  39608. {
  39609. name: "Macro+++",
  39610. height: math.unit(4, "km")
  39611. },
  39612. {
  39613. name: "Macro++++",
  39614. height: math.unit(48, "km")
  39615. },
  39616. {
  39617. name: "Macro+++++",
  39618. height: math.unit(4500, "km")
  39619. },
  39620. ]
  39621. ))
  39622. characterMakers.push(() => makeCharacter(
  39623. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39624. {
  39625. front: {
  39626. height: math.unit(5 + 5/12, "feet"),
  39627. name: "Front",
  39628. image: {
  39629. source: "./media/characters/alsnapz/front.svg",
  39630. extra: 1157/1065,
  39631. bottom: 42/1199
  39632. }
  39633. },
  39634. },
  39635. [
  39636. {
  39637. name: "Normal",
  39638. height: math.unit(5 + 5/12, "feet"),
  39639. default: true
  39640. },
  39641. ]
  39642. ))
  39643. characterMakers.push(() => makeCharacter(
  39644. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39645. {
  39646. side: {
  39647. height: math.unit(3.2, "earths"),
  39648. name: "Side",
  39649. image: {
  39650. source: "./media/characters/mag/side.svg",
  39651. extra: 1331/1008,
  39652. bottom: 52/1383
  39653. }
  39654. },
  39655. wing: {
  39656. height: math.unit(1.94, "earths"),
  39657. name: "Wing",
  39658. image: {
  39659. source: "./media/characters/mag/wing.svg"
  39660. }
  39661. },
  39662. dick: {
  39663. height: math.unit(1.8, "earths"),
  39664. name: "Dick",
  39665. image: {
  39666. source: "./media/characters/mag/dick.svg"
  39667. }
  39668. },
  39669. ass: {
  39670. height: math.unit(1.33, "earths"),
  39671. name: "Ass",
  39672. image: {
  39673. source: "./media/characters/mag/ass.svg"
  39674. }
  39675. },
  39676. head: {
  39677. height: math.unit(1.1, "earths"),
  39678. name: "Head",
  39679. image: {
  39680. source: "./media/characters/mag/head.svg"
  39681. }
  39682. },
  39683. maw: {
  39684. height: math.unit(1.62, "earths"),
  39685. name: "Maw",
  39686. image: {
  39687. source: "./media/characters/mag/maw.svg"
  39688. }
  39689. },
  39690. },
  39691. [
  39692. {
  39693. name: "Small",
  39694. height: math.unit(162, "feet")
  39695. },
  39696. {
  39697. name: "Normal",
  39698. height: math.unit(3.2, "earths"),
  39699. default: true
  39700. },
  39701. ]
  39702. ))
  39703. characterMakers.push(() => makeCharacter(
  39704. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39705. {
  39706. front: {
  39707. height: math.unit(512, "feet"),
  39708. weight: math.unit(63509, "tonnes"),
  39709. name: "Front",
  39710. image: {
  39711. source: "./media/characters/vorrel-harroc/front.svg",
  39712. extra: 1075/1063,
  39713. bottom: 62/1137
  39714. }
  39715. },
  39716. },
  39717. [
  39718. {
  39719. name: "Normal",
  39720. height: math.unit(10, "feet")
  39721. },
  39722. {
  39723. name: "Macro",
  39724. height: math.unit(512, "feet"),
  39725. default: true
  39726. },
  39727. {
  39728. name: "Megamacro",
  39729. height: math.unit(256, "miles")
  39730. },
  39731. {
  39732. name: "Gigamacro",
  39733. height: math.unit(4096, "miles")
  39734. },
  39735. ]
  39736. ))
  39737. characterMakers.push(() => makeCharacter(
  39738. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  39739. {
  39740. side: {
  39741. height: math.unit(50, "feet"),
  39742. name: "Side",
  39743. image: {
  39744. source: "./media/characters/froimar/side.svg",
  39745. extra: 855/638,
  39746. bottom: 99/954
  39747. }
  39748. },
  39749. },
  39750. [
  39751. {
  39752. name: "Macro",
  39753. height: math.unit(50, "feet"),
  39754. default: true
  39755. },
  39756. ]
  39757. ))
  39758. characterMakers.push(() => makeCharacter(
  39759. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  39760. {
  39761. front: {
  39762. height: math.unit(210, "miles"),
  39763. name: "Front",
  39764. image: {
  39765. source: "./media/characters/timothy/front.svg",
  39766. extra: 1007/943,
  39767. bottom: 62/1069
  39768. }
  39769. },
  39770. frontSkirt: {
  39771. height: math.unit(210, "miles"),
  39772. name: "Front (Skirt)",
  39773. image: {
  39774. source: "./media/characters/timothy/front-skirt.svg",
  39775. extra: 1007/943,
  39776. bottom: 62/1069
  39777. }
  39778. },
  39779. frontCoat: {
  39780. height: math.unit(210, "miles"),
  39781. name: "Front (Coat)",
  39782. image: {
  39783. source: "./media/characters/timothy/front-coat.svg",
  39784. extra: 1007/943,
  39785. bottom: 62/1069
  39786. }
  39787. },
  39788. },
  39789. [
  39790. {
  39791. name: "Macro",
  39792. height: math.unit(210, "miles"),
  39793. default: true
  39794. },
  39795. {
  39796. name: "Megamacro",
  39797. height: math.unit(210000, "miles")
  39798. },
  39799. ]
  39800. ))
  39801. characterMakers.push(() => makeCharacter(
  39802. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  39803. {
  39804. front: {
  39805. height: math.unit(188, "feet"),
  39806. name: "Front",
  39807. image: {
  39808. source: "./media/characters/pyotr/front.svg",
  39809. extra: 1912/1826,
  39810. bottom: 18/1930
  39811. }
  39812. },
  39813. },
  39814. [
  39815. {
  39816. name: "Macro",
  39817. height: math.unit(188, "feet"),
  39818. default: true
  39819. },
  39820. {
  39821. name: "Megamacro",
  39822. height: math.unit(8, "miles")
  39823. },
  39824. ]
  39825. ))
  39826. characterMakers.push(() => makeCharacter(
  39827. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  39828. {
  39829. side: {
  39830. height: math.unit(10, "feet"),
  39831. weight: math.unit(4500, "lb"),
  39832. name: "Side",
  39833. image: {
  39834. source: "./media/characters/ackart/side.svg",
  39835. extra: 1776/1668,
  39836. bottom: 116/1892
  39837. }
  39838. },
  39839. },
  39840. [
  39841. {
  39842. name: "Normal",
  39843. height: math.unit(10, "feet"),
  39844. default: true
  39845. },
  39846. ]
  39847. ))
  39848. characterMakers.push(() => makeCharacter(
  39849. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  39850. {
  39851. side: {
  39852. height: math.unit(21, "feet"),
  39853. name: "Side",
  39854. image: {
  39855. source: "./media/characters/nolow/side.svg",
  39856. extra: 1484/1434,
  39857. bottom: 85/1569
  39858. }
  39859. },
  39860. sideErect: {
  39861. height: math.unit(21, "feet"),
  39862. name: "Side-erect",
  39863. image: {
  39864. source: "./media/characters/nolow/side-erect.svg",
  39865. extra: 1484/1434,
  39866. bottom: 85/1569
  39867. }
  39868. },
  39869. },
  39870. [
  39871. {
  39872. name: "Regular",
  39873. height: math.unit(12, "feet")
  39874. },
  39875. {
  39876. name: "Big Chee",
  39877. height: math.unit(21, "feet"),
  39878. default: true
  39879. },
  39880. ]
  39881. ))
  39882. characterMakers.push(() => makeCharacter(
  39883. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  39884. {
  39885. front: {
  39886. height: math.unit(7, "feet"),
  39887. weight: math.unit(250, "lb"),
  39888. name: "Front",
  39889. image: {
  39890. source: "./media/characters/nines/front.svg",
  39891. extra: 1741/1607,
  39892. bottom: 41/1782
  39893. }
  39894. },
  39895. side: {
  39896. height: math.unit(7, "feet"),
  39897. weight: math.unit(250, "lb"),
  39898. name: "Side",
  39899. image: {
  39900. source: "./media/characters/nines/side.svg",
  39901. extra: 1854/1735,
  39902. bottom: 93/1947
  39903. }
  39904. },
  39905. back: {
  39906. height: math.unit(7, "feet"),
  39907. weight: math.unit(250, "lb"),
  39908. name: "Back",
  39909. image: {
  39910. source: "./media/characters/nines/back.svg",
  39911. extra: 1748/1615,
  39912. bottom: 20/1768
  39913. }
  39914. },
  39915. },
  39916. [
  39917. {
  39918. name: "Megamacro",
  39919. height: math.unit(99, "km"),
  39920. default: true
  39921. },
  39922. ]
  39923. ))
  39924. characterMakers.push(() => makeCharacter(
  39925. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  39926. {
  39927. front: {
  39928. height: math.unit(5 + 10/12, "feet"),
  39929. weight: math.unit(210, "lb"),
  39930. name: "Front",
  39931. image: {
  39932. source: "./media/characters/zenith/front.svg",
  39933. extra: 1531/1452,
  39934. bottom: 198/1729
  39935. }
  39936. },
  39937. back: {
  39938. height: math.unit(5 + 10/12, "feet"),
  39939. weight: math.unit(210, "lb"),
  39940. name: "Back",
  39941. image: {
  39942. source: "./media/characters/zenith/back.svg",
  39943. extra: 1571/1487,
  39944. bottom: 75/1646
  39945. }
  39946. },
  39947. },
  39948. [
  39949. {
  39950. name: "Normal",
  39951. height: math.unit(5 + 10/12, "feet"),
  39952. default: true
  39953. }
  39954. ]
  39955. ))
  39956. characterMakers.push(() => makeCharacter(
  39957. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  39958. {
  39959. front: {
  39960. height: math.unit(4, "feet"),
  39961. weight: math.unit(60, "lb"),
  39962. name: "Front",
  39963. image: {
  39964. source: "./media/characters/jasper/front.svg",
  39965. extra: 1450/1379,
  39966. bottom: 19/1469
  39967. }
  39968. },
  39969. },
  39970. [
  39971. {
  39972. name: "Normal",
  39973. height: math.unit(4, "feet"),
  39974. default: true
  39975. },
  39976. ]
  39977. ))
  39978. characterMakers.push(() => makeCharacter(
  39979. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  39980. {
  39981. front: {
  39982. height: math.unit(6 + 5/12, "feet"),
  39983. weight: math.unit(290, "lb"),
  39984. name: "Front",
  39985. image: {
  39986. source: "./media/characters/tiberius-thyben/front.svg",
  39987. extra: 757/739,
  39988. bottom: 39/796
  39989. }
  39990. },
  39991. },
  39992. [
  39993. {
  39994. name: "Micro",
  39995. height: math.unit(1.5, "inches")
  39996. },
  39997. {
  39998. name: "Normal",
  39999. height: math.unit(6 + 5/12, "feet"),
  40000. default: true
  40001. },
  40002. {
  40003. name: "Macro",
  40004. height: math.unit(300, "feet")
  40005. },
  40006. ]
  40007. ))
  40008. characterMakers.push(() => makeCharacter(
  40009. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40010. {
  40011. front: {
  40012. height: math.unit(5 + 6/12, "feet"),
  40013. weight: math.unit(60, "kg"),
  40014. name: "Front",
  40015. image: {
  40016. source: "./media/characters/sabre/front.svg",
  40017. extra: 738/671,
  40018. bottom: 27/765
  40019. }
  40020. },
  40021. },
  40022. [
  40023. {
  40024. name: "Teeny",
  40025. height: math.unit(2, "inches")
  40026. },
  40027. {
  40028. name: "Smol",
  40029. height: math.unit(8, "inches")
  40030. },
  40031. {
  40032. name: "Normal",
  40033. height: math.unit(5 + 6/12, "feet"),
  40034. default: true
  40035. },
  40036. {
  40037. name: "Mini-Macro",
  40038. height: math.unit(15, "feet")
  40039. },
  40040. {
  40041. name: "Macro",
  40042. height: math.unit(50, "feet")
  40043. },
  40044. ]
  40045. ))
  40046. characterMakers.push(() => makeCharacter(
  40047. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40048. {
  40049. front: {
  40050. height: math.unit(6 + 4/12, "feet"),
  40051. weight: math.unit(170, "lb"),
  40052. name: "Front",
  40053. image: {
  40054. source: "./media/characters/charlie/front.svg",
  40055. extra: 1348/1228,
  40056. bottom: 15/1363
  40057. }
  40058. },
  40059. },
  40060. [
  40061. {
  40062. name: "Macro",
  40063. height: math.unit(1700, "meters"),
  40064. default: true
  40065. },
  40066. {
  40067. name: "MegaMacro",
  40068. height: math.unit(20400, "meters")
  40069. },
  40070. ]
  40071. ))
  40072. characterMakers.push(() => makeCharacter(
  40073. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40074. {
  40075. front: {
  40076. height: math.unit(6 + 3/12, "feet"),
  40077. weight: math.unit(185, "lb"),
  40078. name: "Front",
  40079. image: {
  40080. source: "./media/characters/susan-grant/front.svg",
  40081. extra: 1351/1327,
  40082. bottom: 26/1377
  40083. }
  40084. },
  40085. },
  40086. [
  40087. {
  40088. name: "Normal",
  40089. height: math.unit(6 + 3/12, "feet"),
  40090. default: true
  40091. },
  40092. {
  40093. name: "Macro",
  40094. height: math.unit(225, "feet")
  40095. },
  40096. {
  40097. name: "Macro+",
  40098. height: math.unit(900, "feet")
  40099. },
  40100. {
  40101. name: "MegaMacro",
  40102. height: math.unit(14400, "feet")
  40103. },
  40104. ]
  40105. ))
  40106. characterMakers.push(() => makeCharacter(
  40107. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40108. {
  40109. front: {
  40110. height: math.unit(5 + 4/12, "feet"),
  40111. weight: math.unit(110, "lb"),
  40112. name: "Front",
  40113. image: {
  40114. source: "./media/characters/axel-isanov/front.svg",
  40115. extra: 1096/1065,
  40116. bottom: 13/1109
  40117. }
  40118. },
  40119. },
  40120. [
  40121. {
  40122. name: "Normal",
  40123. height: math.unit(5 + 4/12, "feet"),
  40124. default: true
  40125. },
  40126. ]
  40127. ))
  40128. characterMakers.push(() => makeCharacter(
  40129. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40130. {
  40131. front: {
  40132. height: math.unit(9, "feet"),
  40133. weight: math.unit(467, "lb"),
  40134. name: "Front",
  40135. image: {
  40136. source: "./media/characters/necahual/front.svg",
  40137. extra: 920/873,
  40138. bottom: 26/946
  40139. }
  40140. },
  40141. back: {
  40142. height: math.unit(9, "feet"),
  40143. weight: math.unit(467, "lb"),
  40144. name: "Back",
  40145. image: {
  40146. source: "./media/characters/necahual/back.svg",
  40147. extra: 930/884,
  40148. bottom: 16/946
  40149. }
  40150. },
  40151. frontUnderwear: {
  40152. height: math.unit(9, "feet"),
  40153. weight: math.unit(467, "lb"),
  40154. name: "Front (Underwear)",
  40155. image: {
  40156. source: "./media/characters/necahual/front-underwear.svg",
  40157. extra: 920/873,
  40158. bottom: 26/946
  40159. }
  40160. },
  40161. frontDressed: {
  40162. height: math.unit(9, "feet"),
  40163. weight: math.unit(467, "lb"),
  40164. name: "Front (Dressed)",
  40165. image: {
  40166. source: "./media/characters/necahual/front-dressed.svg",
  40167. extra: 920/873,
  40168. bottom: 26/946
  40169. }
  40170. },
  40171. },
  40172. [
  40173. {
  40174. name: "Comprsesed",
  40175. height: math.unit(9, "feet")
  40176. },
  40177. {
  40178. name: "Natural",
  40179. height: math.unit(15, "feet"),
  40180. default: true
  40181. },
  40182. {
  40183. name: "Boosted",
  40184. height: math.unit(50, "feet")
  40185. },
  40186. {
  40187. name: "Boosted+",
  40188. height: math.unit(150, "feet")
  40189. },
  40190. {
  40191. name: "Max",
  40192. height: math.unit(500, "feet")
  40193. },
  40194. ]
  40195. ))
  40196. characterMakers.push(() => makeCharacter(
  40197. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40198. {
  40199. front: {
  40200. height: math.unit(22 + 1/12, "feet"),
  40201. weight: math.unit(3200, "lb"),
  40202. name: "Front",
  40203. image: {
  40204. source: "./media/characters/theo-acacia/front.svg",
  40205. extra: 1796/1741,
  40206. bottom: 83/1879
  40207. }
  40208. },
  40209. frontUnderwear: {
  40210. height: math.unit(22 + 1/12, "feet"),
  40211. weight: math.unit(3200, "lb"),
  40212. name: "Front (Underwear)",
  40213. image: {
  40214. source: "./media/characters/theo-acacia/front-underwear.svg",
  40215. extra: 1796/1741,
  40216. bottom: 83/1879
  40217. }
  40218. },
  40219. frontNude: {
  40220. height: math.unit(22 + 1/12, "feet"),
  40221. weight: math.unit(3200, "lb"),
  40222. name: "Front (Nude)",
  40223. image: {
  40224. source: "./media/characters/theo-acacia/front-nude.svg",
  40225. extra: 1796/1741,
  40226. bottom: 83/1879
  40227. }
  40228. },
  40229. },
  40230. [
  40231. {
  40232. name: "Normal",
  40233. height: math.unit(22 + 1/12, "feet"),
  40234. default: true
  40235. },
  40236. ]
  40237. ))
  40238. characterMakers.push(() => makeCharacter(
  40239. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40240. {
  40241. front: {
  40242. height: math.unit(20, "feet"),
  40243. name: "Front",
  40244. image: {
  40245. source: "./media/characters/astra/front.svg",
  40246. extra: 1850/1714,
  40247. bottom: 106/1956
  40248. }
  40249. },
  40250. frontUndressed: {
  40251. height: math.unit(20, "feet"),
  40252. name: "Front (Undressed)",
  40253. image: {
  40254. source: "./media/characters/astra/front-undressed.svg",
  40255. extra: 1926/1749,
  40256. bottom: 0/1926
  40257. }
  40258. },
  40259. hand: {
  40260. height: math.unit(1.53, "feet"),
  40261. name: "Hand",
  40262. image: {
  40263. source: "./media/characters/astra/hand.svg"
  40264. }
  40265. },
  40266. paw: {
  40267. height: math.unit(1.53, "feet"),
  40268. name: "Paw",
  40269. image: {
  40270. source: "./media/characters/astra/paw.svg"
  40271. }
  40272. },
  40273. },
  40274. [
  40275. {
  40276. name: "Smallest",
  40277. height: math.unit(20, "feet")
  40278. },
  40279. {
  40280. name: "Normal",
  40281. height: math.unit(1e9, "miles"),
  40282. default: true
  40283. },
  40284. {
  40285. name: "Larger",
  40286. height: math.unit(5, "multiverses")
  40287. },
  40288. {
  40289. name: "Largest",
  40290. height: math.unit(1e9, "multiverses")
  40291. },
  40292. ]
  40293. ))
  40294. characterMakers.push(() => makeCharacter(
  40295. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40296. {
  40297. front: {
  40298. height: math.unit(8, "feet"),
  40299. name: "Front",
  40300. image: {
  40301. source: "./media/characters/breanna/front.svg",
  40302. extra: 1912/1632,
  40303. bottom: 33/1945
  40304. }
  40305. },
  40306. },
  40307. [
  40308. {
  40309. name: "Smallest",
  40310. height: math.unit(8, "feet")
  40311. },
  40312. {
  40313. name: "Normal",
  40314. height: math.unit(1, "mile"),
  40315. default: true
  40316. },
  40317. {
  40318. name: "Maximum",
  40319. height: math.unit(1500000000000, "lightyears")
  40320. },
  40321. ]
  40322. ))
  40323. characterMakers.push(() => makeCharacter(
  40324. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40325. {
  40326. front: {
  40327. height: math.unit(5 + 11/12, "feet"),
  40328. weight: math.unit(155, "lb"),
  40329. name: "Front",
  40330. image: {
  40331. source: "./media/characters/cai/front.svg",
  40332. extra: 1823/1702,
  40333. bottom: 32/1855
  40334. }
  40335. },
  40336. back: {
  40337. height: math.unit(5 + 11/12, "feet"),
  40338. weight: math.unit(155, "lb"),
  40339. name: "Back",
  40340. image: {
  40341. source: "./media/characters/cai/back.svg",
  40342. extra: 1809/1708,
  40343. bottom: 31/1840
  40344. }
  40345. },
  40346. },
  40347. [
  40348. {
  40349. name: "Normal",
  40350. height: math.unit(5 + 11/12, "feet"),
  40351. default: true
  40352. },
  40353. {
  40354. name: "Big",
  40355. height: math.unit(15, "feet")
  40356. },
  40357. {
  40358. name: "Macro",
  40359. height: math.unit(200, "feet")
  40360. },
  40361. ]
  40362. ))
  40363. characterMakers.push(() => makeCharacter(
  40364. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40365. {
  40366. front: {
  40367. height: math.unit(5 + 6/12, "feet"),
  40368. weight: math.unit(160, "lb"),
  40369. name: "Front",
  40370. image: {
  40371. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40372. extra: 1227/1174,
  40373. bottom: 37/1264
  40374. }
  40375. },
  40376. },
  40377. [
  40378. {
  40379. name: "Macro",
  40380. height: math.unit(444, "meters"),
  40381. default: true
  40382. },
  40383. ]
  40384. ))
  40385. characterMakers.push(() => makeCharacter(
  40386. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40387. {
  40388. front: {
  40389. height: math.unit(18 + 7/12, "feet"),
  40390. name: "Front",
  40391. image: {
  40392. source: "./media/characters/rex/front.svg",
  40393. extra: 1941/1807,
  40394. bottom: 66/2007
  40395. }
  40396. },
  40397. back: {
  40398. height: math.unit(18 + 7/12, "feet"),
  40399. name: "Back",
  40400. image: {
  40401. source: "./media/characters/rex/back.svg",
  40402. extra: 1937/1822,
  40403. bottom: 42/1979
  40404. }
  40405. },
  40406. boot: {
  40407. height: math.unit(3.45, "feet"),
  40408. name: "Boot",
  40409. image: {
  40410. source: "./media/characters/rex/boot.svg"
  40411. }
  40412. },
  40413. paw: {
  40414. height: math.unit(4.17, "feet"),
  40415. name: "Paw",
  40416. image: {
  40417. source: "./media/characters/rex/paw.svg"
  40418. }
  40419. },
  40420. head: {
  40421. height: math.unit(6.728, "feet"),
  40422. name: "Head",
  40423. image: {
  40424. source: "./media/characters/rex/head.svg"
  40425. }
  40426. },
  40427. },
  40428. [
  40429. {
  40430. name: "Nano",
  40431. height: math.unit(18 + 7/12, "feet")
  40432. },
  40433. {
  40434. name: "Micro",
  40435. height: math.unit(1.5, "megameters")
  40436. },
  40437. {
  40438. name: "Normal",
  40439. height: math.unit(440, "megameters"),
  40440. default: true
  40441. },
  40442. {
  40443. name: "Macro",
  40444. height: math.unit(2.5, "gigameters")
  40445. },
  40446. {
  40447. name: "Gigamacro",
  40448. height: math.unit(2, "galaxies")
  40449. },
  40450. ]
  40451. ))
  40452. characterMakers.push(() => makeCharacter(
  40453. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40454. {
  40455. side: {
  40456. height: math.unit(32, "feet"),
  40457. weight: math.unit(250000, "lb"),
  40458. name: "Side",
  40459. image: {
  40460. source: "./media/characters/silverwing/side.svg",
  40461. extra: 1100/1019,
  40462. bottom: 204/1304
  40463. }
  40464. },
  40465. },
  40466. [
  40467. {
  40468. name: "Normal",
  40469. height: math.unit(32, "feet"),
  40470. default: true
  40471. },
  40472. ]
  40473. ))
  40474. characterMakers.push(() => makeCharacter(
  40475. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40476. {
  40477. front: {
  40478. height: math.unit(6 + 6/12, "feet"),
  40479. weight: math.unit(350, "lb"),
  40480. name: "Front",
  40481. image: {
  40482. source: "./media/characters/tristan-hawthorne/front.svg",
  40483. extra: 1159/1124,
  40484. bottom: 37/1196
  40485. }
  40486. },
  40487. },
  40488. [
  40489. {
  40490. name: "Normal",
  40491. height: math.unit(6 + 6/12, "feet"),
  40492. default: true
  40493. },
  40494. ]
  40495. ))
  40496. characterMakers.push(() => makeCharacter(
  40497. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40498. {
  40499. front: {
  40500. height: math.unit(5 + 11/12, "feet"),
  40501. weight: math.unit(190, "lb"),
  40502. name: "Front",
  40503. image: {
  40504. source: "./media/characters/mizu/front.svg",
  40505. extra: 1988/1788,
  40506. bottom: 14/2002
  40507. }
  40508. },
  40509. },
  40510. [
  40511. {
  40512. name: "Normal",
  40513. height: math.unit(5 + 11/12, "feet"),
  40514. default: true
  40515. },
  40516. ]
  40517. ))
  40518. characterMakers.push(() => makeCharacter(
  40519. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40520. {
  40521. front: {
  40522. height: math.unit(6, "feet"),
  40523. name: "Front",
  40524. image: {
  40525. source: "./media/characters/moonlight-rose-terra/front.svg",
  40526. extra: 1434/1252,
  40527. bottom: 48/1482
  40528. }
  40529. },
  40530. },
  40531. [
  40532. {
  40533. name: "TRAPPIST-1D",
  40534. height: math.unit(4992*2, "km")
  40535. },
  40536. {
  40537. name: "Earth",
  40538. height: math.unit(6367*2, "km"),
  40539. default: true
  40540. },
  40541. {
  40542. name: "Kepler-22b",
  40543. height: math.unit(15282*2, "km")
  40544. },
  40545. ]
  40546. ))
  40547. characterMakers.push(() => makeCharacter(
  40548. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40549. {
  40550. front: {
  40551. height: math.unit(6, "feet"),
  40552. name: "Front",
  40553. image: {
  40554. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40555. extra: 1851/1712,
  40556. bottom: 0/1851
  40557. }
  40558. },
  40559. },
  40560. [
  40561. {
  40562. name: "Enceladus",
  40563. height: math.unit(513*2, "km")
  40564. },
  40565. {
  40566. name: "Europe",
  40567. height: math.unit(1560*2, "km")
  40568. },
  40569. {
  40570. name: "Neptune",
  40571. height: math.unit(24622*2, "km"),
  40572. default: true
  40573. },
  40574. {
  40575. name: "CoRoT-9b",
  40576. height: math.unit(75067*2, "km")
  40577. },
  40578. ]
  40579. ))
  40580. characterMakers.push(() => makeCharacter(
  40581. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40582. {
  40583. front: {
  40584. height: math.unit(6, "feet"),
  40585. name: "Front",
  40586. image: {
  40587. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40588. extra: 1367/1286,
  40589. bottom: 55/1422
  40590. }
  40591. },
  40592. },
  40593. [
  40594. {
  40595. name: "Saturn",
  40596. height: math.unit(58232*2, "km")
  40597. },
  40598. {
  40599. name: "Jupiter",
  40600. height: math.unit(69911*2, "km"),
  40601. default: true
  40602. },
  40603. {
  40604. name: "HD 100546 b",
  40605. height: math.unit(482938, "km")
  40606. },
  40607. ]
  40608. ))
  40609. //characters
  40610. function makeCharacters() {
  40611. const results = [];
  40612. characterMakers.forEach(character => {
  40613. results.push(character());
  40614. });
  40615. return results;
  40616. }