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

46078 строки
1.1 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. "arctic-fox": {
  1759. name: "Arctic Fox",
  1760. parents: ["fox"]
  1761. },
  1762. "snow-tiger": {
  1763. name: "Snow Tiger",
  1764. parents: ["tiger"]
  1765. },
  1766. "marble-fox": {
  1767. name: "Marble Fox",
  1768. parents: ["fox"]
  1769. },
  1770. "king-wickerbeast": {
  1771. name: "King Wickerbeast",
  1772. parents: ["wickerbeast"]
  1773. },
  1774. "wickerbeast": {
  1775. name: "Wickerbeast",
  1776. parents: ["mammal"]
  1777. },
  1778. "european-polecat": {
  1779. name: "European Polecat",
  1780. parents: ["mustelid"]
  1781. },
  1782. "teshari": {
  1783. name: "Teshari",
  1784. parents: ["avian", "raptor"]
  1785. },
  1786. "alicorn": {
  1787. name: "Alicorn",
  1788. parents: ["horse"]
  1789. },
  1790. "atlas-moth": {
  1791. name: "Atlas Moth",
  1792. parents: ["moth"]
  1793. },
  1794. "owlbear": {
  1795. name: "Owlbear",
  1796. parents: ["owl", "bear", "monster"]
  1797. },
  1798. "owl": {
  1799. name: "Owl",
  1800. parents: ["avian"]
  1801. },
  1802. "silvertongue": {
  1803. name: "Silvertongue",
  1804. parents: ["reptile"]
  1805. },
  1806. "ahuizotl": {
  1807. name: "Ahuizotl",
  1808. parents: ["monster"]
  1809. },
  1810. }
  1811. //species
  1812. function getSpeciesInfo(speciesList) {
  1813. let result = new Set();
  1814. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1815. result.add(entry)
  1816. });
  1817. return Array.from(result);
  1818. };
  1819. function getSpeciesInfoHelper(species) {
  1820. if (!speciesData[species]) {
  1821. console.warn(species + " doesn't exist");
  1822. return [];
  1823. }
  1824. if (speciesData[species].parents) {
  1825. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1826. } else {
  1827. return [species];
  1828. }
  1829. }
  1830. characterMakers.push(() => makeCharacter(
  1831. {
  1832. name: "Fen",
  1833. species: ["crux"],
  1834. description: {
  1835. title: "Bio",
  1836. text: "Very furry. Sheds on everything."
  1837. },
  1838. tags: [
  1839. "anthro",
  1840. "goo"
  1841. ]
  1842. },
  1843. {
  1844. front: {
  1845. height: math.unit(2.2428, "meter"),
  1846. weight: math.unit(124.738, "kg"),
  1847. name: "Front",
  1848. image: {
  1849. source: "./media/characters/fen/front.svg",
  1850. extra: 1804/1562,
  1851. bottom: 205/2009
  1852. }
  1853. },
  1854. diving: {
  1855. height: math.unit(3.3, "meters"),
  1856. weight: math.unit(124.738, "kg"),
  1857. name: "Diving",
  1858. image: {
  1859. source: "./media/characters/fen/diving.svg"
  1860. }
  1861. },
  1862. maw: {
  1863. height: math.unit(2.83, "feet"),
  1864. name: "Maw",
  1865. image: {
  1866. source: "./media/characters/fen/maw.svg"
  1867. }
  1868. },
  1869. back: {
  1870. height: math.unit(2.2428, "meter"),
  1871. weight: math.unit(124.738, "kg"),
  1872. name: "Back",
  1873. image: {
  1874. source: "./media/characters/fen/back.svg",
  1875. },
  1876. info: {
  1877. description: {
  1878. mode: "append",
  1879. text: "\n\nHe is not currently looking at you."
  1880. }
  1881. }
  1882. },
  1883. full: {
  1884. height: math.unit(0.91, "meter"),
  1885. weight: math.unit(225, "kg"),
  1886. name: "Full",
  1887. image: {
  1888. source: "./media/characters/fen/full.svg",
  1889. extra: 1133/859,
  1890. bottom: 145/1278
  1891. },
  1892. info: {
  1893. description: {
  1894. mode: "append",
  1895. text: "\n\nMunch."
  1896. }
  1897. }
  1898. },
  1899. kneeling: {
  1900. height: math.unit(5.4, "feet"),
  1901. weight: math.unit(124.738, "kg"),
  1902. name: "Kneeling",
  1903. image: {
  1904. source: "./media/characters/fen/kneeling.svg",
  1905. extra: 563 / 507
  1906. }
  1907. },
  1908. goo: {
  1909. height: math.unit(2.8, "feet"),
  1910. weight: math.unit(125, "kg"),
  1911. capacity: math.unit(1, "people"),
  1912. name: "Goo",
  1913. image: {
  1914. source: "./media/characters/fen/goo.svg",
  1915. bottom: 116 / 613
  1916. }
  1917. },
  1918. lounging: {
  1919. height: math.unit(6.5, "feet"),
  1920. weight: math.unit(125, "kg"),
  1921. name: "Lounging",
  1922. image: {
  1923. source: "./media/characters/fen/lounging.svg"
  1924. }
  1925. },
  1926. },
  1927. [
  1928. {
  1929. name: "Small",
  1930. height: math.unit(2.2428, "meter")
  1931. },
  1932. {
  1933. name: "Normal",
  1934. height: math.unit(12, "feet"),
  1935. default: true,
  1936. },
  1937. {
  1938. name: "Big",
  1939. height: math.unit(20, "feet")
  1940. },
  1941. {
  1942. name: "Minimacro",
  1943. height: math.unit(40, "feet"),
  1944. info: {
  1945. description: {
  1946. mode: "append",
  1947. text: "\n\nTOO DAMN BIG"
  1948. }
  1949. }
  1950. },
  1951. {
  1952. name: "Macro",
  1953. height: math.unit(100, "feet"),
  1954. info: {
  1955. description: {
  1956. mode: "append",
  1957. text: "\n\nTOO DAMN BIG"
  1958. }
  1959. }
  1960. },
  1961. {
  1962. name: "Megamacro",
  1963. height: math.unit(2, "miles")
  1964. },
  1965. {
  1966. name: "Gigamacro",
  1967. height: math.unit(10, "earths")
  1968. },
  1969. ]
  1970. ))
  1971. characterMakers.push(() => makeCharacter(
  1972. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1973. {
  1974. front: {
  1975. height: math.unit(183, "cm"),
  1976. weight: math.unit(80, "kg"),
  1977. name: "Front",
  1978. image: {
  1979. source: "./media/characters/sofia-fluttertail/front.svg",
  1980. bottom: 0.01,
  1981. extra: 2154 / 2081
  1982. }
  1983. },
  1984. frontAlt: {
  1985. height: math.unit(183, "cm"),
  1986. weight: math.unit(80, "kg"),
  1987. name: "Front (alt)",
  1988. image: {
  1989. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1990. }
  1991. },
  1992. back: {
  1993. height: math.unit(183, "cm"),
  1994. weight: math.unit(80, "kg"),
  1995. name: "Back",
  1996. image: {
  1997. source: "./media/characters/sofia-fluttertail/back.svg"
  1998. }
  1999. },
  2000. kneeling: {
  2001. height: math.unit(125, "cm"),
  2002. weight: math.unit(80, "kg"),
  2003. name: "Kneeling",
  2004. image: {
  2005. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2006. extra: 1033 / 977,
  2007. bottom: 23.7 / 1057
  2008. }
  2009. },
  2010. maw: {
  2011. height: math.unit(183 / 5, "cm"),
  2012. name: "Maw",
  2013. image: {
  2014. source: "./media/characters/sofia-fluttertail/maw.svg"
  2015. }
  2016. },
  2017. mawcloseup: {
  2018. height: math.unit(183 / 5 * 0.41, "cm"),
  2019. name: "Maw (Closeup)",
  2020. image: {
  2021. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2022. }
  2023. },
  2024. paws: {
  2025. height: math.unit(1.17, "feet"),
  2026. name: "Paws",
  2027. image: {
  2028. source: "./media/characters/sofia-fluttertail/paws.svg",
  2029. extra: 851 / 851,
  2030. bottom: 17 / 868
  2031. }
  2032. },
  2033. },
  2034. [
  2035. {
  2036. name: "Normal",
  2037. height: math.unit(1.83, "meter")
  2038. },
  2039. {
  2040. name: "Size Thief",
  2041. height: math.unit(18, "feet")
  2042. },
  2043. {
  2044. name: "50 Foot Collie",
  2045. height: math.unit(50, "feet")
  2046. },
  2047. {
  2048. name: "Macro",
  2049. height: math.unit(96, "feet"),
  2050. default: true
  2051. },
  2052. {
  2053. name: "Megamerger",
  2054. height: math.unit(650, "feet")
  2055. },
  2056. ]
  2057. ))
  2058. characterMakers.push(() => makeCharacter(
  2059. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2060. {
  2061. front: {
  2062. height: math.unit(7, "feet"),
  2063. weight: math.unit(100, "kg"),
  2064. name: "Front",
  2065. image: {
  2066. source: "./media/characters/march/front.svg",
  2067. extra: 1992/1851,
  2068. bottom: 39/2031
  2069. }
  2070. },
  2071. foot: {
  2072. height: math.unit(0.9, "feet"),
  2073. name: "Foot",
  2074. image: {
  2075. source: "./media/characters/march/foot.svg"
  2076. }
  2077. },
  2078. },
  2079. [
  2080. {
  2081. name: "Normal",
  2082. height: math.unit(7.9, "feet")
  2083. },
  2084. {
  2085. name: "Macro",
  2086. height: math.unit(220, "meters")
  2087. },
  2088. {
  2089. name: "Megamacro",
  2090. height: math.unit(2.98, "km"),
  2091. default: true
  2092. },
  2093. {
  2094. name: "Gigamacro",
  2095. height: math.unit(15963, "km")
  2096. },
  2097. {
  2098. name: "Teramacro",
  2099. height: math.unit(2980000000, "km")
  2100. },
  2101. {
  2102. name: "Examacro",
  2103. height: math.unit(250, "parsecs")
  2104. },
  2105. ]
  2106. ))
  2107. characterMakers.push(() => makeCharacter(
  2108. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2109. {
  2110. front: {
  2111. height: math.unit(6, "feet"),
  2112. weight: math.unit(60, "kg"),
  2113. name: "Front",
  2114. image: {
  2115. source: "./media/characters/noir/front.svg",
  2116. extra: 1,
  2117. bottom: 0.032
  2118. }
  2119. },
  2120. },
  2121. [
  2122. {
  2123. name: "Normal",
  2124. height: math.unit(6.6, "feet")
  2125. },
  2126. {
  2127. name: "Macro",
  2128. height: math.unit(500, "feet")
  2129. },
  2130. {
  2131. name: "Megamacro",
  2132. height: math.unit(2.5, "km"),
  2133. default: true
  2134. },
  2135. {
  2136. name: "Gigamacro",
  2137. height: math.unit(22500, "km")
  2138. },
  2139. {
  2140. name: "Teramacro",
  2141. height: math.unit(2500000000, "km")
  2142. },
  2143. {
  2144. name: "Examacro",
  2145. height: math.unit(200, "parsecs")
  2146. },
  2147. ]
  2148. ))
  2149. characterMakers.push(() => makeCharacter(
  2150. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2151. {
  2152. front: {
  2153. height: math.unit(7, "feet"),
  2154. weight: math.unit(100, "kg"),
  2155. name: "Front",
  2156. image: {
  2157. source: "./media/characters/okuri/front.svg",
  2158. extra: 1,
  2159. bottom: 0.037
  2160. }
  2161. },
  2162. back: {
  2163. height: math.unit(7, "feet"),
  2164. weight: math.unit(100, "kg"),
  2165. name: "Back",
  2166. image: {
  2167. source: "./media/characters/okuri/back.svg",
  2168. extra: 1,
  2169. bottom: 0.007
  2170. }
  2171. },
  2172. },
  2173. [
  2174. {
  2175. name: "Megamacro",
  2176. height: math.unit(100, "miles"),
  2177. default: true
  2178. },
  2179. ]
  2180. ))
  2181. characterMakers.push(() => makeCharacter(
  2182. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2183. {
  2184. front: {
  2185. height: math.unit(7, "feet"),
  2186. weight: math.unit(100, "kg"),
  2187. name: "Front",
  2188. image: {
  2189. source: "./media/characters/manny/front.svg",
  2190. extra: 1,
  2191. bottom: 0.06
  2192. }
  2193. },
  2194. back: {
  2195. height: math.unit(7, "feet"),
  2196. weight: math.unit(100, "kg"),
  2197. name: "Back",
  2198. image: {
  2199. source: "./media/characters/manny/back.svg",
  2200. extra: 1,
  2201. bottom: 0.014
  2202. }
  2203. },
  2204. },
  2205. [
  2206. {
  2207. name: "Normal",
  2208. height: math.unit(7, "feet"),
  2209. },
  2210. {
  2211. name: "Macro",
  2212. height: math.unit(78, "feet"),
  2213. default: true
  2214. },
  2215. {
  2216. name: "Macro+",
  2217. height: math.unit(300, "meters")
  2218. },
  2219. {
  2220. name: "Macro++",
  2221. height: math.unit(2400, "meters")
  2222. },
  2223. {
  2224. name: "Megamacro",
  2225. height: math.unit(5167, "meters")
  2226. },
  2227. {
  2228. name: "Gigamacro",
  2229. height: math.unit(41769, "miles")
  2230. },
  2231. ]
  2232. ))
  2233. characterMakers.push(() => makeCharacter(
  2234. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2235. {
  2236. front: {
  2237. height: math.unit(7, "feet"),
  2238. weight: math.unit(100, "kg"),
  2239. name: "Front",
  2240. image: {
  2241. source: "./media/characters/adake/front-1.svg"
  2242. }
  2243. },
  2244. frontAlt: {
  2245. height: math.unit(7, "feet"),
  2246. weight: math.unit(100, "kg"),
  2247. name: "Front (Alt)",
  2248. image: {
  2249. source: "./media/characters/adake/front-2.svg",
  2250. extra: 1,
  2251. bottom: 0.01
  2252. }
  2253. },
  2254. back: {
  2255. height: math.unit(7, "feet"),
  2256. weight: math.unit(100, "kg"),
  2257. name: "Back",
  2258. image: {
  2259. source: "./media/characters/adake/back.svg",
  2260. }
  2261. },
  2262. kneel: {
  2263. height: math.unit(5.385, "feet"),
  2264. weight: math.unit(100, "kg"),
  2265. name: "Kneeling",
  2266. image: {
  2267. source: "./media/characters/adake/kneel.svg",
  2268. bottom: 0.052
  2269. }
  2270. },
  2271. },
  2272. [
  2273. {
  2274. name: "Normal",
  2275. height: math.unit(7, "feet"),
  2276. },
  2277. {
  2278. name: "Macro",
  2279. height: math.unit(78, "feet"),
  2280. default: true
  2281. },
  2282. {
  2283. name: "Macro+",
  2284. height: math.unit(300, "meters")
  2285. },
  2286. {
  2287. name: "Macro++",
  2288. height: math.unit(2400, "meters")
  2289. },
  2290. {
  2291. name: "Megamacro",
  2292. height: math.unit(5167, "meters")
  2293. },
  2294. {
  2295. name: "Gigamacro",
  2296. height: math.unit(41769, "miles")
  2297. },
  2298. ]
  2299. ))
  2300. characterMakers.push(() => makeCharacter(
  2301. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2302. {
  2303. front: {
  2304. height: math.unit(1.65, "meters"),
  2305. weight: math.unit(50, "kg"),
  2306. name: "Front",
  2307. image: {
  2308. source: "./media/characters/elijah/front.svg",
  2309. extra: 858 / 830,
  2310. bottom: 95.5 / 953.8559
  2311. }
  2312. },
  2313. back: {
  2314. height: math.unit(1.65, "meters"),
  2315. weight: math.unit(50, "kg"),
  2316. name: "Back",
  2317. image: {
  2318. source: "./media/characters/elijah/back.svg",
  2319. extra: 895 / 850,
  2320. bottom: 5.3 / 897.956
  2321. }
  2322. },
  2323. frontNsfw: {
  2324. height: math.unit(1.65, "meters"),
  2325. weight: math.unit(50, "kg"),
  2326. name: "Front (NSFW)",
  2327. image: {
  2328. source: "./media/characters/elijah/front-nsfw.svg",
  2329. extra: 858 / 830,
  2330. bottom: 95.5 / 953.8559
  2331. }
  2332. },
  2333. backNsfw: {
  2334. height: math.unit(1.65, "meters"),
  2335. weight: math.unit(50, "kg"),
  2336. name: "Back (NSFW)",
  2337. image: {
  2338. source: "./media/characters/elijah/back-nsfw.svg",
  2339. extra: 895 / 850,
  2340. bottom: 5.3 / 897.956
  2341. }
  2342. },
  2343. dick: {
  2344. height: math.unit(1, "feet"),
  2345. name: "Dick",
  2346. image: {
  2347. source: "./media/characters/elijah/dick.svg"
  2348. }
  2349. },
  2350. beakOpen: {
  2351. height: math.unit(1.25, "feet"),
  2352. name: "Beak (Open)",
  2353. image: {
  2354. source: "./media/characters/elijah/beak-open.svg"
  2355. }
  2356. },
  2357. beakShut: {
  2358. height: math.unit(1.25, "feet"),
  2359. name: "Beak (Shut)",
  2360. image: {
  2361. source: "./media/characters/elijah/beak-shut.svg"
  2362. }
  2363. },
  2364. footFlexing: {
  2365. height: math.unit(1.61, "feet"),
  2366. name: "Foot (Flexing)",
  2367. image: {
  2368. source: "./media/characters/elijah/foot-flexing.svg"
  2369. }
  2370. },
  2371. footStepping: {
  2372. height: math.unit(1.44, "feet"),
  2373. name: "Foot (Stepping)",
  2374. image: {
  2375. source: "./media/characters/elijah/foot-stepping.svg"
  2376. }
  2377. },
  2378. plantigradeLeg: {
  2379. height: math.unit(2.34, "feet"),
  2380. name: "Plantigrade Leg",
  2381. image: {
  2382. source: "./media/characters/elijah/plantigrade-leg.svg"
  2383. }
  2384. },
  2385. plantigradeFootLeft: {
  2386. height: math.unit(0.9, "feet"),
  2387. name: "Plantigrade Foot (Left)",
  2388. image: {
  2389. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2390. }
  2391. },
  2392. plantigradeFootRight: {
  2393. height: math.unit(0.9, "feet"),
  2394. name: "Plantigrade Foot (Right)",
  2395. image: {
  2396. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2397. }
  2398. },
  2399. },
  2400. [
  2401. {
  2402. name: "Normal",
  2403. height: math.unit(1.65, "meters")
  2404. },
  2405. {
  2406. name: "Macro",
  2407. height: math.unit(55, "meters"),
  2408. default: true
  2409. },
  2410. {
  2411. name: "Macro+",
  2412. height: math.unit(105, "meters")
  2413. },
  2414. ]
  2415. ))
  2416. characterMakers.push(() => makeCharacter(
  2417. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2418. {
  2419. front: {
  2420. height: math.unit(7 + 2/12, "feet"),
  2421. weight: math.unit(320, "kg"),
  2422. name: "Front",
  2423. image: {
  2424. source: "./media/characters/rai/front.svg",
  2425. extra: 1802/1696,
  2426. bottom: 68/1870
  2427. }
  2428. },
  2429. frontDressed: {
  2430. height: math.unit(7 + 2/12, "feet"),
  2431. weight: math.unit(320, "kg"),
  2432. name: "Front (Dressed)",
  2433. image: {
  2434. source: "./media/characters/rai/front-dressed.svg",
  2435. extra: 1802/1696,
  2436. bottom: 68/1870
  2437. }
  2438. },
  2439. side: {
  2440. height: math.unit(7 + 2/12, "feet"),
  2441. weight: math.unit(320, "kg"),
  2442. name: "Side",
  2443. image: {
  2444. source: "./media/characters/rai/side.svg",
  2445. extra: 1789/1710,
  2446. bottom: 115/1904
  2447. }
  2448. },
  2449. back: {
  2450. height: math.unit(7 + 2/12, "feet"),
  2451. weight: math.unit(320, "kg"),
  2452. name: "Back",
  2453. image: {
  2454. source: "./media/characters/rai/back.svg",
  2455. extra: 1770/1707,
  2456. bottom: 28/1798
  2457. }
  2458. },
  2459. feral: {
  2460. height: math.unit(9.5, "feet"),
  2461. weight: math.unit(640, "kg"),
  2462. name: "Feral",
  2463. image: {
  2464. source: "./media/characters/rai/feral.svg",
  2465. extra: 945/553,
  2466. bottom: 176/1121
  2467. }
  2468. },
  2469. dragon: {
  2470. height: math.unit(23, "feet"),
  2471. weight: math.unit(50000, "lb"),
  2472. name: "Dragon",
  2473. image: {
  2474. source: "./media/characters/rai/dragon.svg",
  2475. extra: 2498 / 2030,
  2476. bottom: 85.2 / 2584
  2477. }
  2478. },
  2479. maw: {
  2480. height: math.unit(1.69, "feet"),
  2481. name: "Maw",
  2482. image: {
  2483. source: "./media/characters/rai/maw.svg"
  2484. }
  2485. },
  2486. },
  2487. [
  2488. {
  2489. name: "Normal",
  2490. height: math.unit(7 + 2/12, "feet")
  2491. },
  2492. {
  2493. name: "Big",
  2494. height: math.unit(11, "feet")
  2495. },
  2496. {
  2497. name: "Macro",
  2498. height: math.unit(302, "feet"),
  2499. default: true
  2500. },
  2501. ]
  2502. ))
  2503. characterMakers.push(() => makeCharacter(
  2504. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2505. {
  2506. frontDressed: {
  2507. height: math.unit(216, "feet"),
  2508. weight: math.unit(7000000, "lb"),
  2509. name: "Front (Dressed)",
  2510. image: {
  2511. source: "./media/characters/jazzy/front-dressed.svg",
  2512. extra: 2738 / 2651,
  2513. bottom: 41.8 / 2786
  2514. }
  2515. },
  2516. backDressed: {
  2517. height: math.unit(216, "feet"),
  2518. weight: math.unit(7000000, "lb"),
  2519. name: "Back (Dressed)",
  2520. image: {
  2521. source: "./media/characters/jazzy/back-dressed.svg",
  2522. extra: 2775 / 2673,
  2523. bottom: 36.8 / 2817
  2524. }
  2525. },
  2526. front: {
  2527. height: math.unit(216, "feet"),
  2528. weight: math.unit(7000000, "lb"),
  2529. name: "Front",
  2530. image: {
  2531. source: "./media/characters/jazzy/front.svg",
  2532. extra: 2738 / 2651,
  2533. bottom: 41.8 / 2786
  2534. }
  2535. },
  2536. back: {
  2537. height: math.unit(216, "feet"),
  2538. weight: math.unit(7000000, "lb"),
  2539. name: "Back",
  2540. image: {
  2541. source: "./media/characters/jazzy/back.svg",
  2542. extra: 2775 / 2673,
  2543. bottom: 36.8 / 2817
  2544. }
  2545. },
  2546. maw: {
  2547. height: math.unit(20, "feet"),
  2548. name: "Maw",
  2549. image: {
  2550. source: "./media/characters/jazzy/maw.svg"
  2551. }
  2552. },
  2553. paws: {
  2554. height: math.unit(27.5, "feet"),
  2555. name: "Paws",
  2556. image: {
  2557. source: "./media/characters/jazzy/paws.svg"
  2558. }
  2559. },
  2560. eye: {
  2561. height: math.unit(4.4, "feet"),
  2562. name: "Eye",
  2563. image: {
  2564. source: "./media/characters/jazzy/eye.svg"
  2565. }
  2566. },
  2567. droneOffense: {
  2568. height: math.unit(9.5, "inches"),
  2569. name: "Drone (Offense)",
  2570. image: {
  2571. source: "./media/characters/jazzy/drone-offense.svg"
  2572. }
  2573. },
  2574. droneRecon: {
  2575. height: math.unit(9.5, "inches"),
  2576. name: "Drone (Recon)",
  2577. image: {
  2578. source: "./media/characters/jazzy/drone-recon.svg"
  2579. }
  2580. },
  2581. droneDefense: {
  2582. height: math.unit(9.5, "inches"),
  2583. name: "Drone (Defense)",
  2584. image: {
  2585. source: "./media/characters/jazzy/drone-defense.svg"
  2586. }
  2587. },
  2588. },
  2589. [
  2590. {
  2591. name: "Macro",
  2592. height: math.unit(216, "feet"),
  2593. default: true
  2594. },
  2595. ]
  2596. ))
  2597. characterMakers.push(() => makeCharacter(
  2598. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2599. {
  2600. front: {
  2601. height: math.unit(9 + 6/12, "feet"),
  2602. weight: math.unit(700, "lb"),
  2603. name: "Front",
  2604. image: {
  2605. source: "./media/characters/flamm/front.svg",
  2606. extra: 1751/1632,
  2607. bottom: 46/1797
  2608. }
  2609. },
  2610. buff: {
  2611. height: math.unit(9 + 6/12, "feet"),
  2612. weight: math.unit(950, "lb"),
  2613. name: "Buff",
  2614. image: {
  2615. source: "./media/characters/flamm/buff.svg",
  2616. extra: 3018/2874,
  2617. bottom: 221/3239
  2618. }
  2619. },
  2620. },
  2621. [
  2622. {
  2623. name: "Normal",
  2624. height: math.unit(9.5, "feet")
  2625. },
  2626. {
  2627. name: "Macro",
  2628. height: math.unit(200, "feet"),
  2629. default: true
  2630. },
  2631. ]
  2632. ))
  2633. characterMakers.push(() => makeCharacter(
  2634. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2635. {
  2636. front: {
  2637. height: math.unit(5 + 3/12, "feet"),
  2638. weight: math.unit(60, "kg"),
  2639. name: "Front",
  2640. image: {
  2641. source: "./media/characters/zephiro/front.svg",
  2642. extra: 2309 / 2162,
  2643. bottom: 0.069
  2644. }
  2645. },
  2646. side: {
  2647. height: math.unit(5 + 3/12, "feet"),
  2648. weight: math.unit(60, "kg"),
  2649. name: "Side",
  2650. image: {
  2651. source: "./media/characters/zephiro/side.svg",
  2652. extra: 2403 / 2279,
  2653. bottom: 0.015
  2654. }
  2655. },
  2656. back: {
  2657. height: math.unit(5 + 3/12, "feet"),
  2658. weight: math.unit(60, "kg"),
  2659. name: "Back",
  2660. image: {
  2661. source: "./media/characters/zephiro/back.svg",
  2662. extra: 2373 / 2244,
  2663. bottom: 0.013
  2664. }
  2665. },
  2666. hand: {
  2667. height: math.unit(0.68, "feet"),
  2668. name: "Hand",
  2669. image: {
  2670. source: "./media/characters/zephiro/hand.svg"
  2671. }
  2672. },
  2673. paw: {
  2674. height: math.unit(1, "feet"),
  2675. name: "Paw",
  2676. image: {
  2677. source: "./media/characters/zephiro/paw.svg"
  2678. }
  2679. },
  2680. beans: {
  2681. height: math.unit(0.93, "feet"),
  2682. name: "Beans",
  2683. image: {
  2684. source: "./media/characters/zephiro/beans.svg"
  2685. }
  2686. },
  2687. },
  2688. [
  2689. {
  2690. name: "Micro",
  2691. height: math.unit(3, "inches")
  2692. },
  2693. {
  2694. name: "Normal",
  2695. height: math.unit(5 + 3 / 12, "feet"),
  2696. default: true
  2697. },
  2698. {
  2699. name: "Macro",
  2700. height: math.unit(118, "feet")
  2701. },
  2702. ]
  2703. ))
  2704. characterMakers.push(() => makeCharacter(
  2705. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2706. {
  2707. front: {
  2708. height: math.unit(5, "feet"),
  2709. weight: math.unit(90, "kg"),
  2710. name: "Front",
  2711. image: {
  2712. source: "./media/characters/fory/front.svg",
  2713. extra: 2862 / 2674,
  2714. bottom: 180 / 3043.8
  2715. }
  2716. },
  2717. back: {
  2718. height: math.unit(5, "feet"),
  2719. weight: math.unit(90, "kg"),
  2720. name: "Back",
  2721. image: {
  2722. source: "./media/characters/fory/back.svg",
  2723. extra: 2962 / 2791,
  2724. bottom: 106 / 3071.8
  2725. }
  2726. },
  2727. foot: {
  2728. height: math.unit(2.14, "feet"),
  2729. name: "Foot",
  2730. image: {
  2731. source: "./media/characters/fory/foot.svg"
  2732. }
  2733. },
  2734. },
  2735. [
  2736. {
  2737. name: "Normal",
  2738. height: math.unit(5, "feet")
  2739. },
  2740. {
  2741. name: "Macro",
  2742. height: math.unit(50, "feet"),
  2743. default: true
  2744. },
  2745. {
  2746. name: "Megamacro",
  2747. height: math.unit(10, "miles")
  2748. },
  2749. {
  2750. name: "Gigamacro",
  2751. height: math.unit(5, "earths")
  2752. },
  2753. ]
  2754. ))
  2755. characterMakers.push(() => makeCharacter(
  2756. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2757. {
  2758. front: {
  2759. height: math.unit(7, "feet"),
  2760. weight: math.unit(90, "kg"),
  2761. name: "Front",
  2762. image: {
  2763. source: "./media/characters/kurrikage/front.svg",
  2764. extra: 1845/1733,
  2765. bottom: 119/1964
  2766. }
  2767. },
  2768. back: {
  2769. height: math.unit(7, "feet"),
  2770. weight: math.unit(90, "kg"),
  2771. name: "Back",
  2772. image: {
  2773. source: "./media/characters/kurrikage/back.svg",
  2774. extra: 1790/1677,
  2775. bottom: 61/1851
  2776. }
  2777. },
  2778. dressed: {
  2779. height: math.unit(7, "feet"),
  2780. weight: math.unit(90, "kg"),
  2781. name: "Dressed",
  2782. image: {
  2783. source: "./media/characters/kurrikage/dressed.svg",
  2784. extra: 1845/1733,
  2785. bottom: 119/1964
  2786. }
  2787. },
  2788. foot: {
  2789. height: math.unit(1.5, "feet"),
  2790. name: "Foot",
  2791. image: {
  2792. source: "./media/characters/kurrikage/foot.svg"
  2793. }
  2794. },
  2795. staff: {
  2796. height: math.unit(6.7, "feet"),
  2797. name: "Staff",
  2798. image: {
  2799. source: "./media/characters/kurrikage/staff.svg"
  2800. }
  2801. },
  2802. peek: {
  2803. height: math.unit(1.05, "feet"),
  2804. name: "Peeking",
  2805. image: {
  2806. source: "./media/characters/kurrikage/peek.svg",
  2807. bottom: 0.08
  2808. }
  2809. },
  2810. },
  2811. [
  2812. {
  2813. name: "Normal",
  2814. height: math.unit(12, "feet"),
  2815. default: true
  2816. },
  2817. {
  2818. name: "Big",
  2819. height: math.unit(20, "feet")
  2820. },
  2821. {
  2822. name: "Macro",
  2823. height: math.unit(500, "feet")
  2824. },
  2825. {
  2826. name: "Megamacro",
  2827. height: math.unit(20, "miles")
  2828. },
  2829. ]
  2830. ))
  2831. characterMakers.push(() => makeCharacter(
  2832. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2833. {
  2834. front: {
  2835. height: math.unit(6, "feet"),
  2836. weight: math.unit(75, "kg"),
  2837. name: "Front",
  2838. image: {
  2839. source: "./media/characters/shingo/front.svg",
  2840. extra: 1900/1825,
  2841. bottom: 82/1982
  2842. }
  2843. },
  2844. side: {
  2845. height: math.unit(6, "feet"),
  2846. weight: math.unit(75, "kg"),
  2847. name: "Side",
  2848. image: {
  2849. source: "./media/characters/shingo/side.svg",
  2850. extra: 1930/1865,
  2851. bottom: 16/1946
  2852. }
  2853. },
  2854. back: {
  2855. height: math.unit(6, "feet"),
  2856. weight: math.unit(75, "kg"),
  2857. name: "Back",
  2858. image: {
  2859. source: "./media/characters/shingo/back.svg",
  2860. extra: 1922/1852,
  2861. bottom: 16/1938
  2862. }
  2863. },
  2864. frontDressed: {
  2865. height: math.unit(6, "feet"),
  2866. weight: math.unit(150, "lb"),
  2867. name: "Front-dressed",
  2868. image: {
  2869. source: "./media/characters/shingo/front-dressed.svg",
  2870. extra: 1900/1825,
  2871. bottom: 82/1982
  2872. }
  2873. },
  2874. paw: {
  2875. height: math.unit(1.29, "feet"),
  2876. name: "Paw",
  2877. image: {
  2878. source: "./media/characters/shingo/paw.svg"
  2879. }
  2880. },
  2881. hand: {
  2882. height: math.unit(1.07, "feet"),
  2883. name: "Hand",
  2884. image: {
  2885. source: "./media/characters/shingo/hand.svg"
  2886. }
  2887. },
  2888. frontAlt: {
  2889. height: math.unit(6, "feet"),
  2890. weight: math.unit(75, "kg"),
  2891. name: "Front (Alt)",
  2892. image: {
  2893. source: "./media/characters/shingo/front-alt.svg",
  2894. extra: 3511 / 3338,
  2895. bottom: 0.005
  2896. }
  2897. },
  2898. frontAlt2: {
  2899. height: math.unit(6, "feet"),
  2900. weight: math.unit(75, "kg"),
  2901. name: "Front (Alt 2)",
  2902. image: {
  2903. source: "./media/characters/shingo/front-alt-2.svg",
  2904. extra: 706/681,
  2905. bottom: 11/717
  2906. }
  2907. },
  2908. pawAlt: {
  2909. height: math.unit(1, "feet"),
  2910. name: "Paw (Alt)",
  2911. image: {
  2912. source: "./media/characters/shingo/paw-alt.svg"
  2913. }
  2914. },
  2915. },
  2916. [
  2917. {
  2918. name: "Micro",
  2919. height: math.unit(4, "inches")
  2920. },
  2921. {
  2922. name: "Normal",
  2923. height: math.unit(6, "feet"),
  2924. default: true
  2925. },
  2926. {
  2927. name: "Macro",
  2928. height: math.unit(108, "feet")
  2929. },
  2930. {
  2931. name: "Macro+",
  2932. height: math.unit(1500, "feet")
  2933. },
  2934. ]
  2935. ))
  2936. characterMakers.push(() => makeCharacter(
  2937. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2938. {
  2939. side: {
  2940. height: math.unit(6, "feet"),
  2941. weight: math.unit(75, "kg"),
  2942. name: "Side",
  2943. image: {
  2944. source: "./media/characters/aigey/side.svg"
  2945. }
  2946. },
  2947. },
  2948. [
  2949. {
  2950. name: "Macro",
  2951. height: math.unit(200, "feet"),
  2952. default: true
  2953. },
  2954. {
  2955. name: "Megamacro",
  2956. height: math.unit(100, "miles")
  2957. },
  2958. ]
  2959. )
  2960. )
  2961. characterMakers.push(() => makeCharacter(
  2962. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2963. {
  2964. front: {
  2965. height: math.unit(5 + 5 / 12, "feet"),
  2966. weight: math.unit(75, "kg"),
  2967. name: "Front",
  2968. image: {
  2969. source: "./media/characters/natasha/front.svg",
  2970. extra: 859 / 824,
  2971. bottom: 23 / 879.6
  2972. }
  2973. },
  2974. frontNsfw: {
  2975. height: math.unit(5 + 5 / 12, "feet"),
  2976. weight: math.unit(75, "kg"),
  2977. name: "Front (NSFW)",
  2978. image: {
  2979. source: "./media/characters/natasha/front-nsfw.svg",
  2980. extra: 859 / 824,
  2981. bottom: 23 / 879.6
  2982. }
  2983. },
  2984. frontErect: {
  2985. height: math.unit(5 + 5 / 12, "feet"),
  2986. weight: math.unit(75, "kg"),
  2987. name: "Front (Erect)",
  2988. image: {
  2989. source: "./media/characters/natasha/front-erect.svg",
  2990. extra: 859 / 824,
  2991. bottom: 23 / 879.6
  2992. }
  2993. },
  2994. back: {
  2995. height: math.unit(5 + 5 / 12, "feet"),
  2996. weight: math.unit(75, "kg"),
  2997. name: "Back",
  2998. image: {
  2999. source: "./media/characters/natasha/back.svg",
  3000. extra: 887.9 / 852.6,
  3001. bottom: 9.7 / 896.4
  3002. }
  3003. },
  3004. backAlt: {
  3005. height: math.unit(5 + 5 / 12, "feet"),
  3006. weight: math.unit(75, "kg"),
  3007. name: "Back (Alt)",
  3008. image: {
  3009. source: "./media/characters/natasha/back-alt.svg",
  3010. extra: 1236.7 / 1192,
  3011. bottom: 22.3 / 1258.2
  3012. }
  3013. },
  3014. dick: {
  3015. height: math.unit(1.772, "feet"),
  3016. name: "Dick",
  3017. image: {
  3018. source: "./media/characters/natasha/dick.svg"
  3019. }
  3020. },
  3021. paw: {
  3022. height: math.unit(0.250, "meters"),
  3023. name: "Paw",
  3024. image: {
  3025. source: "./media/characters/natasha/paw.svg"
  3026. }
  3027. },
  3028. },
  3029. [
  3030. {
  3031. name: "Normal",
  3032. height: math.unit(5 + 5 / 12, "feet")
  3033. },
  3034. {
  3035. name: "Large",
  3036. height: math.unit(12, "feet")
  3037. },
  3038. {
  3039. name: "Macro",
  3040. height: math.unit(100, "feet"),
  3041. default: true
  3042. },
  3043. {
  3044. name: "Macro+",
  3045. height: math.unit(260, "feet")
  3046. },
  3047. {
  3048. name: "Macro++",
  3049. height: math.unit(1, "mile")
  3050. },
  3051. ]
  3052. ))
  3053. characterMakers.push(() => makeCharacter(
  3054. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3055. {
  3056. front: {
  3057. height: math.unit(6, "feet"),
  3058. weight: math.unit(75, "kg"),
  3059. name: "Front",
  3060. image: {
  3061. source: "./media/characters/malik/front.svg"
  3062. }
  3063. },
  3064. side: {
  3065. height: math.unit(6, "feet"),
  3066. weight: math.unit(75, "kg"),
  3067. name: "Side",
  3068. image: {
  3069. source: "./media/characters/malik/side.svg",
  3070. extra: 1.1539
  3071. }
  3072. },
  3073. back: {
  3074. height: math.unit(6, "feet"),
  3075. weight: math.unit(75, "kg"),
  3076. name: "Back",
  3077. image: {
  3078. source: "./media/characters/malik/back.svg"
  3079. }
  3080. },
  3081. },
  3082. [
  3083. {
  3084. name: "Macro",
  3085. height: math.unit(156, "feet"),
  3086. default: true
  3087. },
  3088. {
  3089. name: "Macro+",
  3090. height: math.unit(1188, "feet")
  3091. },
  3092. ]
  3093. ))
  3094. characterMakers.push(() => makeCharacter(
  3095. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3096. {
  3097. front: {
  3098. height: math.unit(6, "feet"),
  3099. weight: math.unit(75, "kg"),
  3100. name: "Front",
  3101. image: {
  3102. source: "./media/characters/sefer/front.svg",
  3103. extra: 848 / 659,
  3104. bottom: 28.3 / 876.442
  3105. }
  3106. },
  3107. back: {
  3108. height: math.unit(6, "feet"),
  3109. weight: math.unit(75, "kg"),
  3110. name: "Back",
  3111. image: {
  3112. source: "./media/characters/sefer/back.svg",
  3113. extra: 864 / 695,
  3114. bottom: 10 / 871
  3115. }
  3116. },
  3117. frontDressed: {
  3118. height: math.unit(6, "feet"),
  3119. weight: math.unit(75, "kg"),
  3120. name: "Front (Dressed)",
  3121. image: {
  3122. source: "./media/characters/sefer/front-dressed.svg",
  3123. extra: 839 / 653,
  3124. bottom: 37.6 / 878
  3125. }
  3126. },
  3127. },
  3128. [
  3129. {
  3130. name: "Normal",
  3131. height: math.unit(6, "feet"),
  3132. default: true
  3133. },
  3134. ]
  3135. ))
  3136. characterMakers.push(() => makeCharacter(
  3137. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3138. {
  3139. body: {
  3140. height: math.unit(2.2428, "meter"),
  3141. weight: math.unit(124.738, "kg"),
  3142. name: "Body",
  3143. image: {
  3144. extra: 1225 / 1050,
  3145. source: "./media/characters/north/front.svg"
  3146. }
  3147. }
  3148. },
  3149. [
  3150. {
  3151. name: "Micro",
  3152. height: math.unit(4, "inches")
  3153. },
  3154. {
  3155. name: "Macro",
  3156. height: math.unit(63, "meters")
  3157. },
  3158. {
  3159. name: "Megamacro",
  3160. height: math.unit(101, "miles"),
  3161. default: true
  3162. }
  3163. ]
  3164. ))
  3165. characterMakers.push(() => makeCharacter(
  3166. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3167. {
  3168. angled: {
  3169. height: math.unit(4, "meter"),
  3170. weight: math.unit(150, "kg"),
  3171. name: "Angled",
  3172. image: {
  3173. source: "./media/characters/talan/angled-sfw.svg",
  3174. bottom: 29 / 3734
  3175. }
  3176. },
  3177. angledNsfw: {
  3178. height: math.unit(4, "meter"),
  3179. weight: math.unit(150, "kg"),
  3180. name: "Angled (NSFW)",
  3181. image: {
  3182. source: "./media/characters/talan/angled-nsfw.svg",
  3183. bottom: 29 / 3734
  3184. }
  3185. },
  3186. frontNsfw: {
  3187. height: math.unit(4, "meter"),
  3188. weight: math.unit(150, "kg"),
  3189. name: "Front (NSFW)",
  3190. image: {
  3191. source: "./media/characters/talan/front-nsfw.svg",
  3192. bottom: 29 / 3734
  3193. }
  3194. },
  3195. sideNsfw: {
  3196. height: math.unit(4, "meter"),
  3197. weight: math.unit(150, "kg"),
  3198. name: "Side (NSFW)",
  3199. image: {
  3200. source: "./media/characters/talan/side-nsfw.svg",
  3201. bottom: 29 / 3734
  3202. }
  3203. },
  3204. back: {
  3205. height: math.unit(4, "meter"),
  3206. weight: math.unit(150, "kg"),
  3207. name: "Back",
  3208. image: {
  3209. source: "./media/characters/talan/back.svg"
  3210. }
  3211. },
  3212. dickBottom: {
  3213. height: math.unit(0.621, "meter"),
  3214. name: "Dick (Bottom)",
  3215. image: {
  3216. source: "./media/characters/talan/dick-bottom.svg"
  3217. }
  3218. },
  3219. dickTop: {
  3220. height: math.unit(0.621, "meter"),
  3221. name: "Dick (Top)",
  3222. image: {
  3223. source: "./media/characters/talan/dick-top.svg"
  3224. }
  3225. },
  3226. dickSide: {
  3227. height: math.unit(0.305, "meter"),
  3228. name: "Dick (Side)",
  3229. image: {
  3230. source: "./media/characters/talan/dick-side.svg"
  3231. }
  3232. },
  3233. dickFront: {
  3234. height: math.unit(0.305, "meter"),
  3235. name: "Dick (Front)",
  3236. image: {
  3237. source: "./media/characters/talan/dick-front.svg"
  3238. }
  3239. },
  3240. },
  3241. [
  3242. {
  3243. name: "Normal",
  3244. height: math.unit(4, "meters")
  3245. },
  3246. {
  3247. name: "Macro",
  3248. height: math.unit(100, "meters")
  3249. },
  3250. {
  3251. name: "Megamacro",
  3252. height: math.unit(2, "miles"),
  3253. default: true
  3254. },
  3255. {
  3256. name: "Gigamacro",
  3257. height: math.unit(5000, "miles")
  3258. },
  3259. {
  3260. name: "Teramacro",
  3261. height: math.unit(100, "parsecs")
  3262. }
  3263. ]
  3264. ))
  3265. characterMakers.push(() => makeCharacter(
  3266. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3267. {
  3268. front: {
  3269. height: math.unit(2, "meter"),
  3270. weight: math.unit(90, "kg"),
  3271. name: "Front",
  3272. image: {
  3273. source: "./media/characters/gael'rathus/front.svg"
  3274. }
  3275. },
  3276. frontAlt: {
  3277. height: math.unit(2, "meter"),
  3278. weight: math.unit(90, "kg"),
  3279. name: "Front (alt)",
  3280. image: {
  3281. source: "./media/characters/gael'rathus/front-alt.svg"
  3282. }
  3283. },
  3284. frontAlt2: {
  3285. height: math.unit(2, "meter"),
  3286. weight: math.unit(90, "kg"),
  3287. name: "Front (alt 2)",
  3288. image: {
  3289. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3290. }
  3291. }
  3292. },
  3293. [
  3294. {
  3295. name: "Normal",
  3296. height: math.unit(9, "feet"),
  3297. default: true
  3298. },
  3299. {
  3300. name: "Large",
  3301. height: math.unit(25, "feet")
  3302. },
  3303. {
  3304. name: "Macro",
  3305. height: math.unit(0.25, "miles")
  3306. },
  3307. {
  3308. name: "Megamacro",
  3309. height: math.unit(10, "miles")
  3310. }
  3311. ]
  3312. ))
  3313. characterMakers.push(() => makeCharacter(
  3314. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3315. {
  3316. side: {
  3317. height: math.unit(2, "meter"),
  3318. weight: math.unit(140, "kg"),
  3319. name: "Side",
  3320. image: {
  3321. source: "./media/characters/sosha/side.svg",
  3322. bottom: 0.042
  3323. }
  3324. },
  3325. },
  3326. [
  3327. {
  3328. name: "Normal",
  3329. height: math.unit(12, "feet"),
  3330. default: true
  3331. }
  3332. ]
  3333. ))
  3334. characterMakers.push(() => makeCharacter(
  3335. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3336. {
  3337. side: {
  3338. height: math.unit(5 + 5 / 12, "feet"),
  3339. weight: math.unit(170, "kg"),
  3340. name: "Side",
  3341. image: {
  3342. source: "./media/characters/runnola/side.svg",
  3343. extra: 741 / 448,
  3344. bottom: 0.05
  3345. }
  3346. },
  3347. },
  3348. [
  3349. {
  3350. name: "Small",
  3351. height: math.unit(3, "feet")
  3352. },
  3353. {
  3354. name: "Normal",
  3355. height: math.unit(5 + 5 / 12, "feet"),
  3356. default: true
  3357. },
  3358. {
  3359. name: "Big",
  3360. height: math.unit(10, "feet")
  3361. },
  3362. ]
  3363. ))
  3364. characterMakers.push(() => makeCharacter(
  3365. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3366. {
  3367. front: {
  3368. height: math.unit(2, "meter"),
  3369. weight: math.unit(50, "kg"),
  3370. name: "Front",
  3371. image: {
  3372. source: "./media/characters/kurribird/front.svg",
  3373. bottom: 0.015
  3374. }
  3375. },
  3376. frontAlt: {
  3377. height: math.unit(1.5, "meter"),
  3378. weight: math.unit(50, "kg"),
  3379. name: "Front (Alt)",
  3380. image: {
  3381. source: "./media/characters/kurribird/front-alt.svg",
  3382. extra: 1.45
  3383. }
  3384. },
  3385. },
  3386. [
  3387. {
  3388. name: "Normal",
  3389. height: math.unit(7, "feet")
  3390. },
  3391. {
  3392. name: "Big",
  3393. height: math.unit(12, "feet"),
  3394. default: true
  3395. },
  3396. {
  3397. name: "Macro",
  3398. height: math.unit(1500, "feet")
  3399. },
  3400. {
  3401. name: "Megamacro",
  3402. height: math.unit(2, "miles")
  3403. }
  3404. ]
  3405. ))
  3406. characterMakers.push(() => makeCharacter(
  3407. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3408. {
  3409. front: {
  3410. height: math.unit(2, "meter"),
  3411. weight: math.unit(80, "kg"),
  3412. name: "Front",
  3413. image: {
  3414. source: "./media/characters/elbial/front.svg",
  3415. extra: 1643 / 1556,
  3416. bottom: 60.2 / 1696
  3417. }
  3418. },
  3419. side: {
  3420. height: math.unit(2, "meter"),
  3421. weight: math.unit(80, "kg"),
  3422. name: "Side",
  3423. image: {
  3424. source: "./media/characters/elbial/side.svg",
  3425. extra: 1630 / 1565,
  3426. bottom: 71.5 / 1697
  3427. }
  3428. },
  3429. back: {
  3430. height: math.unit(2, "meter"),
  3431. weight: math.unit(80, "kg"),
  3432. name: "Back",
  3433. image: {
  3434. source: "./media/characters/elbial/back.svg",
  3435. extra: 1668 / 1595,
  3436. bottom: 5.6 / 1672
  3437. }
  3438. },
  3439. frontDressed: {
  3440. height: math.unit(2, "meter"),
  3441. weight: math.unit(80, "kg"),
  3442. name: "Front (Dressed)",
  3443. image: {
  3444. source: "./media/characters/elbial/front-dressed.svg",
  3445. extra: 1653 / 1584,
  3446. bottom: 57 / 1708
  3447. }
  3448. },
  3449. genitals: {
  3450. height: math.unit(2 / 3.367, "meter"),
  3451. name: "Genitals",
  3452. image: {
  3453. source: "./media/characters/elbial/genitals.svg"
  3454. }
  3455. },
  3456. },
  3457. [
  3458. {
  3459. name: "Large",
  3460. height: math.unit(100, "feet")
  3461. },
  3462. {
  3463. name: "Macro",
  3464. height: math.unit(500, "feet"),
  3465. default: true
  3466. },
  3467. {
  3468. name: "Megamacro",
  3469. height: math.unit(10, "miles")
  3470. },
  3471. {
  3472. name: "Gigamacro",
  3473. height: math.unit(25000, "miles")
  3474. },
  3475. {
  3476. name: "Full-Size",
  3477. height: math.unit(8000000, "gigaparsecs")
  3478. }
  3479. ]
  3480. ))
  3481. characterMakers.push(() => makeCharacter(
  3482. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3483. {
  3484. front: {
  3485. height: math.unit(2, "meter"),
  3486. weight: math.unit(60, "kg"),
  3487. name: "Front",
  3488. image: {
  3489. source: "./media/characters/noah/front.svg"
  3490. }
  3491. },
  3492. talons: {
  3493. height: math.unit(0.315, "meter"),
  3494. name: "Talons",
  3495. image: {
  3496. source: "./media/characters/noah/talons.svg"
  3497. }
  3498. }
  3499. },
  3500. [
  3501. {
  3502. name: "Large",
  3503. height: math.unit(50, "feet")
  3504. },
  3505. {
  3506. name: "Macro",
  3507. height: math.unit(750, "feet"),
  3508. default: true
  3509. },
  3510. {
  3511. name: "Megamacro",
  3512. height: math.unit(50, "miles")
  3513. },
  3514. {
  3515. name: "Gigamacro",
  3516. height: math.unit(100000, "miles")
  3517. },
  3518. {
  3519. name: "Full-Size",
  3520. height: math.unit(3000000000, "miles")
  3521. }
  3522. ]
  3523. ))
  3524. characterMakers.push(() => makeCharacter(
  3525. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3526. {
  3527. front: {
  3528. height: math.unit(2, "meter"),
  3529. weight: math.unit(80, "kg"),
  3530. name: "Front",
  3531. image: {
  3532. source: "./media/characters/natalya/front.svg"
  3533. }
  3534. },
  3535. back: {
  3536. height: math.unit(2, "meter"),
  3537. weight: math.unit(80, "kg"),
  3538. name: "Back",
  3539. image: {
  3540. source: "./media/characters/natalya/back.svg"
  3541. }
  3542. }
  3543. },
  3544. [
  3545. {
  3546. name: "Normal",
  3547. height: math.unit(150, "feet"),
  3548. default: true
  3549. },
  3550. {
  3551. name: "Megamacro",
  3552. height: math.unit(5, "miles")
  3553. },
  3554. {
  3555. name: "Full-Size",
  3556. height: math.unit(600, "kiloparsecs")
  3557. }
  3558. ]
  3559. ))
  3560. characterMakers.push(() => makeCharacter(
  3561. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3562. {
  3563. front: {
  3564. height: math.unit(2, "meter"),
  3565. weight: math.unit(50, "kg"),
  3566. name: "Front",
  3567. image: {
  3568. source: "./media/characters/erestrebah/front.svg",
  3569. extra: 1262/1162,
  3570. bottom: 96/1358
  3571. }
  3572. },
  3573. back: {
  3574. height: math.unit(2, "meter"),
  3575. weight: math.unit(50, "kg"),
  3576. name: "Back",
  3577. image: {
  3578. source: "./media/characters/erestrebah/back.svg",
  3579. extra: 1257/1139,
  3580. bottom: 13/1270
  3581. }
  3582. },
  3583. wing: {
  3584. height: math.unit(2, "meter"),
  3585. weight: math.unit(50, "kg"),
  3586. name: "Wing",
  3587. image: {
  3588. source: "./media/characters/erestrebah/wing.svg",
  3589. extra: 1262/1162,
  3590. bottom: 96/1358
  3591. }
  3592. },
  3593. mouth: {
  3594. height: math.unit(0.39, "feet"),
  3595. name: "Mouth",
  3596. image: {
  3597. source: "./media/characters/erestrebah/mouth.svg"
  3598. }
  3599. }
  3600. },
  3601. [
  3602. {
  3603. name: "Normal",
  3604. height: math.unit(10, "feet")
  3605. },
  3606. {
  3607. name: "Large",
  3608. height: math.unit(50, "feet"),
  3609. default: true
  3610. },
  3611. {
  3612. name: "Macro",
  3613. height: math.unit(300, "feet")
  3614. },
  3615. {
  3616. name: "Macro+",
  3617. height: math.unit(750, "feet")
  3618. },
  3619. {
  3620. name: "Megamacro",
  3621. height: math.unit(3, "miles")
  3622. }
  3623. ]
  3624. ))
  3625. characterMakers.push(() => makeCharacter(
  3626. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3627. {
  3628. front: {
  3629. height: math.unit(2, "meter"),
  3630. weight: math.unit(80, "kg"),
  3631. name: "Front",
  3632. image: {
  3633. source: "./media/characters/jennifer/front.svg",
  3634. bottom: 0.11,
  3635. extra: 1.16
  3636. }
  3637. },
  3638. frontAlt: {
  3639. height: math.unit(2, "meter"),
  3640. weight: math.unit(80, "kg"),
  3641. name: "Front (Alt)",
  3642. image: {
  3643. source: "./media/characters/jennifer/front-alt.svg"
  3644. }
  3645. }
  3646. },
  3647. [
  3648. {
  3649. name: "Canon Height",
  3650. height: math.unit(120, "feet"),
  3651. default: true
  3652. },
  3653. {
  3654. name: "Macro+",
  3655. height: math.unit(300, "feet")
  3656. },
  3657. {
  3658. name: "Megamacro",
  3659. height: math.unit(20000, "feet")
  3660. }
  3661. ]
  3662. ))
  3663. characterMakers.push(() => makeCharacter(
  3664. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3665. {
  3666. front: {
  3667. height: math.unit(2, "meter"),
  3668. weight: math.unit(50, "kg"),
  3669. name: "Front",
  3670. image: {
  3671. source: "./media/characters/kalista/front.svg",
  3672. extra: 1947 / 1700,
  3673. bottom: 76.6 / 1412.98
  3674. }
  3675. },
  3676. back: {
  3677. height: math.unit(2, "meter"),
  3678. weight: math.unit(50, "kg"),
  3679. name: "Back",
  3680. image: {
  3681. source: "./media/characters/kalista/back.svg",
  3682. extra: 1366 / 1156,
  3683. bottom: 33.9 / 1362.78
  3684. }
  3685. }
  3686. },
  3687. [
  3688. {
  3689. name: "Uncomfortably Small",
  3690. height: math.unit(10, "feet")
  3691. },
  3692. {
  3693. name: "Small",
  3694. height: math.unit(30, "feet")
  3695. },
  3696. {
  3697. name: "Macro",
  3698. height: math.unit(100, "feet"),
  3699. default: true
  3700. },
  3701. {
  3702. name: "Macro+",
  3703. height: math.unit(2000, "feet")
  3704. },
  3705. {
  3706. name: "True Form",
  3707. height: math.unit(8924, "miles")
  3708. }
  3709. ]
  3710. ))
  3711. characterMakers.push(() => makeCharacter(
  3712. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3713. {
  3714. front: {
  3715. height: math.unit(2, "meter"),
  3716. weight: math.unit(120, "kg"),
  3717. name: "Front",
  3718. image: {
  3719. source: "./media/characters/ggv/front.svg"
  3720. }
  3721. },
  3722. side: {
  3723. height: math.unit(2, "meter"),
  3724. weight: math.unit(120, "kg"),
  3725. name: "Side",
  3726. image: {
  3727. source: "./media/characters/ggv/side.svg"
  3728. }
  3729. }
  3730. },
  3731. [
  3732. {
  3733. name: "Extremely Puny",
  3734. height: math.unit(9 + 5 / 12, "feet")
  3735. },
  3736. {
  3737. name: "Horribly Small",
  3738. height: math.unit(47.7, "miles"),
  3739. default: true
  3740. },
  3741. {
  3742. name: "Reasonably Sized",
  3743. height: math.unit(25000, "parsecs")
  3744. },
  3745. {
  3746. name: "Slightly Uncompressed",
  3747. height: math.unit(7.77e31, "parsecs")
  3748. },
  3749. {
  3750. name: "Omniversal",
  3751. height: math.unit(1e300, "meters")
  3752. },
  3753. ]
  3754. ))
  3755. characterMakers.push(() => makeCharacter(
  3756. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3757. {
  3758. front: {
  3759. height: math.unit(2, "meter"),
  3760. weight: math.unit(75, "lb"),
  3761. name: "Front",
  3762. image: {
  3763. source: "./media/characters/napalm/front.svg"
  3764. }
  3765. },
  3766. back: {
  3767. height: math.unit(2, "meter"),
  3768. weight: math.unit(75, "lb"),
  3769. name: "Back",
  3770. image: {
  3771. source: "./media/characters/napalm/back.svg"
  3772. }
  3773. }
  3774. },
  3775. [
  3776. {
  3777. name: "Standard",
  3778. height: math.unit(55, "feet"),
  3779. default: true
  3780. }
  3781. ]
  3782. ))
  3783. characterMakers.push(() => makeCharacter(
  3784. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3785. {
  3786. front: {
  3787. height: math.unit(7 + 5 / 6, "feet"),
  3788. weight: math.unit(325, "lb"),
  3789. name: "Front",
  3790. image: {
  3791. source: "./media/characters/asana/front.svg",
  3792. extra: 1133 / 1060,
  3793. bottom: 15.2 / 1148.6
  3794. }
  3795. },
  3796. back: {
  3797. height: math.unit(7 + 5 / 6, "feet"),
  3798. weight: math.unit(325, "lb"),
  3799. name: "Back",
  3800. image: {
  3801. source: "./media/characters/asana/back.svg",
  3802. extra: 1114 / 1043,
  3803. bottom: 5 / 1120
  3804. }
  3805. },
  3806. dressedDark: {
  3807. height: math.unit(7 + 5 / 6, "feet"),
  3808. weight: math.unit(325, "lb"),
  3809. name: "Dressed (Dark)",
  3810. image: {
  3811. source: "./media/characters/asana/dressed-dark.svg",
  3812. extra: 1133 / 1060,
  3813. bottom: 15.2 / 1148.6
  3814. }
  3815. },
  3816. dressedLight: {
  3817. height: math.unit(7 + 5 / 6, "feet"),
  3818. weight: math.unit(325, "lb"),
  3819. name: "Dressed (Light)",
  3820. image: {
  3821. source: "./media/characters/asana/dressed-light.svg",
  3822. extra: 1133 / 1060,
  3823. bottom: 15.2 / 1148.6
  3824. }
  3825. },
  3826. },
  3827. [
  3828. {
  3829. name: "Standard",
  3830. height: math.unit(7 + 5 / 6, "feet"),
  3831. default: true
  3832. },
  3833. {
  3834. name: "Large",
  3835. height: math.unit(10, "meters")
  3836. },
  3837. {
  3838. name: "Macro",
  3839. height: math.unit(2500, "meters")
  3840. },
  3841. {
  3842. name: "Megamacro",
  3843. height: math.unit(5e6, "meters")
  3844. },
  3845. {
  3846. name: "Examacro",
  3847. height: math.unit(5e12, "lightyears")
  3848. },
  3849. {
  3850. name: "Max Size",
  3851. height: math.unit(1e31, "lightyears")
  3852. }
  3853. ]
  3854. ))
  3855. characterMakers.push(() => makeCharacter(
  3856. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3857. {
  3858. front: {
  3859. height: math.unit(2, "meter"),
  3860. weight: math.unit(60, "kg"),
  3861. name: "Front",
  3862. image: {
  3863. source: "./media/characters/ebony/front.svg",
  3864. bottom: 0.03,
  3865. extra: 1045 / 810 + 0.03
  3866. }
  3867. },
  3868. side: {
  3869. height: math.unit(2, "meter"),
  3870. weight: math.unit(60, "kg"),
  3871. name: "Side",
  3872. image: {
  3873. source: "./media/characters/ebony/side.svg",
  3874. bottom: 0.03,
  3875. extra: 1045 / 810 + 0.03
  3876. }
  3877. },
  3878. back: {
  3879. height: math.unit(2, "meter"),
  3880. weight: math.unit(60, "kg"),
  3881. name: "Back",
  3882. image: {
  3883. source: "./media/characters/ebony/back.svg",
  3884. bottom: 0.01,
  3885. extra: 1045 / 810 + 0.01
  3886. }
  3887. },
  3888. },
  3889. [
  3890. // TODO check why I did this lol
  3891. {
  3892. name: "Standard",
  3893. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3894. default: true
  3895. },
  3896. {
  3897. name: "Macro",
  3898. height: math.unit(200, "feet")
  3899. },
  3900. {
  3901. name: "Gigamacro",
  3902. height: math.unit(13000, "km")
  3903. }
  3904. ]
  3905. ))
  3906. characterMakers.push(() => makeCharacter(
  3907. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3908. {
  3909. front: {
  3910. height: math.unit(6, "feet"),
  3911. weight: math.unit(175, "lb"),
  3912. name: "Front",
  3913. image: {
  3914. source: "./media/characters/mountain/front.svg",
  3915. extra: 972 / 955,
  3916. bottom: 64 / 1036.6
  3917. }
  3918. },
  3919. back: {
  3920. height: math.unit(6, "feet"),
  3921. weight: math.unit(175, "lb"),
  3922. name: "Back",
  3923. image: {
  3924. source: "./media/characters/mountain/back.svg",
  3925. extra: 970 / 950,
  3926. bottom: 28.25 / 999
  3927. }
  3928. },
  3929. },
  3930. [
  3931. {
  3932. name: "Large",
  3933. height: math.unit(20, "meters")
  3934. },
  3935. {
  3936. name: "Macro",
  3937. height: math.unit(300, "meters")
  3938. },
  3939. {
  3940. name: "Gigamacro",
  3941. height: math.unit(10000, "km"),
  3942. default: true
  3943. },
  3944. {
  3945. name: "Examacro",
  3946. height: math.unit(10e9, "lightyears")
  3947. }
  3948. ]
  3949. ))
  3950. characterMakers.push(() => makeCharacter(
  3951. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3952. {
  3953. front: {
  3954. height: math.unit(8, "feet"),
  3955. weight: math.unit(500, "lb"),
  3956. name: "Front",
  3957. image: {
  3958. source: "./media/characters/rick/front.svg"
  3959. }
  3960. }
  3961. },
  3962. [
  3963. {
  3964. name: "Normal",
  3965. height: math.unit(8, "feet"),
  3966. default: true
  3967. },
  3968. {
  3969. name: "Macro",
  3970. height: math.unit(5, "km")
  3971. }
  3972. ]
  3973. ))
  3974. characterMakers.push(() => makeCharacter(
  3975. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3976. {
  3977. front: {
  3978. height: math.unit(8, "feet"),
  3979. weight: math.unit(120, "lb"),
  3980. name: "Front",
  3981. image: {
  3982. source: "./media/characters/ona/front.svg"
  3983. }
  3984. },
  3985. frontAlt: {
  3986. height: math.unit(8, "feet"),
  3987. weight: math.unit(120, "lb"),
  3988. name: "Front (Alt)",
  3989. image: {
  3990. source: "./media/characters/ona/front-alt.svg"
  3991. }
  3992. },
  3993. back: {
  3994. height: math.unit(8, "feet"),
  3995. weight: math.unit(120, "lb"),
  3996. name: "Back",
  3997. image: {
  3998. source: "./media/characters/ona/back.svg"
  3999. }
  4000. },
  4001. foot: {
  4002. height: math.unit(1.1, "feet"),
  4003. name: "Foot",
  4004. image: {
  4005. source: "./media/characters/ona/foot.svg"
  4006. }
  4007. }
  4008. },
  4009. [
  4010. {
  4011. name: "Megamacro",
  4012. height: math.unit(70, "km"),
  4013. default: true
  4014. },
  4015. {
  4016. name: "Gigamacro",
  4017. height: math.unit(681818, "miles")
  4018. },
  4019. {
  4020. name: "Examacro",
  4021. height: math.unit(3800000, "lightyears")
  4022. },
  4023. ]
  4024. ))
  4025. characterMakers.push(() => makeCharacter(
  4026. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4027. {
  4028. front: {
  4029. height: math.unit(12, "feet"),
  4030. weight: math.unit(3000, "lb"),
  4031. name: "Front",
  4032. image: {
  4033. source: "./media/characters/mech/front.svg",
  4034. extra: 2900 / 2770,
  4035. bottom: 110 / 3010
  4036. }
  4037. },
  4038. back: {
  4039. height: math.unit(12, "feet"),
  4040. weight: math.unit(3000, "lb"),
  4041. name: "Back",
  4042. image: {
  4043. source: "./media/characters/mech/back.svg",
  4044. extra: 3011 / 2890,
  4045. bottom: 94 / 3105
  4046. }
  4047. },
  4048. maw: {
  4049. height: math.unit(3.07, "feet"),
  4050. name: "Maw",
  4051. image: {
  4052. source: "./media/characters/mech/maw.svg"
  4053. }
  4054. },
  4055. head: {
  4056. height: math.unit(2.82, "feet"),
  4057. name: "Head",
  4058. image: {
  4059. source: "./media/characters/mech/head.svg"
  4060. }
  4061. },
  4062. dick: {
  4063. height: math.unit(1.43, "feet"),
  4064. name: "Dick",
  4065. image: {
  4066. source: "./media/characters/mech/dick.svg"
  4067. }
  4068. },
  4069. },
  4070. [
  4071. {
  4072. name: "Normal",
  4073. height: math.unit(12, "feet")
  4074. },
  4075. {
  4076. name: "Macro",
  4077. height: math.unit(300, "feet"),
  4078. default: true
  4079. },
  4080. {
  4081. name: "Macro+",
  4082. height: math.unit(1500, "feet")
  4083. },
  4084. ]
  4085. ))
  4086. characterMakers.push(() => makeCharacter(
  4087. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4088. {
  4089. front: {
  4090. height: math.unit(1.3, "meter"),
  4091. weight: math.unit(30, "kg"),
  4092. name: "Front",
  4093. image: {
  4094. source: "./media/characters/gregory/front.svg",
  4095. }
  4096. }
  4097. },
  4098. [
  4099. {
  4100. name: "Normal",
  4101. height: math.unit(1.3, "meter"),
  4102. default: true
  4103. },
  4104. {
  4105. name: "Macro",
  4106. height: math.unit(20, "meter")
  4107. }
  4108. ]
  4109. ))
  4110. characterMakers.push(() => makeCharacter(
  4111. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4112. {
  4113. front: {
  4114. height: math.unit(2.8, "meter"),
  4115. weight: math.unit(200, "kg"),
  4116. name: "Front",
  4117. image: {
  4118. source: "./media/characters/elory/front.svg",
  4119. }
  4120. }
  4121. },
  4122. [
  4123. {
  4124. name: "Normal",
  4125. height: math.unit(2.8, "meter"),
  4126. default: true
  4127. },
  4128. {
  4129. name: "Macro",
  4130. height: math.unit(38, "meter")
  4131. }
  4132. ]
  4133. ))
  4134. characterMakers.push(() => makeCharacter(
  4135. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4136. {
  4137. front: {
  4138. height: math.unit(470, "feet"),
  4139. weight: math.unit(924, "tons"),
  4140. name: "Front",
  4141. image: {
  4142. source: "./media/characters/angelpatamon/front.svg",
  4143. }
  4144. }
  4145. },
  4146. [
  4147. {
  4148. name: "Normal",
  4149. height: math.unit(470, "feet"),
  4150. default: true
  4151. },
  4152. {
  4153. name: "Deity Size I",
  4154. height: math.unit(28651.2, "km")
  4155. },
  4156. {
  4157. name: "Deity Size II",
  4158. height: math.unit(171907.2, "km")
  4159. }
  4160. ]
  4161. ))
  4162. characterMakers.push(() => makeCharacter(
  4163. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4164. {
  4165. side: {
  4166. height: math.unit(7.2, "meter"),
  4167. weight: math.unit(8.2, "tons"),
  4168. name: "Side",
  4169. image: {
  4170. source: "./media/characters/cryae/side.svg",
  4171. extra: 3500 / 1500
  4172. }
  4173. }
  4174. },
  4175. [
  4176. {
  4177. name: "Normal",
  4178. height: math.unit(7.2, "meter"),
  4179. default: true
  4180. }
  4181. ]
  4182. ))
  4183. characterMakers.push(() => makeCharacter(
  4184. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4185. {
  4186. front: {
  4187. height: math.unit(6, "feet"),
  4188. weight: math.unit(175, "lb"),
  4189. name: "Front",
  4190. image: {
  4191. source: "./media/characters/xera/front.svg",
  4192. extra: 2377 / 1972,
  4193. bottom: 75.5 / 2452
  4194. }
  4195. },
  4196. side: {
  4197. height: math.unit(6, "feet"),
  4198. weight: math.unit(175, "lb"),
  4199. name: "Side",
  4200. image: {
  4201. source: "./media/characters/xera/side.svg",
  4202. extra: 2345 / 2019,
  4203. bottom: 39.7 / 2384
  4204. }
  4205. },
  4206. back: {
  4207. height: math.unit(6, "feet"),
  4208. weight: math.unit(175, "lb"),
  4209. name: "Back",
  4210. image: {
  4211. source: "./media/characters/xera/back.svg",
  4212. extra: 2095 / 1984,
  4213. bottom: 67 / 2166
  4214. }
  4215. },
  4216. },
  4217. [
  4218. {
  4219. name: "Small",
  4220. height: math.unit(10, "feet")
  4221. },
  4222. {
  4223. name: "Macro",
  4224. height: math.unit(500, "meters"),
  4225. default: true
  4226. },
  4227. {
  4228. name: "Macro+",
  4229. height: math.unit(10, "km")
  4230. },
  4231. {
  4232. name: "Gigamacro",
  4233. height: math.unit(25000, "km")
  4234. },
  4235. {
  4236. name: "Teramacro",
  4237. height: math.unit(3e6, "km")
  4238. }
  4239. ]
  4240. ))
  4241. characterMakers.push(() => makeCharacter(
  4242. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4243. {
  4244. front: {
  4245. height: math.unit(6, "feet"),
  4246. weight: math.unit(175, "lb"),
  4247. name: "Front",
  4248. image: {
  4249. source: "./media/characters/nebula/front.svg",
  4250. extra: 2566 / 2362,
  4251. bottom: 81 / 2644
  4252. }
  4253. }
  4254. },
  4255. [
  4256. {
  4257. name: "Small",
  4258. height: math.unit(4.5, "meters")
  4259. },
  4260. {
  4261. name: "Macro",
  4262. height: math.unit(1500, "meters"),
  4263. default: true
  4264. },
  4265. {
  4266. name: "Megamacro",
  4267. height: math.unit(150, "km")
  4268. },
  4269. {
  4270. name: "Gigamacro",
  4271. height: math.unit(27000, "km")
  4272. }
  4273. ]
  4274. ))
  4275. characterMakers.push(() => makeCharacter(
  4276. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4277. {
  4278. front: {
  4279. height: math.unit(6, "feet"),
  4280. weight: math.unit(225, "lb"),
  4281. name: "Front",
  4282. image: {
  4283. source: "./media/characters/abysgar/front.svg"
  4284. }
  4285. }
  4286. },
  4287. [
  4288. {
  4289. name: "Small",
  4290. height: math.unit(4.5, "meters")
  4291. },
  4292. {
  4293. name: "Macro",
  4294. height: math.unit(1250, "meters"),
  4295. default: true
  4296. },
  4297. {
  4298. name: "Megamacro",
  4299. height: math.unit(125, "km")
  4300. },
  4301. {
  4302. name: "Gigamacro",
  4303. height: math.unit(26000, "km")
  4304. }
  4305. ]
  4306. ))
  4307. characterMakers.push(() => makeCharacter(
  4308. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4309. {
  4310. front: {
  4311. height: math.unit(6, "feet"),
  4312. weight: math.unit(180, "lb"),
  4313. name: "Front",
  4314. image: {
  4315. source: "./media/characters/yakuz/front.svg"
  4316. }
  4317. }
  4318. },
  4319. [
  4320. {
  4321. name: "Small",
  4322. height: math.unit(5, "meters")
  4323. },
  4324. {
  4325. name: "Macro",
  4326. height: math.unit(1500, "meters"),
  4327. default: true
  4328. },
  4329. {
  4330. name: "Megamacro",
  4331. height: math.unit(200, "km")
  4332. },
  4333. {
  4334. name: "Gigamacro",
  4335. height: math.unit(100000, "km")
  4336. }
  4337. ]
  4338. ))
  4339. characterMakers.push(() => makeCharacter(
  4340. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4341. {
  4342. front: {
  4343. height: math.unit(6, "feet"),
  4344. weight: math.unit(175, "lb"),
  4345. name: "Front",
  4346. image: {
  4347. source: "./media/characters/mirova/front.svg",
  4348. extra: 3334 / 3071,
  4349. bottom: 42 / 3375.6
  4350. }
  4351. }
  4352. },
  4353. [
  4354. {
  4355. name: "Small",
  4356. height: math.unit(5, "meters")
  4357. },
  4358. {
  4359. name: "Macro",
  4360. height: math.unit(900, "meters"),
  4361. default: true
  4362. },
  4363. {
  4364. name: "Megamacro",
  4365. height: math.unit(135, "km")
  4366. },
  4367. {
  4368. name: "Gigamacro",
  4369. height: math.unit(20000, "km")
  4370. }
  4371. ]
  4372. ))
  4373. characterMakers.push(() => makeCharacter(
  4374. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4375. {
  4376. side: {
  4377. height: math.unit(28.35, "feet"),
  4378. weight: math.unit(99.75, "tons"),
  4379. name: "Side",
  4380. image: {
  4381. source: "./media/characters/asana-mech/side.svg",
  4382. extra: 923 / 699,
  4383. bottom: 50 / 975
  4384. }
  4385. },
  4386. chaingun: {
  4387. height: math.unit(7, "feet"),
  4388. weight: math.unit(2400, "lb"),
  4389. name: "Chaingun",
  4390. image: {
  4391. source: "./media/characters/asana-mech/chaingun.svg"
  4392. }
  4393. },
  4394. laser: {
  4395. height: math.unit(7.12, "feet"),
  4396. weight: math.unit(2000, "lb"),
  4397. name: "Laser",
  4398. image: {
  4399. source: "./media/characters/asana-mech/laser.svg"
  4400. }
  4401. },
  4402. },
  4403. [
  4404. {
  4405. name: "Normal",
  4406. height: math.unit(28.35, "feet"),
  4407. default: true
  4408. },
  4409. {
  4410. name: "Macro",
  4411. height: math.unit(2500, "feet")
  4412. },
  4413. {
  4414. name: "Megamacro",
  4415. height: math.unit(25, "miles")
  4416. },
  4417. {
  4418. name: "Examacro",
  4419. height: math.unit(6e8, "lightyears")
  4420. },
  4421. ]
  4422. ))
  4423. characterMakers.push(() => makeCharacter(
  4424. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4425. {
  4426. front: {
  4427. height: math.unit(5, "meters"),
  4428. weight: math.unit(1000, "kg"),
  4429. name: "Front",
  4430. image: {
  4431. source: "./media/characters/asche/front.svg",
  4432. extra: 1258 / 1190,
  4433. bottom: 47 / 1305
  4434. }
  4435. },
  4436. frontUnderwear: {
  4437. height: math.unit(5, "meters"),
  4438. weight: math.unit(1000, "kg"),
  4439. name: "Front (Underwear)",
  4440. image: {
  4441. source: "./media/characters/asche/front-underwear.svg",
  4442. extra: 1258 / 1190,
  4443. bottom: 47 / 1305
  4444. }
  4445. },
  4446. frontDressed: {
  4447. height: math.unit(5, "meters"),
  4448. weight: math.unit(1000, "kg"),
  4449. name: "Front (Dressed)",
  4450. image: {
  4451. source: "./media/characters/asche/front-dressed.svg",
  4452. extra: 1258 / 1190,
  4453. bottom: 47 / 1305
  4454. }
  4455. },
  4456. frontArmor: {
  4457. height: math.unit(5, "meters"),
  4458. weight: math.unit(1000, "kg"),
  4459. name: "Front (Armored)",
  4460. image: {
  4461. source: "./media/characters/asche/front-armored.svg",
  4462. extra: 1374 / 1308,
  4463. bottom: 23 / 1397
  4464. }
  4465. },
  4466. mp724: {
  4467. height: math.unit(0.96, "meters"),
  4468. weight: math.unit(38, "kg"),
  4469. name: "H&K MP724",
  4470. image: {
  4471. source: "./media/characters/asche/h&k-mp724.svg"
  4472. }
  4473. },
  4474. side: {
  4475. height: math.unit(5, "meters"),
  4476. weight: math.unit(1000, "kg"),
  4477. name: "Side",
  4478. image: {
  4479. source: "./media/characters/asche/side.svg",
  4480. extra: 1717 / 1609,
  4481. bottom: 0.005
  4482. }
  4483. },
  4484. back: {
  4485. height: math.unit(5, "meters"),
  4486. weight: math.unit(1000, "kg"),
  4487. name: "Back",
  4488. image: {
  4489. source: "./media/characters/asche/back.svg",
  4490. extra: 1570 / 1501
  4491. }
  4492. },
  4493. },
  4494. [
  4495. {
  4496. name: "DEFCON 5",
  4497. height: math.unit(5, "meters")
  4498. },
  4499. {
  4500. name: "DEFCON 4",
  4501. height: math.unit(500, "meters"),
  4502. default: true
  4503. },
  4504. {
  4505. name: "DEFCON 3",
  4506. height: math.unit(5, "km")
  4507. },
  4508. {
  4509. name: "DEFCON 2",
  4510. height: math.unit(500, "km")
  4511. },
  4512. {
  4513. name: "DEFCON 1",
  4514. height: math.unit(500000, "km")
  4515. },
  4516. {
  4517. name: "DEFCON 0",
  4518. height: math.unit(3, "gigaparsecs")
  4519. },
  4520. ]
  4521. ))
  4522. characterMakers.push(() => makeCharacter(
  4523. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4524. {
  4525. front: {
  4526. height: math.unit(2, "meters"),
  4527. weight: math.unit(76, "kg"),
  4528. name: "Front",
  4529. image: {
  4530. source: "./media/characters/gale/front.svg"
  4531. }
  4532. },
  4533. frontAlt1: {
  4534. height: math.unit(2, "meters"),
  4535. weight: math.unit(76, "kg"),
  4536. name: "Front (Alt 1)",
  4537. image: {
  4538. source: "./media/characters/gale/front-alt-1.svg"
  4539. }
  4540. },
  4541. frontAlt2: {
  4542. height: math.unit(2, "meters"),
  4543. weight: math.unit(76, "kg"),
  4544. name: "Front (Alt 2)",
  4545. image: {
  4546. source: "./media/characters/gale/front-alt-2.svg"
  4547. }
  4548. },
  4549. },
  4550. [
  4551. {
  4552. name: "Normal",
  4553. height: math.unit(7, "feet")
  4554. },
  4555. {
  4556. name: "Macro",
  4557. height: math.unit(150, "feet"),
  4558. default: true
  4559. },
  4560. {
  4561. name: "Macro+",
  4562. height: math.unit(300, "feet")
  4563. },
  4564. ]
  4565. ))
  4566. characterMakers.push(() => makeCharacter(
  4567. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4568. {
  4569. front: {
  4570. height: math.unit(5 + 10/12, "feet"),
  4571. weight: math.unit(67, "kg"),
  4572. name: "Front",
  4573. image: {
  4574. source: "./media/characters/draylen/front.svg",
  4575. extra: 832/777,
  4576. bottom: 85/917
  4577. }
  4578. }
  4579. },
  4580. [
  4581. {
  4582. name: "Normal",
  4583. height: math.unit(5 + 10/12, "feet")
  4584. },
  4585. {
  4586. name: "Macro",
  4587. height: math.unit(150, "feet"),
  4588. default: true
  4589. }
  4590. ]
  4591. ))
  4592. characterMakers.push(() => makeCharacter(
  4593. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4594. {
  4595. front: {
  4596. height: math.unit(7 + 9 / 12, "feet"),
  4597. weight: math.unit(379, "lbs"),
  4598. name: "Front",
  4599. image: {
  4600. source: "./media/characters/chez/front.svg"
  4601. }
  4602. },
  4603. side: {
  4604. height: math.unit(7 + 9 / 12, "feet"),
  4605. weight: math.unit(379, "lbs"),
  4606. name: "Side",
  4607. image: {
  4608. source: "./media/characters/chez/side.svg"
  4609. }
  4610. }
  4611. },
  4612. [
  4613. {
  4614. name: "Normal",
  4615. height: math.unit(7 + 9 / 12, "feet"),
  4616. default: true
  4617. },
  4618. {
  4619. name: "God King",
  4620. height: math.unit(9750000, "meters")
  4621. }
  4622. ]
  4623. ))
  4624. characterMakers.push(() => makeCharacter(
  4625. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4626. {
  4627. front: {
  4628. height: math.unit(6, "feet"),
  4629. weight: math.unit(275, "lbs"),
  4630. name: "Front",
  4631. image: {
  4632. source: "./media/characters/kaylum/front.svg",
  4633. bottom: 0.01,
  4634. extra: 1166 / 1031
  4635. }
  4636. },
  4637. frontWingless: {
  4638. height: math.unit(6, "feet"),
  4639. weight: math.unit(275, "lbs"),
  4640. name: "Front (Wingless)",
  4641. image: {
  4642. source: "./media/characters/kaylum/front-wingless.svg",
  4643. bottom: 0.01,
  4644. extra: 1117 / 1031
  4645. }
  4646. }
  4647. },
  4648. [
  4649. {
  4650. name: "Normal",
  4651. height: math.unit(3.05, "meters")
  4652. },
  4653. {
  4654. name: "Master",
  4655. height: math.unit(5.5, "meters")
  4656. },
  4657. {
  4658. name: "Rampage",
  4659. height: math.unit(19, "meters")
  4660. },
  4661. {
  4662. name: "Macro Lite",
  4663. height: math.unit(37, "meters")
  4664. },
  4665. {
  4666. name: "Hyper Predator",
  4667. height: math.unit(61, "meters")
  4668. },
  4669. {
  4670. name: "Macro",
  4671. height: math.unit(138, "meters"),
  4672. default: true
  4673. }
  4674. ]
  4675. ))
  4676. characterMakers.push(() => makeCharacter(
  4677. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4678. {
  4679. front: {
  4680. height: math.unit(6, "feet"),
  4681. weight: math.unit(150, "lbs"),
  4682. name: "Front",
  4683. image: {
  4684. source: "./media/characters/geta/front.svg"
  4685. }
  4686. }
  4687. },
  4688. [
  4689. {
  4690. name: "Micro",
  4691. height: math.unit(3, "inches"),
  4692. default: true
  4693. },
  4694. {
  4695. name: "Normal",
  4696. height: math.unit(5 + 5 / 12, "feet")
  4697. }
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4702. {
  4703. front: {
  4704. height: math.unit(6, "feet"),
  4705. weight: math.unit(300, "lbs"),
  4706. name: "Front",
  4707. image: {
  4708. source: "./media/characters/tyrnn/front.svg"
  4709. }
  4710. }
  4711. },
  4712. [
  4713. {
  4714. name: "Main Height",
  4715. height: math.unit(355, "feet"),
  4716. default: true
  4717. },
  4718. {
  4719. name: "Fave. Height",
  4720. height: math.unit(2400, "feet")
  4721. }
  4722. ]
  4723. ))
  4724. characterMakers.push(() => makeCharacter(
  4725. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4726. {
  4727. front: {
  4728. height: math.unit(6, "feet"),
  4729. weight: math.unit(300, "lbs"),
  4730. name: "Front",
  4731. image: {
  4732. source: "./media/characters/appledectomy/front.svg"
  4733. }
  4734. }
  4735. },
  4736. [
  4737. {
  4738. name: "Macro",
  4739. height: math.unit(2500, "feet")
  4740. },
  4741. {
  4742. name: "Megamacro",
  4743. height: math.unit(50, "miles"),
  4744. default: true
  4745. },
  4746. {
  4747. name: "Gigamacro",
  4748. height: math.unit(5000, "miles")
  4749. },
  4750. {
  4751. name: "Teramacro",
  4752. height: math.unit(250000, "miles")
  4753. },
  4754. ]
  4755. ))
  4756. characterMakers.push(() => makeCharacter(
  4757. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4758. {
  4759. front: {
  4760. height: math.unit(6, "feet"),
  4761. weight: math.unit(200, "lbs"),
  4762. name: "Front",
  4763. image: {
  4764. source: "./media/characters/vulpes/front.svg",
  4765. extra: 573 / 543,
  4766. bottom: 0.033
  4767. }
  4768. },
  4769. side: {
  4770. height: math.unit(6, "feet"),
  4771. weight: math.unit(200, "lbs"),
  4772. name: "Side",
  4773. image: {
  4774. source: "./media/characters/vulpes/side.svg",
  4775. extra: 577 / 549,
  4776. bottom: 11 / 588
  4777. }
  4778. },
  4779. back: {
  4780. height: math.unit(6, "feet"),
  4781. weight: math.unit(200, "lbs"),
  4782. name: "Back",
  4783. image: {
  4784. source: "./media/characters/vulpes/back.svg",
  4785. extra: 573 / 549,
  4786. bottom: 20 / 593
  4787. }
  4788. },
  4789. feet: {
  4790. height: math.unit(1.276, "feet"),
  4791. name: "Feet",
  4792. image: {
  4793. source: "./media/characters/vulpes/feet.svg"
  4794. }
  4795. },
  4796. maw: {
  4797. height: math.unit(1.18, "feet"),
  4798. name: "Maw",
  4799. image: {
  4800. source: "./media/characters/vulpes/maw.svg"
  4801. }
  4802. },
  4803. },
  4804. [
  4805. {
  4806. name: "Micro",
  4807. height: math.unit(2, "inches")
  4808. },
  4809. {
  4810. name: "Normal",
  4811. height: math.unit(6.3, "feet")
  4812. },
  4813. {
  4814. name: "Macro",
  4815. height: math.unit(850, "feet")
  4816. },
  4817. {
  4818. name: "Megamacro",
  4819. height: math.unit(7500, "feet"),
  4820. default: true
  4821. },
  4822. {
  4823. name: "Gigamacro",
  4824. height: math.unit(570000, "miles")
  4825. }
  4826. ]
  4827. ))
  4828. characterMakers.push(() => makeCharacter(
  4829. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4830. {
  4831. front: {
  4832. height: math.unit(6, "feet"),
  4833. weight: math.unit(210, "lbs"),
  4834. name: "Front",
  4835. image: {
  4836. source: "./media/characters/rain-fallen/front.svg"
  4837. }
  4838. },
  4839. side: {
  4840. height: math.unit(6, "feet"),
  4841. weight: math.unit(210, "lbs"),
  4842. name: "Side",
  4843. image: {
  4844. source: "./media/characters/rain-fallen/side.svg"
  4845. }
  4846. },
  4847. back: {
  4848. height: math.unit(6, "feet"),
  4849. weight: math.unit(210, "lbs"),
  4850. name: "Back",
  4851. image: {
  4852. source: "./media/characters/rain-fallen/back.svg"
  4853. }
  4854. },
  4855. feral: {
  4856. height: math.unit(9, "feet"),
  4857. weight: math.unit(700, "lbs"),
  4858. name: "Feral",
  4859. image: {
  4860. source: "./media/characters/rain-fallen/feral.svg"
  4861. }
  4862. },
  4863. },
  4864. [
  4865. {
  4866. name: "Meddling with Mortals",
  4867. height: math.unit(8 + 8/12, "feet")
  4868. },
  4869. {
  4870. name: "Normal",
  4871. height: math.unit(5, "meter")
  4872. },
  4873. {
  4874. name: "Macro",
  4875. height: math.unit(150, "meter"),
  4876. default: true
  4877. },
  4878. {
  4879. name: "Megamacro",
  4880. height: math.unit(278e6, "meter")
  4881. },
  4882. {
  4883. name: "Gigamacro",
  4884. height: math.unit(2e9, "meter")
  4885. },
  4886. {
  4887. name: "Teramacro",
  4888. height: math.unit(8e12, "meter")
  4889. },
  4890. {
  4891. name: "Devourer",
  4892. height: math.unit(14, "zettameters")
  4893. },
  4894. {
  4895. name: "Scarlet King",
  4896. height: math.unit(18, "yottameters")
  4897. },
  4898. {
  4899. name: "Void",
  4900. height: math.unit(1e88, "yottameters")
  4901. }
  4902. ]
  4903. ))
  4904. characterMakers.push(() => makeCharacter(
  4905. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4906. {
  4907. standing: {
  4908. height: math.unit(6, "feet"),
  4909. weight: math.unit(180, "lbs"),
  4910. name: "Standing",
  4911. image: {
  4912. source: "./media/characters/zaakira/standing.svg",
  4913. extra: 1599/1504,
  4914. bottom: 39/1638
  4915. }
  4916. },
  4917. laying: {
  4918. height: math.unit(3, "feet"),
  4919. weight: math.unit(180, "lbs"),
  4920. name: "Laying",
  4921. image: {
  4922. source: "./media/characters/zaakira/laying.svg"
  4923. }
  4924. },
  4925. },
  4926. [
  4927. {
  4928. name: "Normal",
  4929. height: math.unit(12, "feet")
  4930. },
  4931. {
  4932. name: "Macro",
  4933. height: math.unit(279, "feet"),
  4934. default: true
  4935. }
  4936. ]
  4937. ))
  4938. characterMakers.push(() => makeCharacter(
  4939. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4940. {
  4941. femSfw: {
  4942. height: math.unit(8, "feet"),
  4943. weight: math.unit(350, "lb"),
  4944. name: "Fem",
  4945. image: {
  4946. source: "./media/characters/sigvald/fem-sfw.svg",
  4947. extra: 182 / 164,
  4948. bottom: 8.7 / 190.5
  4949. }
  4950. },
  4951. femNsfw: {
  4952. height: math.unit(8, "feet"),
  4953. weight: math.unit(350, "lb"),
  4954. name: "Fem (NSFW)",
  4955. image: {
  4956. source: "./media/characters/sigvald/fem-nsfw.svg",
  4957. extra: 182 / 164,
  4958. bottom: 8.7 / 190.5
  4959. }
  4960. },
  4961. maleNsfw: {
  4962. height: math.unit(8, "feet"),
  4963. weight: math.unit(350, "lb"),
  4964. name: "Male (NSFW)",
  4965. image: {
  4966. source: "./media/characters/sigvald/male-nsfw.svg",
  4967. extra: 182 / 164,
  4968. bottom: 8.7 / 190.5
  4969. }
  4970. },
  4971. hermNsfw: {
  4972. height: math.unit(8, "feet"),
  4973. weight: math.unit(350, "lb"),
  4974. name: "Herm (NSFW)",
  4975. image: {
  4976. source: "./media/characters/sigvald/herm-nsfw.svg",
  4977. extra: 182 / 164,
  4978. bottom: 8.7 / 190.5
  4979. }
  4980. },
  4981. dick: {
  4982. height: math.unit(2.36, "feet"),
  4983. name: "Dick",
  4984. image: {
  4985. source: "./media/characters/sigvald/dick.svg"
  4986. }
  4987. },
  4988. eye: {
  4989. height: math.unit(0.31, "feet"),
  4990. name: "Eye",
  4991. image: {
  4992. source: "./media/characters/sigvald/eye.svg"
  4993. }
  4994. },
  4995. mouth: {
  4996. height: math.unit(0.92, "feet"),
  4997. name: "Mouth",
  4998. image: {
  4999. source: "./media/characters/sigvald/mouth.svg"
  5000. }
  5001. },
  5002. paws: {
  5003. height: math.unit(2.2, "feet"),
  5004. name: "Paws",
  5005. image: {
  5006. source: "./media/characters/sigvald/paws.svg"
  5007. }
  5008. }
  5009. },
  5010. [
  5011. {
  5012. name: "Normal",
  5013. height: math.unit(8, "feet")
  5014. },
  5015. {
  5016. name: "Large",
  5017. height: math.unit(12, "feet")
  5018. },
  5019. {
  5020. name: "Larger",
  5021. height: math.unit(20, "feet")
  5022. },
  5023. {
  5024. name: "Macro",
  5025. height: math.unit(150, "feet")
  5026. },
  5027. {
  5028. name: "Macro+",
  5029. height: math.unit(200, "feet"),
  5030. default: true
  5031. },
  5032. ]
  5033. ))
  5034. characterMakers.push(() => makeCharacter(
  5035. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5036. {
  5037. side: {
  5038. height: math.unit(12, "feet"),
  5039. weight: math.unit(2000, "kg"),
  5040. name: "Side",
  5041. image: {
  5042. source: "./media/characters/scott/side.svg",
  5043. extra: 754 / 724,
  5044. bottom: 0.069
  5045. }
  5046. },
  5047. upright: {
  5048. height: math.unit(12, "feet"),
  5049. weight: math.unit(2000, "kg"),
  5050. name: "Upright",
  5051. image: {
  5052. source: "./media/characters/scott/upright.svg",
  5053. extra: 3881 / 3722,
  5054. bottom: 0.05
  5055. }
  5056. },
  5057. },
  5058. [
  5059. {
  5060. name: "Normal",
  5061. height: math.unit(12, "feet"),
  5062. default: true
  5063. },
  5064. ]
  5065. ))
  5066. characterMakers.push(() => makeCharacter(
  5067. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5068. {
  5069. side: {
  5070. height: math.unit(8, "meters"),
  5071. weight: math.unit(84755, "lbs"),
  5072. name: "Side",
  5073. image: {
  5074. source: "./media/characters/tobias/side.svg",
  5075. extra: 1474 / 1096,
  5076. bottom: 38.9 / 1513.1235
  5077. }
  5078. },
  5079. },
  5080. [
  5081. {
  5082. name: "Normal",
  5083. height: math.unit(8, "meters"),
  5084. default: true
  5085. },
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5090. {
  5091. front: {
  5092. height: math.unit(5.5, "feet"),
  5093. weight: math.unit(400, "lbs"),
  5094. name: "Front",
  5095. image: {
  5096. source: "./media/characters/kieran/front.svg",
  5097. extra: 2694 / 2364,
  5098. bottom: 217 / 2908
  5099. }
  5100. },
  5101. side: {
  5102. height: math.unit(5.5, "feet"),
  5103. weight: math.unit(400, "lbs"),
  5104. name: "Side",
  5105. image: {
  5106. source: "./media/characters/kieran/side.svg",
  5107. extra: 875 / 777,
  5108. bottom: 84.6 / 959
  5109. }
  5110. },
  5111. },
  5112. [
  5113. {
  5114. name: "Normal",
  5115. height: math.unit(5.5, "feet"),
  5116. default: true
  5117. },
  5118. ]
  5119. ))
  5120. characterMakers.push(() => makeCharacter(
  5121. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5122. {
  5123. side: {
  5124. height: math.unit(2, "meters"),
  5125. weight: math.unit(70, "kg"),
  5126. name: "Side",
  5127. image: {
  5128. source: "./media/characters/sanya/side.svg",
  5129. bottom: 0.02,
  5130. extra: 1.02
  5131. }
  5132. },
  5133. },
  5134. [
  5135. {
  5136. name: "Small",
  5137. height: math.unit(2, "meters")
  5138. },
  5139. {
  5140. name: "Normal",
  5141. height: math.unit(3, "meters")
  5142. },
  5143. {
  5144. name: "Macro",
  5145. height: math.unit(16, "meters"),
  5146. default: true
  5147. },
  5148. ]
  5149. ))
  5150. characterMakers.push(() => makeCharacter(
  5151. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5152. {
  5153. front: {
  5154. height: math.unit(2, "meters"),
  5155. weight: math.unit(120, "kg"),
  5156. name: "Front",
  5157. image: {
  5158. source: "./media/characters/miranda/front.svg",
  5159. extra: 195 / 185,
  5160. bottom: 10.9 / 206.5
  5161. }
  5162. },
  5163. back: {
  5164. height: math.unit(2, "meters"),
  5165. weight: math.unit(120, "kg"),
  5166. name: "Back",
  5167. image: {
  5168. source: "./media/characters/miranda/back.svg",
  5169. extra: 201 / 193,
  5170. bottom: 2.3 / 203.7
  5171. }
  5172. },
  5173. },
  5174. [
  5175. {
  5176. name: "Normal",
  5177. height: math.unit(10, "feet"),
  5178. default: true
  5179. }
  5180. ]
  5181. ))
  5182. characterMakers.push(() => makeCharacter(
  5183. { name: "James", species: ["deer"], tags: ["anthro"] },
  5184. {
  5185. side: {
  5186. height: math.unit(2, "meters"),
  5187. weight: math.unit(100, "kg"),
  5188. name: "Front",
  5189. image: {
  5190. source: "./media/characters/james/front.svg",
  5191. extra: 10 / 8.5
  5192. }
  5193. },
  5194. },
  5195. [
  5196. {
  5197. name: "Normal",
  5198. height: math.unit(8.5, "feet"),
  5199. default: true
  5200. }
  5201. ]
  5202. ))
  5203. characterMakers.push(() => makeCharacter(
  5204. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5205. {
  5206. side: {
  5207. height: math.unit(9.5, "feet"),
  5208. weight: math.unit(2500, "lbs"),
  5209. name: "Side",
  5210. image: {
  5211. source: "./media/characters/heather/side.svg"
  5212. }
  5213. },
  5214. },
  5215. [
  5216. {
  5217. name: "Normal",
  5218. height: math.unit(9.5, "feet"),
  5219. default: true
  5220. }
  5221. ]
  5222. ))
  5223. characterMakers.push(() => makeCharacter(
  5224. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5225. {
  5226. side: {
  5227. height: math.unit(6.5, "feet"),
  5228. weight: math.unit(400, "lbs"),
  5229. name: "Side",
  5230. image: {
  5231. source: "./media/characters/lukas/side.svg",
  5232. extra: 7.25 / 6.5
  5233. }
  5234. },
  5235. },
  5236. [
  5237. {
  5238. name: "Normal",
  5239. height: math.unit(6.5, "feet"),
  5240. default: true
  5241. }
  5242. ]
  5243. ))
  5244. characterMakers.push(() => makeCharacter(
  5245. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5246. {
  5247. side: {
  5248. height: math.unit(5, "feet"),
  5249. weight: math.unit(3000, "lbs"),
  5250. name: "Side",
  5251. image: {
  5252. source: "./media/characters/louise/side.svg"
  5253. }
  5254. },
  5255. },
  5256. [
  5257. {
  5258. name: "Normal",
  5259. height: math.unit(5, "feet"),
  5260. default: true
  5261. }
  5262. ]
  5263. ))
  5264. characterMakers.push(() => makeCharacter(
  5265. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5266. {
  5267. side: {
  5268. height: math.unit(6, "feet"),
  5269. weight: math.unit(150, "lbs"),
  5270. name: "Side",
  5271. image: {
  5272. source: "./media/characters/ramona/side.svg",
  5273. extra: 871/854,
  5274. bottom: 41/912
  5275. }
  5276. },
  5277. },
  5278. [
  5279. {
  5280. name: "Normal",
  5281. height: math.unit(5.3, "meters"),
  5282. default: true
  5283. },
  5284. {
  5285. name: "Macro",
  5286. height: math.unit(20, "stories")
  5287. },
  5288. {
  5289. name: "Macro+",
  5290. height: math.unit(50, "stories")
  5291. },
  5292. ]
  5293. ))
  5294. characterMakers.push(() => makeCharacter(
  5295. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5296. {
  5297. standing: {
  5298. height: math.unit(5.75, "feet"),
  5299. weight: math.unit(160, "lbs"),
  5300. name: "Standing",
  5301. image: {
  5302. source: "./media/characters/deerpuff/standing.svg",
  5303. extra: 682 / 624
  5304. }
  5305. },
  5306. sitting: {
  5307. height: math.unit(5.75 / 1.79, "feet"),
  5308. weight: math.unit(160, "lbs"),
  5309. name: "Sitting",
  5310. image: {
  5311. source: "./media/characters/deerpuff/sitting.svg",
  5312. bottom: 44 / 400,
  5313. extra: 1
  5314. }
  5315. },
  5316. taurLaying: {
  5317. height: math.unit(6, "feet"),
  5318. weight: math.unit(400, "lbs"),
  5319. name: "Taur (Laying)",
  5320. image: {
  5321. source: "./media/characters/deerpuff/taur-laying.svg"
  5322. }
  5323. },
  5324. },
  5325. [
  5326. {
  5327. name: "Puffball",
  5328. height: math.unit(6, "inches")
  5329. },
  5330. {
  5331. name: "Normalpuff",
  5332. height: math.unit(5.75, "feet")
  5333. },
  5334. {
  5335. name: "Macropuff",
  5336. height: math.unit(1500, "feet"),
  5337. default: true
  5338. },
  5339. {
  5340. name: "Megapuff",
  5341. height: math.unit(500, "miles")
  5342. },
  5343. {
  5344. name: "Gigapuff",
  5345. height: math.unit(250000, "miles")
  5346. },
  5347. {
  5348. name: "Omegapuff",
  5349. height: math.unit(1000, "lightyears")
  5350. },
  5351. ]
  5352. ))
  5353. characterMakers.push(() => makeCharacter(
  5354. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5355. {
  5356. stomping: {
  5357. height: math.unit(6, "feet"),
  5358. weight: math.unit(170, "lbs"),
  5359. name: "Stomping",
  5360. image: {
  5361. source: "./media/characters/vivian/stomping.svg"
  5362. }
  5363. },
  5364. sitting: {
  5365. height: math.unit(6 / 1.75, "feet"),
  5366. weight: math.unit(170, "lbs"),
  5367. name: "Sitting",
  5368. image: {
  5369. source: "./media/characters/vivian/sitting.svg",
  5370. bottom: 1 / 6.4,
  5371. extra: 1,
  5372. }
  5373. },
  5374. },
  5375. [
  5376. {
  5377. name: "Normal",
  5378. height: math.unit(7, "feet"),
  5379. default: true
  5380. },
  5381. {
  5382. name: "Macro",
  5383. height: math.unit(10, "stories")
  5384. },
  5385. {
  5386. name: "Macro+",
  5387. height: math.unit(30, "stories")
  5388. },
  5389. {
  5390. name: "Megamacro",
  5391. height: math.unit(10, "miles")
  5392. },
  5393. {
  5394. name: "Megamacro+",
  5395. height: math.unit(2750000, "meters")
  5396. },
  5397. ]
  5398. ))
  5399. characterMakers.push(() => makeCharacter(
  5400. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5401. {
  5402. front: {
  5403. height: math.unit(6, "feet"),
  5404. weight: math.unit(160, "lbs"),
  5405. name: "Front",
  5406. image: {
  5407. source: "./media/characters/prince/front.svg",
  5408. extra: 3400 / 3000
  5409. }
  5410. },
  5411. jumping: {
  5412. height: math.unit(6, "feet"),
  5413. weight: math.unit(160, "lbs"),
  5414. name: "Jumping",
  5415. image: {
  5416. source: "./media/characters/prince/jump.svg",
  5417. extra: 2555 / 2134
  5418. }
  5419. },
  5420. },
  5421. [
  5422. {
  5423. name: "Normal",
  5424. height: math.unit(7.75, "feet"),
  5425. default: true
  5426. },
  5427. {
  5428. name: "Not cute",
  5429. height: math.unit(17, "feet")
  5430. },
  5431. {
  5432. name: "I said NOT",
  5433. height: math.unit(91, "feet")
  5434. },
  5435. {
  5436. name: "Please stop",
  5437. height: math.unit(560, "feet")
  5438. },
  5439. {
  5440. name: "What have you done",
  5441. height: math.unit(2200, "feet")
  5442. },
  5443. {
  5444. name: "Deer God",
  5445. height: math.unit(3.6, "miles")
  5446. },
  5447. ]
  5448. ))
  5449. characterMakers.push(() => makeCharacter(
  5450. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5451. {
  5452. standing: {
  5453. height: math.unit(6, "feet"),
  5454. weight: math.unit(300, "lbs"),
  5455. name: "Standing",
  5456. image: {
  5457. source: "./media/characters/psymon/standing.svg",
  5458. extra: 1888 / 1810,
  5459. bottom: 0.05
  5460. }
  5461. },
  5462. slithering: {
  5463. height: math.unit(6, "feet"),
  5464. weight: math.unit(300, "lbs"),
  5465. name: "Slithering",
  5466. image: {
  5467. source: "./media/characters/psymon/slithering.svg",
  5468. extra: 1330 / 1224
  5469. }
  5470. },
  5471. slitheringAlt: {
  5472. height: math.unit(6, "feet"),
  5473. weight: math.unit(300, "lbs"),
  5474. name: "Slithering (Alt)",
  5475. image: {
  5476. source: "./media/characters/psymon/slithering-alt.svg",
  5477. extra: 1330 / 1224
  5478. }
  5479. },
  5480. },
  5481. [
  5482. {
  5483. name: "Normal",
  5484. height: math.unit(11.25, "feet"),
  5485. default: true
  5486. },
  5487. {
  5488. name: "Large",
  5489. height: math.unit(27, "feet")
  5490. },
  5491. {
  5492. name: "Giant",
  5493. height: math.unit(87, "feet")
  5494. },
  5495. {
  5496. name: "Macro",
  5497. height: math.unit(365, "feet")
  5498. },
  5499. {
  5500. name: "Megamacro",
  5501. height: math.unit(3, "miles")
  5502. },
  5503. {
  5504. name: "World Serpent",
  5505. height: math.unit(8000, "miles")
  5506. },
  5507. ]
  5508. ))
  5509. characterMakers.push(() => makeCharacter(
  5510. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5511. {
  5512. front: {
  5513. height: math.unit(6, "feet"),
  5514. weight: math.unit(180, "lbs"),
  5515. name: "Front",
  5516. image: {
  5517. source: "./media/characters/daimos/front.svg",
  5518. extra: 4160 / 3897,
  5519. bottom: 0.021
  5520. }
  5521. }
  5522. },
  5523. [
  5524. {
  5525. name: "Normal",
  5526. height: math.unit(8, "feet"),
  5527. default: true
  5528. },
  5529. {
  5530. name: "Big Dog",
  5531. height: math.unit(22, "feet")
  5532. },
  5533. {
  5534. name: "Macro",
  5535. height: math.unit(127, "feet")
  5536. },
  5537. {
  5538. name: "Megamacro",
  5539. height: math.unit(3600, "feet")
  5540. },
  5541. ]
  5542. ))
  5543. characterMakers.push(() => makeCharacter(
  5544. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5545. {
  5546. side: {
  5547. height: math.unit(6, "feet"),
  5548. weight: math.unit(180, "lbs"),
  5549. name: "Side",
  5550. image: {
  5551. source: "./media/characters/blake/side.svg",
  5552. extra: 1212 / 1120,
  5553. bottom: 0.05
  5554. }
  5555. },
  5556. crouched: {
  5557. height: math.unit(6 * 0.57, "feet"),
  5558. weight: math.unit(180, "lbs"),
  5559. name: "Crouched",
  5560. image: {
  5561. source: "./media/characters/blake/crouched.svg",
  5562. extra: 840 / 587,
  5563. bottom: 0.04
  5564. }
  5565. },
  5566. bent: {
  5567. height: math.unit(6 * 0.75, "feet"),
  5568. weight: math.unit(180, "lbs"),
  5569. name: "Bent",
  5570. image: {
  5571. source: "./media/characters/blake/bent.svg",
  5572. extra: 592 / 544,
  5573. bottom: 0.035
  5574. }
  5575. },
  5576. },
  5577. [
  5578. {
  5579. name: "Normal",
  5580. height: math.unit(8 + 1 / 6, "feet"),
  5581. default: true
  5582. },
  5583. {
  5584. name: "Big Backside",
  5585. height: math.unit(37, "feet")
  5586. },
  5587. {
  5588. name: "Subway Shredder",
  5589. height: math.unit(72, "feet")
  5590. },
  5591. {
  5592. name: "City Carver",
  5593. height: math.unit(1675, "feet")
  5594. },
  5595. {
  5596. name: "Tectonic Tweaker",
  5597. height: math.unit(2300, "miles")
  5598. },
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5603. {
  5604. front: {
  5605. height: math.unit(6, "feet"),
  5606. weight: math.unit(180, "lbs"),
  5607. name: "Front",
  5608. image: {
  5609. source: "./media/characters/guisetto/front.svg",
  5610. extra: 856 / 817,
  5611. bottom: 0.06
  5612. }
  5613. },
  5614. airborne: {
  5615. height: math.unit(6, "feet"),
  5616. weight: math.unit(180, "lbs"),
  5617. name: "Airborne",
  5618. image: {
  5619. source: "./media/characters/guisetto/airborne.svg",
  5620. extra: 584 / 525
  5621. }
  5622. },
  5623. },
  5624. [
  5625. {
  5626. name: "Normal",
  5627. height: math.unit(10 + 11 / 12, "feet"),
  5628. default: true
  5629. },
  5630. {
  5631. name: "Large",
  5632. height: math.unit(35, "feet")
  5633. },
  5634. {
  5635. name: "Macro",
  5636. height: math.unit(475, "feet")
  5637. },
  5638. ]
  5639. ))
  5640. characterMakers.push(() => makeCharacter(
  5641. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5642. {
  5643. front: {
  5644. height: math.unit(6, "feet"),
  5645. weight: math.unit(180, "lbs"),
  5646. name: "Front",
  5647. image: {
  5648. source: "./media/characters/luxor/front.svg",
  5649. extra: 2940 / 2152
  5650. }
  5651. },
  5652. back: {
  5653. height: math.unit(6, "feet"),
  5654. weight: math.unit(180, "lbs"),
  5655. name: "Back",
  5656. image: {
  5657. source: "./media/characters/luxor/back.svg",
  5658. extra: 1083 / 960
  5659. }
  5660. },
  5661. },
  5662. [
  5663. {
  5664. name: "Normal",
  5665. height: math.unit(5 + 5 / 6, "feet"),
  5666. default: true
  5667. },
  5668. {
  5669. name: "Lamp",
  5670. height: math.unit(50, "feet")
  5671. },
  5672. {
  5673. name: "Lämp",
  5674. height: math.unit(300, "feet")
  5675. },
  5676. {
  5677. name: "The sun is a lamp",
  5678. height: math.unit(250000, "miles")
  5679. },
  5680. ]
  5681. ))
  5682. characterMakers.push(() => makeCharacter(
  5683. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5684. {
  5685. front: {
  5686. height: math.unit(6, "feet"),
  5687. weight: math.unit(50, "lbs"),
  5688. name: "Front",
  5689. image: {
  5690. source: "./media/characters/huoyan/front.svg"
  5691. }
  5692. },
  5693. side: {
  5694. height: math.unit(6, "feet"),
  5695. weight: math.unit(180, "lbs"),
  5696. name: "Side",
  5697. image: {
  5698. source: "./media/characters/huoyan/side.svg"
  5699. }
  5700. },
  5701. },
  5702. [
  5703. {
  5704. name: "Chef",
  5705. height: math.unit(9, "feet")
  5706. },
  5707. {
  5708. name: "Normal",
  5709. height: math.unit(65, "feet"),
  5710. default: true
  5711. },
  5712. {
  5713. name: "Macro",
  5714. height: math.unit(780, "feet")
  5715. },
  5716. {
  5717. name: "Flaming Mountain",
  5718. height: math.unit(4.8, "miles")
  5719. },
  5720. {
  5721. name: "Celestial",
  5722. height: math.unit(765000, "miles")
  5723. },
  5724. ]
  5725. ))
  5726. characterMakers.push(() => makeCharacter(
  5727. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5728. {
  5729. front: {
  5730. height: math.unit(5 + 3 / 4, "feet"),
  5731. weight: math.unit(120, "lbs"),
  5732. name: "Front",
  5733. image: {
  5734. source: "./media/characters/tails/front.svg"
  5735. }
  5736. }
  5737. },
  5738. [
  5739. {
  5740. name: "Normal",
  5741. height: math.unit(5 + 3 / 4, "feet"),
  5742. default: true
  5743. }
  5744. ]
  5745. ))
  5746. characterMakers.push(() => makeCharacter(
  5747. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5748. {
  5749. front: {
  5750. height: math.unit(4, "feet"),
  5751. weight: math.unit(50, "lbs"),
  5752. name: "Front",
  5753. image: {
  5754. source: "./media/characters/rainy/front.svg"
  5755. }
  5756. }
  5757. },
  5758. [
  5759. {
  5760. name: "Macro",
  5761. height: math.unit(800, "feet"),
  5762. default: true
  5763. }
  5764. ]
  5765. ))
  5766. characterMakers.push(() => makeCharacter(
  5767. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5768. {
  5769. front: {
  5770. height: math.unit(6, "feet"),
  5771. weight: math.unit(150, "lbs"),
  5772. name: "Front",
  5773. image: {
  5774. source: "./media/characters/rainier/front.svg"
  5775. }
  5776. }
  5777. },
  5778. [
  5779. {
  5780. name: "Micro",
  5781. height: math.unit(2, "mm"),
  5782. default: true
  5783. }
  5784. ]
  5785. ))
  5786. characterMakers.push(() => makeCharacter(
  5787. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5788. {
  5789. front: {
  5790. height: math.unit(8 + 4/12, "feet"),
  5791. name: "Front",
  5792. image: {
  5793. source: "./media/characters/andy-renard/front.svg",
  5794. extra: 1839/1726,
  5795. bottom: 134/1973
  5796. }
  5797. },
  5798. back: {
  5799. height: math.unit(8 + 4/12, "feet"),
  5800. name: "Back",
  5801. image: {
  5802. source: "./media/characters/andy-renard/back.svg",
  5803. extra: 1838/1710,
  5804. bottom: 105/1943
  5805. }
  5806. },
  5807. },
  5808. [
  5809. {
  5810. name: "Tall",
  5811. height: math.unit(8 + 4/12, "feet")
  5812. },
  5813. {
  5814. name: "Mini Macro",
  5815. height: math.unit(15, "feet"),
  5816. default: true
  5817. },
  5818. {
  5819. name: "Macro",
  5820. height: math.unit(100, "feet")
  5821. },
  5822. {
  5823. name: "Mega Macro",
  5824. height: math.unit(1000, "feet")
  5825. },
  5826. {
  5827. name: "Giga Macro",
  5828. height: math.unit(10, "miles")
  5829. },
  5830. {
  5831. name: "God Macro",
  5832. height: math.unit(1, "multiverse")
  5833. },
  5834. ]
  5835. ))
  5836. characterMakers.push(() => makeCharacter(
  5837. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5838. {
  5839. front: {
  5840. height: math.unit(6, "feet"),
  5841. weight: math.unit(210, "lbs"),
  5842. name: "Front",
  5843. image: {
  5844. source: "./media/characters/cimmaron/front-sfw.svg",
  5845. extra: 701 / 676,
  5846. bottom: 0.046
  5847. }
  5848. },
  5849. back: {
  5850. height: math.unit(6, "feet"),
  5851. weight: math.unit(210, "lbs"),
  5852. name: "Back",
  5853. image: {
  5854. source: "./media/characters/cimmaron/back-sfw.svg",
  5855. extra: 701 / 676,
  5856. bottom: 0.046
  5857. }
  5858. },
  5859. frontNsfw: {
  5860. height: math.unit(6, "feet"),
  5861. weight: math.unit(210, "lbs"),
  5862. name: "Front (NSFW)",
  5863. image: {
  5864. source: "./media/characters/cimmaron/front-nsfw.svg",
  5865. extra: 701 / 676,
  5866. bottom: 0.046
  5867. }
  5868. },
  5869. backNsfw: {
  5870. height: math.unit(6, "feet"),
  5871. weight: math.unit(210, "lbs"),
  5872. name: "Back (NSFW)",
  5873. image: {
  5874. source: "./media/characters/cimmaron/back-nsfw.svg",
  5875. extra: 701 / 676,
  5876. bottom: 0.046
  5877. }
  5878. },
  5879. dick: {
  5880. height: math.unit(1.714, "feet"),
  5881. name: "Dick",
  5882. image: {
  5883. source: "./media/characters/cimmaron/dick.svg"
  5884. }
  5885. },
  5886. },
  5887. [
  5888. {
  5889. name: "Normal",
  5890. height: math.unit(6, "feet"),
  5891. default: true
  5892. },
  5893. {
  5894. name: "Macro Mayor",
  5895. height: math.unit(350, "meters")
  5896. },
  5897. ]
  5898. ))
  5899. characterMakers.push(() => makeCharacter(
  5900. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5901. {
  5902. front: {
  5903. height: math.unit(6, "feet"),
  5904. weight: math.unit(200, "lbs"),
  5905. name: "Front",
  5906. image: {
  5907. source: "./media/characters/akari/front.svg",
  5908. extra: 962 / 901,
  5909. bottom: 0.04
  5910. }
  5911. }
  5912. },
  5913. [
  5914. {
  5915. name: "Micro",
  5916. height: math.unit(5, "inches"),
  5917. default: true
  5918. },
  5919. {
  5920. name: "Normal",
  5921. height: math.unit(7, "feet")
  5922. },
  5923. ]
  5924. ))
  5925. characterMakers.push(() => makeCharacter(
  5926. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5927. {
  5928. front: {
  5929. height: math.unit(6, "feet"),
  5930. weight: math.unit(140, "lbs"),
  5931. name: "Front",
  5932. image: {
  5933. source: "./media/characters/cynosura/front.svg",
  5934. extra: 896 / 847
  5935. }
  5936. },
  5937. back: {
  5938. height: math.unit(6, "feet"),
  5939. weight: math.unit(140, "lbs"),
  5940. name: "Back",
  5941. image: {
  5942. source: "./media/characters/cynosura/back.svg",
  5943. extra: 1365 / 1250
  5944. }
  5945. },
  5946. },
  5947. [
  5948. {
  5949. name: "Micro",
  5950. height: math.unit(4, "inches")
  5951. },
  5952. {
  5953. name: "Normal",
  5954. height: math.unit(5.75, "feet"),
  5955. default: true
  5956. },
  5957. {
  5958. name: "Tall",
  5959. height: math.unit(10, "feet")
  5960. },
  5961. {
  5962. name: "Big",
  5963. height: math.unit(20, "feet")
  5964. },
  5965. {
  5966. name: "Macro",
  5967. height: math.unit(50, "feet")
  5968. },
  5969. ]
  5970. ))
  5971. characterMakers.push(() => makeCharacter(
  5972. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5973. {
  5974. front: {
  5975. height: math.unit(13 + 2/12, "feet"),
  5976. weight: math.unit(800, "kg"),
  5977. name: "Front",
  5978. image: {
  5979. source: "./media/characters/gin/front.svg",
  5980. extra: 1312/1191,
  5981. bottom: 45/1357
  5982. }
  5983. },
  5984. mouth: {
  5985. height: math.unit(2.39 * 1.8, "feet"),
  5986. name: "Mouth",
  5987. image: {
  5988. source: "./media/characters/gin/mouth.svg"
  5989. }
  5990. },
  5991. hand: {
  5992. height: math.unit(1.57 * 2.19, "feet"),
  5993. name: "Hand",
  5994. image: {
  5995. source: "./media/characters/gin/hand.svg"
  5996. }
  5997. },
  5998. foot: {
  5999. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6000. name: "Foot",
  6001. image: {
  6002. source: "./media/characters/gin/foot.svg"
  6003. }
  6004. },
  6005. sole: {
  6006. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6007. name: "Sole",
  6008. image: {
  6009. source: "./media/characters/gin/sole.svg"
  6010. }
  6011. },
  6012. },
  6013. [
  6014. {
  6015. name: "Very Small",
  6016. height: math.unit(13 + 2 / 12, "feet")
  6017. },
  6018. {
  6019. name: "Micro",
  6020. height: math.unit(600, "miles")
  6021. },
  6022. {
  6023. name: "Regular",
  6024. height: math.unit(20, "earths"),
  6025. default: true
  6026. },
  6027. {
  6028. name: "Macro",
  6029. height: math.unit(2.2, "solarradii")
  6030. },
  6031. {
  6032. name: "Teramacro",
  6033. height: math.unit(1.2, "galaxies")
  6034. },
  6035. {
  6036. name: "Omegamacro",
  6037. height: math.unit(200, "universes")
  6038. },
  6039. ]
  6040. ))
  6041. characterMakers.push(() => makeCharacter(
  6042. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6043. {
  6044. front: {
  6045. height: math.unit(6 + 1 / 6, "feet"),
  6046. weight: math.unit(178, "lbs"),
  6047. name: "Front",
  6048. image: {
  6049. source: "./media/characters/guy/front.svg"
  6050. }
  6051. }
  6052. },
  6053. [
  6054. {
  6055. name: "Normal",
  6056. height: math.unit(6 + 1 / 6, "feet"),
  6057. default: true
  6058. },
  6059. {
  6060. name: "Large",
  6061. height: math.unit(25 + 7 / 12, "feet")
  6062. },
  6063. {
  6064. name: "Macro",
  6065. height: math.unit(60 + 9 / 12, "feet")
  6066. },
  6067. {
  6068. name: "Macro+",
  6069. height: math.unit(246, "feet")
  6070. },
  6071. {
  6072. name: "Macro++",
  6073. height: math.unit(878, "feet")
  6074. }
  6075. ]
  6076. ))
  6077. characterMakers.push(() => makeCharacter(
  6078. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6079. {
  6080. front: {
  6081. height: math.unit(9, "feet"),
  6082. weight: math.unit(800, "lbs"),
  6083. name: "Front",
  6084. image: {
  6085. source: "./media/characters/tiberius/front.svg",
  6086. extra: 2295 / 2071
  6087. }
  6088. },
  6089. back: {
  6090. height: math.unit(9, "feet"),
  6091. weight: math.unit(800, "lbs"),
  6092. name: "Back",
  6093. image: {
  6094. source: "./media/characters/tiberius/back.svg",
  6095. extra: 2373 / 2160
  6096. }
  6097. },
  6098. },
  6099. [
  6100. {
  6101. name: "Normal",
  6102. height: math.unit(9, "feet"),
  6103. default: true
  6104. }
  6105. ]
  6106. ))
  6107. characterMakers.push(() => makeCharacter(
  6108. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6109. {
  6110. front: {
  6111. height: math.unit(6, "feet"),
  6112. weight: math.unit(600, "lbs"),
  6113. name: "Front",
  6114. image: {
  6115. source: "./media/characters/surgo/front.svg",
  6116. extra: 3591 / 2227
  6117. }
  6118. },
  6119. back: {
  6120. height: math.unit(6, "feet"),
  6121. weight: math.unit(600, "lbs"),
  6122. name: "Back",
  6123. image: {
  6124. source: "./media/characters/surgo/back.svg",
  6125. extra: 3557 / 2228
  6126. }
  6127. },
  6128. laying: {
  6129. height: math.unit(6 * 0.85, "feet"),
  6130. weight: math.unit(600, "lbs"),
  6131. name: "Laying",
  6132. image: {
  6133. source: "./media/characters/surgo/laying.svg"
  6134. }
  6135. },
  6136. },
  6137. [
  6138. {
  6139. name: "Normal",
  6140. height: math.unit(6, "feet"),
  6141. default: true
  6142. }
  6143. ]
  6144. ))
  6145. characterMakers.push(() => makeCharacter(
  6146. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6147. {
  6148. side: {
  6149. height: math.unit(6, "feet"),
  6150. weight: math.unit(150, "lbs"),
  6151. name: "Side",
  6152. image: {
  6153. source: "./media/characters/cibus/side.svg",
  6154. extra: 800 / 400
  6155. }
  6156. },
  6157. },
  6158. [
  6159. {
  6160. name: "Normal",
  6161. height: math.unit(6, "feet"),
  6162. default: true
  6163. }
  6164. ]
  6165. ))
  6166. characterMakers.push(() => makeCharacter(
  6167. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6168. {
  6169. front: {
  6170. height: math.unit(6, "feet"),
  6171. weight: math.unit(240, "lbs"),
  6172. name: "Front",
  6173. image: {
  6174. source: "./media/characters/nibbles/front.svg"
  6175. }
  6176. },
  6177. side: {
  6178. height: math.unit(6, "feet"),
  6179. weight: math.unit(240, "lbs"),
  6180. name: "Side",
  6181. image: {
  6182. source: "./media/characters/nibbles/side.svg"
  6183. }
  6184. },
  6185. },
  6186. [
  6187. {
  6188. name: "Normal",
  6189. height: math.unit(9, "feet"),
  6190. default: true
  6191. }
  6192. ]
  6193. ))
  6194. characterMakers.push(() => makeCharacter(
  6195. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6196. {
  6197. side: {
  6198. height: math.unit(5 + 1 / 6, "feet"),
  6199. weight: math.unit(130, "lbs"),
  6200. name: "Side",
  6201. image: {
  6202. source: "./media/characters/rikky/side.svg",
  6203. extra: 851 / 801
  6204. }
  6205. },
  6206. },
  6207. [
  6208. {
  6209. name: "Normal",
  6210. height: math.unit(5 + 1 / 6, "feet")
  6211. },
  6212. {
  6213. name: "Macro",
  6214. height: math.unit(152, "feet"),
  6215. default: true
  6216. },
  6217. {
  6218. name: "Megamacro",
  6219. height: math.unit(7, "miles")
  6220. }
  6221. ]
  6222. ))
  6223. characterMakers.push(() => makeCharacter(
  6224. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6225. {
  6226. side: {
  6227. height: math.unit(370, "cm"),
  6228. weight: math.unit(350, "lbs"),
  6229. name: "Side",
  6230. image: {
  6231. source: "./media/characters/malfressa/side.svg"
  6232. }
  6233. },
  6234. walking: {
  6235. height: math.unit(370, "cm"),
  6236. weight: math.unit(350, "lbs"),
  6237. name: "Walking",
  6238. image: {
  6239. source: "./media/characters/malfressa/walking.svg"
  6240. }
  6241. },
  6242. feral: {
  6243. height: math.unit(2500, "cm"),
  6244. weight: math.unit(100000, "lbs"),
  6245. name: "Feral",
  6246. image: {
  6247. source: "./media/characters/malfressa/feral.svg",
  6248. extra: 2108 / 837,
  6249. bottom: 0.02
  6250. }
  6251. },
  6252. },
  6253. [
  6254. {
  6255. name: "Normal",
  6256. height: math.unit(370, "cm")
  6257. },
  6258. {
  6259. name: "Macro",
  6260. height: math.unit(300, "meters"),
  6261. default: true
  6262. }
  6263. ]
  6264. ))
  6265. characterMakers.push(() => makeCharacter(
  6266. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6267. {
  6268. front: {
  6269. height: math.unit(6, "feet"),
  6270. weight: math.unit(60, "kg"),
  6271. name: "Front",
  6272. image: {
  6273. source: "./media/characters/jaro/front.svg"
  6274. }
  6275. },
  6276. back: {
  6277. height: math.unit(6, "feet"),
  6278. weight: math.unit(60, "kg"),
  6279. name: "Back",
  6280. image: {
  6281. source: "./media/characters/jaro/back.svg"
  6282. }
  6283. },
  6284. },
  6285. [
  6286. {
  6287. name: "Micro",
  6288. height: math.unit(7, "inches")
  6289. },
  6290. {
  6291. name: "Normal",
  6292. height: math.unit(5.5, "feet"),
  6293. default: true
  6294. },
  6295. {
  6296. name: "Minimacro",
  6297. height: math.unit(20, "feet")
  6298. },
  6299. {
  6300. name: "Macro",
  6301. height: math.unit(200, "meters")
  6302. }
  6303. ]
  6304. ))
  6305. characterMakers.push(() => makeCharacter(
  6306. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6307. {
  6308. front: {
  6309. height: math.unit(6, "feet"),
  6310. weight: math.unit(195, "lb"),
  6311. name: "Front",
  6312. image: {
  6313. source: "./media/characters/rogue/front.svg"
  6314. }
  6315. },
  6316. },
  6317. [
  6318. {
  6319. name: "Macro",
  6320. height: math.unit(90, "feet"),
  6321. default: true
  6322. },
  6323. ]
  6324. ))
  6325. characterMakers.push(() => makeCharacter(
  6326. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6327. {
  6328. front: {
  6329. height: math.unit(5 + 8 / 12, "feet"),
  6330. weight: math.unit(140, "lb"),
  6331. name: "Front",
  6332. image: {
  6333. source: "./media/characters/piper/front.svg",
  6334. extra: 3948/3655,
  6335. bottom: 0/3948
  6336. }
  6337. },
  6338. },
  6339. [
  6340. {
  6341. name: "Micro",
  6342. height: math.unit(2, "inches")
  6343. },
  6344. {
  6345. name: "Normal",
  6346. height: math.unit(5 + 8 / 12, "feet")
  6347. },
  6348. {
  6349. name: "Macro",
  6350. height: math.unit(250, "feet"),
  6351. default: true
  6352. },
  6353. {
  6354. name: "Megamacro",
  6355. height: math.unit(7, "miles")
  6356. },
  6357. ]
  6358. ))
  6359. characterMakers.push(() => makeCharacter(
  6360. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6361. {
  6362. front: {
  6363. height: math.unit(6, "feet"),
  6364. weight: math.unit(220, "lb"),
  6365. name: "Front",
  6366. image: {
  6367. source: "./media/characters/gemini/front.svg"
  6368. }
  6369. },
  6370. back: {
  6371. height: math.unit(6, "feet"),
  6372. weight: math.unit(220, "lb"),
  6373. name: "Back",
  6374. image: {
  6375. source: "./media/characters/gemini/back.svg"
  6376. }
  6377. },
  6378. kneeling: {
  6379. height: math.unit(6 / 1.5, "feet"),
  6380. weight: math.unit(220, "lb"),
  6381. name: "Kneeling",
  6382. image: {
  6383. source: "./media/characters/gemini/kneeling.svg",
  6384. bottom: 0.02
  6385. }
  6386. },
  6387. },
  6388. [
  6389. {
  6390. name: "Macro",
  6391. height: math.unit(300, "meters"),
  6392. default: true
  6393. },
  6394. {
  6395. name: "Megamacro",
  6396. height: math.unit(6900, "meters")
  6397. },
  6398. ]
  6399. ))
  6400. characterMakers.push(() => makeCharacter(
  6401. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6402. {
  6403. anthro: {
  6404. height: math.unit(2.35, "meters"),
  6405. weight: math.unit(73, "kg"),
  6406. name: "Anthro",
  6407. image: {
  6408. source: "./media/characters/alicia/anthro.svg",
  6409. extra: 2571 / 2385,
  6410. bottom: 75 / 2648
  6411. }
  6412. },
  6413. paw: {
  6414. height: math.unit(1.32, "feet"),
  6415. name: "Paw",
  6416. image: {
  6417. source: "./media/characters/alicia/paw.svg"
  6418. }
  6419. },
  6420. feral: {
  6421. height: math.unit(1.69, "meters"),
  6422. weight: math.unit(73, "kg"),
  6423. name: "Feral",
  6424. image: {
  6425. source: "./media/characters/alicia/feral.svg",
  6426. extra: 2123 / 1715,
  6427. bottom: 222 / 2349
  6428. }
  6429. },
  6430. },
  6431. [
  6432. {
  6433. name: "Normal",
  6434. height: math.unit(2.35, "meters")
  6435. },
  6436. {
  6437. name: "Macro",
  6438. height: math.unit(60, "meters"),
  6439. default: true
  6440. },
  6441. {
  6442. name: "Megamacro",
  6443. height: math.unit(10000, "kilometers")
  6444. },
  6445. ]
  6446. ))
  6447. characterMakers.push(() => makeCharacter(
  6448. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6449. {
  6450. front: {
  6451. height: math.unit(7, "feet"),
  6452. weight: math.unit(250, "lbs"),
  6453. name: "Front",
  6454. image: {
  6455. source: "./media/characters/archy/front.svg"
  6456. }
  6457. }
  6458. },
  6459. [
  6460. {
  6461. name: "Micro",
  6462. height: math.unit(1, "inch")
  6463. },
  6464. {
  6465. name: "Shorty",
  6466. height: math.unit(5, "feet")
  6467. },
  6468. {
  6469. name: "Normal",
  6470. height: math.unit(7, "feet")
  6471. },
  6472. {
  6473. name: "Macro",
  6474. height: math.unit(600, "meters"),
  6475. default: true
  6476. },
  6477. {
  6478. name: "Megamacro",
  6479. height: math.unit(1, "mile")
  6480. },
  6481. ]
  6482. ))
  6483. characterMakers.push(() => makeCharacter(
  6484. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6485. {
  6486. front: {
  6487. height: math.unit(1.65, "meters"),
  6488. weight: math.unit(74, "kg"),
  6489. name: "Front",
  6490. image: {
  6491. source: "./media/characters/berri/front.svg",
  6492. extra: 857 / 837,
  6493. bottom: 18 / 877
  6494. }
  6495. },
  6496. bum: {
  6497. height: math.unit(1.46, "feet"),
  6498. name: "Bum",
  6499. image: {
  6500. source: "./media/characters/berri/bum.svg"
  6501. }
  6502. },
  6503. mouth: {
  6504. height: math.unit(0.44, "feet"),
  6505. name: "Mouth",
  6506. image: {
  6507. source: "./media/characters/berri/mouth.svg"
  6508. }
  6509. },
  6510. paw: {
  6511. height: math.unit(0.826, "feet"),
  6512. name: "Paw",
  6513. image: {
  6514. source: "./media/characters/berri/paw.svg"
  6515. }
  6516. },
  6517. },
  6518. [
  6519. {
  6520. name: "Normal",
  6521. height: math.unit(1.65, "meters")
  6522. },
  6523. {
  6524. name: "Macro",
  6525. height: math.unit(60, "m"),
  6526. default: true
  6527. },
  6528. {
  6529. name: "Megamacro",
  6530. height: math.unit(9.213, "km")
  6531. },
  6532. {
  6533. name: "Planet Eater",
  6534. height: math.unit(489, "megameters")
  6535. },
  6536. {
  6537. name: "Teramacro",
  6538. height: math.unit(2471635000000, "meters")
  6539. },
  6540. {
  6541. name: "Examacro",
  6542. height: math.unit(8.0624e+26, "meters")
  6543. }
  6544. ]
  6545. ))
  6546. characterMakers.push(() => makeCharacter(
  6547. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6548. {
  6549. front: {
  6550. height: math.unit(1.72, "meters"),
  6551. weight: math.unit(68, "kg"),
  6552. name: "Front",
  6553. image: {
  6554. source: "./media/characters/lexi/front.svg"
  6555. }
  6556. }
  6557. },
  6558. [
  6559. {
  6560. name: "Very Smol",
  6561. height: math.unit(10, "mm")
  6562. },
  6563. {
  6564. name: "Micro",
  6565. height: math.unit(6.8, "cm"),
  6566. default: true
  6567. },
  6568. {
  6569. name: "Normal",
  6570. height: math.unit(1.72, "m")
  6571. }
  6572. ]
  6573. ))
  6574. characterMakers.push(() => makeCharacter(
  6575. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6576. {
  6577. front: {
  6578. height: math.unit(1.69, "meters"),
  6579. weight: math.unit(68, "kg"),
  6580. name: "Front",
  6581. image: {
  6582. source: "./media/characters/martin/front.svg",
  6583. extra: 596 / 581
  6584. }
  6585. }
  6586. },
  6587. [
  6588. {
  6589. name: "Micro",
  6590. height: math.unit(6.85, "cm"),
  6591. default: true
  6592. },
  6593. {
  6594. name: "Normal",
  6595. height: math.unit(1.69, "m")
  6596. }
  6597. ]
  6598. ))
  6599. characterMakers.push(() => makeCharacter(
  6600. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6601. {
  6602. front: {
  6603. height: math.unit(1.69, "meters"),
  6604. weight: math.unit(68, "kg"),
  6605. name: "Front",
  6606. image: {
  6607. source: "./media/characters/juno/front.svg"
  6608. }
  6609. }
  6610. },
  6611. [
  6612. {
  6613. name: "Micro",
  6614. height: math.unit(7, "cm")
  6615. },
  6616. {
  6617. name: "Normal",
  6618. height: math.unit(1.89, "m")
  6619. },
  6620. {
  6621. name: "Macro",
  6622. height: math.unit(353, "meters"),
  6623. default: true
  6624. }
  6625. ]
  6626. ))
  6627. characterMakers.push(() => makeCharacter(
  6628. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6629. {
  6630. front: {
  6631. height: math.unit(1.93, "meters"),
  6632. weight: math.unit(83, "kg"),
  6633. name: "Front",
  6634. image: {
  6635. source: "./media/characters/samantha/front.svg"
  6636. }
  6637. },
  6638. frontClothed: {
  6639. height: math.unit(1.93, "meters"),
  6640. weight: math.unit(83, "kg"),
  6641. name: "Front (Clothed)",
  6642. image: {
  6643. source: "./media/characters/samantha/front-clothed.svg"
  6644. }
  6645. },
  6646. back: {
  6647. height: math.unit(1.93, "meters"),
  6648. weight: math.unit(83, "kg"),
  6649. name: "Back",
  6650. image: {
  6651. source: "./media/characters/samantha/back.svg"
  6652. }
  6653. },
  6654. },
  6655. [
  6656. {
  6657. name: "Normal",
  6658. height: math.unit(1.93, "m")
  6659. },
  6660. {
  6661. name: "Macro",
  6662. height: math.unit(74, "meters"),
  6663. default: true
  6664. },
  6665. {
  6666. name: "Macro+",
  6667. height: math.unit(223, "meters"),
  6668. },
  6669. {
  6670. name: "Megamacro",
  6671. height: math.unit(8381, "meters"),
  6672. },
  6673. {
  6674. name: "Megamacro+",
  6675. height: math.unit(12000, "kilometers")
  6676. },
  6677. ]
  6678. ))
  6679. characterMakers.push(() => makeCharacter(
  6680. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6681. {
  6682. front: {
  6683. height: math.unit(1.92, "meters"),
  6684. weight: math.unit(80, "kg"),
  6685. name: "Front",
  6686. image: {
  6687. source: "./media/characters/dr-clay/front.svg"
  6688. }
  6689. },
  6690. frontClothed: {
  6691. height: math.unit(1.92, "meters"),
  6692. weight: math.unit(80, "kg"),
  6693. name: "Front (Clothed)",
  6694. image: {
  6695. source: "./media/characters/dr-clay/front-clothed.svg"
  6696. }
  6697. }
  6698. },
  6699. [
  6700. {
  6701. name: "Normal",
  6702. height: math.unit(1.92, "m")
  6703. },
  6704. {
  6705. name: "Macro",
  6706. height: math.unit(214, "meters"),
  6707. default: true
  6708. },
  6709. {
  6710. name: "Macro+",
  6711. height: math.unit(12.237, "meters"),
  6712. },
  6713. {
  6714. name: "Megamacro",
  6715. height: math.unit(557, "megameters"),
  6716. },
  6717. {
  6718. name: "Unimaginable",
  6719. height: math.unit(120e9, "lightyears")
  6720. },
  6721. ]
  6722. ))
  6723. characterMakers.push(() => makeCharacter(
  6724. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6725. {
  6726. front: {
  6727. height: math.unit(2, "meters"),
  6728. weight: math.unit(80, "kg"),
  6729. name: "Front",
  6730. image: {
  6731. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6732. }
  6733. }
  6734. },
  6735. [
  6736. {
  6737. name: "Teramacro",
  6738. height: math.unit(500000, "lightyears"),
  6739. default: true
  6740. },
  6741. ]
  6742. ))
  6743. characterMakers.push(() => makeCharacter(
  6744. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6745. {
  6746. crux: {
  6747. height: math.unit(2, "meters"),
  6748. weight: math.unit(150, "kg"),
  6749. name: "Crux",
  6750. image: {
  6751. source: "./media/characters/vemus/crux.svg",
  6752. extra: 1074/936,
  6753. bottom: 23/1097
  6754. }
  6755. },
  6756. skunkTanuki: {
  6757. height: math.unit(2, "meters"),
  6758. weight: math.unit(150, "kg"),
  6759. name: "Skunk-Tanuki",
  6760. image: {
  6761. source: "./media/characters/vemus/skunk-tanuki.svg",
  6762. extra: 926/893,
  6763. bottom: 20/946
  6764. }
  6765. },
  6766. },
  6767. [
  6768. {
  6769. name: "Normal",
  6770. height: math.unit(3.75, "meters"),
  6771. default: true
  6772. },
  6773. {
  6774. name: "Big",
  6775. height: math.unit(8, "meters")
  6776. },
  6777. {
  6778. name: "Macro",
  6779. height: math.unit(100, "meters")
  6780. },
  6781. {
  6782. name: "Macro+",
  6783. height: math.unit(1500, "meters")
  6784. },
  6785. {
  6786. name: "Stellar",
  6787. height: math.unit(14e8, "meters")
  6788. },
  6789. ]
  6790. ))
  6791. characterMakers.push(() => makeCharacter(
  6792. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6793. {
  6794. front: {
  6795. height: math.unit(2, "meters"),
  6796. weight: math.unit(70, "kg"),
  6797. name: "Front",
  6798. image: {
  6799. source: "./media/characters/beherit/front.svg",
  6800. extra: 1408 / 1242
  6801. }
  6802. }
  6803. },
  6804. [
  6805. {
  6806. name: "Normal",
  6807. height: math.unit(6, "feet")
  6808. },
  6809. {
  6810. name: "Lorg",
  6811. height: math.unit(25, "feet"),
  6812. default: true
  6813. },
  6814. {
  6815. name: "Lorger",
  6816. height: math.unit(75, "feet")
  6817. },
  6818. {
  6819. name: "Macro",
  6820. height: math.unit(200, "meters")
  6821. },
  6822. ]
  6823. ))
  6824. characterMakers.push(() => makeCharacter(
  6825. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6826. {
  6827. front: {
  6828. height: math.unit(2, "meters"),
  6829. weight: math.unit(150, "kg"),
  6830. name: "Front",
  6831. image: {
  6832. source: "./media/characters/everett/front.svg",
  6833. extra: 2038 / 1737,
  6834. bottom: 0.03
  6835. }
  6836. },
  6837. paw: {
  6838. height: math.unit(2 / 3.6, "meters"),
  6839. name: "Paw",
  6840. image: {
  6841. source: "./media/characters/everett/paw.svg"
  6842. }
  6843. },
  6844. },
  6845. [
  6846. {
  6847. name: "Normal",
  6848. height: math.unit(15, "feet"),
  6849. default: true
  6850. },
  6851. {
  6852. name: "Lorg",
  6853. height: math.unit(70, "feet"),
  6854. default: true
  6855. },
  6856. {
  6857. name: "Lorger",
  6858. height: math.unit(250, "feet")
  6859. },
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(500, "meters")
  6863. },
  6864. ]
  6865. ))
  6866. characterMakers.push(() => makeCharacter(
  6867. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6868. {
  6869. front: {
  6870. height: math.unit(2, "meters"),
  6871. weight: math.unit(86, "kg"),
  6872. name: "Front",
  6873. image: {
  6874. source: "./media/characters/rose/front.svg",
  6875. extra: 1785/1636,
  6876. bottom: 30/1815
  6877. }
  6878. },
  6879. frontSporty: {
  6880. height: math.unit(2, "meters"),
  6881. weight: math.unit(86, "kg"),
  6882. name: "Front (Sporty)",
  6883. image: {
  6884. source: "./media/characters/rose/front-sporty.svg",
  6885. extra: 350/335,
  6886. bottom: 10/360
  6887. }
  6888. },
  6889. frontAlt: {
  6890. height: math.unit(1.6, "meters"),
  6891. weight: math.unit(86, "kg"),
  6892. name: "Front (Alt)",
  6893. image: {
  6894. source: "./media/characters/rose/front-alt.svg",
  6895. extra: 299/283,
  6896. bottom: 3/302
  6897. }
  6898. },
  6899. plush: {
  6900. height: math.unit(2, "meters"),
  6901. weight: math.unit(86/3, "kg"),
  6902. name: "Plush",
  6903. image: {
  6904. source: "./media/characters/rose/plush.svg",
  6905. extra: 361/337,
  6906. bottom: 11/372
  6907. }
  6908. },
  6909. },
  6910. [
  6911. {
  6912. name: "True Micro",
  6913. height: math.unit(9, "cm")
  6914. },
  6915. {
  6916. name: "Micro",
  6917. height: math.unit(16, "cm")
  6918. },
  6919. {
  6920. name: "Normal",
  6921. height: math.unit(1.85, "meters"),
  6922. default: true
  6923. },
  6924. {
  6925. name: "Mini-Macro",
  6926. height: math.unit(5, "meters")
  6927. },
  6928. {
  6929. name: "Macro",
  6930. height: math.unit(15, "meters")
  6931. },
  6932. {
  6933. name: "True Macro",
  6934. height: math.unit(40, "meters")
  6935. },
  6936. {
  6937. name: "City Scale",
  6938. height: math.unit(1, "km")
  6939. },
  6940. ]
  6941. ))
  6942. characterMakers.push(() => makeCharacter(
  6943. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6944. {
  6945. front: {
  6946. height: math.unit(2, "meters"),
  6947. weight: math.unit(350, "lbs"),
  6948. name: "Front",
  6949. image: {
  6950. source: "./media/characters/regal/front.svg"
  6951. }
  6952. },
  6953. back: {
  6954. height: math.unit(2, "meters"),
  6955. weight: math.unit(350, "lbs"),
  6956. name: "Back",
  6957. image: {
  6958. source: "./media/characters/regal/back.svg"
  6959. }
  6960. },
  6961. },
  6962. [
  6963. {
  6964. name: "Macro",
  6965. height: math.unit(350, "feet"),
  6966. default: true
  6967. }
  6968. ]
  6969. ))
  6970. characterMakers.push(() => makeCharacter(
  6971. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6972. {
  6973. front: {
  6974. height: math.unit(4 + 11 / 12, "feet"),
  6975. weight: math.unit(100, "lbs"),
  6976. name: "Front",
  6977. image: {
  6978. source: "./media/characters/opal/front.svg"
  6979. }
  6980. },
  6981. frontAlt: {
  6982. height: math.unit(4 + 11 / 12, "feet"),
  6983. weight: math.unit(100, "lbs"),
  6984. name: "Front (Alt)",
  6985. image: {
  6986. source: "./media/characters/opal/front-alt.svg"
  6987. }
  6988. },
  6989. },
  6990. [
  6991. {
  6992. name: "Small",
  6993. height: math.unit(4 + 11 / 12, "feet")
  6994. },
  6995. {
  6996. name: "Normal",
  6997. height: math.unit(20, "feet"),
  6998. default: true
  6999. },
  7000. {
  7001. name: "Macro",
  7002. height: math.unit(120, "feet")
  7003. },
  7004. {
  7005. name: "Megamacro",
  7006. height: math.unit(80, "miles")
  7007. },
  7008. {
  7009. name: "True Size",
  7010. height: math.unit(100000, "lightyears")
  7011. },
  7012. ]
  7013. ))
  7014. characterMakers.push(() => makeCharacter(
  7015. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7016. {
  7017. front: {
  7018. height: math.unit(6, "feet"),
  7019. weight: math.unit(200, "lbs"),
  7020. name: "Front",
  7021. image: {
  7022. source: "./media/characters/vector-wuff/front.svg"
  7023. }
  7024. }
  7025. },
  7026. [
  7027. {
  7028. name: "Normal",
  7029. height: math.unit(2.8, "meters")
  7030. },
  7031. {
  7032. name: "Macro",
  7033. height: math.unit(450, "meters"),
  7034. default: true
  7035. },
  7036. {
  7037. name: "Megamacro",
  7038. height: math.unit(15, "kilometers")
  7039. }
  7040. ]
  7041. ))
  7042. characterMakers.push(() => makeCharacter(
  7043. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7044. {
  7045. front: {
  7046. height: math.unit(6, "feet"),
  7047. weight: math.unit(256, "lbs"),
  7048. name: "Front",
  7049. image: {
  7050. source: "./media/characters/dannik/front.svg"
  7051. }
  7052. }
  7053. },
  7054. [
  7055. {
  7056. name: "Macro",
  7057. height: math.unit(69.57, "meters"),
  7058. default: true
  7059. },
  7060. ]
  7061. ))
  7062. characterMakers.push(() => makeCharacter(
  7063. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7064. {
  7065. front: {
  7066. height: math.unit(6, "feet"),
  7067. weight: math.unit(120, "lbs"),
  7068. name: "Front",
  7069. image: {
  7070. source: "./media/characters/azura-saharah/front.svg"
  7071. }
  7072. },
  7073. back: {
  7074. height: math.unit(6, "feet"),
  7075. weight: math.unit(120, "lbs"),
  7076. name: "Back",
  7077. image: {
  7078. source: "./media/characters/azura-saharah/back.svg"
  7079. }
  7080. },
  7081. },
  7082. [
  7083. {
  7084. name: "Macro",
  7085. height: math.unit(100, "feet"),
  7086. default: true
  7087. },
  7088. ]
  7089. ))
  7090. characterMakers.push(() => makeCharacter(
  7091. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7092. {
  7093. side: {
  7094. height: math.unit(5 + 4 / 12, "feet"),
  7095. weight: math.unit(163, "lbs"),
  7096. name: "Side",
  7097. image: {
  7098. source: "./media/characters/kennedy/side.svg"
  7099. }
  7100. }
  7101. },
  7102. [
  7103. {
  7104. name: "Standard Doggo",
  7105. height: math.unit(5 + 4 / 12, "feet")
  7106. },
  7107. {
  7108. name: "Big Doggo",
  7109. height: math.unit(25 + 3 / 12, "feet"),
  7110. default: true
  7111. },
  7112. ]
  7113. ))
  7114. characterMakers.push(() => makeCharacter(
  7115. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7116. {
  7117. front: {
  7118. height: math.unit(6, "feet"),
  7119. weight: math.unit(90, "lbs"),
  7120. name: "Front",
  7121. image: {
  7122. source: "./media/characters/odi-lunar/front.svg"
  7123. }
  7124. }
  7125. },
  7126. [
  7127. {
  7128. name: "Micro",
  7129. height: math.unit(3, "inches"),
  7130. default: true
  7131. },
  7132. {
  7133. name: "Normal",
  7134. height: math.unit(5.5, "feet")
  7135. }
  7136. ]
  7137. ))
  7138. characterMakers.push(() => makeCharacter(
  7139. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7140. {
  7141. back: {
  7142. height: math.unit(6, "feet"),
  7143. weight: math.unit(220, "lbs"),
  7144. name: "Back",
  7145. image: {
  7146. source: "./media/characters/mandake/back.svg"
  7147. }
  7148. }
  7149. },
  7150. [
  7151. {
  7152. name: "Normal",
  7153. height: math.unit(7, "feet"),
  7154. default: true
  7155. },
  7156. {
  7157. name: "Macro",
  7158. height: math.unit(78, "feet")
  7159. },
  7160. {
  7161. name: "Macro+",
  7162. height: math.unit(300, "meters")
  7163. },
  7164. {
  7165. name: "Macro++",
  7166. height: math.unit(2400, "feet")
  7167. },
  7168. {
  7169. name: "Megamacro",
  7170. height: math.unit(5167, "meters")
  7171. },
  7172. {
  7173. name: "Gigamacro",
  7174. height: math.unit(41769, "miles")
  7175. },
  7176. ]
  7177. ))
  7178. characterMakers.push(() => makeCharacter(
  7179. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7180. {
  7181. front: {
  7182. height: math.unit(6, "feet"),
  7183. weight: math.unit(120, "lbs"),
  7184. name: "Front",
  7185. image: {
  7186. source: "./media/characters/yozey/front.svg"
  7187. }
  7188. },
  7189. frontAlt: {
  7190. height: math.unit(6, "feet"),
  7191. weight: math.unit(120, "lbs"),
  7192. name: "Front (Alt)",
  7193. image: {
  7194. source: "./media/characters/yozey/front-alt.svg"
  7195. }
  7196. },
  7197. side: {
  7198. height: math.unit(6, "feet"),
  7199. weight: math.unit(120, "lbs"),
  7200. name: "Side",
  7201. image: {
  7202. source: "./media/characters/yozey/side.svg"
  7203. }
  7204. },
  7205. },
  7206. [
  7207. {
  7208. name: "Micro",
  7209. height: math.unit(3, "inches"),
  7210. default: true
  7211. },
  7212. {
  7213. name: "Normal",
  7214. height: math.unit(6, "feet")
  7215. }
  7216. ]
  7217. ))
  7218. characterMakers.push(() => makeCharacter(
  7219. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7220. {
  7221. front: {
  7222. height: math.unit(6, "feet"),
  7223. weight: math.unit(103, "lbs"),
  7224. name: "Front",
  7225. image: {
  7226. source: "./media/characters/valeska-voss/front.svg"
  7227. }
  7228. }
  7229. },
  7230. [
  7231. {
  7232. name: "Mini-Sized Sub",
  7233. height: math.unit(3.1, "inches")
  7234. },
  7235. {
  7236. name: "Mid-Sized Sub",
  7237. height: math.unit(6.2, "inches")
  7238. },
  7239. {
  7240. name: "Full-Sized Sub",
  7241. height: math.unit(9.3, "inches")
  7242. },
  7243. {
  7244. name: "Normal",
  7245. height: math.unit(5 + 2 / 12, "foot"),
  7246. default: true
  7247. },
  7248. ]
  7249. ))
  7250. characterMakers.push(() => makeCharacter(
  7251. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7252. {
  7253. front: {
  7254. height: math.unit(6, "feet"),
  7255. weight: math.unit(160, "lbs"),
  7256. name: "Front",
  7257. image: {
  7258. source: "./media/characters/gene-zeta/front.svg",
  7259. extra: 3006 / 2826,
  7260. bottom: 182 / 3188
  7261. }
  7262. }
  7263. },
  7264. [
  7265. {
  7266. name: "Micro",
  7267. height: math.unit(6, "inches")
  7268. },
  7269. {
  7270. name: "Normal",
  7271. height: math.unit(5 + 11 / 12, "foot"),
  7272. default: true
  7273. },
  7274. {
  7275. name: "Macro",
  7276. height: math.unit(140, "feet")
  7277. },
  7278. {
  7279. name: "Supercharged",
  7280. height: math.unit(2500, "feet")
  7281. },
  7282. ]
  7283. ))
  7284. characterMakers.push(() => makeCharacter(
  7285. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7286. {
  7287. front: {
  7288. height: math.unit(6, "feet"),
  7289. weight: math.unit(350, "lbs"),
  7290. name: "Front",
  7291. image: {
  7292. source: "./media/characters/razinox/front.svg",
  7293. extra: 1686 / 1548,
  7294. bottom: 28.2 / 1868
  7295. }
  7296. },
  7297. back: {
  7298. height: math.unit(6, "feet"),
  7299. weight: math.unit(350, "lbs"),
  7300. name: "Back",
  7301. image: {
  7302. source: "./media/characters/razinox/back.svg",
  7303. extra: 1660 / 1590,
  7304. bottom: 15 / 1665
  7305. }
  7306. },
  7307. },
  7308. [
  7309. {
  7310. name: "Normal",
  7311. height: math.unit(10 + 8 / 12, "foot")
  7312. },
  7313. {
  7314. name: "Minimacro",
  7315. height: math.unit(15, "foot")
  7316. },
  7317. {
  7318. name: "Macro",
  7319. height: math.unit(60, "foot"),
  7320. default: true
  7321. },
  7322. {
  7323. name: "Megamacro",
  7324. height: math.unit(5, "miles")
  7325. },
  7326. {
  7327. name: "Gigamacro",
  7328. height: math.unit(6000, "miles")
  7329. },
  7330. ]
  7331. ))
  7332. characterMakers.push(() => makeCharacter(
  7333. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7334. {
  7335. front: {
  7336. height: math.unit(6, "feet"),
  7337. weight: math.unit(150, "lbs"),
  7338. name: "Front",
  7339. image: {
  7340. source: "./media/characters/cobalt/front.svg"
  7341. }
  7342. }
  7343. },
  7344. [
  7345. {
  7346. name: "Normal",
  7347. height: math.unit(8 + 1 / 12, "foot")
  7348. },
  7349. {
  7350. name: "Macro",
  7351. height: math.unit(111, "foot"),
  7352. default: true
  7353. },
  7354. {
  7355. name: "Supracosmic",
  7356. height: math.unit(1e42, "feet")
  7357. },
  7358. ]
  7359. ))
  7360. characterMakers.push(() => makeCharacter(
  7361. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7362. {
  7363. front: {
  7364. height: math.unit(6, "feet"),
  7365. weight: math.unit(140, "lbs"),
  7366. name: "Front",
  7367. image: {
  7368. source: "./media/characters/amanda/front.svg"
  7369. }
  7370. }
  7371. },
  7372. [
  7373. {
  7374. name: "Micro",
  7375. height: math.unit(5, "inches"),
  7376. default: true
  7377. },
  7378. ]
  7379. ))
  7380. characterMakers.push(() => makeCharacter(
  7381. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7382. {
  7383. front: {
  7384. height: math.unit(2.75, "meters"),
  7385. weight: math.unit(1200, "lb"),
  7386. name: "Front",
  7387. image: {
  7388. source: "./media/characters/teal/front.svg",
  7389. extra: 2463 / 2320,
  7390. bottom: 166 / 2629
  7391. }
  7392. },
  7393. back: {
  7394. height: math.unit(2.75, "meters"),
  7395. weight: math.unit(1200, "lb"),
  7396. name: "Back",
  7397. image: {
  7398. source: "./media/characters/teal/back.svg",
  7399. extra: 2580 / 2489,
  7400. bottom: 151 / 2731
  7401. }
  7402. },
  7403. sitting: {
  7404. height: math.unit(1.9, "meters"),
  7405. weight: math.unit(1200, "lb"),
  7406. name: "Sitting",
  7407. image: {
  7408. source: "./media/characters/teal/sitting.svg",
  7409. extra: 623 / 590,
  7410. bottom: 121 / 744
  7411. }
  7412. },
  7413. standing: {
  7414. height: math.unit(2.75, "meters"),
  7415. weight: math.unit(1200, "lb"),
  7416. name: "Standing",
  7417. image: {
  7418. source: "./media/characters/teal/standing.svg",
  7419. extra: 923 / 893,
  7420. bottom: 60 / 983
  7421. }
  7422. },
  7423. stretching: {
  7424. height: math.unit(3.65, "meters"),
  7425. weight: math.unit(1200, "lb"),
  7426. name: "Stretching",
  7427. image: {
  7428. source: "./media/characters/teal/stretching.svg",
  7429. extra: 1276 / 1244,
  7430. bottom: 0 / 1276
  7431. }
  7432. },
  7433. legged: {
  7434. height: math.unit(1.3, "meters"),
  7435. weight: math.unit(100, "lb"),
  7436. name: "Legged",
  7437. image: {
  7438. source: "./media/characters/teal/legged.svg",
  7439. extra: 462 / 437,
  7440. bottom: 24 / 486
  7441. }
  7442. },
  7443. naga: {
  7444. height: math.unit(5.4, "meters"),
  7445. weight: math.unit(4000, "lb"),
  7446. name: "Naga",
  7447. image: {
  7448. source: "./media/characters/teal/naga.svg",
  7449. extra: 1902 / 1858,
  7450. bottom: 0 / 1902
  7451. }
  7452. },
  7453. hand: {
  7454. height: math.unit(0.52, "meters"),
  7455. name: "Hand",
  7456. image: {
  7457. source: "./media/characters/teal/hand.svg"
  7458. }
  7459. },
  7460. maw: {
  7461. height: math.unit(0.43, "meters"),
  7462. name: "Maw",
  7463. image: {
  7464. source: "./media/characters/teal/maw.svg"
  7465. }
  7466. },
  7467. slit: {
  7468. height: math.unit(0.25, "meters"),
  7469. name: "Slit",
  7470. image: {
  7471. source: "./media/characters/teal/slit.svg"
  7472. }
  7473. },
  7474. },
  7475. [
  7476. {
  7477. name: "Normal",
  7478. height: math.unit(2.75, "meters"),
  7479. default: true
  7480. },
  7481. {
  7482. name: "Macro",
  7483. height: math.unit(300, "feet")
  7484. },
  7485. {
  7486. name: "Macro+",
  7487. height: math.unit(2000, "feet")
  7488. },
  7489. ]
  7490. ))
  7491. characterMakers.push(() => makeCharacter(
  7492. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7493. {
  7494. frontCat: {
  7495. height: math.unit(6, "feet"),
  7496. weight: math.unit(180, "lbs"),
  7497. name: "Front (Cat)",
  7498. image: {
  7499. source: "./media/characters/ravin-amulet/front-cat.svg"
  7500. }
  7501. },
  7502. frontCatAlt: {
  7503. height: math.unit(6, "feet"),
  7504. weight: math.unit(180, "lbs"),
  7505. name: "Front (Alt, Cat)",
  7506. image: {
  7507. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7508. }
  7509. },
  7510. frontWerewolf: {
  7511. height: math.unit(6 * 1.2, "feet"),
  7512. weight: math.unit(225, "lbs"),
  7513. name: "Front (Werewolf)",
  7514. image: {
  7515. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7516. }
  7517. },
  7518. backWerewolf: {
  7519. height: math.unit(6 * 1.2, "feet"),
  7520. weight: math.unit(225, "lbs"),
  7521. name: "Back (Werewolf)",
  7522. image: {
  7523. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7524. }
  7525. },
  7526. },
  7527. [
  7528. {
  7529. name: "Nano",
  7530. height: math.unit(1, "micrometer")
  7531. },
  7532. {
  7533. name: "Micro",
  7534. height: math.unit(1, "inch")
  7535. },
  7536. {
  7537. name: "Normal",
  7538. height: math.unit(6, "feet"),
  7539. default: true
  7540. },
  7541. {
  7542. name: "Macro",
  7543. height: math.unit(60, "feet")
  7544. }
  7545. ]
  7546. ))
  7547. characterMakers.push(() => makeCharacter(
  7548. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7549. {
  7550. front: {
  7551. height: math.unit(6, "feet"),
  7552. weight: math.unit(165, "lbs"),
  7553. name: "Front",
  7554. image: {
  7555. source: "./media/characters/fluoresce/front.svg"
  7556. }
  7557. }
  7558. },
  7559. [
  7560. {
  7561. name: "Micro",
  7562. height: math.unit(6, "cm")
  7563. },
  7564. {
  7565. name: "Normal",
  7566. height: math.unit(5 + 7 / 12, "feet"),
  7567. default: true
  7568. },
  7569. {
  7570. name: "Macro",
  7571. height: math.unit(56, "feet")
  7572. },
  7573. {
  7574. name: "Megamacro",
  7575. height: math.unit(1.9, "miles")
  7576. },
  7577. ]
  7578. ))
  7579. characterMakers.push(() => makeCharacter(
  7580. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7581. {
  7582. front: {
  7583. height: math.unit(9 + 6 / 12, "feet"),
  7584. weight: math.unit(523, "lbs"),
  7585. name: "Side",
  7586. image: {
  7587. source: "./media/characters/aurora/side.svg"
  7588. }
  7589. }
  7590. },
  7591. [
  7592. {
  7593. name: "Normal",
  7594. height: math.unit(9 + 6 / 12, "feet")
  7595. },
  7596. {
  7597. name: "Macro",
  7598. height: math.unit(96, "feet"),
  7599. default: true
  7600. },
  7601. {
  7602. name: "Macro+",
  7603. height: math.unit(243, "feet")
  7604. },
  7605. ]
  7606. ))
  7607. characterMakers.push(() => makeCharacter(
  7608. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7609. {
  7610. front: {
  7611. height: math.unit(194, "cm"),
  7612. weight: math.unit(90, "kg"),
  7613. name: "Front",
  7614. image: {
  7615. source: "./media/characters/ranek/front.svg"
  7616. }
  7617. },
  7618. side: {
  7619. height: math.unit(194, "cm"),
  7620. weight: math.unit(90, "kg"),
  7621. name: "Side",
  7622. image: {
  7623. source: "./media/characters/ranek/side.svg"
  7624. }
  7625. },
  7626. back: {
  7627. height: math.unit(194, "cm"),
  7628. weight: math.unit(90, "kg"),
  7629. name: "Back",
  7630. image: {
  7631. source: "./media/characters/ranek/back.svg"
  7632. }
  7633. },
  7634. feral: {
  7635. height: math.unit(30, "cm"),
  7636. weight: math.unit(1.6, "lbs"),
  7637. name: "Feral",
  7638. image: {
  7639. source: "./media/characters/ranek/feral.svg"
  7640. }
  7641. },
  7642. },
  7643. [
  7644. {
  7645. name: "Normal",
  7646. height: math.unit(194, "cm"),
  7647. default: true
  7648. },
  7649. {
  7650. name: "Macro",
  7651. height: math.unit(100, "meters")
  7652. },
  7653. ]
  7654. ))
  7655. characterMakers.push(() => makeCharacter(
  7656. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7657. {
  7658. front: {
  7659. height: math.unit(5 + 6 / 12, "feet"),
  7660. weight: math.unit(153, "lbs"),
  7661. name: "Front",
  7662. image: {
  7663. source: "./media/characters/andrew-cooper/front.svg"
  7664. }
  7665. },
  7666. },
  7667. [
  7668. {
  7669. name: "Nano",
  7670. height: math.unit(1, "mm")
  7671. },
  7672. {
  7673. name: "Micro",
  7674. height: math.unit(2, "inches")
  7675. },
  7676. {
  7677. name: "Normal",
  7678. height: math.unit(5 + 6 / 12, "feet"),
  7679. default: true
  7680. }
  7681. ]
  7682. ))
  7683. characterMakers.push(() => makeCharacter(
  7684. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7685. {
  7686. front: {
  7687. height: math.unit(6, "feet"),
  7688. weight: math.unit(180, "lbs"),
  7689. name: "Front",
  7690. image: {
  7691. source: "./media/characters/akane-sato/front.svg",
  7692. extra: 1219 / 1140
  7693. }
  7694. },
  7695. back: {
  7696. height: math.unit(6, "feet"),
  7697. weight: math.unit(180, "lbs"),
  7698. name: "Back",
  7699. image: {
  7700. source: "./media/characters/akane-sato/back.svg",
  7701. extra: 1219 / 1170
  7702. }
  7703. },
  7704. },
  7705. [
  7706. {
  7707. name: "Normal",
  7708. height: math.unit(2.5, "meters")
  7709. },
  7710. {
  7711. name: "Macro",
  7712. height: math.unit(250, "meters"),
  7713. default: true
  7714. },
  7715. {
  7716. name: "Megamacro",
  7717. height: math.unit(25, "km")
  7718. },
  7719. ]
  7720. ))
  7721. characterMakers.push(() => makeCharacter(
  7722. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7723. {
  7724. front: {
  7725. height: math.unit(6, "feet"),
  7726. weight: math.unit(65, "kg"),
  7727. name: "Front",
  7728. image: {
  7729. source: "./media/characters/rook/front.svg",
  7730. extra: 960 / 950
  7731. }
  7732. }
  7733. },
  7734. [
  7735. {
  7736. name: "Normal",
  7737. height: math.unit(8.8, "feet")
  7738. },
  7739. {
  7740. name: "Macro",
  7741. height: math.unit(88, "feet"),
  7742. default: true
  7743. },
  7744. {
  7745. name: "Megamacro",
  7746. height: math.unit(8, "miles")
  7747. },
  7748. ]
  7749. ))
  7750. characterMakers.push(() => makeCharacter(
  7751. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7752. {
  7753. front: {
  7754. height: math.unit(12 + 2 / 12, "feet"),
  7755. weight: math.unit(808, "lbs"),
  7756. name: "Front",
  7757. image: {
  7758. source: "./media/characters/prodigy/front.svg"
  7759. }
  7760. }
  7761. },
  7762. [
  7763. {
  7764. name: "Normal",
  7765. height: math.unit(12 + 2 / 12, "feet"),
  7766. default: true
  7767. },
  7768. {
  7769. name: "Macro",
  7770. height: math.unit(143, "feet")
  7771. },
  7772. {
  7773. name: "Macro+",
  7774. height: math.unit(400, "feet")
  7775. },
  7776. ]
  7777. ))
  7778. characterMakers.push(() => makeCharacter(
  7779. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7780. {
  7781. front: {
  7782. height: math.unit(6, "feet"),
  7783. weight: math.unit(225, "lbs"),
  7784. name: "Front",
  7785. image: {
  7786. source: "./media/characters/daniel/front.svg"
  7787. }
  7788. },
  7789. leaning: {
  7790. height: math.unit(6, "feet"),
  7791. weight: math.unit(225, "lbs"),
  7792. name: "Leaning",
  7793. image: {
  7794. source: "./media/characters/daniel/leaning.svg"
  7795. }
  7796. },
  7797. },
  7798. [
  7799. {
  7800. name: "Macro",
  7801. height: math.unit(1000, "feet"),
  7802. default: true
  7803. },
  7804. ]
  7805. ))
  7806. characterMakers.push(() => makeCharacter(
  7807. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7808. {
  7809. front: {
  7810. height: math.unit(6, "feet"),
  7811. weight: math.unit(88, "lbs"),
  7812. name: "Front",
  7813. image: {
  7814. source: "./media/characters/chiros/front.svg",
  7815. extra: 306 / 226
  7816. }
  7817. },
  7818. side: {
  7819. height: math.unit(6, "feet"),
  7820. weight: math.unit(88, "lbs"),
  7821. name: "Side",
  7822. image: {
  7823. source: "./media/characters/chiros/side.svg",
  7824. extra: 306 / 226
  7825. }
  7826. },
  7827. },
  7828. [
  7829. {
  7830. name: "Normal",
  7831. height: math.unit(6, "cm"),
  7832. default: true
  7833. },
  7834. ]
  7835. ))
  7836. characterMakers.push(() => makeCharacter(
  7837. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7838. {
  7839. front: {
  7840. height: math.unit(6, "feet"),
  7841. weight: math.unit(100, "lbs"),
  7842. name: "Front",
  7843. image: {
  7844. source: "./media/characters/selka/front.svg",
  7845. extra: 947 / 887
  7846. }
  7847. }
  7848. },
  7849. [
  7850. {
  7851. name: "Normal",
  7852. height: math.unit(5, "cm"),
  7853. default: true
  7854. },
  7855. ]
  7856. ))
  7857. characterMakers.push(() => makeCharacter(
  7858. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7859. {
  7860. front: {
  7861. height: math.unit(8 + 3 / 12, "feet"),
  7862. weight: math.unit(424, "lbs"),
  7863. name: "Front",
  7864. image: {
  7865. source: "./media/characters/verin/front.svg",
  7866. extra: 1845 / 1550
  7867. }
  7868. },
  7869. frontArmored: {
  7870. height: math.unit(8 + 3 / 12, "feet"),
  7871. weight: math.unit(424, "lbs"),
  7872. name: "Front (Armored)",
  7873. image: {
  7874. source: "./media/characters/verin/front-armor.svg",
  7875. extra: 1845 / 1550,
  7876. bottom: 0.01
  7877. }
  7878. },
  7879. back: {
  7880. height: math.unit(8 + 3 / 12, "feet"),
  7881. weight: math.unit(424, "lbs"),
  7882. name: "Back",
  7883. image: {
  7884. source: "./media/characters/verin/back.svg",
  7885. bottom: 0.1,
  7886. extra: 1
  7887. }
  7888. },
  7889. foot: {
  7890. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7891. name: "Foot",
  7892. image: {
  7893. source: "./media/characters/verin/foot.svg"
  7894. }
  7895. },
  7896. },
  7897. [
  7898. {
  7899. name: "Normal",
  7900. height: math.unit(8 + 3 / 12, "feet")
  7901. },
  7902. {
  7903. name: "Minimacro",
  7904. height: math.unit(21, "feet"),
  7905. default: true
  7906. },
  7907. {
  7908. name: "Macro",
  7909. height: math.unit(626, "feet")
  7910. },
  7911. ]
  7912. ))
  7913. characterMakers.push(() => makeCharacter(
  7914. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7915. {
  7916. front: {
  7917. height: math.unit(2.718, "meters"),
  7918. weight: math.unit(150, "lbs"),
  7919. name: "Front",
  7920. image: {
  7921. source: "./media/characters/sovrim-terraquian/front.svg"
  7922. }
  7923. },
  7924. back: {
  7925. height: math.unit(2.718, "meters"),
  7926. weight: math.unit(150, "lbs"),
  7927. name: "Back",
  7928. image: {
  7929. source: "./media/characters/sovrim-terraquian/back.svg"
  7930. }
  7931. }
  7932. },
  7933. [
  7934. {
  7935. name: "Micro",
  7936. height: math.unit(2, "inches")
  7937. },
  7938. {
  7939. name: "Small",
  7940. height: math.unit(1, "meter")
  7941. },
  7942. {
  7943. name: "Normal",
  7944. height: math.unit(Math.E, "meters"),
  7945. default: true
  7946. },
  7947. {
  7948. name: "Macro",
  7949. height: math.unit(20, "meters")
  7950. },
  7951. {
  7952. name: "Macro+",
  7953. height: math.unit(400, "meters")
  7954. },
  7955. ]
  7956. ))
  7957. characterMakers.push(() => makeCharacter(
  7958. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7959. {
  7960. front: {
  7961. height: math.unit(7, "feet"),
  7962. weight: math.unit(489, "lbs"),
  7963. name: "Front",
  7964. image: {
  7965. source: "./media/characters/reece-silvermane/front.svg",
  7966. bottom: 0.02,
  7967. extra: 1
  7968. }
  7969. },
  7970. },
  7971. [
  7972. {
  7973. name: "Macro",
  7974. height: math.unit(1.5, "miles"),
  7975. default: true
  7976. },
  7977. ]
  7978. ))
  7979. characterMakers.push(() => makeCharacter(
  7980. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7981. {
  7982. front: {
  7983. height: math.unit(6, "feet"),
  7984. weight: math.unit(78, "kg"),
  7985. name: "Front",
  7986. image: {
  7987. source: "./media/characters/kane/front.svg",
  7988. extra: 978 / 899
  7989. }
  7990. },
  7991. },
  7992. [
  7993. {
  7994. name: "Normal",
  7995. height: math.unit(2.1, "m"),
  7996. },
  7997. {
  7998. name: "Macro",
  7999. height: math.unit(1, "km"),
  8000. default: true
  8001. },
  8002. ]
  8003. ))
  8004. characterMakers.push(() => makeCharacter(
  8005. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8006. {
  8007. front: {
  8008. height: math.unit(6, "feet"),
  8009. weight: math.unit(200, "kg"),
  8010. name: "Front",
  8011. image: {
  8012. source: "./media/characters/tegon/front.svg",
  8013. bottom: 0.01,
  8014. extra: 1
  8015. }
  8016. },
  8017. },
  8018. [
  8019. {
  8020. name: "Micro",
  8021. height: math.unit(1, "inch")
  8022. },
  8023. {
  8024. name: "Normal",
  8025. height: math.unit(6 + 3 / 12, "feet"),
  8026. default: true
  8027. },
  8028. {
  8029. name: "Macro",
  8030. height: math.unit(300, "feet")
  8031. },
  8032. {
  8033. name: "Megamacro",
  8034. height: math.unit(69, "miles")
  8035. },
  8036. ]
  8037. ))
  8038. characterMakers.push(() => makeCharacter(
  8039. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8040. {
  8041. side: {
  8042. height: math.unit(6, "feet"),
  8043. weight: math.unit(2304, "lbs"),
  8044. name: "Side",
  8045. image: {
  8046. source: "./media/characters/arcturax/side.svg",
  8047. extra: 790 / 376,
  8048. bottom: 0.01
  8049. }
  8050. },
  8051. },
  8052. [
  8053. {
  8054. name: "Micro",
  8055. height: math.unit(2, "inch")
  8056. },
  8057. {
  8058. name: "Normal",
  8059. height: math.unit(6, "feet")
  8060. },
  8061. {
  8062. name: "Macro",
  8063. height: math.unit(39, "feet"),
  8064. default: true
  8065. },
  8066. {
  8067. name: "Megamacro",
  8068. height: math.unit(7, "miles")
  8069. },
  8070. ]
  8071. ))
  8072. characterMakers.push(() => makeCharacter(
  8073. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8074. {
  8075. front: {
  8076. height: math.unit(6, "feet"),
  8077. weight: math.unit(50, "lbs"),
  8078. name: "Front",
  8079. image: {
  8080. source: "./media/characters/sentri/front.svg",
  8081. extra: 1750 / 1570,
  8082. bottom: 0.025
  8083. }
  8084. },
  8085. frontAlt: {
  8086. height: math.unit(6, "feet"),
  8087. weight: math.unit(50, "lbs"),
  8088. name: "Front (Alt)",
  8089. image: {
  8090. source: "./media/characters/sentri/front-alt.svg",
  8091. extra: 1750 / 1570,
  8092. bottom: 0.025
  8093. }
  8094. },
  8095. },
  8096. [
  8097. {
  8098. name: "Normal",
  8099. height: math.unit(15, "feet"),
  8100. default: true
  8101. },
  8102. {
  8103. name: "Macro",
  8104. height: math.unit(2500, "feet")
  8105. }
  8106. ]
  8107. ))
  8108. characterMakers.push(() => makeCharacter(
  8109. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8110. {
  8111. front: {
  8112. height: math.unit(5 + 8 / 12, "feet"),
  8113. weight: math.unit(130, "lbs"),
  8114. name: "Front",
  8115. image: {
  8116. source: "./media/characters/corvin/front.svg",
  8117. extra: 1803 / 1629
  8118. }
  8119. },
  8120. frontShirt: {
  8121. height: math.unit(5 + 8 / 12, "feet"),
  8122. weight: math.unit(130, "lbs"),
  8123. name: "Front (Shirt)",
  8124. image: {
  8125. source: "./media/characters/corvin/front-shirt.svg",
  8126. extra: 1803 / 1629
  8127. }
  8128. },
  8129. frontPoncho: {
  8130. height: math.unit(5 + 8 / 12, "feet"),
  8131. weight: math.unit(130, "lbs"),
  8132. name: "Front (Poncho)",
  8133. image: {
  8134. source: "./media/characters/corvin/front-poncho.svg",
  8135. extra: 1803 / 1629
  8136. }
  8137. },
  8138. side: {
  8139. height: math.unit(5 + 8 / 12, "feet"),
  8140. weight: math.unit(130, "lbs"),
  8141. name: "Side",
  8142. image: {
  8143. source: "./media/characters/corvin/side.svg",
  8144. extra: 1012 / 945
  8145. }
  8146. },
  8147. back: {
  8148. height: math.unit(5 + 8 / 12, "feet"),
  8149. weight: math.unit(130, "lbs"),
  8150. name: "Back",
  8151. image: {
  8152. source: "./media/characters/corvin/back.svg",
  8153. extra: 1803 / 1629
  8154. }
  8155. },
  8156. },
  8157. [
  8158. {
  8159. name: "Micro",
  8160. height: math.unit(3, "inches")
  8161. },
  8162. {
  8163. name: "Normal",
  8164. height: math.unit(5 + 8 / 12, "feet")
  8165. },
  8166. {
  8167. name: "Macro",
  8168. height: math.unit(300, "feet"),
  8169. default: true
  8170. },
  8171. {
  8172. name: "Megamacro",
  8173. height: math.unit(500, "miles")
  8174. }
  8175. ]
  8176. ))
  8177. characterMakers.push(() => makeCharacter(
  8178. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8179. {
  8180. front: {
  8181. height: math.unit(6, "feet"),
  8182. weight: math.unit(135, "lbs"),
  8183. name: "Front",
  8184. image: {
  8185. source: "./media/characters/q/front.svg",
  8186. extra: 854 / 752,
  8187. bottom: 0.005
  8188. }
  8189. },
  8190. back: {
  8191. height: math.unit(6, "feet"),
  8192. weight: math.unit(130, "lbs"),
  8193. name: "Back",
  8194. image: {
  8195. source: "./media/characters/q/back.svg",
  8196. extra: 854 / 752
  8197. }
  8198. },
  8199. },
  8200. [
  8201. {
  8202. name: "Macro",
  8203. height: math.unit(90, "feet"),
  8204. default: true
  8205. },
  8206. {
  8207. name: "Extra Macro",
  8208. height: math.unit(300, "feet"),
  8209. },
  8210. {
  8211. name: "BIG WALF",
  8212. height: math.unit(750, "feet"),
  8213. },
  8214. ]
  8215. ))
  8216. characterMakers.push(() => makeCharacter(
  8217. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8218. {
  8219. front: {
  8220. height: math.unit(6, "feet"),
  8221. weight: math.unit(150, "lbs"),
  8222. name: "Front",
  8223. image: {
  8224. source: "./media/characters/carley/front.svg",
  8225. extra: 3927 / 3540,
  8226. bottom: 29.2 / 735
  8227. }
  8228. }
  8229. },
  8230. [
  8231. {
  8232. name: "Normal",
  8233. height: math.unit(6 + 3 / 12, "feet")
  8234. },
  8235. {
  8236. name: "Macro",
  8237. height: math.unit(185, "feet"),
  8238. default: true
  8239. },
  8240. {
  8241. name: "Megamacro",
  8242. height: math.unit(8, "miles"),
  8243. },
  8244. ]
  8245. ))
  8246. characterMakers.push(() => makeCharacter(
  8247. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8248. {
  8249. front: {
  8250. height: math.unit(3, "feet"),
  8251. weight: math.unit(28, "lbs"),
  8252. name: "Front",
  8253. image: {
  8254. source: "./media/characters/citrine/front.svg"
  8255. }
  8256. }
  8257. },
  8258. [
  8259. {
  8260. name: "Normal",
  8261. height: math.unit(3, "feet"),
  8262. default: true
  8263. }
  8264. ]
  8265. ))
  8266. characterMakers.push(() => makeCharacter(
  8267. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8268. {
  8269. front: {
  8270. height: math.unit(14, "feet"),
  8271. weight: math.unit(1450, "kg"),
  8272. capacity: math.unit(15, "people"),
  8273. name: "Front",
  8274. image: {
  8275. source: "./media/characters/aura-starwind/front.svg",
  8276. extra: 1440/1327,
  8277. bottom: 11/1451
  8278. }
  8279. },
  8280. side: {
  8281. height: math.unit(14, "feet"),
  8282. weight: math.unit(1450, "kg"),
  8283. capacity: math.unit(15, "people"),
  8284. name: "Side",
  8285. image: {
  8286. source: "./media/characters/aura-starwind/side.svg",
  8287. extra: 1654 / 1497
  8288. }
  8289. },
  8290. taur: {
  8291. height: math.unit(18, "feet"),
  8292. weight: math.unit(5500, "kg"),
  8293. capacity: math.unit(50, "people"),
  8294. name: "Taur",
  8295. image: {
  8296. source: "./media/characters/aura-starwind/taur.svg",
  8297. extra: 1760 / 1650
  8298. }
  8299. },
  8300. feral: {
  8301. height: math.unit(46, "feet"),
  8302. weight: math.unit(25000, "kg"),
  8303. capacity: math.unit(120, "people"),
  8304. name: "Feral",
  8305. image: {
  8306. source: "./media/characters/aura-starwind/feral.svg"
  8307. }
  8308. },
  8309. },
  8310. [
  8311. {
  8312. name: "Normal",
  8313. height: math.unit(14, "feet"),
  8314. default: true
  8315. },
  8316. {
  8317. name: "Macro",
  8318. height: math.unit(50, "meters")
  8319. },
  8320. {
  8321. name: "Megamacro",
  8322. height: math.unit(5000, "meters")
  8323. },
  8324. {
  8325. name: "Gigamacro",
  8326. height: math.unit(100000, "kilometers")
  8327. },
  8328. ]
  8329. ))
  8330. characterMakers.push(() => makeCharacter(
  8331. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8332. {
  8333. front: {
  8334. height: math.unit(2 + 7 / 12, "feet"),
  8335. weight: math.unit(32, "lbs"),
  8336. name: "Front",
  8337. image: {
  8338. source: "./media/characters/rivet/front.svg",
  8339. extra: 1716 / 1658,
  8340. bottom: 0.03
  8341. }
  8342. },
  8343. foot: {
  8344. height: math.unit(0.551, "feet"),
  8345. name: "Rivet's Foot",
  8346. image: {
  8347. source: "./media/characters/rivet/foot.svg"
  8348. },
  8349. rename: true
  8350. }
  8351. },
  8352. [
  8353. {
  8354. name: "Micro",
  8355. height: math.unit(1.5, "inches"),
  8356. },
  8357. {
  8358. name: "Normal",
  8359. height: math.unit(2 + 7 / 12, "feet"),
  8360. default: true
  8361. },
  8362. {
  8363. name: "Macro",
  8364. height: math.unit(85, "feet")
  8365. },
  8366. {
  8367. name: "Megamacro",
  8368. height: math.unit(2.2, "km")
  8369. }
  8370. ]
  8371. ))
  8372. characterMakers.push(() => makeCharacter(
  8373. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8374. {
  8375. front: {
  8376. height: math.unit(5 + 9 / 12, "feet"),
  8377. weight: math.unit(150, "lbs"),
  8378. name: "Front",
  8379. image: {
  8380. source: "./media/characters/coffee/front.svg",
  8381. extra: 3666 / 3032,
  8382. bottom: 0.04
  8383. }
  8384. },
  8385. foot: {
  8386. height: math.unit(1.29, "feet"),
  8387. name: "Foot",
  8388. image: {
  8389. source: "./media/characters/coffee/foot.svg"
  8390. }
  8391. },
  8392. },
  8393. [
  8394. {
  8395. name: "Micro",
  8396. height: math.unit(2, "inches"),
  8397. },
  8398. {
  8399. name: "Normal",
  8400. height: math.unit(5 + 9 / 12, "feet"),
  8401. default: true
  8402. },
  8403. {
  8404. name: "Macro",
  8405. height: math.unit(800, "feet")
  8406. },
  8407. {
  8408. name: "Megamacro",
  8409. height: math.unit(25, "miles")
  8410. }
  8411. ]
  8412. ))
  8413. characterMakers.push(() => makeCharacter(
  8414. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8415. {
  8416. front: {
  8417. height: math.unit(6, "feet"),
  8418. weight: math.unit(200, "lbs"),
  8419. name: "Front",
  8420. image: {
  8421. source: "./media/characters/chari-gal/front.svg",
  8422. extra: 1568 / 1385,
  8423. bottom: 0.047
  8424. }
  8425. },
  8426. gigantamax: {
  8427. height: math.unit(6 * 16, "feet"),
  8428. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8429. name: "Gigantamax",
  8430. image: {
  8431. source: "./media/characters/chari-gal/gigantamax.svg",
  8432. extra: 1124 / 888,
  8433. bottom: 0.03
  8434. }
  8435. },
  8436. },
  8437. [
  8438. {
  8439. name: "Normal",
  8440. height: math.unit(5 + 7 / 12, "feet")
  8441. },
  8442. {
  8443. name: "Macro",
  8444. height: math.unit(200, "feet"),
  8445. default: true
  8446. }
  8447. ]
  8448. ))
  8449. characterMakers.push(() => makeCharacter(
  8450. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8451. {
  8452. front: {
  8453. height: math.unit(6, "feet"),
  8454. weight: math.unit(150, "lbs"),
  8455. name: "Front",
  8456. image: {
  8457. source: "./media/characters/nova/front.svg",
  8458. extra: 5000 / 4722,
  8459. bottom: 0.02
  8460. }
  8461. }
  8462. },
  8463. [
  8464. {
  8465. name: "Micro-",
  8466. height: math.unit(0.8, "inches")
  8467. },
  8468. {
  8469. name: "Micro",
  8470. height: math.unit(2, "inches"),
  8471. default: true
  8472. },
  8473. ]
  8474. ))
  8475. characterMakers.push(() => makeCharacter(
  8476. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8477. {
  8478. front: {
  8479. height: math.unit(3 + 1 / 12, "feet"),
  8480. weight: math.unit(21.7, "lbs"),
  8481. name: "Front",
  8482. image: {
  8483. source: "./media/characters/argent/front.svg",
  8484. extra: 1471 / 1331,
  8485. bottom: 100.8 / 1575.5
  8486. }
  8487. }
  8488. },
  8489. [
  8490. {
  8491. name: "Micro",
  8492. height: math.unit(2, "inches")
  8493. },
  8494. {
  8495. name: "Normal",
  8496. height: math.unit(3 + 1 / 12, "feet"),
  8497. default: true
  8498. },
  8499. {
  8500. name: "Macro",
  8501. height: math.unit(120, "feet")
  8502. },
  8503. ]
  8504. ))
  8505. characterMakers.push(() => makeCharacter(
  8506. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8507. {
  8508. lamp: {
  8509. height: math.unit(7 * 1559 / 989, "feet"),
  8510. name: "Magic Lamp",
  8511. image: {
  8512. source: "./media/characters/mira-al-cul/lamp.svg",
  8513. extra: 1617 / 1559
  8514. }
  8515. },
  8516. front: {
  8517. height: math.unit(7, "feet"),
  8518. name: "Front",
  8519. image: {
  8520. source: "./media/characters/mira-al-cul/front.svg",
  8521. extra: 1044 / 990
  8522. }
  8523. },
  8524. },
  8525. [
  8526. {
  8527. name: "Heavily Restricted",
  8528. height: math.unit(7 * 1559 / 989, "feet")
  8529. },
  8530. {
  8531. name: "Freshly Freed",
  8532. height: math.unit(50 * 1559 / 989, "feet")
  8533. },
  8534. {
  8535. name: "World Encompassing",
  8536. height: math.unit(10000 * 1559 / 989, "miles")
  8537. },
  8538. {
  8539. name: "Galactic",
  8540. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8541. },
  8542. {
  8543. name: "Palmed Universe",
  8544. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8545. default: true
  8546. },
  8547. {
  8548. name: "Multiversal Matriarch",
  8549. height: math.unit(8.87e10, "yottameters")
  8550. },
  8551. {
  8552. name: "Void Mother",
  8553. height: math.unit(3.14e110, "yottaparsecs")
  8554. },
  8555. {
  8556. name: "Toying with Transcendence",
  8557. height: math.unit(1e307, "meters")
  8558. },
  8559. ]
  8560. ))
  8561. characterMakers.push(() => makeCharacter(
  8562. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8563. {
  8564. front: {
  8565. height: math.unit(17 + 1 / 12, "feet"),
  8566. weight: math.unit(476.2 * 5, "lbs"),
  8567. name: "Front",
  8568. image: {
  8569. source: "./media/characters/kuro-shi-uchū/front.svg",
  8570. extra: 2329 / 1835,
  8571. bottom: 0.02
  8572. }
  8573. },
  8574. },
  8575. [
  8576. {
  8577. name: "Micro",
  8578. height: math.unit(2, "inches")
  8579. },
  8580. {
  8581. name: "Normal",
  8582. height: math.unit(12, "meters")
  8583. },
  8584. {
  8585. name: "Planetary",
  8586. height: math.unit(0.00929, "AU"),
  8587. default: true
  8588. },
  8589. {
  8590. name: "Universal",
  8591. height: math.unit(20, "gigaparsecs")
  8592. },
  8593. ]
  8594. ))
  8595. characterMakers.push(() => makeCharacter(
  8596. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8597. {
  8598. front: {
  8599. height: math.unit(5 + 2 / 12, "feet"),
  8600. weight: math.unit(120, "lbs"),
  8601. name: "Front",
  8602. image: {
  8603. source: "./media/characters/katherine/front.svg",
  8604. extra: 2075 / 1969
  8605. }
  8606. },
  8607. dress: {
  8608. height: math.unit(5 + 2 / 12, "feet"),
  8609. weight: math.unit(120, "lbs"),
  8610. name: "Dress",
  8611. image: {
  8612. source: "./media/characters/katherine/dress.svg",
  8613. extra: 2258 / 2064
  8614. }
  8615. },
  8616. },
  8617. [
  8618. {
  8619. name: "Micro",
  8620. height: math.unit(1, "inches"),
  8621. default: true
  8622. },
  8623. {
  8624. name: "Normal",
  8625. height: math.unit(5 + 2 / 12, "feet")
  8626. },
  8627. {
  8628. name: "Macro",
  8629. height: math.unit(100, "meters")
  8630. },
  8631. {
  8632. name: "Megamacro",
  8633. height: math.unit(80, "miles")
  8634. },
  8635. ]
  8636. ))
  8637. characterMakers.push(() => makeCharacter(
  8638. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8639. {
  8640. front: {
  8641. height: math.unit(7 + 8 / 12, "feet"),
  8642. weight: math.unit(250, "lbs"),
  8643. name: "Front",
  8644. image: {
  8645. source: "./media/characters/yevis/front.svg",
  8646. extra: 1938 / 1755
  8647. }
  8648. }
  8649. },
  8650. [
  8651. {
  8652. name: "Mortal",
  8653. height: math.unit(7 + 8 / 12, "feet")
  8654. },
  8655. {
  8656. name: "Battle",
  8657. height: math.unit(25 + 11 / 12, "feet")
  8658. },
  8659. {
  8660. name: "Wrath",
  8661. height: math.unit(1654 + 11 / 12, "feet")
  8662. },
  8663. {
  8664. name: "Planet Destroyer",
  8665. height: math.unit(12000, "miles")
  8666. },
  8667. {
  8668. name: "Galaxy Conqueror",
  8669. height: math.unit(1.45, "zettameters"),
  8670. default: true
  8671. },
  8672. {
  8673. name: "Universal War",
  8674. height: math.unit(184, "gigaparsecs")
  8675. },
  8676. {
  8677. name: "Eternity War",
  8678. height: math.unit(1.98e55, "yottaparsecs")
  8679. },
  8680. ]
  8681. ))
  8682. characterMakers.push(() => makeCharacter(
  8683. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8684. {
  8685. front: {
  8686. height: math.unit(5 + 8 / 12, "feet"),
  8687. weight: math.unit(63, "kg"),
  8688. name: "Front",
  8689. image: {
  8690. source: "./media/characters/xavier/front.svg",
  8691. extra: 944 / 883
  8692. }
  8693. },
  8694. frontStretch: {
  8695. height: math.unit(5 + 8 / 12, "feet"),
  8696. weight: math.unit(63, "kg"),
  8697. name: "Stretching",
  8698. image: {
  8699. source: "./media/characters/xavier/front-stretch.svg",
  8700. extra: 962 / 820
  8701. }
  8702. },
  8703. },
  8704. [
  8705. {
  8706. name: "Normal",
  8707. height: math.unit(5 + 8 / 12, "feet")
  8708. },
  8709. {
  8710. name: "Macro",
  8711. height: math.unit(100, "meters"),
  8712. default: true
  8713. },
  8714. {
  8715. name: "McLargeHuge",
  8716. height: math.unit(10, "miles")
  8717. },
  8718. ]
  8719. ))
  8720. characterMakers.push(() => makeCharacter(
  8721. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8722. {
  8723. front: {
  8724. height: math.unit(5 + 5 / 12, "feet"),
  8725. weight: math.unit(150, "lb"),
  8726. name: "Front",
  8727. image: {
  8728. source: "./media/characters/joshii/front.svg",
  8729. extra: 765 / 653,
  8730. bottom: 51 / 816
  8731. }
  8732. },
  8733. foot: {
  8734. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8735. name: "Foot",
  8736. image: {
  8737. source: "./media/characters/joshii/foot.svg"
  8738. }
  8739. },
  8740. },
  8741. [
  8742. {
  8743. name: "Micro",
  8744. height: math.unit(2, "inches"),
  8745. default: true
  8746. },
  8747. {
  8748. name: "Normal",
  8749. height: math.unit(5 + 5 / 12, "feet")
  8750. },
  8751. {
  8752. name: "Macro",
  8753. height: math.unit(785, "feet")
  8754. },
  8755. {
  8756. name: "Megamacro",
  8757. height: math.unit(24.5, "miles")
  8758. },
  8759. ]
  8760. ))
  8761. characterMakers.push(() => makeCharacter(
  8762. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8763. {
  8764. front: {
  8765. height: math.unit(6, "feet"),
  8766. weight: math.unit(150, "lb"),
  8767. name: "Front",
  8768. image: {
  8769. source: "./media/characters/goddess-elizabeth/front.svg",
  8770. extra: 1800 / 1525,
  8771. bottom: 0.005
  8772. }
  8773. },
  8774. foot: {
  8775. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8776. name: "Foot",
  8777. image: {
  8778. source: "./media/characters/goddess-elizabeth/foot.svg"
  8779. }
  8780. },
  8781. mouth: {
  8782. height: math.unit(6, "feet"),
  8783. name: "Mouth",
  8784. image: {
  8785. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8786. }
  8787. },
  8788. },
  8789. [
  8790. {
  8791. name: "Micro",
  8792. height: math.unit(12, "feet")
  8793. },
  8794. {
  8795. name: "Normal",
  8796. height: math.unit(80, "miles"),
  8797. default: true
  8798. },
  8799. {
  8800. name: "Macro",
  8801. height: math.unit(15000, "parsecs")
  8802. },
  8803. ]
  8804. ))
  8805. characterMakers.push(() => makeCharacter(
  8806. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8807. {
  8808. front: {
  8809. height: math.unit(5 + 9 / 12, "feet"),
  8810. weight: math.unit(144, "lb"),
  8811. name: "Front",
  8812. image: {
  8813. source: "./media/characters/kara/front.svg"
  8814. }
  8815. },
  8816. feet: {
  8817. height: math.unit(6 / 6.765, "feet"),
  8818. name: "Kara's Feet",
  8819. rename: true,
  8820. image: {
  8821. source: "./media/characters/kara/feet.svg"
  8822. }
  8823. },
  8824. },
  8825. [
  8826. {
  8827. name: "Normal",
  8828. height: math.unit(5 + 9 / 12, "feet")
  8829. },
  8830. {
  8831. name: "Macro",
  8832. height: math.unit(174, "feet"),
  8833. default: true
  8834. },
  8835. ]
  8836. ))
  8837. characterMakers.push(() => makeCharacter(
  8838. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8839. {
  8840. front: {
  8841. height: math.unit(18, "feet"),
  8842. weight: math.unit(4050, "lb"),
  8843. name: "Front",
  8844. image: {
  8845. source: "./media/characters/tyrone/front.svg",
  8846. extra: 2405 / 2270,
  8847. bottom: 182 / 2587
  8848. }
  8849. },
  8850. },
  8851. [
  8852. {
  8853. name: "Normal",
  8854. height: math.unit(18, "feet"),
  8855. default: true
  8856. },
  8857. {
  8858. name: "Macro",
  8859. height: math.unit(300, "feet")
  8860. },
  8861. {
  8862. name: "Megamacro",
  8863. height: math.unit(15, "km")
  8864. },
  8865. {
  8866. name: "Gigamacro",
  8867. height: math.unit(500, "km")
  8868. },
  8869. {
  8870. name: "Teramacro",
  8871. height: math.unit(0.5, "gigameters")
  8872. },
  8873. {
  8874. name: "Omnimacro",
  8875. height: math.unit(1e252, "yottauniverse")
  8876. },
  8877. ]
  8878. ))
  8879. characterMakers.push(() => makeCharacter(
  8880. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8881. {
  8882. front: {
  8883. height: math.unit(7 + 8 / 12, "feet"),
  8884. weight: math.unit(120, "lb"),
  8885. name: "Front",
  8886. image: {
  8887. source: "./media/characters/danny/front.svg",
  8888. extra: 1490 / 1350
  8889. }
  8890. },
  8891. back: {
  8892. height: math.unit(7 + 8 / 12, "feet"),
  8893. weight: math.unit(120, "lb"),
  8894. name: "Back",
  8895. image: {
  8896. source: "./media/characters/danny/back.svg",
  8897. extra: 1490 / 1350
  8898. }
  8899. },
  8900. },
  8901. [
  8902. {
  8903. name: "Normal",
  8904. height: math.unit(7 + 8 / 12, "feet"),
  8905. default: true
  8906. },
  8907. ]
  8908. ))
  8909. characterMakers.push(() => makeCharacter(
  8910. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8911. {
  8912. front: {
  8913. height: math.unit(3.5, "inches"),
  8914. weight: math.unit(19, "grams"),
  8915. name: "Front",
  8916. image: {
  8917. source: "./media/characters/mallow/front.svg",
  8918. extra: 471 / 431
  8919. }
  8920. },
  8921. back: {
  8922. height: math.unit(3.5, "inches"),
  8923. weight: math.unit(19, "grams"),
  8924. name: "Back",
  8925. image: {
  8926. source: "./media/characters/mallow/back.svg",
  8927. extra: 471 / 431
  8928. }
  8929. },
  8930. },
  8931. [
  8932. {
  8933. name: "Normal",
  8934. height: math.unit(3.5, "inches"),
  8935. default: true
  8936. },
  8937. ]
  8938. ))
  8939. characterMakers.push(() => makeCharacter(
  8940. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8941. {
  8942. front: {
  8943. height: math.unit(9, "feet"),
  8944. weight: math.unit(230, "kg"),
  8945. name: "Front",
  8946. image: {
  8947. source: "./media/characters/starry-aqua/front.svg"
  8948. }
  8949. },
  8950. back: {
  8951. height: math.unit(9, "feet"),
  8952. weight: math.unit(230, "kg"),
  8953. name: "Back",
  8954. image: {
  8955. source: "./media/characters/starry-aqua/back.svg"
  8956. }
  8957. },
  8958. hand: {
  8959. height: math.unit(9 * 0.1168, "feet"),
  8960. name: "Hand",
  8961. image: {
  8962. source: "./media/characters/starry-aqua/hand.svg"
  8963. }
  8964. },
  8965. foot: {
  8966. height: math.unit(9 * 0.18, "feet"),
  8967. name: "Foot",
  8968. image: {
  8969. source: "./media/characters/starry-aqua/foot.svg"
  8970. }
  8971. }
  8972. },
  8973. [
  8974. {
  8975. name: "Micro",
  8976. height: math.unit(3, "inches")
  8977. },
  8978. {
  8979. name: "Normal",
  8980. height: math.unit(9, "feet")
  8981. },
  8982. {
  8983. name: "Macro",
  8984. height: math.unit(300, "feet"),
  8985. default: true
  8986. },
  8987. {
  8988. name: "Megamacro",
  8989. height: math.unit(3200, "feet")
  8990. }
  8991. ]
  8992. ))
  8993. characterMakers.push(() => makeCharacter(
  8994. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  8995. {
  8996. front: {
  8997. height: math.unit(15, "feet"),
  8998. weight: math.unit(5026, "lb"),
  8999. name: "Front",
  9000. image: {
  9001. source: "./media/characters/luka-towers/front.svg",
  9002. extra: 1269/1133,
  9003. bottom: 51/1320
  9004. }
  9005. },
  9006. },
  9007. [
  9008. {
  9009. name: "Normal",
  9010. height: math.unit(15, "feet"),
  9011. default: true
  9012. },
  9013. {
  9014. name: "Minimacro",
  9015. height: math.unit(25, "feet")
  9016. },
  9017. {
  9018. name: "Macro",
  9019. height: math.unit(320, "feet")
  9020. },
  9021. {
  9022. name: "Megamacro",
  9023. height: math.unit(35000, "feet")
  9024. },
  9025. {
  9026. name: "Gigamacro",
  9027. height: math.unit(4000, "miles")
  9028. },
  9029. {
  9030. name: "Teramacro",
  9031. height: math.unit(15000, "miles")
  9032. },
  9033. ]
  9034. ))
  9035. characterMakers.push(() => makeCharacter(
  9036. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9037. {
  9038. front: {
  9039. height: math.unit(6, "feet"),
  9040. weight: math.unit(150, "lb"),
  9041. name: "Front",
  9042. image: {
  9043. source: "./media/characters/natalie-nightring/front.svg",
  9044. extra: 1,
  9045. bottom: 0.06
  9046. }
  9047. },
  9048. },
  9049. [
  9050. {
  9051. name: "Uh Oh",
  9052. height: math.unit(0.1, "mm")
  9053. },
  9054. {
  9055. name: "Small",
  9056. height: math.unit(3, "inches")
  9057. },
  9058. {
  9059. name: "Human Scale",
  9060. height: math.unit(6, "feet")
  9061. },
  9062. {
  9063. name: "Librarian",
  9064. height: math.unit(50, "feet"),
  9065. default: true
  9066. },
  9067. {
  9068. name: "Immense",
  9069. height: math.unit(200, "miles")
  9070. },
  9071. ]
  9072. ))
  9073. characterMakers.push(() => makeCharacter(
  9074. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9075. {
  9076. front: {
  9077. height: math.unit(6, "feet"),
  9078. weight: math.unit(180, "lbs"),
  9079. name: "Front",
  9080. image: {
  9081. source: "./media/characters/danni-rosie/front.svg",
  9082. extra: 1260 / 1128,
  9083. bottom: 0.022
  9084. }
  9085. },
  9086. },
  9087. [
  9088. {
  9089. name: "Micro",
  9090. height: math.unit(2, "inches"),
  9091. default: true
  9092. },
  9093. ]
  9094. ))
  9095. characterMakers.push(() => makeCharacter(
  9096. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9097. {
  9098. front: {
  9099. height: math.unit(5 + 9 / 12, "feet"),
  9100. weight: math.unit(220, "lb"),
  9101. name: "Front",
  9102. image: {
  9103. source: "./media/characters/samantha-kruse/front.svg",
  9104. extra: (985 / 935),
  9105. bottom: 0.03
  9106. }
  9107. },
  9108. frontUndressed: {
  9109. height: math.unit(5 + 9 / 12, "feet"),
  9110. weight: math.unit(220, "lb"),
  9111. name: "Front (Undressed)",
  9112. image: {
  9113. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9114. extra: (973 / 923),
  9115. bottom: 0.025
  9116. }
  9117. },
  9118. fat: {
  9119. height: math.unit(5 + 9 / 12, "feet"),
  9120. weight: math.unit(900, "lb"),
  9121. name: "Front (Fat)",
  9122. image: {
  9123. source: "./media/characters/samantha-kruse/fat.svg",
  9124. extra: 2688 / 2561
  9125. }
  9126. },
  9127. },
  9128. [
  9129. {
  9130. name: "Normal",
  9131. height: math.unit(5 + 9 / 12, "feet"),
  9132. default: true
  9133. }
  9134. ]
  9135. ))
  9136. characterMakers.push(() => makeCharacter(
  9137. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9138. {
  9139. back: {
  9140. height: math.unit(5 + 4 / 12, "feet"),
  9141. weight: math.unit(4963, "lb"),
  9142. name: "Back",
  9143. image: {
  9144. source: "./media/characters/amelia-rosie/back.svg",
  9145. extra: 1113 / 963,
  9146. bottom: 0.01
  9147. }
  9148. },
  9149. },
  9150. [
  9151. {
  9152. name: "Level 0",
  9153. height: math.unit(5 + 4 / 12, "feet")
  9154. },
  9155. {
  9156. name: "Level 1",
  9157. height: math.unit(164597, "feet"),
  9158. default: true
  9159. },
  9160. {
  9161. name: "Level 2",
  9162. height: math.unit(956243, "miles")
  9163. },
  9164. {
  9165. name: "Level 3",
  9166. height: math.unit(29421709423, "miles")
  9167. },
  9168. {
  9169. name: "Level 4",
  9170. height: math.unit(154, "lightyears")
  9171. },
  9172. {
  9173. name: "Level 5",
  9174. height: math.unit(4738272, "lightyears")
  9175. },
  9176. {
  9177. name: "Level 6",
  9178. height: math.unit(145787152896, "lightyears")
  9179. },
  9180. ]
  9181. ))
  9182. characterMakers.push(() => makeCharacter(
  9183. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9184. {
  9185. front: {
  9186. height: math.unit(5 + 11 / 12, "feet"),
  9187. weight: math.unit(65, "kg"),
  9188. name: "Front",
  9189. image: {
  9190. source: "./media/characters/rook-kitara/front.svg",
  9191. extra: 1347 / 1274,
  9192. bottom: 0.005
  9193. }
  9194. },
  9195. },
  9196. [
  9197. {
  9198. name: "Totally Unfair",
  9199. height: math.unit(1.8, "mm")
  9200. },
  9201. {
  9202. name: "Lap Rookie",
  9203. height: math.unit(1.4, "feet")
  9204. },
  9205. {
  9206. name: "Normal",
  9207. height: math.unit(5 + 11 / 12, "feet"),
  9208. default: true
  9209. },
  9210. {
  9211. name: "How Did This Happen",
  9212. height: math.unit(80, "miles")
  9213. }
  9214. ]
  9215. ))
  9216. characterMakers.push(() => makeCharacter(
  9217. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9218. {
  9219. front: {
  9220. height: math.unit(7, "feet"),
  9221. weight: math.unit(300, "lb"),
  9222. name: "Front",
  9223. image: {
  9224. source: "./media/characters/pisces/front.svg",
  9225. extra: 2255 / 2115,
  9226. bottom: 0.03
  9227. }
  9228. },
  9229. back: {
  9230. height: math.unit(7, "feet"),
  9231. weight: math.unit(300, "lb"),
  9232. name: "Back",
  9233. image: {
  9234. source: "./media/characters/pisces/back.svg",
  9235. extra: 2146 / 2055,
  9236. bottom: 0.04
  9237. }
  9238. },
  9239. },
  9240. [
  9241. {
  9242. name: "Normal",
  9243. height: math.unit(7, "feet"),
  9244. default: true
  9245. },
  9246. {
  9247. name: "Swimming Pool",
  9248. height: math.unit(12.2, "meters")
  9249. },
  9250. {
  9251. name: "Olympic Swimming Pool",
  9252. height: math.unit(56.3, "meters")
  9253. },
  9254. {
  9255. name: "Lake Superior",
  9256. height: math.unit(93900, "meters")
  9257. },
  9258. {
  9259. name: "Mediterranean Sea",
  9260. height: math.unit(644457, "meters")
  9261. },
  9262. {
  9263. name: "World's Oceans",
  9264. height: math.unit(4567491, "meters")
  9265. },
  9266. ]
  9267. ))
  9268. characterMakers.push(() => makeCharacter(
  9269. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9270. {
  9271. front: {
  9272. height: math.unit(2.3, "meters"),
  9273. weight: math.unit(120, "kg"),
  9274. name: "Front",
  9275. image: {
  9276. source: "./media/characters/zelas/front.svg"
  9277. }
  9278. },
  9279. side: {
  9280. height: math.unit(2.3, "meters"),
  9281. weight: math.unit(120, "kg"),
  9282. name: "Side",
  9283. image: {
  9284. source: "./media/characters/zelas/side.svg"
  9285. }
  9286. },
  9287. back: {
  9288. height: math.unit(2.3, "meters"),
  9289. weight: math.unit(120, "kg"),
  9290. name: "Back",
  9291. image: {
  9292. source: "./media/characters/zelas/back.svg"
  9293. }
  9294. },
  9295. foot: {
  9296. height: math.unit(1.116, "feet"),
  9297. name: "Foot",
  9298. image: {
  9299. source: "./media/characters/zelas/foot.svg"
  9300. }
  9301. },
  9302. },
  9303. [
  9304. {
  9305. name: "Normal",
  9306. height: math.unit(2.3, "meters")
  9307. },
  9308. {
  9309. name: "Macro",
  9310. height: math.unit(30, "meters"),
  9311. default: true
  9312. },
  9313. ]
  9314. ))
  9315. characterMakers.push(() => makeCharacter(
  9316. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9317. {
  9318. front: {
  9319. height: math.unit(1, "inch"),
  9320. weight: math.unit(0.21, "grams"),
  9321. name: "Front",
  9322. image: {
  9323. source: "./media/characters/talbot/front.svg",
  9324. extra: 594 / 544
  9325. }
  9326. },
  9327. },
  9328. [
  9329. {
  9330. name: "Micro",
  9331. height: math.unit(1, "inch"),
  9332. default: true
  9333. },
  9334. ]
  9335. ))
  9336. characterMakers.push(() => makeCharacter(
  9337. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9338. {
  9339. front: {
  9340. height: math.unit(3 + 3 / 12, "feet"),
  9341. weight: math.unit(51.8, "lb"),
  9342. name: "Front",
  9343. image: {
  9344. source: "./media/characters/fliss/front.svg",
  9345. extra: 840 / 640
  9346. }
  9347. },
  9348. },
  9349. [
  9350. {
  9351. name: "Teeny Tiny",
  9352. height: math.unit(1, "mm")
  9353. },
  9354. {
  9355. name: "Small",
  9356. height: math.unit(1, "inch"),
  9357. default: true
  9358. },
  9359. {
  9360. name: "Standard Sylveon",
  9361. height: math.unit(3 + 3 / 12, "feet")
  9362. },
  9363. {
  9364. name: "Large Nuisance",
  9365. height: math.unit(33, "feet")
  9366. },
  9367. {
  9368. name: "City Filler",
  9369. height: math.unit(3000, "feet")
  9370. },
  9371. {
  9372. name: "New Horizon",
  9373. height: math.unit(6000, "miles")
  9374. },
  9375. ]
  9376. ))
  9377. characterMakers.push(() => makeCharacter(
  9378. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9379. {
  9380. front: {
  9381. height: math.unit(5, "cm"),
  9382. weight: math.unit(1.94, "g"),
  9383. name: "Front",
  9384. image: {
  9385. source: "./media/characters/fleta/front.svg",
  9386. extra: 835 / 803
  9387. }
  9388. },
  9389. back: {
  9390. height: math.unit(5, "cm"),
  9391. weight: math.unit(1.94, "g"),
  9392. name: "Back",
  9393. image: {
  9394. source: "./media/characters/fleta/back.svg",
  9395. extra: 835 / 803
  9396. }
  9397. },
  9398. },
  9399. [
  9400. {
  9401. name: "Micro",
  9402. height: math.unit(5, "cm"),
  9403. default: true
  9404. },
  9405. ]
  9406. ))
  9407. characterMakers.push(() => makeCharacter(
  9408. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9409. {
  9410. front: {
  9411. height: math.unit(6, "feet"),
  9412. weight: math.unit(225, "lb"),
  9413. name: "Front",
  9414. image: {
  9415. source: "./media/characters/dominic/front.svg",
  9416. extra: 1770 / 1620,
  9417. bottom: 0.025
  9418. }
  9419. },
  9420. back: {
  9421. height: math.unit(6, "feet"),
  9422. weight: math.unit(225, "lb"),
  9423. name: "Back",
  9424. image: {
  9425. source: "./media/characters/dominic/back.svg",
  9426. extra: 1745 / 1620,
  9427. bottom: 0.065
  9428. }
  9429. },
  9430. },
  9431. [
  9432. {
  9433. name: "Nano",
  9434. height: math.unit(0.1, "mm")
  9435. },
  9436. {
  9437. name: "Micro-",
  9438. height: math.unit(1, "mm")
  9439. },
  9440. {
  9441. name: "Micro",
  9442. height: math.unit(4, "inches")
  9443. },
  9444. {
  9445. name: "Normal",
  9446. height: math.unit(6 + 4 / 12, "feet"),
  9447. default: true
  9448. },
  9449. {
  9450. name: "Macro",
  9451. height: math.unit(115, "feet")
  9452. },
  9453. {
  9454. name: "Macro+",
  9455. height: math.unit(955, "feet")
  9456. },
  9457. {
  9458. name: "Megamacro",
  9459. height: math.unit(8990, "feet")
  9460. },
  9461. {
  9462. name: "Gigmacro",
  9463. height: math.unit(9310, "miles")
  9464. },
  9465. {
  9466. name: "Teramacro",
  9467. height: math.unit(1567005010, "miles")
  9468. },
  9469. {
  9470. name: "Examacro",
  9471. height: math.unit(1425, "parsecs")
  9472. },
  9473. ]
  9474. ))
  9475. characterMakers.push(() => makeCharacter(
  9476. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9477. {
  9478. front: {
  9479. height: math.unit(400, "feet"),
  9480. weight: math.unit(44444444, "lb"),
  9481. name: "Front",
  9482. image: {
  9483. source: "./media/characters/major-colonel/front.svg"
  9484. }
  9485. },
  9486. back: {
  9487. height: math.unit(400, "feet"),
  9488. weight: math.unit(44444444, "lb"),
  9489. name: "Back",
  9490. image: {
  9491. source: "./media/characters/major-colonel/back.svg"
  9492. }
  9493. },
  9494. },
  9495. [
  9496. {
  9497. name: "Macro",
  9498. height: math.unit(400, "feet"),
  9499. default: true
  9500. },
  9501. ]
  9502. ))
  9503. characterMakers.push(() => makeCharacter(
  9504. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9505. {
  9506. catFront: {
  9507. height: math.unit(6, "feet"),
  9508. weight: math.unit(120, "lb"),
  9509. name: "Front (Cat Side)",
  9510. image: {
  9511. source: "./media/characters/axel-lycan/cat-front.svg",
  9512. extra: 430 / 402,
  9513. bottom: 43 / 472.35
  9514. }
  9515. },
  9516. catBack: {
  9517. height: math.unit(6, "feet"),
  9518. weight: math.unit(120, "lb"),
  9519. name: "Back (Cat Side)",
  9520. image: {
  9521. source: "./media/characters/axel-lycan/cat-back.svg",
  9522. extra: 447 / 419,
  9523. bottom: 23.3 / 469
  9524. }
  9525. },
  9526. wolfFront: {
  9527. height: math.unit(6, "feet"),
  9528. weight: math.unit(120, "lb"),
  9529. name: "Front (Wolf Side)",
  9530. image: {
  9531. source: "./media/characters/axel-lycan/wolf-front.svg",
  9532. extra: 485 / 456,
  9533. bottom: 19 / 504
  9534. }
  9535. },
  9536. wolfBack: {
  9537. height: math.unit(6, "feet"),
  9538. weight: math.unit(120, "lb"),
  9539. name: "Back (Wolf Side)",
  9540. image: {
  9541. source: "./media/characters/axel-lycan/wolf-back.svg",
  9542. extra: 475 / 438,
  9543. bottom: 39.2 / 514
  9544. }
  9545. },
  9546. },
  9547. [
  9548. {
  9549. name: "Macro",
  9550. height: math.unit(1, "km"),
  9551. default: true
  9552. },
  9553. ]
  9554. ))
  9555. characterMakers.push(() => makeCharacter(
  9556. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9557. {
  9558. front: {
  9559. height: math.unit(5 + 9 / 12, "feet"),
  9560. weight: math.unit(175, "lb"),
  9561. name: "Front",
  9562. image: {
  9563. source: "./media/characters/vanrel-hyena/front.svg",
  9564. extra: 1086 / 1010,
  9565. bottom: 0.04
  9566. }
  9567. },
  9568. },
  9569. [
  9570. {
  9571. name: "Normal",
  9572. height: math.unit(5 + 9 / 12, "feet"),
  9573. default: true
  9574. },
  9575. ]
  9576. ))
  9577. characterMakers.push(() => makeCharacter(
  9578. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9579. {
  9580. front: {
  9581. height: math.unit(6, "feet"),
  9582. weight: math.unit(103, "lb"),
  9583. name: "Front",
  9584. image: {
  9585. source: "./media/characters/abbott-absol/front.svg",
  9586. extra: 2010 / 1842
  9587. }
  9588. },
  9589. },
  9590. [
  9591. {
  9592. name: "Megamicro",
  9593. height: math.unit(0.1, "mm")
  9594. },
  9595. {
  9596. name: "Micro",
  9597. height: math.unit(1, "inch")
  9598. },
  9599. {
  9600. name: "Normal",
  9601. height: math.unit(6, "feet"),
  9602. default: true
  9603. },
  9604. ]
  9605. ))
  9606. characterMakers.push(() => makeCharacter(
  9607. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9608. {
  9609. front: {
  9610. height: math.unit(6, "feet"),
  9611. weight: math.unit(264, "lb"),
  9612. name: "Front",
  9613. image: {
  9614. source: "./media/characters/hector/front.svg",
  9615. extra: 2280 / 2130,
  9616. bottom: 0.07
  9617. }
  9618. },
  9619. },
  9620. [
  9621. {
  9622. name: "Normal",
  9623. height: math.unit(12.25, "foot"),
  9624. default: true
  9625. },
  9626. {
  9627. name: "Macro",
  9628. height: math.unit(160, "feet")
  9629. },
  9630. ]
  9631. ))
  9632. characterMakers.push(() => makeCharacter(
  9633. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9634. {
  9635. front: {
  9636. height: math.unit(6, "feet"),
  9637. weight: math.unit(150, "lb"),
  9638. name: "Front",
  9639. image: {
  9640. source: "./media/characters/sal/front.svg",
  9641. extra: 1846 / 1699,
  9642. bottom: 0.04
  9643. }
  9644. },
  9645. },
  9646. [
  9647. {
  9648. name: "Megamacro",
  9649. height: math.unit(10, "miles"),
  9650. default: true
  9651. },
  9652. ]
  9653. ))
  9654. characterMakers.push(() => makeCharacter(
  9655. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9656. {
  9657. front: {
  9658. height: math.unit(3, "meters"),
  9659. weight: math.unit(450, "kg"),
  9660. name: "front",
  9661. image: {
  9662. source: "./media/characters/ranger/front.svg",
  9663. extra: 2401 / 2243,
  9664. bottom: 0.05
  9665. }
  9666. },
  9667. },
  9668. [
  9669. {
  9670. name: "Normal",
  9671. height: math.unit(3, "meters"),
  9672. default: true
  9673. },
  9674. ]
  9675. ))
  9676. characterMakers.push(() => makeCharacter(
  9677. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9678. {
  9679. front: {
  9680. height: math.unit(14, "feet"),
  9681. weight: math.unit(800, "kg"),
  9682. name: "Front",
  9683. image: {
  9684. source: "./media/characters/theresa/front.svg",
  9685. extra: 3575 / 3346,
  9686. bottom: 0.03
  9687. }
  9688. },
  9689. },
  9690. [
  9691. {
  9692. name: "Normal",
  9693. height: math.unit(14, "feet"),
  9694. default: true
  9695. },
  9696. ]
  9697. ))
  9698. characterMakers.push(() => makeCharacter(
  9699. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9700. {
  9701. front: {
  9702. height: math.unit(6, "feet"),
  9703. weight: math.unit(3, "kg"),
  9704. name: "Front",
  9705. image: {
  9706. source: "./media/characters/ine/front.svg",
  9707. extra: 678 / 539,
  9708. bottom: 0.023
  9709. }
  9710. },
  9711. },
  9712. [
  9713. {
  9714. name: "Normal",
  9715. height: math.unit(2.265, "feet"),
  9716. default: true
  9717. },
  9718. ]
  9719. ))
  9720. characterMakers.push(() => makeCharacter(
  9721. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9722. {
  9723. front: {
  9724. height: math.unit(5, "feet"),
  9725. weight: math.unit(30, "kg"),
  9726. name: "Front",
  9727. image: {
  9728. source: "./media/characters/vial/front.svg",
  9729. extra: 1365 / 1277,
  9730. bottom: 0.04
  9731. }
  9732. },
  9733. },
  9734. [
  9735. {
  9736. name: "Normal",
  9737. height: math.unit(5, "feet"),
  9738. default: true
  9739. },
  9740. ]
  9741. ))
  9742. characterMakers.push(() => makeCharacter(
  9743. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9744. {
  9745. side: {
  9746. height: math.unit(3.4, "meters"),
  9747. weight: math.unit(1000, "lb"),
  9748. name: "Side",
  9749. image: {
  9750. source: "./media/characters/rovoska/side.svg",
  9751. extra: 4403 / 1515
  9752. }
  9753. },
  9754. },
  9755. [
  9756. {
  9757. name: "Normal",
  9758. height: math.unit(3.4, "meters"),
  9759. default: true
  9760. },
  9761. ]
  9762. ))
  9763. characterMakers.push(() => makeCharacter(
  9764. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9765. {
  9766. front: {
  9767. height: math.unit(8, "feet"),
  9768. weight: math.unit(315, "lb"),
  9769. name: "Front",
  9770. image: {
  9771. source: "./media/characters/gunner-rotthbauer/front.svg"
  9772. }
  9773. },
  9774. back: {
  9775. height: math.unit(8, "feet"),
  9776. weight: math.unit(315, "lb"),
  9777. name: "Back",
  9778. image: {
  9779. source: "./media/characters/gunner-rotthbauer/back.svg"
  9780. }
  9781. },
  9782. },
  9783. [
  9784. {
  9785. name: "Micro",
  9786. height: math.unit(3.5, "inches")
  9787. },
  9788. {
  9789. name: "Normal",
  9790. height: math.unit(8, "feet"),
  9791. default: true
  9792. },
  9793. {
  9794. name: "Macro",
  9795. height: math.unit(250, "feet")
  9796. },
  9797. {
  9798. name: "Megamacro",
  9799. height: math.unit(1, "AU")
  9800. },
  9801. ]
  9802. ))
  9803. characterMakers.push(() => makeCharacter(
  9804. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9805. {
  9806. front: {
  9807. height: math.unit(5 + 5 / 12, "feet"),
  9808. weight: math.unit(140, "lb"),
  9809. name: "Front",
  9810. image: {
  9811. source: "./media/characters/allatia/front.svg",
  9812. extra: 1227 / 1180,
  9813. bottom: 0.027
  9814. }
  9815. },
  9816. },
  9817. [
  9818. {
  9819. name: "Normal",
  9820. height: math.unit(5 + 5 / 12, "feet")
  9821. },
  9822. {
  9823. name: "Macro",
  9824. height: math.unit(250, "feet"),
  9825. default: true
  9826. },
  9827. {
  9828. name: "Megamacro",
  9829. height: math.unit(8, "miles")
  9830. }
  9831. ]
  9832. ))
  9833. characterMakers.push(() => makeCharacter(
  9834. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9835. {
  9836. front: {
  9837. height: math.unit(6, "feet"),
  9838. weight: math.unit(120, "lb"),
  9839. name: "Front",
  9840. image: {
  9841. source: "./media/characters/tene/front.svg",
  9842. extra: 1728 / 1578,
  9843. bottom: 0.022
  9844. }
  9845. },
  9846. stomping: {
  9847. height: math.unit(2.025, "meters"),
  9848. weight: math.unit(120, "lb"),
  9849. name: "Stomping",
  9850. image: {
  9851. source: "./media/characters/tene/stomping.svg",
  9852. extra: 938 / 873,
  9853. bottom: 0.01
  9854. }
  9855. },
  9856. sitting: {
  9857. height: math.unit(1, "meter"),
  9858. weight: math.unit(120, "lb"),
  9859. name: "Sitting",
  9860. image: {
  9861. source: "./media/characters/tene/sitting.svg",
  9862. extra: 437 / 415,
  9863. bottom: 0.1
  9864. }
  9865. },
  9866. feral: {
  9867. height: math.unit(3.9, "feet"),
  9868. weight: math.unit(250, "lb"),
  9869. name: "Feral",
  9870. image: {
  9871. source: "./media/characters/tene/feral.svg",
  9872. extra: 717 / 458,
  9873. bottom: 0.179
  9874. }
  9875. },
  9876. },
  9877. [
  9878. {
  9879. name: "Normal",
  9880. height: math.unit(6, "feet")
  9881. },
  9882. {
  9883. name: "Macro",
  9884. height: math.unit(300, "feet"),
  9885. default: true
  9886. },
  9887. {
  9888. name: "Megamacro",
  9889. height: math.unit(5, "miles")
  9890. },
  9891. ]
  9892. ))
  9893. characterMakers.push(() => makeCharacter(
  9894. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9895. {
  9896. side: {
  9897. height: math.unit(6, "feet"),
  9898. name: "Side",
  9899. image: {
  9900. source: "./media/characters/evander/side.svg",
  9901. extra: 877 / 477
  9902. }
  9903. },
  9904. },
  9905. [
  9906. {
  9907. name: "Normal",
  9908. height: math.unit(0.83, "meters"),
  9909. default: true
  9910. },
  9911. ]
  9912. ))
  9913. characterMakers.push(() => makeCharacter(
  9914. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9915. {
  9916. front: {
  9917. height: math.unit(12, "feet"),
  9918. weight: math.unit(1000, "lb"),
  9919. name: "Front",
  9920. image: {
  9921. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9922. extra: 1762 / 1611
  9923. }
  9924. },
  9925. back: {
  9926. height: math.unit(12, "feet"),
  9927. weight: math.unit(1000, "lb"),
  9928. name: "Back",
  9929. image: {
  9930. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9931. extra: 1762 / 1611
  9932. }
  9933. },
  9934. },
  9935. [
  9936. {
  9937. name: "Normal",
  9938. height: math.unit(12, "feet"),
  9939. default: true
  9940. },
  9941. {
  9942. name: "Kaiju",
  9943. height: math.unit(150, "feet")
  9944. },
  9945. ]
  9946. ))
  9947. characterMakers.push(() => makeCharacter(
  9948. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9949. {
  9950. front: {
  9951. height: math.unit(6, "feet"),
  9952. weight: math.unit(150, "lb"),
  9953. name: "Front",
  9954. image: {
  9955. source: "./media/characters/zero-alurus/front.svg"
  9956. }
  9957. },
  9958. back: {
  9959. height: math.unit(6, "feet"),
  9960. weight: math.unit(150, "lb"),
  9961. name: "Back",
  9962. image: {
  9963. source: "./media/characters/zero-alurus/back.svg"
  9964. }
  9965. },
  9966. },
  9967. [
  9968. {
  9969. name: "Normal",
  9970. height: math.unit(5 + 10 / 12, "feet")
  9971. },
  9972. {
  9973. name: "Macro",
  9974. height: math.unit(60, "feet"),
  9975. default: true
  9976. },
  9977. {
  9978. name: "Macro+",
  9979. height: math.unit(450, "feet")
  9980. },
  9981. ]
  9982. ))
  9983. characterMakers.push(() => makeCharacter(
  9984. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9985. {
  9986. front: {
  9987. height: math.unit(6, "feet"),
  9988. weight: math.unit(200, "lb"),
  9989. name: "Front",
  9990. image: {
  9991. source: "./media/characters/mega-shi/front.svg",
  9992. extra: 1279 / 1250,
  9993. bottom: 0.02
  9994. }
  9995. },
  9996. back: {
  9997. height: math.unit(6, "feet"),
  9998. weight: math.unit(200, "lb"),
  9999. name: "Back",
  10000. image: {
  10001. source: "./media/characters/mega-shi/back.svg",
  10002. extra: 1279 / 1250,
  10003. bottom: 0.02
  10004. }
  10005. },
  10006. },
  10007. [
  10008. {
  10009. name: "Micro",
  10010. height: math.unit(16 + 6 / 12, "feet")
  10011. },
  10012. {
  10013. name: "Third Dimension",
  10014. height: math.unit(40, "meters")
  10015. },
  10016. {
  10017. name: "Normal",
  10018. height: math.unit(660, "feet"),
  10019. default: true
  10020. },
  10021. {
  10022. name: "Megamacro",
  10023. height: math.unit(10, "miles")
  10024. },
  10025. {
  10026. name: "Planetary Launch",
  10027. height: math.unit(500, "miles")
  10028. },
  10029. {
  10030. name: "Interstellar",
  10031. height: math.unit(1e9, "miles")
  10032. },
  10033. {
  10034. name: "Leaving the Universe",
  10035. height: math.unit(1, "gigaparsec")
  10036. },
  10037. {
  10038. name: "Travelling Universes",
  10039. height: math.unit(30e15, "parsecs")
  10040. },
  10041. ]
  10042. ))
  10043. characterMakers.push(() => makeCharacter(
  10044. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10045. {
  10046. front: {
  10047. height: math.unit(6, "feet"),
  10048. weight: math.unit(150, "lb"),
  10049. name: "Front",
  10050. image: {
  10051. source: "./media/characters/odyssey/front.svg",
  10052. extra: 1782 / 1582,
  10053. bottom: 0.01
  10054. }
  10055. },
  10056. side: {
  10057. height: math.unit(5.7, "feet"),
  10058. weight: math.unit(140, "lb"),
  10059. name: "Side",
  10060. image: {
  10061. source: "./media/characters/odyssey/side.svg",
  10062. extra: 6462 / 5700
  10063. }
  10064. },
  10065. },
  10066. [
  10067. {
  10068. name: "Normal",
  10069. height: math.unit(5 + 4 / 12, "feet")
  10070. },
  10071. {
  10072. name: "Macro",
  10073. height: math.unit(1, "km")
  10074. },
  10075. {
  10076. name: "Megamacro",
  10077. height: math.unit(3000, "km")
  10078. },
  10079. {
  10080. name: "Gigamacro",
  10081. height: math.unit(1, "AU"),
  10082. default: true
  10083. },
  10084. {
  10085. name: "Omniversal",
  10086. height: math.unit(100e14, "lightyears")
  10087. },
  10088. ]
  10089. ))
  10090. characterMakers.push(() => makeCharacter(
  10091. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10092. {
  10093. front: {
  10094. height: math.unit(6, "feet"),
  10095. weight: math.unit(300, "lb"),
  10096. name: "Front",
  10097. image: {
  10098. source: "./media/characters/mekuto/front.svg",
  10099. extra: 921 / 832,
  10100. bottom: 0.03
  10101. }
  10102. },
  10103. hand: {
  10104. height: math.unit(6 / 10.24, "feet"),
  10105. name: "Hand",
  10106. image: {
  10107. source: "./media/characters/mekuto/hand.svg"
  10108. }
  10109. },
  10110. foot: {
  10111. height: math.unit(6 / 5.05, "feet"),
  10112. name: "Foot",
  10113. image: {
  10114. source: "./media/characters/mekuto/foot.svg"
  10115. }
  10116. },
  10117. },
  10118. [
  10119. {
  10120. name: "Minimicro",
  10121. height: math.unit(0.2, "inches")
  10122. },
  10123. {
  10124. name: "Micro",
  10125. height: math.unit(1.5, "inches")
  10126. },
  10127. {
  10128. name: "Normal",
  10129. height: math.unit(5 + 11 / 12, "feet"),
  10130. default: true
  10131. },
  10132. {
  10133. name: "Minimacro",
  10134. height: math.unit(17 + 9 / 12, "feet")
  10135. },
  10136. {
  10137. name: "Macro",
  10138. height: math.unit(177.5, "feet")
  10139. },
  10140. {
  10141. name: "Megamacro",
  10142. height: math.unit(152, "miles")
  10143. },
  10144. ]
  10145. ))
  10146. characterMakers.push(() => makeCharacter(
  10147. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10148. {
  10149. front: {
  10150. height: math.unit(6.5, "inches"),
  10151. weight: math.unit(13, "oz"),
  10152. name: "Front",
  10153. image: {
  10154. source: "./media/characters/dafydd-tomos/front.svg",
  10155. extra: 2990 / 2603,
  10156. bottom: 0.03
  10157. }
  10158. },
  10159. },
  10160. [
  10161. {
  10162. name: "Micro",
  10163. height: math.unit(6.5, "inches"),
  10164. default: true
  10165. },
  10166. ]
  10167. ))
  10168. characterMakers.push(() => makeCharacter(
  10169. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10170. {
  10171. front: {
  10172. height: math.unit(6, "feet"),
  10173. weight: math.unit(150, "lb"),
  10174. name: "Front",
  10175. image: {
  10176. source: "./media/characters/splinter/front.svg",
  10177. extra: 2990 / 2882,
  10178. bottom: 0.04
  10179. }
  10180. },
  10181. back: {
  10182. height: math.unit(6, "feet"),
  10183. weight: math.unit(150, "lb"),
  10184. name: "Back",
  10185. image: {
  10186. source: "./media/characters/splinter/back.svg",
  10187. extra: 2990 / 2882,
  10188. bottom: 0.04
  10189. }
  10190. },
  10191. },
  10192. [
  10193. {
  10194. name: "Normal",
  10195. height: math.unit(6, "feet")
  10196. },
  10197. {
  10198. name: "Macro",
  10199. height: math.unit(230, "meters"),
  10200. default: true
  10201. },
  10202. ]
  10203. ))
  10204. characterMakers.push(() => makeCharacter(
  10205. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10206. {
  10207. front: {
  10208. height: math.unit(4 + 10 / 12, "feet"),
  10209. weight: math.unit(480, "lb"),
  10210. name: "Front",
  10211. image: {
  10212. source: "./media/characters/snow-gabumon/front.svg",
  10213. extra: 1140 / 963,
  10214. bottom: 0.058
  10215. }
  10216. },
  10217. back: {
  10218. height: math.unit(4 + 10 / 12, "feet"),
  10219. weight: math.unit(480, "lb"),
  10220. name: "Back",
  10221. image: {
  10222. source: "./media/characters/snow-gabumon/back.svg",
  10223. extra: 1115 / 962,
  10224. bottom: 0.041
  10225. }
  10226. },
  10227. frontUndresed: {
  10228. height: math.unit(4 + 10 / 12, "feet"),
  10229. weight: math.unit(480, "lb"),
  10230. name: "Front (Undressed)",
  10231. image: {
  10232. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10233. extra: 1061 / 960,
  10234. bottom: 0.045
  10235. }
  10236. },
  10237. },
  10238. [
  10239. {
  10240. name: "Micro",
  10241. height: math.unit(1, "inch")
  10242. },
  10243. {
  10244. name: "Normal",
  10245. height: math.unit(4 + 10 / 12, "feet"),
  10246. default: true
  10247. },
  10248. {
  10249. name: "Macro",
  10250. height: math.unit(200, "feet")
  10251. },
  10252. {
  10253. name: "Megamacro",
  10254. height: math.unit(120, "miles")
  10255. },
  10256. {
  10257. name: "Gigamacro",
  10258. height: math.unit(9800, "miles")
  10259. },
  10260. ]
  10261. ))
  10262. characterMakers.push(() => makeCharacter(
  10263. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10264. {
  10265. front: {
  10266. height: math.unit(1.7, "meters"),
  10267. weight: math.unit(140, "lb"),
  10268. name: "Front",
  10269. image: {
  10270. source: "./media/characters/moody/front.svg",
  10271. extra: 3226 / 3007,
  10272. bottom: 0.087
  10273. }
  10274. },
  10275. },
  10276. [
  10277. {
  10278. name: "Micro",
  10279. height: math.unit(1, "mm")
  10280. },
  10281. {
  10282. name: "Normal",
  10283. height: math.unit(1.7, "meters"),
  10284. default: true
  10285. },
  10286. {
  10287. name: "Macro",
  10288. height: math.unit(80, "meters")
  10289. },
  10290. {
  10291. name: "Macro+",
  10292. height: math.unit(500, "meters")
  10293. },
  10294. ]
  10295. ))
  10296. characterMakers.push(() => makeCharacter(
  10297. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10298. {
  10299. front: {
  10300. height: math.unit(6, "feet"),
  10301. weight: math.unit(150, "lb"),
  10302. name: "Front",
  10303. image: {
  10304. source: "./media/characters/zyas/front.svg",
  10305. extra: 1180 / 1120,
  10306. bottom: 0.045
  10307. }
  10308. },
  10309. },
  10310. [
  10311. {
  10312. name: "Normal",
  10313. height: math.unit(10, "feet"),
  10314. default: true
  10315. },
  10316. {
  10317. name: "Macro",
  10318. height: math.unit(500, "feet")
  10319. },
  10320. {
  10321. name: "Megamacro",
  10322. height: math.unit(5, "miles")
  10323. },
  10324. {
  10325. name: "Teramacro",
  10326. height: math.unit(150000, "miles")
  10327. },
  10328. ]
  10329. ))
  10330. characterMakers.push(() => makeCharacter(
  10331. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10332. {
  10333. front: {
  10334. height: math.unit(6, "feet"),
  10335. weight: math.unit(150, "lb"),
  10336. name: "Front",
  10337. image: {
  10338. source: "./media/characters/cuon/front.svg",
  10339. extra: 1390 / 1320,
  10340. bottom: 0.008
  10341. }
  10342. },
  10343. },
  10344. [
  10345. {
  10346. name: "Micro",
  10347. height: math.unit(3, "inches")
  10348. },
  10349. {
  10350. name: "Normal",
  10351. height: math.unit(18 + 9 / 12, "feet"),
  10352. default: true
  10353. },
  10354. {
  10355. name: "Macro",
  10356. height: math.unit(360, "feet")
  10357. },
  10358. {
  10359. name: "Megamacro",
  10360. height: math.unit(360, "miles")
  10361. },
  10362. ]
  10363. ))
  10364. characterMakers.push(() => makeCharacter(
  10365. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10366. {
  10367. front: {
  10368. height: math.unit(2.4, "meters"),
  10369. weight: math.unit(70, "kg"),
  10370. name: "Front",
  10371. image: {
  10372. source: "./media/characters/nyanuxk/front.svg",
  10373. extra: 1172 / 1084,
  10374. bottom: 0.065
  10375. }
  10376. },
  10377. side: {
  10378. height: math.unit(2.4, "meters"),
  10379. weight: math.unit(70, "kg"),
  10380. name: "Side",
  10381. image: {
  10382. source: "./media/characters/nyanuxk/side.svg",
  10383. extra: 1190 / 1132,
  10384. bottom: 0.007
  10385. }
  10386. },
  10387. back: {
  10388. height: math.unit(2.4, "meters"),
  10389. weight: math.unit(70, "kg"),
  10390. name: "Back",
  10391. image: {
  10392. source: "./media/characters/nyanuxk/back.svg",
  10393. extra: 1200 / 1141,
  10394. bottom: 0.015
  10395. }
  10396. },
  10397. foot: {
  10398. height: math.unit(0.52, "meters"),
  10399. name: "Foot",
  10400. image: {
  10401. source: "./media/characters/nyanuxk/foot.svg"
  10402. }
  10403. },
  10404. },
  10405. [
  10406. {
  10407. name: "Micro",
  10408. height: math.unit(2, "cm")
  10409. },
  10410. {
  10411. name: "Normal",
  10412. height: math.unit(2.4, "meters"),
  10413. default: true
  10414. },
  10415. {
  10416. name: "Smaller Macro",
  10417. height: math.unit(120, "meters")
  10418. },
  10419. {
  10420. name: "Bigger Macro",
  10421. height: math.unit(1.2, "km")
  10422. },
  10423. {
  10424. name: "Megamacro",
  10425. height: math.unit(15, "kilometers")
  10426. },
  10427. {
  10428. name: "Gigamacro",
  10429. height: math.unit(2000, "km")
  10430. },
  10431. {
  10432. name: "Teramacro",
  10433. height: math.unit(500000, "km")
  10434. },
  10435. ]
  10436. ))
  10437. characterMakers.push(() => makeCharacter(
  10438. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10439. {
  10440. side: {
  10441. height: math.unit(6, "feet"),
  10442. name: "Side",
  10443. image: {
  10444. source: "./media/characters/ailbhe/side.svg",
  10445. extra: 757 / 464,
  10446. bottom: 0.041
  10447. }
  10448. },
  10449. },
  10450. [
  10451. {
  10452. name: "Normal",
  10453. height: math.unit(1.07, "meters"),
  10454. default: true
  10455. },
  10456. ]
  10457. ))
  10458. characterMakers.push(() => makeCharacter(
  10459. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10460. {
  10461. front: {
  10462. height: math.unit(6, "feet"),
  10463. weight: math.unit(120, "kg"),
  10464. name: "Front",
  10465. image: {
  10466. source: "./media/characters/zevulfius/front.svg",
  10467. extra: 965 / 903
  10468. }
  10469. },
  10470. side: {
  10471. height: math.unit(6, "feet"),
  10472. weight: math.unit(120, "kg"),
  10473. name: "Side",
  10474. image: {
  10475. source: "./media/characters/zevulfius/side.svg",
  10476. extra: 939 / 900
  10477. }
  10478. },
  10479. back: {
  10480. height: math.unit(6, "feet"),
  10481. weight: math.unit(120, "kg"),
  10482. name: "Back",
  10483. image: {
  10484. source: "./media/characters/zevulfius/back.svg",
  10485. extra: 918 / 854,
  10486. bottom: 0.005
  10487. }
  10488. },
  10489. foot: {
  10490. height: math.unit(6 / 3.72, "feet"),
  10491. name: "Foot",
  10492. image: {
  10493. source: "./media/characters/zevulfius/foot.svg"
  10494. }
  10495. },
  10496. },
  10497. [
  10498. {
  10499. name: "Macro",
  10500. height: math.unit(750, "meters")
  10501. },
  10502. {
  10503. name: "Megamacro",
  10504. height: math.unit(20, "km"),
  10505. default: true
  10506. },
  10507. {
  10508. name: "Gigamacro",
  10509. height: math.unit(2000, "km")
  10510. },
  10511. {
  10512. name: "Teramacro",
  10513. height: math.unit(250000, "km")
  10514. },
  10515. ]
  10516. ))
  10517. characterMakers.push(() => makeCharacter(
  10518. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10519. {
  10520. front: {
  10521. height: math.unit(100, "feet"),
  10522. weight: math.unit(350, "kg"),
  10523. name: "Front",
  10524. image: {
  10525. source: "./media/characters/rikes/front.svg",
  10526. extra: 1565 / 1483,
  10527. bottom: 0.017
  10528. }
  10529. },
  10530. },
  10531. [
  10532. {
  10533. name: "Macro",
  10534. height: math.unit(100, "feet"),
  10535. default: true
  10536. },
  10537. ]
  10538. ))
  10539. characterMakers.push(() => makeCharacter(
  10540. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10541. {
  10542. front: {
  10543. height: math.unit(8, "feet"),
  10544. weight: math.unit(356, "lb"),
  10545. name: "Front",
  10546. image: {
  10547. source: "./media/characters/adam-silver-mane/front.svg",
  10548. extra: 1036/937,
  10549. bottom: 63/1099
  10550. }
  10551. },
  10552. side: {
  10553. height: math.unit(8, "feet"),
  10554. weight: math.unit(356, "lb"),
  10555. name: "Side",
  10556. image: {
  10557. source: "./media/characters/adam-silver-mane/side.svg",
  10558. extra: 997/901,
  10559. bottom: 59/1056
  10560. }
  10561. },
  10562. frontNsfw: {
  10563. height: math.unit(8, "feet"),
  10564. weight: math.unit(356, "lb"),
  10565. name: "Front (NSFW)",
  10566. image: {
  10567. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10568. extra: 1036/937,
  10569. bottom: 63/1099
  10570. }
  10571. },
  10572. sideNsfw: {
  10573. height: math.unit(8, "feet"),
  10574. weight: math.unit(356, "lb"),
  10575. name: "Side (NSFW)",
  10576. image: {
  10577. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10578. extra: 997/901,
  10579. bottom: 59/1056
  10580. }
  10581. },
  10582. dick: {
  10583. height: math.unit(2.1, "feet"),
  10584. name: "Dick",
  10585. image: {
  10586. source: "./media/characters/adam-silver-mane/dick.svg"
  10587. }
  10588. },
  10589. taur: {
  10590. height: math.unit(16, "feet"),
  10591. weight: math.unit(1500, "kg"),
  10592. name: "Taur",
  10593. image: {
  10594. source: "./media/characters/adam-silver-mane/taur.svg",
  10595. extra: 1713 / 1571,
  10596. bottom: 0.01
  10597. }
  10598. },
  10599. },
  10600. [
  10601. {
  10602. name: "Normal",
  10603. height: math.unit(8, "feet")
  10604. },
  10605. {
  10606. name: "Minimacro",
  10607. height: math.unit(80, "feet")
  10608. },
  10609. {
  10610. name: "MDA",
  10611. height: math.unit(80, "meters")
  10612. },
  10613. {
  10614. name: "Macro",
  10615. height: math.unit(800, "feet"),
  10616. default: true
  10617. },
  10618. {
  10619. name: "Megamacro",
  10620. height: math.unit(8000, "feet")
  10621. },
  10622. {
  10623. name: "Gigamacro",
  10624. height: math.unit(800, "miles")
  10625. },
  10626. {
  10627. name: "Teramacro",
  10628. height: math.unit(80000, "miles")
  10629. },
  10630. {
  10631. name: "Celestial",
  10632. height: math.unit(8e6, "miles")
  10633. },
  10634. {
  10635. name: "Star Dragon",
  10636. height: math.unit(800000, "parsecs")
  10637. },
  10638. {
  10639. name: "Godly",
  10640. height: math.unit(800, "teraparsecs")
  10641. },
  10642. ]
  10643. ))
  10644. characterMakers.push(() => makeCharacter(
  10645. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10646. {
  10647. front: {
  10648. height: math.unit(6, "feet"),
  10649. weight: math.unit(150, "lb"),
  10650. name: "Front",
  10651. image: {
  10652. source: "./media/characters/ky'owin/front.svg",
  10653. extra: 3888 / 3068,
  10654. bottom: 0.015
  10655. }
  10656. },
  10657. },
  10658. [
  10659. {
  10660. name: "Normal",
  10661. height: math.unit(6 + 8 / 12, "feet")
  10662. },
  10663. {
  10664. name: "Large",
  10665. height: math.unit(68, "feet")
  10666. },
  10667. {
  10668. name: "Macro",
  10669. height: math.unit(132, "feet")
  10670. },
  10671. {
  10672. name: "Macro+",
  10673. height: math.unit(340, "feet")
  10674. },
  10675. {
  10676. name: "Macro++",
  10677. height: math.unit(680, "feet"),
  10678. default: true
  10679. },
  10680. {
  10681. name: "Megamacro",
  10682. height: math.unit(1, "mile")
  10683. },
  10684. {
  10685. name: "Megamacro+",
  10686. height: math.unit(10, "miles")
  10687. },
  10688. ]
  10689. ))
  10690. characterMakers.push(() => makeCharacter(
  10691. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10692. {
  10693. front: {
  10694. height: math.unit(4, "feet"),
  10695. weight: math.unit(50, "lb"),
  10696. name: "Front",
  10697. image: {
  10698. source: "./media/characters/mal/front.svg",
  10699. extra: 785 / 724,
  10700. bottom: 0.07
  10701. }
  10702. },
  10703. },
  10704. [
  10705. {
  10706. name: "Micro",
  10707. height: math.unit(4, "inches")
  10708. },
  10709. {
  10710. name: "Normal",
  10711. height: math.unit(4, "feet"),
  10712. default: true
  10713. },
  10714. {
  10715. name: "Macro",
  10716. height: math.unit(200, "feet")
  10717. },
  10718. ]
  10719. ))
  10720. characterMakers.push(() => makeCharacter(
  10721. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10722. {
  10723. front: {
  10724. height: math.unit(6, "feet"),
  10725. weight: math.unit(150, "lb"),
  10726. name: "Front",
  10727. image: {
  10728. source: "./media/characters/jordan-deware/front.svg",
  10729. extra: 1191 / 1012
  10730. }
  10731. },
  10732. },
  10733. [
  10734. {
  10735. name: "Nano",
  10736. height: math.unit(0.01, "mm")
  10737. },
  10738. {
  10739. name: "Minimicro",
  10740. height: math.unit(1, "mm")
  10741. },
  10742. {
  10743. name: "Micro",
  10744. height: math.unit(0.5, "inches")
  10745. },
  10746. {
  10747. name: "Normal",
  10748. height: math.unit(4, "feet"),
  10749. default: true
  10750. },
  10751. {
  10752. name: "Minimacro",
  10753. height: math.unit(40, "meters")
  10754. },
  10755. {
  10756. name: "Small Macro",
  10757. height: math.unit(400, "meters")
  10758. },
  10759. {
  10760. name: "Macro",
  10761. height: math.unit(4, "miles")
  10762. },
  10763. {
  10764. name: "Megamacro",
  10765. height: math.unit(40, "miles")
  10766. },
  10767. {
  10768. name: "Megamacro+",
  10769. height: math.unit(400, "miles")
  10770. },
  10771. {
  10772. name: "Gigamacro",
  10773. height: math.unit(400000, "miles")
  10774. },
  10775. ]
  10776. ))
  10777. characterMakers.push(() => makeCharacter(
  10778. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10779. {
  10780. side: {
  10781. height: math.unit(6, "feet"),
  10782. weight: math.unit(150, "lb"),
  10783. name: "Side",
  10784. image: {
  10785. source: "./media/characters/kimiko/side.svg",
  10786. extra: 600 / 358
  10787. }
  10788. },
  10789. },
  10790. [
  10791. {
  10792. name: "Normal",
  10793. height: math.unit(15, "feet"),
  10794. default: true
  10795. },
  10796. {
  10797. name: "Macro",
  10798. height: math.unit(220, "feet")
  10799. },
  10800. {
  10801. name: "Macro+",
  10802. height: math.unit(1450, "feet")
  10803. },
  10804. {
  10805. name: "Megamacro",
  10806. height: math.unit(11500, "feet")
  10807. },
  10808. {
  10809. name: "Gigamacro",
  10810. height: math.unit(9500, "miles")
  10811. },
  10812. {
  10813. name: "Teramacro",
  10814. height: math.unit(2208005005, "miles")
  10815. },
  10816. {
  10817. name: "Examacro",
  10818. height: math.unit(2750, "parsecs")
  10819. },
  10820. {
  10821. name: "Zettamacro",
  10822. height: math.unit(101500, "parsecs")
  10823. },
  10824. ]
  10825. ))
  10826. characterMakers.push(() => makeCharacter(
  10827. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10828. {
  10829. front: {
  10830. height: math.unit(6, "feet"),
  10831. weight: math.unit(70, "kg"),
  10832. name: "Front",
  10833. image: {
  10834. source: "./media/characters/andrew-sleepy/front.svg"
  10835. }
  10836. },
  10837. side: {
  10838. height: math.unit(6, "feet"),
  10839. weight: math.unit(70, "kg"),
  10840. name: "Side",
  10841. image: {
  10842. source: "./media/characters/andrew-sleepy/side.svg"
  10843. }
  10844. },
  10845. },
  10846. [
  10847. {
  10848. name: "Micro",
  10849. height: math.unit(1, "mm"),
  10850. default: true
  10851. },
  10852. ]
  10853. ))
  10854. characterMakers.push(() => makeCharacter(
  10855. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10856. {
  10857. front: {
  10858. height: math.unit(6, "feet"),
  10859. weight: math.unit(150, "lb"),
  10860. name: "Front",
  10861. image: {
  10862. source: "./media/characters/judio/front.svg",
  10863. extra: 1258 / 1110
  10864. }
  10865. },
  10866. },
  10867. [
  10868. {
  10869. name: "Normal",
  10870. height: math.unit(5 + 6 / 12, "feet")
  10871. },
  10872. {
  10873. name: "Macro",
  10874. height: math.unit(1000, "feet"),
  10875. default: true
  10876. },
  10877. {
  10878. name: "Megamacro",
  10879. height: math.unit(10, "miles")
  10880. },
  10881. ]
  10882. ))
  10883. characterMakers.push(() => makeCharacter(
  10884. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10885. {
  10886. front: {
  10887. height: math.unit(6, "feet"),
  10888. weight: math.unit(68, "kg"),
  10889. name: "Front",
  10890. image: {
  10891. source: "./media/characters/nomaxice/front.svg",
  10892. extra: 1498 / 1073,
  10893. bottom: 0.075
  10894. }
  10895. },
  10896. foot: {
  10897. height: math.unit(1.1, "feet"),
  10898. name: "Foot",
  10899. image: {
  10900. source: "./media/characters/nomaxice/foot.svg"
  10901. }
  10902. },
  10903. },
  10904. [
  10905. {
  10906. name: "Micro",
  10907. height: math.unit(8, "cm")
  10908. },
  10909. {
  10910. name: "Norm",
  10911. height: math.unit(1.82, "m")
  10912. },
  10913. {
  10914. name: "Norm+",
  10915. height: math.unit(8.8, "feet")
  10916. },
  10917. {
  10918. name: "Big",
  10919. height: math.unit(8, "meters"),
  10920. default: true
  10921. },
  10922. {
  10923. name: "Macro",
  10924. height: math.unit(18, "meters")
  10925. },
  10926. {
  10927. name: "Macro+",
  10928. height: math.unit(88, "meters")
  10929. },
  10930. ]
  10931. ))
  10932. characterMakers.push(() => makeCharacter(
  10933. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10934. {
  10935. front: {
  10936. height: math.unit(12, "feet"),
  10937. weight: math.unit(1.5, "tons"),
  10938. name: "Front",
  10939. image: {
  10940. source: "./media/characters/dydros/front.svg",
  10941. extra: 863 / 800,
  10942. bottom: 0.015
  10943. }
  10944. },
  10945. back: {
  10946. height: math.unit(12, "feet"),
  10947. weight: math.unit(1.5, "tons"),
  10948. name: "Back",
  10949. image: {
  10950. source: "./media/characters/dydros/back.svg",
  10951. extra: 900 / 843,
  10952. bottom: 0.005
  10953. }
  10954. },
  10955. },
  10956. [
  10957. {
  10958. name: "Normal",
  10959. height: math.unit(12, "feet"),
  10960. default: true
  10961. },
  10962. ]
  10963. ))
  10964. characterMakers.push(() => makeCharacter(
  10965. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10966. {
  10967. front: {
  10968. height: math.unit(6, "feet"),
  10969. weight: math.unit(100, "kg"),
  10970. name: "Front",
  10971. image: {
  10972. source: "./media/characters/riggi/front.svg",
  10973. extra: 5787 / 5303
  10974. }
  10975. },
  10976. hyper: {
  10977. height: math.unit(6 * 5 / 3, "feet"),
  10978. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10979. name: "Hyper",
  10980. image: {
  10981. source: "./media/characters/riggi/hyper.svg",
  10982. extra: 3595 / 3485
  10983. }
  10984. },
  10985. },
  10986. [
  10987. {
  10988. name: "Small Macro",
  10989. height: math.unit(50, "feet")
  10990. },
  10991. {
  10992. name: "Default",
  10993. height: math.unit(200, "feet"),
  10994. default: true
  10995. },
  10996. {
  10997. name: "Loom",
  10998. height: math.unit(10000, "feet")
  10999. },
  11000. {
  11001. name: "Cruising Altitude",
  11002. height: math.unit(30000, "feet")
  11003. },
  11004. {
  11005. name: "Megamacro",
  11006. height: math.unit(100, "miles")
  11007. },
  11008. {
  11009. name: "Continent Sized",
  11010. height: math.unit(2800, "miles")
  11011. },
  11012. {
  11013. name: "Earth Sized",
  11014. height: math.unit(8000, "miles")
  11015. },
  11016. ]
  11017. ))
  11018. characterMakers.push(() => makeCharacter(
  11019. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11020. {
  11021. front: {
  11022. height: math.unit(6, "feet"),
  11023. weight: math.unit(250, "lb"),
  11024. name: "Front",
  11025. image: {
  11026. source: "./media/characters/alexi/front.svg",
  11027. extra: 3483 / 3291,
  11028. bottom: 0.04
  11029. }
  11030. },
  11031. back: {
  11032. height: math.unit(6, "feet"),
  11033. weight: math.unit(250, "lb"),
  11034. name: "Back",
  11035. image: {
  11036. source: "./media/characters/alexi/back.svg",
  11037. extra: 3533 / 3356,
  11038. bottom: 0.021
  11039. }
  11040. },
  11041. frontTransforming: {
  11042. height: math.unit(8.58, "feet"),
  11043. weight: math.unit(1300, "lb"),
  11044. name: "Transforming",
  11045. image: {
  11046. source: "./media/characters/alexi/front-transforming.svg",
  11047. extra: 437 / 409,
  11048. bottom: 19 / 458.66
  11049. }
  11050. },
  11051. frontTransformed: {
  11052. height: math.unit(12.5, "feet"),
  11053. weight: math.unit(4000, "lb"),
  11054. name: "Transformed",
  11055. image: {
  11056. source: "./media/characters/alexi/front-transformed.svg",
  11057. extra: 639 / 614,
  11058. bottom: 30.55 / 671
  11059. }
  11060. },
  11061. },
  11062. [
  11063. {
  11064. name: "Normal",
  11065. height: math.unit(14, "feet"),
  11066. default: true
  11067. },
  11068. {
  11069. name: "Minimacro",
  11070. height: math.unit(30, "meters")
  11071. },
  11072. {
  11073. name: "Macro",
  11074. height: math.unit(500, "meters")
  11075. },
  11076. {
  11077. name: "Megamacro",
  11078. height: math.unit(9000, "km")
  11079. },
  11080. {
  11081. name: "Teramacro",
  11082. height: math.unit(384000, "km")
  11083. },
  11084. ]
  11085. ))
  11086. characterMakers.push(() => makeCharacter(
  11087. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11088. {
  11089. front: {
  11090. height: math.unit(6, "feet"),
  11091. weight: math.unit(150, "lb"),
  11092. name: "Front",
  11093. image: {
  11094. source: "./media/characters/kayroo/front.svg",
  11095. extra: 1153 / 1038,
  11096. bottom: 0.06
  11097. }
  11098. },
  11099. foot: {
  11100. height: math.unit(6, "feet"),
  11101. weight: math.unit(150, "lb"),
  11102. name: "Foot",
  11103. image: {
  11104. source: "./media/characters/kayroo/foot.svg"
  11105. }
  11106. },
  11107. },
  11108. [
  11109. {
  11110. name: "Normal",
  11111. height: math.unit(8, "feet"),
  11112. default: true
  11113. },
  11114. {
  11115. name: "Minimacro",
  11116. height: math.unit(250, "feet")
  11117. },
  11118. {
  11119. name: "Macro",
  11120. height: math.unit(2800, "feet")
  11121. },
  11122. {
  11123. name: "Megamacro",
  11124. height: math.unit(5200, "feet")
  11125. },
  11126. {
  11127. name: "Gigamacro",
  11128. height: math.unit(27000, "feet")
  11129. },
  11130. {
  11131. name: "Omega",
  11132. height: math.unit(45000, "feet")
  11133. },
  11134. ]
  11135. ))
  11136. characterMakers.push(() => makeCharacter(
  11137. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11138. {
  11139. front: {
  11140. height: math.unit(18, "feet"),
  11141. weight: math.unit(5800, "lb"),
  11142. name: "Front",
  11143. image: {
  11144. source: "./media/characters/rhys/front.svg",
  11145. extra: 3386 / 3090,
  11146. bottom: 0.07
  11147. }
  11148. },
  11149. },
  11150. [
  11151. {
  11152. name: "Normal",
  11153. height: math.unit(18, "feet"),
  11154. default: true
  11155. },
  11156. {
  11157. name: "Working Size",
  11158. height: math.unit(200, "feet")
  11159. },
  11160. {
  11161. name: "Demolition Size",
  11162. height: math.unit(2000, "feet")
  11163. },
  11164. {
  11165. name: "Maximum Licensed Size",
  11166. height: math.unit(5, "miles")
  11167. },
  11168. {
  11169. name: "Maximum Observed Size",
  11170. height: math.unit(10, "yottameters")
  11171. },
  11172. ]
  11173. ))
  11174. characterMakers.push(() => makeCharacter(
  11175. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11176. {
  11177. front: {
  11178. height: math.unit(6, "feet"),
  11179. weight: math.unit(250, "lb"),
  11180. name: "Front",
  11181. image: {
  11182. source: "./media/characters/toto/front.svg",
  11183. extra: 527 / 479,
  11184. bottom: 0.05
  11185. }
  11186. },
  11187. },
  11188. [
  11189. {
  11190. name: "Micro",
  11191. height: math.unit(3, "feet")
  11192. },
  11193. {
  11194. name: "Normal",
  11195. height: math.unit(10, "feet")
  11196. },
  11197. {
  11198. name: "Macro",
  11199. height: math.unit(150, "feet"),
  11200. default: true
  11201. },
  11202. {
  11203. name: "Megamacro",
  11204. height: math.unit(1200, "feet")
  11205. },
  11206. ]
  11207. ))
  11208. characterMakers.push(() => makeCharacter(
  11209. { name: "King", species: ["lion"], tags: ["anthro"] },
  11210. {
  11211. back: {
  11212. height: math.unit(6, "feet"),
  11213. weight: math.unit(150, "lb"),
  11214. name: "Back",
  11215. image: {
  11216. source: "./media/characters/king/back.svg"
  11217. }
  11218. },
  11219. },
  11220. [
  11221. {
  11222. name: "Micro",
  11223. height: math.unit(2, "inches")
  11224. },
  11225. {
  11226. name: "Normal",
  11227. height: math.unit(8, "feet")
  11228. },
  11229. {
  11230. name: "Macro",
  11231. height: math.unit(200, "feet"),
  11232. default: true
  11233. },
  11234. {
  11235. name: "Megamacro",
  11236. height: math.unit(50, "miles")
  11237. },
  11238. ]
  11239. ))
  11240. characterMakers.push(() => makeCharacter(
  11241. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11242. {
  11243. front: {
  11244. height: math.unit(11, "feet"),
  11245. weight: math.unit(1400, "lb"),
  11246. name: "Front",
  11247. image: {
  11248. source: "./media/characters/cordite/front.svg",
  11249. extra: 1919/1827,
  11250. bottom: 40/1959
  11251. }
  11252. },
  11253. side: {
  11254. height: math.unit(11, "feet"),
  11255. weight: math.unit(1400, "lb"),
  11256. name: "Side",
  11257. image: {
  11258. source: "./media/characters/cordite/side.svg",
  11259. extra: 1908/1793,
  11260. bottom: 38/1946
  11261. }
  11262. },
  11263. back: {
  11264. height: math.unit(11, "feet"),
  11265. weight: math.unit(1400, "lb"),
  11266. name: "Back",
  11267. image: {
  11268. source: "./media/characters/cordite/back.svg",
  11269. extra: 1938/1837,
  11270. bottom: 10/1948
  11271. }
  11272. },
  11273. feral: {
  11274. height: math.unit(2, "feet"),
  11275. weight: math.unit(90, "lb"),
  11276. name: "Feral",
  11277. image: {
  11278. source: "./media/characters/cordite/feral.svg",
  11279. extra: 1260 / 755,
  11280. bottom: 0.05
  11281. }
  11282. },
  11283. },
  11284. [
  11285. {
  11286. name: "Normal",
  11287. height: math.unit(11, "feet"),
  11288. default: true
  11289. },
  11290. ]
  11291. ))
  11292. characterMakers.push(() => makeCharacter(
  11293. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11294. {
  11295. front: {
  11296. height: math.unit(6, "feet"),
  11297. weight: math.unit(150, "lb"),
  11298. name: "Front",
  11299. image: {
  11300. source: "./media/characters/pianostrong/front.svg",
  11301. extra: 6577 / 6254,
  11302. bottom: 0.02
  11303. }
  11304. },
  11305. side: {
  11306. height: math.unit(6, "feet"),
  11307. weight: math.unit(150, "lb"),
  11308. name: "Side",
  11309. image: {
  11310. source: "./media/characters/pianostrong/side.svg",
  11311. extra: 6106 / 5730
  11312. }
  11313. },
  11314. back: {
  11315. height: math.unit(6, "feet"),
  11316. weight: math.unit(150, "lb"),
  11317. name: "Back",
  11318. image: {
  11319. source: "./media/characters/pianostrong/back.svg",
  11320. extra: 6085 / 5733,
  11321. bottom: 0.01
  11322. }
  11323. },
  11324. },
  11325. [
  11326. {
  11327. name: "Macro",
  11328. height: math.unit(100, "feet")
  11329. },
  11330. {
  11331. name: "Macro+",
  11332. height: math.unit(300, "feet"),
  11333. default: true
  11334. },
  11335. {
  11336. name: "Macro++",
  11337. height: math.unit(1000, "feet")
  11338. },
  11339. ]
  11340. ))
  11341. characterMakers.push(() => makeCharacter(
  11342. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11343. {
  11344. front: {
  11345. height: math.unit(6, "feet"),
  11346. weight: math.unit(150, "lb"),
  11347. name: "Front",
  11348. image: {
  11349. source: "./media/characters/kona/front.svg",
  11350. extra: 2960 / 2629,
  11351. bottom: 0.005
  11352. }
  11353. },
  11354. },
  11355. [
  11356. {
  11357. name: "Normal",
  11358. height: math.unit(11 + 8 / 12, "feet")
  11359. },
  11360. {
  11361. name: "Macro",
  11362. height: math.unit(850, "feet"),
  11363. default: true
  11364. },
  11365. {
  11366. name: "Macro+",
  11367. height: math.unit(1.5, "km"),
  11368. default: true
  11369. },
  11370. {
  11371. name: "Megamacro",
  11372. height: math.unit(80, "miles")
  11373. },
  11374. {
  11375. name: "Gigamacro",
  11376. height: math.unit(3500, "miles")
  11377. },
  11378. ]
  11379. ))
  11380. characterMakers.push(() => makeCharacter(
  11381. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11382. {
  11383. side: {
  11384. height: math.unit(1.9, "meters"),
  11385. weight: math.unit(326, "kg"),
  11386. name: "Side",
  11387. image: {
  11388. source: "./media/characters/levi/side.svg",
  11389. extra: 1704 / 1334,
  11390. bottom: 0.02
  11391. }
  11392. },
  11393. },
  11394. [
  11395. {
  11396. name: "Normal",
  11397. height: math.unit(1.9, "meters"),
  11398. default: true
  11399. },
  11400. {
  11401. name: "Macro",
  11402. height: math.unit(20, "meters")
  11403. },
  11404. {
  11405. name: "Macro+",
  11406. height: math.unit(200, "meters")
  11407. },
  11408. {
  11409. name: "Megamacro",
  11410. height: math.unit(2, "km")
  11411. },
  11412. {
  11413. name: "Megamacro+",
  11414. height: math.unit(20, "km")
  11415. },
  11416. {
  11417. name: "Gigamacro",
  11418. height: math.unit(2500, "km")
  11419. },
  11420. {
  11421. name: "Gigamacro+",
  11422. height: math.unit(120000, "km")
  11423. },
  11424. {
  11425. name: "Teramacro",
  11426. height: math.unit(7.77e6, "km")
  11427. },
  11428. ]
  11429. ))
  11430. characterMakers.push(() => makeCharacter(
  11431. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11432. {
  11433. front: {
  11434. height: math.unit(6 + 4/12, "feet"),
  11435. weight: math.unit(190, "lb"),
  11436. name: "Front",
  11437. image: {
  11438. source: "./media/characters/bmc/front.svg",
  11439. extra: 1626/1472,
  11440. bottom: 79/1705
  11441. }
  11442. },
  11443. back: {
  11444. height: math.unit(6 + 4/12, "feet"),
  11445. weight: math.unit(190, "lb"),
  11446. name: "Back",
  11447. image: {
  11448. source: "./media/characters/bmc/back.svg",
  11449. extra: 1640/1479,
  11450. bottom: 45/1685
  11451. }
  11452. },
  11453. frontArmor: {
  11454. height: math.unit(6 + 4/12, "feet"),
  11455. weight: math.unit(190, "lb"),
  11456. name: "Front-armor",
  11457. image: {
  11458. source: "./media/characters/bmc/front-armor.svg",
  11459. extra: 1538/1468,
  11460. bottom: 79/1617
  11461. }
  11462. },
  11463. },
  11464. [
  11465. {
  11466. name: "Human-sized",
  11467. height: math.unit(6 + 4 / 12, "feet")
  11468. },
  11469. {
  11470. name: "Interactive Size",
  11471. height: math.unit(25, "feet")
  11472. },
  11473. {
  11474. name: "Small",
  11475. height: math.unit(250, "feet")
  11476. },
  11477. {
  11478. name: "Normal",
  11479. height: math.unit(1250, "feet"),
  11480. default: true
  11481. },
  11482. {
  11483. name: "Good Day",
  11484. height: math.unit(88, "miles")
  11485. },
  11486. {
  11487. name: "Largest Measured Size",
  11488. height: math.unit(105.960, "galaxies")
  11489. },
  11490. ]
  11491. ))
  11492. characterMakers.push(() => makeCharacter(
  11493. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11494. {
  11495. front: {
  11496. height: math.unit(20, "feet"),
  11497. weight: math.unit(2016, "kg"),
  11498. name: "Front",
  11499. image: {
  11500. source: "./media/characters/sven-the-kaiju/front.svg",
  11501. extra: 1277/1250,
  11502. bottom: 35/1312
  11503. }
  11504. },
  11505. mouth: {
  11506. height: math.unit(1.85, "feet"),
  11507. name: "Mouth",
  11508. image: {
  11509. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11510. }
  11511. },
  11512. },
  11513. [
  11514. {
  11515. name: "Fairy",
  11516. height: math.unit(6, "inches")
  11517. },
  11518. {
  11519. name: "Normal",
  11520. height: math.unit(20, "feet"),
  11521. default: true
  11522. },
  11523. {
  11524. name: "Rampage",
  11525. height: math.unit(200, "feet")
  11526. },
  11527. {
  11528. name: "Archfey Forest Guardian",
  11529. height: math.unit(1, "mile")
  11530. },
  11531. ]
  11532. ))
  11533. characterMakers.push(() => makeCharacter(
  11534. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11535. {
  11536. front: {
  11537. height: math.unit(4, "meters"),
  11538. weight: math.unit(2, "tons"),
  11539. name: "Front",
  11540. image: {
  11541. source: "./media/characters/marik/front.svg",
  11542. extra: 1057 / 1003,
  11543. bottom: 0.08
  11544. }
  11545. },
  11546. },
  11547. [
  11548. {
  11549. name: "Normal",
  11550. height: math.unit(4, "meters"),
  11551. default: true
  11552. },
  11553. {
  11554. name: "Macro",
  11555. height: math.unit(20, "meters")
  11556. },
  11557. {
  11558. name: "Megamacro",
  11559. height: math.unit(50, "km")
  11560. },
  11561. {
  11562. name: "Gigamacro",
  11563. height: math.unit(100, "km")
  11564. },
  11565. {
  11566. name: "Alpha Macro",
  11567. height: math.unit(7.88e7, "yottameters")
  11568. },
  11569. ]
  11570. ))
  11571. characterMakers.push(() => makeCharacter(
  11572. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11573. {
  11574. front: {
  11575. height: math.unit(6, "feet"),
  11576. weight: math.unit(110, "lb"),
  11577. name: "Front",
  11578. image: {
  11579. source: "./media/characters/mel/front.svg",
  11580. extra: 736 / 617,
  11581. bottom: 0.017
  11582. }
  11583. },
  11584. },
  11585. [
  11586. {
  11587. name: "Pico",
  11588. height: math.unit(3, "pm")
  11589. },
  11590. {
  11591. name: "Nano",
  11592. height: math.unit(3, "nm")
  11593. },
  11594. {
  11595. name: "Micro",
  11596. height: math.unit(0.3, "mm"),
  11597. default: true
  11598. },
  11599. {
  11600. name: "Micro+",
  11601. height: math.unit(3, "mm")
  11602. },
  11603. {
  11604. name: "Normal",
  11605. height: math.unit(5 + 10.5 / 12, "feet")
  11606. },
  11607. ]
  11608. ))
  11609. characterMakers.push(() => makeCharacter(
  11610. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11611. {
  11612. kaiju: {
  11613. height: math.unit(1.75, "meters"),
  11614. weight: math.unit(55, "kg"),
  11615. name: "Kaiju",
  11616. image: {
  11617. source: "./media/characters/lykonous/kaiju.svg",
  11618. extra: 1055 / 946,
  11619. bottom: 0.135
  11620. }
  11621. },
  11622. },
  11623. [
  11624. {
  11625. name: "Normal",
  11626. height: math.unit(2.5, "meters"),
  11627. default: true
  11628. },
  11629. {
  11630. name: "Kaiju Dragon",
  11631. height: math.unit(60, "meters")
  11632. },
  11633. {
  11634. name: "Mega Kaiju",
  11635. height: math.unit(120, "km")
  11636. },
  11637. {
  11638. name: "Giga Kaiju",
  11639. height: math.unit(200, "megameters")
  11640. },
  11641. {
  11642. name: "Terra Kaiju",
  11643. height: math.unit(400, "gigameters")
  11644. },
  11645. {
  11646. name: "Kaiju Dragon God",
  11647. height: math.unit(13000, "exaparsecs")
  11648. },
  11649. ]
  11650. ))
  11651. characterMakers.push(() => makeCharacter(
  11652. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11653. {
  11654. front: {
  11655. height: math.unit(6, "feet"),
  11656. weight: math.unit(150, "lb"),
  11657. name: "Front",
  11658. image: {
  11659. source: "./media/characters/blü/front.svg",
  11660. extra: 1883 / 1564,
  11661. bottom: 0.031
  11662. }
  11663. },
  11664. },
  11665. [
  11666. {
  11667. name: "Normal",
  11668. height: math.unit(13, "feet"),
  11669. default: true
  11670. },
  11671. {
  11672. name: "Big Boi",
  11673. height: math.unit(150, "meters")
  11674. },
  11675. {
  11676. name: "Mini Stomper",
  11677. height: math.unit(300, "meters")
  11678. },
  11679. {
  11680. name: "Macro",
  11681. height: math.unit(1000, "meters")
  11682. },
  11683. {
  11684. name: "Megamacro",
  11685. height: math.unit(11000, "meters")
  11686. },
  11687. {
  11688. name: "Gigamacro",
  11689. height: math.unit(11000, "km")
  11690. },
  11691. {
  11692. name: "Teramacro",
  11693. height: math.unit(420000, "km")
  11694. },
  11695. {
  11696. name: "Examacro",
  11697. height: math.unit(120, "parsecs")
  11698. },
  11699. {
  11700. name: "God Tho",
  11701. height: math.unit(98000000000, "parsecs")
  11702. },
  11703. ]
  11704. ))
  11705. characterMakers.push(() => makeCharacter(
  11706. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11707. {
  11708. taurFront: {
  11709. height: math.unit(6, "feet"),
  11710. weight: math.unit(200, "lb"),
  11711. name: "Taur (Front)",
  11712. image: {
  11713. source: "./media/characters/scales/taur-front.svg",
  11714. extra: 1,
  11715. bottom: 0.05
  11716. }
  11717. },
  11718. taurBack: {
  11719. height: math.unit(6, "feet"),
  11720. weight: math.unit(200, "lb"),
  11721. name: "Taur (Back)",
  11722. image: {
  11723. source: "./media/characters/scales/taur-back.svg",
  11724. extra: 1,
  11725. bottom: 0.08
  11726. }
  11727. },
  11728. anthro: {
  11729. height: math.unit(6 * 7 / 12, "feet"),
  11730. weight: math.unit(100, "lb"),
  11731. name: "Anthro",
  11732. image: {
  11733. source: "./media/characters/scales/anthro.svg",
  11734. extra: 1,
  11735. bottom: 0.06
  11736. }
  11737. },
  11738. },
  11739. [
  11740. {
  11741. name: "Normal",
  11742. height: math.unit(12, "feet"),
  11743. default: true
  11744. },
  11745. ]
  11746. ))
  11747. characterMakers.push(() => makeCharacter(
  11748. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11749. {
  11750. front: {
  11751. height: math.unit(6, "feet"),
  11752. weight: math.unit(150, "lb"),
  11753. name: "Front",
  11754. image: {
  11755. source: "./media/characters/koragos/front.svg",
  11756. extra: 841 / 794,
  11757. bottom: 0.035
  11758. }
  11759. },
  11760. back: {
  11761. height: math.unit(6, "feet"),
  11762. weight: math.unit(150, "lb"),
  11763. name: "Back",
  11764. image: {
  11765. source: "./media/characters/koragos/back.svg",
  11766. extra: 841 / 810,
  11767. bottom: 0.022
  11768. }
  11769. },
  11770. },
  11771. [
  11772. {
  11773. name: "Normal",
  11774. height: math.unit(6 + 11 / 12, "feet"),
  11775. default: true
  11776. },
  11777. {
  11778. name: "Macro",
  11779. height: math.unit(490, "feet")
  11780. },
  11781. {
  11782. name: "Megamacro",
  11783. height: math.unit(10, "miles")
  11784. },
  11785. {
  11786. name: "Gigamacro",
  11787. height: math.unit(50, "miles")
  11788. },
  11789. ]
  11790. ))
  11791. characterMakers.push(() => makeCharacter(
  11792. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11793. {
  11794. front: {
  11795. height: math.unit(6, "feet"),
  11796. weight: math.unit(250, "lb"),
  11797. name: "Front",
  11798. image: {
  11799. source: "./media/characters/xylrem/front.svg",
  11800. extra: 3323 / 3050,
  11801. bottom: 0.065
  11802. }
  11803. },
  11804. },
  11805. [
  11806. {
  11807. name: "Micro",
  11808. height: math.unit(4, "feet")
  11809. },
  11810. {
  11811. name: "Normal",
  11812. height: math.unit(16, "feet"),
  11813. default: true
  11814. },
  11815. {
  11816. name: "Macro",
  11817. height: math.unit(2720, "feet")
  11818. },
  11819. {
  11820. name: "Megamacro",
  11821. height: math.unit(25000, "miles")
  11822. },
  11823. ]
  11824. ))
  11825. characterMakers.push(() => makeCharacter(
  11826. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11827. {
  11828. front: {
  11829. height: math.unit(8, "feet"),
  11830. weight: math.unit(250, "kg"),
  11831. name: "Front",
  11832. image: {
  11833. source: "./media/characters/ikideru/front.svg",
  11834. extra: 930 / 870,
  11835. bottom: 0.087
  11836. }
  11837. },
  11838. back: {
  11839. height: math.unit(8, "feet"),
  11840. weight: math.unit(250, "kg"),
  11841. name: "Back",
  11842. image: {
  11843. source: "./media/characters/ikideru/back.svg",
  11844. extra: 919 / 852,
  11845. bottom: 0.055
  11846. }
  11847. },
  11848. },
  11849. [
  11850. {
  11851. name: "Rare",
  11852. height: math.unit(8, "feet"),
  11853. default: true
  11854. },
  11855. {
  11856. name: "Playful Loom",
  11857. height: math.unit(80, "feet")
  11858. },
  11859. {
  11860. name: "City Leaner",
  11861. height: math.unit(230, "feet")
  11862. },
  11863. {
  11864. name: "Megamacro",
  11865. height: math.unit(2500, "feet")
  11866. },
  11867. {
  11868. name: "Gigamacro",
  11869. height: math.unit(26400, "feet")
  11870. },
  11871. {
  11872. name: "Tectonic Shifter",
  11873. height: math.unit(1.7, "megameters")
  11874. },
  11875. {
  11876. name: "Planet Carer",
  11877. height: math.unit(21, "megameters")
  11878. },
  11879. {
  11880. name: "God",
  11881. height: math.unit(11157.22, "parsecs")
  11882. },
  11883. ]
  11884. ))
  11885. characterMakers.push(() => makeCharacter(
  11886. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11887. {
  11888. front: {
  11889. height: math.unit(6, "feet"),
  11890. weight: math.unit(120, "lb"),
  11891. name: "Front",
  11892. image: {
  11893. source: "./media/characters/neo/front.svg"
  11894. }
  11895. },
  11896. },
  11897. [
  11898. {
  11899. name: "Micro",
  11900. height: math.unit(2, "inches"),
  11901. default: true
  11902. },
  11903. {
  11904. name: "Human Size",
  11905. height: math.unit(5 + 8 / 12, "feet")
  11906. },
  11907. ]
  11908. ))
  11909. characterMakers.push(() => makeCharacter(
  11910. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11911. {
  11912. front: {
  11913. height: math.unit(13 + 10 / 12, "feet"),
  11914. weight: math.unit(5320, "lb"),
  11915. name: "Front",
  11916. image: {
  11917. source: "./media/characters/chauncey-chantz/front.svg",
  11918. extra: 1587 / 1435,
  11919. bottom: 0.02
  11920. }
  11921. },
  11922. },
  11923. [
  11924. {
  11925. name: "Normal",
  11926. height: math.unit(13 + 10 / 12, "feet"),
  11927. default: true
  11928. },
  11929. {
  11930. name: "Macro",
  11931. height: math.unit(45, "feet")
  11932. },
  11933. {
  11934. name: "Megamacro",
  11935. height: math.unit(250, "miles")
  11936. },
  11937. {
  11938. name: "Planetary",
  11939. height: math.unit(10000, "miles")
  11940. },
  11941. {
  11942. name: "Galactic",
  11943. height: math.unit(40000, "parsecs")
  11944. },
  11945. {
  11946. name: "Universal",
  11947. height: math.unit(1, "yottameter")
  11948. },
  11949. ]
  11950. ))
  11951. characterMakers.push(() => makeCharacter(
  11952. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11953. {
  11954. front: {
  11955. height: math.unit(6, "feet"),
  11956. weight: math.unit(150, "lb"),
  11957. name: "Front",
  11958. image: {
  11959. source: "./media/characters/epifox/front.svg",
  11960. extra: 1,
  11961. bottom: 0.075
  11962. }
  11963. },
  11964. },
  11965. [
  11966. {
  11967. name: "Micro",
  11968. height: math.unit(6, "inches")
  11969. },
  11970. {
  11971. name: "Normal",
  11972. height: math.unit(12, "feet"),
  11973. default: true
  11974. },
  11975. {
  11976. name: "Macro",
  11977. height: math.unit(3810, "feet")
  11978. },
  11979. {
  11980. name: "Megamacro",
  11981. height: math.unit(500, "miles")
  11982. },
  11983. ]
  11984. ))
  11985. characterMakers.push(() => makeCharacter(
  11986. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11987. {
  11988. front: {
  11989. height: math.unit(1.8796, "m"),
  11990. weight: math.unit(230, "lb"),
  11991. name: "Front",
  11992. image: {
  11993. source: "./media/characters/colin-t/front.svg",
  11994. extra: 1272 / 1193,
  11995. bottom: 0.07
  11996. }
  11997. },
  11998. },
  11999. [
  12000. {
  12001. name: "Micro",
  12002. height: math.unit(0.571, "meters")
  12003. },
  12004. {
  12005. name: "Normal",
  12006. height: math.unit(1.8796, "meters"),
  12007. default: true
  12008. },
  12009. {
  12010. name: "Tall",
  12011. height: math.unit(4, "meters")
  12012. },
  12013. {
  12014. name: "Macro",
  12015. height: math.unit(67.241, "meters")
  12016. },
  12017. {
  12018. name: "Megamacro",
  12019. height: math.unit(371.856, "meters")
  12020. },
  12021. {
  12022. name: "Planetary",
  12023. height: math.unit(12631.5689, "km")
  12024. },
  12025. ]
  12026. ))
  12027. characterMakers.push(() => makeCharacter(
  12028. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12029. {
  12030. front: {
  12031. height: math.unit(1.85, "meters"),
  12032. weight: math.unit(80, "kg"),
  12033. name: "Front",
  12034. image: {
  12035. source: "./media/characters/matvei/front.svg",
  12036. extra: 614 / 594,
  12037. bottom: 0.01
  12038. }
  12039. },
  12040. },
  12041. [
  12042. {
  12043. name: "Normal",
  12044. height: math.unit(1.85, "meters"),
  12045. default: true
  12046. },
  12047. ]
  12048. ))
  12049. characterMakers.push(() => makeCharacter(
  12050. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12051. {
  12052. front: {
  12053. height: math.unit(5 + 9 / 12, "feet"),
  12054. weight: math.unit(70, "lb"),
  12055. name: "Front",
  12056. image: {
  12057. source: "./media/characters/quincy/front.svg",
  12058. extra: 3041 / 2751
  12059. }
  12060. },
  12061. back: {
  12062. height: math.unit(5 + 9 / 12, "feet"),
  12063. weight: math.unit(70, "lb"),
  12064. name: "Back",
  12065. image: {
  12066. source: "./media/characters/quincy/back.svg",
  12067. extra: 3041 / 2751
  12068. }
  12069. },
  12070. flying: {
  12071. height: math.unit(5 + 4 / 12, "feet"),
  12072. weight: math.unit(70, "lb"),
  12073. name: "Flying",
  12074. image: {
  12075. source: "./media/characters/quincy/flying.svg",
  12076. extra: 1044 / 930
  12077. }
  12078. },
  12079. },
  12080. [
  12081. {
  12082. name: "Micro",
  12083. height: math.unit(3, "cm")
  12084. },
  12085. {
  12086. name: "Normal",
  12087. height: math.unit(5 + 9 / 12, "feet")
  12088. },
  12089. {
  12090. name: "Macro",
  12091. height: math.unit(200, "meters"),
  12092. default: true
  12093. },
  12094. {
  12095. name: "Megamacro",
  12096. height: math.unit(1000, "meters")
  12097. },
  12098. ]
  12099. ))
  12100. characterMakers.push(() => makeCharacter(
  12101. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12102. {
  12103. front: {
  12104. height: math.unit(3 + 11/12, "feet"),
  12105. weight: math.unit(50, "lb"),
  12106. name: "Front",
  12107. image: {
  12108. source: "./media/characters/vanrel/front.svg",
  12109. extra: 1104/949,
  12110. bottom: 52/1156
  12111. }
  12112. },
  12113. back: {
  12114. height: math.unit(3 + 11/12, "feet"),
  12115. weight: math.unit(50, "lb"),
  12116. name: "Back",
  12117. image: {
  12118. source: "./media/characters/vanrel/back.svg",
  12119. extra: 1119/976,
  12120. bottom: 37/1156
  12121. }
  12122. },
  12123. tome: {
  12124. height: math.unit(1.35, "feet"),
  12125. weight: math.unit(10, "lb"),
  12126. name: "Vanrel's Tome",
  12127. rename: true,
  12128. image: {
  12129. source: "./media/characters/vanrel/tome.svg"
  12130. }
  12131. },
  12132. beans: {
  12133. height: math.unit(0.89, "feet"),
  12134. name: "Beans",
  12135. image: {
  12136. source: "./media/characters/vanrel/beans.svg"
  12137. }
  12138. },
  12139. },
  12140. [
  12141. {
  12142. name: "Normal",
  12143. height: math.unit(3 + 11/12, "feet"),
  12144. default: true
  12145. },
  12146. ]
  12147. ))
  12148. characterMakers.push(() => makeCharacter(
  12149. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12150. {
  12151. front: {
  12152. height: math.unit(7 + 5 / 12, "feet"),
  12153. name: "Front",
  12154. image: {
  12155. source: "./media/characters/kuiper-vanrel/front.svg",
  12156. extra: 1219/1169,
  12157. bottom: 69/1288
  12158. }
  12159. },
  12160. back: {
  12161. height: math.unit(7 + 5 / 12, "feet"),
  12162. name: "Back",
  12163. image: {
  12164. source: "./media/characters/kuiper-vanrel/back.svg",
  12165. extra: 1236/1193,
  12166. bottom: 27/1263
  12167. }
  12168. },
  12169. foot: {
  12170. height: math.unit(0.55, "meters"),
  12171. name: "Foot",
  12172. image: {
  12173. source: "./media/characters/kuiper-vanrel/foot.svg",
  12174. }
  12175. },
  12176. battle: {
  12177. height: math.unit(6.824, "feet"),
  12178. name: "Battle",
  12179. image: {
  12180. source: "./media/characters/kuiper-vanrel/battle.svg",
  12181. extra: 1466 / 1327,
  12182. bottom: 29 / 1492.5
  12183. }
  12184. },
  12185. meerkui: {
  12186. height: math.unit(18, "inches"),
  12187. name: "Meerkui",
  12188. image: {
  12189. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12190. extra: 1354/1289,
  12191. bottom: 69/1423
  12192. }
  12193. },
  12194. },
  12195. [
  12196. {
  12197. name: "Normal",
  12198. height: math.unit(7 + 5 / 12, "feet"),
  12199. default: true
  12200. },
  12201. ]
  12202. ))
  12203. characterMakers.push(() => makeCharacter(
  12204. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12205. {
  12206. front: {
  12207. height: math.unit(8 + 5 / 12, "feet"),
  12208. name: "Front",
  12209. image: {
  12210. source: "./media/characters/keset-vanrel/front.svg",
  12211. extra: 1231/1148,
  12212. bottom: 82/1313
  12213. }
  12214. },
  12215. back: {
  12216. height: math.unit(8 + 5 / 12, "feet"),
  12217. name: "Back",
  12218. image: {
  12219. source: "./media/characters/keset-vanrel/back.svg",
  12220. extra: 1240/1174,
  12221. bottom: 33/1273
  12222. }
  12223. },
  12224. hand: {
  12225. height: math.unit(0.6, "meters"),
  12226. name: "Hand",
  12227. image: {
  12228. source: "./media/characters/keset-vanrel/hand.svg"
  12229. }
  12230. },
  12231. foot: {
  12232. height: math.unit(0.94978, "meters"),
  12233. name: "Foot",
  12234. image: {
  12235. source: "./media/characters/keset-vanrel/foot.svg"
  12236. }
  12237. },
  12238. battle: {
  12239. height: math.unit(7.408, "feet"),
  12240. name: "Battle",
  12241. image: {
  12242. source: "./media/characters/keset-vanrel/battle.svg",
  12243. extra: 1890 / 1386,
  12244. bottom: 73.28 / 1970
  12245. }
  12246. },
  12247. },
  12248. [
  12249. {
  12250. name: "Normal",
  12251. height: math.unit(8 + 5 / 12, "feet"),
  12252. default: true
  12253. },
  12254. ]
  12255. ))
  12256. characterMakers.push(() => makeCharacter(
  12257. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12258. {
  12259. front: {
  12260. height: math.unit(6, "feet"),
  12261. weight: math.unit(150, "lb"),
  12262. name: "Front",
  12263. image: {
  12264. source: "./media/characters/neos/front.svg",
  12265. extra: 1696 / 992,
  12266. bottom: 0.14
  12267. }
  12268. },
  12269. },
  12270. [
  12271. {
  12272. name: "Normal",
  12273. height: math.unit(54, "cm"),
  12274. default: true
  12275. },
  12276. {
  12277. name: "Macro",
  12278. height: math.unit(100, "m")
  12279. },
  12280. {
  12281. name: "Megamacro",
  12282. height: math.unit(10, "km")
  12283. },
  12284. {
  12285. name: "Megamacro+",
  12286. height: math.unit(100, "km")
  12287. },
  12288. {
  12289. name: "Gigamacro",
  12290. height: math.unit(100, "Mm")
  12291. },
  12292. {
  12293. name: "Teramacro",
  12294. height: math.unit(100, "Gm")
  12295. },
  12296. {
  12297. name: "Examacro",
  12298. height: math.unit(100, "Em")
  12299. },
  12300. {
  12301. name: "Godly",
  12302. height: math.unit(10000, "Ym")
  12303. },
  12304. {
  12305. name: "Beyond Godly",
  12306. height: math.unit(25, "multiverses")
  12307. },
  12308. ]
  12309. ))
  12310. characterMakers.push(() => makeCharacter(
  12311. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12312. {
  12313. feminine: {
  12314. height: math.unit(5, "feet"),
  12315. weight: math.unit(100, "lb"),
  12316. name: "Feminine",
  12317. image: {
  12318. source: "./media/characters/sammy-mouse/feminine.svg",
  12319. extra: 2526 / 2425,
  12320. bottom: 0.123
  12321. }
  12322. },
  12323. masculine: {
  12324. height: math.unit(5, "feet"),
  12325. weight: math.unit(100, "lb"),
  12326. name: "Masculine",
  12327. image: {
  12328. source: "./media/characters/sammy-mouse/masculine.svg",
  12329. extra: 2526 / 2425,
  12330. bottom: 0.123
  12331. }
  12332. },
  12333. },
  12334. [
  12335. {
  12336. name: "Micro",
  12337. height: math.unit(5, "inches")
  12338. },
  12339. {
  12340. name: "Normal",
  12341. height: math.unit(5, "feet"),
  12342. default: true
  12343. },
  12344. {
  12345. name: "Macro",
  12346. height: math.unit(60, "feet")
  12347. },
  12348. ]
  12349. ))
  12350. characterMakers.push(() => makeCharacter(
  12351. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12352. {
  12353. front: {
  12354. height: math.unit(4, "feet"),
  12355. weight: math.unit(50, "lb"),
  12356. name: "Front",
  12357. image: {
  12358. source: "./media/characters/kole/front.svg",
  12359. extra: 1423 / 1303,
  12360. bottom: 0.025
  12361. }
  12362. },
  12363. back: {
  12364. height: math.unit(4, "feet"),
  12365. weight: math.unit(50, "lb"),
  12366. name: "Back",
  12367. image: {
  12368. source: "./media/characters/kole/back.svg",
  12369. extra: 1426 / 1280,
  12370. bottom: 0.02
  12371. }
  12372. },
  12373. },
  12374. [
  12375. {
  12376. name: "Normal",
  12377. height: math.unit(4, "feet"),
  12378. default: true
  12379. },
  12380. ]
  12381. ))
  12382. characterMakers.push(() => makeCharacter(
  12383. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12384. {
  12385. front: {
  12386. height: math.unit(2.5, "feet"),
  12387. weight: math.unit(32, "lb"),
  12388. name: "Front",
  12389. image: {
  12390. source: "./media/characters/rufran/front.svg",
  12391. extra: 1313/885,
  12392. bottom: 94/1407
  12393. }
  12394. },
  12395. side: {
  12396. height: math.unit(2.5, "feet"),
  12397. weight: math.unit(32, "lb"),
  12398. name: "Side",
  12399. image: {
  12400. source: "./media/characters/rufran/side.svg",
  12401. extra: 1109/852,
  12402. bottom: 118/1227
  12403. }
  12404. },
  12405. back: {
  12406. height: math.unit(2.5, "feet"),
  12407. weight: math.unit(32, "lb"),
  12408. name: "Back",
  12409. image: {
  12410. source: "./media/characters/rufran/back.svg",
  12411. extra: 1280/878,
  12412. bottom: 131/1411
  12413. }
  12414. },
  12415. mouth: {
  12416. height: math.unit(1.13, "feet"),
  12417. name: "Mouth",
  12418. image: {
  12419. source: "./media/characters/rufran/mouth.svg"
  12420. }
  12421. },
  12422. foot: {
  12423. height: math.unit(1.33, "feet"),
  12424. name: "Foot",
  12425. image: {
  12426. source: "./media/characters/rufran/foot.svg"
  12427. }
  12428. },
  12429. koboldFront: {
  12430. height: math.unit(2 + 6 / 12, "feet"),
  12431. weight: math.unit(20, "lb"),
  12432. name: "Front (Kobold)",
  12433. image: {
  12434. source: "./media/characters/rufran/kobold-front.svg",
  12435. extra: 2041 / 1839,
  12436. bottom: 0.055
  12437. }
  12438. },
  12439. koboldBack: {
  12440. height: math.unit(2 + 6 / 12, "feet"),
  12441. weight: math.unit(20, "lb"),
  12442. name: "Back (Kobold)",
  12443. image: {
  12444. source: "./media/characters/rufran/kobold-back.svg",
  12445. extra: 2054 / 1839,
  12446. bottom: 0.01
  12447. }
  12448. },
  12449. koboldHand: {
  12450. height: math.unit(0.2166, "meters"),
  12451. name: "Hand (Kobold)",
  12452. image: {
  12453. source: "./media/characters/rufran/kobold-hand.svg"
  12454. }
  12455. },
  12456. koboldFoot: {
  12457. height: math.unit(0.185, "meters"),
  12458. name: "Foot (Kobold)",
  12459. image: {
  12460. source: "./media/characters/rufran/kobold-foot.svg"
  12461. }
  12462. },
  12463. },
  12464. [
  12465. {
  12466. name: "Micro",
  12467. height: math.unit(1, "inch")
  12468. },
  12469. {
  12470. name: "Normal",
  12471. height: math.unit(2 + 6 / 12, "feet"),
  12472. default: true
  12473. },
  12474. {
  12475. name: "Big",
  12476. height: math.unit(60, "feet")
  12477. },
  12478. {
  12479. name: "Macro",
  12480. height: math.unit(325, "feet")
  12481. },
  12482. ]
  12483. ))
  12484. characterMakers.push(() => makeCharacter(
  12485. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12486. {
  12487. front: {
  12488. height: math.unit(0.3, "meters"),
  12489. weight: math.unit(3.5, "kg"),
  12490. name: "Front",
  12491. image: {
  12492. source: "./media/characters/chip/front.svg",
  12493. extra: 748 / 674
  12494. }
  12495. },
  12496. },
  12497. [
  12498. {
  12499. name: "Micro",
  12500. height: math.unit(1, "inch"),
  12501. default: true
  12502. },
  12503. ]
  12504. ))
  12505. characterMakers.push(() => makeCharacter(
  12506. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12507. {
  12508. side: {
  12509. height: math.unit(2.3, "meters"),
  12510. weight: math.unit(3500, "lb"),
  12511. name: "Side",
  12512. image: {
  12513. source: "./media/characters/torvid/side.svg",
  12514. extra: 1972 / 722,
  12515. bottom: 0.035
  12516. }
  12517. },
  12518. },
  12519. [
  12520. {
  12521. name: "Normal",
  12522. height: math.unit(2.3, "meters"),
  12523. default: true
  12524. },
  12525. ]
  12526. ))
  12527. characterMakers.push(() => makeCharacter(
  12528. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12529. {
  12530. front: {
  12531. height: math.unit(2, "meters"),
  12532. weight: math.unit(150.5, "kg"),
  12533. name: "Front",
  12534. image: {
  12535. source: "./media/characters/susan/front.svg",
  12536. extra: 693 / 635,
  12537. bottom: 0.05
  12538. }
  12539. },
  12540. },
  12541. [
  12542. {
  12543. name: "Megamacro",
  12544. height: math.unit(505, "miles"),
  12545. default: true
  12546. },
  12547. ]
  12548. ))
  12549. characterMakers.push(() => makeCharacter(
  12550. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12551. {
  12552. front: {
  12553. height: math.unit(6, "feet"),
  12554. weight: math.unit(150, "lb"),
  12555. name: "Front",
  12556. image: {
  12557. source: "./media/characters/raindrops/front.svg",
  12558. extra: 2655 / 2461,
  12559. bottom: 49 / 2705
  12560. }
  12561. },
  12562. back: {
  12563. height: math.unit(6, "feet"),
  12564. weight: math.unit(150, "lb"),
  12565. name: "Back",
  12566. image: {
  12567. source: "./media/characters/raindrops/back.svg",
  12568. extra: 2574 / 2400,
  12569. bottom: 65 / 2634
  12570. }
  12571. },
  12572. },
  12573. [
  12574. {
  12575. name: "Micro",
  12576. height: math.unit(6, "inches")
  12577. },
  12578. {
  12579. name: "Normal",
  12580. height: math.unit(6 + 2 / 12, "feet")
  12581. },
  12582. {
  12583. name: "Macro",
  12584. height: math.unit(131, "feet"),
  12585. default: true
  12586. },
  12587. {
  12588. name: "Megamacro",
  12589. height: math.unit(15, "miles")
  12590. },
  12591. {
  12592. name: "Gigamacro",
  12593. height: math.unit(4000, "miles")
  12594. },
  12595. {
  12596. name: "Teramacro",
  12597. height: math.unit(315000, "miles")
  12598. },
  12599. ]
  12600. ))
  12601. characterMakers.push(() => makeCharacter(
  12602. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12603. {
  12604. front: {
  12605. height: math.unit(2.794, "meters"),
  12606. weight: math.unit(325, "kg"),
  12607. name: "Front",
  12608. image: {
  12609. source: "./media/characters/tezwa/front.svg",
  12610. extra: 2083 / 1906,
  12611. bottom: 0.031
  12612. }
  12613. },
  12614. foot: {
  12615. height: math.unit(0.687, "meters"),
  12616. name: "Foot",
  12617. image: {
  12618. source: "./media/characters/tezwa/foot.svg"
  12619. }
  12620. },
  12621. },
  12622. [
  12623. {
  12624. name: "Normal",
  12625. height: math.unit(9 + 2 / 12, "feet"),
  12626. default: true
  12627. },
  12628. ]
  12629. ))
  12630. characterMakers.push(() => makeCharacter(
  12631. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12632. {
  12633. front: {
  12634. height: math.unit(58, "feet"),
  12635. weight: math.unit(89000, "lb"),
  12636. name: "Front",
  12637. image: {
  12638. source: "./media/characters/typhus/front.svg",
  12639. extra: 816 / 800,
  12640. bottom: 0.065
  12641. }
  12642. },
  12643. },
  12644. [
  12645. {
  12646. name: "Macro",
  12647. height: math.unit(58, "feet"),
  12648. default: true
  12649. },
  12650. ]
  12651. ))
  12652. characterMakers.push(() => makeCharacter(
  12653. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12654. {
  12655. front: {
  12656. height: math.unit(12, "feet"),
  12657. weight: math.unit(6, "tonnes"),
  12658. name: "Front",
  12659. image: {
  12660. source: "./media/characters/lyra-von-wulf/front.svg",
  12661. extra: 1,
  12662. bottom: 0.10
  12663. }
  12664. },
  12665. frontMecha: {
  12666. height: math.unit(12, "feet"),
  12667. weight: math.unit(12, "tonnes"),
  12668. name: "Front (Mecha)",
  12669. image: {
  12670. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12671. extra: 1,
  12672. bottom: 0.042
  12673. }
  12674. },
  12675. maw: {
  12676. height: math.unit(2.2, "feet"),
  12677. name: "Maw",
  12678. image: {
  12679. source: "./media/characters/lyra-von-wulf/maw.svg"
  12680. }
  12681. },
  12682. },
  12683. [
  12684. {
  12685. name: "Normal",
  12686. height: math.unit(12, "feet"),
  12687. default: true
  12688. },
  12689. {
  12690. name: "Classic",
  12691. height: math.unit(50, "feet")
  12692. },
  12693. {
  12694. name: "Macro",
  12695. height: math.unit(500, "feet")
  12696. },
  12697. {
  12698. name: "Megamacro",
  12699. height: math.unit(1, "mile")
  12700. },
  12701. {
  12702. name: "Gigamacro",
  12703. height: math.unit(400, "miles")
  12704. },
  12705. {
  12706. name: "Teramacro",
  12707. height: math.unit(22000, "miles")
  12708. },
  12709. {
  12710. name: "Solarmacro",
  12711. height: math.unit(8600000, "miles")
  12712. },
  12713. {
  12714. name: "Galactic",
  12715. height: math.unit(1057000, "lightyears")
  12716. },
  12717. ]
  12718. ))
  12719. characterMakers.push(() => makeCharacter(
  12720. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12721. {
  12722. front: {
  12723. height: math.unit(6 + 10 / 12, "feet"),
  12724. weight: math.unit(150, "lb"),
  12725. name: "Front",
  12726. image: {
  12727. source: "./media/characters/dixon/front.svg",
  12728. extra: 3361 / 3209,
  12729. bottom: 0.01
  12730. }
  12731. },
  12732. },
  12733. [
  12734. {
  12735. name: "Normal",
  12736. height: math.unit(6 + 10 / 12, "feet"),
  12737. default: true
  12738. },
  12739. {
  12740. name: "Big",
  12741. height: math.unit(12, "meters")
  12742. },
  12743. {
  12744. name: "Macro",
  12745. height: math.unit(500, "meters")
  12746. },
  12747. {
  12748. name: "Megamacro",
  12749. height: math.unit(2, "km")
  12750. },
  12751. ]
  12752. ))
  12753. characterMakers.push(() => makeCharacter(
  12754. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12755. {
  12756. front: {
  12757. height: math.unit(185, "cm"),
  12758. weight: math.unit(68, "kg"),
  12759. name: "Front",
  12760. image: {
  12761. source: "./media/characters/kauko/front.svg",
  12762. extra: 1455 / 1421,
  12763. bottom: 0.03
  12764. }
  12765. },
  12766. back: {
  12767. height: math.unit(185, "cm"),
  12768. weight: math.unit(68, "kg"),
  12769. name: "Back",
  12770. image: {
  12771. source: "./media/characters/kauko/back.svg",
  12772. extra: 1455 / 1421,
  12773. bottom: 0.004
  12774. }
  12775. },
  12776. },
  12777. [
  12778. {
  12779. name: "Normal",
  12780. height: math.unit(185, "cm"),
  12781. default: true
  12782. },
  12783. ]
  12784. ))
  12785. characterMakers.push(() => makeCharacter(
  12786. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12787. {
  12788. front: {
  12789. height: math.unit(6, "feet"),
  12790. weight: math.unit(150, "kg"),
  12791. name: "Front",
  12792. image: {
  12793. source: "./media/characters/varg/front.svg",
  12794. extra: 1108 / 1018,
  12795. bottom: 0.0375
  12796. }
  12797. },
  12798. },
  12799. [
  12800. {
  12801. name: "Normal",
  12802. height: math.unit(5, "meters")
  12803. },
  12804. {
  12805. name: "Macro",
  12806. height: math.unit(200, "meters")
  12807. },
  12808. {
  12809. name: "Megamacro",
  12810. height: math.unit(20, "kilometers")
  12811. },
  12812. {
  12813. name: "True Size",
  12814. height: math.unit(211, "km"),
  12815. default: true
  12816. },
  12817. {
  12818. name: "Gigamacro",
  12819. height: math.unit(1000, "km")
  12820. },
  12821. {
  12822. name: "Gigamacro+",
  12823. height: math.unit(8000, "km")
  12824. },
  12825. {
  12826. name: "Teramacro",
  12827. height: math.unit(1000000, "km")
  12828. },
  12829. ]
  12830. ))
  12831. characterMakers.push(() => makeCharacter(
  12832. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12833. {
  12834. front: {
  12835. height: math.unit(7 + 7 / 12, "feet"),
  12836. weight: math.unit(267, "lb"),
  12837. name: "Front",
  12838. image: {
  12839. source: "./media/characters/dayza/front.svg",
  12840. extra: 1262 / 1200,
  12841. bottom: 0.035
  12842. }
  12843. },
  12844. side: {
  12845. height: math.unit(7 + 7 / 12, "feet"),
  12846. weight: math.unit(267, "lb"),
  12847. name: "Side",
  12848. image: {
  12849. source: "./media/characters/dayza/side.svg",
  12850. extra: 1295 / 1245,
  12851. bottom: 0.05
  12852. }
  12853. },
  12854. back: {
  12855. height: math.unit(7 + 7 / 12, "feet"),
  12856. weight: math.unit(267, "lb"),
  12857. name: "Back",
  12858. image: {
  12859. source: "./media/characters/dayza/back.svg",
  12860. extra: 1241 / 1170
  12861. }
  12862. },
  12863. },
  12864. [
  12865. {
  12866. name: "Normal",
  12867. height: math.unit(7 + 7 / 12, "feet"),
  12868. default: true
  12869. },
  12870. {
  12871. name: "Macro",
  12872. height: math.unit(155, "feet")
  12873. },
  12874. ]
  12875. ))
  12876. characterMakers.push(() => makeCharacter(
  12877. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12878. {
  12879. front: {
  12880. height: math.unit(6 + 5 / 12, "feet"),
  12881. weight: math.unit(160, "lb"),
  12882. name: "Front",
  12883. image: {
  12884. source: "./media/characters/xanthos/front.svg",
  12885. extra: 1,
  12886. bottom: 0.04
  12887. }
  12888. },
  12889. back: {
  12890. height: math.unit(6 + 5 / 12, "feet"),
  12891. weight: math.unit(160, "lb"),
  12892. name: "Back",
  12893. image: {
  12894. source: "./media/characters/xanthos/back.svg",
  12895. extra: 1,
  12896. bottom: 0.03
  12897. }
  12898. },
  12899. hand: {
  12900. height: math.unit(0.928, "feet"),
  12901. name: "Hand",
  12902. image: {
  12903. source: "./media/characters/xanthos/hand.svg"
  12904. }
  12905. },
  12906. foot: {
  12907. height: math.unit(1.286, "feet"),
  12908. name: "Foot",
  12909. image: {
  12910. source: "./media/characters/xanthos/foot.svg"
  12911. }
  12912. },
  12913. },
  12914. [
  12915. {
  12916. name: "Normal",
  12917. height: math.unit(6 + 5 / 12, "feet"),
  12918. default: true
  12919. },
  12920. {
  12921. name: "Normal+",
  12922. height: math.unit(6, "meters")
  12923. },
  12924. {
  12925. name: "Macro",
  12926. height: math.unit(40, "feet")
  12927. },
  12928. {
  12929. name: "Macro+",
  12930. height: math.unit(200, "meters")
  12931. },
  12932. {
  12933. name: "Megamacro",
  12934. height: math.unit(20, "km")
  12935. },
  12936. {
  12937. name: "Megamacro+",
  12938. height: math.unit(100, "km")
  12939. },
  12940. {
  12941. name: "Gigamacro",
  12942. height: math.unit(200, "megameters")
  12943. },
  12944. {
  12945. name: "Gigamacro+",
  12946. height: math.unit(1.5, "gigameters")
  12947. },
  12948. ]
  12949. ))
  12950. characterMakers.push(() => makeCharacter(
  12951. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12952. {
  12953. front: {
  12954. height: math.unit(6 + 3 / 12, "feet"),
  12955. weight: math.unit(215, "lb"),
  12956. name: "Front",
  12957. image: {
  12958. source: "./media/characters/grynn/front.svg",
  12959. extra: 4627 / 4209,
  12960. bottom: 0.047
  12961. }
  12962. },
  12963. },
  12964. [
  12965. {
  12966. name: "Micro",
  12967. height: math.unit(6, "inches")
  12968. },
  12969. {
  12970. name: "Normal",
  12971. height: math.unit(6 + 3 / 12, "feet"),
  12972. default: true
  12973. },
  12974. {
  12975. name: "Big",
  12976. height: math.unit(104, "feet")
  12977. },
  12978. {
  12979. name: "Macro",
  12980. height: math.unit(944, "feet")
  12981. },
  12982. {
  12983. name: "Macro+",
  12984. height: math.unit(9480, "feet")
  12985. },
  12986. {
  12987. name: "Megamacro",
  12988. height: math.unit(78752, "feet")
  12989. },
  12990. {
  12991. name: "Megamacro+",
  12992. height: math.unit(630128, "feet")
  12993. },
  12994. {
  12995. name: "Megamacro++",
  12996. height: math.unit(3150695, "feet")
  12997. },
  12998. ]
  12999. ))
  13000. characterMakers.push(() => makeCharacter(
  13001. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13002. {
  13003. front: {
  13004. height: math.unit(7 + 5 / 12, "feet"),
  13005. weight: math.unit(450, "lb"),
  13006. name: "Front",
  13007. image: {
  13008. source: "./media/characters/mocha-aura/front.svg",
  13009. extra: 1907 / 1817,
  13010. bottom: 0.04
  13011. }
  13012. },
  13013. back: {
  13014. height: math.unit(7 + 5 / 12, "feet"),
  13015. weight: math.unit(450, "lb"),
  13016. name: "Back",
  13017. image: {
  13018. source: "./media/characters/mocha-aura/back.svg",
  13019. extra: 1900 / 1825,
  13020. bottom: 0.045
  13021. }
  13022. },
  13023. },
  13024. [
  13025. {
  13026. name: "Nano",
  13027. height: math.unit(1, "nm")
  13028. },
  13029. {
  13030. name: "Megamicro",
  13031. height: math.unit(1, "mm")
  13032. },
  13033. {
  13034. name: "Micro",
  13035. height: math.unit(3, "inches")
  13036. },
  13037. {
  13038. name: "Normal",
  13039. height: math.unit(7 + 5 / 12, "feet"),
  13040. default: true
  13041. },
  13042. {
  13043. name: "Macro",
  13044. height: math.unit(30, "feet")
  13045. },
  13046. {
  13047. name: "Megamacro",
  13048. height: math.unit(3500, "feet")
  13049. },
  13050. {
  13051. name: "Teramacro",
  13052. height: math.unit(500000, "miles")
  13053. },
  13054. {
  13055. name: "Petamacro",
  13056. height: math.unit(50000000000000000, "parsecs")
  13057. },
  13058. ]
  13059. ))
  13060. characterMakers.push(() => makeCharacter(
  13061. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13062. {
  13063. front: {
  13064. height: math.unit(6, "feet"),
  13065. weight: math.unit(150, "lb"),
  13066. name: "Front",
  13067. image: {
  13068. source: "./media/characters/ilisha-devya/front.svg",
  13069. extra: 1,
  13070. bottom: 0.175
  13071. }
  13072. },
  13073. back: {
  13074. height: math.unit(6, "feet"),
  13075. weight: math.unit(150, "lb"),
  13076. name: "Back",
  13077. image: {
  13078. source: "./media/characters/ilisha-devya/back.svg",
  13079. extra: 1,
  13080. bottom: 0.015
  13081. }
  13082. },
  13083. },
  13084. [
  13085. {
  13086. name: "Macro",
  13087. height: math.unit(500, "feet"),
  13088. default: true
  13089. },
  13090. {
  13091. name: "Megamacro",
  13092. height: math.unit(10, "miles")
  13093. },
  13094. {
  13095. name: "Gigamacro",
  13096. height: math.unit(100000, "miles")
  13097. },
  13098. {
  13099. name: "Examacro",
  13100. height: math.unit(1e9, "lightyears")
  13101. },
  13102. {
  13103. name: "Omniversal",
  13104. height: math.unit(1e33, "lightyears")
  13105. },
  13106. {
  13107. name: "Beyond Infinite",
  13108. height: math.unit(1e100, "lightyears")
  13109. },
  13110. ]
  13111. ))
  13112. characterMakers.push(() => makeCharacter(
  13113. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13114. {
  13115. Side: {
  13116. height: math.unit(6, "feet"),
  13117. weight: math.unit(150, "lb"),
  13118. name: "Side",
  13119. image: {
  13120. source: "./media/characters/mira/side.svg",
  13121. extra: 900 / 799,
  13122. bottom: 0.02
  13123. }
  13124. },
  13125. },
  13126. [
  13127. {
  13128. name: "Human Size",
  13129. height: math.unit(6, "feet")
  13130. },
  13131. {
  13132. name: "Macro",
  13133. height: math.unit(100, "feet"),
  13134. default: true
  13135. },
  13136. {
  13137. name: "Megamacro",
  13138. height: math.unit(10, "miles")
  13139. },
  13140. {
  13141. name: "Gigamacro",
  13142. height: math.unit(25000, "miles")
  13143. },
  13144. {
  13145. name: "Teramacro",
  13146. height: math.unit(300, "AU")
  13147. },
  13148. {
  13149. name: "Full Size",
  13150. height: math.unit(4.5e10, "lightyears")
  13151. },
  13152. ]
  13153. ))
  13154. characterMakers.push(() => makeCharacter(
  13155. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13156. {
  13157. front: {
  13158. height: math.unit(6, "feet"),
  13159. weight: math.unit(150, "lb"),
  13160. name: "Front",
  13161. image: {
  13162. source: "./media/characters/holly/front.svg",
  13163. extra: 639 / 606
  13164. }
  13165. },
  13166. back: {
  13167. height: math.unit(6, "feet"),
  13168. weight: math.unit(150, "lb"),
  13169. name: "Back",
  13170. image: {
  13171. source: "./media/characters/holly/back.svg",
  13172. extra: 623 / 598
  13173. }
  13174. },
  13175. frontWorking: {
  13176. height: math.unit(6, "feet"),
  13177. weight: math.unit(150, "lb"),
  13178. name: "Front (Working)",
  13179. image: {
  13180. source: "./media/characters/holly/front-working.svg",
  13181. extra: 607 / 577,
  13182. bottom: 0.048
  13183. }
  13184. },
  13185. },
  13186. [
  13187. {
  13188. name: "Normal",
  13189. height: math.unit(12 + 3 / 12, "feet"),
  13190. default: true
  13191. },
  13192. ]
  13193. ))
  13194. characterMakers.push(() => makeCharacter(
  13195. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13196. {
  13197. front: {
  13198. height: math.unit(6, "feet"),
  13199. weight: math.unit(150, "lb"),
  13200. name: "Front",
  13201. image: {
  13202. source: "./media/characters/porter/front.svg",
  13203. extra: 1,
  13204. bottom: 0.01
  13205. }
  13206. },
  13207. frontRobes: {
  13208. height: math.unit(6, "feet"),
  13209. weight: math.unit(150, "lb"),
  13210. name: "Front (Robes)",
  13211. image: {
  13212. source: "./media/characters/porter/front-robes.svg",
  13213. extra: 1.01,
  13214. bottom: 0.01
  13215. }
  13216. },
  13217. },
  13218. [
  13219. {
  13220. name: "Normal",
  13221. height: math.unit(11 + 9 / 12, "feet"),
  13222. default: true
  13223. },
  13224. ]
  13225. ))
  13226. characterMakers.push(() => makeCharacter(
  13227. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13228. {
  13229. legendary: {
  13230. height: math.unit(6, "feet"),
  13231. weight: math.unit(150, "lb"),
  13232. name: "Legendary",
  13233. image: {
  13234. source: "./media/characters/lucy/legendary.svg",
  13235. extra: 1355 / 1100,
  13236. bottom: 0.045
  13237. }
  13238. },
  13239. },
  13240. [
  13241. {
  13242. name: "Legendary",
  13243. height: math.unit(86882 * 2, "miles"),
  13244. default: true
  13245. },
  13246. ]
  13247. ))
  13248. characterMakers.push(() => makeCharacter(
  13249. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13250. {
  13251. front: {
  13252. height: math.unit(6, "feet"),
  13253. weight: math.unit(150, "lb"),
  13254. name: "Front",
  13255. image: {
  13256. source: "./media/characters/drusilla/front.svg",
  13257. extra: 678 / 635,
  13258. bottom: 0.03
  13259. }
  13260. },
  13261. back: {
  13262. height: math.unit(6, "feet"),
  13263. weight: math.unit(150, "lb"),
  13264. name: "Back",
  13265. image: {
  13266. source: "./media/characters/drusilla/back.svg",
  13267. extra: 678 / 635,
  13268. bottom: 0.005
  13269. }
  13270. },
  13271. },
  13272. [
  13273. {
  13274. name: "Macro",
  13275. height: math.unit(100, "feet")
  13276. },
  13277. {
  13278. name: "Canon Height",
  13279. height: math.unit(2000, "feet"),
  13280. default: true
  13281. },
  13282. ]
  13283. ))
  13284. characterMakers.push(() => makeCharacter(
  13285. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13286. {
  13287. front: {
  13288. height: math.unit(6, "feet"),
  13289. weight: math.unit(180, "lb"),
  13290. name: "Front",
  13291. image: {
  13292. source: "./media/characters/renard-thatch/front.svg",
  13293. extra: 2411 / 2275,
  13294. bottom: 0.01
  13295. }
  13296. },
  13297. frontPosing: {
  13298. height: math.unit(6, "feet"),
  13299. weight: math.unit(180, "lb"),
  13300. name: "Front (Posing)",
  13301. image: {
  13302. source: "./media/characters/renard-thatch/front-posing.svg",
  13303. extra: 2381 / 2261,
  13304. bottom: 0.01
  13305. }
  13306. },
  13307. back: {
  13308. height: math.unit(6, "feet"),
  13309. weight: math.unit(180, "lb"),
  13310. name: "Back",
  13311. image: {
  13312. source: "./media/characters/renard-thatch/back.svg",
  13313. extra: 2428 / 2288
  13314. }
  13315. },
  13316. },
  13317. [
  13318. {
  13319. name: "Micro",
  13320. height: math.unit(3, "inches")
  13321. },
  13322. {
  13323. name: "Default",
  13324. height: math.unit(6, "feet"),
  13325. default: true
  13326. },
  13327. {
  13328. name: "Macro",
  13329. height: math.unit(75, "feet")
  13330. },
  13331. ]
  13332. ))
  13333. characterMakers.push(() => makeCharacter(
  13334. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13335. {
  13336. front: {
  13337. height: math.unit(1450, "feet"),
  13338. weight: math.unit(1.21e6, "tons"),
  13339. name: "Front",
  13340. image: {
  13341. source: "./media/characters/sekvra/front.svg",
  13342. extra: 1,
  13343. bottom: 0.03
  13344. }
  13345. },
  13346. frontClothed: {
  13347. height: math.unit(1450, "feet"),
  13348. weight: math.unit(1.21e6, "tons"),
  13349. name: "Front (Clothed)",
  13350. image: {
  13351. source: "./media/characters/sekvra/front-clothed.svg",
  13352. extra: 1,
  13353. bottom: 0.03
  13354. }
  13355. },
  13356. side: {
  13357. height: math.unit(1450, "feet"),
  13358. weight: math.unit(1.21e6, "tons"),
  13359. name: "Side",
  13360. image: {
  13361. source: "./media/characters/sekvra/side.svg",
  13362. extra: 1,
  13363. bottom: 0.025
  13364. }
  13365. },
  13366. back: {
  13367. height: math.unit(1450, "feet"),
  13368. weight: math.unit(1.21e6, "tons"),
  13369. name: "Back",
  13370. image: {
  13371. source: "./media/characters/sekvra/back.svg",
  13372. extra: 1,
  13373. bottom: 0.005
  13374. }
  13375. },
  13376. },
  13377. [
  13378. {
  13379. name: "Macro",
  13380. height: math.unit(1450, "feet"),
  13381. default: true
  13382. },
  13383. {
  13384. name: "Megamacro",
  13385. height: math.unit(15000, "feet")
  13386. },
  13387. ]
  13388. ))
  13389. characterMakers.push(() => makeCharacter(
  13390. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13391. {
  13392. front: {
  13393. height: math.unit(6, "feet"),
  13394. weight: math.unit(150, "lb"),
  13395. name: "Front",
  13396. image: {
  13397. source: "./media/characters/carmine/front.svg",
  13398. extra: 1,
  13399. bottom: 0.035
  13400. }
  13401. },
  13402. frontArmor: {
  13403. height: math.unit(6, "feet"),
  13404. weight: math.unit(150, "lb"),
  13405. name: "Front (Armor)",
  13406. image: {
  13407. source: "./media/characters/carmine/front-armor.svg",
  13408. extra: 1,
  13409. bottom: 0.035
  13410. }
  13411. },
  13412. },
  13413. [
  13414. {
  13415. name: "Large",
  13416. height: math.unit(1, "mile")
  13417. },
  13418. {
  13419. name: "Huge",
  13420. height: math.unit(40, "miles"),
  13421. default: true
  13422. },
  13423. {
  13424. name: "Colossal",
  13425. height: math.unit(2500, "miles")
  13426. },
  13427. ]
  13428. ))
  13429. characterMakers.push(() => makeCharacter(
  13430. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13431. {
  13432. front: {
  13433. height: math.unit(6, "feet"),
  13434. weight: math.unit(150, "lb"),
  13435. name: "Front",
  13436. image: {
  13437. source: "./media/characters/elyssia/front.svg",
  13438. extra: 2201 / 2035,
  13439. bottom: 0.05
  13440. }
  13441. },
  13442. frontClothed: {
  13443. height: math.unit(6, "feet"),
  13444. weight: math.unit(150, "lb"),
  13445. name: "Front (Clothed)",
  13446. image: {
  13447. source: "./media/characters/elyssia/front-clothed.svg",
  13448. extra: 2201 / 2035,
  13449. bottom: 0.05
  13450. }
  13451. },
  13452. back: {
  13453. height: math.unit(6, "feet"),
  13454. weight: math.unit(150, "lb"),
  13455. name: "Back",
  13456. image: {
  13457. source: "./media/characters/elyssia/back.svg",
  13458. extra: 2201 / 2035,
  13459. bottom: 0.013
  13460. }
  13461. },
  13462. },
  13463. [
  13464. {
  13465. name: "Smaller",
  13466. height: math.unit(150, "feet")
  13467. },
  13468. {
  13469. name: "Standard",
  13470. height: math.unit(1400, "feet"),
  13471. default: true
  13472. },
  13473. {
  13474. name: "Distracted",
  13475. height: math.unit(15000, "feet")
  13476. },
  13477. ]
  13478. ))
  13479. characterMakers.push(() => makeCharacter(
  13480. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13481. {
  13482. front: {
  13483. height: math.unit(7 + 4/12, "feet"),
  13484. weight: math.unit(690, "lb"),
  13485. name: "Front",
  13486. image: {
  13487. source: "./media/characters/geno-maxwell/front.svg",
  13488. extra: 984/856,
  13489. bottom: 87/1071
  13490. }
  13491. },
  13492. back: {
  13493. height: math.unit(7 + 4/12, "feet"),
  13494. weight: math.unit(690, "lb"),
  13495. name: "Back",
  13496. image: {
  13497. source: "./media/characters/geno-maxwell/back.svg",
  13498. extra: 981/854,
  13499. bottom: 57/1038
  13500. }
  13501. },
  13502. frontCostume: {
  13503. height: math.unit(7 + 4/12, "feet"),
  13504. weight: math.unit(690, "lb"),
  13505. name: "Front (Costume)",
  13506. image: {
  13507. source: "./media/characters/geno-maxwell/front-costume.svg",
  13508. extra: 984/856,
  13509. bottom: 87/1071
  13510. }
  13511. },
  13512. backcostume: {
  13513. height: math.unit(7 + 4/12, "feet"),
  13514. weight: math.unit(690, "lb"),
  13515. name: "Back (Costume)",
  13516. image: {
  13517. source: "./media/characters/geno-maxwell/back-costume.svg",
  13518. extra: 981/854,
  13519. bottom: 57/1038
  13520. }
  13521. },
  13522. },
  13523. [
  13524. {
  13525. name: "Micro",
  13526. height: math.unit(3, "inches")
  13527. },
  13528. {
  13529. name: "Normal",
  13530. height: math.unit(7 + 4 / 12, "feet"),
  13531. default: true
  13532. },
  13533. {
  13534. name: "Macro",
  13535. height: math.unit(220, "feet")
  13536. },
  13537. {
  13538. name: "Megamacro",
  13539. height: math.unit(11, "miles")
  13540. },
  13541. ]
  13542. ))
  13543. characterMakers.push(() => makeCharacter(
  13544. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13545. {
  13546. front: {
  13547. height: math.unit(7 + 4/12, "feet"),
  13548. weight: math.unit(750, "lb"),
  13549. name: "Front",
  13550. image: {
  13551. source: "./media/characters/regena-maxwell/front.svg",
  13552. extra: 984/856,
  13553. bottom: 87/1071
  13554. }
  13555. },
  13556. back: {
  13557. height: math.unit(7 + 4/12, "feet"),
  13558. weight: math.unit(750, "lb"),
  13559. name: "Back",
  13560. image: {
  13561. source: "./media/characters/regena-maxwell/back.svg",
  13562. extra: 981/854,
  13563. bottom: 57/1038
  13564. }
  13565. },
  13566. frontCostume: {
  13567. height: math.unit(7 + 4/12, "feet"),
  13568. weight: math.unit(750, "lb"),
  13569. name: "Front (Costume)",
  13570. image: {
  13571. source: "./media/characters/regena-maxwell/front-costume.svg",
  13572. extra: 984/856,
  13573. bottom: 87/1071
  13574. }
  13575. },
  13576. backcostume: {
  13577. height: math.unit(7 + 4/12, "feet"),
  13578. weight: math.unit(750, "lb"),
  13579. name: "Back (Costume)",
  13580. image: {
  13581. source: "./media/characters/regena-maxwell/back-costume.svg",
  13582. extra: 981/854,
  13583. bottom: 57/1038
  13584. }
  13585. },
  13586. },
  13587. [
  13588. {
  13589. name: "Normal",
  13590. height: math.unit(7 + 4 / 12, "feet"),
  13591. default: true
  13592. },
  13593. {
  13594. name: "Macro",
  13595. height: math.unit(220, "feet")
  13596. },
  13597. {
  13598. name: "Megamacro",
  13599. height: math.unit(11, "miles")
  13600. },
  13601. ]
  13602. ))
  13603. characterMakers.push(() => makeCharacter(
  13604. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13605. {
  13606. front: {
  13607. height: math.unit(6, "feet"),
  13608. weight: math.unit(150, "lb"),
  13609. name: "Front",
  13610. image: {
  13611. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13612. extra: 860 / 690,
  13613. bottom: 0.03
  13614. }
  13615. },
  13616. },
  13617. [
  13618. {
  13619. name: "Normal",
  13620. height: math.unit(1.7, "meters"),
  13621. default: true
  13622. },
  13623. ]
  13624. ))
  13625. characterMakers.push(() => makeCharacter(
  13626. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13627. {
  13628. front: {
  13629. height: math.unit(6, "feet"),
  13630. weight: math.unit(150, "lb"),
  13631. name: "Front",
  13632. image: {
  13633. source: "./media/characters/quilly/front.svg",
  13634. extra: 890 / 776
  13635. }
  13636. },
  13637. },
  13638. [
  13639. {
  13640. name: "Gigamacro",
  13641. height: math.unit(404090, "miles"),
  13642. default: true
  13643. },
  13644. ]
  13645. ))
  13646. characterMakers.push(() => makeCharacter(
  13647. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13648. {
  13649. front: {
  13650. height: math.unit(7 + 8 / 12, "feet"),
  13651. weight: math.unit(350, "lb"),
  13652. name: "Front",
  13653. image: {
  13654. source: "./media/characters/tempest/front.svg",
  13655. extra: 1175 / 1086,
  13656. bottom: 0.02
  13657. }
  13658. },
  13659. },
  13660. [
  13661. {
  13662. name: "Normal",
  13663. height: math.unit(7 + 8 / 12, "feet"),
  13664. default: true
  13665. },
  13666. ]
  13667. ))
  13668. characterMakers.push(() => makeCharacter(
  13669. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13670. {
  13671. side: {
  13672. height: math.unit(4 + 5 / 12, "feet"),
  13673. weight: math.unit(80, "lb"),
  13674. name: "Side",
  13675. image: {
  13676. source: "./media/characters/rodger/side.svg",
  13677. extra: 1235 / 1118
  13678. }
  13679. },
  13680. },
  13681. [
  13682. {
  13683. name: "Micro",
  13684. height: math.unit(1, "inch")
  13685. },
  13686. {
  13687. name: "Normal",
  13688. height: math.unit(4 + 5 / 12, "feet"),
  13689. default: true
  13690. },
  13691. {
  13692. name: "Macro",
  13693. height: math.unit(120, "feet")
  13694. },
  13695. ]
  13696. ))
  13697. characterMakers.push(() => makeCharacter(
  13698. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13699. {
  13700. front: {
  13701. height: math.unit(6, "feet"),
  13702. weight: math.unit(150, "lb"),
  13703. name: "Front",
  13704. image: {
  13705. source: "./media/characters/danyel/front.svg",
  13706. extra: 1185 / 1123,
  13707. bottom: 0.05
  13708. }
  13709. },
  13710. },
  13711. [
  13712. {
  13713. name: "Shrunken",
  13714. height: math.unit(0.5, "mm")
  13715. },
  13716. {
  13717. name: "Micro",
  13718. height: math.unit(1, "mm"),
  13719. default: true
  13720. },
  13721. {
  13722. name: "Upsized",
  13723. height: math.unit(5 + 5 / 12, "feet")
  13724. },
  13725. ]
  13726. ))
  13727. characterMakers.push(() => makeCharacter(
  13728. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13729. {
  13730. front: {
  13731. height: math.unit(5 + 6 / 12, "feet"),
  13732. weight: math.unit(200, "lb"),
  13733. name: "Front",
  13734. image: {
  13735. source: "./media/characters/vivian-bijoux/front.svg",
  13736. extra: 1217/1209,
  13737. bottom: 76/1293
  13738. }
  13739. },
  13740. back: {
  13741. height: math.unit(5 + 6 / 12, "feet"),
  13742. weight: math.unit(200, "lb"),
  13743. name: "Back",
  13744. image: {
  13745. source: "./media/characters/vivian-bijoux/back.svg",
  13746. extra: 1214/1208,
  13747. bottom: 51/1265
  13748. }
  13749. },
  13750. dressed: {
  13751. height: math.unit(5 + 6 / 12, "feet"),
  13752. weight: math.unit(200, "lb"),
  13753. name: "Dressed",
  13754. image: {
  13755. source: "./media/characters/vivian-bijoux/dressed.svg",
  13756. extra: 1217/1209,
  13757. bottom: 76/1293
  13758. }
  13759. },
  13760. },
  13761. [
  13762. {
  13763. name: "Normal",
  13764. height: math.unit(5 + 6 / 12, "feet"),
  13765. default: true
  13766. },
  13767. {
  13768. name: "Bad Dream",
  13769. height: math.unit(500, "feet")
  13770. },
  13771. {
  13772. name: "Nightmare",
  13773. height: math.unit(500, "miles")
  13774. },
  13775. ]
  13776. ))
  13777. characterMakers.push(() => makeCharacter(
  13778. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13779. {
  13780. front: {
  13781. height: math.unit(6 + 1 / 12, "feet"),
  13782. weight: math.unit(260, "lb"),
  13783. name: "Front",
  13784. image: {
  13785. source: "./media/characters/zeta/front.svg",
  13786. extra: 1968 / 1889,
  13787. bottom: 0.06
  13788. }
  13789. },
  13790. back: {
  13791. height: math.unit(6 + 1 / 12, "feet"),
  13792. weight: math.unit(260, "lb"),
  13793. name: "Back",
  13794. image: {
  13795. source: "./media/characters/zeta/back.svg",
  13796. extra: 1944 / 1858,
  13797. bottom: 0.03
  13798. }
  13799. },
  13800. hand: {
  13801. height: math.unit(1.112, "feet"),
  13802. name: "Hand",
  13803. image: {
  13804. source: "./media/characters/zeta/hand.svg"
  13805. }
  13806. },
  13807. foot: {
  13808. height: math.unit(1.48, "feet"),
  13809. name: "Foot",
  13810. image: {
  13811. source: "./media/characters/zeta/foot.svg"
  13812. }
  13813. },
  13814. },
  13815. [
  13816. {
  13817. name: "Micro",
  13818. height: math.unit(6, "inches")
  13819. },
  13820. {
  13821. name: "Normal",
  13822. height: math.unit(6 + 1 / 12, "feet"),
  13823. default: true
  13824. },
  13825. {
  13826. name: "Macro",
  13827. height: math.unit(20, "feet")
  13828. },
  13829. ]
  13830. ))
  13831. characterMakers.push(() => makeCharacter(
  13832. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13833. {
  13834. front: {
  13835. height: math.unit(6, "feet"),
  13836. weight: math.unit(150, "lb"),
  13837. name: "Front",
  13838. image: {
  13839. source: "./media/characters/jamie-larsen/front.svg",
  13840. extra: 962 / 933,
  13841. bottom: 0.02
  13842. }
  13843. },
  13844. back: {
  13845. height: math.unit(6, "feet"),
  13846. weight: math.unit(150, "lb"),
  13847. name: "Back",
  13848. image: {
  13849. source: "./media/characters/jamie-larsen/back.svg",
  13850. extra: 997 / 946
  13851. }
  13852. },
  13853. },
  13854. [
  13855. {
  13856. name: "Macro",
  13857. height: math.unit(28 + 7 / 12, "feet"),
  13858. default: true
  13859. },
  13860. {
  13861. name: "Macro+",
  13862. height: math.unit(180, "feet")
  13863. },
  13864. {
  13865. name: "Megamacro",
  13866. height: math.unit(10, "miles")
  13867. },
  13868. {
  13869. name: "Gigamacro",
  13870. height: math.unit(200000, "miles")
  13871. },
  13872. ]
  13873. ))
  13874. characterMakers.push(() => makeCharacter(
  13875. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13876. {
  13877. front: {
  13878. height: math.unit(6, "feet"),
  13879. weight: math.unit(120, "lb"),
  13880. name: "Front",
  13881. image: {
  13882. source: "./media/characters/vance/front.svg",
  13883. extra: 1980 / 1890,
  13884. bottom: 0.09
  13885. }
  13886. },
  13887. back: {
  13888. height: math.unit(6, "feet"),
  13889. weight: math.unit(120, "lb"),
  13890. name: "Back",
  13891. image: {
  13892. source: "./media/characters/vance/back.svg",
  13893. extra: 2081 / 1994,
  13894. bottom: 0.014
  13895. }
  13896. },
  13897. hand: {
  13898. height: math.unit(0.88, "feet"),
  13899. name: "Hand",
  13900. image: {
  13901. source: "./media/characters/vance/hand.svg"
  13902. }
  13903. },
  13904. foot: {
  13905. height: math.unit(0.64, "feet"),
  13906. name: "Foot",
  13907. image: {
  13908. source: "./media/characters/vance/foot.svg"
  13909. }
  13910. },
  13911. },
  13912. [
  13913. {
  13914. name: "Small",
  13915. height: math.unit(90, "feet"),
  13916. default: true
  13917. },
  13918. {
  13919. name: "Macro",
  13920. height: math.unit(100, "meters")
  13921. },
  13922. {
  13923. name: "Megamacro",
  13924. height: math.unit(15, "miles")
  13925. },
  13926. ]
  13927. ))
  13928. characterMakers.push(() => makeCharacter(
  13929. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13930. {
  13931. front: {
  13932. height: math.unit(6, "feet"),
  13933. weight: math.unit(180, "lb"),
  13934. name: "Front",
  13935. image: {
  13936. source: "./media/characters/xochitl/front.svg",
  13937. extra: 2297 / 2261,
  13938. bottom: 0.065
  13939. }
  13940. },
  13941. back: {
  13942. height: math.unit(6, "feet"),
  13943. weight: math.unit(180, "lb"),
  13944. name: "Back",
  13945. image: {
  13946. source: "./media/characters/xochitl/back.svg",
  13947. extra: 2386 / 2354,
  13948. bottom: 0.01
  13949. }
  13950. },
  13951. foot: {
  13952. height: math.unit(6 / 5 * 1.15, "feet"),
  13953. weight: math.unit(150, "lb"),
  13954. name: "Foot",
  13955. image: {
  13956. source: "./media/characters/xochitl/foot.svg"
  13957. }
  13958. },
  13959. },
  13960. [
  13961. {
  13962. name: "Macro",
  13963. height: math.unit(80, "feet")
  13964. },
  13965. {
  13966. name: "Macro+",
  13967. height: math.unit(400, "feet"),
  13968. default: true
  13969. },
  13970. {
  13971. name: "Gigamacro",
  13972. height: math.unit(80000, "miles")
  13973. },
  13974. {
  13975. name: "Gigamacro+",
  13976. height: math.unit(400000, "miles")
  13977. },
  13978. {
  13979. name: "Teramacro",
  13980. height: math.unit(300, "AU")
  13981. },
  13982. ]
  13983. ))
  13984. characterMakers.push(() => makeCharacter(
  13985. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13986. {
  13987. front: {
  13988. height: math.unit(6, "feet"),
  13989. weight: math.unit(150, "lb"),
  13990. name: "Front",
  13991. image: {
  13992. source: "./media/characters/vincent/front.svg",
  13993. extra: 1130 / 1080,
  13994. bottom: 0.055
  13995. }
  13996. },
  13997. beak: {
  13998. height: math.unit(6 * 0.1, "feet"),
  13999. name: "Beak",
  14000. image: {
  14001. source: "./media/characters/vincent/beak.svg"
  14002. }
  14003. },
  14004. hand: {
  14005. height: math.unit(6 * 0.85, "feet"),
  14006. weight: math.unit(150, "lb"),
  14007. name: "Hand",
  14008. image: {
  14009. source: "./media/characters/vincent/hand.svg"
  14010. }
  14011. },
  14012. foot: {
  14013. height: math.unit(6 * 0.19, "feet"),
  14014. weight: math.unit(150, "lb"),
  14015. name: "Foot",
  14016. image: {
  14017. source: "./media/characters/vincent/foot.svg"
  14018. }
  14019. },
  14020. },
  14021. [
  14022. {
  14023. name: "Base",
  14024. height: math.unit(6 + 5 / 12, "feet"),
  14025. default: true
  14026. },
  14027. {
  14028. name: "Macro",
  14029. height: math.unit(300, "feet")
  14030. },
  14031. {
  14032. name: "Megamacro",
  14033. height: math.unit(2, "miles")
  14034. },
  14035. {
  14036. name: "Gigamacro",
  14037. height: math.unit(1000, "miles")
  14038. },
  14039. ]
  14040. ))
  14041. characterMakers.push(() => makeCharacter(
  14042. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14043. {
  14044. front: {
  14045. height: math.unit(2, "meters"),
  14046. weight: math.unit(500, "kg"),
  14047. name: "Front",
  14048. image: {
  14049. source: "./media/characters/coatl/front.svg",
  14050. extra: 3948 / 3500,
  14051. bottom: 0.082
  14052. }
  14053. },
  14054. },
  14055. [
  14056. {
  14057. name: "Normal",
  14058. height: math.unit(4, "meters")
  14059. },
  14060. {
  14061. name: "Macro",
  14062. height: math.unit(100, "meters"),
  14063. default: true
  14064. },
  14065. {
  14066. name: "Macro+",
  14067. height: math.unit(300, "meters")
  14068. },
  14069. {
  14070. name: "Megamacro",
  14071. height: math.unit(3, "gigameters")
  14072. },
  14073. {
  14074. name: "Megamacro+",
  14075. height: math.unit(300, "terameters")
  14076. },
  14077. {
  14078. name: "Megamacro++",
  14079. height: math.unit(3, "lightyears")
  14080. },
  14081. ]
  14082. ))
  14083. characterMakers.push(() => makeCharacter(
  14084. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14085. {
  14086. front: {
  14087. height: math.unit(6, "feet"),
  14088. weight: math.unit(50, "kg"),
  14089. name: "front",
  14090. image: {
  14091. source: "./media/characters/shiroryu/front.svg",
  14092. extra: 1990 / 1935
  14093. }
  14094. },
  14095. },
  14096. [
  14097. {
  14098. name: "Mortal Mingling",
  14099. height: math.unit(3, "meters")
  14100. },
  14101. {
  14102. name: "Kaiju-ish",
  14103. height: math.unit(250, "meters")
  14104. },
  14105. {
  14106. name: "Somewhat Godly",
  14107. height: math.unit(400, "km"),
  14108. default: true
  14109. },
  14110. {
  14111. name: "Planetary",
  14112. height: math.unit(300, "megameters")
  14113. },
  14114. {
  14115. name: "Galaxy-dwarfing",
  14116. height: math.unit(450, "kiloparsecs")
  14117. },
  14118. {
  14119. name: "Universe Eater",
  14120. height: math.unit(150, "gigaparsecs")
  14121. },
  14122. {
  14123. name: "Almost Immeasurable",
  14124. height: math.unit(1.3e266, "yottaparsecs")
  14125. },
  14126. ]
  14127. ))
  14128. characterMakers.push(() => makeCharacter(
  14129. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14130. {
  14131. front: {
  14132. height: math.unit(6, "feet"),
  14133. weight: math.unit(150, "lb"),
  14134. name: "Front",
  14135. image: {
  14136. source: "./media/characters/umeko/front.svg",
  14137. extra: 1,
  14138. bottom: 0.019
  14139. }
  14140. },
  14141. frontArmored: {
  14142. height: math.unit(6, "feet"),
  14143. weight: math.unit(150, "lb"),
  14144. name: "Front (Armored)",
  14145. image: {
  14146. source: "./media/characters/umeko/front-armored.svg",
  14147. extra: 1,
  14148. bottom: 0.021
  14149. }
  14150. },
  14151. },
  14152. [
  14153. {
  14154. name: "Macro",
  14155. height: math.unit(220, "feet"),
  14156. default: true
  14157. },
  14158. {
  14159. name: "Guardian Dragon",
  14160. height: math.unit(50, "miles")
  14161. },
  14162. {
  14163. name: "Cosmic",
  14164. height: math.unit(800000, "miles")
  14165. },
  14166. ]
  14167. ))
  14168. characterMakers.push(() => makeCharacter(
  14169. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14170. {
  14171. front: {
  14172. height: math.unit(6, "feet"),
  14173. weight: math.unit(150, "lb"),
  14174. name: "Front",
  14175. image: {
  14176. source: "./media/characters/cassidy/front.svg",
  14177. extra: 1,
  14178. bottom: 0.043
  14179. }
  14180. },
  14181. },
  14182. [
  14183. {
  14184. name: "Canon Height",
  14185. height: math.unit(120, "feet"),
  14186. default: true
  14187. },
  14188. {
  14189. name: "Macro+",
  14190. height: math.unit(400, "feet")
  14191. },
  14192. {
  14193. name: "Macro++",
  14194. height: math.unit(4000, "feet")
  14195. },
  14196. {
  14197. name: "Megamacro",
  14198. height: math.unit(3, "miles")
  14199. },
  14200. ]
  14201. ))
  14202. characterMakers.push(() => makeCharacter(
  14203. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14204. {
  14205. front: {
  14206. height: math.unit(6, "feet"),
  14207. weight: math.unit(150, "lb"),
  14208. name: "Front",
  14209. image: {
  14210. source: "./media/characters/isaac/front.svg",
  14211. extra: 896 / 815,
  14212. bottom: 0.11
  14213. }
  14214. },
  14215. },
  14216. [
  14217. {
  14218. name: "Human Size",
  14219. height: math.unit(8, "feet"),
  14220. default: true
  14221. },
  14222. {
  14223. name: "Macro",
  14224. height: math.unit(400, "feet")
  14225. },
  14226. {
  14227. name: "Megamacro",
  14228. height: math.unit(50, "miles")
  14229. },
  14230. {
  14231. name: "Canon Height",
  14232. height: math.unit(200, "AU")
  14233. },
  14234. ]
  14235. ))
  14236. characterMakers.push(() => makeCharacter(
  14237. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14238. {
  14239. front: {
  14240. height: math.unit(6, "feet"),
  14241. weight: math.unit(72, "kg"),
  14242. name: "Front",
  14243. image: {
  14244. source: "./media/characters/sleekit/front.svg",
  14245. extra: 4693 / 4487,
  14246. bottom: 0.012
  14247. }
  14248. },
  14249. },
  14250. [
  14251. {
  14252. name: "Minimum Height",
  14253. height: math.unit(10, "meters")
  14254. },
  14255. {
  14256. name: "Smaller",
  14257. height: math.unit(25, "meters")
  14258. },
  14259. {
  14260. name: "Larger",
  14261. height: math.unit(38, "meters"),
  14262. default: true
  14263. },
  14264. {
  14265. name: "Maximum height",
  14266. height: math.unit(100, "meters")
  14267. },
  14268. ]
  14269. ))
  14270. characterMakers.push(() => makeCharacter(
  14271. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14272. {
  14273. front: {
  14274. height: math.unit(6, "feet"),
  14275. weight: math.unit(150, "lb"),
  14276. name: "Front",
  14277. image: {
  14278. source: "./media/characters/nillia/front.svg",
  14279. extra: 2195 / 2037,
  14280. bottom: 0.005
  14281. }
  14282. },
  14283. back: {
  14284. height: math.unit(6, "feet"),
  14285. weight: math.unit(150, "lb"),
  14286. name: "Back",
  14287. image: {
  14288. source: "./media/characters/nillia/back.svg",
  14289. extra: 2195 / 2037,
  14290. bottom: 0.005
  14291. }
  14292. },
  14293. },
  14294. [
  14295. {
  14296. name: "Canon Height",
  14297. height: math.unit(489, "feet"),
  14298. default: true
  14299. }
  14300. ]
  14301. ))
  14302. characterMakers.push(() => makeCharacter(
  14303. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14304. {
  14305. front: {
  14306. height: math.unit(6, "feet"),
  14307. weight: math.unit(150, "lb"),
  14308. name: "Front",
  14309. image: {
  14310. source: "./media/characters/mesmyriza/front.svg",
  14311. extra: 2067 / 1784,
  14312. bottom: 0.035
  14313. }
  14314. },
  14315. foot: {
  14316. height: math.unit(6 / (250 / 35), "feet"),
  14317. name: "Foot",
  14318. image: {
  14319. source: "./media/characters/mesmyriza/foot.svg"
  14320. }
  14321. },
  14322. },
  14323. [
  14324. {
  14325. name: "Macro",
  14326. height: math.unit(457, "meters"),
  14327. default: true
  14328. },
  14329. {
  14330. name: "Megamacro",
  14331. height: math.unit(8, "megameters")
  14332. },
  14333. ]
  14334. ))
  14335. characterMakers.push(() => makeCharacter(
  14336. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14337. {
  14338. front: {
  14339. height: math.unit(6, "feet"),
  14340. weight: math.unit(250, "lb"),
  14341. name: "Front",
  14342. image: {
  14343. source: "./media/characters/saudade/front.svg",
  14344. extra: 1172 / 1139,
  14345. bottom: 0.035
  14346. }
  14347. },
  14348. },
  14349. [
  14350. {
  14351. name: "Micro",
  14352. height: math.unit(3, "inches")
  14353. },
  14354. {
  14355. name: "Normal",
  14356. height: math.unit(6, "feet"),
  14357. default: true
  14358. },
  14359. {
  14360. name: "Macro",
  14361. height: math.unit(50, "feet")
  14362. },
  14363. {
  14364. name: "Megamacro",
  14365. height: math.unit(2800, "feet")
  14366. },
  14367. ]
  14368. ))
  14369. characterMakers.push(() => makeCharacter(
  14370. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14371. {
  14372. front: {
  14373. height: math.unit(5 + 4 / 12, "feet"),
  14374. weight: math.unit(100, "lb"),
  14375. name: "Front",
  14376. image: {
  14377. source: "./media/characters/keireer/front.svg",
  14378. extra: 716 / 666,
  14379. bottom: 0.05
  14380. }
  14381. },
  14382. },
  14383. [
  14384. {
  14385. name: "Normal",
  14386. height: math.unit(5 + 4 / 12, "feet"),
  14387. default: true
  14388. },
  14389. ]
  14390. ))
  14391. characterMakers.push(() => makeCharacter(
  14392. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14393. {
  14394. front: {
  14395. height: math.unit(6, "feet"),
  14396. weight: math.unit(90, "kg"),
  14397. name: "Front",
  14398. image: {
  14399. source: "./media/characters/mirja/front.svg",
  14400. extra: 1789 / 1683,
  14401. bottom: 0.05
  14402. }
  14403. },
  14404. frontDressed: {
  14405. height: math.unit(6, "feet"),
  14406. weight: math.unit(90, "lb"),
  14407. name: "Front (Dressed)",
  14408. image: {
  14409. source: "./media/characters/mirja/front-dressed.svg",
  14410. extra: 1789 / 1683,
  14411. bottom: 0.05
  14412. }
  14413. },
  14414. back: {
  14415. height: math.unit(6, "feet"),
  14416. weight: math.unit(90, "lb"),
  14417. name: "Back",
  14418. image: {
  14419. source: "./media/characters/mirja/back.svg",
  14420. extra: 953 / 917,
  14421. bottom: 0.017
  14422. }
  14423. },
  14424. },
  14425. [
  14426. {
  14427. name: "\"Incognito\"",
  14428. height: math.unit(3, "meters")
  14429. },
  14430. {
  14431. name: "Strolling Size",
  14432. height: math.unit(15, "km")
  14433. },
  14434. {
  14435. name: "Larger Strolling Size",
  14436. height: math.unit(400, "km")
  14437. },
  14438. {
  14439. name: "Preferred Size",
  14440. height: math.unit(5000, "km")
  14441. },
  14442. {
  14443. name: "True Size",
  14444. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14445. default: true
  14446. },
  14447. ]
  14448. ))
  14449. characterMakers.push(() => makeCharacter(
  14450. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14451. {
  14452. front: {
  14453. height: math.unit(15, "feet"),
  14454. weight: math.unit(880, "kg"),
  14455. name: "Front",
  14456. image: {
  14457. source: "./media/characters/nightraver/front.svg",
  14458. extra: 2444 / 2160,
  14459. bottom: 0.027
  14460. }
  14461. },
  14462. back: {
  14463. height: math.unit(15, "feet"),
  14464. weight: math.unit(880, "kg"),
  14465. name: "Back",
  14466. image: {
  14467. source: "./media/characters/nightraver/back.svg",
  14468. extra: 2309 / 2180,
  14469. bottom: 0.005
  14470. }
  14471. },
  14472. sole: {
  14473. height: math.unit(2.878, "feet"),
  14474. name: "Sole",
  14475. image: {
  14476. source: "./media/characters/nightraver/sole.svg"
  14477. }
  14478. },
  14479. foot: {
  14480. height: math.unit(2.285, "feet"),
  14481. name: "Foot",
  14482. image: {
  14483. source: "./media/characters/nightraver/foot.svg"
  14484. }
  14485. },
  14486. maw: {
  14487. height: math.unit(2.67, "feet"),
  14488. name: "Maw",
  14489. image: {
  14490. source: "./media/characters/nightraver/maw.svg"
  14491. }
  14492. },
  14493. },
  14494. [
  14495. {
  14496. name: "Micro",
  14497. height: math.unit(1, "cm")
  14498. },
  14499. {
  14500. name: "Normal",
  14501. height: math.unit(15, "feet"),
  14502. default: true
  14503. },
  14504. {
  14505. name: "Macro",
  14506. height: math.unit(300, "feet")
  14507. },
  14508. {
  14509. name: "Megamacro",
  14510. height: math.unit(300, "miles")
  14511. },
  14512. {
  14513. name: "Gigamacro",
  14514. height: math.unit(10000, "miles")
  14515. },
  14516. ]
  14517. ))
  14518. characterMakers.push(() => makeCharacter(
  14519. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14520. {
  14521. side: {
  14522. height: math.unit(2, "inches"),
  14523. weight: math.unit(5, "grams"),
  14524. name: "Side",
  14525. image: {
  14526. source: "./media/characters/arc/side.svg"
  14527. }
  14528. },
  14529. },
  14530. [
  14531. {
  14532. name: "Micro",
  14533. height: math.unit(2, "inches"),
  14534. default: true
  14535. },
  14536. ]
  14537. ))
  14538. characterMakers.push(() => makeCharacter(
  14539. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14540. {
  14541. front: {
  14542. height: math.unit(1.1938, "meters"),
  14543. weight: math.unit(54, "kg"),
  14544. name: "Front",
  14545. image: {
  14546. source: "./media/characters/nebula-shahar/front.svg",
  14547. extra: 1642 / 1436,
  14548. bottom: 0.06
  14549. }
  14550. },
  14551. },
  14552. [
  14553. {
  14554. name: "Megamicro",
  14555. height: math.unit(0.3, "mm")
  14556. },
  14557. {
  14558. name: "Micro",
  14559. height: math.unit(3, "cm")
  14560. },
  14561. {
  14562. name: "Normal",
  14563. height: math.unit(138, "cm"),
  14564. default: true
  14565. },
  14566. {
  14567. name: "Macro",
  14568. height: math.unit(30, "m")
  14569. },
  14570. ]
  14571. ))
  14572. characterMakers.push(() => makeCharacter(
  14573. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14574. {
  14575. front: {
  14576. height: math.unit(5.24, "feet"),
  14577. weight: math.unit(150, "lb"),
  14578. name: "Front",
  14579. image: {
  14580. source: "./media/characters/shayla/front.svg",
  14581. extra: 1512 / 1414,
  14582. bottom: 0.01
  14583. }
  14584. },
  14585. back: {
  14586. height: math.unit(5.24, "feet"),
  14587. weight: math.unit(150, "lb"),
  14588. name: "Back",
  14589. image: {
  14590. source: "./media/characters/shayla/back.svg",
  14591. extra: 1512 / 1414
  14592. }
  14593. },
  14594. hand: {
  14595. height: math.unit(0.7781496062992126, "feet"),
  14596. name: "Hand",
  14597. image: {
  14598. source: "./media/characters/shayla/hand.svg"
  14599. }
  14600. },
  14601. foot: {
  14602. height: math.unit(1.4206036745406823, "feet"),
  14603. name: "Foot",
  14604. image: {
  14605. source: "./media/characters/shayla/foot.svg"
  14606. }
  14607. },
  14608. },
  14609. [
  14610. {
  14611. name: "Micro",
  14612. height: math.unit(0.32, "feet")
  14613. },
  14614. {
  14615. name: "Normal",
  14616. height: math.unit(5.24, "feet"),
  14617. default: true
  14618. },
  14619. {
  14620. name: "Macro",
  14621. height: math.unit(492.12, "feet")
  14622. },
  14623. {
  14624. name: "Megamacro",
  14625. height: math.unit(186.41, "miles")
  14626. },
  14627. ]
  14628. ))
  14629. characterMakers.push(() => makeCharacter(
  14630. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14631. {
  14632. front: {
  14633. height: math.unit(2.2, "m"),
  14634. weight: math.unit(120, "kg"),
  14635. name: "Front",
  14636. image: {
  14637. source: "./media/characters/pia-jr/front.svg",
  14638. extra: 1000 / 970,
  14639. bottom: 0.035
  14640. }
  14641. },
  14642. hand: {
  14643. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14644. name: "Hand",
  14645. image: {
  14646. source: "./media/characters/pia-jr/hand.svg"
  14647. }
  14648. },
  14649. paw: {
  14650. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14651. name: "Paw",
  14652. image: {
  14653. source: "./media/characters/pia-jr/paw.svg"
  14654. }
  14655. },
  14656. },
  14657. [
  14658. {
  14659. name: "Micro",
  14660. height: math.unit(1.2, "cm")
  14661. },
  14662. {
  14663. name: "Normal",
  14664. height: math.unit(2.2, "m"),
  14665. default: true
  14666. },
  14667. {
  14668. name: "Macro",
  14669. height: math.unit(180, "m")
  14670. },
  14671. {
  14672. name: "Megamacro",
  14673. height: math.unit(420, "km")
  14674. },
  14675. ]
  14676. ))
  14677. characterMakers.push(() => makeCharacter(
  14678. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14679. {
  14680. front: {
  14681. height: math.unit(2, "m"),
  14682. weight: math.unit(115, "kg"),
  14683. name: "Front",
  14684. image: {
  14685. source: "./media/characters/pia-sr/front.svg",
  14686. extra: 760 / 730,
  14687. bottom: 0.015
  14688. }
  14689. },
  14690. back: {
  14691. height: math.unit(2, "m"),
  14692. weight: math.unit(115, "kg"),
  14693. name: "Back",
  14694. image: {
  14695. source: "./media/characters/pia-sr/back.svg",
  14696. extra: 760 / 730,
  14697. bottom: 0.01
  14698. }
  14699. },
  14700. hand: {
  14701. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14702. name: "Hand",
  14703. image: {
  14704. source: "./media/characters/pia-sr/hand.svg"
  14705. }
  14706. },
  14707. foot: {
  14708. height: math.unit(1.83, "feet"),
  14709. name: "Foot",
  14710. image: {
  14711. source: "./media/characters/pia-sr/foot.svg"
  14712. }
  14713. },
  14714. },
  14715. [
  14716. {
  14717. name: "Micro",
  14718. height: math.unit(88, "mm")
  14719. },
  14720. {
  14721. name: "Normal",
  14722. height: math.unit(2, "m"),
  14723. default: true
  14724. },
  14725. {
  14726. name: "Macro",
  14727. height: math.unit(200, "m")
  14728. },
  14729. {
  14730. name: "Megamacro",
  14731. height: math.unit(420, "km")
  14732. },
  14733. ]
  14734. ))
  14735. characterMakers.push(() => makeCharacter(
  14736. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14737. {
  14738. front: {
  14739. height: math.unit(8 + 2 / 12, "feet"),
  14740. weight: math.unit(300, "lb"),
  14741. name: "Front",
  14742. image: {
  14743. source: "./media/characters/kibibyte/front.svg",
  14744. extra: 2221 / 2098,
  14745. bottom: 0.04
  14746. }
  14747. },
  14748. },
  14749. [
  14750. {
  14751. name: "Normal",
  14752. height: math.unit(8 + 2 / 12, "feet"),
  14753. default: true
  14754. },
  14755. {
  14756. name: "Socialable Macro",
  14757. height: math.unit(50, "feet")
  14758. },
  14759. {
  14760. name: "Macro",
  14761. height: math.unit(300, "feet")
  14762. },
  14763. {
  14764. name: "Megamacro",
  14765. height: math.unit(500, "miles")
  14766. },
  14767. ]
  14768. ))
  14769. characterMakers.push(() => makeCharacter(
  14770. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14771. {
  14772. front: {
  14773. height: math.unit(6, "feet"),
  14774. weight: math.unit(150, "lb"),
  14775. name: "Front",
  14776. image: {
  14777. source: "./media/characters/felix/front.svg",
  14778. extra: 762 / 722,
  14779. bottom: 0.02
  14780. }
  14781. },
  14782. frontClothed: {
  14783. height: math.unit(6, "feet"),
  14784. weight: math.unit(150, "lb"),
  14785. name: "Front (Clothed)",
  14786. image: {
  14787. source: "./media/characters/felix/front-clothed.svg",
  14788. extra: 762 / 722,
  14789. bottom: 0.02
  14790. }
  14791. },
  14792. },
  14793. [
  14794. {
  14795. name: "Normal",
  14796. height: math.unit(6 + 8 / 12, "feet"),
  14797. default: true
  14798. },
  14799. {
  14800. name: "Macro",
  14801. height: math.unit(2600, "feet")
  14802. },
  14803. {
  14804. name: "Megamacro",
  14805. height: math.unit(450, "miles")
  14806. },
  14807. ]
  14808. ))
  14809. characterMakers.push(() => makeCharacter(
  14810. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14811. {
  14812. front: {
  14813. height: math.unit(6 + 1 / 12, "feet"),
  14814. weight: math.unit(250, "lb"),
  14815. name: "Front",
  14816. image: {
  14817. source: "./media/characters/tobo/front.svg",
  14818. extra: 608 / 586,
  14819. bottom: 0.023
  14820. }
  14821. },
  14822. back: {
  14823. height: math.unit(6 + 1 / 12, "feet"),
  14824. weight: math.unit(250, "lb"),
  14825. name: "Back",
  14826. image: {
  14827. source: "./media/characters/tobo/back.svg",
  14828. extra: 608 / 586
  14829. }
  14830. },
  14831. },
  14832. [
  14833. {
  14834. name: "Nano",
  14835. height: math.unit(2, "nm")
  14836. },
  14837. {
  14838. name: "Megamicro",
  14839. height: math.unit(0.1, "mm")
  14840. },
  14841. {
  14842. name: "Micro",
  14843. height: math.unit(1, "inch"),
  14844. default: true
  14845. },
  14846. {
  14847. name: "Human-sized",
  14848. height: math.unit(6 + 1 / 12, "feet")
  14849. },
  14850. {
  14851. name: "Macro",
  14852. height: math.unit(250, "feet")
  14853. },
  14854. {
  14855. name: "Megamacro",
  14856. height: math.unit(75, "miles")
  14857. },
  14858. {
  14859. name: "Texas-sized",
  14860. height: math.unit(750, "miles")
  14861. },
  14862. {
  14863. name: "Teramacro",
  14864. height: math.unit(50000, "miles")
  14865. },
  14866. ]
  14867. ))
  14868. characterMakers.push(() => makeCharacter(
  14869. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14870. {
  14871. front: {
  14872. height: math.unit(6, "feet"),
  14873. weight: math.unit(269, "lb"),
  14874. name: "Front",
  14875. image: {
  14876. source: "./media/characters/danny-kapowsky/front.svg",
  14877. extra: 766 / 736,
  14878. bottom: 0.044
  14879. }
  14880. },
  14881. back: {
  14882. height: math.unit(6, "feet"),
  14883. weight: math.unit(269, "lb"),
  14884. name: "Back",
  14885. image: {
  14886. source: "./media/characters/danny-kapowsky/back.svg",
  14887. extra: 797 / 760,
  14888. bottom: 0.025
  14889. }
  14890. },
  14891. },
  14892. [
  14893. {
  14894. name: "Macro",
  14895. height: math.unit(150, "feet"),
  14896. default: true
  14897. },
  14898. {
  14899. name: "Macro+",
  14900. height: math.unit(200, "feet")
  14901. },
  14902. {
  14903. name: "Macro++",
  14904. height: math.unit(300, "feet")
  14905. },
  14906. {
  14907. name: "Macro+++",
  14908. height: math.unit(400, "feet")
  14909. },
  14910. ]
  14911. ))
  14912. characterMakers.push(() => makeCharacter(
  14913. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14914. {
  14915. side: {
  14916. height: math.unit(6, "feet"),
  14917. weight: math.unit(170, "lb"),
  14918. name: "Side",
  14919. image: {
  14920. source: "./media/characters/finn/side.svg",
  14921. extra: 1953 / 1807,
  14922. bottom: 0.057
  14923. }
  14924. },
  14925. },
  14926. [
  14927. {
  14928. name: "Megamacro",
  14929. height: math.unit(14445, "feet"),
  14930. default: true
  14931. },
  14932. ]
  14933. ))
  14934. characterMakers.push(() => makeCharacter(
  14935. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14936. {
  14937. front: {
  14938. height: math.unit(5 + 6 / 12, "feet"),
  14939. weight: math.unit(125, "lb"),
  14940. name: "Front",
  14941. image: {
  14942. source: "./media/characters/roy/front.svg",
  14943. extra: 1,
  14944. bottom: 0.11
  14945. }
  14946. },
  14947. },
  14948. [
  14949. {
  14950. name: "Micro",
  14951. height: math.unit(3, "inches"),
  14952. default: true
  14953. },
  14954. {
  14955. name: "Normal",
  14956. height: math.unit(5 + 6 / 12, "feet")
  14957. },
  14958. {
  14959. name: "Lesser Macro",
  14960. height: math.unit(60, "feet")
  14961. },
  14962. {
  14963. name: "Greater Macro",
  14964. height: math.unit(120, "feet")
  14965. },
  14966. ]
  14967. ))
  14968. characterMakers.push(() => makeCharacter(
  14969. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14970. {
  14971. front: {
  14972. height: math.unit(6, "feet"),
  14973. weight: math.unit(100, "lb"),
  14974. name: "Front",
  14975. image: {
  14976. source: "./media/characters/aevsivs/front.svg",
  14977. extra: 1,
  14978. bottom: 0.03
  14979. }
  14980. },
  14981. back: {
  14982. height: math.unit(6, "feet"),
  14983. weight: math.unit(100, "lb"),
  14984. name: "Back",
  14985. image: {
  14986. source: "./media/characters/aevsivs/back.svg"
  14987. }
  14988. },
  14989. },
  14990. [
  14991. {
  14992. name: "Micro",
  14993. height: math.unit(2, "inches"),
  14994. default: true
  14995. },
  14996. {
  14997. name: "Normal",
  14998. height: math.unit(5, "feet")
  14999. },
  15000. ]
  15001. ))
  15002. characterMakers.push(() => makeCharacter(
  15003. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15004. {
  15005. front: {
  15006. height: math.unit(5 + 7 / 12, "feet"),
  15007. weight: math.unit(159, "lb"),
  15008. name: "Front",
  15009. image: {
  15010. source: "./media/characters/hildegard/front.svg",
  15011. extra: 289 / 269,
  15012. bottom: 7.63 / 297.8
  15013. }
  15014. },
  15015. back: {
  15016. height: math.unit(5 + 7 / 12, "feet"),
  15017. weight: math.unit(159, "lb"),
  15018. name: "Back",
  15019. image: {
  15020. source: "./media/characters/hildegard/back.svg",
  15021. extra: 280 / 260,
  15022. bottom: 2.3 / 282
  15023. }
  15024. },
  15025. },
  15026. [
  15027. {
  15028. name: "Normal",
  15029. height: math.unit(5 + 7 / 12, "feet"),
  15030. default: true
  15031. },
  15032. ]
  15033. ))
  15034. characterMakers.push(() => makeCharacter(
  15035. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15036. {
  15037. bernard: {
  15038. height: math.unit(2 + 7 / 12, "feet"),
  15039. weight: math.unit(66, "lb"),
  15040. name: "Bernard",
  15041. rename: true,
  15042. image: {
  15043. source: "./media/characters/bernard-wilder/bernard.svg",
  15044. extra: 192 / 128,
  15045. bottom: 0.05
  15046. }
  15047. },
  15048. wilder: {
  15049. height: math.unit(5 + 8 / 12, "feet"),
  15050. weight: math.unit(143, "lb"),
  15051. name: "Wilder",
  15052. rename: true,
  15053. image: {
  15054. source: "./media/characters/bernard-wilder/wilder.svg",
  15055. extra: 361 / 312,
  15056. bottom: 0.02
  15057. }
  15058. },
  15059. },
  15060. [
  15061. {
  15062. name: "Normal",
  15063. height: math.unit(2 + 7 / 12, "feet"),
  15064. default: true
  15065. },
  15066. ]
  15067. ))
  15068. characterMakers.push(() => makeCharacter(
  15069. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15070. {
  15071. anthro: {
  15072. height: math.unit(6 + 1 / 12, "feet"),
  15073. weight: math.unit(155, "lb"),
  15074. name: "Anthro",
  15075. image: {
  15076. source: "./media/characters/hearth/anthro.svg",
  15077. extra: 260 / 250,
  15078. bottom: 0.02
  15079. }
  15080. },
  15081. feral: {
  15082. height: math.unit(3.78, "feet"),
  15083. weight: math.unit(35, "kg"),
  15084. name: "Feral",
  15085. image: {
  15086. source: "./media/characters/hearth/feral.svg",
  15087. extra: 153 / 135,
  15088. bottom: 0.03
  15089. }
  15090. },
  15091. },
  15092. [
  15093. {
  15094. name: "Normal",
  15095. height: math.unit(6 + 1 / 12, "feet"),
  15096. default: true
  15097. },
  15098. ]
  15099. ))
  15100. characterMakers.push(() => makeCharacter(
  15101. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15102. {
  15103. front: {
  15104. height: math.unit(6, "feet"),
  15105. weight: math.unit(182, "lb"),
  15106. name: "Front",
  15107. image: {
  15108. source: "./media/characters/ingrid/front.svg",
  15109. extra: 294 / 268,
  15110. bottom: 0.027
  15111. }
  15112. },
  15113. },
  15114. [
  15115. {
  15116. name: "Normal",
  15117. height: math.unit(6, "feet"),
  15118. default: true
  15119. },
  15120. ]
  15121. ))
  15122. characterMakers.push(() => makeCharacter(
  15123. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15124. {
  15125. eevee: {
  15126. height: math.unit(2 + 10 / 12, "feet"),
  15127. weight: math.unit(86, "lb"),
  15128. name: "Malgam",
  15129. image: {
  15130. source: "./media/characters/malgam/eevee.svg",
  15131. extra: 218 / 180,
  15132. bottom: 0.2
  15133. }
  15134. },
  15135. sylveon: {
  15136. height: math.unit(4, "feet"),
  15137. weight: math.unit(101, "lb"),
  15138. name: "Future Malgam",
  15139. rename: true,
  15140. image: {
  15141. source: "./media/characters/malgam/sylveon.svg",
  15142. extra: 371 / 325,
  15143. bottom: 0.015
  15144. }
  15145. },
  15146. gigantamax: {
  15147. height: math.unit(50, "feet"),
  15148. name: "Gigantamax Malgam",
  15149. rename: true,
  15150. image: {
  15151. source: "./media/characters/malgam/gigantamax.svg"
  15152. }
  15153. },
  15154. },
  15155. [
  15156. {
  15157. name: "Normal",
  15158. height: math.unit(2 + 10 / 12, "feet"),
  15159. default: true
  15160. },
  15161. ]
  15162. ))
  15163. characterMakers.push(() => makeCharacter(
  15164. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15165. {
  15166. front: {
  15167. height: math.unit(5 + 11 / 12, "feet"),
  15168. weight: math.unit(188, "lb"),
  15169. name: "Front",
  15170. image: {
  15171. source: "./media/characters/fleur/front.svg",
  15172. extra: 309 / 283,
  15173. bottom: 0.007
  15174. }
  15175. },
  15176. },
  15177. [
  15178. {
  15179. name: "Normal",
  15180. height: math.unit(5 + 11 / 12, "feet"),
  15181. default: true
  15182. },
  15183. ]
  15184. ))
  15185. characterMakers.push(() => makeCharacter(
  15186. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15187. {
  15188. front: {
  15189. height: math.unit(5 + 4 / 12, "feet"),
  15190. weight: math.unit(122, "lb"),
  15191. name: "Front",
  15192. image: {
  15193. source: "./media/characters/jude/front.svg",
  15194. extra: 288 / 273,
  15195. bottom: 0.03
  15196. }
  15197. },
  15198. },
  15199. [
  15200. {
  15201. name: "Normal",
  15202. height: math.unit(5 + 4 / 12, "feet"),
  15203. default: true
  15204. },
  15205. ]
  15206. ))
  15207. characterMakers.push(() => makeCharacter(
  15208. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15209. {
  15210. front: {
  15211. height: math.unit(5 + 11 / 12, "feet"),
  15212. weight: math.unit(190, "lb"),
  15213. name: "Front",
  15214. image: {
  15215. source: "./media/characters/seara/front.svg",
  15216. extra: 1,
  15217. bottom: 0.05
  15218. }
  15219. },
  15220. },
  15221. [
  15222. {
  15223. name: "Normal",
  15224. height: math.unit(5 + 11 / 12, "feet"),
  15225. default: true
  15226. },
  15227. ]
  15228. ))
  15229. characterMakers.push(() => makeCharacter(
  15230. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15231. {
  15232. front: {
  15233. height: math.unit(16 + 5 / 12, "feet"),
  15234. weight: math.unit(524, "lb"),
  15235. name: "Front",
  15236. image: {
  15237. source: "./media/characters/caspian/front.svg",
  15238. extra: 1,
  15239. bottom: 0.04
  15240. }
  15241. },
  15242. },
  15243. [
  15244. {
  15245. name: "Normal",
  15246. height: math.unit(16 + 5 / 12, "feet"),
  15247. default: true
  15248. },
  15249. ]
  15250. ))
  15251. characterMakers.push(() => makeCharacter(
  15252. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15253. {
  15254. front: {
  15255. height: math.unit(5 + 7 / 12, "feet"),
  15256. weight: math.unit(170, "lb"),
  15257. name: "Front",
  15258. image: {
  15259. source: "./media/characters/mika/front.svg",
  15260. extra: 1,
  15261. bottom: 0.016
  15262. }
  15263. },
  15264. },
  15265. [
  15266. {
  15267. name: "Normal",
  15268. height: math.unit(5 + 7 / 12, "feet"),
  15269. default: true
  15270. },
  15271. ]
  15272. ))
  15273. characterMakers.push(() => makeCharacter(
  15274. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15275. {
  15276. front: {
  15277. height: math.unit(6 + 2 / 12, "feet"),
  15278. weight: math.unit(268, "lb"),
  15279. name: "Front",
  15280. image: {
  15281. source: "./media/characters/sol/front.svg",
  15282. extra: 247 / 231,
  15283. bottom: 0.05
  15284. }
  15285. },
  15286. },
  15287. [
  15288. {
  15289. name: "Normal",
  15290. height: math.unit(6 + 2 / 12, "feet"),
  15291. default: true
  15292. },
  15293. ]
  15294. ))
  15295. characterMakers.push(() => makeCharacter(
  15296. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15297. {
  15298. buizel: {
  15299. height: math.unit(2 + 5 / 12, "feet"),
  15300. weight: math.unit(87, "lb"),
  15301. name: "Buizel",
  15302. image: {
  15303. source: "./media/characters/umiko/buizel.svg",
  15304. extra: 172 / 157,
  15305. bottom: 0.01
  15306. }
  15307. },
  15308. floatzel: {
  15309. height: math.unit(5 + 9 / 12, "feet"),
  15310. weight: math.unit(250, "lb"),
  15311. name: "Floatzel",
  15312. image: {
  15313. source: "./media/characters/umiko/floatzel.svg",
  15314. extra: 262 / 248
  15315. }
  15316. },
  15317. },
  15318. [
  15319. {
  15320. name: "Normal",
  15321. height: math.unit(2 + 5 / 12, "feet"),
  15322. default: true
  15323. },
  15324. ]
  15325. ))
  15326. characterMakers.push(() => makeCharacter(
  15327. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15328. {
  15329. front: {
  15330. height: math.unit(6 + 2 / 12, "feet"),
  15331. weight: math.unit(146, "lb"),
  15332. name: "Front",
  15333. image: {
  15334. source: "./media/characters/iliac/front.svg",
  15335. extra: 389 / 365,
  15336. bottom: 0.035
  15337. }
  15338. },
  15339. },
  15340. [
  15341. {
  15342. name: "Normal",
  15343. height: math.unit(6 + 2 / 12, "feet"),
  15344. default: true
  15345. },
  15346. ]
  15347. ))
  15348. characterMakers.push(() => makeCharacter(
  15349. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15350. {
  15351. front: {
  15352. height: math.unit(6, "feet"),
  15353. weight: math.unit(170, "lb"),
  15354. name: "Front",
  15355. image: {
  15356. source: "./media/characters/topaz/front.svg",
  15357. extra: 317 / 303,
  15358. bottom: 0.055
  15359. }
  15360. },
  15361. },
  15362. [
  15363. {
  15364. name: "Normal",
  15365. height: math.unit(6, "feet"),
  15366. default: true
  15367. },
  15368. ]
  15369. ))
  15370. characterMakers.push(() => makeCharacter(
  15371. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15372. {
  15373. front: {
  15374. height: math.unit(5 + 11 / 12, "feet"),
  15375. weight: math.unit(144, "lb"),
  15376. name: "Front",
  15377. image: {
  15378. source: "./media/characters/gabriel/front.svg",
  15379. extra: 285 / 262,
  15380. bottom: 0.004
  15381. }
  15382. },
  15383. },
  15384. [
  15385. {
  15386. name: "Normal",
  15387. height: math.unit(5 + 11 / 12, "feet"),
  15388. default: true
  15389. },
  15390. ]
  15391. ))
  15392. characterMakers.push(() => makeCharacter(
  15393. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15394. {
  15395. side: {
  15396. height: math.unit(6 + 5 / 12, "feet"),
  15397. weight: math.unit(300, "lb"),
  15398. name: "Side",
  15399. image: {
  15400. source: "./media/characters/tempest-suicune/side.svg",
  15401. extra: 195 / 154,
  15402. bottom: 0.04
  15403. }
  15404. },
  15405. },
  15406. [
  15407. {
  15408. name: "Normal",
  15409. height: math.unit(6 + 5 / 12, "feet"),
  15410. default: true
  15411. },
  15412. ]
  15413. ))
  15414. characterMakers.push(() => makeCharacter(
  15415. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15416. {
  15417. front: {
  15418. height: math.unit(7 + 2 / 12, "feet"),
  15419. weight: math.unit(322, "lb"),
  15420. name: "Front",
  15421. image: {
  15422. source: "./media/characters/vulcan/front.svg",
  15423. extra: 154 / 147,
  15424. bottom: 0.04
  15425. }
  15426. },
  15427. },
  15428. [
  15429. {
  15430. name: "Normal",
  15431. height: math.unit(7 + 2 / 12, "feet"),
  15432. default: true
  15433. },
  15434. ]
  15435. ))
  15436. characterMakers.push(() => makeCharacter(
  15437. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15438. {
  15439. front: {
  15440. height: math.unit(5 + 10 / 12, "feet"),
  15441. weight: math.unit(264, "lb"),
  15442. name: "Front",
  15443. image: {
  15444. source: "./media/characters/gault/front.svg",
  15445. extra: 161 / 140,
  15446. bottom: 0.028
  15447. }
  15448. },
  15449. },
  15450. [
  15451. {
  15452. name: "Normal",
  15453. height: math.unit(5 + 10 / 12, "feet"),
  15454. default: true
  15455. },
  15456. ]
  15457. ))
  15458. characterMakers.push(() => makeCharacter(
  15459. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15460. {
  15461. front: {
  15462. height: math.unit(6, "feet"),
  15463. weight: math.unit(150, "lb"),
  15464. name: "Front",
  15465. image: {
  15466. source: "./media/characters/shard/front.svg",
  15467. extra: 273 / 238,
  15468. bottom: 0.02
  15469. }
  15470. },
  15471. },
  15472. [
  15473. {
  15474. name: "Normal",
  15475. height: math.unit(3 + 6 / 12, "feet"),
  15476. default: true
  15477. },
  15478. ]
  15479. ))
  15480. characterMakers.push(() => makeCharacter(
  15481. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15482. {
  15483. front: {
  15484. height: math.unit(5 + 11 / 12, "feet"),
  15485. weight: math.unit(146, "lb"),
  15486. name: "Front",
  15487. image: {
  15488. source: "./media/characters/ashe/front.svg",
  15489. extra: 400 / 373,
  15490. bottom: 0.01
  15491. }
  15492. },
  15493. },
  15494. [
  15495. {
  15496. name: "Normal",
  15497. height: math.unit(5 + 11 / 12, "feet"),
  15498. default: true
  15499. },
  15500. ]
  15501. ))
  15502. characterMakers.push(() => makeCharacter(
  15503. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15504. {
  15505. front: {
  15506. height: math.unit(5 + 5 / 12, "feet"),
  15507. weight: math.unit(135, "lb"),
  15508. name: "Front",
  15509. image: {
  15510. source: "./media/characters/beatrix/front.svg",
  15511. extra: 392 / 379,
  15512. bottom: 0.01
  15513. }
  15514. },
  15515. },
  15516. [
  15517. {
  15518. name: "Normal",
  15519. height: math.unit(6, "feet"),
  15520. default: true
  15521. },
  15522. ]
  15523. ))
  15524. characterMakers.push(() => makeCharacter(
  15525. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15526. {
  15527. front: {
  15528. height: math.unit(6, "feet"),
  15529. weight: math.unit(150, "lb"),
  15530. name: "Front",
  15531. image: {
  15532. source: "./media/characters/ignatius/front.svg",
  15533. extra: 245 / 222,
  15534. bottom: 0.01
  15535. }
  15536. },
  15537. },
  15538. [
  15539. {
  15540. name: "Normal",
  15541. height: math.unit(5 + 5 / 12, "feet"),
  15542. default: true
  15543. },
  15544. ]
  15545. ))
  15546. characterMakers.push(() => makeCharacter(
  15547. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15548. {
  15549. front: {
  15550. height: math.unit(6 + 2 / 12, "feet"),
  15551. weight: math.unit(138, "lb"),
  15552. name: "Front",
  15553. image: {
  15554. source: "./media/characters/mei-li/front.svg",
  15555. extra: 237 / 229,
  15556. bottom: 0.03
  15557. }
  15558. },
  15559. },
  15560. [
  15561. {
  15562. name: "Normal",
  15563. height: math.unit(6 + 2 / 12, "feet"),
  15564. default: true
  15565. },
  15566. ]
  15567. ))
  15568. characterMakers.push(() => makeCharacter(
  15569. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15570. {
  15571. front: {
  15572. height: math.unit(2 + 4 / 12, "feet"),
  15573. weight: math.unit(62, "lb"),
  15574. name: "Front",
  15575. image: {
  15576. source: "./media/characters/puru/front.svg",
  15577. extra: 206 / 149,
  15578. bottom: 0.06
  15579. }
  15580. },
  15581. },
  15582. [
  15583. {
  15584. name: "Normal",
  15585. height: math.unit(2 + 4 / 12, "feet"),
  15586. default: true
  15587. },
  15588. ]
  15589. ))
  15590. characterMakers.push(() => makeCharacter(
  15591. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15592. {
  15593. anthro: {
  15594. height: math.unit(5 + 8/12, "feet"),
  15595. weight: math.unit(200, "lb"),
  15596. energyNeed: math.unit(2000, "kcal"),
  15597. name: "Anthro",
  15598. image: {
  15599. source: "./media/characters/kee/anthro.svg",
  15600. extra: 3251/3184,
  15601. bottom: 250/3501
  15602. }
  15603. },
  15604. taur: {
  15605. height: math.unit(11, "feet"),
  15606. weight: math.unit(500, "lb"),
  15607. energyNeed: math.unit(5000, "kcal"),
  15608. name: "Taur",
  15609. image: {
  15610. source: "./media/characters/kee/taur.svg",
  15611. extra: 1362/1320,
  15612. bottom: 83/1445
  15613. }
  15614. },
  15615. },
  15616. [
  15617. {
  15618. name: "Normal",
  15619. height: math.unit(5 + 8/12, "feet"),
  15620. default: true
  15621. },
  15622. {
  15623. name: "Macro",
  15624. height: math.unit(35, "feet")
  15625. },
  15626. ]
  15627. ))
  15628. characterMakers.push(() => makeCharacter(
  15629. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15630. {
  15631. anthro: {
  15632. height: math.unit(7, "feet"),
  15633. weight: math.unit(190, "lb"),
  15634. name: "Anthro",
  15635. image: {
  15636. source: "./media/characters/cobalt-dracha/anthro.svg",
  15637. extra: 231 / 225,
  15638. bottom: 0.04
  15639. }
  15640. },
  15641. feral: {
  15642. height: math.unit(9 + 7 / 12, "feet"),
  15643. weight: math.unit(294, "lb"),
  15644. name: "Feral",
  15645. image: {
  15646. source: "./media/characters/cobalt-dracha/feral.svg",
  15647. extra: 692 / 633,
  15648. bottom: 0.05
  15649. }
  15650. },
  15651. },
  15652. [
  15653. {
  15654. name: "Normal",
  15655. height: math.unit(7, "feet"),
  15656. default: true
  15657. },
  15658. ]
  15659. ))
  15660. characterMakers.push(() => makeCharacter(
  15661. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15662. {
  15663. fallen: {
  15664. height: math.unit(11 + 8 / 12, "feet"),
  15665. weight: math.unit(485, "lb"),
  15666. name: "Java (Fallen)",
  15667. rename: true,
  15668. image: {
  15669. source: "./media/characters/java/fallen.svg",
  15670. extra: 226 / 208,
  15671. bottom: 0.005
  15672. }
  15673. },
  15674. godkin: {
  15675. height: math.unit(10 + 6 / 12, "feet"),
  15676. weight: math.unit(328, "lb"),
  15677. name: "Java (Godkin)",
  15678. rename: true,
  15679. image: {
  15680. source: "./media/characters/java/godkin.svg",
  15681. extra: 270 / 262,
  15682. bottom: 0.02
  15683. }
  15684. },
  15685. },
  15686. [
  15687. {
  15688. name: "Normal",
  15689. height: math.unit(11 + 8 / 12, "feet"),
  15690. default: true
  15691. },
  15692. ]
  15693. ))
  15694. characterMakers.push(() => makeCharacter(
  15695. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15696. {
  15697. front: {
  15698. height: math.unit(7 + 8 / 12, "feet"),
  15699. weight: math.unit(320, "lb"),
  15700. name: "Front",
  15701. image: {
  15702. source: "./media/characters/skoll/front.svg",
  15703. extra: 232 / 220,
  15704. bottom: 0.02
  15705. }
  15706. },
  15707. },
  15708. [
  15709. {
  15710. name: "Normal",
  15711. height: math.unit(7 + 8 / 12, "feet"),
  15712. default: true
  15713. },
  15714. ]
  15715. ))
  15716. characterMakers.push(() => makeCharacter(
  15717. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15718. {
  15719. front: {
  15720. height: math.unit(5 + 9 / 12, "feet"),
  15721. weight: math.unit(170, "lb"),
  15722. name: "Front",
  15723. image: {
  15724. source: "./media/characters/purna/front.svg",
  15725. extra: 239 / 229,
  15726. bottom: 0.01
  15727. }
  15728. },
  15729. },
  15730. [
  15731. {
  15732. name: "Normal",
  15733. height: math.unit(5 + 9 / 12, "feet"),
  15734. default: true
  15735. },
  15736. ]
  15737. ))
  15738. characterMakers.push(() => makeCharacter(
  15739. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15740. {
  15741. front: {
  15742. height: math.unit(5 + 9 / 12, "feet"),
  15743. weight: math.unit(142, "lb"),
  15744. name: "Front",
  15745. image: {
  15746. source: "./media/characters/kuva/front.svg",
  15747. extra: 281 / 271,
  15748. bottom: 0.006
  15749. }
  15750. },
  15751. },
  15752. [
  15753. {
  15754. name: "Normal",
  15755. height: math.unit(5 + 9 / 12, "feet"),
  15756. default: true
  15757. },
  15758. ]
  15759. ))
  15760. characterMakers.push(() => makeCharacter(
  15761. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15762. {
  15763. anthro: {
  15764. height: math.unit(9 + 2 / 12, "feet"),
  15765. weight: math.unit(270, "lb"),
  15766. name: "Anthro",
  15767. image: {
  15768. source: "./media/characters/embra/anthro.svg",
  15769. extra: 200 / 187,
  15770. bottom: 0.02
  15771. }
  15772. },
  15773. feral: {
  15774. height: math.unit(18 + 8 / 12, "feet"),
  15775. weight: math.unit(576, "lb"),
  15776. name: "Feral",
  15777. image: {
  15778. source: "./media/characters/embra/feral.svg",
  15779. extra: 152 / 137,
  15780. bottom: 0.037
  15781. }
  15782. },
  15783. },
  15784. [
  15785. {
  15786. name: "Normal",
  15787. height: math.unit(9 + 2 / 12, "feet"),
  15788. default: true
  15789. },
  15790. ]
  15791. ))
  15792. characterMakers.push(() => makeCharacter(
  15793. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15794. {
  15795. anthro: {
  15796. height: math.unit(10 + 9 / 12, "feet"),
  15797. weight: math.unit(224, "lb"),
  15798. name: "Anthro",
  15799. image: {
  15800. source: "./media/characters/grottos/anthro.svg",
  15801. extra: 350 / 332,
  15802. bottom: 0.045
  15803. }
  15804. },
  15805. feral: {
  15806. height: math.unit(20 + 7 / 12, "feet"),
  15807. weight: math.unit(629, "lb"),
  15808. name: "Feral",
  15809. image: {
  15810. source: "./media/characters/grottos/feral.svg",
  15811. extra: 207 / 190,
  15812. bottom: 0.05
  15813. }
  15814. },
  15815. },
  15816. [
  15817. {
  15818. name: "Normal",
  15819. height: math.unit(10 + 9 / 12, "feet"),
  15820. default: true
  15821. },
  15822. ]
  15823. ))
  15824. characterMakers.push(() => makeCharacter(
  15825. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15826. {
  15827. anthro: {
  15828. height: math.unit(9 + 6 / 12, "feet"),
  15829. weight: math.unit(298, "lb"),
  15830. name: "Anthro",
  15831. image: {
  15832. source: "./media/characters/frifna/anthro.svg",
  15833. extra: 282 / 269,
  15834. bottom: 0.015
  15835. }
  15836. },
  15837. feral: {
  15838. height: math.unit(16 + 2 / 12, "feet"),
  15839. weight: math.unit(624, "lb"),
  15840. name: "Feral",
  15841. image: {
  15842. source: "./media/characters/frifna/feral.svg"
  15843. }
  15844. },
  15845. },
  15846. [
  15847. {
  15848. name: "Normal",
  15849. height: math.unit(9 + 6 / 12, "feet"),
  15850. default: true
  15851. },
  15852. ]
  15853. ))
  15854. characterMakers.push(() => makeCharacter(
  15855. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15856. {
  15857. front: {
  15858. height: math.unit(6 + 2 / 12, "feet"),
  15859. weight: math.unit(168, "lb"),
  15860. name: "Front",
  15861. image: {
  15862. source: "./media/characters/elise/front.svg",
  15863. extra: 276 / 271
  15864. }
  15865. },
  15866. },
  15867. [
  15868. {
  15869. name: "Normal",
  15870. height: math.unit(6 + 2 / 12, "feet"),
  15871. default: true
  15872. },
  15873. ]
  15874. ))
  15875. characterMakers.push(() => makeCharacter(
  15876. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15877. {
  15878. front: {
  15879. height: math.unit(5 + 10 / 12, "feet"),
  15880. weight: math.unit(210, "lb"),
  15881. name: "Front",
  15882. image: {
  15883. source: "./media/characters/glade/front.svg",
  15884. extra: 258 / 247,
  15885. bottom: 0.008
  15886. }
  15887. },
  15888. },
  15889. [
  15890. {
  15891. name: "Normal",
  15892. height: math.unit(5 + 10 / 12, "feet"),
  15893. default: true
  15894. },
  15895. ]
  15896. ))
  15897. characterMakers.push(() => makeCharacter(
  15898. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15899. {
  15900. front: {
  15901. height: math.unit(5 + 10 / 12, "feet"),
  15902. weight: math.unit(129, "lb"),
  15903. name: "Front",
  15904. image: {
  15905. source: "./media/characters/rina/front.svg",
  15906. extra: 266 / 255,
  15907. bottom: 0.005
  15908. }
  15909. },
  15910. },
  15911. [
  15912. {
  15913. name: "Normal",
  15914. height: math.unit(5 + 10 / 12, "feet"),
  15915. default: true
  15916. },
  15917. ]
  15918. ))
  15919. characterMakers.push(() => makeCharacter(
  15920. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15921. {
  15922. front: {
  15923. height: math.unit(6 + 1 / 12, "feet"),
  15924. weight: math.unit(192, "lb"),
  15925. name: "Front",
  15926. image: {
  15927. source: "./media/characters/veronica/front.svg",
  15928. extra: 319 / 309,
  15929. bottom: 0.005
  15930. }
  15931. },
  15932. },
  15933. [
  15934. {
  15935. name: "Normal",
  15936. height: math.unit(6 + 1 / 12, "feet"),
  15937. default: true
  15938. },
  15939. ]
  15940. ))
  15941. characterMakers.push(() => makeCharacter(
  15942. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15943. {
  15944. front: {
  15945. height: math.unit(9 + 3 / 12, "feet"),
  15946. weight: math.unit(1100, "lb"),
  15947. name: "Front",
  15948. image: {
  15949. source: "./media/characters/braxton/front.svg",
  15950. extra: 1057 / 984,
  15951. bottom: 0.05
  15952. }
  15953. },
  15954. },
  15955. [
  15956. {
  15957. name: "Normal",
  15958. height: math.unit(9 + 3 / 12, "feet")
  15959. },
  15960. {
  15961. name: "Giant",
  15962. height: math.unit(300, "feet"),
  15963. default: true
  15964. },
  15965. {
  15966. name: "Macro",
  15967. height: math.unit(700, "feet")
  15968. },
  15969. {
  15970. name: "Megamacro",
  15971. height: math.unit(6000, "feet")
  15972. },
  15973. ]
  15974. ))
  15975. characterMakers.push(() => makeCharacter(
  15976. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15977. {
  15978. front: {
  15979. height: math.unit(6 + 7 / 12, "feet"),
  15980. weight: math.unit(150, "lb"),
  15981. name: "Front",
  15982. image: {
  15983. source: "./media/characters/blue-feyonics/front.svg",
  15984. extra: 1403 / 1306,
  15985. bottom: 0.047
  15986. }
  15987. },
  15988. },
  15989. [
  15990. {
  15991. name: "Normal",
  15992. height: math.unit(6 + 7 / 12, "feet"),
  15993. default: true
  15994. },
  15995. ]
  15996. ))
  15997. characterMakers.push(() => makeCharacter(
  15998. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15999. {
  16000. front: {
  16001. height: math.unit(1.8, "meters"),
  16002. weight: math.unit(60, "kg"),
  16003. name: "Front",
  16004. image: {
  16005. source: "./media/characters/maxwell/front.svg",
  16006. extra: 2060 / 1873
  16007. }
  16008. },
  16009. },
  16010. [
  16011. {
  16012. name: "Micro",
  16013. height: math.unit(1, "mm")
  16014. },
  16015. {
  16016. name: "Normal",
  16017. height: math.unit(1.8, "meter"),
  16018. default: true
  16019. },
  16020. {
  16021. name: "Macro",
  16022. height: math.unit(30, "meters")
  16023. },
  16024. {
  16025. name: "Megamacro",
  16026. height: math.unit(10, "km")
  16027. },
  16028. ]
  16029. ))
  16030. characterMakers.push(() => makeCharacter(
  16031. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16032. {
  16033. front: {
  16034. height: math.unit(6, "feet"),
  16035. weight: math.unit(150, "lb"),
  16036. name: "Front",
  16037. image: {
  16038. source: "./media/characters/jack/front.svg",
  16039. extra: 1754 / 1640,
  16040. bottom: 0.01
  16041. }
  16042. },
  16043. },
  16044. [
  16045. {
  16046. name: "Normal",
  16047. height: math.unit(80000, "feet"),
  16048. default: true
  16049. },
  16050. {
  16051. name: "Max size",
  16052. height: math.unit(10, "lightyears")
  16053. },
  16054. ]
  16055. ))
  16056. characterMakers.push(() => makeCharacter(
  16057. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16058. {
  16059. urban: {
  16060. height: math.unit(5, "feet"),
  16061. weight: math.unit(240, "lb"),
  16062. name: "Urban",
  16063. image: {
  16064. source: "./media/characters/cafat/urban.svg",
  16065. extra: 1223/1126,
  16066. bottom: 205/1428
  16067. }
  16068. },
  16069. summer: {
  16070. height: math.unit(5, "feet"),
  16071. weight: math.unit(240, "lb"),
  16072. name: "Summer",
  16073. image: {
  16074. source: "./media/characters/cafat/summer.svg",
  16075. extra: 1223/1126,
  16076. bottom: 205/1428
  16077. }
  16078. },
  16079. winter: {
  16080. height: math.unit(5, "feet"),
  16081. weight: math.unit(240, "lb"),
  16082. name: "Winter",
  16083. image: {
  16084. source: "./media/characters/cafat/winter.svg",
  16085. extra: 1223/1126,
  16086. bottom: 205/1428
  16087. }
  16088. },
  16089. lingerie: {
  16090. height: math.unit(5, "feet"),
  16091. weight: math.unit(240, "lb"),
  16092. name: "Lingerie",
  16093. image: {
  16094. source: "./media/characters/cafat/lingerie.svg",
  16095. extra: 1223/1126,
  16096. bottom: 205/1428
  16097. }
  16098. },
  16099. upright: {
  16100. height: math.unit(6.3, "feet"),
  16101. weight: math.unit(240, "lb"),
  16102. name: "Upright",
  16103. image: {
  16104. source: "./media/characters/cafat/upright.svg",
  16105. bottom: 0.01
  16106. }
  16107. },
  16108. uprightFull: {
  16109. height: math.unit(6.3, "feet"),
  16110. weight: math.unit(240, "lb"),
  16111. name: "Upright (Full)",
  16112. image: {
  16113. source: "./media/characters/cafat/upright-full.svg",
  16114. bottom: 0.01
  16115. }
  16116. },
  16117. },
  16118. [
  16119. {
  16120. name: "Small",
  16121. height: math.unit(5, "feet"),
  16122. default: true
  16123. },
  16124. {
  16125. name: "Large",
  16126. height: math.unit(13, "feet")
  16127. },
  16128. ]
  16129. ))
  16130. characterMakers.push(() => makeCharacter(
  16131. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16132. {
  16133. front: {
  16134. height: math.unit(6, "feet"),
  16135. weight: math.unit(150, "lb"),
  16136. name: "Front",
  16137. image: {
  16138. source: "./media/characters/verin-raharra/front.svg",
  16139. extra: 5019 / 4835,
  16140. bottom: 0.023
  16141. }
  16142. },
  16143. },
  16144. [
  16145. {
  16146. name: "Normal",
  16147. height: math.unit(7 + 5 / 12, "feet"),
  16148. default: true
  16149. },
  16150. {
  16151. name: "Upsized",
  16152. height: math.unit(20, "feet")
  16153. },
  16154. ]
  16155. ))
  16156. characterMakers.push(() => makeCharacter(
  16157. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16158. {
  16159. front: {
  16160. height: math.unit(7, "feet"),
  16161. weight: math.unit(230, "lb"),
  16162. name: "Front",
  16163. image: {
  16164. source: "./media/characters/nakata/front.svg",
  16165. extra: 1.005,
  16166. bottom: 0.01
  16167. }
  16168. },
  16169. },
  16170. [
  16171. {
  16172. name: "Normal",
  16173. height: math.unit(7, "feet"),
  16174. default: true
  16175. },
  16176. {
  16177. name: "Big",
  16178. height: math.unit(14, "feet")
  16179. },
  16180. {
  16181. name: "Macro",
  16182. height: math.unit(400, "feet")
  16183. },
  16184. ]
  16185. ))
  16186. characterMakers.push(() => makeCharacter(
  16187. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16188. {
  16189. front: {
  16190. height: math.unit(4.91, "feet"),
  16191. weight: math.unit(100, "lb"),
  16192. name: "Front",
  16193. image: {
  16194. source: "./media/characters/lily/front.svg",
  16195. extra: 1585 / 1415,
  16196. bottom: 0.02
  16197. }
  16198. },
  16199. },
  16200. [
  16201. {
  16202. name: "Normal",
  16203. height: math.unit(4.91, "feet"),
  16204. default: true
  16205. },
  16206. ]
  16207. ))
  16208. characterMakers.push(() => makeCharacter(
  16209. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16210. {
  16211. laying: {
  16212. height: math.unit(4 + 4 / 12, "feet"),
  16213. weight: math.unit(600, "lb"),
  16214. name: "Laying",
  16215. image: {
  16216. source: "./media/characters/sheila/laying.svg",
  16217. extra: 1333 / 1265,
  16218. bottom: 0.16
  16219. }
  16220. },
  16221. },
  16222. [
  16223. {
  16224. name: "Normal",
  16225. height: math.unit(4 + 4 / 12, "feet"),
  16226. default: true
  16227. },
  16228. ]
  16229. ))
  16230. characterMakers.push(() => makeCharacter(
  16231. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16232. {
  16233. front: {
  16234. height: math.unit(6, "feet"),
  16235. weight: math.unit(190, "lb"),
  16236. name: "Front",
  16237. image: {
  16238. source: "./media/characters/sax/front.svg",
  16239. extra: 1187 / 973,
  16240. bottom: 0.042
  16241. }
  16242. },
  16243. },
  16244. [
  16245. {
  16246. name: "Micro",
  16247. height: math.unit(4, "inches"),
  16248. default: true
  16249. },
  16250. ]
  16251. ))
  16252. characterMakers.push(() => makeCharacter(
  16253. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16254. {
  16255. front: {
  16256. height: math.unit(6, "feet"),
  16257. weight: math.unit(150, "lb"),
  16258. name: "Front",
  16259. image: {
  16260. source: "./media/characters/pandora/front.svg",
  16261. extra: 2720 / 2556,
  16262. bottom: 0.015
  16263. }
  16264. },
  16265. back: {
  16266. height: math.unit(6, "feet"),
  16267. weight: math.unit(150, "lb"),
  16268. name: "Back",
  16269. image: {
  16270. source: "./media/characters/pandora/back.svg",
  16271. extra: 2720 / 2556,
  16272. bottom: 0.01
  16273. }
  16274. },
  16275. beans: {
  16276. height: math.unit(6 / 8, "feet"),
  16277. name: "Beans",
  16278. image: {
  16279. source: "./media/characters/pandora/beans.svg"
  16280. }
  16281. },
  16282. collar: {
  16283. height: math.unit(0.31, "feet"),
  16284. name: "Collar",
  16285. image: {
  16286. source: "./media/characters/pandora/collar.svg"
  16287. }
  16288. },
  16289. skirt: {
  16290. height: math.unit(6, "feet"),
  16291. weight: math.unit(150, "lb"),
  16292. name: "Skirt",
  16293. image: {
  16294. source: "./media/characters/pandora/skirt.svg",
  16295. extra: 1622 / 1525,
  16296. bottom: 0.015
  16297. }
  16298. },
  16299. hoodie: {
  16300. height: math.unit(6, "feet"),
  16301. weight: math.unit(150, "lb"),
  16302. name: "Hoodie",
  16303. image: {
  16304. source: "./media/characters/pandora/hoodie.svg",
  16305. extra: 1622 / 1525,
  16306. bottom: 0.015
  16307. }
  16308. },
  16309. casual: {
  16310. height: math.unit(6, "feet"),
  16311. weight: math.unit(150, "lb"),
  16312. name: "Casual",
  16313. image: {
  16314. source: "./media/characters/pandora/casual.svg",
  16315. extra: 1622 / 1525,
  16316. bottom: 0.015
  16317. }
  16318. },
  16319. },
  16320. [
  16321. {
  16322. name: "Normal",
  16323. height: math.unit(6, "feet")
  16324. },
  16325. {
  16326. name: "Big Steppy",
  16327. height: math.unit(1, "km"),
  16328. default: true
  16329. },
  16330. {
  16331. name: "Galactic Steppy",
  16332. height: math.unit(2, "gigameters")
  16333. },
  16334. ]
  16335. ))
  16336. characterMakers.push(() => makeCharacter(
  16337. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16338. {
  16339. side: {
  16340. height: math.unit(10, "feet"),
  16341. weight: math.unit(800, "kg"),
  16342. name: "Side",
  16343. image: {
  16344. source: "./media/characters/venio-darcony/side.svg",
  16345. extra: 1373 / 1003,
  16346. bottom: 0.037
  16347. }
  16348. },
  16349. front: {
  16350. height: math.unit(19, "feet"),
  16351. weight: math.unit(800, "kg"),
  16352. name: "Front",
  16353. image: {
  16354. source: "./media/characters/venio-darcony/front.svg"
  16355. }
  16356. },
  16357. back: {
  16358. height: math.unit(19, "feet"),
  16359. weight: math.unit(800, "kg"),
  16360. name: "Back",
  16361. image: {
  16362. source: "./media/characters/venio-darcony/back.svg"
  16363. }
  16364. },
  16365. sideNsfw: {
  16366. height: math.unit(10, "feet"),
  16367. weight: math.unit(800, "kg"),
  16368. name: "Side (NSFW)",
  16369. image: {
  16370. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16371. extra: 1373 / 1003,
  16372. bottom: 0.037
  16373. }
  16374. },
  16375. frontNsfw: {
  16376. height: math.unit(19, "feet"),
  16377. weight: math.unit(800, "kg"),
  16378. name: "Front (NSFW)",
  16379. image: {
  16380. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16381. }
  16382. },
  16383. backNsfw: {
  16384. height: math.unit(19, "feet"),
  16385. weight: math.unit(800, "kg"),
  16386. name: "Back (NSFW)",
  16387. image: {
  16388. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16389. }
  16390. },
  16391. sideArmored: {
  16392. height: math.unit(10, "feet"),
  16393. weight: math.unit(800, "kg"),
  16394. name: "Side (Armored)",
  16395. image: {
  16396. source: "./media/characters/venio-darcony/side-armored.svg",
  16397. extra: 1373 / 1003,
  16398. bottom: 0.037
  16399. }
  16400. },
  16401. frontArmored: {
  16402. height: math.unit(19, "feet"),
  16403. weight: math.unit(900, "kg"),
  16404. name: "Front (Armored)",
  16405. image: {
  16406. source: "./media/characters/venio-darcony/front-armored.svg"
  16407. }
  16408. },
  16409. backArmored: {
  16410. height: math.unit(19, "feet"),
  16411. weight: math.unit(900, "kg"),
  16412. name: "Back (Armored)",
  16413. image: {
  16414. source: "./media/characters/venio-darcony/back-armored.svg"
  16415. }
  16416. },
  16417. sword: {
  16418. height: math.unit(10, "feet"),
  16419. weight: math.unit(50, "lb"),
  16420. name: "Sword",
  16421. image: {
  16422. source: "./media/characters/venio-darcony/sword.svg"
  16423. }
  16424. },
  16425. },
  16426. [
  16427. {
  16428. name: "Normal",
  16429. height: math.unit(10, "feet")
  16430. },
  16431. {
  16432. name: "Macro",
  16433. height: math.unit(130, "feet"),
  16434. default: true
  16435. },
  16436. {
  16437. name: "Macro+",
  16438. height: math.unit(240, "feet")
  16439. },
  16440. ]
  16441. ))
  16442. characterMakers.push(() => makeCharacter(
  16443. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16444. {
  16445. front: {
  16446. height: math.unit(6, "feet"),
  16447. weight: math.unit(150, "lb"),
  16448. name: "Front",
  16449. image: {
  16450. source: "./media/characters/veski/front.svg",
  16451. extra: 1299 / 1225,
  16452. bottom: 0.04
  16453. }
  16454. },
  16455. back: {
  16456. height: math.unit(6, "feet"),
  16457. weight: math.unit(150, "lb"),
  16458. name: "Back",
  16459. image: {
  16460. source: "./media/characters/veski/back.svg",
  16461. extra: 1299 / 1225,
  16462. bottom: 0.008
  16463. }
  16464. },
  16465. maw: {
  16466. height: math.unit(1.5 * 1.21, "feet"),
  16467. name: "Maw",
  16468. image: {
  16469. source: "./media/characters/veski/maw.svg"
  16470. }
  16471. },
  16472. },
  16473. [
  16474. {
  16475. name: "Macro",
  16476. height: math.unit(2, "km"),
  16477. default: true
  16478. },
  16479. ]
  16480. ))
  16481. characterMakers.push(() => makeCharacter(
  16482. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16483. {
  16484. front: {
  16485. height: math.unit(5 + 7 / 12, "feet"),
  16486. name: "Front",
  16487. image: {
  16488. source: "./media/characters/isabelle/front.svg",
  16489. extra: 2130 / 1976,
  16490. bottom: 0.05
  16491. }
  16492. },
  16493. },
  16494. [
  16495. {
  16496. name: "Supermicro",
  16497. height: math.unit(10, "micrometers")
  16498. },
  16499. {
  16500. name: "Micro",
  16501. height: math.unit(1, "inch")
  16502. },
  16503. {
  16504. name: "Tiny",
  16505. height: math.unit(5, "inches")
  16506. },
  16507. {
  16508. name: "Standard",
  16509. height: math.unit(5 + 7 / 12, "inches")
  16510. },
  16511. {
  16512. name: "Macro",
  16513. height: math.unit(80, "meters"),
  16514. default: true
  16515. },
  16516. {
  16517. name: "Megamacro",
  16518. height: math.unit(250, "meters")
  16519. },
  16520. {
  16521. name: "Gigamacro",
  16522. height: math.unit(5, "km")
  16523. },
  16524. {
  16525. name: "Cosmic",
  16526. height: math.unit(2.5e6, "miles")
  16527. },
  16528. ]
  16529. ))
  16530. characterMakers.push(() => makeCharacter(
  16531. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16532. {
  16533. front: {
  16534. height: math.unit(6, "feet"),
  16535. weight: math.unit(150, "lb"),
  16536. name: "Front",
  16537. image: {
  16538. source: "./media/characters/hanzo/front.svg",
  16539. extra: 374 / 344,
  16540. bottom: 0.02
  16541. }
  16542. },
  16543. },
  16544. [
  16545. {
  16546. name: "Normal",
  16547. height: math.unit(8, "feet"),
  16548. default: true
  16549. },
  16550. ]
  16551. ))
  16552. characterMakers.push(() => makeCharacter(
  16553. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16554. {
  16555. front: {
  16556. height: math.unit(7, "feet"),
  16557. weight: math.unit(130, "lb"),
  16558. name: "Front",
  16559. image: {
  16560. source: "./media/characters/anna/front.svg",
  16561. extra: 169 / 145,
  16562. bottom: 0.06
  16563. }
  16564. },
  16565. full: {
  16566. height: math.unit(4.96, "feet"),
  16567. weight: math.unit(220, "lb"),
  16568. name: "Full",
  16569. image: {
  16570. source: "./media/characters/anna/full.svg",
  16571. extra: 138 / 114,
  16572. bottom: 0.15
  16573. }
  16574. },
  16575. tongue: {
  16576. height: math.unit(2.53, "feet"),
  16577. name: "Tongue",
  16578. image: {
  16579. source: "./media/characters/anna/tongue.svg"
  16580. }
  16581. },
  16582. },
  16583. [
  16584. {
  16585. name: "Normal",
  16586. height: math.unit(7, "feet"),
  16587. default: true
  16588. },
  16589. ]
  16590. ))
  16591. characterMakers.push(() => makeCharacter(
  16592. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16593. {
  16594. front: {
  16595. height: math.unit(7, "feet"),
  16596. weight: math.unit(150, "lb"),
  16597. name: "Front",
  16598. image: {
  16599. source: "./media/characters/ian-corvid/front.svg",
  16600. extra: 150 / 142,
  16601. bottom: 0.02
  16602. }
  16603. },
  16604. back: {
  16605. height: math.unit(7, "feet"),
  16606. weight: math.unit(150, "lb"),
  16607. name: "Back",
  16608. image: {
  16609. source: "./media/characters/ian-corvid/back.svg",
  16610. extra: 150 / 143,
  16611. bottom: 0.01
  16612. }
  16613. },
  16614. stomping: {
  16615. height: math.unit(7, "feet"),
  16616. weight: math.unit(150, "lb"),
  16617. name: "Stomping",
  16618. image: {
  16619. source: "./media/characters/ian-corvid/stomping.svg",
  16620. extra: 76 / 72
  16621. }
  16622. },
  16623. sitting: {
  16624. height: math.unit(7 / 1.8, "feet"),
  16625. weight: math.unit(150, "lb"),
  16626. name: "Sitting",
  16627. image: {
  16628. source: "./media/characters/ian-corvid/sitting.svg",
  16629. extra: 1400 / 1269,
  16630. bottom: 0.15
  16631. }
  16632. },
  16633. },
  16634. [
  16635. {
  16636. name: "Tiny Microw",
  16637. height: math.unit(1, "inch")
  16638. },
  16639. {
  16640. name: "Microw",
  16641. height: math.unit(6, "inches")
  16642. },
  16643. {
  16644. name: "Crow",
  16645. height: math.unit(7 + 1 / 12, "feet"),
  16646. default: true
  16647. },
  16648. {
  16649. name: "Macrow",
  16650. height: math.unit(176, "feet")
  16651. },
  16652. ]
  16653. ))
  16654. characterMakers.push(() => makeCharacter(
  16655. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16656. {
  16657. front: {
  16658. height: math.unit(5 + 7 / 12, "feet"),
  16659. weight: math.unit(147, "lb"),
  16660. name: "Front",
  16661. image: {
  16662. source: "./media/characters/natalie-kellon/front.svg",
  16663. extra: 1214 / 1141,
  16664. bottom: 0.02
  16665. }
  16666. },
  16667. },
  16668. [
  16669. {
  16670. name: "Micro",
  16671. height: math.unit(1 / 16, "inch")
  16672. },
  16673. {
  16674. name: "Tiny",
  16675. height: math.unit(4, "inches")
  16676. },
  16677. {
  16678. name: "Normal",
  16679. height: math.unit(5 + 7 / 12, "feet"),
  16680. default: true
  16681. },
  16682. {
  16683. name: "Amazon",
  16684. height: math.unit(12, "feet")
  16685. },
  16686. {
  16687. name: "Giantess",
  16688. height: math.unit(160, "meters")
  16689. },
  16690. {
  16691. name: "Titaness",
  16692. height: math.unit(800, "meters")
  16693. },
  16694. ]
  16695. ))
  16696. characterMakers.push(() => makeCharacter(
  16697. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16698. {
  16699. front: {
  16700. height: math.unit(6, "feet"),
  16701. weight: math.unit(150, "lb"),
  16702. name: "Front",
  16703. image: {
  16704. source: "./media/characters/alluria/front.svg",
  16705. extra: 806 / 738,
  16706. bottom: 0.01
  16707. }
  16708. },
  16709. side: {
  16710. height: math.unit(6, "feet"),
  16711. weight: math.unit(150, "lb"),
  16712. name: "Side",
  16713. image: {
  16714. source: "./media/characters/alluria/side.svg",
  16715. extra: 800 / 750,
  16716. }
  16717. },
  16718. back: {
  16719. height: math.unit(6, "feet"),
  16720. weight: math.unit(150, "lb"),
  16721. name: "Back",
  16722. image: {
  16723. source: "./media/characters/alluria/back.svg",
  16724. extra: 806 / 738,
  16725. }
  16726. },
  16727. frontMaid: {
  16728. height: math.unit(6, "feet"),
  16729. weight: math.unit(150, "lb"),
  16730. name: "Front (Maid)",
  16731. image: {
  16732. source: "./media/characters/alluria/front-maid.svg",
  16733. extra: 806 / 738,
  16734. bottom: 0.01
  16735. }
  16736. },
  16737. sideMaid: {
  16738. height: math.unit(6, "feet"),
  16739. weight: math.unit(150, "lb"),
  16740. name: "Side (Maid)",
  16741. image: {
  16742. source: "./media/characters/alluria/side-maid.svg",
  16743. extra: 800 / 750,
  16744. bottom: 0.005
  16745. }
  16746. },
  16747. backMaid: {
  16748. height: math.unit(6, "feet"),
  16749. weight: math.unit(150, "lb"),
  16750. name: "Back (Maid)",
  16751. image: {
  16752. source: "./media/characters/alluria/back-maid.svg",
  16753. extra: 806 / 738,
  16754. }
  16755. },
  16756. },
  16757. [
  16758. {
  16759. name: "Micro",
  16760. height: math.unit(6, "inches"),
  16761. default: true
  16762. },
  16763. ]
  16764. ))
  16765. characterMakers.push(() => makeCharacter(
  16766. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16767. {
  16768. front: {
  16769. height: math.unit(6, "feet"),
  16770. weight: math.unit(150, "lb"),
  16771. name: "Front",
  16772. image: {
  16773. source: "./media/characters/kyle/front.svg",
  16774. extra: 1069 / 962,
  16775. bottom: 77.228 / 1727.45
  16776. }
  16777. },
  16778. },
  16779. [
  16780. {
  16781. name: "Macro",
  16782. height: math.unit(150, "feet"),
  16783. default: true
  16784. },
  16785. ]
  16786. ))
  16787. characterMakers.push(() => makeCharacter(
  16788. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16789. {
  16790. front: {
  16791. height: math.unit(6, "feet"),
  16792. weight: math.unit(300, "lb"),
  16793. name: "Front",
  16794. image: {
  16795. source: "./media/characters/duncan/front.svg",
  16796. extra: 1650 / 1482,
  16797. bottom: 0.05
  16798. }
  16799. },
  16800. },
  16801. [
  16802. {
  16803. name: "Macro",
  16804. height: math.unit(100, "feet"),
  16805. default: true
  16806. },
  16807. ]
  16808. ))
  16809. characterMakers.push(() => makeCharacter(
  16810. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16811. {
  16812. front: {
  16813. height: math.unit(5 + 4 / 12, "feet"),
  16814. weight: math.unit(220, "lb"),
  16815. name: "Front",
  16816. image: {
  16817. source: "./media/characters/memory/front.svg",
  16818. extra: 3641 / 3545,
  16819. bottom: 0.03
  16820. }
  16821. },
  16822. back: {
  16823. height: math.unit(5 + 4 / 12, "feet"),
  16824. weight: math.unit(220, "lb"),
  16825. name: "Back",
  16826. image: {
  16827. source: "./media/characters/memory/back.svg",
  16828. extra: 3641 / 3545,
  16829. bottom: 0.025
  16830. }
  16831. },
  16832. frontSkirt: {
  16833. height: math.unit(5 + 4 / 12, "feet"),
  16834. weight: math.unit(220, "lb"),
  16835. name: "Front (Skirt)",
  16836. image: {
  16837. source: "./media/characters/memory/front-skirt.svg",
  16838. extra: 3641 / 3545,
  16839. bottom: 0.03
  16840. }
  16841. },
  16842. frontDress: {
  16843. height: math.unit(5 + 4 / 12, "feet"),
  16844. weight: math.unit(220, "lb"),
  16845. name: "Front (Dress)",
  16846. image: {
  16847. source: "./media/characters/memory/front-dress.svg",
  16848. extra: 3641 / 3545,
  16849. bottom: 0.03
  16850. }
  16851. },
  16852. },
  16853. [
  16854. {
  16855. name: "Micro",
  16856. height: math.unit(6, "inches"),
  16857. default: true
  16858. },
  16859. {
  16860. name: "Normal",
  16861. height: math.unit(5 + 4 / 12, "feet")
  16862. },
  16863. ]
  16864. ))
  16865. characterMakers.push(() => makeCharacter(
  16866. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16867. {
  16868. front: {
  16869. height: math.unit(4 + 11 / 12, "feet"),
  16870. weight: math.unit(100, "lb"),
  16871. name: "Front",
  16872. image: {
  16873. source: "./media/characters/luno/front.svg",
  16874. extra: 1535 / 1487,
  16875. bottom: 0.03
  16876. }
  16877. },
  16878. },
  16879. [
  16880. {
  16881. name: "Micro",
  16882. height: math.unit(3, "inches")
  16883. },
  16884. {
  16885. name: "Normal",
  16886. height: math.unit(4 + 11 / 12, "feet"),
  16887. default: true
  16888. },
  16889. {
  16890. name: "Macro",
  16891. height: math.unit(300, "feet")
  16892. },
  16893. {
  16894. name: "Megamacro",
  16895. height: math.unit(700, "miles")
  16896. },
  16897. ]
  16898. ))
  16899. characterMakers.push(() => makeCharacter(
  16900. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16901. {
  16902. front: {
  16903. height: math.unit(6 + 2 / 12, "feet"),
  16904. weight: math.unit(170, "lb"),
  16905. name: "Front",
  16906. image: {
  16907. source: "./media/characters/jamesy/front.svg",
  16908. extra: 440 / 382,
  16909. bottom: 0.005
  16910. }
  16911. },
  16912. },
  16913. [
  16914. {
  16915. name: "Micro",
  16916. height: math.unit(3, "inches")
  16917. },
  16918. {
  16919. name: "Normal",
  16920. height: math.unit(6 + 2 / 12, "feet"),
  16921. default: true
  16922. },
  16923. {
  16924. name: "Macro",
  16925. height: math.unit(300, "feet")
  16926. },
  16927. {
  16928. name: "Megamacro",
  16929. height: math.unit(700, "miles")
  16930. },
  16931. ]
  16932. ))
  16933. characterMakers.push(() => makeCharacter(
  16934. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16935. {
  16936. front: {
  16937. height: math.unit(6, "feet"),
  16938. weight: math.unit(160, "lb"),
  16939. name: "Front",
  16940. image: {
  16941. source: "./media/characters/mark/front.svg",
  16942. extra: 3300 / 3100,
  16943. bottom: 136.42 / 3440.47
  16944. }
  16945. },
  16946. },
  16947. [
  16948. {
  16949. name: "Macro",
  16950. height: math.unit(120, "meters")
  16951. },
  16952. {
  16953. name: "Bigger Macro",
  16954. height: math.unit(350, "meters")
  16955. },
  16956. {
  16957. name: "Megamacro",
  16958. height: math.unit(8, "km"),
  16959. default: true
  16960. },
  16961. {
  16962. name: "Continental",
  16963. height: math.unit(4550, "km")
  16964. },
  16965. {
  16966. name: "Planetary",
  16967. height: math.unit(65000, "km")
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16973. {
  16974. front: {
  16975. height: math.unit(6, "feet"),
  16976. weight: math.unit(400, "lb"),
  16977. name: "Front",
  16978. image: {
  16979. source: "./media/characters/mac/front.svg",
  16980. extra: 1048 / 987.7,
  16981. bottom: 60 / 1107.6,
  16982. }
  16983. },
  16984. },
  16985. [
  16986. {
  16987. name: "Macro",
  16988. height: math.unit(500, "feet"),
  16989. default: true
  16990. },
  16991. ]
  16992. ))
  16993. characterMakers.push(() => makeCharacter(
  16994. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16995. {
  16996. front: {
  16997. height: math.unit(5 + 2 / 12, "feet"),
  16998. weight: math.unit(190, "lb"),
  16999. name: "Front",
  17000. image: {
  17001. source: "./media/characters/bari/front.svg",
  17002. extra: 3156 / 2880,
  17003. bottom: 0.03
  17004. }
  17005. },
  17006. back: {
  17007. height: math.unit(5 + 2 / 12, "feet"),
  17008. weight: math.unit(190, "lb"),
  17009. name: "Back",
  17010. image: {
  17011. source: "./media/characters/bari/back.svg",
  17012. extra: 3260 / 2834,
  17013. bottom: 0.025
  17014. }
  17015. },
  17016. frontPlush: {
  17017. height: math.unit(5 + 2 / 12, "feet"),
  17018. weight: math.unit(190, "lb"),
  17019. name: "Front (Plush)",
  17020. image: {
  17021. source: "./media/characters/bari/front-plush.svg",
  17022. extra: 1112 / 1061,
  17023. bottom: 0.002
  17024. }
  17025. },
  17026. },
  17027. [
  17028. {
  17029. name: "Micro",
  17030. height: math.unit(3, "inches")
  17031. },
  17032. {
  17033. name: "Normal",
  17034. height: math.unit(5 + 2 / 12, "feet"),
  17035. default: true
  17036. },
  17037. {
  17038. name: "Macro",
  17039. height: math.unit(20, "feet")
  17040. },
  17041. ]
  17042. ))
  17043. characterMakers.push(() => makeCharacter(
  17044. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17045. {
  17046. front: {
  17047. height: math.unit(6 + 1 / 12, "feet"),
  17048. weight: math.unit(275, "lb"),
  17049. name: "Front",
  17050. image: {
  17051. source: "./media/characters/hunter-misha-raven/front.svg"
  17052. }
  17053. },
  17054. },
  17055. [
  17056. {
  17057. name: "Mortal",
  17058. height: math.unit(6 + 1 / 12, "feet")
  17059. },
  17060. {
  17061. name: "Divine",
  17062. height: math.unit(1.12134e34, "parsecs"),
  17063. default: true
  17064. },
  17065. ]
  17066. ))
  17067. characterMakers.push(() => makeCharacter(
  17068. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17069. {
  17070. front: {
  17071. height: math.unit(6 + 3 / 12, "feet"),
  17072. weight: math.unit(220, "lb"),
  17073. name: "Front",
  17074. image: {
  17075. source: "./media/characters/max-calore/front.svg",
  17076. extra: 1700 / 1648,
  17077. bottom: 0.01
  17078. }
  17079. },
  17080. back: {
  17081. height: math.unit(6 + 3 / 12, "feet"),
  17082. weight: math.unit(220, "lb"),
  17083. name: "Back",
  17084. image: {
  17085. source: "./media/characters/max-calore/back.svg",
  17086. extra: 1700 / 1648,
  17087. bottom: 0.01
  17088. }
  17089. },
  17090. },
  17091. [
  17092. {
  17093. name: "Normal",
  17094. height: math.unit(6 + 3 / 12, "feet"),
  17095. default: true
  17096. },
  17097. ]
  17098. ))
  17099. characterMakers.push(() => makeCharacter(
  17100. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17101. {
  17102. side: {
  17103. height: math.unit(2 + 8 / 12, "feet"),
  17104. weight: math.unit(99, "lb"),
  17105. name: "Side",
  17106. image: {
  17107. source: "./media/characters/aspen/side.svg",
  17108. extra: 152 / 138,
  17109. bottom: 0.032
  17110. }
  17111. },
  17112. },
  17113. [
  17114. {
  17115. name: "Normal",
  17116. height: math.unit(2 + 8 / 12, "feet"),
  17117. default: true
  17118. },
  17119. ]
  17120. ))
  17121. characterMakers.push(() => makeCharacter(
  17122. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17123. {
  17124. side: {
  17125. height: math.unit(3 + 2 / 12, "feet"),
  17126. weight: math.unit(224, "lb"),
  17127. name: "Side",
  17128. image: {
  17129. source: "./media/characters/sheila-feral-wolf/side.svg",
  17130. extra: 179 / 166,
  17131. bottom: 0.03
  17132. }
  17133. },
  17134. },
  17135. [
  17136. {
  17137. name: "Normal",
  17138. height: math.unit(3 + 2 / 12, "feet"),
  17139. default: true
  17140. },
  17141. ]
  17142. ))
  17143. characterMakers.push(() => makeCharacter(
  17144. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17145. {
  17146. side: {
  17147. height: math.unit(1 + 9 / 12, "feet"),
  17148. weight: math.unit(38, "lb"),
  17149. name: "Side",
  17150. image: {
  17151. source: "./media/characters/michelle/side.svg",
  17152. extra: 147 / 136.7,
  17153. bottom: 0.03
  17154. }
  17155. },
  17156. },
  17157. [
  17158. {
  17159. name: "Normal",
  17160. height: math.unit(1 + 9 / 12, "feet"),
  17161. default: true
  17162. },
  17163. ]
  17164. ))
  17165. characterMakers.push(() => makeCharacter(
  17166. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17167. {
  17168. front: {
  17169. height: math.unit(1 + 1 / 12, "feet"),
  17170. weight: math.unit(18, "lb"),
  17171. name: "Front",
  17172. image: {
  17173. source: "./media/characters/nino/front.svg"
  17174. }
  17175. },
  17176. },
  17177. [
  17178. {
  17179. name: "Normal",
  17180. height: math.unit(1 + 1 / 12, "feet"),
  17181. default: true
  17182. },
  17183. ]
  17184. ))
  17185. characterMakers.push(() => makeCharacter(
  17186. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17187. {
  17188. front: {
  17189. height: math.unit(1, "feet"),
  17190. weight: math.unit(16, "lb"),
  17191. name: "Front",
  17192. image: {
  17193. source: "./media/characters/viola/front.svg"
  17194. }
  17195. },
  17196. },
  17197. [
  17198. {
  17199. name: "Normal",
  17200. height: math.unit(1, "feet"),
  17201. default: true
  17202. },
  17203. ]
  17204. ))
  17205. characterMakers.push(() => makeCharacter(
  17206. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17207. {
  17208. front: {
  17209. height: math.unit(6 + 5 / 12, "feet"),
  17210. weight: math.unit(580, "lb"),
  17211. name: "Front",
  17212. image: {
  17213. source: "./media/characters/atlas/front.svg",
  17214. extra: 298.5 / 290,
  17215. bottom: 0.015
  17216. }
  17217. },
  17218. },
  17219. [
  17220. {
  17221. name: "Normal",
  17222. height: math.unit(6 + 5 / 12, "feet"),
  17223. default: true
  17224. },
  17225. ]
  17226. ))
  17227. characterMakers.push(() => makeCharacter(
  17228. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17229. {
  17230. side: {
  17231. height: math.unit(1 + 10 / 12, "feet"),
  17232. weight: math.unit(25, "lb"),
  17233. name: "Side",
  17234. image: {
  17235. source: "./media/characters/davy/side.svg",
  17236. extra: 200 / 170,
  17237. bottom: 0.01
  17238. }
  17239. },
  17240. },
  17241. [
  17242. {
  17243. name: "Normal",
  17244. height: math.unit(1 + 10 / 12, "feet"),
  17245. default: true
  17246. },
  17247. ]
  17248. ))
  17249. characterMakers.push(() => makeCharacter(
  17250. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17251. {
  17252. side: {
  17253. height: math.unit(4 + 8 / 12, "feet"),
  17254. weight: math.unit(166, "lb"),
  17255. name: "Side",
  17256. image: {
  17257. source: "./media/characters/fiona/side.svg",
  17258. extra: 232 / 220,
  17259. bottom: 0.03
  17260. }
  17261. },
  17262. },
  17263. [
  17264. {
  17265. name: "Normal",
  17266. height: math.unit(4 + 8 / 12, "feet"),
  17267. default: true
  17268. },
  17269. ]
  17270. ))
  17271. characterMakers.push(() => makeCharacter(
  17272. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17273. {
  17274. front: {
  17275. height: math.unit(2, "feet"),
  17276. weight: math.unit(62, "lb"),
  17277. name: "Front",
  17278. image: {
  17279. source: "./media/characters/lyla/front.svg",
  17280. bottom: 0.1
  17281. }
  17282. },
  17283. },
  17284. [
  17285. {
  17286. name: "Normal",
  17287. height: math.unit(2, "feet"),
  17288. default: true
  17289. },
  17290. ]
  17291. ))
  17292. characterMakers.push(() => makeCharacter(
  17293. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17294. {
  17295. side: {
  17296. height: math.unit(1.8, "feet"),
  17297. weight: math.unit(44, "lb"),
  17298. name: "Side",
  17299. image: {
  17300. source: "./media/characters/perseus/side.svg",
  17301. bottom: 0.21
  17302. }
  17303. },
  17304. },
  17305. [
  17306. {
  17307. name: "Normal",
  17308. height: math.unit(1.8, "feet"),
  17309. default: true
  17310. },
  17311. ]
  17312. ))
  17313. characterMakers.push(() => makeCharacter(
  17314. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17315. {
  17316. side: {
  17317. height: math.unit(4 + 2 / 12, "feet"),
  17318. weight: math.unit(20, "lb"),
  17319. name: "Side",
  17320. image: {
  17321. source: "./media/characters/remus/side.svg"
  17322. }
  17323. },
  17324. },
  17325. [
  17326. {
  17327. name: "Normal",
  17328. height: math.unit(4 + 2 / 12, "feet"),
  17329. default: true
  17330. },
  17331. ]
  17332. ))
  17333. characterMakers.push(() => makeCharacter(
  17334. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17335. {
  17336. front: {
  17337. height: math.unit(4 + 11 / 12, "feet"),
  17338. weight: math.unit(114, "lb"),
  17339. name: "Front",
  17340. image: {
  17341. source: "./media/characters/raf/front.svg",
  17342. extra: 1504/1339,
  17343. bottom: 26/1530
  17344. }
  17345. },
  17346. side: {
  17347. height: math.unit(4 + 11 / 12, "feet"),
  17348. weight: math.unit(114, "lb"),
  17349. name: "Side",
  17350. image: {
  17351. source: "./media/characters/raf/side.svg",
  17352. extra: 1466/1316,
  17353. bottom: 29/1495
  17354. }
  17355. },
  17356. },
  17357. [
  17358. {
  17359. name: "Micro",
  17360. height: math.unit(2, "inches")
  17361. },
  17362. {
  17363. name: "Normal",
  17364. height: math.unit(4 + 11 / 12, "feet"),
  17365. default: true
  17366. },
  17367. {
  17368. name: "Macro",
  17369. height: math.unit(70, "feet")
  17370. },
  17371. ]
  17372. ))
  17373. characterMakers.push(() => makeCharacter(
  17374. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17375. {
  17376. front: {
  17377. height: math.unit(1.5, "meters"),
  17378. weight: math.unit(68, "kg"),
  17379. name: "Front",
  17380. image: {
  17381. source: "./media/characters/liam-einarr/front.svg",
  17382. extra: 2822 / 2666
  17383. }
  17384. },
  17385. back: {
  17386. height: math.unit(1.5, "meters"),
  17387. weight: math.unit(68, "kg"),
  17388. name: "Back",
  17389. image: {
  17390. source: "./media/characters/liam-einarr/back.svg",
  17391. extra: 2822 / 2666,
  17392. bottom: 0.015
  17393. }
  17394. },
  17395. },
  17396. [
  17397. {
  17398. name: "Normal",
  17399. height: math.unit(1.5, "meters"),
  17400. default: true
  17401. },
  17402. {
  17403. name: "Macro",
  17404. height: math.unit(150, "meters")
  17405. },
  17406. {
  17407. name: "Megamacro",
  17408. height: math.unit(35, "km")
  17409. },
  17410. ]
  17411. ))
  17412. characterMakers.push(() => makeCharacter(
  17413. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17414. {
  17415. front: {
  17416. height: math.unit(6, "feet"),
  17417. weight: math.unit(75, "kg"),
  17418. name: "Front",
  17419. image: {
  17420. source: "./media/characters/linda/front.svg",
  17421. extra: 930 / 874,
  17422. bottom: 0.004
  17423. }
  17424. },
  17425. },
  17426. [
  17427. {
  17428. name: "Normal",
  17429. height: math.unit(6, "feet"),
  17430. default: true
  17431. },
  17432. ]
  17433. ))
  17434. characterMakers.push(() => makeCharacter(
  17435. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17436. {
  17437. front: {
  17438. height: math.unit(6 + 8 / 12, "feet"),
  17439. weight: math.unit(220, "lb"),
  17440. name: "Front",
  17441. image: {
  17442. source: "./media/characters/caylex/front.svg",
  17443. extra: 821 / 772,
  17444. bottom: 0.07
  17445. }
  17446. },
  17447. back: {
  17448. height: math.unit(6 + 8 / 12, "feet"),
  17449. weight: math.unit(220, "lb"),
  17450. name: "Back",
  17451. image: {
  17452. source: "./media/characters/caylex/back.svg",
  17453. extra: 821 / 772,
  17454. bottom: 0.022
  17455. }
  17456. },
  17457. hand: {
  17458. height: math.unit(1.25, "feet"),
  17459. name: "Hand",
  17460. image: {
  17461. source: "./media/characters/caylex/hand.svg"
  17462. }
  17463. },
  17464. foot: {
  17465. height: math.unit(1.6, "feet"),
  17466. name: "Foot",
  17467. image: {
  17468. source: "./media/characters/caylex/foot.svg"
  17469. }
  17470. },
  17471. armored: {
  17472. height: math.unit(6 + 8 / 12, "feet"),
  17473. weight: math.unit(250, "lb"),
  17474. name: "Armored",
  17475. image: {
  17476. source: "./media/characters/caylex/armored.svg",
  17477. extra: 1420 / 1310,
  17478. bottom: 0.045
  17479. }
  17480. },
  17481. },
  17482. [
  17483. {
  17484. name: "Normal",
  17485. height: math.unit(6 + 8 / 12, "feet"),
  17486. default: true
  17487. },
  17488. {
  17489. name: "Normal+",
  17490. height: math.unit(12, "feet")
  17491. },
  17492. ]
  17493. ))
  17494. characterMakers.push(() => makeCharacter(
  17495. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17496. {
  17497. front: {
  17498. height: math.unit(7 + 6 / 12, "feet"),
  17499. weight: math.unit(288, "lb"),
  17500. name: "Front",
  17501. image: {
  17502. source: "./media/characters/alana/front.svg",
  17503. extra: 679 / 653,
  17504. bottom: 22.5 / 701
  17505. }
  17506. },
  17507. },
  17508. [
  17509. {
  17510. name: "Normal",
  17511. height: math.unit(7 + 6 / 12, "feet")
  17512. },
  17513. {
  17514. name: "Large",
  17515. height: math.unit(50, "feet")
  17516. },
  17517. {
  17518. name: "Macro",
  17519. height: math.unit(100, "feet"),
  17520. default: true
  17521. },
  17522. {
  17523. name: "Macro+",
  17524. height: math.unit(200, "feet")
  17525. },
  17526. ]
  17527. ))
  17528. characterMakers.push(() => makeCharacter(
  17529. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17530. {
  17531. front: {
  17532. height: math.unit(6 + 1 / 12, "feet"),
  17533. weight: math.unit(210, "lb"),
  17534. name: "Front",
  17535. image: {
  17536. source: "./media/characters/hasani/front.svg",
  17537. extra: 244 / 232,
  17538. bottom: 0.01
  17539. }
  17540. },
  17541. back: {
  17542. height: math.unit(6 + 1 / 12, "feet"),
  17543. weight: math.unit(210, "lb"),
  17544. name: "Back",
  17545. image: {
  17546. source: "./media/characters/hasani/back.svg",
  17547. extra: 244 / 232,
  17548. bottom: 0.01
  17549. }
  17550. },
  17551. },
  17552. [
  17553. {
  17554. name: "Normal",
  17555. height: math.unit(6 + 1 / 12, "feet")
  17556. },
  17557. {
  17558. name: "Macro",
  17559. height: math.unit(175, "feet"),
  17560. default: true
  17561. },
  17562. ]
  17563. ))
  17564. characterMakers.push(() => makeCharacter(
  17565. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17566. {
  17567. front: {
  17568. height: math.unit(1.82, "meters"),
  17569. weight: math.unit(140, "lb"),
  17570. name: "Front",
  17571. image: {
  17572. source: "./media/characters/nita/front.svg",
  17573. extra: 2473 / 2363,
  17574. bottom: 0.01
  17575. }
  17576. },
  17577. },
  17578. [
  17579. {
  17580. name: "Normal",
  17581. height: math.unit(1.82, "m")
  17582. },
  17583. {
  17584. name: "Macro",
  17585. height: math.unit(300, "m")
  17586. },
  17587. {
  17588. name: "Mistake Canon",
  17589. height: math.unit(0.5, "miles"),
  17590. default: true
  17591. },
  17592. {
  17593. name: "Big Mistake",
  17594. height: math.unit(13, "miles")
  17595. },
  17596. {
  17597. name: "Playing God",
  17598. height: math.unit(2450, "miles")
  17599. },
  17600. ]
  17601. ))
  17602. characterMakers.push(() => makeCharacter(
  17603. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17604. {
  17605. front: {
  17606. height: math.unit(4, "feet"),
  17607. weight: math.unit(120, "lb"),
  17608. name: "Front",
  17609. image: {
  17610. source: "./media/characters/shiriko/front.svg",
  17611. extra: 970/934,
  17612. bottom: 5/975
  17613. }
  17614. },
  17615. },
  17616. [
  17617. {
  17618. name: "Normal",
  17619. height: math.unit(4, "feet"),
  17620. default: true
  17621. },
  17622. ]
  17623. ))
  17624. characterMakers.push(() => makeCharacter(
  17625. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17626. {
  17627. front: {
  17628. height: math.unit(6, "feet"),
  17629. name: "front",
  17630. image: {
  17631. source: "./media/characters/deja/front.svg",
  17632. extra: 926 / 840,
  17633. bottom: 0.07
  17634. }
  17635. },
  17636. },
  17637. [
  17638. {
  17639. name: "Planck Length",
  17640. height: math.unit(1.6e-35, "meters")
  17641. },
  17642. {
  17643. name: "Normal",
  17644. height: math.unit(30.48, "meters"),
  17645. default: true
  17646. },
  17647. {
  17648. name: "Universal",
  17649. height: math.unit(8.8e26, "meters")
  17650. },
  17651. ]
  17652. ))
  17653. characterMakers.push(() => makeCharacter(
  17654. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17655. {
  17656. side: {
  17657. height: math.unit(8, "feet"),
  17658. weight: math.unit(6300, "lb"),
  17659. name: "Side",
  17660. image: {
  17661. source: "./media/characters/anima/side.svg",
  17662. bottom: 0.035
  17663. }
  17664. },
  17665. },
  17666. [
  17667. {
  17668. name: "Normal",
  17669. height: math.unit(8, "feet"),
  17670. default: true
  17671. },
  17672. ]
  17673. ))
  17674. characterMakers.push(() => makeCharacter(
  17675. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17676. {
  17677. front: {
  17678. height: math.unit(8, "feet"),
  17679. weight: math.unit(350, "lb"),
  17680. name: "Front",
  17681. image: {
  17682. source: "./media/characters/bianca/front.svg",
  17683. extra: 234 / 225,
  17684. bottom: 0.03
  17685. }
  17686. },
  17687. },
  17688. [
  17689. {
  17690. name: "Normal",
  17691. height: math.unit(8, "feet"),
  17692. default: true
  17693. },
  17694. ]
  17695. ))
  17696. characterMakers.push(() => makeCharacter(
  17697. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17698. {
  17699. front: {
  17700. height: math.unit(6, "feet"),
  17701. weight: math.unit(150, "lb"),
  17702. name: "Front",
  17703. image: {
  17704. source: "./media/characters/adinia/front.svg",
  17705. extra: 1845 / 1672,
  17706. bottom: 0.02
  17707. }
  17708. },
  17709. back: {
  17710. height: math.unit(6, "feet"),
  17711. weight: math.unit(150, "lb"),
  17712. name: "Back",
  17713. image: {
  17714. source: "./media/characters/adinia/back.svg",
  17715. extra: 1845 / 1672,
  17716. bottom: 0.002
  17717. }
  17718. },
  17719. },
  17720. [
  17721. {
  17722. name: "Normal",
  17723. height: math.unit(11 + 5 / 12, "feet"),
  17724. default: true
  17725. },
  17726. ]
  17727. ))
  17728. characterMakers.push(() => makeCharacter(
  17729. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17730. {
  17731. front: {
  17732. height: math.unit(3, "meters"),
  17733. weight: math.unit(200, "kg"),
  17734. name: "Front",
  17735. image: {
  17736. source: "./media/characters/lykasa/front.svg",
  17737. extra: 1076 / 976,
  17738. bottom: 0.06
  17739. }
  17740. },
  17741. },
  17742. [
  17743. {
  17744. name: "Normal",
  17745. height: math.unit(3, "meters")
  17746. },
  17747. {
  17748. name: "Kaiju",
  17749. height: math.unit(120, "meters"),
  17750. default: true
  17751. },
  17752. {
  17753. name: "Mega Kaiju",
  17754. height: math.unit(240, "km")
  17755. },
  17756. {
  17757. name: "Giga Kaiju",
  17758. height: math.unit(400, "megameters")
  17759. },
  17760. {
  17761. name: "Tera Kaiju",
  17762. height: math.unit(800, "gigameters")
  17763. },
  17764. {
  17765. name: "Kaiju Dragon Goddess",
  17766. height: math.unit(26, "zettaparsecs")
  17767. },
  17768. ]
  17769. ))
  17770. characterMakers.push(() => makeCharacter(
  17771. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17772. {
  17773. side: {
  17774. height: math.unit(283 / 124 * 6, "feet"),
  17775. weight: math.unit(35000, "lb"),
  17776. name: "Side",
  17777. image: {
  17778. source: "./media/characters/malfaren/side.svg",
  17779. extra: 2500 / 1010,
  17780. bottom: 0.01
  17781. }
  17782. },
  17783. front: {
  17784. height: math.unit(22.36, "feet"),
  17785. weight: math.unit(35000, "lb"),
  17786. name: "Front",
  17787. image: {
  17788. source: "./media/characters/malfaren/front.svg",
  17789. extra: 1631 / 1476,
  17790. bottom: 0.01
  17791. }
  17792. },
  17793. maw: {
  17794. height: math.unit(6.9, "feet"),
  17795. name: "Maw",
  17796. image: {
  17797. source: "./media/characters/malfaren/maw.svg"
  17798. }
  17799. },
  17800. },
  17801. [
  17802. {
  17803. name: "Big",
  17804. height: math.unit(283 / 162 * 6, "feet"),
  17805. },
  17806. {
  17807. name: "Bigger",
  17808. height: math.unit(283 / 124 * 6, "feet")
  17809. },
  17810. {
  17811. name: "Massive",
  17812. height: math.unit(283 / 92 * 6, "feet"),
  17813. default: true
  17814. },
  17815. {
  17816. name: "👀💦",
  17817. height: math.unit(283 / 73 * 6, "feet"),
  17818. },
  17819. ]
  17820. ))
  17821. characterMakers.push(() => makeCharacter(
  17822. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17823. {
  17824. front: {
  17825. height: math.unit(1.7, "m"),
  17826. weight: math.unit(70, "kg"),
  17827. name: "Front",
  17828. image: {
  17829. source: "./media/characters/kernel/front.svg",
  17830. extra: 222 / 210,
  17831. bottom: 0.007
  17832. }
  17833. },
  17834. },
  17835. [
  17836. {
  17837. name: "Nano",
  17838. height: math.unit(17, "micrometers")
  17839. },
  17840. {
  17841. name: "Micro",
  17842. height: math.unit(1.7, "mm")
  17843. },
  17844. {
  17845. name: "Small",
  17846. height: math.unit(1.7, "cm")
  17847. },
  17848. {
  17849. name: "Normal",
  17850. height: math.unit(1.7, "m"),
  17851. default: true
  17852. },
  17853. ]
  17854. ))
  17855. characterMakers.push(() => makeCharacter(
  17856. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17857. {
  17858. front: {
  17859. height: math.unit(1.75, "meters"),
  17860. weight: math.unit(65, "kg"),
  17861. name: "Front",
  17862. image: {
  17863. source: "./media/characters/jayne-folest/front.svg",
  17864. extra: 2115 / 2007,
  17865. bottom: 0.02
  17866. }
  17867. },
  17868. back: {
  17869. height: math.unit(1.75, "meters"),
  17870. weight: math.unit(65, "kg"),
  17871. name: "Back",
  17872. image: {
  17873. source: "./media/characters/jayne-folest/back.svg",
  17874. extra: 2115 / 2007,
  17875. bottom: 0.005
  17876. }
  17877. },
  17878. frontClothed: {
  17879. height: math.unit(1.75, "meters"),
  17880. weight: math.unit(65, "kg"),
  17881. name: "Front (Clothed)",
  17882. image: {
  17883. source: "./media/characters/jayne-folest/front-clothed.svg",
  17884. extra: 2115 / 2007,
  17885. bottom: 0.035
  17886. }
  17887. },
  17888. hand: {
  17889. height: math.unit(1 / 1.260, "feet"),
  17890. name: "Hand",
  17891. image: {
  17892. source: "./media/characters/jayne-folest/hand.svg"
  17893. }
  17894. },
  17895. foot: {
  17896. height: math.unit(1 / 0.918, "feet"),
  17897. name: "Foot",
  17898. image: {
  17899. source: "./media/characters/jayne-folest/foot.svg"
  17900. }
  17901. },
  17902. },
  17903. [
  17904. {
  17905. name: "Micro",
  17906. height: math.unit(4, "cm")
  17907. },
  17908. {
  17909. name: "Normal",
  17910. height: math.unit(1.75, "meters")
  17911. },
  17912. {
  17913. name: "Macro",
  17914. height: math.unit(47.5, "meters"),
  17915. default: true
  17916. },
  17917. ]
  17918. ))
  17919. characterMakers.push(() => makeCharacter(
  17920. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17921. {
  17922. front: {
  17923. height: math.unit(180, "cm"),
  17924. weight: math.unit(70, "kg"),
  17925. name: "Front",
  17926. image: {
  17927. source: "./media/characters/algier/front.svg",
  17928. extra: 596 / 572,
  17929. bottom: 0.04
  17930. }
  17931. },
  17932. back: {
  17933. height: math.unit(180, "cm"),
  17934. weight: math.unit(70, "kg"),
  17935. name: "Back",
  17936. image: {
  17937. source: "./media/characters/algier/back.svg",
  17938. extra: 596 / 572,
  17939. bottom: 0.025
  17940. }
  17941. },
  17942. frontdressed: {
  17943. height: math.unit(180, "cm"),
  17944. weight: math.unit(150, "kg"),
  17945. name: "Front-dressed",
  17946. image: {
  17947. source: "./media/characters/algier/front-dressed.svg",
  17948. extra: 596 / 572,
  17949. bottom: 0.038
  17950. }
  17951. },
  17952. },
  17953. [
  17954. {
  17955. name: "Micro",
  17956. height: math.unit(5, "cm")
  17957. },
  17958. {
  17959. name: "Normal",
  17960. height: math.unit(180, "cm"),
  17961. default: true
  17962. },
  17963. {
  17964. name: "Macro",
  17965. height: math.unit(64, "m")
  17966. },
  17967. ]
  17968. ))
  17969. characterMakers.push(() => makeCharacter(
  17970. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17971. {
  17972. upright: {
  17973. height: math.unit(7, "feet"),
  17974. weight: math.unit(300, "lb"),
  17975. name: "Upright",
  17976. image: {
  17977. source: "./media/characters/pretzel/upright.svg",
  17978. extra: 534 / 522,
  17979. bottom: 0.065
  17980. }
  17981. },
  17982. sprawling: {
  17983. height: math.unit(3.75, "feet"),
  17984. weight: math.unit(300, "lb"),
  17985. name: "Sprawling",
  17986. image: {
  17987. source: "./media/characters/pretzel/sprawling.svg",
  17988. extra: 314 / 281,
  17989. bottom: 0.1
  17990. }
  17991. },
  17992. tongue: {
  17993. height: math.unit(2, "feet"),
  17994. name: "Tongue",
  17995. image: {
  17996. source: "./media/characters/pretzel/tongue.svg"
  17997. }
  17998. },
  17999. },
  18000. [
  18001. {
  18002. name: "Normal",
  18003. height: math.unit(7, "feet"),
  18004. default: true
  18005. },
  18006. {
  18007. name: "Oversized",
  18008. height: math.unit(15, "feet")
  18009. },
  18010. {
  18011. name: "Huge",
  18012. height: math.unit(30, "feet")
  18013. },
  18014. {
  18015. name: "Macro",
  18016. height: math.unit(250, "feet")
  18017. },
  18018. ]
  18019. ))
  18020. characterMakers.push(() => makeCharacter(
  18021. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18022. {
  18023. sideFront: {
  18024. height: math.unit(5 + 2 / 12, "feet"),
  18025. weight: math.unit(120, "lb"),
  18026. name: "Front Side",
  18027. image: {
  18028. source: "./media/characters/roxi/side-front.svg",
  18029. extra: 2924 / 2717,
  18030. bottom: 0.08
  18031. }
  18032. },
  18033. sideBack: {
  18034. height: math.unit(5 + 2 / 12, "feet"),
  18035. weight: math.unit(120, "lb"),
  18036. name: "Back Side",
  18037. image: {
  18038. source: "./media/characters/roxi/side-back.svg",
  18039. extra: 2904 / 2693,
  18040. bottom: 0.06
  18041. }
  18042. },
  18043. front: {
  18044. height: math.unit(5 + 2 / 12, "feet"),
  18045. weight: math.unit(120, "lb"),
  18046. name: "Front",
  18047. image: {
  18048. source: "./media/characters/roxi/front.svg",
  18049. extra: 2028 / 1907,
  18050. bottom: 0.01
  18051. }
  18052. },
  18053. frontAlt: {
  18054. height: math.unit(5 + 2 / 12, "feet"),
  18055. weight: math.unit(120, "lb"),
  18056. name: "Front (Alt)",
  18057. image: {
  18058. source: "./media/characters/roxi/front-alt.svg",
  18059. extra: 1828 / 1798,
  18060. bottom: 0.01
  18061. }
  18062. },
  18063. sitting: {
  18064. height: math.unit(2.8, "feet"),
  18065. weight: math.unit(120, "lb"),
  18066. name: "Sitting",
  18067. image: {
  18068. source: "./media/characters/roxi/sitting.svg",
  18069. extra: 2660 / 2462,
  18070. bottom: 0.1
  18071. }
  18072. },
  18073. },
  18074. [
  18075. {
  18076. name: "Normal",
  18077. height: math.unit(5 + 2 / 12, "feet"),
  18078. default: true
  18079. },
  18080. ]
  18081. ))
  18082. characterMakers.push(() => makeCharacter(
  18083. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18084. {
  18085. side: {
  18086. height: math.unit(55, "feet"),
  18087. weight: math.unit(153, "tons"),
  18088. name: "Side",
  18089. image: {
  18090. source: "./media/characters/shadow/side.svg",
  18091. extra: 701 / 628,
  18092. bottom: 0.02
  18093. }
  18094. },
  18095. flying: {
  18096. height: math.unit(145, "feet"),
  18097. weight: math.unit(153, "tons"),
  18098. name: "Flying",
  18099. image: {
  18100. source: "./media/characters/shadow/flying.svg"
  18101. }
  18102. },
  18103. },
  18104. [
  18105. {
  18106. name: "Normal",
  18107. height: math.unit(55, "feet"),
  18108. default: true
  18109. },
  18110. ]
  18111. ))
  18112. characterMakers.push(() => makeCharacter(
  18113. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18114. {
  18115. front: {
  18116. height: math.unit(6, "feet"),
  18117. weight: math.unit(200, "lb"),
  18118. name: "Front",
  18119. image: {
  18120. source: "./media/characters/marcie/front.svg",
  18121. extra: 960 / 876,
  18122. bottom: 58 / 1017.87
  18123. }
  18124. },
  18125. },
  18126. [
  18127. {
  18128. name: "Macro",
  18129. height: math.unit(1, "mile"),
  18130. default: true
  18131. },
  18132. ]
  18133. ))
  18134. characterMakers.push(() => makeCharacter(
  18135. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18136. {
  18137. front: {
  18138. height: math.unit(7, "feet"),
  18139. weight: math.unit(200, "lb"),
  18140. name: "Front",
  18141. image: {
  18142. source: "./media/characters/kachina/front.svg",
  18143. extra: 1290.68 / 1119,
  18144. bottom: 36.5 / 1327.18
  18145. }
  18146. },
  18147. },
  18148. [
  18149. {
  18150. name: "Normal",
  18151. height: math.unit(7, "feet"),
  18152. default: true
  18153. },
  18154. ]
  18155. ))
  18156. characterMakers.push(() => makeCharacter(
  18157. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18158. {
  18159. looking: {
  18160. height: math.unit(2, "meters"),
  18161. weight: math.unit(300, "kg"),
  18162. name: "Looking",
  18163. image: {
  18164. source: "./media/characters/kash/looking.svg",
  18165. extra: 474 / 344,
  18166. bottom: 0.03
  18167. }
  18168. },
  18169. side: {
  18170. height: math.unit(2, "meters"),
  18171. weight: math.unit(300, "kg"),
  18172. name: "Side",
  18173. image: {
  18174. source: "./media/characters/kash/side.svg",
  18175. extra: 302 / 251,
  18176. bottom: 0.03
  18177. }
  18178. },
  18179. front: {
  18180. height: math.unit(2, "meters"),
  18181. weight: math.unit(300, "kg"),
  18182. name: "Front",
  18183. image: {
  18184. source: "./media/characters/kash/front.svg",
  18185. extra: 495 / 360,
  18186. bottom: 0.015
  18187. }
  18188. },
  18189. },
  18190. [
  18191. {
  18192. name: "Normal",
  18193. height: math.unit(2, "meters"),
  18194. default: true
  18195. },
  18196. {
  18197. name: "Big",
  18198. height: math.unit(3, "meters")
  18199. },
  18200. {
  18201. name: "Large",
  18202. height: math.unit(5, "meters")
  18203. },
  18204. ]
  18205. ))
  18206. characterMakers.push(() => makeCharacter(
  18207. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18208. {
  18209. feeding: {
  18210. height: math.unit(6.7, "feet"),
  18211. weight: math.unit(350, "lb"),
  18212. name: "Feeding",
  18213. image: {
  18214. source: "./media/characters/lalim/feeding.svg",
  18215. }
  18216. },
  18217. },
  18218. [
  18219. {
  18220. name: "Normal",
  18221. height: math.unit(6.7, "feet"),
  18222. default: true
  18223. },
  18224. ]
  18225. ))
  18226. characterMakers.push(() => makeCharacter(
  18227. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18228. {
  18229. front: {
  18230. height: math.unit(9.5, "feet"),
  18231. weight: math.unit(600, "lb"),
  18232. name: "Front",
  18233. image: {
  18234. source: "./media/characters/de'vout/front.svg",
  18235. extra: 1443 / 1328,
  18236. bottom: 0.025
  18237. }
  18238. },
  18239. back: {
  18240. height: math.unit(9.5, "feet"),
  18241. weight: math.unit(600, "lb"),
  18242. name: "Back",
  18243. image: {
  18244. source: "./media/characters/de'vout/back.svg",
  18245. extra: 1443 / 1328
  18246. }
  18247. },
  18248. frontDressed: {
  18249. height: math.unit(9.5, "feet"),
  18250. weight: math.unit(600, "lb"),
  18251. name: "Front (Dressed",
  18252. image: {
  18253. source: "./media/characters/de'vout/front-dressed.svg",
  18254. extra: 1443 / 1328,
  18255. bottom: 0.025
  18256. }
  18257. },
  18258. backDressed: {
  18259. height: math.unit(9.5, "feet"),
  18260. weight: math.unit(600, "lb"),
  18261. name: "Back (Dressed",
  18262. image: {
  18263. source: "./media/characters/de'vout/back-dressed.svg",
  18264. extra: 1443 / 1328
  18265. }
  18266. },
  18267. },
  18268. [
  18269. {
  18270. name: "Normal",
  18271. height: math.unit(9.5, "feet"),
  18272. default: true
  18273. },
  18274. ]
  18275. ))
  18276. characterMakers.push(() => makeCharacter(
  18277. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18278. {
  18279. front: {
  18280. height: math.unit(8, "feet"),
  18281. weight: math.unit(225, "lb"),
  18282. name: "Front",
  18283. image: {
  18284. source: "./media/characters/talana/front.svg",
  18285. extra: 1410 / 1300,
  18286. bottom: 0.015
  18287. }
  18288. },
  18289. frontDressed: {
  18290. height: math.unit(8, "feet"),
  18291. weight: math.unit(225, "lb"),
  18292. name: "Front (Dressed",
  18293. image: {
  18294. source: "./media/characters/talana/front-dressed.svg",
  18295. extra: 1410 / 1300,
  18296. bottom: 0.015
  18297. }
  18298. },
  18299. },
  18300. [
  18301. {
  18302. name: "Normal",
  18303. height: math.unit(8, "feet"),
  18304. default: true
  18305. },
  18306. ]
  18307. ))
  18308. characterMakers.push(() => makeCharacter(
  18309. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18310. {
  18311. side: {
  18312. height: math.unit(7.2, "feet"),
  18313. weight: math.unit(150, "lb"),
  18314. name: "Side",
  18315. image: {
  18316. source: "./media/characters/xeauvok/side.svg",
  18317. extra: 1975 / 1523,
  18318. bottom: 0.07
  18319. }
  18320. },
  18321. },
  18322. [
  18323. {
  18324. name: "Normal",
  18325. height: math.unit(7.2, "feet"),
  18326. default: true
  18327. },
  18328. ]
  18329. ))
  18330. characterMakers.push(() => makeCharacter(
  18331. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18332. {
  18333. side: {
  18334. height: math.unit(10, "feet"),
  18335. weight: math.unit(900, "kg"),
  18336. name: "Side",
  18337. image: {
  18338. source: "./media/characters/zara/side.svg",
  18339. extra: 504 / 498
  18340. }
  18341. },
  18342. },
  18343. [
  18344. {
  18345. name: "Normal",
  18346. height: math.unit(10, "feet"),
  18347. default: true
  18348. },
  18349. ]
  18350. ))
  18351. characterMakers.push(() => makeCharacter(
  18352. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18353. {
  18354. side: {
  18355. height: math.unit(6, "feet"),
  18356. weight: math.unit(150, "lb"),
  18357. name: "Side",
  18358. image: {
  18359. source: "./media/characters/richard-dragon/side.svg",
  18360. extra: 845 / 340,
  18361. bottom: 0.017
  18362. }
  18363. },
  18364. maw: {
  18365. height: math.unit(2.97, "feet"),
  18366. name: "Maw",
  18367. image: {
  18368. source: "./media/characters/richard-dragon/maw.svg"
  18369. }
  18370. },
  18371. },
  18372. [
  18373. ]
  18374. ))
  18375. characterMakers.push(() => makeCharacter(
  18376. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18377. {
  18378. front: {
  18379. height: math.unit(4, "feet"),
  18380. weight: math.unit(100, "lb"),
  18381. name: "Front",
  18382. image: {
  18383. source: "./media/characters/richard-smeargle/front.svg",
  18384. extra: 2952 / 2820,
  18385. bottom: 0.028
  18386. }
  18387. },
  18388. },
  18389. [
  18390. {
  18391. name: "Normal",
  18392. height: math.unit(4, "feet"),
  18393. default: true
  18394. },
  18395. {
  18396. name: "Dynamax",
  18397. height: math.unit(20, "meters")
  18398. },
  18399. ]
  18400. ))
  18401. characterMakers.push(() => makeCharacter(
  18402. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18403. {
  18404. front: {
  18405. height: math.unit(6, "feet"),
  18406. weight: math.unit(110, "lb"),
  18407. name: "Front",
  18408. image: {
  18409. source: "./media/characters/klay/front.svg",
  18410. extra: 962 / 883,
  18411. bottom: 0.04
  18412. }
  18413. },
  18414. back: {
  18415. height: math.unit(6, "feet"),
  18416. weight: math.unit(110, "lb"),
  18417. name: "Back",
  18418. image: {
  18419. source: "./media/characters/klay/back.svg",
  18420. extra: 962 / 883
  18421. }
  18422. },
  18423. beans: {
  18424. height: math.unit(1.15, "feet"),
  18425. name: "Beans",
  18426. image: {
  18427. source: "./media/characters/klay/beans.svg"
  18428. }
  18429. },
  18430. },
  18431. [
  18432. {
  18433. name: "Micro",
  18434. height: math.unit(6, "inches")
  18435. },
  18436. {
  18437. name: "Mini",
  18438. height: math.unit(3, "feet")
  18439. },
  18440. {
  18441. name: "Normal",
  18442. height: math.unit(6, "feet"),
  18443. default: true
  18444. },
  18445. {
  18446. name: "Big",
  18447. height: math.unit(25, "feet")
  18448. },
  18449. {
  18450. name: "Macro",
  18451. height: math.unit(100, "feet")
  18452. },
  18453. {
  18454. name: "Megamacro",
  18455. height: math.unit(400, "feet")
  18456. },
  18457. ]
  18458. ))
  18459. characterMakers.push(() => makeCharacter(
  18460. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18461. {
  18462. front: {
  18463. height: math.unit(6, "feet"),
  18464. weight: math.unit(160, "lb"),
  18465. name: "Front",
  18466. image: {
  18467. source: "./media/characters/marcus/front.svg",
  18468. extra: 734 / 676,
  18469. bottom: 0.03
  18470. }
  18471. },
  18472. },
  18473. [
  18474. {
  18475. name: "Little",
  18476. height: math.unit(6, "feet")
  18477. },
  18478. {
  18479. name: "Normal",
  18480. height: math.unit(110, "feet"),
  18481. default: true
  18482. },
  18483. {
  18484. name: "Macro",
  18485. height: math.unit(250, "feet")
  18486. },
  18487. {
  18488. name: "Megamacro",
  18489. height: math.unit(1000, "feet")
  18490. },
  18491. ]
  18492. ))
  18493. characterMakers.push(() => makeCharacter(
  18494. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18495. {
  18496. front: {
  18497. height: math.unit(7, "feet"),
  18498. weight: math.unit(275, "lb"),
  18499. name: "Front",
  18500. image: {
  18501. source: "./media/characters/claude-delroute/front.svg",
  18502. extra: 230 / 214,
  18503. bottom: 0.007
  18504. }
  18505. },
  18506. side: {
  18507. height: math.unit(7, "feet"),
  18508. weight: math.unit(275, "lb"),
  18509. name: "Side",
  18510. image: {
  18511. source: "./media/characters/claude-delroute/side.svg",
  18512. extra: 222 / 214,
  18513. bottom: 0.01
  18514. }
  18515. },
  18516. back: {
  18517. height: math.unit(7, "feet"),
  18518. weight: math.unit(275, "lb"),
  18519. name: "Back",
  18520. image: {
  18521. source: "./media/characters/claude-delroute/back.svg",
  18522. extra: 230 / 214,
  18523. bottom: 0.015
  18524. }
  18525. },
  18526. maw: {
  18527. height: math.unit(0.6407, "meters"),
  18528. name: "Maw",
  18529. image: {
  18530. source: "./media/characters/claude-delroute/maw.svg"
  18531. }
  18532. },
  18533. },
  18534. [
  18535. {
  18536. name: "Normal",
  18537. height: math.unit(7, "feet"),
  18538. default: true
  18539. },
  18540. {
  18541. name: "Lorge",
  18542. height: math.unit(20, "feet")
  18543. },
  18544. ]
  18545. ))
  18546. characterMakers.push(() => makeCharacter(
  18547. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18548. {
  18549. front: {
  18550. height: math.unit(8 + 4 / 12, "feet"),
  18551. weight: math.unit(600, "lb"),
  18552. name: "Front",
  18553. image: {
  18554. source: "./media/characters/dragonien/front.svg",
  18555. extra: 100 / 94,
  18556. bottom: 3.3 / 103.3445
  18557. }
  18558. },
  18559. back: {
  18560. height: math.unit(8 + 4 / 12, "feet"),
  18561. weight: math.unit(600, "lb"),
  18562. name: "Back",
  18563. image: {
  18564. source: "./media/characters/dragonien/back.svg",
  18565. extra: 776 / 746,
  18566. bottom: 6.4 / 782.0616
  18567. }
  18568. },
  18569. foot: {
  18570. height: math.unit(1.54, "feet"),
  18571. name: "Foot",
  18572. image: {
  18573. source: "./media/characters/dragonien/foot.svg",
  18574. }
  18575. },
  18576. },
  18577. [
  18578. {
  18579. name: "Normal",
  18580. height: math.unit(8 + 4 / 12, "feet"),
  18581. default: true
  18582. },
  18583. {
  18584. name: "Macro",
  18585. height: math.unit(200, "feet")
  18586. },
  18587. {
  18588. name: "Megamacro",
  18589. height: math.unit(1, "mile")
  18590. },
  18591. {
  18592. name: "Gigamacro",
  18593. height: math.unit(1000, "miles")
  18594. },
  18595. ]
  18596. ))
  18597. characterMakers.push(() => makeCharacter(
  18598. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18599. {
  18600. front: {
  18601. height: math.unit(5 + 2 / 12, "feet"),
  18602. weight: math.unit(110, "lb"),
  18603. name: "Front",
  18604. image: {
  18605. source: "./media/characters/desta/front.svg",
  18606. extra: 767 / 726,
  18607. bottom: 11.7 / 779
  18608. }
  18609. },
  18610. back: {
  18611. height: math.unit(5 + 2 / 12, "feet"),
  18612. weight: math.unit(110, "lb"),
  18613. name: "Back",
  18614. image: {
  18615. source: "./media/characters/desta/back.svg",
  18616. extra: 777 / 728,
  18617. bottom: 6 / 784
  18618. }
  18619. },
  18620. frontAlt: {
  18621. height: math.unit(5 + 2 / 12, "feet"),
  18622. weight: math.unit(110, "lb"),
  18623. name: "Front",
  18624. image: {
  18625. source: "./media/characters/desta/front-alt.svg",
  18626. extra: 1482 / 1417
  18627. }
  18628. },
  18629. side: {
  18630. height: math.unit(5 + 2 / 12, "feet"),
  18631. weight: math.unit(110, "lb"),
  18632. name: "Side",
  18633. image: {
  18634. source: "./media/characters/desta/side.svg",
  18635. extra: 2579 / 2491,
  18636. bottom: 0.053
  18637. }
  18638. },
  18639. },
  18640. [
  18641. {
  18642. name: "Micro",
  18643. height: math.unit(6, "inches")
  18644. },
  18645. {
  18646. name: "Normal",
  18647. height: math.unit(5 + 2 / 12, "feet"),
  18648. default: true
  18649. },
  18650. {
  18651. name: "Macro",
  18652. height: math.unit(62, "feet")
  18653. },
  18654. {
  18655. name: "Megamacro",
  18656. height: math.unit(1800, "feet")
  18657. },
  18658. ]
  18659. ))
  18660. characterMakers.push(() => makeCharacter(
  18661. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18662. {
  18663. front: {
  18664. height: math.unit(10, "feet"),
  18665. weight: math.unit(700, "lb"),
  18666. name: "Front",
  18667. image: {
  18668. source: "./media/characters/storm-alystar/front.svg",
  18669. extra: 2112 / 1898,
  18670. bottom: 0.034
  18671. }
  18672. },
  18673. },
  18674. [
  18675. {
  18676. name: "Micro",
  18677. height: math.unit(3.5, "inches")
  18678. },
  18679. {
  18680. name: "Normal",
  18681. height: math.unit(10, "feet"),
  18682. default: true
  18683. },
  18684. {
  18685. name: "Macro",
  18686. height: math.unit(400, "feet")
  18687. },
  18688. {
  18689. name: "Deific",
  18690. height: math.unit(60, "miles")
  18691. },
  18692. ]
  18693. ))
  18694. characterMakers.push(() => makeCharacter(
  18695. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18696. {
  18697. front: {
  18698. height: math.unit(2.35, "meters"),
  18699. weight: math.unit(119, "kg"),
  18700. name: "Front",
  18701. image: {
  18702. source: "./media/characters/ilia/front.svg",
  18703. extra: 1285 / 1255,
  18704. bottom: 0.06
  18705. }
  18706. },
  18707. },
  18708. [
  18709. {
  18710. name: "Normal",
  18711. height: math.unit(2.35, "meters")
  18712. },
  18713. {
  18714. name: "Macro",
  18715. height: math.unit(140, "meters"),
  18716. default: true
  18717. },
  18718. {
  18719. name: "Megamacro",
  18720. height: math.unit(100, "miles")
  18721. },
  18722. ]
  18723. ))
  18724. characterMakers.push(() => makeCharacter(
  18725. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18726. {
  18727. front: {
  18728. height: math.unit(6 + 5 / 12, "feet"),
  18729. weight: math.unit(190, "lb"),
  18730. name: "Front",
  18731. image: {
  18732. source: "./media/characters/kingdead/front.svg",
  18733. extra: 1228 / 1177
  18734. }
  18735. },
  18736. },
  18737. [
  18738. {
  18739. name: "Micro",
  18740. height: math.unit(7, "inches")
  18741. },
  18742. {
  18743. name: "Normal",
  18744. height: math.unit(6 + 5 / 12, "feet")
  18745. },
  18746. {
  18747. name: "Macro",
  18748. height: math.unit(150, "feet"),
  18749. default: true
  18750. },
  18751. {
  18752. name: "Megamacro",
  18753. height: math.unit(200, "miles")
  18754. },
  18755. ]
  18756. ))
  18757. characterMakers.push(() => makeCharacter(
  18758. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18759. {
  18760. front: {
  18761. height: math.unit(8, "feet"),
  18762. weight: math.unit(600, "lb"),
  18763. name: "Front",
  18764. image: {
  18765. source: "./media/characters/kyrehx/front.svg",
  18766. extra: 1195 / 1095,
  18767. bottom: 0.034
  18768. }
  18769. },
  18770. },
  18771. [
  18772. {
  18773. name: "Micro",
  18774. height: math.unit(2, "inches")
  18775. },
  18776. {
  18777. name: "Normal",
  18778. height: math.unit(8, "feet"),
  18779. default: true
  18780. },
  18781. {
  18782. name: "Macro",
  18783. height: math.unit(255, "feet")
  18784. },
  18785. ]
  18786. ))
  18787. characterMakers.push(() => makeCharacter(
  18788. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18789. {
  18790. front: {
  18791. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18792. weight: math.unit(184, "lb"),
  18793. name: "Front",
  18794. image: {
  18795. source: "./media/characters/xang/front.svg",
  18796. extra: 845 / 755
  18797. }
  18798. },
  18799. },
  18800. [
  18801. {
  18802. name: "Normal",
  18803. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18804. default: true
  18805. },
  18806. {
  18807. name: "Macro",
  18808. height: math.unit(0.935 * 146, "feet")
  18809. },
  18810. {
  18811. name: "Megamacro",
  18812. height: math.unit(0.935 * 3, "miles")
  18813. },
  18814. ]
  18815. ))
  18816. characterMakers.push(() => makeCharacter(
  18817. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18818. {
  18819. frontDressed: {
  18820. height: math.unit(5 + 7 / 12, "feet"),
  18821. weight: math.unit(140, "lb"),
  18822. name: "Front (Dressed)",
  18823. image: {
  18824. source: "./media/characters/doc-weardno/front-dressed.svg",
  18825. extra: 263 / 234
  18826. }
  18827. },
  18828. backDressed: {
  18829. height: math.unit(5 + 7 / 12, "feet"),
  18830. weight: math.unit(140, "lb"),
  18831. name: "Back (Dressed)",
  18832. image: {
  18833. source: "./media/characters/doc-weardno/back-dressed.svg",
  18834. extra: 266 / 238
  18835. }
  18836. },
  18837. front: {
  18838. height: math.unit(5 + 7 / 12, "feet"),
  18839. weight: math.unit(140, "lb"),
  18840. name: "Front",
  18841. image: {
  18842. source: "./media/characters/doc-weardno/front.svg",
  18843. extra: 254 / 233
  18844. }
  18845. },
  18846. },
  18847. [
  18848. {
  18849. name: "Micro",
  18850. height: math.unit(3, "inches")
  18851. },
  18852. {
  18853. name: "Normal",
  18854. height: math.unit(5 + 7 / 12, "feet"),
  18855. default: true
  18856. },
  18857. {
  18858. name: "Macro",
  18859. height: math.unit(25, "feet")
  18860. },
  18861. {
  18862. name: "Megamacro",
  18863. height: math.unit(2, "miles")
  18864. },
  18865. ]
  18866. ))
  18867. characterMakers.push(() => makeCharacter(
  18868. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18869. {
  18870. front: {
  18871. height: math.unit(6 + 2 / 12, "feet"),
  18872. weight: math.unit(153, "lb"),
  18873. name: "Front",
  18874. image: {
  18875. source: "./media/characters/seth-whilst/front.svg",
  18876. bottom: 0.07
  18877. }
  18878. },
  18879. },
  18880. [
  18881. {
  18882. name: "Micro",
  18883. height: math.unit(5, "inches")
  18884. },
  18885. {
  18886. name: "Normal",
  18887. height: math.unit(6 + 2 / 12, "feet"),
  18888. default: true
  18889. },
  18890. ]
  18891. ))
  18892. characterMakers.push(() => makeCharacter(
  18893. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18894. {
  18895. front: {
  18896. height: math.unit(3, "inches"),
  18897. weight: math.unit(8, "grams"),
  18898. name: "Front",
  18899. image: {
  18900. source: "./media/characters/pocket-jabari/front.svg",
  18901. extra: 1024 / 974,
  18902. bottom: 0.039
  18903. }
  18904. },
  18905. },
  18906. [
  18907. {
  18908. name: "Minimicro",
  18909. height: math.unit(8, "mm")
  18910. },
  18911. {
  18912. name: "Micro",
  18913. height: math.unit(3, "inches"),
  18914. default: true
  18915. },
  18916. {
  18917. name: "Normal",
  18918. height: math.unit(3, "feet")
  18919. },
  18920. ]
  18921. ))
  18922. characterMakers.push(() => makeCharacter(
  18923. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18924. {
  18925. front: {
  18926. height: math.unit(15, "feet"),
  18927. weight: math.unit(3280, "lb"),
  18928. name: "Front",
  18929. image: {
  18930. source: "./media/characters/sapphy/front.svg",
  18931. extra: 671 / 577,
  18932. bottom: 0.085
  18933. }
  18934. },
  18935. back: {
  18936. height: math.unit(15, "feet"),
  18937. weight: math.unit(3280, "lb"),
  18938. name: "Back",
  18939. image: {
  18940. source: "./media/characters/sapphy/back.svg",
  18941. extra: 631 / 607,
  18942. bottom: 0.045
  18943. }
  18944. },
  18945. },
  18946. [
  18947. {
  18948. name: "Normal",
  18949. height: math.unit(15, "feet")
  18950. },
  18951. {
  18952. name: "Casual Macro",
  18953. height: math.unit(120, "feet")
  18954. },
  18955. {
  18956. name: "Macro",
  18957. height: math.unit(2150, "feet"),
  18958. default: true
  18959. },
  18960. {
  18961. name: "Megamacro",
  18962. height: math.unit(8, "miles")
  18963. },
  18964. {
  18965. name: "Galaxy Mom",
  18966. height: math.unit(6, "megalightyears")
  18967. },
  18968. ]
  18969. ))
  18970. characterMakers.push(() => makeCharacter(
  18971. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18972. {
  18973. front: {
  18974. height: math.unit(6, "feet"),
  18975. weight: math.unit(170, "lb"),
  18976. name: "Front",
  18977. image: {
  18978. source: "./media/characters/kiro/front.svg",
  18979. extra: 1064 / 1012,
  18980. bottom: 0.052
  18981. }
  18982. },
  18983. },
  18984. [
  18985. {
  18986. name: "Micro",
  18987. height: math.unit(6, "inches")
  18988. },
  18989. {
  18990. name: "Normal",
  18991. height: math.unit(6, "feet"),
  18992. default: true
  18993. },
  18994. {
  18995. name: "Macro",
  18996. height: math.unit(72, "feet")
  18997. },
  18998. ]
  18999. ))
  19000. characterMakers.push(() => makeCharacter(
  19001. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19002. {
  19003. front: {
  19004. height: math.unit(5 + 9 / 12, "feet"),
  19005. weight: math.unit(175, "lb"),
  19006. name: "Front",
  19007. image: {
  19008. source: "./media/characters/irishfox/front.svg",
  19009. extra: 1912 / 1680,
  19010. bottom: 0.02
  19011. }
  19012. },
  19013. },
  19014. [
  19015. {
  19016. name: "Nano",
  19017. height: math.unit(1, "mm")
  19018. },
  19019. {
  19020. name: "Micro",
  19021. height: math.unit(2, "inches")
  19022. },
  19023. {
  19024. name: "Normal",
  19025. height: math.unit(5 + 9 / 12, "feet"),
  19026. default: true
  19027. },
  19028. {
  19029. name: "Macro",
  19030. height: math.unit(45, "feet")
  19031. },
  19032. ]
  19033. ))
  19034. characterMakers.push(() => makeCharacter(
  19035. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19036. {
  19037. front: {
  19038. height: math.unit(6 + 1 / 12, "feet"),
  19039. weight: math.unit(75, "lb"),
  19040. name: "Front",
  19041. image: {
  19042. source: "./media/characters/aronai-sieyes/front.svg",
  19043. extra: 1556 / 1480,
  19044. bottom: 0.015
  19045. }
  19046. },
  19047. side: {
  19048. height: math.unit(6 + 1 / 12, "feet"),
  19049. weight: math.unit(75, "lb"),
  19050. name: "Side",
  19051. image: {
  19052. source: "./media/characters/aronai-sieyes/side.svg",
  19053. extra: 1433 / 1390,
  19054. bottom: 0.0393
  19055. }
  19056. },
  19057. back: {
  19058. height: math.unit(6 + 1 / 12, "feet"),
  19059. weight: math.unit(75, "lb"),
  19060. name: "Back",
  19061. image: {
  19062. source: "./media/characters/aronai-sieyes/back.svg",
  19063. extra: 1544 / 1494,
  19064. bottom: 0.02
  19065. }
  19066. },
  19067. frontClothed: {
  19068. height: math.unit(6 + 1 / 12, "feet"),
  19069. weight: math.unit(75, "lb"),
  19070. name: "Front (Clothed)",
  19071. image: {
  19072. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  19073. extra: 1582 / 1527
  19074. }
  19075. },
  19076. feral: {
  19077. height: math.unit(18, "feet"),
  19078. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19079. name: "Feral",
  19080. image: {
  19081. source: "./media/characters/aronai-sieyes/feral.svg",
  19082. extra: 1530 / 1240,
  19083. bottom: 0.035
  19084. }
  19085. },
  19086. },
  19087. [
  19088. {
  19089. name: "Micro",
  19090. height: math.unit(2, "inches")
  19091. },
  19092. {
  19093. name: "Normal",
  19094. height: math.unit(6 + 1 / 12, "feet"),
  19095. default: true
  19096. }
  19097. ]
  19098. ))
  19099. characterMakers.push(() => makeCharacter(
  19100. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19101. {
  19102. front: {
  19103. height: math.unit(12, "feet"),
  19104. weight: math.unit(410, "kg"),
  19105. name: "Front",
  19106. image: {
  19107. source: "./media/characters/xuna/front.svg",
  19108. extra: 2184 / 1980
  19109. }
  19110. },
  19111. side: {
  19112. height: math.unit(12, "feet"),
  19113. weight: math.unit(410, "kg"),
  19114. name: "Side",
  19115. image: {
  19116. source: "./media/characters/xuna/side.svg",
  19117. extra: 2184 / 1980
  19118. }
  19119. },
  19120. back: {
  19121. height: math.unit(12, "feet"),
  19122. weight: math.unit(410, "kg"),
  19123. name: "Back",
  19124. image: {
  19125. source: "./media/characters/xuna/back.svg",
  19126. extra: 2184 / 1980
  19127. }
  19128. },
  19129. },
  19130. [
  19131. {
  19132. name: "Nano glow",
  19133. height: math.unit(10, "nm")
  19134. },
  19135. {
  19136. name: "Micro floof",
  19137. height: math.unit(0.3, "m")
  19138. },
  19139. {
  19140. name: "Huggable softy boi",
  19141. height: math.unit(3.6576, "m"),
  19142. default: true
  19143. },
  19144. {
  19145. name: "Admirable floof",
  19146. height: math.unit(80, "meters")
  19147. },
  19148. {
  19149. name: "Gentle macro",
  19150. height: math.unit(300, "meters")
  19151. },
  19152. {
  19153. name: "Very careful floof",
  19154. height: math.unit(3200, "meters")
  19155. },
  19156. {
  19157. name: "The mega floof",
  19158. height: math.unit(36000, "meters")
  19159. },
  19160. {
  19161. name: "Giga-fur-Wicker",
  19162. height: math.unit(4800000, "meters")
  19163. },
  19164. {
  19165. name: "Licky world",
  19166. height: math.unit(20000000, "meters")
  19167. },
  19168. {
  19169. name: "Floofy cyan sun",
  19170. height: math.unit(1500000000, "meters")
  19171. },
  19172. {
  19173. name: "Milky Wicker",
  19174. height: math.unit(1000000000000000000000, "meters")
  19175. },
  19176. {
  19177. name: "The observing Wicker",
  19178. height: math.unit(999999999999999999999999999, "meters")
  19179. },
  19180. ]
  19181. ))
  19182. characterMakers.push(() => makeCharacter(
  19183. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19184. {
  19185. front: {
  19186. height: math.unit(5 + 9 / 12, "feet"),
  19187. weight: math.unit(150, "lb"),
  19188. name: "Front",
  19189. image: {
  19190. source: "./media/characters/arokha-sieyes/front.svg",
  19191. extra: 1425 / 1284,
  19192. bottom: 0.05
  19193. }
  19194. },
  19195. },
  19196. [
  19197. {
  19198. name: "Normal",
  19199. height: math.unit(5 + 9 / 12, "feet")
  19200. },
  19201. {
  19202. name: "Macro",
  19203. height: math.unit(30, "meters"),
  19204. default: true
  19205. },
  19206. ]
  19207. ))
  19208. characterMakers.push(() => makeCharacter(
  19209. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19210. {
  19211. front: {
  19212. height: math.unit(6, "feet"),
  19213. weight: math.unit(180, "lb"),
  19214. name: "Front",
  19215. image: {
  19216. source: "./media/characters/arokh-sieyes/front.svg",
  19217. extra: 1830 / 1769,
  19218. bottom: 0.01
  19219. }
  19220. },
  19221. },
  19222. [
  19223. {
  19224. name: "Normal",
  19225. height: math.unit(6, "feet")
  19226. },
  19227. {
  19228. name: "Macro",
  19229. height: math.unit(30, "meters"),
  19230. default: true
  19231. },
  19232. ]
  19233. ))
  19234. characterMakers.push(() => makeCharacter(
  19235. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19236. {
  19237. side: {
  19238. height: math.unit(13 + 1 / 12, "feet"),
  19239. weight: math.unit(8.5, "tonnes"),
  19240. name: "Side",
  19241. image: {
  19242. source: "./media/characters/goldeneye/side.svg",
  19243. extra: 1182 / 778,
  19244. bottom: 0.067
  19245. }
  19246. },
  19247. paw: {
  19248. height: math.unit(3.4, "feet"),
  19249. name: "Paw",
  19250. image: {
  19251. source: "./media/characters/goldeneye/paw.svg"
  19252. }
  19253. },
  19254. },
  19255. [
  19256. {
  19257. name: "Normal",
  19258. height: math.unit(13 + 1 / 12, "feet"),
  19259. default: true
  19260. },
  19261. ]
  19262. ))
  19263. characterMakers.push(() => makeCharacter(
  19264. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19265. {
  19266. front: {
  19267. height: math.unit(6 + 1 / 12, "feet"),
  19268. weight: math.unit(210, "lb"),
  19269. name: "Front",
  19270. image: {
  19271. source: "./media/characters/leonardo-lycheborne/front.svg",
  19272. extra: 776/723,
  19273. bottom: 34/810
  19274. }
  19275. },
  19276. side: {
  19277. height: math.unit(6 + 1 / 12, "feet"),
  19278. weight: math.unit(210, "lb"),
  19279. name: "Side",
  19280. image: {
  19281. source: "./media/characters/leonardo-lycheborne/side.svg",
  19282. extra: 780/728,
  19283. bottom: 12/792
  19284. }
  19285. },
  19286. back: {
  19287. height: math.unit(6 + 1 / 12, "feet"),
  19288. weight: math.unit(210, "lb"),
  19289. name: "Back",
  19290. image: {
  19291. source: "./media/characters/leonardo-lycheborne/back.svg",
  19292. extra: 775/721,
  19293. bottom: 17/792
  19294. }
  19295. },
  19296. hand: {
  19297. height: math.unit(1.08, "feet"),
  19298. name: "Hand",
  19299. image: {
  19300. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19301. }
  19302. },
  19303. foot: {
  19304. height: math.unit(1.32, "feet"),
  19305. name: "Foot",
  19306. image: {
  19307. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19308. }
  19309. },
  19310. maw: {
  19311. height: math.unit(1, "feet"),
  19312. name: "Maw",
  19313. image: {
  19314. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19315. }
  19316. },
  19317. were: {
  19318. height: math.unit(20, "feet"),
  19319. weight: math.unit(7800, "lb"),
  19320. name: "Were",
  19321. image: {
  19322. source: "./media/characters/leonardo-lycheborne/were.svg",
  19323. extra: 1224/1165,
  19324. bottom: 72/1296
  19325. }
  19326. },
  19327. feral: {
  19328. height: math.unit(7.5, "feet"),
  19329. weight: math.unit(600, "lb"),
  19330. name: "Feral",
  19331. image: {
  19332. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19333. extra: 797/702,
  19334. bottom: 139/936
  19335. }
  19336. },
  19337. taur: {
  19338. height: math.unit(11, "feet"),
  19339. weight: math.unit(3300, "lb"),
  19340. name: "Taur",
  19341. image: {
  19342. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19343. extra: 1271/1197,
  19344. bottom: 47/1318
  19345. }
  19346. },
  19347. barghest: {
  19348. height: math.unit(11, "feet"),
  19349. weight: math.unit(1300, "lb"),
  19350. name: "Barghest",
  19351. image: {
  19352. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19353. extra: 1291/1204,
  19354. bottom: 37/1328
  19355. }
  19356. },
  19357. dick: {
  19358. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19359. name: "Dick",
  19360. image: {
  19361. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19362. }
  19363. },
  19364. dickWere: {
  19365. height: math.unit((20) / 3.8, "feet"),
  19366. name: "Dick (Were)",
  19367. image: {
  19368. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19369. }
  19370. },
  19371. },
  19372. [
  19373. {
  19374. name: "Normal",
  19375. height: math.unit(6 + 1 / 12, "feet"),
  19376. default: true
  19377. },
  19378. ]
  19379. ))
  19380. characterMakers.push(() => makeCharacter(
  19381. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19382. {
  19383. front: {
  19384. height: math.unit(10, "feet"),
  19385. weight: math.unit(350, "lb"),
  19386. name: "Front",
  19387. image: {
  19388. source: "./media/characters/jet/front.svg",
  19389. extra: 2050 / 1980,
  19390. bottom: 0.013
  19391. }
  19392. },
  19393. back: {
  19394. height: math.unit(10, "feet"),
  19395. weight: math.unit(350, "lb"),
  19396. name: "Back",
  19397. image: {
  19398. source: "./media/characters/jet/back.svg",
  19399. extra: 2050 / 1980,
  19400. bottom: 0.013
  19401. }
  19402. },
  19403. },
  19404. [
  19405. {
  19406. name: "Micro",
  19407. height: math.unit(6, "inches")
  19408. },
  19409. {
  19410. name: "Normal",
  19411. height: math.unit(10, "feet"),
  19412. default: true
  19413. },
  19414. {
  19415. name: "Macro",
  19416. height: math.unit(100, "feet")
  19417. },
  19418. ]
  19419. ))
  19420. characterMakers.push(() => makeCharacter(
  19421. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19422. {
  19423. front: {
  19424. height: math.unit(15, "feet"),
  19425. weight: math.unit(2800, "lb"),
  19426. name: "Front",
  19427. image: {
  19428. source: "./media/characters/tanarath/front.svg",
  19429. extra: 2392 / 2220,
  19430. bottom: 0.03
  19431. }
  19432. },
  19433. back: {
  19434. height: math.unit(15, "feet"),
  19435. weight: math.unit(2800, "lb"),
  19436. name: "Back",
  19437. image: {
  19438. source: "./media/characters/tanarath/back.svg",
  19439. extra: 2392 / 2220,
  19440. bottom: 0.03
  19441. }
  19442. },
  19443. },
  19444. [
  19445. {
  19446. name: "Normal",
  19447. height: math.unit(15, "feet"),
  19448. default: true
  19449. },
  19450. ]
  19451. ))
  19452. characterMakers.push(() => makeCharacter(
  19453. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19454. {
  19455. front: {
  19456. height: math.unit(7 + 1 / 12, "feet"),
  19457. weight: math.unit(175, "lb"),
  19458. name: "Front",
  19459. image: {
  19460. source: "./media/characters/patty-cattybatty/front.svg",
  19461. extra: 908 / 874,
  19462. bottom: 0.025
  19463. }
  19464. },
  19465. },
  19466. [
  19467. {
  19468. name: "Micro",
  19469. height: math.unit(1, "inch")
  19470. },
  19471. {
  19472. name: "Normal",
  19473. height: math.unit(7 + 1 / 12, "feet")
  19474. },
  19475. {
  19476. name: "Mini Macro",
  19477. height: math.unit(155, "feet")
  19478. },
  19479. {
  19480. name: "Macro",
  19481. height: math.unit(1077, "feet")
  19482. },
  19483. {
  19484. name: "Mega Macro",
  19485. height: math.unit(47650, "feet"),
  19486. default: true
  19487. },
  19488. {
  19489. name: "Giga Macro",
  19490. height: math.unit(440, "miles")
  19491. },
  19492. {
  19493. name: "Tera Macro",
  19494. height: math.unit(8700, "miles")
  19495. },
  19496. {
  19497. name: "Planetary Macro",
  19498. height: math.unit(32700, "miles")
  19499. },
  19500. {
  19501. name: "Solar Macro",
  19502. height: math.unit(550000, "miles")
  19503. },
  19504. {
  19505. name: "Celestial Macro",
  19506. height: math.unit(2.5, "AU")
  19507. },
  19508. ]
  19509. ))
  19510. characterMakers.push(() => makeCharacter(
  19511. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19512. {
  19513. front: {
  19514. height: math.unit(4 + 5 / 12, "feet"),
  19515. weight: math.unit(90, "lb"),
  19516. name: "Front",
  19517. image: {
  19518. source: "./media/characters/cappu/front.svg",
  19519. extra: 1247 / 1152,
  19520. bottom: 0.012
  19521. }
  19522. },
  19523. },
  19524. [
  19525. {
  19526. name: "Normal",
  19527. height: math.unit(4 + 5 / 12, "feet"),
  19528. default: true
  19529. },
  19530. ]
  19531. ))
  19532. characterMakers.push(() => makeCharacter(
  19533. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19534. {
  19535. frontDressed: {
  19536. height: math.unit(70, "cm"),
  19537. weight: math.unit(6, "kg"),
  19538. name: "Front (Dressed)",
  19539. image: {
  19540. source: "./media/characters/sebi/front-dressed.svg",
  19541. extra: 713.5 / 686.5,
  19542. bottom: 0.003
  19543. }
  19544. },
  19545. front: {
  19546. height: math.unit(70, "cm"),
  19547. weight: math.unit(5, "kg"),
  19548. name: "Front",
  19549. image: {
  19550. source: "./media/characters/sebi/front.svg",
  19551. extra: 713.5 / 686.5,
  19552. bottom: 0.003
  19553. }
  19554. }
  19555. },
  19556. [
  19557. {
  19558. name: "Normal",
  19559. height: math.unit(70, "cm"),
  19560. default: true
  19561. },
  19562. {
  19563. name: "Macro",
  19564. height: math.unit(8, "meters")
  19565. },
  19566. ]
  19567. ))
  19568. characterMakers.push(() => makeCharacter(
  19569. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19570. {
  19571. front: {
  19572. height: math.unit(6, "feet"),
  19573. weight: math.unit(150, "lb"),
  19574. name: "Front",
  19575. image: {
  19576. source: "./media/characters/typhek/front.svg",
  19577. extra: 1948 / 1929,
  19578. bottom: 0.025
  19579. }
  19580. },
  19581. side: {
  19582. height: math.unit(6, "feet"),
  19583. weight: math.unit(150, "lb"),
  19584. name: "Side",
  19585. image: {
  19586. source: "./media/characters/typhek/side.svg",
  19587. extra: 2034 / 2010,
  19588. bottom: 0.003
  19589. }
  19590. },
  19591. back: {
  19592. height: math.unit(6, "feet"),
  19593. weight: math.unit(150, "lb"),
  19594. name: "Back",
  19595. image: {
  19596. source: "./media/characters/typhek/back.svg",
  19597. extra: 2005 / 1978,
  19598. bottom: 0.004
  19599. }
  19600. },
  19601. palm: {
  19602. height: math.unit(1.2, "feet"),
  19603. name: "Palm",
  19604. image: {
  19605. source: "./media/characters/typhek/palm.svg"
  19606. }
  19607. },
  19608. fist: {
  19609. height: math.unit(1.1, "feet"),
  19610. name: "Fist",
  19611. image: {
  19612. source: "./media/characters/typhek/fist.svg"
  19613. }
  19614. },
  19615. foot: {
  19616. height: math.unit(1.57, "feet"),
  19617. name: "Foot",
  19618. image: {
  19619. source: "./media/characters/typhek/foot.svg"
  19620. }
  19621. },
  19622. sole: {
  19623. height: math.unit(2.05, "feet"),
  19624. name: "Sole",
  19625. image: {
  19626. source: "./media/characters/typhek/sole.svg"
  19627. }
  19628. },
  19629. },
  19630. [
  19631. {
  19632. name: "Macro",
  19633. height: math.unit(40, "stories"),
  19634. default: true
  19635. },
  19636. {
  19637. name: "Megamacro",
  19638. height: math.unit(1, "mile")
  19639. },
  19640. {
  19641. name: "Gigamacro",
  19642. height: math.unit(4000, "solarradii")
  19643. },
  19644. {
  19645. name: "Universal",
  19646. height: math.unit(1.1, "universes")
  19647. }
  19648. ]
  19649. ))
  19650. characterMakers.push(() => makeCharacter(
  19651. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19652. {
  19653. side: {
  19654. height: math.unit(5 + 7 / 12, "feet"),
  19655. weight: math.unit(150, "lb"),
  19656. name: "Side",
  19657. image: {
  19658. source: "./media/characters/kassy/side.svg",
  19659. extra: 1280 / 1225,
  19660. bottom: 0.002
  19661. }
  19662. },
  19663. front: {
  19664. height: math.unit(5 + 7 / 12, "feet"),
  19665. weight: math.unit(150, "lb"),
  19666. name: "Front",
  19667. image: {
  19668. source: "./media/characters/kassy/front.svg",
  19669. extra: 1280 / 1225,
  19670. bottom: 0.025
  19671. }
  19672. },
  19673. back: {
  19674. height: math.unit(5 + 7 / 12, "feet"),
  19675. weight: math.unit(150, "lb"),
  19676. name: "Back",
  19677. image: {
  19678. source: "./media/characters/kassy/back.svg",
  19679. extra: 1280 / 1225,
  19680. bottom: 0.002
  19681. }
  19682. },
  19683. foot: {
  19684. height: math.unit(1.266, "feet"),
  19685. name: "Foot",
  19686. image: {
  19687. source: "./media/characters/kassy/foot.svg"
  19688. }
  19689. },
  19690. },
  19691. [
  19692. {
  19693. name: "Normal",
  19694. height: math.unit(5 + 7 / 12, "feet")
  19695. },
  19696. {
  19697. name: "Macro",
  19698. height: math.unit(137, "feet"),
  19699. default: true
  19700. },
  19701. {
  19702. name: "Megamacro",
  19703. height: math.unit(1, "mile")
  19704. },
  19705. ]
  19706. ))
  19707. characterMakers.push(() => makeCharacter(
  19708. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19709. {
  19710. front: {
  19711. height: math.unit(6 + 1 / 12, "feet"),
  19712. weight: math.unit(200, "lb"),
  19713. name: "Front",
  19714. image: {
  19715. source: "./media/characters/neil/front.svg",
  19716. extra: 1326 / 1250,
  19717. bottom: 0.023
  19718. }
  19719. },
  19720. },
  19721. [
  19722. {
  19723. name: "Normal",
  19724. height: math.unit(6 + 1 / 12, "feet"),
  19725. default: true
  19726. },
  19727. {
  19728. name: "Macro",
  19729. height: math.unit(200, "feet")
  19730. },
  19731. ]
  19732. ))
  19733. characterMakers.push(() => makeCharacter(
  19734. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19735. {
  19736. front: {
  19737. height: math.unit(5 + 9 / 12, "feet"),
  19738. weight: math.unit(190, "lb"),
  19739. name: "Front",
  19740. image: {
  19741. source: "./media/characters/atticus/front.svg",
  19742. extra: 2934 / 2785,
  19743. bottom: 0.025
  19744. }
  19745. },
  19746. },
  19747. [
  19748. {
  19749. name: "Normal",
  19750. height: math.unit(5 + 9 / 12, "feet"),
  19751. default: true
  19752. },
  19753. {
  19754. name: "Macro",
  19755. height: math.unit(180, "feet")
  19756. },
  19757. ]
  19758. ))
  19759. characterMakers.push(() => makeCharacter(
  19760. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19761. {
  19762. side: {
  19763. height: math.unit(9, "feet"),
  19764. weight: math.unit(650, "lb"),
  19765. name: "Side",
  19766. image: {
  19767. source: "./media/characters/milo/side.svg",
  19768. extra: 2644 / 2310,
  19769. bottom: 0.032
  19770. }
  19771. },
  19772. },
  19773. [
  19774. {
  19775. name: "Normal",
  19776. height: math.unit(9, "feet"),
  19777. default: true
  19778. },
  19779. {
  19780. name: "Macro",
  19781. height: math.unit(300, "feet")
  19782. },
  19783. ]
  19784. ))
  19785. characterMakers.push(() => makeCharacter(
  19786. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19787. {
  19788. side: {
  19789. height: math.unit(8, "meters"),
  19790. weight: math.unit(90000, "kg"),
  19791. name: "Side",
  19792. image: {
  19793. source: "./media/characters/ijzer/side.svg",
  19794. extra: 2756 / 1600,
  19795. bottom: 0.01
  19796. }
  19797. },
  19798. },
  19799. [
  19800. {
  19801. name: "Small",
  19802. height: math.unit(3, "meters")
  19803. },
  19804. {
  19805. name: "Normal",
  19806. height: math.unit(8, "meters"),
  19807. default: true
  19808. },
  19809. {
  19810. name: "Normal+",
  19811. height: math.unit(10, "meters")
  19812. },
  19813. {
  19814. name: "Bigger",
  19815. height: math.unit(24, "meters")
  19816. },
  19817. {
  19818. name: "Huge",
  19819. height: math.unit(80, "meters")
  19820. },
  19821. ]
  19822. ))
  19823. characterMakers.push(() => makeCharacter(
  19824. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19825. {
  19826. front: {
  19827. height: math.unit(6 + 2 / 12, "feet"),
  19828. weight: math.unit(153, "lb"),
  19829. name: "Front",
  19830. image: {
  19831. source: "./media/characters/luca-cervicum/front.svg",
  19832. extra: 370 / 327,
  19833. bottom: 0.015
  19834. }
  19835. },
  19836. back: {
  19837. height: math.unit(6 + 2 / 12, "feet"),
  19838. weight: math.unit(153, "lb"),
  19839. name: "Back",
  19840. image: {
  19841. source: "./media/characters/luca-cervicum/back.svg",
  19842. extra: 367 / 333,
  19843. bottom: 0.005
  19844. }
  19845. },
  19846. frontGear: {
  19847. height: math.unit(6 + 2 / 12, "feet"),
  19848. weight: math.unit(173, "lb"),
  19849. name: "Front (Gear)",
  19850. image: {
  19851. source: "./media/characters/luca-cervicum/front-gear.svg",
  19852. extra: 377 / 333,
  19853. bottom: 0.006
  19854. }
  19855. },
  19856. },
  19857. [
  19858. {
  19859. name: "Normal",
  19860. height: math.unit(6 + 2 / 12, "feet"),
  19861. default: true
  19862. },
  19863. ]
  19864. ))
  19865. characterMakers.push(() => makeCharacter(
  19866. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19867. {
  19868. front: {
  19869. height: math.unit(6 + 1 / 12, "feet"),
  19870. weight: math.unit(304, "lb"),
  19871. name: "Front",
  19872. image: {
  19873. source: "./media/characters/oliver/front.svg",
  19874. extra: 157 / 143,
  19875. bottom: 0.08
  19876. }
  19877. },
  19878. },
  19879. [
  19880. {
  19881. name: "Normal",
  19882. height: math.unit(6 + 1 / 12, "feet"),
  19883. default: true
  19884. },
  19885. ]
  19886. ))
  19887. characterMakers.push(() => makeCharacter(
  19888. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19889. {
  19890. front: {
  19891. height: math.unit(5 + 7 / 12, "feet"),
  19892. weight: math.unit(140, "lb"),
  19893. name: "Front",
  19894. image: {
  19895. source: "./media/characters/shane/front.svg",
  19896. extra: 304 / 289,
  19897. bottom: 0.005
  19898. }
  19899. },
  19900. },
  19901. [
  19902. {
  19903. name: "Normal",
  19904. height: math.unit(5 + 7 / 12, "feet"),
  19905. default: true
  19906. },
  19907. ]
  19908. ))
  19909. characterMakers.push(() => makeCharacter(
  19910. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19911. {
  19912. front: {
  19913. height: math.unit(5 + 9 / 12, "feet"),
  19914. weight: math.unit(178, "lb"),
  19915. name: "Front",
  19916. image: {
  19917. source: "./media/characters/shin/front.svg",
  19918. extra: 159 / 151,
  19919. bottom: 0.015
  19920. }
  19921. },
  19922. },
  19923. [
  19924. {
  19925. name: "Normal",
  19926. height: math.unit(5 + 9 / 12, "feet"),
  19927. default: true
  19928. },
  19929. ]
  19930. ))
  19931. characterMakers.push(() => makeCharacter(
  19932. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19933. {
  19934. front: {
  19935. height: math.unit(5 + 10 / 12, "feet"),
  19936. weight: math.unit(168, "lb"),
  19937. name: "Front",
  19938. image: {
  19939. source: "./media/characters/xerxes/front.svg",
  19940. extra: 282 / 260,
  19941. bottom: 0.045
  19942. }
  19943. },
  19944. },
  19945. [
  19946. {
  19947. name: "Normal",
  19948. height: math.unit(5 + 10 / 12, "feet"),
  19949. default: true
  19950. },
  19951. ]
  19952. ))
  19953. characterMakers.push(() => makeCharacter(
  19954. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19955. {
  19956. front: {
  19957. height: math.unit(6 + 7 / 12, "feet"),
  19958. weight: math.unit(208, "lb"),
  19959. name: "Front",
  19960. image: {
  19961. source: "./media/characters/chaska/front.svg",
  19962. extra: 332 / 319,
  19963. bottom: 0.015
  19964. }
  19965. },
  19966. },
  19967. [
  19968. {
  19969. name: "Normal",
  19970. height: math.unit(6 + 7 / 12, "feet"),
  19971. default: true
  19972. },
  19973. ]
  19974. ))
  19975. characterMakers.push(() => makeCharacter(
  19976. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19977. {
  19978. front: {
  19979. height: math.unit(5 + 8 / 12, "feet"),
  19980. weight: math.unit(208, "lb"),
  19981. name: "Front",
  19982. image: {
  19983. source: "./media/characters/enuk/front.svg",
  19984. extra: 437 / 406,
  19985. bottom: 0.02
  19986. }
  19987. },
  19988. },
  19989. [
  19990. {
  19991. name: "Normal",
  19992. height: math.unit(5 + 8 / 12, "feet"),
  19993. default: true
  19994. },
  19995. ]
  19996. ))
  19997. characterMakers.push(() => makeCharacter(
  19998. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19999. {
  20000. front: {
  20001. height: math.unit(5 + 10 / 12, "feet"),
  20002. weight: math.unit(252, "lb"),
  20003. name: "Front",
  20004. image: {
  20005. source: "./media/characters/bruun/front.svg",
  20006. extra: 197 / 187,
  20007. bottom: 0.012
  20008. }
  20009. },
  20010. },
  20011. [
  20012. {
  20013. name: "Normal",
  20014. height: math.unit(5 + 10 / 12, "feet"),
  20015. default: true
  20016. },
  20017. ]
  20018. ))
  20019. characterMakers.push(() => makeCharacter(
  20020. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20021. {
  20022. front: {
  20023. height: math.unit(6 + 10 / 12, "feet"),
  20024. weight: math.unit(255, "lb"),
  20025. name: "Front",
  20026. image: {
  20027. source: "./media/characters/alexeev/front.svg",
  20028. extra: 213 / 200,
  20029. bottom: 0.05
  20030. }
  20031. },
  20032. },
  20033. [
  20034. {
  20035. name: "Normal",
  20036. height: math.unit(6 + 10 / 12, "feet"),
  20037. default: true
  20038. },
  20039. ]
  20040. ))
  20041. characterMakers.push(() => makeCharacter(
  20042. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20043. {
  20044. front: {
  20045. height: math.unit(2 + 8 / 12, "feet"),
  20046. weight: math.unit(22, "lb"),
  20047. name: "Front",
  20048. image: {
  20049. source: "./media/characters/evelyn/front.svg",
  20050. extra: 208 / 180
  20051. }
  20052. },
  20053. },
  20054. [
  20055. {
  20056. name: "Normal",
  20057. height: math.unit(2 + 8 / 12, "feet"),
  20058. default: true
  20059. },
  20060. ]
  20061. ))
  20062. characterMakers.push(() => makeCharacter(
  20063. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20064. {
  20065. front: {
  20066. height: math.unit(5 + 9 / 12, "feet"),
  20067. weight: math.unit(139, "lb"),
  20068. name: "Front",
  20069. image: {
  20070. source: "./media/characters/inca/front.svg",
  20071. extra: 294 / 291,
  20072. bottom: 0.03
  20073. }
  20074. },
  20075. },
  20076. [
  20077. {
  20078. name: "Normal",
  20079. height: math.unit(5 + 9 / 12, "feet"),
  20080. default: true
  20081. },
  20082. ]
  20083. ))
  20084. characterMakers.push(() => makeCharacter(
  20085. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  20086. {
  20087. front: {
  20088. height: math.unit(5 + 1 / 12, "feet"),
  20089. weight: math.unit(84, "lb"),
  20090. name: "Front",
  20091. image: {
  20092. source: "./media/characters/magdalene/front.svg",
  20093. extra: 293 / 273
  20094. }
  20095. },
  20096. },
  20097. [
  20098. {
  20099. name: "Normal",
  20100. height: math.unit(5 + 1 / 12, "feet"),
  20101. default: true
  20102. },
  20103. ]
  20104. ))
  20105. characterMakers.push(() => makeCharacter(
  20106. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20107. {
  20108. front: {
  20109. height: math.unit(6 + 3 / 12, "feet"),
  20110. weight: math.unit(185, "lb"),
  20111. name: "Front",
  20112. image: {
  20113. source: "./media/characters/mera/front.svg",
  20114. extra: 291 / 277,
  20115. bottom: 0.03
  20116. }
  20117. },
  20118. },
  20119. [
  20120. {
  20121. name: "Normal",
  20122. height: math.unit(6 + 3 / 12, "feet"),
  20123. default: true
  20124. },
  20125. ]
  20126. ))
  20127. characterMakers.push(() => makeCharacter(
  20128. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20129. {
  20130. front: {
  20131. height: math.unit(6 + 7 / 12, "feet"),
  20132. weight: math.unit(160, "lb"),
  20133. name: "Front",
  20134. image: {
  20135. source: "./media/characters/ceres/front.svg",
  20136. extra: 1023 / 950,
  20137. bottom: 0.027
  20138. }
  20139. },
  20140. back: {
  20141. height: math.unit(6 + 7 / 12, "feet"),
  20142. weight: math.unit(160, "lb"),
  20143. name: "Back",
  20144. image: {
  20145. source: "./media/characters/ceres/back.svg",
  20146. extra: 1023 / 950
  20147. }
  20148. },
  20149. },
  20150. [
  20151. {
  20152. name: "Normal",
  20153. height: math.unit(6 + 7 / 12, "feet"),
  20154. default: true
  20155. },
  20156. ]
  20157. ))
  20158. characterMakers.push(() => makeCharacter(
  20159. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20160. {
  20161. front: {
  20162. height: math.unit(5 + 10 / 12, "feet"),
  20163. weight: math.unit(150, "lb"),
  20164. name: "Front",
  20165. image: {
  20166. source: "./media/characters/kris/front.svg",
  20167. extra: 885 / 803,
  20168. bottom: 0.03
  20169. }
  20170. },
  20171. },
  20172. [
  20173. {
  20174. name: "Normal",
  20175. height: math.unit(5 + 10 / 12, "feet"),
  20176. default: true
  20177. },
  20178. ]
  20179. ))
  20180. characterMakers.push(() => makeCharacter(
  20181. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20182. {
  20183. front: {
  20184. height: math.unit(7, "feet"),
  20185. weight: math.unit(120, "kg"),
  20186. name: "Front",
  20187. image: {
  20188. source: "./media/characters/taluthus/front.svg",
  20189. extra: 903 / 833,
  20190. bottom: 0.015
  20191. }
  20192. },
  20193. },
  20194. [
  20195. {
  20196. name: "Normal",
  20197. height: math.unit(7, "feet"),
  20198. default: true
  20199. },
  20200. {
  20201. name: "Macro",
  20202. height: math.unit(300, "feet")
  20203. },
  20204. ]
  20205. ))
  20206. characterMakers.push(() => makeCharacter(
  20207. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20208. {
  20209. front: {
  20210. height: math.unit(5 + 9 / 12, "feet"),
  20211. weight: math.unit(145, "lb"),
  20212. name: "Front",
  20213. image: {
  20214. source: "./media/characters/dawn/front.svg",
  20215. extra: 2094 / 2016,
  20216. bottom: 0.025
  20217. }
  20218. },
  20219. back: {
  20220. height: math.unit(5 + 9 / 12, "feet"),
  20221. weight: math.unit(160, "lb"),
  20222. name: "Back",
  20223. image: {
  20224. source: "./media/characters/dawn/back.svg",
  20225. extra: 2112 / 2080,
  20226. bottom: 0.005
  20227. }
  20228. },
  20229. },
  20230. [
  20231. {
  20232. name: "Normal",
  20233. height: math.unit(6 + 7 / 12, "feet"),
  20234. default: true
  20235. },
  20236. ]
  20237. ))
  20238. characterMakers.push(() => makeCharacter(
  20239. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20240. {
  20241. anthro: {
  20242. height: math.unit(8 + 3 / 12, "feet"),
  20243. weight: math.unit(450, "lb"),
  20244. name: "Anthro",
  20245. image: {
  20246. source: "./media/characters/arador/anthro.svg",
  20247. extra: 1835 / 1718,
  20248. bottom: 0.025
  20249. }
  20250. },
  20251. feral: {
  20252. height: math.unit(4, "feet"),
  20253. weight: math.unit(200, "lb"),
  20254. name: "Feral",
  20255. image: {
  20256. source: "./media/characters/arador/feral.svg",
  20257. extra: 1683 / 1514,
  20258. bottom: 0.07
  20259. }
  20260. },
  20261. },
  20262. [
  20263. {
  20264. name: "Normal",
  20265. height: math.unit(8 + 3 / 12, "feet")
  20266. },
  20267. {
  20268. name: "Macro",
  20269. height: math.unit(82.5, "feet"),
  20270. default: true
  20271. },
  20272. ]
  20273. ))
  20274. characterMakers.push(() => makeCharacter(
  20275. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20276. {
  20277. front: {
  20278. height: math.unit(5 + 10 / 12, "feet"),
  20279. weight: math.unit(125, "lb"),
  20280. name: "Front",
  20281. image: {
  20282. source: "./media/characters/dharsi/front.svg",
  20283. extra: 716 / 630,
  20284. bottom: 0.035
  20285. }
  20286. },
  20287. },
  20288. [
  20289. {
  20290. name: "Nano",
  20291. height: math.unit(100, "nm")
  20292. },
  20293. {
  20294. name: "Micro",
  20295. height: math.unit(2, "inches")
  20296. },
  20297. {
  20298. name: "Normal",
  20299. height: math.unit(5 + 10 / 12, "feet"),
  20300. default: true
  20301. },
  20302. {
  20303. name: "Macro",
  20304. height: math.unit(1000, "feet")
  20305. },
  20306. {
  20307. name: "Megamacro",
  20308. height: math.unit(10, "miles")
  20309. },
  20310. {
  20311. name: "Gigamacro",
  20312. height: math.unit(3000, "miles")
  20313. },
  20314. {
  20315. name: "Teramacro",
  20316. height: math.unit(500000, "miles")
  20317. },
  20318. {
  20319. name: "Teramacro+",
  20320. height: math.unit(30, "galaxies")
  20321. },
  20322. ]
  20323. ))
  20324. characterMakers.push(() => makeCharacter(
  20325. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20326. {
  20327. front: {
  20328. height: math.unit(6, "feet"),
  20329. weight: math.unit(150, "lb"),
  20330. name: "Front",
  20331. image: {
  20332. source: "./media/characters/deathy/front.svg",
  20333. extra: 1552 / 1463,
  20334. bottom: 0.025
  20335. }
  20336. },
  20337. side: {
  20338. height: math.unit(6, "feet"),
  20339. weight: math.unit(150, "lb"),
  20340. name: "Side",
  20341. image: {
  20342. source: "./media/characters/deathy/side.svg",
  20343. extra: 1604 / 1455,
  20344. bottom: 0.025
  20345. }
  20346. },
  20347. back: {
  20348. height: math.unit(6, "feet"),
  20349. weight: math.unit(150, "lb"),
  20350. name: "Back",
  20351. image: {
  20352. source: "./media/characters/deathy/back.svg",
  20353. extra: 1580 / 1463,
  20354. bottom: 0.005
  20355. }
  20356. },
  20357. },
  20358. [
  20359. {
  20360. name: "Micro",
  20361. height: math.unit(5, "millimeters")
  20362. },
  20363. {
  20364. name: "Normal",
  20365. height: math.unit(6 + 5 / 12, "feet"),
  20366. default: true
  20367. },
  20368. ]
  20369. ))
  20370. characterMakers.push(() => makeCharacter(
  20371. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20372. {
  20373. front: {
  20374. height: math.unit(16, "feet"),
  20375. weight: math.unit(4000, "lb"),
  20376. name: "Front",
  20377. image: {
  20378. source: "./media/characters/juniper/front.svg",
  20379. bottom: 0.04
  20380. }
  20381. },
  20382. },
  20383. [
  20384. {
  20385. name: "Normal",
  20386. height: math.unit(16, "feet"),
  20387. default: true
  20388. },
  20389. ]
  20390. ))
  20391. characterMakers.push(() => makeCharacter(
  20392. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20393. {
  20394. front: {
  20395. height: math.unit(6, "feet"),
  20396. weight: math.unit(150, "lb"),
  20397. name: "Front",
  20398. image: {
  20399. source: "./media/characters/hipster/front.svg",
  20400. extra: 1312 / 1209,
  20401. bottom: 0.025
  20402. }
  20403. },
  20404. back: {
  20405. height: math.unit(6, "feet"),
  20406. weight: math.unit(150, "lb"),
  20407. name: "Back",
  20408. image: {
  20409. source: "./media/characters/hipster/back.svg",
  20410. extra: 1281 / 1196,
  20411. bottom: 0.01
  20412. }
  20413. },
  20414. },
  20415. [
  20416. {
  20417. name: "Micro",
  20418. height: math.unit(1, "mm")
  20419. },
  20420. {
  20421. name: "Normal",
  20422. height: math.unit(4, "inches"),
  20423. default: true
  20424. },
  20425. {
  20426. name: "Macro",
  20427. height: math.unit(500, "feet")
  20428. },
  20429. {
  20430. name: "Megamacro",
  20431. height: math.unit(1000, "miles")
  20432. },
  20433. ]
  20434. ))
  20435. characterMakers.push(() => makeCharacter(
  20436. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20437. {
  20438. front: {
  20439. height: math.unit(6, "feet"),
  20440. weight: math.unit(150, "lb"),
  20441. name: "Front",
  20442. image: {
  20443. source: "./media/characters/tendirmuldr/front.svg",
  20444. extra: 1878 / 1772,
  20445. bottom: 0.015
  20446. }
  20447. },
  20448. },
  20449. [
  20450. {
  20451. name: "Megamacro",
  20452. height: math.unit(1500, "miles"),
  20453. default: true
  20454. },
  20455. ]
  20456. ))
  20457. characterMakers.push(() => makeCharacter(
  20458. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20459. {
  20460. front: {
  20461. height: math.unit(14, "feet"),
  20462. weight: math.unit(12000, "lb"),
  20463. name: "Front",
  20464. image: {
  20465. source: "./media/characters/mort/front.svg",
  20466. extra: 365 / 318,
  20467. bottom: 0.01
  20468. }
  20469. },
  20470. side: {
  20471. height: math.unit(14, "feet"),
  20472. weight: math.unit(12000, "lb"),
  20473. name: "Side",
  20474. image: {
  20475. source: "./media/characters/mort/side.svg",
  20476. extra: 365 / 318,
  20477. bottom: 0.052
  20478. },
  20479. default: true
  20480. },
  20481. back: {
  20482. height: math.unit(14, "feet"),
  20483. weight: math.unit(12000, "lb"),
  20484. name: "Back",
  20485. image: {
  20486. source: "./media/characters/mort/back.svg",
  20487. extra: 371 / 332,
  20488. bottom: 0.18
  20489. }
  20490. },
  20491. },
  20492. [
  20493. {
  20494. name: "Normal",
  20495. height: math.unit(14, "feet"),
  20496. default: true
  20497. },
  20498. ]
  20499. ))
  20500. characterMakers.push(() => makeCharacter(
  20501. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20502. {
  20503. front: {
  20504. height: math.unit(8, "feet"),
  20505. weight: math.unit(1, "ton"),
  20506. name: "Front",
  20507. image: {
  20508. source: "./media/characters/lycoa/front.svg",
  20509. extra: 1875 / 1789,
  20510. bottom: 0.022
  20511. }
  20512. },
  20513. back: {
  20514. height: math.unit(8, "feet"),
  20515. weight: math.unit(1, "ton"),
  20516. name: "Back",
  20517. image: {
  20518. source: "./media/characters/lycoa/back.svg",
  20519. extra: 1835 / 1781,
  20520. bottom: 0.03
  20521. }
  20522. },
  20523. head: {
  20524. height: math.unit(2.1, "feet"),
  20525. name: "Head",
  20526. image: {
  20527. source: "./media/characters/lycoa/head.svg"
  20528. }
  20529. },
  20530. tailmaw: {
  20531. height: math.unit(1.9, "feet"),
  20532. name: "Tailmaw",
  20533. image: {
  20534. source: "./media/characters/lycoa/tailmaw.svg"
  20535. }
  20536. },
  20537. tentacles: {
  20538. height: math.unit(2.1, "feet"),
  20539. name: "Tentacles",
  20540. image: {
  20541. source: "./media/characters/lycoa/tentacles.svg"
  20542. }
  20543. },
  20544. dick: {
  20545. height: math.unit(1.73, "feet"),
  20546. name: "Dick",
  20547. image: {
  20548. source: "./media/characters/lycoa/dick.svg"
  20549. }
  20550. },
  20551. },
  20552. [
  20553. {
  20554. name: "Normal",
  20555. height: math.unit(8, "feet"),
  20556. default: true
  20557. },
  20558. {
  20559. name: "Macro",
  20560. height: math.unit(30, "feet")
  20561. },
  20562. ]
  20563. ))
  20564. characterMakers.push(() => makeCharacter(
  20565. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20566. {
  20567. front: {
  20568. height: math.unit(4 + 2 / 12, "feet"),
  20569. weight: math.unit(70, "lb"),
  20570. name: "Front",
  20571. image: {
  20572. source: "./media/characters/naldara/front.svg",
  20573. extra: 841 / 720,
  20574. bottom: 0.04
  20575. }
  20576. },
  20577. naga: {
  20578. height: math.unit(23, "feet"),
  20579. weight: math.unit(15000, "kg"),
  20580. name: "Naga",
  20581. image: {
  20582. source: "./media/characters/naldara/naga.svg",
  20583. extra: 3290 / 2959,
  20584. bottom: 124 / 3432
  20585. }
  20586. },
  20587. },
  20588. [
  20589. {
  20590. name: "Normal",
  20591. height: math.unit(4 + 2 / 12, "feet"),
  20592. default: true
  20593. },
  20594. ]
  20595. ))
  20596. characterMakers.push(() => makeCharacter(
  20597. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20598. {
  20599. front: {
  20600. height: math.unit(13 + 7 / 12, "feet"),
  20601. weight: math.unit(1500, "lb"),
  20602. name: "Front",
  20603. image: {
  20604. source: "./media/characters/briar/front.svg",
  20605. extra: 626 / 596,
  20606. bottom: 0.08
  20607. }
  20608. },
  20609. },
  20610. [
  20611. {
  20612. name: "Normal",
  20613. height: math.unit(13 + 7 / 12, "feet"),
  20614. default: true
  20615. },
  20616. ]
  20617. ))
  20618. characterMakers.push(() => makeCharacter(
  20619. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20620. {
  20621. side: {
  20622. height: math.unit(10, "feet"),
  20623. weight: math.unit(500, "lb"),
  20624. name: "Side",
  20625. image: {
  20626. source: "./media/characters/vanguard/side.svg",
  20627. extra: 502 / 425,
  20628. bottom: 0.087
  20629. }
  20630. },
  20631. },
  20632. [
  20633. {
  20634. name: "Normal",
  20635. height: math.unit(10, "feet"),
  20636. default: true
  20637. },
  20638. ]
  20639. ))
  20640. characterMakers.push(() => makeCharacter(
  20641. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20642. {
  20643. front: {
  20644. height: math.unit(7.5, "feet"),
  20645. weight: math.unit(2, "lb"),
  20646. name: "Front",
  20647. image: {
  20648. source: "./media/characters/artemis/front.svg",
  20649. extra: 1192 / 1075,
  20650. bottom: 0.07
  20651. }
  20652. },
  20653. frontNsfw: {
  20654. height: math.unit(7.5, "feet"),
  20655. weight: math.unit(2, "lb"),
  20656. name: "Front (NSFW)",
  20657. image: {
  20658. source: "./media/characters/artemis/front-nsfw.svg",
  20659. extra: 1192 / 1075,
  20660. bottom: 0.07
  20661. }
  20662. },
  20663. frontNsfwer: {
  20664. height: math.unit(7.5, "feet"),
  20665. weight: math.unit(2, "lb"),
  20666. name: "Front (NSFW-er)",
  20667. image: {
  20668. source: "./media/characters/artemis/front-nsfwer.svg",
  20669. extra: 1192 / 1075,
  20670. bottom: 0.07
  20671. }
  20672. },
  20673. side: {
  20674. height: math.unit(7.5, "feet"),
  20675. weight: math.unit(2, "lb"),
  20676. name: "Side",
  20677. image: {
  20678. source: "./media/characters/artemis/side.svg",
  20679. extra: 1192 / 1075,
  20680. bottom: 0.07
  20681. }
  20682. },
  20683. sideNsfw: {
  20684. height: math.unit(7.5, "feet"),
  20685. weight: math.unit(2, "lb"),
  20686. name: "Side (NSFW)",
  20687. image: {
  20688. source: "./media/characters/artemis/side-nsfw.svg",
  20689. extra: 1192 / 1075,
  20690. bottom: 0.07
  20691. }
  20692. },
  20693. sideNsfwer: {
  20694. height: math.unit(7.5, "feet"),
  20695. weight: math.unit(2, "lb"),
  20696. name: "Side (NSFW-er)",
  20697. image: {
  20698. source: "./media/characters/artemis/side-nsfwer.svg",
  20699. extra: 1192 / 1075,
  20700. bottom: 0.07
  20701. }
  20702. },
  20703. maw: {
  20704. height: math.unit(1.1, "feet"),
  20705. name: "Maw",
  20706. image: {
  20707. source: "./media/characters/artemis/maw.svg"
  20708. }
  20709. },
  20710. stomach: {
  20711. height: math.unit(0.95, "feet"),
  20712. name: "Stomach",
  20713. image: {
  20714. source: "./media/characters/artemis/stomach.svg"
  20715. }
  20716. },
  20717. dickCanine: {
  20718. height: math.unit(1, "feet"),
  20719. name: "Dick (Canine)",
  20720. image: {
  20721. source: "./media/characters/artemis/dick-canine.svg"
  20722. }
  20723. },
  20724. dickEquine: {
  20725. height: math.unit(0.85, "feet"),
  20726. name: "Dick (Equine)",
  20727. image: {
  20728. source: "./media/characters/artemis/dick-equine.svg"
  20729. }
  20730. },
  20731. dickExotic: {
  20732. height: math.unit(0.85, "feet"),
  20733. name: "Dick (Exotic)",
  20734. image: {
  20735. source: "./media/characters/artemis/dick-exotic.svg"
  20736. }
  20737. },
  20738. },
  20739. [
  20740. {
  20741. name: "Normal",
  20742. height: math.unit(7.5, "feet"),
  20743. default: true
  20744. },
  20745. {
  20746. name: "Enlarged",
  20747. height: math.unit(12, "feet")
  20748. },
  20749. ]
  20750. ))
  20751. characterMakers.push(() => makeCharacter(
  20752. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20753. {
  20754. front: {
  20755. height: math.unit(5 + 3 / 12, "feet"),
  20756. weight: math.unit(160, "lb"),
  20757. name: "Front",
  20758. image: {
  20759. source: "./media/characters/kira/front.svg",
  20760. extra: 906 / 786,
  20761. bottom: 0.01
  20762. }
  20763. },
  20764. back: {
  20765. height: math.unit(5 + 3 / 12, "feet"),
  20766. weight: math.unit(160, "lb"),
  20767. name: "Back",
  20768. image: {
  20769. source: "./media/characters/kira/back.svg",
  20770. extra: 882 / 757,
  20771. bottom: 0.005
  20772. }
  20773. },
  20774. frontDressed: {
  20775. height: math.unit(5 + 3 / 12, "feet"),
  20776. weight: math.unit(160, "lb"),
  20777. name: "Front (Dressed)",
  20778. image: {
  20779. source: "./media/characters/kira/front-dressed.svg",
  20780. extra: 906 / 786,
  20781. bottom: 0.01
  20782. }
  20783. },
  20784. beans: {
  20785. height: math.unit(0.92, "feet"),
  20786. name: "Beans",
  20787. image: {
  20788. source: "./media/characters/kira/beans.svg"
  20789. }
  20790. },
  20791. },
  20792. [
  20793. {
  20794. name: "Normal",
  20795. height: math.unit(5 + 3 / 12, "feet"),
  20796. default: true
  20797. },
  20798. ]
  20799. ))
  20800. characterMakers.push(() => makeCharacter(
  20801. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20802. {
  20803. front: {
  20804. height: math.unit(5 + 4 / 12, "feet"),
  20805. weight: math.unit(145, "lb"),
  20806. name: "Front",
  20807. image: {
  20808. source: "./media/characters/scramble/front.svg",
  20809. extra: 763 / 727,
  20810. bottom: 0.05
  20811. }
  20812. },
  20813. back: {
  20814. height: math.unit(5 + 4 / 12, "feet"),
  20815. weight: math.unit(145, "lb"),
  20816. name: "Back",
  20817. image: {
  20818. source: "./media/characters/scramble/back.svg",
  20819. extra: 826 / 737,
  20820. bottom: 0.002
  20821. }
  20822. },
  20823. },
  20824. [
  20825. {
  20826. name: "Normal",
  20827. height: math.unit(5 + 4 / 12, "feet"),
  20828. default: true
  20829. },
  20830. ]
  20831. ))
  20832. characterMakers.push(() => makeCharacter(
  20833. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20834. {
  20835. side: {
  20836. height: math.unit(6 + 2 / 12, "feet"),
  20837. weight: math.unit(190, "lb"),
  20838. name: "Side",
  20839. image: {
  20840. source: "./media/characters/biscuit/side.svg",
  20841. extra: 858 / 791,
  20842. bottom: 0.044
  20843. }
  20844. },
  20845. },
  20846. [
  20847. {
  20848. name: "Normal",
  20849. height: math.unit(6 + 2 / 12, "feet"),
  20850. default: true
  20851. },
  20852. ]
  20853. ))
  20854. characterMakers.push(() => makeCharacter(
  20855. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20856. {
  20857. front: {
  20858. height: math.unit(5 + 2 / 12, "feet"),
  20859. weight: math.unit(120, "lb"),
  20860. name: "Front",
  20861. image: {
  20862. source: "./media/characters/poffin/front.svg",
  20863. extra: 786 / 680,
  20864. bottom: 0.005
  20865. }
  20866. },
  20867. },
  20868. [
  20869. {
  20870. name: "Normal",
  20871. height: math.unit(5 + 2 / 12, "feet"),
  20872. default: true
  20873. },
  20874. ]
  20875. ))
  20876. characterMakers.push(() => makeCharacter(
  20877. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20878. {
  20879. front: {
  20880. height: math.unit(6 + 3 / 12, "feet"),
  20881. weight: math.unit(519, "lb"),
  20882. name: "Front",
  20883. image: {
  20884. source: "./media/characters/dhari/front.svg",
  20885. extra: 1048 / 946,
  20886. bottom: 0.015
  20887. }
  20888. },
  20889. back: {
  20890. height: math.unit(6 + 3 / 12, "feet"),
  20891. weight: math.unit(519, "lb"),
  20892. name: "Back",
  20893. image: {
  20894. source: "./media/characters/dhari/back.svg",
  20895. extra: 1048 / 931,
  20896. bottom: 0.005
  20897. }
  20898. },
  20899. frontDressed: {
  20900. height: math.unit(6 + 3 / 12, "feet"),
  20901. weight: math.unit(519, "lb"),
  20902. name: "Front (Dressed)",
  20903. image: {
  20904. source: "./media/characters/dhari/front-dressed.svg",
  20905. extra: 1713 / 1546,
  20906. bottom: 0.02
  20907. }
  20908. },
  20909. backDressed: {
  20910. height: math.unit(6 + 3 / 12, "feet"),
  20911. weight: math.unit(519, "lb"),
  20912. name: "Back (Dressed)",
  20913. image: {
  20914. source: "./media/characters/dhari/back-dressed.svg",
  20915. extra: 1699 / 1537,
  20916. bottom: 0.01
  20917. }
  20918. },
  20919. maw: {
  20920. height: math.unit(0.95, "feet"),
  20921. name: "Maw",
  20922. image: {
  20923. source: "./media/characters/dhari/maw.svg"
  20924. }
  20925. },
  20926. wereFront: {
  20927. height: math.unit(12 + 8 / 12, "feet"),
  20928. weight: math.unit(4000, "lb"),
  20929. name: "Front (Were)",
  20930. image: {
  20931. source: "./media/characters/dhari/were-front.svg",
  20932. extra: 1065 / 969,
  20933. bottom: 0.015
  20934. }
  20935. },
  20936. wereBack: {
  20937. height: math.unit(12 + 8 / 12, "feet"),
  20938. weight: math.unit(4000, "lb"),
  20939. name: "Back (Were)",
  20940. image: {
  20941. source: "./media/characters/dhari/were-back.svg",
  20942. extra: 1065 / 969,
  20943. bottom: 0.012
  20944. }
  20945. },
  20946. wereMaw: {
  20947. height: math.unit(0.625, "meters"),
  20948. name: "Maw (Were)",
  20949. image: {
  20950. source: "./media/characters/dhari/were-maw.svg"
  20951. }
  20952. },
  20953. },
  20954. [
  20955. {
  20956. name: "Normal",
  20957. height: math.unit(6 + 3 / 12, "feet"),
  20958. default: true
  20959. },
  20960. ]
  20961. ))
  20962. characterMakers.push(() => makeCharacter(
  20963. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20964. {
  20965. anthro: {
  20966. height: math.unit(5 + 7 / 12, "feet"),
  20967. weight: math.unit(175, "lb"),
  20968. name: "Anthro",
  20969. image: {
  20970. source: "./media/characters/rena-dyne/anthro.svg",
  20971. extra: 1849 / 1785,
  20972. bottom: 0.005
  20973. }
  20974. },
  20975. taur: {
  20976. height: math.unit(15 + 6 / 12, "feet"),
  20977. weight: math.unit(8000, "lb"),
  20978. name: "Taur",
  20979. image: {
  20980. source: "./media/characters/rena-dyne/taur.svg",
  20981. extra: 2315 / 2234,
  20982. bottom: 0.033
  20983. }
  20984. },
  20985. },
  20986. [
  20987. {
  20988. name: "Normal",
  20989. height: math.unit(5 + 7 / 12, "feet"),
  20990. default: true
  20991. },
  20992. ]
  20993. ))
  20994. characterMakers.push(() => makeCharacter(
  20995. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20996. {
  20997. front: {
  20998. height: math.unit(8, "feet"),
  20999. weight: math.unit(600, "lb"),
  21000. name: "Front",
  21001. image: {
  21002. source: "./media/characters/weremeep/front.svg",
  21003. extra: 967 / 862,
  21004. bottom: 0.01
  21005. }
  21006. },
  21007. },
  21008. [
  21009. {
  21010. name: "Normal",
  21011. height: math.unit(8, "feet"),
  21012. default: true
  21013. },
  21014. {
  21015. name: "Lorg",
  21016. height: math.unit(12, "feet")
  21017. },
  21018. {
  21019. name: "Oh Lawd She Comin'",
  21020. height: math.unit(20, "feet")
  21021. },
  21022. ]
  21023. ))
  21024. characterMakers.push(() => makeCharacter(
  21025. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21026. {
  21027. front: {
  21028. height: math.unit(4, "feet"),
  21029. weight: math.unit(90, "lb"),
  21030. name: "Front",
  21031. image: {
  21032. source: "./media/characters/reza/front.svg",
  21033. extra: 1183 / 1111,
  21034. bottom: 0.017
  21035. }
  21036. },
  21037. back: {
  21038. height: math.unit(4, "feet"),
  21039. weight: math.unit(90, "lb"),
  21040. name: "Back",
  21041. image: {
  21042. source: "./media/characters/reza/back.svg",
  21043. extra: 1183 / 1111,
  21044. bottom: 0.01
  21045. }
  21046. },
  21047. drake: {
  21048. height: math.unit(30, "feet"),
  21049. weight: math.unit(246960, "lb"),
  21050. name: "Drake",
  21051. image: {
  21052. source: "./media/characters/reza/drake.svg",
  21053. extra: 2350 / 2024,
  21054. bottom: 60.7 / 2403
  21055. }
  21056. },
  21057. },
  21058. [
  21059. {
  21060. name: "Normal",
  21061. height: math.unit(4, "feet"),
  21062. default: true
  21063. },
  21064. ]
  21065. ))
  21066. characterMakers.push(() => makeCharacter(
  21067. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21068. {
  21069. side: {
  21070. height: math.unit(15, "feet"),
  21071. weight: math.unit(14, "tons"),
  21072. name: "Side",
  21073. image: {
  21074. source: "./media/characters/athea/side.svg",
  21075. extra: 960 / 540,
  21076. bottom: 0.003
  21077. }
  21078. },
  21079. sitting: {
  21080. height: math.unit(6 * 2.85, "feet"),
  21081. weight: math.unit(14, "tons"),
  21082. name: "Sitting",
  21083. image: {
  21084. source: "./media/characters/athea/sitting.svg",
  21085. extra: 621 / 581,
  21086. bottom: 0.075
  21087. }
  21088. },
  21089. maw: {
  21090. height: math.unit(7.59498031496063, "feet"),
  21091. name: "Maw",
  21092. image: {
  21093. source: "./media/characters/athea/maw.svg"
  21094. }
  21095. },
  21096. },
  21097. [
  21098. {
  21099. name: "Lap Cat",
  21100. height: math.unit(2.5, "feet")
  21101. },
  21102. {
  21103. name: "Minimacro",
  21104. height: math.unit(15, "feet"),
  21105. default: true
  21106. },
  21107. {
  21108. name: "Macro",
  21109. height: math.unit(120, "feet")
  21110. },
  21111. {
  21112. name: "Macro+",
  21113. height: math.unit(640, "feet")
  21114. },
  21115. {
  21116. name: "Colossus",
  21117. height: math.unit(2.2, "miles")
  21118. },
  21119. ]
  21120. ))
  21121. characterMakers.push(() => makeCharacter(
  21122. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21123. {
  21124. front: {
  21125. height: math.unit(8 + 8 / 12, "feet"),
  21126. weight: math.unit(130, "kg"),
  21127. name: "Front",
  21128. image: {
  21129. source: "./media/characters/seroko/front.svg",
  21130. extra: 1385 / 1280,
  21131. bottom: 0.025
  21132. }
  21133. },
  21134. back: {
  21135. height: math.unit(8 + 8 / 12, "feet"),
  21136. weight: math.unit(130, "kg"),
  21137. name: "Back",
  21138. image: {
  21139. source: "./media/characters/seroko/back.svg",
  21140. extra: 1369 / 1238,
  21141. bottom: 0.018
  21142. }
  21143. },
  21144. frontDressed: {
  21145. height: math.unit(8 + 8 / 12, "feet"),
  21146. weight: math.unit(130, "kg"),
  21147. name: "Front (Dressed)",
  21148. image: {
  21149. source: "./media/characters/seroko/front-dressed.svg",
  21150. extra: 1366 / 1275,
  21151. bottom: 0.03
  21152. }
  21153. },
  21154. },
  21155. [
  21156. {
  21157. name: "Normal",
  21158. height: math.unit(8 + 8 / 12, "feet"),
  21159. default: true
  21160. },
  21161. ]
  21162. ))
  21163. characterMakers.push(() => makeCharacter(
  21164. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21165. {
  21166. front: {
  21167. height: math.unit(5.5, "feet"),
  21168. weight: math.unit(160, "lb"),
  21169. name: "Front",
  21170. image: {
  21171. source: "./media/characters/quatzi/front.svg",
  21172. extra: 2346 / 2242,
  21173. bottom: 0.015
  21174. }
  21175. },
  21176. },
  21177. [
  21178. {
  21179. name: "Normal",
  21180. height: math.unit(5.5, "feet"),
  21181. default: true
  21182. },
  21183. {
  21184. name: "Big",
  21185. height: math.unit(7.7, "feet")
  21186. },
  21187. ]
  21188. ))
  21189. characterMakers.push(() => makeCharacter(
  21190. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21191. {
  21192. front: {
  21193. height: math.unit(5 + 11 / 12, "feet"),
  21194. weight: math.unit(180, "lb"),
  21195. name: "Front",
  21196. image: {
  21197. source: "./media/characters/sen/front.svg",
  21198. extra: 1321 / 1254,
  21199. bottom: 0.015
  21200. }
  21201. },
  21202. side: {
  21203. height: math.unit(5 + 11 / 12, "feet"),
  21204. weight: math.unit(180, "lb"),
  21205. name: "Side",
  21206. image: {
  21207. source: "./media/characters/sen/side.svg",
  21208. extra: 1321 / 1254,
  21209. bottom: 0.007
  21210. }
  21211. },
  21212. back: {
  21213. height: math.unit(5 + 11 / 12, "feet"),
  21214. weight: math.unit(180, "lb"),
  21215. name: "Back",
  21216. image: {
  21217. source: "./media/characters/sen/back.svg",
  21218. extra: 1321 / 1254
  21219. }
  21220. },
  21221. },
  21222. [
  21223. {
  21224. name: "Normal",
  21225. height: math.unit(5 + 11 / 12, "feet"),
  21226. default: true
  21227. },
  21228. ]
  21229. ))
  21230. characterMakers.push(() => makeCharacter(
  21231. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21232. {
  21233. front: {
  21234. height: math.unit(166.6, "cm"),
  21235. weight: math.unit(66.6, "kg"),
  21236. name: "Front",
  21237. image: {
  21238. source: "./media/characters/fruity/front.svg",
  21239. extra: 1510 / 1386,
  21240. bottom: 0.04
  21241. }
  21242. },
  21243. back: {
  21244. height: math.unit(166.6, "cm"),
  21245. weight: math.unit(66.6, "lb"),
  21246. name: "Back",
  21247. image: {
  21248. source: "./media/characters/fruity/back.svg",
  21249. extra: 1563 / 1435,
  21250. bottom: 0.005
  21251. }
  21252. },
  21253. },
  21254. [
  21255. {
  21256. name: "Normal",
  21257. height: math.unit(166.6, "cm"),
  21258. default: true
  21259. },
  21260. {
  21261. name: "Demonic",
  21262. height: math.unit(166.6, "feet")
  21263. },
  21264. ]
  21265. ))
  21266. characterMakers.push(() => makeCharacter(
  21267. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21268. {
  21269. side: {
  21270. height: math.unit(10, "feet"),
  21271. weight: math.unit(500, "lb"),
  21272. name: "Side",
  21273. image: {
  21274. source: "./media/characters/zost/side.svg",
  21275. extra: 966 / 880,
  21276. bottom: 0.075
  21277. }
  21278. },
  21279. mawFront: {
  21280. height: math.unit(1.08, "meters"),
  21281. name: "Maw (Front)",
  21282. image: {
  21283. source: "./media/characters/zost/maw-front.svg"
  21284. }
  21285. },
  21286. mawSide: {
  21287. height: math.unit(2.66, "feet"),
  21288. name: "Maw (Side)",
  21289. image: {
  21290. source: "./media/characters/zost/maw-side.svg"
  21291. }
  21292. },
  21293. },
  21294. [
  21295. {
  21296. name: "Normal",
  21297. height: math.unit(10, "feet"),
  21298. default: true
  21299. },
  21300. ]
  21301. ))
  21302. characterMakers.push(() => makeCharacter(
  21303. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21304. {
  21305. front: {
  21306. height: math.unit(5 + 4 / 12, "feet"),
  21307. weight: math.unit(120, "lb"),
  21308. name: "Front",
  21309. image: {
  21310. source: "./media/characters/luci/front.svg",
  21311. extra: 1985 / 1884,
  21312. bottom: 0.04
  21313. }
  21314. },
  21315. back: {
  21316. height: math.unit(5 + 4 / 12, "feet"),
  21317. weight: math.unit(120, "lb"),
  21318. name: "Back",
  21319. image: {
  21320. source: "./media/characters/luci/back.svg",
  21321. extra: 1892 / 1791,
  21322. bottom: 0.002
  21323. }
  21324. },
  21325. },
  21326. [
  21327. {
  21328. name: "Normal",
  21329. height: math.unit(5 + 4 / 12, "feet"),
  21330. default: true
  21331. },
  21332. ]
  21333. ))
  21334. characterMakers.push(() => makeCharacter(
  21335. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21336. {
  21337. front: {
  21338. height: math.unit(1500, "feet"),
  21339. weight: math.unit(3.8e6, "tons"),
  21340. name: "Front",
  21341. image: {
  21342. source: "./media/characters/2th/front.svg",
  21343. extra: 3489 / 3350,
  21344. bottom: 0.1
  21345. }
  21346. },
  21347. foot: {
  21348. height: math.unit(461, "feet"),
  21349. name: "Foot",
  21350. image: {
  21351. source: "./media/characters/2th/foot.svg"
  21352. }
  21353. },
  21354. },
  21355. [
  21356. {
  21357. name: "\"Micro\"",
  21358. height: math.unit(15 + 7 / 12, "feet")
  21359. },
  21360. {
  21361. name: "Normal",
  21362. height: math.unit(1500, "feet"),
  21363. default: true
  21364. },
  21365. {
  21366. name: "Macro",
  21367. height: math.unit(5000, "feet")
  21368. },
  21369. {
  21370. name: "Megamacro",
  21371. height: math.unit(15, "miles")
  21372. },
  21373. {
  21374. name: "Gigamacro",
  21375. height: math.unit(4000, "miles")
  21376. },
  21377. {
  21378. name: "Galactic",
  21379. height: math.unit(50, "AU")
  21380. },
  21381. ]
  21382. ))
  21383. characterMakers.push(() => makeCharacter(
  21384. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21385. {
  21386. front: {
  21387. height: math.unit(5 + 6 / 12, "feet"),
  21388. weight: math.unit(220, "lb"),
  21389. name: "Front",
  21390. image: {
  21391. source: "./media/characters/amethyst/front.svg",
  21392. extra: 2078 / 2040,
  21393. bottom: 0.045
  21394. }
  21395. },
  21396. back: {
  21397. height: math.unit(5 + 6 / 12, "feet"),
  21398. weight: math.unit(220, "lb"),
  21399. name: "Back",
  21400. image: {
  21401. source: "./media/characters/amethyst/back.svg",
  21402. extra: 2021 / 1989,
  21403. bottom: 0.02
  21404. }
  21405. },
  21406. },
  21407. [
  21408. {
  21409. name: "Normal",
  21410. height: math.unit(5 + 6 / 12, "feet"),
  21411. default: true
  21412. },
  21413. ]
  21414. ))
  21415. characterMakers.push(() => makeCharacter(
  21416. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21417. {
  21418. front: {
  21419. height: math.unit(4 + 11 / 12, "feet"),
  21420. weight: math.unit(120, "lb"),
  21421. name: "Front",
  21422. image: {
  21423. source: "./media/characters/yumi-akiyama/front.svg",
  21424. extra: 1327 / 1235,
  21425. bottom: 0.02
  21426. }
  21427. },
  21428. back: {
  21429. height: math.unit(4 + 11 / 12, "feet"),
  21430. weight: math.unit(120, "lb"),
  21431. name: "Back",
  21432. image: {
  21433. source: "./media/characters/yumi-akiyama/back.svg",
  21434. extra: 1287 / 1245,
  21435. bottom: 0.002
  21436. }
  21437. },
  21438. },
  21439. [
  21440. {
  21441. name: "Galactic",
  21442. height: math.unit(50, "galaxies"),
  21443. default: true
  21444. },
  21445. {
  21446. name: "Universal",
  21447. height: math.unit(100, "universes")
  21448. },
  21449. ]
  21450. ))
  21451. characterMakers.push(() => makeCharacter(
  21452. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21453. {
  21454. front: {
  21455. height: math.unit(8, "feet"),
  21456. weight: math.unit(500, "lb"),
  21457. name: "Front",
  21458. image: {
  21459. source: "./media/characters/rifter-yrmori/front.svg",
  21460. extra: 1180 / 1125,
  21461. bottom: 0.02
  21462. }
  21463. },
  21464. back: {
  21465. height: math.unit(8, "feet"),
  21466. weight: math.unit(500, "lb"),
  21467. name: "Back",
  21468. image: {
  21469. source: "./media/characters/rifter-yrmori/back.svg",
  21470. extra: 1190 / 1145,
  21471. bottom: 0.001
  21472. }
  21473. },
  21474. wings: {
  21475. height: math.unit(7.75, "feet"),
  21476. weight: math.unit(500, "lb"),
  21477. name: "Wings",
  21478. image: {
  21479. source: "./media/characters/rifter-yrmori/wings.svg",
  21480. extra: 1357 / 1285
  21481. }
  21482. },
  21483. maw: {
  21484. height: math.unit(0.8, "feet"),
  21485. name: "Maw",
  21486. image: {
  21487. source: "./media/characters/rifter-yrmori/maw.svg"
  21488. }
  21489. },
  21490. mawfront: {
  21491. height: math.unit(1.45, "feet"),
  21492. name: "Maw (Front)",
  21493. image: {
  21494. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21495. }
  21496. },
  21497. },
  21498. [
  21499. {
  21500. name: "Normal",
  21501. height: math.unit(8, "feet"),
  21502. default: true
  21503. },
  21504. {
  21505. name: "Macro",
  21506. height: math.unit(42, "meters")
  21507. },
  21508. ]
  21509. ))
  21510. characterMakers.push(() => makeCharacter(
  21511. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21512. {
  21513. were: {
  21514. height: math.unit(25 + 6 / 12, "feet"),
  21515. weight: math.unit(10000, "lb"),
  21516. name: "Were",
  21517. image: {
  21518. source: "./media/characters/tahajin/were.svg",
  21519. extra: 801 / 770,
  21520. bottom: 0.042
  21521. }
  21522. },
  21523. aquatic: {
  21524. height: math.unit(6 + 4 / 12, "feet"),
  21525. weight: math.unit(160, "lb"),
  21526. name: "Aquatic",
  21527. image: {
  21528. source: "./media/characters/tahajin/aquatic.svg",
  21529. extra: 572 / 542,
  21530. bottom: 0.04
  21531. }
  21532. },
  21533. chow: {
  21534. height: math.unit(8 + 11 / 12, "feet"),
  21535. weight: math.unit(450, "lb"),
  21536. name: "Chow",
  21537. image: {
  21538. source: "./media/characters/tahajin/chow.svg",
  21539. extra: 660 / 640,
  21540. bottom: 0.015
  21541. }
  21542. },
  21543. demiNaga: {
  21544. height: math.unit(6 + 8 / 12, "feet"),
  21545. weight: math.unit(300, "lb"),
  21546. name: "Demi Naga",
  21547. image: {
  21548. source: "./media/characters/tahajin/demi-naga.svg",
  21549. extra: 643 / 615,
  21550. bottom: 0.1
  21551. }
  21552. },
  21553. data: {
  21554. height: math.unit(5, "inches"),
  21555. weight: math.unit(0.1, "lb"),
  21556. name: "Data",
  21557. image: {
  21558. source: "./media/characters/tahajin/data.svg"
  21559. }
  21560. },
  21561. fluu: {
  21562. height: math.unit(5 + 7 / 12, "feet"),
  21563. weight: math.unit(140, "lb"),
  21564. name: "Fluu",
  21565. image: {
  21566. source: "./media/characters/tahajin/fluu.svg",
  21567. extra: 628 / 592,
  21568. bottom: 0.02
  21569. }
  21570. },
  21571. starWarrior: {
  21572. height: math.unit(4 + 5 / 12, "feet"),
  21573. weight: math.unit(50, "lb"),
  21574. name: "Star Warrior",
  21575. image: {
  21576. source: "./media/characters/tahajin/star-warrior.svg"
  21577. }
  21578. },
  21579. },
  21580. [
  21581. {
  21582. name: "Normal",
  21583. height: math.unit(25 + 6 / 12, "feet"),
  21584. default: true
  21585. },
  21586. ]
  21587. ))
  21588. characterMakers.push(() => makeCharacter(
  21589. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21590. {
  21591. front: {
  21592. height: math.unit(8, "feet"),
  21593. weight: math.unit(350, "lb"),
  21594. name: "Front",
  21595. image: {
  21596. source: "./media/characters/gabira/front.svg",
  21597. extra: 608 / 580,
  21598. bottom: 0.03
  21599. }
  21600. },
  21601. back: {
  21602. height: math.unit(8, "feet"),
  21603. weight: math.unit(350, "lb"),
  21604. name: "Back",
  21605. image: {
  21606. source: "./media/characters/gabira/back.svg",
  21607. extra: 608 / 580,
  21608. bottom: 0.03
  21609. }
  21610. },
  21611. },
  21612. [
  21613. {
  21614. name: "Normal",
  21615. height: math.unit(8, "feet"),
  21616. default: true
  21617. },
  21618. ]
  21619. ))
  21620. characterMakers.push(() => makeCharacter(
  21621. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21622. {
  21623. front: {
  21624. height: math.unit(5 + 3 / 12, "feet"),
  21625. weight: math.unit(137, "lb"),
  21626. name: "Front",
  21627. image: {
  21628. source: "./media/characters/sasha-katraine/front.svg",
  21629. bottom: 0.045
  21630. }
  21631. },
  21632. },
  21633. [
  21634. {
  21635. name: "Micro",
  21636. height: math.unit(5, "inches")
  21637. },
  21638. {
  21639. name: "Normal",
  21640. height: math.unit(5 + 3 / 12, "feet"),
  21641. default: true
  21642. },
  21643. ]
  21644. ))
  21645. characterMakers.push(() => makeCharacter(
  21646. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21647. {
  21648. side: {
  21649. height: math.unit(4, "inches"),
  21650. weight: math.unit(200, "grams"),
  21651. name: "Side",
  21652. image: {
  21653. source: "./media/characters/der/side.svg",
  21654. extra: 719 / 400,
  21655. bottom: 30.6 / 749.9187
  21656. }
  21657. },
  21658. },
  21659. [
  21660. {
  21661. name: "Micro",
  21662. height: math.unit(4, "inches"),
  21663. default: true
  21664. },
  21665. ]
  21666. ))
  21667. characterMakers.push(() => makeCharacter(
  21668. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21669. {
  21670. side: {
  21671. height: math.unit(30, "meters"),
  21672. weight: math.unit(700, "tonnes"),
  21673. name: "Side",
  21674. image: {
  21675. source: "./media/characters/fixerdragon/side.svg",
  21676. extra: (1293.0514 - 116.03) / 1106.86,
  21677. bottom: 116.03 / 1293.0514
  21678. }
  21679. },
  21680. },
  21681. [
  21682. {
  21683. name: "Planck",
  21684. height: math.unit(1.6e-35, "meters")
  21685. },
  21686. {
  21687. name: "Micro",
  21688. height: math.unit(0.4, "meters")
  21689. },
  21690. {
  21691. name: "Normal",
  21692. height: math.unit(30, "meters"),
  21693. default: true
  21694. },
  21695. {
  21696. name: "Megamacro",
  21697. height: math.unit(1.2, "megameters")
  21698. },
  21699. {
  21700. name: "Teramacro",
  21701. height: math.unit(130, "terameters")
  21702. },
  21703. {
  21704. name: "Yottamacro",
  21705. height: math.unit(6200, "yottameters")
  21706. },
  21707. ]
  21708. ));
  21709. characterMakers.push(() => makeCharacter(
  21710. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21711. {
  21712. front: {
  21713. height: math.unit(8, "feet"),
  21714. weight: math.unit(250, "lb"),
  21715. name: "Front",
  21716. image: {
  21717. source: "./media/characters/kite/front.svg",
  21718. extra: 2796 / 2659,
  21719. bottom: 0.002
  21720. }
  21721. },
  21722. },
  21723. [
  21724. {
  21725. name: "Normal",
  21726. height: math.unit(8, "feet"),
  21727. default: true
  21728. },
  21729. {
  21730. name: "Macro",
  21731. height: math.unit(360, "feet")
  21732. },
  21733. {
  21734. name: "Megamacro",
  21735. height: math.unit(1500, "feet")
  21736. },
  21737. ]
  21738. ))
  21739. characterMakers.push(() => makeCharacter(
  21740. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21741. {
  21742. front: {
  21743. height: math.unit(5 + 11/12, "feet"),
  21744. weight: math.unit(170, "lb"),
  21745. name: "Front",
  21746. image: {
  21747. source: "./media/characters/poojawa-vynar/front.svg",
  21748. extra: 1735/1585,
  21749. bottom: 96/1831
  21750. }
  21751. },
  21752. back: {
  21753. height: math.unit(5 + 11/12, "feet"),
  21754. weight: math.unit(170, "lb"),
  21755. name: "Back",
  21756. image: {
  21757. source: "./media/characters/poojawa-vynar/back.svg",
  21758. extra: 1749/1607,
  21759. bottom: 28/1777
  21760. }
  21761. },
  21762. male: {
  21763. height: math.unit(5 + 11/12, "feet"),
  21764. weight: math.unit(170, "lb"),
  21765. name: "Male",
  21766. image: {
  21767. source: "./media/characters/poojawa-vynar/male.svg",
  21768. extra: 1855/1713,
  21769. bottom: 63/1918
  21770. }
  21771. },
  21772. taur: {
  21773. height: math.unit(5 + 11/12, "feet"),
  21774. weight: math.unit(170, "lb"),
  21775. name: "Taur",
  21776. image: {
  21777. source: "./media/characters/poojawa-vynar/taur.svg",
  21778. extra: 1151/1059,
  21779. bottom: 356/1507
  21780. }
  21781. },
  21782. frontDressed: {
  21783. height: math.unit(5 + 11/12, "feet"),
  21784. weight: math.unit(170, "lb"),
  21785. name: "Front (Dressed)",
  21786. image: {
  21787. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21788. extra: 1735/1585,
  21789. bottom: 96/1831
  21790. }
  21791. },
  21792. backDressed: {
  21793. height: math.unit(5 + 11/12, "feet"),
  21794. weight: math.unit(170, "lb"),
  21795. name: "Back (Dressed)",
  21796. image: {
  21797. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21798. extra: 1749/1607,
  21799. bottom: 28/1777
  21800. }
  21801. },
  21802. maleDressed: {
  21803. height: math.unit(5 + 11/12, "feet"),
  21804. weight: math.unit(170, "lb"),
  21805. name: "Male (Dressed)",
  21806. image: {
  21807. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21808. extra: 1855/1713,
  21809. bottom: 63/1918
  21810. }
  21811. },
  21812. taurDressed: {
  21813. height: math.unit(5 + 11/12, "feet"),
  21814. weight: math.unit(170, "lb"),
  21815. name: "Taur (Dressed)",
  21816. image: {
  21817. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21818. extra: 1151/1059,
  21819. bottom: 356/1507
  21820. }
  21821. },
  21822. maw: {
  21823. height: math.unit(1.46, "feet"),
  21824. name: "Maw",
  21825. image: {
  21826. source: "./media/characters/poojawa-vynar/maw.svg"
  21827. }
  21828. },
  21829. head: {
  21830. height: math.unit(2.34, "feet"),
  21831. name: "Head",
  21832. image: {
  21833. source: "./media/characters/poojawa-vynar/head.svg"
  21834. }
  21835. },
  21836. paw: {
  21837. height: math.unit(1.61, "feet"),
  21838. name: "Paw",
  21839. image: {
  21840. source: "./media/characters/poojawa-vynar/paw.svg"
  21841. }
  21842. },
  21843. pawToering: {
  21844. height: math.unit(1.72, "feet"),
  21845. name: "Paw (Toering)",
  21846. image: {
  21847. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21848. }
  21849. },
  21850. toering: {
  21851. height: math.unit(2.9, "inches"),
  21852. name: "Toering",
  21853. image: {
  21854. source: "./media/characters/poojawa-vynar/toering.svg"
  21855. }
  21856. },
  21857. shaft: {
  21858. height: math.unit(0.625, "feet"),
  21859. name: "Shaft",
  21860. image: {
  21861. source: "./media/characters/poojawa-vynar/shaft.svg"
  21862. }
  21863. },
  21864. spade: {
  21865. height: math.unit(0.42, "feet"),
  21866. name: "Spade",
  21867. image: {
  21868. source: "./media/characters/poojawa-vynar/spade.svg"
  21869. }
  21870. },
  21871. },
  21872. [
  21873. {
  21874. name: "Shortstack",
  21875. height: math.unit(4, "feet")
  21876. },
  21877. {
  21878. name: "Normal",
  21879. height: math.unit(5 + 11 / 12, "feet"),
  21880. default: true
  21881. },
  21882. {
  21883. name: "Tauric",
  21884. height: math.unit(4, "meters")
  21885. },
  21886. ]
  21887. ))
  21888. characterMakers.push(() => makeCharacter(
  21889. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21890. {
  21891. front: {
  21892. height: math.unit(293, "meters"),
  21893. weight: math.unit(70400, "tons"),
  21894. name: "Front",
  21895. image: {
  21896. source: "./media/characters/violette/front.svg",
  21897. extra: 1227 / 1180,
  21898. bottom: 0.005
  21899. }
  21900. },
  21901. back: {
  21902. height: math.unit(293, "meters"),
  21903. weight: math.unit(70400, "tons"),
  21904. name: "Back",
  21905. image: {
  21906. source: "./media/characters/violette/back.svg",
  21907. extra: 1227 / 1180,
  21908. bottom: 0.005
  21909. }
  21910. },
  21911. },
  21912. [
  21913. {
  21914. name: "Macro",
  21915. height: math.unit(293, "meters"),
  21916. default: true
  21917. },
  21918. ]
  21919. ))
  21920. characterMakers.push(() => makeCharacter(
  21921. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21922. {
  21923. front: {
  21924. height: math.unit(1050, "feet"),
  21925. weight: math.unit(200000, "tons"),
  21926. name: "Front",
  21927. image: {
  21928. source: "./media/characters/alessandra/front.svg",
  21929. extra: 960 / 912,
  21930. bottom: 0.06
  21931. }
  21932. },
  21933. },
  21934. [
  21935. {
  21936. name: "Macro",
  21937. height: math.unit(1050, "feet")
  21938. },
  21939. {
  21940. name: "Macro+",
  21941. height: math.unit(900, "meters"),
  21942. default: true
  21943. },
  21944. ]
  21945. ))
  21946. characterMakers.push(() => makeCharacter(
  21947. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21948. {
  21949. front: {
  21950. height: math.unit(5, "feet"),
  21951. weight: math.unit(187, "lb"),
  21952. name: "Front",
  21953. image: {
  21954. source: "./media/characters/person/front.svg",
  21955. extra: 3087 / 2945,
  21956. bottom: 91 / 3181
  21957. }
  21958. },
  21959. },
  21960. [
  21961. {
  21962. name: "Micro",
  21963. height: math.unit(3, "inches")
  21964. },
  21965. {
  21966. name: "Normal",
  21967. height: math.unit(5, "feet"),
  21968. default: true
  21969. },
  21970. {
  21971. name: "Macro",
  21972. height: math.unit(90, "feet")
  21973. },
  21974. {
  21975. name: "Max Size",
  21976. height: math.unit(280, "feet")
  21977. },
  21978. ]
  21979. ))
  21980. characterMakers.push(() => makeCharacter(
  21981. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21982. {
  21983. front: {
  21984. height: math.unit(4.5, "meters"),
  21985. weight: math.unit(3200, "lb"),
  21986. name: "Front",
  21987. image: {
  21988. source: "./media/characters/ty/front.svg",
  21989. extra: 1038 / 960,
  21990. bottom: 31.156 / 1068
  21991. }
  21992. },
  21993. back: {
  21994. height: math.unit(4.5, "meters"),
  21995. weight: math.unit(3200, "lb"),
  21996. name: "Back",
  21997. image: {
  21998. source: "./media/characters/ty/back.svg",
  21999. extra: 1044 / 966,
  22000. bottom: 7.48 / 1049
  22001. }
  22002. },
  22003. },
  22004. [
  22005. {
  22006. name: "Normal",
  22007. height: math.unit(4.5, "meters"),
  22008. default: true
  22009. },
  22010. ]
  22011. ))
  22012. characterMakers.push(() => makeCharacter(
  22013. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22014. {
  22015. front: {
  22016. height: math.unit(5 + 4 / 12, "feet"),
  22017. weight: math.unit(115, "lb"),
  22018. name: "Front",
  22019. image: {
  22020. source: "./media/characters/rocky/front.svg",
  22021. extra: 1012 / 975,
  22022. bottom: 54 / 1066
  22023. }
  22024. },
  22025. },
  22026. [
  22027. {
  22028. name: "Normal",
  22029. height: math.unit(5 + 4 / 12, "feet"),
  22030. default: true
  22031. },
  22032. ]
  22033. ))
  22034. characterMakers.push(() => makeCharacter(
  22035. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22036. {
  22037. upright: {
  22038. height: math.unit(6, "meters"),
  22039. weight: math.unit(4000, "kg"),
  22040. name: "Upright",
  22041. image: {
  22042. source: "./media/characters/ruin/upright.svg",
  22043. extra: 668 / 661,
  22044. bottom: 42 / 799.8396
  22045. }
  22046. },
  22047. },
  22048. [
  22049. {
  22050. name: "Normal",
  22051. height: math.unit(6, "meters"),
  22052. default: true
  22053. },
  22054. ]
  22055. ))
  22056. characterMakers.push(() => makeCharacter(
  22057. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22058. {
  22059. front: {
  22060. height: math.unit(5, "feet"),
  22061. weight: math.unit(106, "lb"),
  22062. name: "Front",
  22063. image: {
  22064. source: "./media/characters/robin/front.svg",
  22065. extra: 862 / 799,
  22066. bottom: 42.4 / 914.8856
  22067. }
  22068. },
  22069. },
  22070. [
  22071. {
  22072. name: "Normal",
  22073. height: math.unit(5, "feet"),
  22074. default: true
  22075. },
  22076. ]
  22077. ))
  22078. characterMakers.push(() => makeCharacter(
  22079. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22080. {
  22081. side: {
  22082. height: math.unit(3, "feet"),
  22083. weight: math.unit(225, "lb"),
  22084. name: "Side",
  22085. image: {
  22086. source: "./media/characters/saian/side.svg",
  22087. extra: 566 / 356,
  22088. bottom: 79.7 / 643
  22089. }
  22090. },
  22091. maw: {
  22092. height: math.unit(2.85, "feet"),
  22093. name: "Maw",
  22094. image: {
  22095. source: "./media/characters/saian/maw.svg"
  22096. }
  22097. },
  22098. },
  22099. [
  22100. {
  22101. name: "Normal",
  22102. height: math.unit(3, "feet"),
  22103. default: true
  22104. },
  22105. ]
  22106. ))
  22107. characterMakers.push(() => makeCharacter(
  22108. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22109. {
  22110. side: {
  22111. height: math.unit(8, "feet"),
  22112. weight: math.unit(300, "lb"),
  22113. name: "Side",
  22114. image: {
  22115. source: "./media/characters/equus-silvermane/side.svg",
  22116. extra: 2176 / 2050,
  22117. bottom: 65.7 / 2245
  22118. }
  22119. },
  22120. front: {
  22121. height: math.unit(8, "feet"),
  22122. weight: math.unit(300, "lb"),
  22123. name: "Front",
  22124. image: {
  22125. source: "./media/characters/equus-silvermane/front.svg",
  22126. extra: 4633 / 4400,
  22127. bottom: 71.3 / 4706.915
  22128. }
  22129. },
  22130. sideStepping: {
  22131. height: math.unit(8, "feet"),
  22132. weight: math.unit(300, "lb"),
  22133. name: "Side (Stepping)",
  22134. image: {
  22135. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22136. extra: 1968 / 1860,
  22137. bottom: 16.4 / 1989
  22138. }
  22139. },
  22140. },
  22141. [
  22142. {
  22143. name: "Normal",
  22144. height: math.unit(8, "feet")
  22145. },
  22146. {
  22147. name: "Minimacro",
  22148. height: math.unit(75, "feet"),
  22149. default: true
  22150. },
  22151. {
  22152. name: "Macro",
  22153. height: math.unit(150, "feet")
  22154. },
  22155. {
  22156. name: "Macro+",
  22157. height: math.unit(1000, "feet")
  22158. },
  22159. {
  22160. name: "Megamacro",
  22161. height: math.unit(1, "mile")
  22162. },
  22163. ]
  22164. ))
  22165. characterMakers.push(() => makeCharacter(
  22166. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22167. {
  22168. side: {
  22169. height: math.unit(20, "feet"),
  22170. weight: math.unit(30000, "kg"),
  22171. name: "Side",
  22172. image: {
  22173. source: "./media/characters/windar/side.svg",
  22174. extra: 1491 / 1248,
  22175. bottom: 82.56 / 1568
  22176. }
  22177. },
  22178. },
  22179. [
  22180. {
  22181. name: "Normal",
  22182. height: math.unit(20, "feet"),
  22183. default: true
  22184. },
  22185. ]
  22186. ))
  22187. characterMakers.push(() => makeCharacter(
  22188. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22189. {
  22190. side: {
  22191. height: math.unit(15.66, "feet"),
  22192. weight: math.unit(150, "lb"),
  22193. name: "Side",
  22194. image: {
  22195. source: "./media/characters/melody/side.svg",
  22196. extra: 1097 / 944,
  22197. bottom: 11.8 / 1109
  22198. }
  22199. },
  22200. sideOutfit: {
  22201. height: math.unit(15.66, "feet"),
  22202. weight: math.unit(150, "lb"),
  22203. name: "Side (Outfit)",
  22204. image: {
  22205. source: "./media/characters/melody/side-outfit.svg",
  22206. extra: 1097 / 944,
  22207. bottom: 11.8 / 1109
  22208. }
  22209. },
  22210. },
  22211. [
  22212. {
  22213. name: "Normal",
  22214. height: math.unit(15.66, "feet"),
  22215. default: true
  22216. },
  22217. ]
  22218. ))
  22219. characterMakers.push(() => makeCharacter(
  22220. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22221. {
  22222. front: {
  22223. height: math.unit(8, "feet"),
  22224. weight: math.unit(325, "lb"),
  22225. name: "Front",
  22226. image: {
  22227. source: "./media/characters/windera/front.svg",
  22228. extra: 3180 / 2845,
  22229. bottom: 178 / 3365
  22230. }
  22231. },
  22232. },
  22233. [
  22234. {
  22235. name: "Normal",
  22236. height: math.unit(8, "feet"),
  22237. default: true
  22238. },
  22239. ]
  22240. ))
  22241. characterMakers.push(() => makeCharacter(
  22242. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22243. {
  22244. front: {
  22245. height: math.unit(28.75, "feet"),
  22246. weight: math.unit(2000, "kg"),
  22247. name: "Front",
  22248. image: {
  22249. source: "./media/characters/sonear/front.svg",
  22250. extra: 1041.1 / 964.9,
  22251. bottom: 53.7 / 1096.6
  22252. }
  22253. },
  22254. },
  22255. [
  22256. {
  22257. name: "Normal",
  22258. height: math.unit(28.75, "feet"),
  22259. default: true
  22260. },
  22261. ]
  22262. ))
  22263. characterMakers.push(() => makeCharacter(
  22264. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22265. {
  22266. side: {
  22267. height: math.unit(25.5, "feet"),
  22268. weight: math.unit(23000, "kg"),
  22269. name: "Side",
  22270. image: {
  22271. source: "./media/characters/kanara/side.svg"
  22272. }
  22273. },
  22274. },
  22275. [
  22276. {
  22277. name: "Normal",
  22278. height: math.unit(25.5, "feet"),
  22279. default: true
  22280. },
  22281. ]
  22282. ))
  22283. characterMakers.push(() => makeCharacter(
  22284. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22285. {
  22286. side: {
  22287. height: math.unit(10, "feet"),
  22288. weight: math.unit(1000, "kg"),
  22289. name: "Side",
  22290. image: {
  22291. source: "./media/characters/ereus/side.svg",
  22292. extra: 1157 / 959,
  22293. bottom: 153 / 1312.5
  22294. }
  22295. },
  22296. },
  22297. [
  22298. {
  22299. name: "Normal",
  22300. height: math.unit(10, "feet"),
  22301. default: true
  22302. },
  22303. ]
  22304. ))
  22305. characterMakers.push(() => makeCharacter(
  22306. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22307. {
  22308. side: {
  22309. height: math.unit(4.5, "feet"),
  22310. weight: math.unit(500, "lb"),
  22311. name: "Side",
  22312. image: {
  22313. source: "./media/characters/e-ter/side.svg",
  22314. extra: 1550 / 1248,
  22315. bottom: 146 / 1694
  22316. }
  22317. },
  22318. },
  22319. [
  22320. {
  22321. name: "Normal",
  22322. height: math.unit(4.5, "feet"),
  22323. default: true
  22324. },
  22325. ]
  22326. ))
  22327. characterMakers.push(() => makeCharacter(
  22328. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22329. {
  22330. side: {
  22331. height: math.unit(9.7, "feet"),
  22332. weight: math.unit(4000, "kg"),
  22333. name: "Side",
  22334. image: {
  22335. source: "./media/characters/yamie/side.svg"
  22336. }
  22337. },
  22338. },
  22339. [
  22340. {
  22341. name: "Normal",
  22342. height: math.unit(9.7, "feet"),
  22343. default: true
  22344. },
  22345. ]
  22346. ))
  22347. characterMakers.push(() => makeCharacter(
  22348. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22349. {
  22350. front: {
  22351. height: math.unit(50, "feet"),
  22352. weight: math.unit(50000, "kg"),
  22353. name: "Front",
  22354. image: {
  22355. source: "./media/characters/anders/front.svg",
  22356. extra: 570 / 539,
  22357. bottom: 14.7 / 586.7
  22358. }
  22359. },
  22360. },
  22361. [
  22362. {
  22363. name: "Large",
  22364. height: math.unit(50, "feet")
  22365. },
  22366. {
  22367. name: "Macro",
  22368. height: math.unit(2000, "feet"),
  22369. default: true
  22370. },
  22371. {
  22372. name: "Megamacro",
  22373. height: math.unit(12, "miles")
  22374. },
  22375. ]
  22376. ))
  22377. characterMakers.push(() => makeCharacter(
  22378. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22379. {
  22380. front: {
  22381. height: math.unit(7 + 2 / 12, "feet"),
  22382. weight: math.unit(300, "lb"),
  22383. name: "Front",
  22384. image: {
  22385. source: "./media/characters/reban/front.svg",
  22386. extra: 516 / 487,
  22387. bottom: 42.82 / 558.356
  22388. }
  22389. },
  22390. dick: {
  22391. height: math.unit(7 / 5, "feet"),
  22392. name: "Dick",
  22393. image: {
  22394. source: "./media/characters/reban/dick.svg"
  22395. }
  22396. },
  22397. },
  22398. [
  22399. {
  22400. name: "Natural Height",
  22401. height: math.unit(7 + 2 / 12, "feet")
  22402. },
  22403. {
  22404. name: "Macro",
  22405. height: math.unit(500, "feet"),
  22406. default: true
  22407. },
  22408. {
  22409. name: "Canon Height",
  22410. height: math.unit(50, "AU")
  22411. },
  22412. ]
  22413. ))
  22414. characterMakers.push(() => makeCharacter(
  22415. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22416. {
  22417. front: {
  22418. height: math.unit(6, "feet"),
  22419. weight: math.unit(150, "lb"),
  22420. name: "Front",
  22421. image: {
  22422. source: "./media/characters/terrance-keayes/front.svg",
  22423. extra: 1.005,
  22424. bottom: 151 / 1615
  22425. }
  22426. },
  22427. side: {
  22428. height: math.unit(6, "feet"),
  22429. weight: math.unit(150, "lb"),
  22430. name: "Side",
  22431. image: {
  22432. source: "./media/characters/terrance-keayes/side.svg",
  22433. extra: 1.005,
  22434. bottom: 129.4 / 1544
  22435. }
  22436. },
  22437. back: {
  22438. height: math.unit(6, "feet"),
  22439. weight: math.unit(150, "lb"),
  22440. name: "Back",
  22441. image: {
  22442. source: "./media/characters/terrance-keayes/back.svg",
  22443. extra: 1.005,
  22444. bottom: 58.4 / 1557.3
  22445. }
  22446. },
  22447. dick: {
  22448. height: math.unit(6 * 0.208, "feet"),
  22449. name: "Dick",
  22450. image: {
  22451. source: "./media/characters/terrance-keayes/dick.svg"
  22452. }
  22453. },
  22454. },
  22455. [
  22456. {
  22457. name: "Canon Height",
  22458. height: math.unit(35, "miles"),
  22459. default: true
  22460. },
  22461. ]
  22462. ))
  22463. characterMakers.push(() => makeCharacter(
  22464. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22465. {
  22466. front: {
  22467. height: math.unit(6, "feet"),
  22468. weight: math.unit(150, "lb"),
  22469. name: "Front",
  22470. image: {
  22471. source: "./media/characters/ofelia/front.svg",
  22472. extra: 546 / 541,
  22473. bottom: 39 / 583
  22474. }
  22475. },
  22476. back: {
  22477. height: math.unit(6, "feet"),
  22478. weight: math.unit(150, "lb"),
  22479. name: "Back",
  22480. image: {
  22481. source: "./media/characters/ofelia/back.svg",
  22482. extra: 564 / 559.5,
  22483. bottom: 8.69 / 573.02
  22484. }
  22485. },
  22486. maw: {
  22487. height: math.unit(1, "feet"),
  22488. name: "Maw",
  22489. image: {
  22490. source: "./media/characters/ofelia/maw.svg"
  22491. }
  22492. },
  22493. foot: {
  22494. height: math.unit(1.949, "feet"),
  22495. name: "Foot",
  22496. image: {
  22497. source: "./media/characters/ofelia/foot.svg"
  22498. }
  22499. },
  22500. },
  22501. [
  22502. {
  22503. name: "Canon Height",
  22504. height: math.unit(2000, "miles"),
  22505. default: true
  22506. },
  22507. ]
  22508. ))
  22509. characterMakers.push(() => makeCharacter(
  22510. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22511. {
  22512. front: {
  22513. height: math.unit(6, "feet"),
  22514. weight: math.unit(150, "lb"),
  22515. name: "Front",
  22516. image: {
  22517. source: "./media/characters/samuel/front.svg",
  22518. extra: 265 / 258,
  22519. bottom: 2 / 266.1566
  22520. }
  22521. },
  22522. },
  22523. [
  22524. {
  22525. name: "Macro",
  22526. height: math.unit(100, "feet"),
  22527. default: true
  22528. },
  22529. {
  22530. name: "Full Size",
  22531. height: math.unit(1000, "miles")
  22532. },
  22533. ]
  22534. ))
  22535. characterMakers.push(() => makeCharacter(
  22536. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22537. {
  22538. front: {
  22539. height: math.unit(6, "feet"),
  22540. weight: math.unit(300, "lb"),
  22541. name: "Front",
  22542. image: {
  22543. source: "./media/characters/beishir-kiel/front.svg",
  22544. extra: 569 / 547,
  22545. bottom: 41.9 / 609
  22546. }
  22547. },
  22548. maw: {
  22549. height: math.unit(6 * 0.202, "feet"),
  22550. name: "Maw",
  22551. image: {
  22552. source: "./media/characters/beishir-kiel/maw.svg"
  22553. }
  22554. },
  22555. },
  22556. [
  22557. {
  22558. name: "Macro",
  22559. height: math.unit(300, "feet"),
  22560. default: true
  22561. },
  22562. ]
  22563. ))
  22564. characterMakers.push(() => makeCharacter(
  22565. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22566. {
  22567. front: {
  22568. height: math.unit(5 + 7/12, "feet"),
  22569. weight: math.unit(120, "lb"),
  22570. name: "Front",
  22571. image: {
  22572. source: "./media/characters/logan-grey/front.svg",
  22573. extra: 1836/1738,
  22574. bottom: 108/1944
  22575. }
  22576. },
  22577. back: {
  22578. height: math.unit(5 + 7/12, "feet"),
  22579. weight: math.unit(120, "lb"),
  22580. name: "Back",
  22581. image: {
  22582. source: "./media/characters/logan-grey/back.svg",
  22583. extra: 1880/1794,
  22584. bottom: 24/1904
  22585. }
  22586. },
  22587. frontSfw: {
  22588. height: math.unit(5 + 7/12, "feet"),
  22589. weight: math.unit(120, "lb"),
  22590. name: "Front (SFW)",
  22591. image: {
  22592. source: "./media/characters/logan-grey/front-sfw.svg",
  22593. extra: 1836/1738,
  22594. bottom: 108/1944
  22595. }
  22596. },
  22597. backSfw: {
  22598. height: math.unit(5 + 7/12, "feet"),
  22599. weight: math.unit(120, "lb"),
  22600. name: "Back (SFW)",
  22601. image: {
  22602. source: "./media/characters/logan-grey/back-sfw.svg",
  22603. extra: 1880/1794,
  22604. bottom: 24/1904
  22605. }
  22606. },
  22607. hands: {
  22608. height: math.unit(0.84, "feet"),
  22609. name: "Hands",
  22610. image: {
  22611. source: "./media/characters/logan-grey/hands.svg"
  22612. }
  22613. },
  22614. paws: {
  22615. height: math.unit(0.72, "feet"),
  22616. name: "Paws",
  22617. image: {
  22618. source: "./media/characters/logan-grey/paws.svg"
  22619. }
  22620. },
  22621. cock: {
  22622. height: math.unit(1.45, "feet"),
  22623. name: "Cock",
  22624. image: {
  22625. source: "./media/characters/logan-grey/cock.svg"
  22626. }
  22627. },
  22628. cockAlt: {
  22629. height: math.unit(1.437, "feet"),
  22630. name: "Cock (alt)",
  22631. image: {
  22632. source: "./media/characters/logan-grey/cock-alt.svg"
  22633. }
  22634. },
  22635. },
  22636. [
  22637. {
  22638. name: "Normal",
  22639. height: math.unit(5 + 8 / 12, "feet")
  22640. },
  22641. {
  22642. name: "The 500 Foot Femboy",
  22643. height: math.unit(500, "feet"),
  22644. default: true
  22645. },
  22646. {
  22647. name: "Megmacro",
  22648. height: math.unit(20, "miles")
  22649. },
  22650. ]
  22651. ))
  22652. characterMakers.push(() => makeCharacter(
  22653. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22654. {
  22655. front: {
  22656. height: math.unit(8 + 2 / 12, "feet"),
  22657. weight: math.unit(275, "lb"),
  22658. name: "Front",
  22659. image: {
  22660. source: "./media/characters/draganta/front.svg",
  22661. extra: 1177 / 1135,
  22662. bottom: 33.46 / 1212.1
  22663. }
  22664. },
  22665. },
  22666. [
  22667. {
  22668. name: "Normal",
  22669. height: math.unit(8 + 6 / 12, "feet"),
  22670. default: true
  22671. },
  22672. {
  22673. name: "Macro",
  22674. height: math.unit(150, "feet")
  22675. },
  22676. {
  22677. name: "Megamacro",
  22678. height: math.unit(1000, "miles")
  22679. },
  22680. ]
  22681. ))
  22682. characterMakers.push(() => makeCharacter(
  22683. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22684. {
  22685. front: {
  22686. height: math.unit(1.72, "m"),
  22687. weight: math.unit(80, "lb"),
  22688. name: "Front",
  22689. image: {
  22690. source: "./media/characters/voski/front.svg",
  22691. extra: 2076.22 / 2022.4,
  22692. bottom: 102.7 / 2177.3866
  22693. }
  22694. },
  22695. frontNsfw: {
  22696. height: math.unit(1.72, "m"),
  22697. weight: math.unit(80, "lb"),
  22698. name: "Front (NSFW)",
  22699. image: {
  22700. source: "./media/characters/voski/front-nsfw.svg",
  22701. extra: 2076.22 / 2022.4,
  22702. bottom: 102.7 / 2177.3866
  22703. }
  22704. },
  22705. back: {
  22706. height: math.unit(1.72, "m"),
  22707. weight: math.unit(80, "lb"),
  22708. name: "Back",
  22709. image: {
  22710. source: "./media/characters/voski/back.svg",
  22711. extra: 2104 / 2051,
  22712. bottom: 10.45 / 2113.63
  22713. }
  22714. },
  22715. },
  22716. [
  22717. {
  22718. name: "Normal",
  22719. height: math.unit(1.72, "m")
  22720. },
  22721. {
  22722. name: "Macro",
  22723. height: math.unit(55, "m"),
  22724. default: true
  22725. },
  22726. {
  22727. name: "Macro+",
  22728. height: math.unit(300, "m")
  22729. },
  22730. {
  22731. name: "Macro++",
  22732. height: math.unit(700, "m")
  22733. },
  22734. {
  22735. name: "Macro+++",
  22736. height: math.unit(4500, "m")
  22737. },
  22738. {
  22739. name: "Macro++++",
  22740. height: math.unit(45, "km")
  22741. },
  22742. {
  22743. name: "Macro+++++",
  22744. height: math.unit(1220, "km")
  22745. },
  22746. ]
  22747. ))
  22748. characterMakers.push(() => makeCharacter(
  22749. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22750. {
  22751. front: {
  22752. height: math.unit(2.3, "m"),
  22753. weight: math.unit(304, "kg"),
  22754. name: "Front",
  22755. image: {
  22756. source: "./media/characters/icowom-lee/front.svg",
  22757. extra: 985 / 955,
  22758. bottom: 25.4 / 1012
  22759. }
  22760. },
  22761. fronttentacles: {
  22762. height: math.unit(2.3, "m"),
  22763. weight: math.unit(304, "kg"),
  22764. name: "Front-tentacles",
  22765. image: {
  22766. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22767. extra: 985 / 955,
  22768. bottom: 25.4 / 1012
  22769. }
  22770. },
  22771. back: {
  22772. height: math.unit(2.3, "m"),
  22773. weight: math.unit(304, "kg"),
  22774. name: "Back",
  22775. image: {
  22776. source: "./media/characters/icowom-lee/back.svg",
  22777. extra: 975 / 954,
  22778. bottom: 9.5 / 985
  22779. }
  22780. },
  22781. backtentacles: {
  22782. height: math.unit(2.3, "m"),
  22783. weight: math.unit(304, "kg"),
  22784. name: "Back-tentacles",
  22785. image: {
  22786. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22787. extra: 975 / 954,
  22788. bottom: 9.5 / 985
  22789. }
  22790. },
  22791. frontDressed: {
  22792. height: math.unit(2.3, "m"),
  22793. weight: math.unit(304, "kg"),
  22794. name: "Front (Dressed)",
  22795. image: {
  22796. source: "./media/characters/icowom-lee/front-dressed.svg",
  22797. extra: 3076 / 2933,
  22798. bottom: 51.4 / 3125.1889
  22799. }
  22800. },
  22801. rump: {
  22802. height: math.unit(0.776, "meters"),
  22803. name: "Rump",
  22804. image: {
  22805. source: "./media/characters/icowom-lee/rump.svg"
  22806. }
  22807. },
  22808. genitals: {
  22809. height: math.unit(0.78, "meters"),
  22810. name: "Genitals",
  22811. image: {
  22812. source: "./media/characters/icowom-lee/genitals.svg"
  22813. }
  22814. },
  22815. },
  22816. [
  22817. {
  22818. name: "Normal",
  22819. height: math.unit(2.3, "meters"),
  22820. default: true
  22821. },
  22822. {
  22823. name: "Macro",
  22824. height: math.unit(94, "meters"),
  22825. default: true
  22826. },
  22827. ]
  22828. ))
  22829. characterMakers.push(() => makeCharacter(
  22830. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22831. {
  22832. front: {
  22833. height: math.unit(22, "meters"),
  22834. weight: math.unit(21000, "kg"),
  22835. name: "Front",
  22836. image: {
  22837. source: "./media/characters/shock-diamond/front.svg",
  22838. extra: 2204 / 2053,
  22839. bottom: 65 / 2239.47
  22840. }
  22841. },
  22842. frontNude: {
  22843. height: math.unit(22, "meters"),
  22844. weight: math.unit(21000, "kg"),
  22845. name: "Front (Nude)",
  22846. image: {
  22847. source: "./media/characters/shock-diamond/front-nude.svg",
  22848. extra: 2514 / 2285,
  22849. bottom: 13 / 2527.56
  22850. }
  22851. },
  22852. },
  22853. [
  22854. {
  22855. name: "Normal",
  22856. height: math.unit(3, "meters")
  22857. },
  22858. {
  22859. name: "Macro",
  22860. height: math.unit(22, "meters"),
  22861. default: true
  22862. },
  22863. ]
  22864. ))
  22865. characterMakers.push(() => makeCharacter(
  22866. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22867. {
  22868. front: {
  22869. height: math.unit(5 + 4 / 12, "feet"),
  22870. weight: math.unit(120, "lb"),
  22871. name: "Front",
  22872. image: {
  22873. source: "./media/characters/rory/front.svg",
  22874. extra: 1318/1241,
  22875. bottom: 42/1360
  22876. }
  22877. },
  22878. back: {
  22879. height: math.unit(5 + 4 / 12, "feet"),
  22880. weight: math.unit(120, "lb"),
  22881. name: "Back",
  22882. image: {
  22883. source: "./media/characters/rory/back.svg",
  22884. extra: 1318/1241,
  22885. bottom: 42/1360
  22886. }
  22887. },
  22888. butt: {
  22889. height: math.unit(1.74, "feet"),
  22890. name: "Butt",
  22891. image: {
  22892. source: "./media/characters/rory/butt.svg"
  22893. }
  22894. },
  22895. dick: {
  22896. height: math.unit(1.02, "feet"),
  22897. name: "Dick",
  22898. image: {
  22899. source: "./media/characters/rory/dick.svg"
  22900. }
  22901. },
  22902. paws: {
  22903. height: math.unit(1, "feet"),
  22904. name: "Paws",
  22905. image: {
  22906. source: "./media/characters/rory/paws.svg"
  22907. }
  22908. },
  22909. frontAlt: {
  22910. height: math.unit(5 + 4 / 12, "feet"),
  22911. weight: math.unit(120, "lb"),
  22912. name: "Front (Alt)",
  22913. image: {
  22914. source: "./media/characters/rory/front-alt.svg",
  22915. extra: 589 / 556,
  22916. bottom: 45.7 / 635.76
  22917. }
  22918. },
  22919. frontAltNude: {
  22920. height: math.unit(5 + 4 / 12, "feet"),
  22921. weight: math.unit(120, "lb"),
  22922. name: "Front (Alt, Nude)",
  22923. image: {
  22924. source: "./media/characters/rory/front-alt-nude.svg",
  22925. extra: 589 / 556,
  22926. bottom: 45.7 / 635.76
  22927. }
  22928. },
  22929. side: {
  22930. height: math.unit(5 + 4 / 12, "feet"),
  22931. weight: math.unit(120, "lb"),
  22932. name: "Side",
  22933. image: {
  22934. source: "./media/characters/rory/side.svg",
  22935. extra: 597 / 564,
  22936. bottom: 55 / 653
  22937. }
  22938. },
  22939. backAlt: {
  22940. height: math.unit(5 + 4 / 12, "feet"),
  22941. weight: math.unit(120, "lb"),
  22942. name: "Back (Alt)",
  22943. image: {
  22944. source: "./media/characters/rory/back-alt.svg",
  22945. extra: 620 / 585,
  22946. bottom: 8.86 / 630.43
  22947. }
  22948. },
  22949. dickAlt: {
  22950. height: math.unit(0.86, "feet"),
  22951. name: "Dick (Alt)",
  22952. image: {
  22953. source: "./media/characters/rory/dick-alt.svg"
  22954. }
  22955. },
  22956. },
  22957. [
  22958. {
  22959. name: "Normal",
  22960. height: math.unit(5 + 4 / 12, "feet"),
  22961. default: true
  22962. },
  22963. {
  22964. name: "Macro",
  22965. height: math.unit(100, "feet")
  22966. },
  22967. {
  22968. name: "Macro+",
  22969. height: math.unit(140, "feet")
  22970. },
  22971. {
  22972. name: "Macro++",
  22973. height: math.unit(300, "feet")
  22974. },
  22975. ]
  22976. ))
  22977. characterMakers.push(() => makeCharacter(
  22978. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22979. {
  22980. front: {
  22981. height: math.unit(5 + 9 / 12, "feet"),
  22982. weight: math.unit(190, "lb"),
  22983. name: "Front",
  22984. image: {
  22985. source: "./media/characters/sprisk/front.svg",
  22986. extra: 1225 / 1180,
  22987. bottom: 42.7 / 1266.4
  22988. }
  22989. },
  22990. frontNsfw: {
  22991. height: math.unit(5 + 9 / 12, "feet"),
  22992. weight: math.unit(190, "lb"),
  22993. name: "Front (NSFW)",
  22994. image: {
  22995. source: "./media/characters/sprisk/front-nsfw.svg",
  22996. extra: 1225 / 1180,
  22997. bottom: 42.7 / 1266.4
  22998. }
  22999. },
  23000. back: {
  23001. height: math.unit(5 + 9 / 12, "feet"),
  23002. weight: math.unit(190, "lb"),
  23003. name: "Back",
  23004. image: {
  23005. source: "./media/characters/sprisk/back.svg",
  23006. extra: 1247 / 1200,
  23007. bottom: 5.6 / 1253.04
  23008. }
  23009. },
  23010. },
  23011. [
  23012. {
  23013. name: "Tiny",
  23014. height: math.unit(2, "inches")
  23015. },
  23016. {
  23017. name: "Normal",
  23018. height: math.unit(5 + 9 / 12, "feet"),
  23019. default: true
  23020. },
  23021. {
  23022. name: "Mini Macro",
  23023. height: math.unit(18, "feet")
  23024. },
  23025. {
  23026. name: "Macro",
  23027. height: math.unit(100, "feet")
  23028. },
  23029. {
  23030. name: "MACRO",
  23031. height: math.unit(50, "miles")
  23032. },
  23033. {
  23034. name: "M A C R O",
  23035. height: math.unit(300, "miles")
  23036. },
  23037. ]
  23038. ))
  23039. characterMakers.push(() => makeCharacter(
  23040. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23041. {
  23042. side: {
  23043. height: math.unit(15.6, "meters"),
  23044. weight: math.unit(700000, "kg"),
  23045. name: "Side",
  23046. image: {
  23047. source: "./media/characters/bunsen/side.svg",
  23048. extra: 1644 / 358
  23049. }
  23050. },
  23051. foot: {
  23052. height: math.unit(1.611 * 1644 / 358, "meter"),
  23053. name: "Foot",
  23054. image: {
  23055. source: "./media/characters/bunsen/foot.svg"
  23056. }
  23057. },
  23058. },
  23059. [
  23060. {
  23061. name: "Small",
  23062. height: math.unit(10, "feet")
  23063. },
  23064. {
  23065. name: "Normal",
  23066. height: math.unit(15.6, "meters"),
  23067. default: true
  23068. },
  23069. ]
  23070. ))
  23071. characterMakers.push(() => makeCharacter(
  23072. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23073. {
  23074. front: {
  23075. height: math.unit(4 + 11 / 12, "feet"),
  23076. weight: math.unit(140, "lb"),
  23077. name: "Front",
  23078. image: {
  23079. source: "./media/characters/sesh/front.svg",
  23080. extra: 3420 / 3231,
  23081. bottom: 72 / 3949.5
  23082. }
  23083. },
  23084. },
  23085. [
  23086. {
  23087. name: "Normal",
  23088. height: math.unit(4 + 11 / 12, "feet")
  23089. },
  23090. {
  23091. name: "Grown",
  23092. height: math.unit(15, "feet"),
  23093. default: true
  23094. },
  23095. {
  23096. name: "Macro",
  23097. height: math.unit(1500, "feet")
  23098. },
  23099. {
  23100. name: "Megamacro",
  23101. height: math.unit(30, "miles")
  23102. },
  23103. {
  23104. name: "Continental",
  23105. height: math.unit(3000, "miles")
  23106. },
  23107. {
  23108. name: "Gravity Mass",
  23109. height: math.unit(300000, "miles")
  23110. },
  23111. {
  23112. name: "Planet Buster",
  23113. height: math.unit(30000000, "miles")
  23114. },
  23115. {
  23116. name: "Big",
  23117. height: math.unit(3000000000, "miles")
  23118. },
  23119. ]
  23120. ))
  23121. characterMakers.push(() => makeCharacter(
  23122. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23123. {
  23124. front: {
  23125. height: math.unit(9, "feet"),
  23126. weight: math.unit(350, "lb"),
  23127. name: "Front",
  23128. image: {
  23129. source: "./media/characters/pepper/front.svg",
  23130. extra: 1448 / 1312,
  23131. bottom: 9.4 / 1457.88
  23132. }
  23133. },
  23134. back: {
  23135. height: math.unit(9, "feet"),
  23136. weight: math.unit(350, "lb"),
  23137. name: "Back",
  23138. image: {
  23139. source: "./media/characters/pepper/back.svg",
  23140. extra: 1423 / 1300,
  23141. bottom: 4.6 / 1429
  23142. }
  23143. },
  23144. maw: {
  23145. height: math.unit(0.932, "feet"),
  23146. name: "Maw",
  23147. image: {
  23148. source: "./media/characters/pepper/maw.svg"
  23149. }
  23150. },
  23151. },
  23152. [
  23153. {
  23154. name: "Normal",
  23155. height: math.unit(9, "feet"),
  23156. default: true
  23157. },
  23158. ]
  23159. ))
  23160. characterMakers.push(() => makeCharacter(
  23161. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23162. {
  23163. front: {
  23164. height: math.unit(6, "feet"),
  23165. weight: math.unit(150, "lb"),
  23166. name: "Front",
  23167. image: {
  23168. source: "./media/characters/maelstrom/front.svg",
  23169. extra: 2100 / 1883,
  23170. bottom: 94 / 2196.7
  23171. }
  23172. },
  23173. },
  23174. [
  23175. {
  23176. name: "Less Kaiju",
  23177. height: math.unit(200, "feet")
  23178. },
  23179. {
  23180. name: "Kaiju",
  23181. height: math.unit(400, "feet"),
  23182. default: true
  23183. },
  23184. {
  23185. name: "Kaiju-er",
  23186. height: math.unit(600, "feet")
  23187. },
  23188. ]
  23189. ))
  23190. characterMakers.push(() => makeCharacter(
  23191. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23192. {
  23193. front: {
  23194. height: math.unit(6 + 5 / 12, "feet"),
  23195. weight: math.unit(180, "lb"),
  23196. name: "Front",
  23197. image: {
  23198. source: "./media/characters/lexir/front.svg",
  23199. extra: 180 / 172,
  23200. bottom: 12 / 192
  23201. }
  23202. },
  23203. back: {
  23204. height: math.unit(6 + 5 / 12, "feet"),
  23205. weight: math.unit(180, "lb"),
  23206. name: "Back",
  23207. image: {
  23208. source: "./media/characters/lexir/back.svg",
  23209. extra: 183.84 / 175.5,
  23210. bottom: 3.1 / 187
  23211. }
  23212. },
  23213. },
  23214. [
  23215. {
  23216. name: "Very Smal",
  23217. height: math.unit(1, "nm")
  23218. },
  23219. {
  23220. name: "Normal",
  23221. height: math.unit(6 + 5 / 12, "feet"),
  23222. default: true
  23223. },
  23224. {
  23225. name: "Macro",
  23226. height: math.unit(1, "mile")
  23227. },
  23228. {
  23229. name: "Megamacro",
  23230. height: math.unit(50, "miles")
  23231. },
  23232. ]
  23233. ))
  23234. characterMakers.push(() => makeCharacter(
  23235. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23236. {
  23237. front: {
  23238. height: math.unit(1.5, "meters"),
  23239. weight: math.unit(100, "lb"),
  23240. name: "Front",
  23241. image: {
  23242. source: "./media/characters/maksio/front.svg",
  23243. extra: 1549 / 1531,
  23244. bottom: 123.7 / 1674.5429
  23245. }
  23246. },
  23247. back: {
  23248. height: math.unit(1.5, "meters"),
  23249. weight: math.unit(100, "lb"),
  23250. name: "Back",
  23251. image: {
  23252. source: "./media/characters/maksio/back.svg",
  23253. extra: 1541 / 1509,
  23254. bottom: 97 / 1639
  23255. }
  23256. },
  23257. hand: {
  23258. height: math.unit(0.621, "feet"),
  23259. name: "Hand",
  23260. image: {
  23261. source: "./media/characters/maksio/hand.svg"
  23262. }
  23263. },
  23264. foot: {
  23265. height: math.unit(1.611, "feet"),
  23266. name: "Foot",
  23267. image: {
  23268. source: "./media/characters/maksio/foot.svg"
  23269. }
  23270. },
  23271. },
  23272. [
  23273. {
  23274. name: "Shrunken",
  23275. height: math.unit(10, "cm")
  23276. },
  23277. {
  23278. name: "Normal",
  23279. height: math.unit(150, "cm"),
  23280. default: true
  23281. },
  23282. ]
  23283. ))
  23284. characterMakers.push(() => makeCharacter(
  23285. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23286. {
  23287. front: {
  23288. height: math.unit(100, "feet"),
  23289. name: "Front",
  23290. image: {
  23291. source: "./media/characters/erza-bear/front.svg",
  23292. extra: 2449 / 2390,
  23293. bottom: 46 / 2494
  23294. }
  23295. },
  23296. back: {
  23297. height: math.unit(100, "feet"),
  23298. name: "Back",
  23299. image: {
  23300. source: "./media/characters/erza-bear/back.svg",
  23301. extra: 2489 / 2430,
  23302. bottom: 85.4 / 2480
  23303. }
  23304. },
  23305. tail: {
  23306. height: math.unit(42, "feet"),
  23307. name: "Tail",
  23308. image: {
  23309. source: "./media/characters/erza-bear/tail.svg"
  23310. }
  23311. },
  23312. tongue: {
  23313. height: math.unit(8, "feet"),
  23314. name: "Tongue",
  23315. image: {
  23316. source: "./media/characters/erza-bear/tongue.svg"
  23317. }
  23318. },
  23319. dick: {
  23320. height: math.unit(10.5, "feet"),
  23321. name: "Dick",
  23322. image: {
  23323. source: "./media/characters/erza-bear/dick.svg"
  23324. }
  23325. },
  23326. dickVertical: {
  23327. height: math.unit(16.9, "feet"),
  23328. name: "Dick (Vertical)",
  23329. image: {
  23330. source: "./media/characters/erza-bear/dick-vertical.svg"
  23331. }
  23332. },
  23333. },
  23334. [
  23335. {
  23336. name: "Macro",
  23337. height: math.unit(100, "feet"),
  23338. default: true
  23339. },
  23340. ]
  23341. ))
  23342. characterMakers.push(() => makeCharacter(
  23343. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23344. {
  23345. front: {
  23346. height: math.unit(172, "cm"),
  23347. weight: math.unit(73, "kg"),
  23348. name: "Front",
  23349. image: {
  23350. source: "./media/characters/violet-flor/front.svg",
  23351. extra: 1530 / 1442,
  23352. bottom: 61.9 / 1588.8
  23353. }
  23354. },
  23355. back: {
  23356. height: math.unit(180, "cm"),
  23357. weight: math.unit(73, "kg"),
  23358. name: "Back",
  23359. image: {
  23360. source: "./media/characters/violet-flor/back.svg",
  23361. extra: 1692 / 1630,
  23362. bottom: 20 / 1712
  23363. }
  23364. },
  23365. },
  23366. [
  23367. {
  23368. name: "Normal",
  23369. height: math.unit(172, "cm"),
  23370. default: true
  23371. },
  23372. ]
  23373. ))
  23374. characterMakers.push(() => makeCharacter(
  23375. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23376. {
  23377. front: {
  23378. height: math.unit(6, "feet"),
  23379. weight: math.unit(220, "lb"),
  23380. name: "Front",
  23381. image: {
  23382. source: "./media/characters/lynn-rhea/front.svg",
  23383. extra: 310 / 273
  23384. }
  23385. },
  23386. back: {
  23387. height: math.unit(6, "feet"),
  23388. weight: math.unit(220, "lb"),
  23389. name: "Back",
  23390. image: {
  23391. source: "./media/characters/lynn-rhea/back.svg",
  23392. extra: 310 / 273
  23393. }
  23394. },
  23395. dicks: {
  23396. height: math.unit(0.9, "feet"),
  23397. name: "Dicks",
  23398. image: {
  23399. source: "./media/characters/lynn-rhea/dicks.svg"
  23400. }
  23401. },
  23402. slit: {
  23403. height: math.unit(0.4, "feet"),
  23404. name: "Slit",
  23405. image: {
  23406. source: "./media/characters/lynn-rhea/slit.svg"
  23407. }
  23408. },
  23409. },
  23410. [
  23411. {
  23412. name: "Micro",
  23413. height: math.unit(1, "inch")
  23414. },
  23415. {
  23416. name: "Macro",
  23417. height: math.unit(60, "feet"),
  23418. default: true
  23419. },
  23420. {
  23421. name: "Megamacro",
  23422. height: math.unit(2, "miles")
  23423. },
  23424. {
  23425. name: "Gigamacro",
  23426. height: math.unit(3, "earths")
  23427. },
  23428. {
  23429. name: "Galactic",
  23430. height: math.unit(0.8, "galaxies")
  23431. },
  23432. ]
  23433. ))
  23434. characterMakers.push(() => makeCharacter(
  23435. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23436. {
  23437. front: {
  23438. height: math.unit(1600, "feet"),
  23439. weight: math.unit(85758785169, "kg"),
  23440. name: "Front",
  23441. image: {
  23442. source: "./media/characters/valathos/front.svg",
  23443. extra: 1451 / 1339
  23444. }
  23445. },
  23446. },
  23447. [
  23448. {
  23449. name: "Macro",
  23450. height: math.unit(1600, "feet"),
  23451. default: true
  23452. },
  23453. ]
  23454. ))
  23455. characterMakers.push(() => makeCharacter(
  23456. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23457. {
  23458. front: {
  23459. height: math.unit(7 + 5 / 12, "feet"),
  23460. weight: math.unit(300, "lb"),
  23461. name: "Front",
  23462. image: {
  23463. source: "./media/characters/azula/front.svg",
  23464. extra: 3208 / 2880,
  23465. bottom: 80.2 / 3277
  23466. }
  23467. },
  23468. back: {
  23469. height: math.unit(7 + 5 / 12, "feet"),
  23470. weight: math.unit(300, "lb"),
  23471. name: "Back",
  23472. image: {
  23473. source: "./media/characters/azula/back.svg",
  23474. extra: 3169 / 2822,
  23475. bottom: 150.6 / 3321
  23476. }
  23477. },
  23478. },
  23479. [
  23480. {
  23481. name: "Normal",
  23482. height: math.unit(7 + 5 / 12, "feet"),
  23483. default: true
  23484. },
  23485. {
  23486. name: "Big",
  23487. height: math.unit(20, "feet")
  23488. },
  23489. ]
  23490. ))
  23491. characterMakers.push(() => makeCharacter(
  23492. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23493. {
  23494. front: {
  23495. height: math.unit(5 + 1 / 12, "feet"),
  23496. weight: math.unit(110, "lb"),
  23497. name: "Front",
  23498. image: {
  23499. source: "./media/characters/rupert/front.svg",
  23500. extra: 1549 / 1495,
  23501. bottom: 54.2 / 1604.4
  23502. }
  23503. },
  23504. },
  23505. [
  23506. {
  23507. name: "Normal",
  23508. height: math.unit(5 + 1 / 12, "feet"),
  23509. default: true
  23510. },
  23511. ]
  23512. ))
  23513. characterMakers.push(() => makeCharacter(
  23514. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23515. {
  23516. front: {
  23517. height: math.unit(8 + 4 / 12, "feet"),
  23518. weight: math.unit(350, "lb"),
  23519. name: "Front",
  23520. image: {
  23521. source: "./media/characters/sheera-castellar/front.svg",
  23522. extra: 1957 / 1894,
  23523. bottom: 26.97 / 1975.017
  23524. }
  23525. },
  23526. side: {
  23527. height: math.unit(8 + 4 / 12, "feet"),
  23528. weight: math.unit(350, "lb"),
  23529. name: "Side",
  23530. image: {
  23531. source: "./media/characters/sheera-castellar/side.svg",
  23532. extra: 1957 / 1894
  23533. }
  23534. },
  23535. back: {
  23536. height: math.unit(8 + 4 / 12, "feet"),
  23537. weight: math.unit(350, "lb"),
  23538. name: "Back",
  23539. image: {
  23540. source: "./media/characters/sheera-castellar/back.svg",
  23541. extra: 1957 / 1894
  23542. }
  23543. },
  23544. angled: {
  23545. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23546. weight: math.unit(350, "lb"),
  23547. name: "Angled",
  23548. image: {
  23549. source: "./media/characters/sheera-castellar/angled.svg",
  23550. extra: 1807 / 1707,
  23551. bottom: 68 / 1875
  23552. }
  23553. },
  23554. genitals: {
  23555. height: math.unit(2.2, "feet"),
  23556. name: "Genitals",
  23557. image: {
  23558. source: "./media/characters/sheera-castellar/genitals.svg"
  23559. }
  23560. },
  23561. taur: {
  23562. height: math.unit(10 + 6/12, "feet"),
  23563. name: "Taur",
  23564. image: {
  23565. source: "./media/characters/sheera-castellar/taur.svg",
  23566. extra: 2017/1909,
  23567. bottom: 185/2202
  23568. }
  23569. },
  23570. },
  23571. [
  23572. {
  23573. name: "Normal",
  23574. height: math.unit(8 + 4 / 12, "feet")
  23575. },
  23576. {
  23577. name: "Macro",
  23578. height: math.unit(150, "feet"),
  23579. default: true
  23580. },
  23581. {
  23582. name: "Macro+",
  23583. height: math.unit(800, "feet")
  23584. },
  23585. ]
  23586. ))
  23587. characterMakers.push(() => makeCharacter(
  23588. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23589. {
  23590. front: {
  23591. height: math.unit(6, "feet"),
  23592. weight: math.unit(150, "lb"),
  23593. name: "Front",
  23594. image: {
  23595. source: "./media/characters/jaipur/front.svg",
  23596. extra: 3860 / 3731,
  23597. bottom: 287 / 4140
  23598. }
  23599. },
  23600. back: {
  23601. height: math.unit(6, "feet"),
  23602. weight: math.unit(150, "lb"),
  23603. name: "Back",
  23604. image: {
  23605. source: "./media/characters/jaipur/back.svg",
  23606. extra: 4060 / 3930,
  23607. bottom: 151 / 4200
  23608. }
  23609. },
  23610. },
  23611. [
  23612. {
  23613. name: "Normal",
  23614. height: math.unit(1.85, "meters"),
  23615. default: true
  23616. },
  23617. {
  23618. name: "Macro",
  23619. height: math.unit(150, "meters")
  23620. },
  23621. {
  23622. name: "Macro+",
  23623. height: math.unit(0.5, "miles")
  23624. },
  23625. {
  23626. name: "Macro++",
  23627. height: math.unit(2.5, "miles")
  23628. },
  23629. {
  23630. name: "Macro+++",
  23631. height: math.unit(12, "miles")
  23632. },
  23633. {
  23634. name: "Macro++++",
  23635. height: math.unit(120, "miles")
  23636. },
  23637. {
  23638. name: "Macro+++++",
  23639. height: math.unit(1200, "miles")
  23640. },
  23641. ]
  23642. ))
  23643. characterMakers.push(() => makeCharacter(
  23644. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23645. {
  23646. front: {
  23647. height: math.unit(6, "feet"),
  23648. weight: math.unit(150, "lb"),
  23649. name: "Front",
  23650. image: {
  23651. source: "./media/characters/sheila-wolf/front.svg",
  23652. extra: 1931 / 1808,
  23653. bottom: 29.5 / 1960
  23654. }
  23655. },
  23656. dick: {
  23657. height: math.unit(1.464, "feet"),
  23658. name: "Dick",
  23659. image: {
  23660. source: "./media/characters/sheila-wolf/dick.svg"
  23661. }
  23662. },
  23663. muzzle: {
  23664. height: math.unit(0.513, "feet"),
  23665. name: "Muzzle",
  23666. image: {
  23667. source: "./media/characters/sheila-wolf/muzzle.svg"
  23668. }
  23669. },
  23670. },
  23671. [
  23672. {
  23673. name: "Macro",
  23674. height: math.unit(70, "feet"),
  23675. default: true
  23676. },
  23677. ]
  23678. ))
  23679. characterMakers.push(() => makeCharacter(
  23680. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23681. {
  23682. front: {
  23683. height: math.unit(32, "meters"),
  23684. weight: math.unit(300000, "kg"),
  23685. name: "Front",
  23686. image: {
  23687. source: "./media/characters/almor/front.svg",
  23688. extra: 1408 / 1322,
  23689. bottom: 94.6 / 1506.5
  23690. }
  23691. },
  23692. },
  23693. [
  23694. {
  23695. name: "Macro",
  23696. height: math.unit(32, "meters"),
  23697. default: true
  23698. },
  23699. ]
  23700. ))
  23701. characterMakers.push(() => makeCharacter(
  23702. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23703. {
  23704. front: {
  23705. height: math.unit(7, "feet"),
  23706. weight: math.unit(200, "lb"),
  23707. name: "Front",
  23708. image: {
  23709. source: "./media/characters/silver/front.svg",
  23710. extra: 472.1 / 450.5,
  23711. bottom: 26.5 / 499.424
  23712. }
  23713. },
  23714. },
  23715. [
  23716. {
  23717. name: "Normal",
  23718. height: math.unit(7, "feet"),
  23719. default: true
  23720. },
  23721. {
  23722. name: "Macro",
  23723. height: math.unit(800, "feet")
  23724. },
  23725. {
  23726. name: "Megamacro",
  23727. height: math.unit(250, "miles")
  23728. },
  23729. ]
  23730. ))
  23731. characterMakers.push(() => makeCharacter(
  23732. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23733. {
  23734. front: {
  23735. height: math.unit(6, "feet"),
  23736. weight: math.unit(150, "lb"),
  23737. name: "Front",
  23738. image: {
  23739. source: "./media/characters/pliskin/front.svg",
  23740. extra: 1469 / 1359,
  23741. bottom: 70 / 1540
  23742. }
  23743. },
  23744. },
  23745. [
  23746. {
  23747. name: "Micro",
  23748. height: math.unit(3, "inches")
  23749. },
  23750. {
  23751. name: "Normal",
  23752. height: math.unit(5 + 11 / 12, "feet"),
  23753. default: true
  23754. },
  23755. {
  23756. name: "Macro",
  23757. height: math.unit(120, "feet")
  23758. },
  23759. ]
  23760. ))
  23761. characterMakers.push(() => makeCharacter(
  23762. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23763. {
  23764. front: {
  23765. height: math.unit(6, "feet"),
  23766. weight: math.unit(150, "lb"),
  23767. name: "Front",
  23768. image: {
  23769. source: "./media/characters/sammy/front.svg",
  23770. extra: 1193 / 1089,
  23771. bottom: 30.5 / 1226
  23772. }
  23773. },
  23774. },
  23775. [
  23776. {
  23777. name: "Macro",
  23778. height: math.unit(1700, "feet"),
  23779. default: true
  23780. },
  23781. {
  23782. name: "Examacro",
  23783. height: math.unit(2.5e9, "lightyears")
  23784. },
  23785. ]
  23786. ))
  23787. characterMakers.push(() => makeCharacter(
  23788. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23789. {
  23790. front: {
  23791. height: math.unit(21, "meters"),
  23792. weight: math.unit(12, "tonnes"),
  23793. name: "Front",
  23794. image: {
  23795. source: "./media/characters/kuru/front.svg",
  23796. extra: 4301 / 3785,
  23797. bottom: 371.3 / 4691
  23798. }
  23799. },
  23800. },
  23801. [
  23802. {
  23803. name: "Macro",
  23804. height: math.unit(21, "meters"),
  23805. default: true
  23806. },
  23807. ]
  23808. ))
  23809. characterMakers.push(() => makeCharacter(
  23810. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23811. {
  23812. front: {
  23813. height: math.unit(23, "meters"),
  23814. weight: math.unit(12.2, "tonnes"),
  23815. name: "Front",
  23816. image: {
  23817. source: "./media/characters/rakka/front.svg",
  23818. extra: 4670 / 4169,
  23819. bottom: 301 / 4968.7
  23820. }
  23821. },
  23822. },
  23823. [
  23824. {
  23825. name: "Macro",
  23826. height: math.unit(23, "meters"),
  23827. default: true
  23828. },
  23829. ]
  23830. ))
  23831. characterMakers.push(() => makeCharacter(
  23832. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23833. {
  23834. front: {
  23835. height: math.unit(6, "feet"),
  23836. weight: math.unit(150, "lb"),
  23837. name: "Front",
  23838. image: {
  23839. source: "./media/characters/rhys-feline/front.svg",
  23840. extra: 2488 / 2308,
  23841. bottom: 35.67 / 2519.19
  23842. }
  23843. },
  23844. },
  23845. [
  23846. {
  23847. name: "Really Small",
  23848. height: math.unit(1, "nm")
  23849. },
  23850. {
  23851. name: "Micro",
  23852. height: math.unit(4, "inches")
  23853. },
  23854. {
  23855. name: "Normal",
  23856. height: math.unit(4 + 10 / 12, "feet"),
  23857. default: true
  23858. },
  23859. {
  23860. name: "Macro",
  23861. height: math.unit(100, "feet")
  23862. },
  23863. {
  23864. name: "Megamacto",
  23865. height: math.unit(50, "miles")
  23866. },
  23867. ]
  23868. ))
  23869. characterMakers.push(() => makeCharacter(
  23870. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23871. {
  23872. side: {
  23873. height: math.unit(30, "feet"),
  23874. weight: math.unit(35000, "kg"),
  23875. name: "Side",
  23876. image: {
  23877. source: "./media/characters/alydar/side.svg",
  23878. extra: 234 / 222,
  23879. bottom: 6.5 / 241
  23880. }
  23881. },
  23882. front: {
  23883. height: math.unit(30, "feet"),
  23884. weight: math.unit(35000, "kg"),
  23885. name: "Front",
  23886. image: {
  23887. source: "./media/characters/alydar/front.svg",
  23888. extra: 223.37 / 210.2,
  23889. bottom: 22.3 / 246.76
  23890. }
  23891. },
  23892. top: {
  23893. height: math.unit(64.54, "feet"),
  23894. weight: math.unit(35000, "kg"),
  23895. name: "Top",
  23896. image: {
  23897. source: "./media/characters/alydar/top.svg"
  23898. }
  23899. },
  23900. anthro: {
  23901. height: math.unit(30, "feet"),
  23902. weight: math.unit(9000, "kg"),
  23903. name: "Anthro",
  23904. image: {
  23905. source: "./media/characters/alydar/anthro.svg",
  23906. extra: 432 / 421,
  23907. bottom: 7.18 / 440
  23908. }
  23909. },
  23910. maw: {
  23911. height: math.unit(11.693, "feet"),
  23912. name: "Maw",
  23913. image: {
  23914. source: "./media/characters/alydar/maw.svg"
  23915. }
  23916. },
  23917. head: {
  23918. height: math.unit(11.693, "feet"),
  23919. name: "Head",
  23920. image: {
  23921. source: "./media/characters/alydar/head.svg"
  23922. }
  23923. },
  23924. headAlt: {
  23925. height: math.unit(12.861, "feet"),
  23926. name: "Head (Alt)",
  23927. image: {
  23928. source: "./media/characters/alydar/head-alt.svg"
  23929. }
  23930. },
  23931. wing: {
  23932. height: math.unit(20.712, "feet"),
  23933. name: "Wing",
  23934. image: {
  23935. source: "./media/characters/alydar/wing.svg"
  23936. }
  23937. },
  23938. wingFeather: {
  23939. height: math.unit(9.662, "feet"),
  23940. name: "Wing Feather",
  23941. image: {
  23942. source: "./media/characters/alydar/wing-feather.svg"
  23943. }
  23944. },
  23945. countourFeather: {
  23946. height: math.unit(4.154, "feet"),
  23947. name: "Contour Feather",
  23948. image: {
  23949. source: "./media/characters/alydar/contour-feather.svg"
  23950. }
  23951. },
  23952. },
  23953. [
  23954. {
  23955. name: "Diplomatic",
  23956. height: math.unit(13, "feet"),
  23957. default: true
  23958. },
  23959. {
  23960. name: "Small",
  23961. height: math.unit(30, "feet")
  23962. },
  23963. {
  23964. name: "Normal",
  23965. height: math.unit(95, "feet"),
  23966. default: true
  23967. },
  23968. {
  23969. name: "Large",
  23970. height: math.unit(285, "feet")
  23971. },
  23972. {
  23973. name: "Incomprehensible",
  23974. height: math.unit(450, "megameters")
  23975. },
  23976. ]
  23977. ))
  23978. characterMakers.push(() => makeCharacter(
  23979. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23980. {
  23981. side: {
  23982. height: math.unit(11, "feet"),
  23983. weight: math.unit(1750, "kg"),
  23984. name: "Side",
  23985. image: {
  23986. source: "./media/characters/selicia/side.svg",
  23987. extra: 440 / 396,
  23988. bottom: 24.8 / 465.979
  23989. }
  23990. },
  23991. maw: {
  23992. height: math.unit(4.665, "feet"),
  23993. name: "Maw",
  23994. image: {
  23995. source: "./media/characters/selicia/maw.svg"
  23996. }
  23997. },
  23998. },
  23999. [
  24000. {
  24001. name: "Normal",
  24002. height: math.unit(11, "feet"),
  24003. default: true
  24004. },
  24005. ]
  24006. ))
  24007. characterMakers.push(() => makeCharacter(
  24008. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24009. {
  24010. side: {
  24011. height: math.unit(2 + 6 / 12, "feet"),
  24012. weight: math.unit(30, "lb"),
  24013. name: "Side",
  24014. image: {
  24015. source: "./media/characters/layla/side.svg",
  24016. extra: 244 / 188,
  24017. bottom: 18.2 / 262.1
  24018. }
  24019. },
  24020. back: {
  24021. height: math.unit(2 + 6 / 12, "feet"),
  24022. weight: math.unit(30, "lb"),
  24023. name: "Back",
  24024. image: {
  24025. source: "./media/characters/layla/back.svg",
  24026. extra: 308 / 241.5,
  24027. bottom: 8.9 / 316.8
  24028. }
  24029. },
  24030. cumming: {
  24031. height: math.unit(2 + 6 / 12, "feet"),
  24032. weight: math.unit(30, "lb"),
  24033. name: "Cumming",
  24034. image: {
  24035. source: "./media/characters/layla/cumming.svg",
  24036. extra: 342 / 279,
  24037. bottom: 595 / 938
  24038. }
  24039. },
  24040. dickFlaccid: {
  24041. height: math.unit(2.595, "feet"),
  24042. name: "Flaccid Genitals",
  24043. image: {
  24044. source: "./media/characters/layla/dick-flaccid.svg"
  24045. }
  24046. },
  24047. dickErect: {
  24048. height: math.unit(2.359, "feet"),
  24049. name: "Erect Genitals",
  24050. image: {
  24051. source: "./media/characters/layla/dick-erect.svg"
  24052. }
  24053. },
  24054. dragon: {
  24055. height: math.unit(40, "feet"),
  24056. name: "Dragon",
  24057. image: {
  24058. source: "./media/characters/layla/dragon.svg",
  24059. extra: 610/535,
  24060. bottom: 367/977
  24061. }
  24062. },
  24063. taur: {
  24064. height: math.unit(30, "feet"),
  24065. name: "Taur",
  24066. image: {
  24067. source: "./media/characters/layla/taur.svg",
  24068. extra: 1268/1199,
  24069. bottom: 112/1380
  24070. }
  24071. },
  24072. },
  24073. [
  24074. {
  24075. name: "Micro",
  24076. height: math.unit(1, "inch")
  24077. },
  24078. {
  24079. name: "Small",
  24080. height: math.unit(1, "foot")
  24081. },
  24082. {
  24083. name: "Normal",
  24084. height: math.unit(2 + 6 / 12, "feet"),
  24085. default: true
  24086. },
  24087. {
  24088. name: "Macro",
  24089. height: math.unit(200, "feet")
  24090. },
  24091. {
  24092. name: "Megamacro",
  24093. height: math.unit(1000, "miles")
  24094. },
  24095. {
  24096. name: "Planetary",
  24097. height: math.unit(8000, "miles")
  24098. },
  24099. {
  24100. name: "True Layla",
  24101. height: math.unit(200000 * 7, "multiverses")
  24102. },
  24103. ]
  24104. ))
  24105. characterMakers.push(() => makeCharacter(
  24106. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24107. {
  24108. back: {
  24109. height: math.unit(10.5, "feet"),
  24110. weight: math.unit(800, "lb"),
  24111. name: "Back",
  24112. image: {
  24113. source: "./media/characters/knox/back.svg",
  24114. extra: 1486 / 1089,
  24115. bottom: 107 / 1601.4
  24116. }
  24117. },
  24118. side: {
  24119. height: math.unit(10.5, "feet"),
  24120. weight: math.unit(800, "lb"),
  24121. name: "Side",
  24122. image: {
  24123. source: "./media/characters/knox/side.svg",
  24124. extra: 244 / 218,
  24125. bottom: 14 / 260
  24126. }
  24127. },
  24128. },
  24129. [
  24130. {
  24131. name: "Compact",
  24132. height: math.unit(10.5, "feet"),
  24133. default: true
  24134. },
  24135. {
  24136. name: "Dynamax",
  24137. height: math.unit(210, "feet")
  24138. },
  24139. {
  24140. name: "Full Macro",
  24141. height: math.unit(850, "feet")
  24142. },
  24143. ]
  24144. ))
  24145. characterMakers.push(() => makeCharacter(
  24146. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24147. {
  24148. front: {
  24149. height: math.unit(28, "feet"),
  24150. weight: math.unit(10500, "lb"),
  24151. name: "Front",
  24152. image: {
  24153. source: "./media/characters/kayda/front.svg",
  24154. extra: 1536 / 1428,
  24155. bottom: 68.7 / 1603
  24156. }
  24157. },
  24158. back: {
  24159. height: math.unit(28, "feet"),
  24160. weight: math.unit(10500, "lb"),
  24161. name: "Back",
  24162. image: {
  24163. source: "./media/characters/kayda/back.svg",
  24164. extra: 1557 / 1464,
  24165. bottom: 39.5 / 1597.49
  24166. }
  24167. },
  24168. dick: {
  24169. height: math.unit(3.858, "feet"),
  24170. name: "Dick",
  24171. image: {
  24172. source: "./media/characters/kayda/dick.svg"
  24173. }
  24174. },
  24175. },
  24176. [
  24177. {
  24178. name: "Macro",
  24179. height: math.unit(28, "feet"),
  24180. default: true
  24181. },
  24182. ]
  24183. ))
  24184. characterMakers.push(() => makeCharacter(
  24185. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24186. {
  24187. front: {
  24188. height: math.unit(10 + 11 / 12, "feet"),
  24189. weight: math.unit(1400, "lb"),
  24190. name: "Front",
  24191. image: {
  24192. source: "./media/characters/brian/front.svg",
  24193. extra: 737 / 692,
  24194. bottom: 55.4 / 785
  24195. }
  24196. },
  24197. },
  24198. [
  24199. {
  24200. name: "Normal",
  24201. height: math.unit(10 + 11 / 12, "feet"),
  24202. default: true
  24203. },
  24204. ]
  24205. ))
  24206. characterMakers.push(() => makeCharacter(
  24207. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24208. {
  24209. front: {
  24210. height: math.unit(5 + 8 / 12, "feet"),
  24211. weight: math.unit(140, "lb"),
  24212. name: "Front",
  24213. image: {
  24214. source: "./media/characters/khemri/front.svg",
  24215. extra: 4780 / 4059,
  24216. bottom: 80.1 / 4859.25
  24217. }
  24218. },
  24219. },
  24220. [
  24221. {
  24222. name: "Micro",
  24223. height: math.unit(6, "inches")
  24224. },
  24225. {
  24226. name: "Normal",
  24227. height: math.unit(5 + 8 / 12, "feet"),
  24228. default: true
  24229. },
  24230. ]
  24231. ))
  24232. characterMakers.push(() => makeCharacter(
  24233. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24234. {
  24235. front: {
  24236. height: math.unit(13, "feet"),
  24237. weight: math.unit(1700, "lb"),
  24238. name: "Front",
  24239. image: {
  24240. source: "./media/characters/felix-braveheart/front.svg",
  24241. extra: 1222 / 1157,
  24242. bottom: 53.2 / 1280
  24243. }
  24244. },
  24245. back: {
  24246. height: math.unit(13, "feet"),
  24247. weight: math.unit(1700, "lb"),
  24248. name: "Back",
  24249. image: {
  24250. source: "./media/characters/felix-braveheart/back.svg",
  24251. extra: 1277 / 1203,
  24252. bottom: 50.2 / 1327
  24253. }
  24254. },
  24255. feral: {
  24256. height: math.unit(6, "feet"),
  24257. weight: math.unit(400, "lb"),
  24258. name: "Feral",
  24259. image: {
  24260. source: "./media/characters/felix-braveheart/feral.svg",
  24261. extra: 682 / 625,
  24262. bottom: 6.9 / 688
  24263. }
  24264. },
  24265. },
  24266. [
  24267. {
  24268. name: "Normal",
  24269. height: math.unit(13, "feet"),
  24270. default: true
  24271. },
  24272. ]
  24273. ))
  24274. characterMakers.push(() => makeCharacter(
  24275. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24276. {
  24277. side: {
  24278. height: math.unit(5 + 11 / 12, "feet"),
  24279. weight: math.unit(1400, "lb"),
  24280. name: "Side",
  24281. image: {
  24282. source: "./media/characters/shadow-blade/side.svg",
  24283. extra: 1726 / 1267,
  24284. bottom: 58.4 / 1785
  24285. }
  24286. },
  24287. },
  24288. [
  24289. {
  24290. name: "Normal",
  24291. height: math.unit(5 + 11 / 12, "feet"),
  24292. default: true
  24293. },
  24294. ]
  24295. ))
  24296. characterMakers.push(() => makeCharacter(
  24297. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24298. {
  24299. front: {
  24300. height: math.unit(1 + 6 / 12, "feet"),
  24301. weight: math.unit(25, "lb"),
  24302. name: "Front",
  24303. image: {
  24304. source: "./media/characters/karla-halldor/front.svg",
  24305. extra: 1459 / 1383,
  24306. bottom: 12 / 1472
  24307. }
  24308. },
  24309. },
  24310. [
  24311. {
  24312. name: "Normal",
  24313. height: math.unit(1 + 6 / 12, "feet"),
  24314. default: true
  24315. },
  24316. ]
  24317. ))
  24318. characterMakers.push(() => makeCharacter(
  24319. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24320. {
  24321. front: {
  24322. height: math.unit(6 + 2 / 12, "feet"),
  24323. weight: math.unit(160, "lb"),
  24324. name: "Front",
  24325. image: {
  24326. source: "./media/characters/ariam/front.svg",
  24327. extra: 1073/976,
  24328. bottom: 52/1125
  24329. }
  24330. },
  24331. back: {
  24332. height: math.unit(6 + 2/12, "feet"),
  24333. weight: math.unit(160, "lb"),
  24334. name: "Back",
  24335. image: {
  24336. source: "./media/characters/ariam/back.svg",
  24337. extra: 1103/1023,
  24338. bottom: 9/1112
  24339. }
  24340. },
  24341. dressed: {
  24342. height: math.unit(6 + 2/12, "feet"),
  24343. weight: math.unit(160, "lb"),
  24344. name: "Dressed",
  24345. image: {
  24346. source: "./media/characters/ariam/dressed.svg",
  24347. extra: 1099/1009,
  24348. bottom: 25/1124
  24349. }
  24350. },
  24351. squatting: {
  24352. height: math.unit(4.1, "feet"),
  24353. weight: math.unit(160, "lb"),
  24354. name: "Squatting",
  24355. image: {
  24356. source: "./media/characters/ariam/squatting.svg",
  24357. extra: 2617 / 2112,
  24358. bottom: 61.2 / 2681,
  24359. }
  24360. },
  24361. },
  24362. [
  24363. {
  24364. name: "Normal",
  24365. height: math.unit(6 + 2 / 12, "feet"),
  24366. default: true
  24367. },
  24368. {
  24369. name: "Normal+",
  24370. height: math.unit(4, "meters")
  24371. },
  24372. {
  24373. name: "Macro",
  24374. height: math.unit(50, "meters")
  24375. },
  24376. {
  24377. name: "Macro+",
  24378. height: math.unit(100, "meters")
  24379. },
  24380. {
  24381. name: "Megamacro",
  24382. height: math.unit(20, "km")
  24383. },
  24384. {
  24385. name: "Caretaker",
  24386. height: math.unit(444, "megameters")
  24387. },
  24388. ]
  24389. ))
  24390. characterMakers.push(() => makeCharacter(
  24391. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24392. {
  24393. front: {
  24394. height: math.unit(1.67, "meters"),
  24395. weight: math.unit(140, "lb"),
  24396. name: "Front",
  24397. image: {
  24398. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24399. extra: 438 / 410,
  24400. bottom: 0.75 / 439
  24401. }
  24402. },
  24403. },
  24404. [
  24405. {
  24406. name: "Shrunken",
  24407. height: math.unit(7.6, "cm")
  24408. },
  24409. {
  24410. name: "Human Scale",
  24411. height: math.unit(1.67, "meters")
  24412. },
  24413. {
  24414. name: "Wolxi Scale",
  24415. height: math.unit(36.7, "meters"),
  24416. default: true
  24417. },
  24418. ]
  24419. ))
  24420. characterMakers.push(() => makeCharacter(
  24421. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24422. {
  24423. front: {
  24424. height: math.unit(1.73, "meters"),
  24425. weight: math.unit(240, "lb"),
  24426. name: "Front",
  24427. image: {
  24428. source: "./media/characters/izue-two-mothers/front.svg",
  24429. extra: 469 / 437,
  24430. bottom: 1.24 / 470.6
  24431. }
  24432. },
  24433. },
  24434. [
  24435. {
  24436. name: "Shrunken",
  24437. height: math.unit(7.86, "cm")
  24438. },
  24439. {
  24440. name: "Human Scale",
  24441. height: math.unit(1.73, "meters")
  24442. },
  24443. {
  24444. name: "Wolxi Scale",
  24445. height: math.unit(38, "meters"),
  24446. default: true
  24447. },
  24448. ]
  24449. ))
  24450. characterMakers.push(() => makeCharacter(
  24451. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24452. {
  24453. front: {
  24454. height: math.unit(1.55, "meters"),
  24455. weight: math.unit(120, "lb"),
  24456. name: "Front",
  24457. image: {
  24458. source: "./media/characters/teeku-love-shack/front.svg",
  24459. extra: 387 / 362,
  24460. bottom: 1.51 / 388
  24461. }
  24462. },
  24463. },
  24464. [
  24465. {
  24466. name: "Shrunken",
  24467. height: math.unit(7, "cm")
  24468. },
  24469. {
  24470. name: "Human Scale",
  24471. height: math.unit(1.55, "meters")
  24472. },
  24473. {
  24474. name: "Wolxi Scale",
  24475. height: math.unit(34.1, "meters"),
  24476. default: true
  24477. },
  24478. ]
  24479. ))
  24480. characterMakers.push(() => makeCharacter(
  24481. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24482. {
  24483. front: {
  24484. height: math.unit(1.83, "meters"),
  24485. weight: math.unit(135, "lb"),
  24486. name: "Front",
  24487. image: {
  24488. source: "./media/characters/dejma-the-red/front.svg",
  24489. extra: 480 / 458,
  24490. bottom: 1.8 / 482
  24491. }
  24492. },
  24493. },
  24494. [
  24495. {
  24496. name: "Shrunken",
  24497. height: math.unit(8.3, "cm")
  24498. },
  24499. {
  24500. name: "Human Scale",
  24501. height: math.unit(1.83, "meters")
  24502. },
  24503. {
  24504. name: "Wolxi Scale",
  24505. height: math.unit(40, "meters"),
  24506. default: true
  24507. },
  24508. ]
  24509. ))
  24510. characterMakers.push(() => makeCharacter(
  24511. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24512. {
  24513. front: {
  24514. height: math.unit(1.78, "meters"),
  24515. weight: math.unit(65, "kg"),
  24516. name: "Front",
  24517. image: {
  24518. source: "./media/characters/aki/front.svg",
  24519. extra: 452 / 415
  24520. }
  24521. },
  24522. frontNsfw: {
  24523. height: math.unit(1.78, "meters"),
  24524. weight: math.unit(65, "kg"),
  24525. name: "Front (NSFW)",
  24526. image: {
  24527. source: "./media/characters/aki/front-nsfw.svg",
  24528. extra: 452 / 415
  24529. }
  24530. },
  24531. back: {
  24532. height: math.unit(1.78, "meters"),
  24533. weight: math.unit(65, "kg"),
  24534. name: "Back",
  24535. image: {
  24536. source: "./media/characters/aki/back.svg",
  24537. extra: 452 / 415
  24538. }
  24539. },
  24540. rump: {
  24541. height: math.unit(2.05, "feet"),
  24542. name: "Rump",
  24543. image: {
  24544. source: "./media/characters/aki/rump.svg"
  24545. }
  24546. },
  24547. dick: {
  24548. height: math.unit(0.95, "feet"),
  24549. name: "Dick",
  24550. image: {
  24551. source: "./media/characters/aki/dick.svg"
  24552. }
  24553. },
  24554. },
  24555. [
  24556. {
  24557. name: "Micro",
  24558. height: math.unit(15, "cm")
  24559. },
  24560. {
  24561. name: "Normal",
  24562. height: math.unit(178, "cm"),
  24563. default: true
  24564. },
  24565. {
  24566. name: "Macro",
  24567. height: math.unit(214, "m")
  24568. },
  24569. {
  24570. name: "Macro+",
  24571. height: math.unit(534, "m")
  24572. },
  24573. ]
  24574. ))
  24575. characterMakers.push(() => makeCharacter(
  24576. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24577. {
  24578. front: {
  24579. height: math.unit(5 + 5 / 12, "feet"),
  24580. weight: math.unit(120, "lb"),
  24581. name: "Front",
  24582. image: {
  24583. source: "./media/characters/ari/front.svg",
  24584. extra: 714.5 / 682,
  24585. bottom: 8 / 722.5
  24586. }
  24587. },
  24588. },
  24589. [
  24590. {
  24591. name: "Normal",
  24592. height: math.unit(5 + 5 / 12, "feet")
  24593. },
  24594. {
  24595. name: "Macro",
  24596. height: math.unit(100, "feet"),
  24597. default: true
  24598. },
  24599. {
  24600. name: "Megamacro",
  24601. height: math.unit(100, "miles")
  24602. },
  24603. {
  24604. name: "Gigamacro",
  24605. height: math.unit(80000, "miles")
  24606. },
  24607. ]
  24608. ))
  24609. characterMakers.push(() => makeCharacter(
  24610. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24611. {
  24612. side: {
  24613. height: math.unit(9, "feet"),
  24614. weight: math.unit(400, "kg"),
  24615. name: "Side",
  24616. image: {
  24617. source: "./media/characters/bolt/side.svg",
  24618. extra: 1126 / 896,
  24619. bottom: 60 / 1187.3,
  24620. }
  24621. },
  24622. },
  24623. [
  24624. {
  24625. name: "Micro",
  24626. height: math.unit(5, "inches")
  24627. },
  24628. {
  24629. name: "Normal",
  24630. height: math.unit(9, "feet"),
  24631. default: true
  24632. },
  24633. {
  24634. name: "Macro",
  24635. height: math.unit(700, "feet")
  24636. },
  24637. {
  24638. name: "Max Size",
  24639. height: math.unit(1.52e22, "yottameters")
  24640. },
  24641. ]
  24642. ))
  24643. characterMakers.push(() => makeCharacter(
  24644. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24645. {
  24646. front: {
  24647. height: math.unit(4.53, "meters"),
  24648. weight: math.unit(3, "tons"),
  24649. name: "Front",
  24650. image: {
  24651. source: "./media/characters/draekon-sylviar/front.svg",
  24652. extra: 1228 / 1068,
  24653. bottom: 41 / 1270
  24654. }
  24655. },
  24656. tail: {
  24657. height: math.unit(1.772, "meter"),
  24658. name: "Tail",
  24659. image: {
  24660. source: "./media/characters/draekon-sylviar/tail.svg"
  24661. }
  24662. },
  24663. head: {
  24664. height: math.unit(1.331, "meter"),
  24665. name: "Head",
  24666. image: {
  24667. source: "./media/characters/draekon-sylviar/head.svg"
  24668. }
  24669. },
  24670. hand: {
  24671. height: math.unit(0.564, "meter"),
  24672. name: "Hand",
  24673. image: {
  24674. source: "./media/characters/draekon-sylviar/hand.svg"
  24675. }
  24676. },
  24677. foot: {
  24678. height: math.unit(0.621, "meter"),
  24679. name: "Foot",
  24680. image: {
  24681. source: "./media/characters/draekon-sylviar/foot.svg",
  24682. bottom: 32 / 324
  24683. }
  24684. },
  24685. dick: {
  24686. height: math.unit(61, "cm"),
  24687. name: "Dick",
  24688. image: {
  24689. source: "./media/characters/draekon-sylviar/dick.svg"
  24690. }
  24691. },
  24692. dickseparated: {
  24693. height: math.unit(61, "cm"),
  24694. name: "Dick-separated",
  24695. image: {
  24696. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24697. }
  24698. },
  24699. },
  24700. [
  24701. {
  24702. name: "Small",
  24703. height: math.unit(4.53 / 2, "meters"),
  24704. default: true
  24705. },
  24706. {
  24707. name: "Normal",
  24708. height: math.unit(4.53, "meters"),
  24709. default: true
  24710. },
  24711. {
  24712. name: "Large",
  24713. height: math.unit(4.53 * 2, "meters"),
  24714. },
  24715. ]
  24716. ))
  24717. characterMakers.push(() => makeCharacter(
  24718. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24719. {
  24720. front: {
  24721. height: math.unit(6 + 2 / 12, "feet"),
  24722. weight: math.unit(180, "lb"),
  24723. name: "Front",
  24724. image: {
  24725. source: "./media/characters/brawler/front.svg",
  24726. extra: 3301 / 3027,
  24727. bottom: 138 / 3439
  24728. }
  24729. },
  24730. },
  24731. [
  24732. {
  24733. name: "Normal",
  24734. height: math.unit(6 + 2 / 12, "feet"),
  24735. default: true
  24736. },
  24737. ]
  24738. ))
  24739. characterMakers.push(() => makeCharacter(
  24740. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24741. {
  24742. front: {
  24743. height: math.unit(11, "feet"),
  24744. weight: math.unit(1000, "lb"),
  24745. name: "Front",
  24746. image: {
  24747. source: "./media/characters/alex/front.svg",
  24748. bottom: 44.5 / 620
  24749. }
  24750. },
  24751. },
  24752. [
  24753. {
  24754. name: "Micro",
  24755. height: math.unit(5, "inches")
  24756. },
  24757. {
  24758. name: "Normal",
  24759. height: math.unit(11, "feet"),
  24760. default: true
  24761. },
  24762. {
  24763. name: "Macro",
  24764. height: math.unit(9.5e9, "feet")
  24765. },
  24766. {
  24767. name: "Max Size",
  24768. height: math.unit(1.4e283, "yottameters")
  24769. },
  24770. ]
  24771. ))
  24772. characterMakers.push(() => makeCharacter(
  24773. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24774. {
  24775. female: {
  24776. height: math.unit(29.9, "m"),
  24777. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24778. name: "Female",
  24779. image: {
  24780. source: "./media/characters/zenari/female.svg",
  24781. extra: 3281.6 / 3217,
  24782. bottom: 72.2 / 3353
  24783. }
  24784. },
  24785. male: {
  24786. height: math.unit(27.7, "m"),
  24787. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24788. name: "Male",
  24789. image: {
  24790. source: "./media/characters/zenari/male.svg",
  24791. extra: 3008 / 2991,
  24792. bottom: 54.6 / 3069
  24793. }
  24794. },
  24795. },
  24796. [
  24797. {
  24798. name: "Macro",
  24799. height: math.unit(29.7, "meters"),
  24800. default: true
  24801. },
  24802. ]
  24803. ))
  24804. characterMakers.push(() => makeCharacter(
  24805. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24806. {
  24807. female: {
  24808. height: math.unit(23.8, "m"),
  24809. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24810. name: "Female",
  24811. image: {
  24812. source: "./media/characters/mactarian/female.svg",
  24813. extra: 2662 / 2569,
  24814. bottom: 73 / 2736
  24815. }
  24816. },
  24817. male: {
  24818. height: math.unit(23.8, "m"),
  24819. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24820. name: "Male",
  24821. image: {
  24822. source: "./media/characters/mactarian/male.svg",
  24823. extra: 2673 / 2600,
  24824. bottom: 76 / 2750
  24825. }
  24826. },
  24827. },
  24828. [
  24829. {
  24830. name: "Macro",
  24831. height: math.unit(23.8, "meters"),
  24832. default: true
  24833. },
  24834. ]
  24835. ))
  24836. characterMakers.push(() => makeCharacter(
  24837. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24838. {
  24839. female: {
  24840. height: math.unit(19.3, "m"),
  24841. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24842. name: "Female",
  24843. image: {
  24844. source: "./media/characters/umok/female.svg",
  24845. extra: 2186 / 2078,
  24846. bottom: 87 / 2277
  24847. }
  24848. },
  24849. male: {
  24850. height: math.unit(19.5, "m"),
  24851. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24852. name: "Male",
  24853. image: {
  24854. source: "./media/characters/umok/male.svg",
  24855. extra: 2233 / 2140,
  24856. bottom: 24.4 / 2258
  24857. }
  24858. },
  24859. },
  24860. [
  24861. {
  24862. name: "Macro",
  24863. height: math.unit(19.3, "meters"),
  24864. default: true
  24865. },
  24866. ]
  24867. ))
  24868. characterMakers.push(() => makeCharacter(
  24869. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24870. {
  24871. female: {
  24872. height: math.unit(26.15, "m"),
  24873. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24874. name: "Female",
  24875. image: {
  24876. source: "./media/characters/joraxian/female.svg",
  24877. extra: 2912 / 2824,
  24878. bottom: 36 / 2956
  24879. }
  24880. },
  24881. male: {
  24882. height: math.unit(25.4, "m"),
  24883. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24884. name: "Male",
  24885. image: {
  24886. source: "./media/characters/joraxian/male.svg",
  24887. extra: 2877 / 2721,
  24888. bottom: 82 / 2967
  24889. }
  24890. },
  24891. },
  24892. [
  24893. {
  24894. name: "Macro",
  24895. height: math.unit(26.15, "meters"),
  24896. default: true
  24897. },
  24898. ]
  24899. ))
  24900. characterMakers.push(() => makeCharacter(
  24901. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24902. {
  24903. female: {
  24904. height: math.unit(21.6, "m"),
  24905. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24906. name: "Female",
  24907. image: {
  24908. source: "./media/characters/sthara/female.svg",
  24909. extra: 2516 / 2347,
  24910. bottom: 21.5 / 2537
  24911. }
  24912. },
  24913. male: {
  24914. height: math.unit(24, "m"),
  24915. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24916. name: "Male",
  24917. image: {
  24918. source: "./media/characters/sthara/male.svg",
  24919. extra: 2732 / 2607,
  24920. bottom: 23 / 2732
  24921. }
  24922. },
  24923. },
  24924. [
  24925. {
  24926. name: "Macro",
  24927. height: math.unit(21.6, "meters"),
  24928. default: true
  24929. },
  24930. ]
  24931. ))
  24932. characterMakers.push(() => makeCharacter(
  24933. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24934. {
  24935. front: {
  24936. height: math.unit(6 + 4 / 12, "feet"),
  24937. weight: math.unit(175, "lb"),
  24938. name: "Front",
  24939. image: {
  24940. source: "./media/characters/luka-bryzant/front.svg",
  24941. extra: 311 / 289,
  24942. bottom: 4 / 315
  24943. }
  24944. },
  24945. back: {
  24946. height: math.unit(6 + 4 / 12, "feet"),
  24947. weight: math.unit(175, "lb"),
  24948. name: "Back",
  24949. image: {
  24950. source: "./media/characters/luka-bryzant/back.svg",
  24951. extra: 311 / 289,
  24952. bottom: 3.8 / 313.7
  24953. }
  24954. },
  24955. },
  24956. [
  24957. {
  24958. name: "Micro",
  24959. height: math.unit(10, "inches")
  24960. },
  24961. {
  24962. name: "Normal",
  24963. height: math.unit(6 + 4 / 12, "feet"),
  24964. default: true
  24965. },
  24966. {
  24967. name: "Large",
  24968. height: math.unit(12, "feet")
  24969. },
  24970. ]
  24971. ))
  24972. characterMakers.push(() => makeCharacter(
  24973. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24974. {
  24975. front: {
  24976. height: math.unit(5 + 7 / 12, "feet"),
  24977. weight: math.unit(185, "lb"),
  24978. name: "Front",
  24979. image: {
  24980. source: "./media/characters/aman-aquila/front.svg",
  24981. extra: 1013 / 976,
  24982. bottom: 45.6 / 1057
  24983. }
  24984. },
  24985. side: {
  24986. height: math.unit(5 + 7 / 12, "feet"),
  24987. weight: math.unit(185, "lb"),
  24988. name: "Side",
  24989. image: {
  24990. source: "./media/characters/aman-aquila/side.svg",
  24991. extra: 1054 / 1011,
  24992. bottom: 15 / 1070
  24993. }
  24994. },
  24995. back: {
  24996. height: math.unit(5 + 7 / 12, "feet"),
  24997. weight: math.unit(185, "lb"),
  24998. name: "Back",
  24999. image: {
  25000. source: "./media/characters/aman-aquila/back.svg",
  25001. extra: 1026 / 970,
  25002. bottom: 12 / 1039
  25003. }
  25004. },
  25005. head: {
  25006. height: math.unit(1.211, "feet"),
  25007. name: "Head",
  25008. image: {
  25009. source: "./media/characters/aman-aquila/head.svg",
  25010. }
  25011. },
  25012. },
  25013. [
  25014. {
  25015. name: "Minimicro",
  25016. height: math.unit(0.057, "inches")
  25017. },
  25018. {
  25019. name: "Micro",
  25020. height: math.unit(7, "inches")
  25021. },
  25022. {
  25023. name: "Mini",
  25024. height: math.unit(3 + 7 / 12, "feet")
  25025. },
  25026. {
  25027. name: "Normal",
  25028. height: math.unit(5 + 7 / 12, "feet"),
  25029. default: true
  25030. },
  25031. {
  25032. name: "Macro",
  25033. height: math.unit(157 + 7 / 12, "feet")
  25034. },
  25035. {
  25036. name: "Megamacro",
  25037. height: math.unit(1557 + 7 / 12, "feet")
  25038. },
  25039. {
  25040. name: "Gigamacro",
  25041. height: math.unit(15557 + 7 / 12, "feet")
  25042. },
  25043. ]
  25044. ))
  25045. characterMakers.push(() => makeCharacter(
  25046. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25047. {
  25048. front: {
  25049. height: math.unit(3 + 2 / 12, "inches"),
  25050. weight: math.unit(0.3, "ounces"),
  25051. name: "Front",
  25052. image: {
  25053. source: "./media/characters/hiphae/front.svg",
  25054. extra: 1931 / 1683,
  25055. bottom: 24 / 1955
  25056. }
  25057. },
  25058. },
  25059. [
  25060. {
  25061. name: "Normal",
  25062. height: math.unit(3 + 1 / 2, "inches"),
  25063. default: true
  25064. },
  25065. ]
  25066. ))
  25067. characterMakers.push(() => makeCharacter(
  25068. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25069. {
  25070. front: {
  25071. height: math.unit(5 + 10 / 12, "feet"),
  25072. weight: math.unit(165, "lb"),
  25073. name: "Front",
  25074. image: {
  25075. source: "./media/characters/nicky/front.svg",
  25076. extra: 3144 / 2886,
  25077. bottom: 45.6 / 3192
  25078. }
  25079. },
  25080. back: {
  25081. height: math.unit(5 + 10 / 12, "feet"),
  25082. weight: math.unit(165, "lb"),
  25083. name: "Back",
  25084. image: {
  25085. source: "./media/characters/nicky/back.svg",
  25086. extra: 3055 / 2804,
  25087. bottom: 28.4 / 3087
  25088. }
  25089. },
  25090. frontclothed: {
  25091. height: math.unit(5 + 10 / 12, "feet"),
  25092. weight: math.unit(165, "lb"),
  25093. name: "Front-clothed",
  25094. image: {
  25095. source: "./media/characters/nicky/front-clothed.svg",
  25096. extra: 3184.9 / 2926.9,
  25097. bottom: 86.5 / 3239.9
  25098. }
  25099. },
  25100. foot: {
  25101. height: math.unit(1.16, "feet"),
  25102. name: "Foot",
  25103. image: {
  25104. source: "./media/characters/nicky/foot.svg"
  25105. }
  25106. },
  25107. feet: {
  25108. height: math.unit(1.34, "feet"),
  25109. name: "Feet",
  25110. image: {
  25111. source: "./media/characters/nicky/feet.svg"
  25112. }
  25113. },
  25114. maw: {
  25115. height: math.unit(0.9, "feet"),
  25116. name: "Maw",
  25117. image: {
  25118. source: "./media/characters/nicky/maw.svg"
  25119. }
  25120. },
  25121. },
  25122. [
  25123. {
  25124. name: "Normal",
  25125. height: math.unit(5 + 10 / 12, "feet"),
  25126. default: true
  25127. },
  25128. {
  25129. name: "Macro",
  25130. height: math.unit(60, "feet")
  25131. },
  25132. {
  25133. name: "Megamacro",
  25134. height: math.unit(1, "mile")
  25135. },
  25136. ]
  25137. ))
  25138. characterMakers.push(() => makeCharacter(
  25139. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25140. {
  25141. side: {
  25142. height: math.unit(10, "feet"),
  25143. weight: math.unit(600, "lb"),
  25144. name: "Side",
  25145. image: {
  25146. source: "./media/characters/blair/side.svg",
  25147. bottom: 16.6 / 475,
  25148. extra: 458 / 431
  25149. }
  25150. },
  25151. },
  25152. [
  25153. {
  25154. name: "Micro",
  25155. height: math.unit(8, "inches")
  25156. },
  25157. {
  25158. name: "Normal",
  25159. height: math.unit(10, "feet"),
  25160. default: true
  25161. },
  25162. {
  25163. name: "Macro",
  25164. height: math.unit(180, "feet")
  25165. },
  25166. ]
  25167. ))
  25168. characterMakers.push(() => makeCharacter(
  25169. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25170. {
  25171. front: {
  25172. height: math.unit(5 + 4 / 12, "feet"),
  25173. weight: math.unit(125, "lb"),
  25174. name: "Front",
  25175. image: {
  25176. source: "./media/characters/fisher/front.svg",
  25177. extra: 444 / 390,
  25178. bottom: 2 / 444.8
  25179. }
  25180. },
  25181. },
  25182. [
  25183. {
  25184. name: "Micro",
  25185. height: math.unit(4, "inches")
  25186. },
  25187. {
  25188. name: "Normal",
  25189. height: math.unit(5 + 4 / 12, "feet"),
  25190. default: true
  25191. },
  25192. {
  25193. name: "Macro",
  25194. height: math.unit(100, "feet")
  25195. },
  25196. ]
  25197. ))
  25198. characterMakers.push(() => makeCharacter(
  25199. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25200. {
  25201. front: {
  25202. height: math.unit(6.71, "feet"),
  25203. weight: math.unit(200, "lb"),
  25204. capacity: math.unit(1000000, "people"),
  25205. name: "Front",
  25206. image: {
  25207. source: "./media/characters/gliss/front.svg",
  25208. extra: 2347 / 2231,
  25209. bottom: 113 / 2462
  25210. }
  25211. },
  25212. hammerspaceSize: {
  25213. height: math.unit(6.71 * 717, "feet"),
  25214. weight: math.unit(200, "lb"),
  25215. capacity: math.unit(1000000, "people"),
  25216. name: "Hammerspace Size",
  25217. image: {
  25218. source: "./media/characters/gliss/front.svg",
  25219. extra: 2347 / 2231,
  25220. bottom: 113 / 2462
  25221. }
  25222. },
  25223. },
  25224. [
  25225. {
  25226. name: "Normal",
  25227. height: math.unit(6.71, "feet"),
  25228. default: true
  25229. },
  25230. ]
  25231. ))
  25232. characterMakers.push(() => makeCharacter(
  25233. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25234. {
  25235. side: {
  25236. height: math.unit(1.44, "m"),
  25237. weight: math.unit(80, "kg"),
  25238. name: "Side",
  25239. image: {
  25240. source: "./media/characters/dune-anderson/side.svg",
  25241. bottom: 49 / 1426
  25242. }
  25243. },
  25244. },
  25245. [
  25246. {
  25247. name: "Wolf-sized",
  25248. height: math.unit(1.44, "meters")
  25249. },
  25250. {
  25251. name: "Normal",
  25252. height: math.unit(5.05, "meters"),
  25253. default: true
  25254. },
  25255. {
  25256. name: "Big",
  25257. height: math.unit(14.4, "meters")
  25258. },
  25259. {
  25260. name: "Huge",
  25261. height: math.unit(144, "meters")
  25262. },
  25263. ]
  25264. ))
  25265. characterMakers.push(() => makeCharacter(
  25266. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25267. {
  25268. front: {
  25269. height: math.unit(7, "feet"),
  25270. weight: math.unit(425, "lb"),
  25271. name: "Front",
  25272. image: {
  25273. source: "./media/characters/hind/front.svg",
  25274. extra: 2091 / 1860,
  25275. bottom: 129 / 2220
  25276. }
  25277. },
  25278. back: {
  25279. height: math.unit(7, "feet"),
  25280. weight: math.unit(425, "lb"),
  25281. name: "Back",
  25282. image: {
  25283. source: "./media/characters/hind/back.svg",
  25284. extra: 2091 / 1860,
  25285. bottom: 24.6 / 2309
  25286. }
  25287. },
  25288. tail: {
  25289. height: math.unit(2.8, "feet"),
  25290. name: "Tail",
  25291. image: {
  25292. source: "./media/characters/hind/tail.svg"
  25293. }
  25294. },
  25295. head: {
  25296. height: math.unit(2.55, "feet"),
  25297. name: "Head",
  25298. image: {
  25299. source: "./media/characters/hind/head.svg"
  25300. }
  25301. },
  25302. },
  25303. [
  25304. {
  25305. name: "XS",
  25306. height: math.unit(0.7, "feet")
  25307. },
  25308. {
  25309. name: "Normal",
  25310. height: math.unit(7, "feet"),
  25311. default: true
  25312. },
  25313. {
  25314. name: "XL",
  25315. height: math.unit(70, "feet")
  25316. },
  25317. ]
  25318. ))
  25319. characterMakers.push(() => makeCharacter(
  25320. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25321. {
  25322. front: {
  25323. height: math.unit(2.1, "meters"),
  25324. weight: math.unit(150, "lb"),
  25325. name: "Front",
  25326. image: {
  25327. source: "./media/characters/tharquench-sizestealer/front.svg",
  25328. extra: 1605/1470,
  25329. bottom: 36/1641
  25330. }
  25331. },
  25332. frontAlt: {
  25333. height: math.unit(2.1, "meters"),
  25334. weight: math.unit(150, "lb"),
  25335. name: "Front (Alt)",
  25336. image: {
  25337. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25338. extra: 2318 / 2063,
  25339. bottom: 93.4 / 2410
  25340. }
  25341. },
  25342. },
  25343. [
  25344. {
  25345. name: "Nano",
  25346. height: math.unit(1, "mm")
  25347. },
  25348. {
  25349. name: "Micro",
  25350. height: math.unit(1, "cm")
  25351. },
  25352. {
  25353. name: "Normal",
  25354. height: math.unit(2.1, "meters"),
  25355. default: true
  25356. },
  25357. ]
  25358. ))
  25359. characterMakers.push(() => makeCharacter(
  25360. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25361. {
  25362. front: {
  25363. height: math.unit(7 + 5 / 12, "feet"),
  25364. weight: math.unit(357, "lb"),
  25365. name: "Front",
  25366. image: {
  25367. source: "./media/characters/solex-draconov/front.svg",
  25368. extra: 1993 / 1865,
  25369. bottom: 117 / 2111
  25370. }
  25371. },
  25372. },
  25373. [
  25374. {
  25375. name: "Natural Height",
  25376. height: math.unit(7 + 5 / 12, "feet"),
  25377. default: true
  25378. },
  25379. {
  25380. name: "Macro",
  25381. height: math.unit(350, "feet")
  25382. },
  25383. {
  25384. name: "Macro+",
  25385. height: math.unit(1000, "feet")
  25386. },
  25387. {
  25388. name: "Megamacro",
  25389. height: math.unit(20, "km")
  25390. },
  25391. {
  25392. name: "Megamacro+",
  25393. height: math.unit(1000, "km")
  25394. },
  25395. {
  25396. name: "Gigamacro",
  25397. height: math.unit(2.5, "Gm")
  25398. },
  25399. {
  25400. name: "Teramacro",
  25401. height: math.unit(15, "Tm")
  25402. },
  25403. {
  25404. name: "Galactic",
  25405. height: math.unit(30, "Zm")
  25406. },
  25407. {
  25408. name: "Universal",
  25409. height: math.unit(21000, "Ym")
  25410. },
  25411. {
  25412. name: "Omniversal",
  25413. height: math.unit(9.861e50, "Ym")
  25414. },
  25415. {
  25416. name: "Existential",
  25417. height: math.unit(1e300, "meters")
  25418. },
  25419. ]
  25420. ))
  25421. characterMakers.push(() => makeCharacter(
  25422. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25423. {
  25424. side: {
  25425. height: math.unit(25, "feet"),
  25426. weight: math.unit(90000, "lb"),
  25427. name: "Side",
  25428. image: {
  25429. source: "./media/characters/mandarax/side.svg",
  25430. extra: 614 / 332,
  25431. bottom: 55 / 630
  25432. }
  25433. },
  25434. head: {
  25435. height: math.unit(11.4, "feet"),
  25436. name: "Head",
  25437. image: {
  25438. source: "./media/characters/mandarax/head.svg"
  25439. }
  25440. },
  25441. belly: {
  25442. height: math.unit(33, "feet"),
  25443. name: "Belly",
  25444. capacity: math.unit(500, "people"),
  25445. image: {
  25446. source: "./media/characters/mandarax/belly.svg"
  25447. }
  25448. },
  25449. dick: {
  25450. height: math.unit(8.46, "feet"),
  25451. name: "Dick",
  25452. image: {
  25453. source: "./media/characters/mandarax/dick.svg"
  25454. }
  25455. },
  25456. top: {
  25457. height: math.unit(28, "meters"),
  25458. name: "Top",
  25459. image: {
  25460. source: "./media/characters/mandarax/top.svg"
  25461. }
  25462. },
  25463. },
  25464. [
  25465. {
  25466. name: "Normal",
  25467. height: math.unit(25, "feet"),
  25468. default: true
  25469. },
  25470. ]
  25471. ))
  25472. characterMakers.push(() => makeCharacter(
  25473. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25474. {
  25475. front: {
  25476. height: math.unit(5, "feet"),
  25477. weight: math.unit(90, "lb"),
  25478. name: "Front",
  25479. image: {
  25480. source: "./media/characters/pixil/front.svg",
  25481. extra: 2000 / 1618,
  25482. bottom: 12.3 / 2011
  25483. }
  25484. },
  25485. },
  25486. [
  25487. {
  25488. name: "Normal",
  25489. height: math.unit(5, "feet"),
  25490. default: true
  25491. },
  25492. {
  25493. name: "Megamacro",
  25494. height: math.unit(10, "miles"),
  25495. },
  25496. ]
  25497. ))
  25498. characterMakers.push(() => makeCharacter(
  25499. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25500. {
  25501. front: {
  25502. height: math.unit(7 + 2 / 12, "feet"),
  25503. weight: math.unit(200, "lb"),
  25504. name: "Front",
  25505. image: {
  25506. source: "./media/characters/angel/front.svg",
  25507. extra: 1830 / 1737,
  25508. bottom: 22.6 / 1854,
  25509. }
  25510. },
  25511. },
  25512. [
  25513. {
  25514. name: "Normal",
  25515. height: math.unit(7 + 2 / 12, "feet"),
  25516. default: true
  25517. },
  25518. {
  25519. name: "Macro",
  25520. height: math.unit(1000, "feet")
  25521. },
  25522. {
  25523. name: "Megamacro",
  25524. height: math.unit(2, "miles")
  25525. },
  25526. {
  25527. name: "Gigamacro",
  25528. height: math.unit(20, "earths")
  25529. },
  25530. ]
  25531. ))
  25532. characterMakers.push(() => makeCharacter(
  25533. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25534. {
  25535. front: {
  25536. height: math.unit(5, "feet"),
  25537. weight: math.unit(180, "lb"),
  25538. name: "Front",
  25539. image: {
  25540. source: "./media/characters/mekana/front.svg",
  25541. extra: 1671 / 1605,
  25542. bottom: 3.5 / 1691
  25543. }
  25544. },
  25545. side: {
  25546. height: math.unit(5, "feet"),
  25547. weight: math.unit(180, "lb"),
  25548. name: "Side",
  25549. image: {
  25550. source: "./media/characters/mekana/side.svg",
  25551. extra: 1671 / 1605,
  25552. bottom: 3.5 / 1691
  25553. }
  25554. },
  25555. back: {
  25556. height: math.unit(5, "feet"),
  25557. weight: math.unit(180, "lb"),
  25558. name: "Back",
  25559. image: {
  25560. source: "./media/characters/mekana/back.svg",
  25561. extra: 1671 / 1605,
  25562. bottom: 3.5 / 1691
  25563. }
  25564. },
  25565. },
  25566. [
  25567. {
  25568. name: "Normal",
  25569. height: math.unit(5, "feet"),
  25570. default: true
  25571. },
  25572. ]
  25573. ))
  25574. characterMakers.push(() => makeCharacter(
  25575. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25576. {
  25577. front: {
  25578. height: math.unit(4 + 6 / 12, "feet"),
  25579. weight: math.unit(80, "lb"),
  25580. name: "Front",
  25581. image: {
  25582. source: "./media/characters/pixie/front.svg",
  25583. extra: 1924 / 1825,
  25584. bottom: 22.4 / 1946
  25585. }
  25586. },
  25587. },
  25588. [
  25589. {
  25590. name: "Normal",
  25591. height: math.unit(4 + 6 / 12, "feet"),
  25592. default: true
  25593. },
  25594. {
  25595. name: "Macro",
  25596. height: math.unit(40, "feet")
  25597. },
  25598. ]
  25599. ))
  25600. characterMakers.push(() => makeCharacter(
  25601. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25602. {
  25603. front: {
  25604. height: math.unit(2.1, "meters"),
  25605. weight: math.unit(200, "lb"),
  25606. name: "Front",
  25607. image: {
  25608. source: "./media/characters/the-lascivious/front.svg",
  25609. extra: 1 / 0.893,
  25610. bottom: 3.5 / 573.7
  25611. }
  25612. },
  25613. },
  25614. [
  25615. {
  25616. name: "Human Scale",
  25617. height: math.unit(2.1, "meters")
  25618. },
  25619. {
  25620. name: "Wolxi Scale",
  25621. height: math.unit(46.2, "m"),
  25622. default: true
  25623. },
  25624. {
  25625. name: "Boinker of Buildings",
  25626. height: math.unit(10, "km")
  25627. },
  25628. {
  25629. name: "Shagger of Skyscrapers",
  25630. height: math.unit(40, "km")
  25631. },
  25632. {
  25633. name: "Banger of Boroughs",
  25634. height: math.unit(4000, "km")
  25635. },
  25636. {
  25637. name: "Screwer of States",
  25638. height: math.unit(100000, "km")
  25639. },
  25640. {
  25641. name: "Pounder of Planets",
  25642. height: math.unit(2000000, "km")
  25643. },
  25644. ]
  25645. ))
  25646. characterMakers.push(() => makeCharacter(
  25647. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25648. {
  25649. front: {
  25650. height: math.unit(6, "feet"),
  25651. weight: math.unit(150, "lb"),
  25652. name: "Front",
  25653. image: {
  25654. source: "./media/characters/aj/front.svg",
  25655. extra: 2039 / 1562,
  25656. bottom: 40 / 2079
  25657. }
  25658. },
  25659. },
  25660. [
  25661. {
  25662. name: "Normal",
  25663. height: math.unit(11 + 6 / 12, "feet"),
  25664. default: true
  25665. },
  25666. {
  25667. name: "Megamacro",
  25668. height: math.unit(60, "megameters")
  25669. },
  25670. ]
  25671. ))
  25672. characterMakers.push(() => makeCharacter(
  25673. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25674. {
  25675. side: {
  25676. height: math.unit(31 + 8 / 12, "feet"),
  25677. weight: math.unit(75000, "kg"),
  25678. name: "Side",
  25679. image: {
  25680. source: "./media/characters/koros/side.svg",
  25681. extra: 1442 / 1297,
  25682. bottom: 122.7 / 1562
  25683. }
  25684. },
  25685. dicksKingsCrown: {
  25686. height: math.unit(6, "feet"),
  25687. name: "Dicks (King's Crown)",
  25688. image: {
  25689. source: "./media/characters/koros/dicks-kings-crown.svg"
  25690. }
  25691. },
  25692. dicksTailSet: {
  25693. height: math.unit(3, "feet"),
  25694. name: "Dicks (Tail Set)",
  25695. image: {
  25696. source: "./media/characters/koros/dicks-tail-set.svg"
  25697. }
  25698. },
  25699. dickCumming: {
  25700. height: math.unit(7.98, "feet"),
  25701. name: "Dick (Cumming)",
  25702. image: {
  25703. source: "./media/characters/koros/dick-cumming.svg"
  25704. }
  25705. },
  25706. dicksBack: {
  25707. height: math.unit(5.9, "feet"),
  25708. name: "Dicks (Back)",
  25709. image: {
  25710. source: "./media/characters/koros/dicks-back.svg"
  25711. }
  25712. },
  25713. dicksFront: {
  25714. height: math.unit(3.72, "feet"),
  25715. name: "Dicks (Front)",
  25716. image: {
  25717. source: "./media/characters/koros/dicks-front.svg"
  25718. }
  25719. },
  25720. dicksPeeking: {
  25721. height: math.unit(3.0, "feet"),
  25722. name: "Dicks (Peeking)",
  25723. image: {
  25724. source: "./media/characters/koros/dicks-peeking.svg"
  25725. }
  25726. },
  25727. eye: {
  25728. height: math.unit(1.7, "feet"),
  25729. name: "Eye",
  25730. image: {
  25731. source: "./media/characters/koros/eye.svg"
  25732. }
  25733. },
  25734. headFront: {
  25735. height: math.unit(11.69, "feet"),
  25736. name: "Head (Front)",
  25737. image: {
  25738. source: "./media/characters/koros/head-front.svg"
  25739. }
  25740. },
  25741. headSide: {
  25742. height: math.unit(14, "feet"),
  25743. name: "Head (Side)",
  25744. image: {
  25745. source: "./media/characters/koros/head-side.svg"
  25746. }
  25747. },
  25748. leg: {
  25749. height: math.unit(17, "feet"),
  25750. name: "Leg",
  25751. image: {
  25752. source: "./media/characters/koros/leg.svg"
  25753. }
  25754. },
  25755. mawSide: {
  25756. height: math.unit(12.8, "feet"),
  25757. name: "Maw (Side)",
  25758. image: {
  25759. source: "./media/characters/koros/maw-side.svg"
  25760. }
  25761. },
  25762. mawSpitting: {
  25763. height: math.unit(17, "feet"),
  25764. name: "Maw (Spitting)",
  25765. image: {
  25766. source: "./media/characters/koros/maw-spitting.svg"
  25767. }
  25768. },
  25769. slit: {
  25770. height: math.unit(2.8, "feet"),
  25771. name: "Slit",
  25772. image: {
  25773. source: "./media/characters/koros/slit.svg"
  25774. }
  25775. },
  25776. stomach: {
  25777. height: math.unit(6.8, "feet"),
  25778. capacity: math.unit(20, "people"),
  25779. name: "Stomach",
  25780. image: {
  25781. source: "./media/characters/koros/stomach.svg"
  25782. }
  25783. },
  25784. wingspanBottom: {
  25785. height: math.unit(114, "feet"),
  25786. name: "Wingspan (Bottom)",
  25787. image: {
  25788. source: "./media/characters/koros/wingspan-bottom.svg"
  25789. }
  25790. },
  25791. wingspanTop: {
  25792. height: math.unit(104, "feet"),
  25793. name: "Wingspan (Top)",
  25794. image: {
  25795. source: "./media/characters/koros/wingspan-top.svg"
  25796. }
  25797. },
  25798. },
  25799. [
  25800. {
  25801. name: "Normal",
  25802. height: math.unit(31 + 8 / 12, "feet"),
  25803. default: true
  25804. },
  25805. ]
  25806. ))
  25807. characterMakers.push(() => makeCharacter(
  25808. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25809. {
  25810. front: {
  25811. height: math.unit(18 + 5 / 12, "feet"),
  25812. weight: math.unit(3750, "kg"),
  25813. name: "Front",
  25814. image: {
  25815. source: "./media/characters/vexx/front.svg",
  25816. extra: 426 / 396,
  25817. bottom: 31.5 / 458
  25818. }
  25819. },
  25820. maw: {
  25821. height: math.unit(6, "feet"),
  25822. name: "Maw",
  25823. image: {
  25824. source: "./media/characters/vexx/maw.svg"
  25825. }
  25826. },
  25827. },
  25828. [
  25829. {
  25830. name: "Normal",
  25831. height: math.unit(18 + 5 / 12, "feet"),
  25832. default: true
  25833. },
  25834. ]
  25835. ))
  25836. characterMakers.push(() => makeCharacter(
  25837. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25838. {
  25839. front: {
  25840. height: math.unit(17 + 6 / 12, "feet"),
  25841. weight: math.unit(150, "lb"),
  25842. name: "Front",
  25843. image: {
  25844. source: "./media/characters/baadra/front.svg",
  25845. extra: 3137 / 2890,
  25846. bottom: 168.4 / 3305
  25847. }
  25848. },
  25849. back: {
  25850. height: math.unit(17 + 6 / 12, "feet"),
  25851. weight: math.unit(150, "lb"),
  25852. name: "Back",
  25853. image: {
  25854. source: "./media/characters/baadra/back.svg",
  25855. extra: 3142 / 2890,
  25856. bottom: 220 / 3371
  25857. }
  25858. },
  25859. head: {
  25860. height: math.unit(5.45, "feet"),
  25861. name: "Head",
  25862. image: {
  25863. source: "./media/characters/baadra/head.svg"
  25864. }
  25865. },
  25866. headAngry: {
  25867. height: math.unit(4.95, "feet"),
  25868. name: "Head (Angry)",
  25869. image: {
  25870. source: "./media/characters/baadra/head-angry.svg"
  25871. }
  25872. },
  25873. headOpen: {
  25874. height: math.unit(6, "feet"),
  25875. name: "Head (Open)",
  25876. image: {
  25877. source: "./media/characters/baadra/head-open.svg"
  25878. }
  25879. },
  25880. },
  25881. [
  25882. {
  25883. name: "Normal",
  25884. height: math.unit(17 + 6 / 12, "feet"),
  25885. default: true
  25886. },
  25887. ]
  25888. ))
  25889. characterMakers.push(() => makeCharacter(
  25890. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25891. {
  25892. front: {
  25893. height: math.unit(7 + 3 / 12, "feet"),
  25894. weight: math.unit(180, "lb"),
  25895. name: "Front",
  25896. image: {
  25897. source: "./media/characters/juri/front.svg",
  25898. extra: 1401 / 1237,
  25899. bottom: 18.5 / 1418
  25900. }
  25901. },
  25902. side: {
  25903. height: math.unit(7 + 3 / 12, "feet"),
  25904. weight: math.unit(180, "lb"),
  25905. name: "Side",
  25906. image: {
  25907. source: "./media/characters/juri/side.svg",
  25908. extra: 1424 / 1242,
  25909. bottom: 18.5 / 1447
  25910. }
  25911. },
  25912. sitting: {
  25913. height: math.unit(6, "feet"),
  25914. weight: math.unit(180, "lb"),
  25915. name: "Sitting",
  25916. image: {
  25917. source: "./media/characters/juri/sitting.svg",
  25918. extra: 1270 / 1143,
  25919. bottom: 100 / 1343
  25920. }
  25921. },
  25922. back: {
  25923. height: math.unit(7 + 3 / 12, "feet"),
  25924. weight: math.unit(180, "lb"),
  25925. name: "Back",
  25926. image: {
  25927. source: "./media/characters/juri/back.svg",
  25928. extra: 1377 / 1240,
  25929. bottom: 23.7 / 1405
  25930. }
  25931. },
  25932. maw: {
  25933. height: math.unit(2.8, "feet"),
  25934. name: "Maw",
  25935. image: {
  25936. source: "./media/characters/juri/maw.svg"
  25937. }
  25938. },
  25939. stomach: {
  25940. height: math.unit(0.89, "feet"),
  25941. capacity: math.unit(4, "liters"),
  25942. name: "Stomach",
  25943. image: {
  25944. source: "./media/characters/juri/stomach.svg"
  25945. }
  25946. },
  25947. },
  25948. [
  25949. {
  25950. name: "Normal",
  25951. height: math.unit(7 + 3 / 12, "feet"),
  25952. default: true
  25953. },
  25954. ]
  25955. ))
  25956. characterMakers.push(() => makeCharacter(
  25957. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25958. {
  25959. fox: {
  25960. height: math.unit(5 + 6 / 12, "feet"),
  25961. weight: math.unit(140, "lb"),
  25962. name: "Fox",
  25963. image: {
  25964. source: "./media/characters/maxene-sita/fox.svg",
  25965. extra: 146 / 138,
  25966. bottom: 2.1 / 148.19
  25967. }
  25968. },
  25969. foxLaying: {
  25970. height: math.unit(1.70, "feet"),
  25971. weight: math.unit(140, "lb"),
  25972. name: "Fox (Laying)",
  25973. image: {
  25974. source: "./media/characters/maxene-sita/fox-laying.svg",
  25975. extra: 910 / 572,
  25976. bottom: 71 / 981
  25977. }
  25978. },
  25979. kitsune: {
  25980. height: math.unit(10, "feet"),
  25981. weight: math.unit(800, "lb"),
  25982. name: "Kitsune",
  25983. image: {
  25984. source: "./media/characters/maxene-sita/kitsune.svg",
  25985. extra: 185 / 176,
  25986. bottom: 4.7 / 189.9
  25987. }
  25988. },
  25989. hellhound: {
  25990. height: math.unit(10, "feet"),
  25991. weight: math.unit(700, "lb"),
  25992. name: "Hellhound",
  25993. image: {
  25994. source: "./media/characters/maxene-sita/hellhound.svg",
  25995. extra: 1600 / 1545,
  25996. bottom: 81 / 1681
  25997. }
  25998. },
  25999. },
  26000. [
  26001. {
  26002. name: "Normal",
  26003. height: math.unit(5 + 6 / 12, "feet"),
  26004. default: true
  26005. },
  26006. ]
  26007. ))
  26008. characterMakers.push(() => makeCharacter(
  26009. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26010. {
  26011. front: {
  26012. height: math.unit(3 + 4 / 12, "feet"),
  26013. weight: math.unit(70, "lb"),
  26014. name: "Front",
  26015. image: {
  26016. source: "./media/characters/maia/front.svg",
  26017. extra: 227 / 219.5,
  26018. bottom: 40 / 267
  26019. }
  26020. },
  26021. back: {
  26022. height: math.unit(3 + 4 / 12, "feet"),
  26023. weight: math.unit(70, "lb"),
  26024. name: "Back",
  26025. image: {
  26026. source: "./media/characters/maia/back.svg",
  26027. extra: 237 / 225
  26028. }
  26029. },
  26030. },
  26031. [
  26032. {
  26033. name: "Normal",
  26034. height: math.unit(3 + 4 / 12, "feet"),
  26035. default: true
  26036. },
  26037. ]
  26038. ))
  26039. characterMakers.push(() => makeCharacter(
  26040. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26041. {
  26042. front: {
  26043. height: math.unit(5 + 10 / 12, "feet"),
  26044. weight: math.unit(197, "lb"),
  26045. name: "Front",
  26046. image: {
  26047. source: "./media/characters/jabaro/front.svg",
  26048. extra: 225 / 216,
  26049. bottom: 5.06 / 230
  26050. }
  26051. },
  26052. back: {
  26053. height: math.unit(5 + 10 / 12, "feet"),
  26054. weight: math.unit(197, "lb"),
  26055. name: "Back",
  26056. image: {
  26057. source: "./media/characters/jabaro/back.svg",
  26058. extra: 225 / 219,
  26059. bottom: 1.9 / 227
  26060. }
  26061. },
  26062. },
  26063. [
  26064. {
  26065. name: "Normal",
  26066. height: math.unit(5 + 10 / 12, "feet"),
  26067. default: true
  26068. },
  26069. ]
  26070. ))
  26071. characterMakers.push(() => makeCharacter(
  26072. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26073. {
  26074. front: {
  26075. height: math.unit(5 + 8 / 12, "feet"),
  26076. weight: math.unit(139, "lb"),
  26077. name: "Front",
  26078. image: {
  26079. source: "./media/characters/risa/front.svg",
  26080. extra: 270 / 260,
  26081. bottom: 11.2 / 282
  26082. }
  26083. },
  26084. back: {
  26085. height: math.unit(5 + 8 / 12, "feet"),
  26086. weight: math.unit(139, "lb"),
  26087. name: "Back",
  26088. image: {
  26089. source: "./media/characters/risa/back.svg",
  26090. extra: 264 / 255,
  26091. bottom: 4 / 268
  26092. }
  26093. },
  26094. },
  26095. [
  26096. {
  26097. name: "Normal",
  26098. height: math.unit(5 + 8 / 12, "feet"),
  26099. default: true
  26100. },
  26101. ]
  26102. ))
  26103. characterMakers.push(() => makeCharacter(
  26104. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26105. {
  26106. front: {
  26107. height: math.unit(2 + 11 / 12, "feet"),
  26108. weight: math.unit(30, "lb"),
  26109. name: "Front",
  26110. image: {
  26111. source: "./media/characters/weatley/front.svg",
  26112. bottom: 10.7 / 414,
  26113. extra: 403.5 / 362
  26114. }
  26115. },
  26116. back: {
  26117. height: math.unit(2 + 11 / 12, "feet"),
  26118. weight: math.unit(30, "lb"),
  26119. name: "Back",
  26120. image: {
  26121. source: "./media/characters/weatley/back.svg",
  26122. bottom: 10.7 / 414,
  26123. extra: 403.5 / 362
  26124. }
  26125. },
  26126. },
  26127. [
  26128. {
  26129. name: "Normal",
  26130. height: math.unit(2 + 11 / 12, "feet"),
  26131. default: true
  26132. },
  26133. ]
  26134. ))
  26135. characterMakers.push(() => makeCharacter(
  26136. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26137. {
  26138. front: {
  26139. height: math.unit(5 + 2 / 12, "feet"),
  26140. weight: math.unit(50, "kg"),
  26141. name: "Front",
  26142. image: {
  26143. source: "./media/characters/mercury-crescent/front.svg",
  26144. extra: 1088 / 1033,
  26145. bottom: 18.9 / 1109
  26146. }
  26147. },
  26148. },
  26149. [
  26150. {
  26151. name: "Normal",
  26152. height: math.unit(5 + 2 / 12, "feet"),
  26153. default: true
  26154. },
  26155. ]
  26156. ))
  26157. characterMakers.push(() => makeCharacter(
  26158. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26159. {
  26160. front: {
  26161. height: math.unit(2, "feet"),
  26162. weight: math.unit(15, "kg"),
  26163. name: "Front",
  26164. image: {
  26165. source: "./media/characters/diamond-jones/front.svg",
  26166. extra: 727/723,
  26167. bottom: 46/773
  26168. }
  26169. },
  26170. },
  26171. [
  26172. {
  26173. name: "Normal",
  26174. height: math.unit(2, "feet"),
  26175. default: true
  26176. },
  26177. ]
  26178. ))
  26179. characterMakers.push(() => makeCharacter(
  26180. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26181. {
  26182. front: {
  26183. height: math.unit(3, "feet"),
  26184. weight: math.unit(30, "kg"),
  26185. name: "Front",
  26186. image: {
  26187. source: "./media/characters/sweet-bit/front.svg",
  26188. extra: 675 / 567,
  26189. bottom: 27.7 / 703
  26190. }
  26191. },
  26192. },
  26193. [
  26194. {
  26195. name: "Normal",
  26196. height: math.unit(3, "feet"),
  26197. default: true
  26198. },
  26199. ]
  26200. ))
  26201. characterMakers.push(() => makeCharacter(
  26202. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26203. {
  26204. side: {
  26205. height: math.unit(9.178, "feet"),
  26206. weight: math.unit(500, "lb"),
  26207. name: "Side",
  26208. image: {
  26209. source: "./media/characters/umbrazen/side.svg",
  26210. extra: 1730 / 1473,
  26211. bottom: 34.6 / 1765
  26212. }
  26213. },
  26214. },
  26215. [
  26216. {
  26217. name: "Normal",
  26218. height: math.unit(9.178, "feet"),
  26219. default: true
  26220. },
  26221. ]
  26222. ))
  26223. characterMakers.push(() => makeCharacter(
  26224. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26225. {
  26226. front: {
  26227. height: math.unit(10, "feet"),
  26228. weight: math.unit(750, "lb"),
  26229. name: "Front",
  26230. image: {
  26231. source: "./media/characters/arlist/front.svg",
  26232. extra: 961 / 778,
  26233. bottom: 6.2 / 986
  26234. }
  26235. },
  26236. },
  26237. [
  26238. {
  26239. name: "Normal",
  26240. height: math.unit(10, "feet"),
  26241. default: true
  26242. },
  26243. ]
  26244. ))
  26245. characterMakers.push(() => makeCharacter(
  26246. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26247. {
  26248. front: {
  26249. height: math.unit(5 + 1 / 12, "feet"),
  26250. weight: math.unit(110, "lb"),
  26251. name: "Front",
  26252. image: {
  26253. source: "./media/characters/aradel/front.svg",
  26254. extra: 324 / 303,
  26255. bottom: 3.6 / 329.4
  26256. }
  26257. },
  26258. },
  26259. [
  26260. {
  26261. name: "Normal",
  26262. height: math.unit(5 + 1 / 12, "feet"),
  26263. default: true
  26264. },
  26265. ]
  26266. ))
  26267. characterMakers.push(() => makeCharacter(
  26268. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26269. {
  26270. front: {
  26271. height: math.unit(3 + 8 / 12, "feet"),
  26272. weight: math.unit(50, "lb"),
  26273. name: "Front",
  26274. image: {
  26275. source: "./media/characters/serryn/front.svg",
  26276. extra: 1792 / 1656,
  26277. bottom: 43.5 / 1840
  26278. }
  26279. },
  26280. },
  26281. [
  26282. {
  26283. name: "Normal",
  26284. height: math.unit(3 + 8 / 12, "feet"),
  26285. default: true
  26286. },
  26287. ]
  26288. ))
  26289. characterMakers.push(() => makeCharacter(
  26290. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26291. {
  26292. front: {
  26293. height: math.unit(7 + 10 / 12, "feet"),
  26294. weight: math.unit(255, "lb"),
  26295. name: "Front",
  26296. image: {
  26297. source: "./media/characters/xavier-thyme/front.svg",
  26298. extra: 3733 / 3642,
  26299. bottom: 131 / 3869
  26300. }
  26301. },
  26302. frontRaven: {
  26303. height: math.unit(7 + 10 / 12, "feet"),
  26304. weight: math.unit(255, "lb"),
  26305. name: "Front (Raven)",
  26306. image: {
  26307. source: "./media/characters/xavier-thyme/front-raven.svg",
  26308. extra: 4385 / 3642,
  26309. bottom: 131 / 4517
  26310. }
  26311. },
  26312. },
  26313. [
  26314. {
  26315. name: "Normal",
  26316. height: math.unit(7 + 10 / 12, "feet"),
  26317. default: true
  26318. },
  26319. ]
  26320. ))
  26321. characterMakers.push(() => makeCharacter(
  26322. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26323. {
  26324. front: {
  26325. height: math.unit(1.6, "m"),
  26326. weight: math.unit(50, "kg"),
  26327. name: "Front",
  26328. image: {
  26329. source: "./media/characters/kiki/front.svg",
  26330. extra: 4682 / 3610,
  26331. bottom: 115 / 4777
  26332. }
  26333. },
  26334. },
  26335. [
  26336. {
  26337. name: "Normal",
  26338. height: math.unit(1.6, "meters"),
  26339. default: true
  26340. },
  26341. ]
  26342. ))
  26343. characterMakers.push(() => makeCharacter(
  26344. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26345. {
  26346. front: {
  26347. height: math.unit(50, "m"),
  26348. weight: math.unit(500, "tonnes"),
  26349. name: "Front",
  26350. image: {
  26351. source: "./media/characters/ryoko/front.svg",
  26352. extra: 4632 / 3926,
  26353. bottom: 193 / 4823
  26354. }
  26355. },
  26356. },
  26357. [
  26358. {
  26359. name: "Normal",
  26360. height: math.unit(50, "meters"),
  26361. default: true
  26362. },
  26363. ]
  26364. ))
  26365. characterMakers.push(() => makeCharacter(
  26366. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26367. {
  26368. front: {
  26369. height: math.unit(30, "m"),
  26370. weight: math.unit(22, "tonnes"),
  26371. name: "Front",
  26372. image: {
  26373. source: "./media/characters/elio/front.svg",
  26374. extra: 4582 / 3720,
  26375. bottom: 236 / 4828
  26376. }
  26377. },
  26378. },
  26379. [
  26380. {
  26381. name: "Normal",
  26382. height: math.unit(30, "meters"),
  26383. default: true
  26384. },
  26385. ]
  26386. ))
  26387. characterMakers.push(() => makeCharacter(
  26388. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26389. {
  26390. front: {
  26391. height: math.unit(6 + 3 / 12, "feet"),
  26392. weight: math.unit(120, "lb"),
  26393. name: "Front",
  26394. image: {
  26395. source: "./media/characters/azura/front.svg",
  26396. extra: 1149 / 1135,
  26397. bottom: 45 / 1194
  26398. }
  26399. },
  26400. frontClothed: {
  26401. height: math.unit(6 + 3 / 12, "feet"),
  26402. weight: math.unit(120, "lb"),
  26403. name: "Front (Clothed)",
  26404. image: {
  26405. source: "./media/characters/azura/front-clothed.svg",
  26406. extra: 1149 / 1135,
  26407. bottom: 45 / 1194
  26408. }
  26409. },
  26410. },
  26411. [
  26412. {
  26413. name: "Normal",
  26414. height: math.unit(6 + 3 / 12, "feet"),
  26415. default: true
  26416. },
  26417. {
  26418. name: "Macro",
  26419. height: math.unit(20 + 6 / 12, "feet")
  26420. },
  26421. {
  26422. name: "Megamacro",
  26423. height: math.unit(12, "miles")
  26424. },
  26425. {
  26426. name: "Gigamacro",
  26427. height: math.unit(10000, "miles")
  26428. },
  26429. {
  26430. name: "Teramacro",
  26431. height: math.unit(900000, "miles")
  26432. },
  26433. ]
  26434. ))
  26435. characterMakers.push(() => makeCharacter(
  26436. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26437. {
  26438. front: {
  26439. height: math.unit(12, "feet"),
  26440. weight: math.unit(1, "ton"),
  26441. capacity: math.unit(660000, "gallons"),
  26442. name: "Front",
  26443. image: {
  26444. source: "./media/characters/zeus/front.svg",
  26445. extra: 5005 / 4717,
  26446. bottom: 363 / 5388
  26447. }
  26448. },
  26449. },
  26450. [
  26451. {
  26452. name: "Normal",
  26453. height: math.unit(12, "feet")
  26454. },
  26455. {
  26456. name: "Preferred Size",
  26457. height: math.unit(0.5, "miles"),
  26458. default: true
  26459. },
  26460. {
  26461. name: "Giga Horse",
  26462. height: math.unit(300, "miles")
  26463. },
  26464. {
  26465. name: "Riding Planets",
  26466. height: math.unit(30, "megameters")
  26467. },
  26468. {
  26469. name: "Cosmic Giant",
  26470. height: math.unit(3, "zettameters")
  26471. },
  26472. {
  26473. name: "Breeding God",
  26474. height: math.unit(9.92e22, "yottameters")
  26475. },
  26476. ]
  26477. ))
  26478. characterMakers.push(() => makeCharacter(
  26479. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26480. {
  26481. side: {
  26482. height: math.unit(9, "feet"),
  26483. weight: math.unit(1500, "kg"),
  26484. name: "Side",
  26485. image: {
  26486. source: "./media/characters/fang/side.svg",
  26487. extra: 924 / 866,
  26488. bottom: 47.5 / 972.3
  26489. }
  26490. },
  26491. },
  26492. [
  26493. {
  26494. name: "Normal",
  26495. height: math.unit(9, "feet"),
  26496. default: true
  26497. },
  26498. {
  26499. name: "Macro",
  26500. height: math.unit(75 + 6 / 12, "feet")
  26501. },
  26502. {
  26503. name: "Teramacro",
  26504. height: math.unit(50000, "miles")
  26505. },
  26506. ]
  26507. ))
  26508. characterMakers.push(() => makeCharacter(
  26509. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26510. {
  26511. front: {
  26512. height: math.unit(10, "feet"),
  26513. weight: math.unit(2, "tons"),
  26514. name: "Front",
  26515. image: {
  26516. source: "./media/characters/rekhit/front.svg",
  26517. extra: 2796 / 2590,
  26518. bottom: 225 / 3022
  26519. }
  26520. },
  26521. },
  26522. [
  26523. {
  26524. name: "Normal",
  26525. height: math.unit(10, "feet"),
  26526. default: true
  26527. },
  26528. {
  26529. name: "Macro",
  26530. height: math.unit(500, "feet")
  26531. },
  26532. ]
  26533. ))
  26534. characterMakers.push(() => makeCharacter(
  26535. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26536. {
  26537. front: {
  26538. height: math.unit(7 + 6.451 / 12, "feet"),
  26539. weight: math.unit(310, "lb"),
  26540. name: "Front",
  26541. image: {
  26542. source: "./media/characters/dahlia-verrick/front.svg",
  26543. extra: 1488 / 1365,
  26544. bottom: 6.2 / 1495
  26545. }
  26546. },
  26547. back: {
  26548. height: math.unit(7 + 6.451 / 12, "feet"),
  26549. weight: math.unit(310, "lb"),
  26550. name: "Back",
  26551. image: {
  26552. source: "./media/characters/dahlia-verrick/back.svg",
  26553. extra: 1472 / 1351,
  26554. bottom: 5.28 / 1477
  26555. }
  26556. },
  26557. frontBusiness: {
  26558. height: math.unit(7 + 6.451 / 12, "feet"),
  26559. weight: math.unit(200, "lb"),
  26560. name: "Front (Business)",
  26561. image: {
  26562. source: "./media/characters/dahlia-verrick/front-business.svg",
  26563. extra: 1478 / 1381,
  26564. bottom: 5.5 / 1484
  26565. }
  26566. },
  26567. frontCasual: {
  26568. height: math.unit(7 + 6.451 / 12, "feet"),
  26569. weight: math.unit(200, "lb"),
  26570. name: "Front (Casual)",
  26571. image: {
  26572. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26573. extra: 1478 / 1381,
  26574. bottom: 5.5 / 1484
  26575. }
  26576. },
  26577. },
  26578. [
  26579. {
  26580. name: "Travel-Sized",
  26581. height: math.unit(7.45, "inches")
  26582. },
  26583. {
  26584. name: "Normal",
  26585. height: math.unit(7 + 6.451 / 12, "feet"),
  26586. default: true
  26587. },
  26588. {
  26589. name: "Hitting the Town",
  26590. height: math.unit(37 + 8 / 12, "feet")
  26591. },
  26592. {
  26593. name: "Stomp in the Suburbs",
  26594. height: math.unit(964 + 9.728 / 12, "feet")
  26595. },
  26596. {
  26597. name: "Sit on the City",
  26598. height: math.unit(61747 + 10.592 / 12, "feet")
  26599. },
  26600. {
  26601. name: "Glomp the Globe",
  26602. height: math.unit(252919327 + 4.832 / 12, "feet")
  26603. },
  26604. ]
  26605. ))
  26606. characterMakers.push(() => makeCharacter(
  26607. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26608. {
  26609. front: {
  26610. height: math.unit(6 + 4 / 12, "feet"),
  26611. weight: math.unit(320, "lb"),
  26612. name: "Front",
  26613. image: {
  26614. source: "./media/characters/balina-mahigan/front.svg",
  26615. extra: 447 / 428,
  26616. bottom: 18 / 466
  26617. }
  26618. },
  26619. back: {
  26620. height: math.unit(6 + 4 / 12, "feet"),
  26621. weight: math.unit(320, "lb"),
  26622. name: "Back",
  26623. image: {
  26624. source: "./media/characters/balina-mahigan/back.svg",
  26625. extra: 445 / 428,
  26626. bottom: 4.07 / 448
  26627. }
  26628. },
  26629. arm: {
  26630. height: math.unit(1.88, "feet"),
  26631. name: "Arm",
  26632. image: {
  26633. source: "./media/characters/balina-mahigan/arm.svg"
  26634. }
  26635. },
  26636. backPort: {
  26637. height: math.unit(0.685, "feet"),
  26638. name: "Back Port",
  26639. image: {
  26640. source: "./media/characters/balina-mahigan/back-port.svg"
  26641. }
  26642. },
  26643. hoofpaw: {
  26644. height: math.unit(1.41, "feet"),
  26645. name: "Hoofpaw",
  26646. image: {
  26647. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26648. }
  26649. },
  26650. leftHandBack: {
  26651. height: math.unit(0.938, "feet"),
  26652. name: "Left Hand (Back)",
  26653. image: {
  26654. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26655. }
  26656. },
  26657. leftHandFront: {
  26658. height: math.unit(0.938, "feet"),
  26659. name: "Left Hand (Front)",
  26660. image: {
  26661. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26662. }
  26663. },
  26664. rightHandBack: {
  26665. height: math.unit(0.95, "feet"),
  26666. name: "Right Hand (Back)",
  26667. image: {
  26668. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26669. }
  26670. },
  26671. rightHandFront: {
  26672. height: math.unit(0.95, "feet"),
  26673. name: "Right Hand (Front)",
  26674. image: {
  26675. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26676. }
  26677. },
  26678. },
  26679. [
  26680. {
  26681. name: "Normal",
  26682. height: math.unit(6 + 4 / 12, "feet"),
  26683. default: true
  26684. },
  26685. ]
  26686. ))
  26687. characterMakers.push(() => makeCharacter(
  26688. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26689. {
  26690. front: {
  26691. height: math.unit(6, "feet"),
  26692. weight: math.unit(320, "lb"),
  26693. name: "Front",
  26694. image: {
  26695. source: "./media/characters/balina-mejeri/front.svg",
  26696. extra: 517 / 488,
  26697. bottom: 44.2 / 561
  26698. }
  26699. },
  26700. },
  26701. [
  26702. {
  26703. name: "Normal",
  26704. height: math.unit(6 + 4 / 12, "feet")
  26705. },
  26706. {
  26707. name: "Business",
  26708. height: math.unit(155, "feet"),
  26709. default: true
  26710. },
  26711. ]
  26712. ))
  26713. characterMakers.push(() => makeCharacter(
  26714. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26715. {
  26716. kneeling: {
  26717. height: math.unit(6 + 4 / 12, "feet"),
  26718. weight: math.unit(300 * 20, "lb"),
  26719. name: "Kneeling",
  26720. image: {
  26721. source: "./media/characters/balbarian/kneeling.svg",
  26722. extra: 922 / 862,
  26723. bottom: 42.4 / 965
  26724. }
  26725. },
  26726. },
  26727. [
  26728. {
  26729. name: "Normal",
  26730. height: math.unit(6 + 4 / 12, "feet")
  26731. },
  26732. {
  26733. name: "Treasured",
  26734. height: math.unit(18 + 9 / 12, "feet"),
  26735. default: true
  26736. },
  26737. {
  26738. name: "Macro",
  26739. height: math.unit(900, "feet")
  26740. },
  26741. ]
  26742. ))
  26743. characterMakers.push(() => makeCharacter(
  26744. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26745. {
  26746. front: {
  26747. height: math.unit(6 + 4 / 12, "feet"),
  26748. weight: math.unit(325, "lb"),
  26749. name: "Front",
  26750. image: {
  26751. source: "./media/characters/balina-amarini/front.svg",
  26752. extra: 415 / 403,
  26753. bottom: 19 / 433.4
  26754. }
  26755. },
  26756. back: {
  26757. height: math.unit(6 + 4 / 12, "feet"),
  26758. weight: math.unit(325, "lb"),
  26759. name: "Back",
  26760. image: {
  26761. source: "./media/characters/balina-amarini/back.svg",
  26762. extra: 415 / 403,
  26763. bottom: 13.5 / 432
  26764. }
  26765. },
  26766. overdrive: {
  26767. height: math.unit(6 + 4 / 12, "feet"),
  26768. weight: math.unit(400, "lb"),
  26769. name: "Overdrive",
  26770. image: {
  26771. source: "./media/characters/balina-amarini/overdrive.svg",
  26772. extra: 269 / 259,
  26773. bottom: 12 / 282
  26774. }
  26775. },
  26776. },
  26777. [
  26778. {
  26779. name: "Boom",
  26780. height: math.unit(9 + 10 / 12, "feet"),
  26781. default: true
  26782. },
  26783. {
  26784. name: "Macro",
  26785. height: math.unit(280, "feet")
  26786. },
  26787. ]
  26788. ))
  26789. characterMakers.push(() => makeCharacter(
  26790. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26791. {
  26792. goddess: {
  26793. height: math.unit(600, "feet"),
  26794. weight: math.unit(2000000, "tons"),
  26795. name: "Goddess",
  26796. image: {
  26797. source: "./media/characters/lady-kubwa/goddess.svg",
  26798. extra: 1240.5 / 1223,
  26799. bottom: 22 / 1263
  26800. }
  26801. },
  26802. goddesser: {
  26803. height: math.unit(900, "feet"),
  26804. weight: math.unit(20000000, "lb"),
  26805. name: "Goddess-er",
  26806. image: {
  26807. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26808. extra: 899 / 888,
  26809. bottom: 12.6 / 912
  26810. }
  26811. },
  26812. },
  26813. [
  26814. {
  26815. name: "Macro",
  26816. height: math.unit(600, "feet"),
  26817. default: true
  26818. },
  26819. {
  26820. name: "Megamacro",
  26821. height: math.unit(250, "miles")
  26822. },
  26823. ]
  26824. ))
  26825. characterMakers.push(() => makeCharacter(
  26826. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26827. {
  26828. front: {
  26829. height: math.unit(7 + 7 / 12, "feet"),
  26830. weight: math.unit(250, "lb"),
  26831. name: "Front",
  26832. image: {
  26833. source: "./media/characters/tala-grovehorn/front.svg",
  26834. extra: 2636 / 2525,
  26835. bottom: 147 / 2781
  26836. }
  26837. },
  26838. back: {
  26839. height: math.unit(7 + 7 / 12, "feet"),
  26840. weight: math.unit(250, "lb"),
  26841. name: "Back",
  26842. image: {
  26843. source: "./media/characters/tala-grovehorn/back.svg",
  26844. extra: 2635 / 2539,
  26845. bottom: 100 / 2732.8
  26846. }
  26847. },
  26848. mouth: {
  26849. height: math.unit(1.15, "feet"),
  26850. name: "Mouth",
  26851. image: {
  26852. source: "./media/characters/tala-grovehorn/mouth.svg"
  26853. }
  26854. },
  26855. dick: {
  26856. height: math.unit(2.36, "feet"),
  26857. name: "Dick",
  26858. image: {
  26859. source: "./media/characters/tala-grovehorn/dick.svg"
  26860. }
  26861. },
  26862. slit: {
  26863. height: math.unit(0.61, "feet"),
  26864. name: "Slit",
  26865. image: {
  26866. source: "./media/characters/tala-grovehorn/slit.svg"
  26867. }
  26868. },
  26869. },
  26870. [
  26871. ]
  26872. ))
  26873. characterMakers.push(() => makeCharacter(
  26874. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26875. {
  26876. front: {
  26877. height: math.unit(7 + 7 / 12, "feet"),
  26878. weight: math.unit(225, "lb"),
  26879. name: "Front",
  26880. image: {
  26881. source: "./media/characters/epona/front.svg",
  26882. extra: 2445 / 2290,
  26883. bottom: 251 / 2696
  26884. }
  26885. },
  26886. back: {
  26887. height: math.unit(7 + 7 / 12, "feet"),
  26888. weight: math.unit(225, "lb"),
  26889. name: "Back",
  26890. image: {
  26891. source: "./media/characters/epona/back.svg",
  26892. extra: 2546 / 2408,
  26893. bottom: 44 / 2589
  26894. }
  26895. },
  26896. genitals: {
  26897. height: math.unit(1.5, "feet"),
  26898. name: "Genitals",
  26899. image: {
  26900. source: "./media/characters/epona/genitals.svg"
  26901. }
  26902. },
  26903. },
  26904. [
  26905. {
  26906. name: "Normal",
  26907. height: math.unit(7 + 7 / 12, "feet"),
  26908. default: true
  26909. },
  26910. ]
  26911. ))
  26912. characterMakers.push(() => makeCharacter(
  26913. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26914. {
  26915. front: {
  26916. height: math.unit(7, "feet"),
  26917. weight: math.unit(518, "lb"),
  26918. name: "Front",
  26919. image: {
  26920. source: "./media/characters/avia-bloodbourn/front.svg",
  26921. extra: 1466 / 1350,
  26922. bottom: 65 / 1527
  26923. }
  26924. },
  26925. },
  26926. [
  26927. ]
  26928. ))
  26929. characterMakers.push(() => makeCharacter(
  26930. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26931. {
  26932. front: {
  26933. height: math.unit(9.35, "feet"),
  26934. weight: math.unit(600, "lb"),
  26935. name: "Front",
  26936. image: {
  26937. source: "./media/characters/amera/front.svg",
  26938. extra: 891 / 818,
  26939. bottom: 30 / 922.7
  26940. }
  26941. },
  26942. back: {
  26943. height: math.unit(9.35, "feet"),
  26944. weight: math.unit(600, "lb"),
  26945. name: "Back",
  26946. image: {
  26947. source: "./media/characters/amera/back.svg",
  26948. extra: 876 / 824,
  26949. bottom: 6.8 / 884
  26950. }
  26951. },
  26952. dick: {
  26953. height: math.unit(2.14, "feet"),
  26954. name: "Dick",
  26955. image: {
  26956. source: "./media/characters/amera/dick.svg"
  26957. }
  26958. },
  26959. },
  26960. [
  26961. {
  26962. name: "Normal",
  26963. height: math.unit(9.35, "feet"),
  26964. default: true
  26965. },
  26966. ]
  26967. ))
  26968. characterMakers.push(() => makeCharacter(
  26969. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26970. {
  26971. kneeling: {
  26972. height: math.unit(3 + 4 / 12, "feet"),
  26973. weight: math.unit(90, "lb"),
  26974. name: "Kneeling",
  26975. image: {
  26976. source: "./media/characters/rosewen/kneeling.svg",
  26977. extra: 1835 / 1571,
  26978. bottom: 27.7 / 1862
  26979. }
  26980. },
  26981. },
  26982. [
  26983. {
  26984. name: "Normal",
  26985. height: math.unit(3 + 4 / 12, "feet"),
  26986. default: true
  26987. },
  26988. ]
  26989. ))
  26990. characterMakers.push(() => makeCharacter(
  26991. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26992. {
  26993. front: {
  26994. height: math.unit(5 + 10 / 12, "feet"),
  26995. weight: math.unit(200, "lb"),
  26996. name: "Front",
  26997. image: {
  26998. source: "./media/characters/sabah/front.svg",
  26999. extra: 849 / 763,
  27000. bottom: 33.9 / 881
  27001. }
  27002. },
  27003. },
  27004. [
  27005. {
  27006. name: "Normal",
  27007. height: math.unit(5 + 10 / 12, "feet"),
  27008. default: true
  27009. },
  27010. ]
  27011. ))
  27012. characterMakers.push(() => makeCharacter(
  27013. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27014. {
  27015. front: {
  27016. height: math.unit(3 + 5 / 12, "feet"),
  27017. weight: math.unit(40, "kg"),
  27018. name: "Front",
  27019. image: {
  27020. source: "./media/characters/purple-flame/front.svg",
  27021. extra: 1577 / 1412,
  27022. bottom: 97 / 1694
  27023. }
  27024. },
  27025. frontDressed: {
  27026. height: math.unit(3 + 5 / 12, "feet"),
  27027. weight: math.unit(40, "kg"),
  27028. name: "Front (Dressed)",
  27029. image: {
  27030. source: "./media/characters/purple-flame/front-dressed.svg",
  27031. extra: 1577 / 1412,
  27032. bottom: 97 / 1694
  27033. }
  27034. },
  27035. headphones: {
  27036. height: math.unit(0.85, "feet"),
  27037. name: "Headphones",
  27038. image: {
  27039. source: "./media/characters/purple-flame/headphones.svg"
  27040. }
  27041. },
  27042. },
  27043. [
  27044. {
  27045. name: "Really Small",
  27046. height: math.unit(5, "cm")
  27047. },
  27048. {
  27049. name: "Micro",
  27050. height: math.unit(1 + 5 / 12, "feet")
  27051. },
  27052. {
  27053. name: "Normal",
  27054. height: math.unit(3 + 5 / 12, "feet"),
  27055. default: true
  27056. },
  27057. {
  27058. name: "Minimacro",
  27059. height: math.unit(125, "feet")
  27060. },
  27061. {
  27062. name: "Macro",
  27063. height: math.unit(0.5, "miles")
  27064. },
  27065. {
  27066. name: "Megamacro",
  27067. height: math.unit(50, "miles")
  27068. },
  27069. {
  27070. name: "Gigantic",
  27071. height: math.unit(750, "miles")
  27072. },
  27073. {
  27074. name: "Planetary",
  27075. height: math.unit(15000, "miles")
  27076. },
  27077. ]
  27078. ))
  27079. characterMakers.push(() => makeCharacter(
  27080. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27081. {
  27082. front: {
  27083. height: math.unit(14, "feet"),
  27084. weight: math.unit(959, "lb"),
  27085. name: "Front",
  27086. image: {
  27087. source: "./media/characters/arsenal/front.svg",
  27088. extra: 2357 / 2157,
  27089. bottom: 93 / 2458
  27090. }
  27091. },
  27092. },
  27093. [
  27094. {
  27095. name: "Normal",
  27096. height: math.unit(14, "feet"),
  27097. default: true
  27098. },
  27099. ]
  27100. ))
  27101. characterMakers.push(() => makeCharacter(
  27102. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27103. {
  27104. front: {
  27105. height: math.unit(6, "feet"),
  27106. weight: math.unit(150, "lb"),
  27107. name: "Front",
  27108. image: {
  27109. source: "./media/characters/adira/front.svg",
  27110. extra: 1078 / 1029,
  27111. bottom: 87 / 1166
  27112. }
  27113. },
  27114. },
  27115. [
  27116. {
  27117. name: "Micro",
  27118. height: math.unit(4, "inches"),
  27119. default: true
  27120. },
  27121. {
  27122. name: "Macro",
  27123. height: math.unit(50, "feet")
  27124. },
  27125. ]
  27126. ))
  27127. characterMakers.push(() => makeCharacter(
  27128. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27129. {
  27130. front: {
  27131. height: math.unit(16, "feet"),
  27132. weight: math.unit(1000, "lb"),
  27133. name: "Front",
  27134. image: {
  27135. source: "./media/characters/grim/front.svg",
  27136. extra: 622 / 614,
  27137. bottom: 18.1 / 642
  27138. }
  27139. },
  27140. back: {
  27141. height: math.unit(16, "feet"),
  27142. weight: math.unit(1000, "lb"),
  27143. name: "Back",
  27144. image: {
  27145. source: "./media/characters/grim/back.svg",
  27146. extra: 610.6 / 602,
  27147. bottom: 40.8 / 652
  27148. }
  27149. },
  27150. hunched: {
  27151. height: math.unit(9.75, "feet"),
  27152. weight: math.unit(1000, "lb"),
  27153. name: "Hunched",
  27154. image: {
  27155. source: "./media/characters/grim/hunched.svg",
  27156. extra: 304 / 297,
  27157. bottom: 35.4 / 394
  27158. }
  27159. },
  27160. },
  27161. [
  27162. {
  27163. name: "Normal",
  27164. height: math.unit(16, "feet"),
  27165. default: true
  27166. },
  27167. ]
  27168. ))
  27169. characterMakers.push(() => makeCharacter(
  27170. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27171. {
  27172. front: {
  27173. height: math.unit(2.3, "meters"),
  27174. weight: math.unit(300, "lb"),
  27175. name: "Front",
  27176. image: {
  27177. source: "./media/characters/sinja/front-sfw.svg",
  27178. extra: 1393 / 1294,
  27179. bottom: 70 / 1463
  27180. }
  27181. },
  27182. frontNsfw: {
  27183. height: math.unit(2.3, "meters"),
  27184. weight: math.unit(300, "lb"),
  27185. name: "Front (NSFW)",
  27186. image: {
  27187. source: "./media/characters/sinja/front-nsfw.svg",
  27188. extra: 1393 / 1294,
  27189. bottom: 70 / 1463
  27190. }
  27191. },
  27192. back: {
  27193. height: math.unit(2.3, "meters"),
  27194. weight: math.unit(300, "lb"),
  27195. name: "Back",
  27196. image: {
  27197. source: "./media/characters/sinja/back.svg",
  27198. extra: 1393 / 1294,
  27199. bottom: 70 / 1463
  27200. }
  27201. },
  27202. head: {
  27203. height: math.unit(1.771, "feet"),
  27204. name: "Head",
  27205. image: {
  27206. source: "./media/characters/sinja/head.svg"
  27207. }
  27208. },
  27209. slit: {
  27210. height: math.unit(0.8, "feet"),
  27211. name: "Slit",
  27212. image: {
  27213. source: "./media/characters/sinja/slit.svg"
  27214. }
  27215. },
  27216. },
  27217. [
  27218. {
  27219. name: "Normal",
  27220. height: math.unit(2.3, "meters")
  27221. },
  27222. {
  27223. name: "Macro",
  27224. height: math.unit(91, "meters"),
  27225. default: true
  27226. },
  27227. {
  27228. name: "Megamacro",
  27229. height: math.unit(91440, "meters")
  27230. },
  27231. {
  27232. name: "Gigamacro",
  27233. height: math.unit(60960000, "meters")
  27234. },
  27235. {
  27236. name: "Teramacro",
  27237. height: math.unit(9144000000, "meters")
  27238. },
  27239. ]
  27240. ))
  27241. characterMakers.push(() => makeCharacter(
  27242. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27243. {
  27244. front: {
  27245. height: math.unit(1.7, "meters"),
  27246. weight: math.unit(130, "lb"),
  27247. name: "Front",
  27248. image: {
  27249. source: "./media/characters/kyu/front.svg",
  27250. extra: 415 / 395,
  27251. bottom: 5 / 420
  27252. }
  27253. },
  27254. head: {
  27255. height: math.unit(1.75, "feet"),
  27256. name: "Head",
  27257. image: {
  27258. source: "./media/characters/kyu/head.svg"
  27259. }
  27260. },
  27261. foot: {
  27262. height: math.unit(0.81, "feet"),
  27263. name: "Foot",
  27264. image: {
  27265. source: "./media/characters/kyu/foot.svg"
  27266. }
  27267. },
  27268. },
  27269. [
  27270. {
  27271. name: "Normal",
  27272. height: math.unit(1.7, "meters")
  27273. },
  27274. {
  27275. name: "Macro",
  27276. height: math.unit(131, "feet"),
  27277. default: true
  27278. },
  27279. {
  27280. name: "Megamacro",
  27281. height: math.unit(91440, "meters")
  27282. },
  27283. {
  27284. name: "Gigamacro",
  27285. height: math.unit(60960000, "meters")
  27286. },
  27287. {
  27288. name: "Teramacro",
  27289. height: math.unit(9144000000, "meters")
  27290. },
  27291. ]
  27292. ))
  27293. characterMakers.push(() => makeCharacter(
  27294. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27295. {
  27296. front: {
  27297. height: math.unit(7 + 1 / 12, "feet"),
  27298. weight: math.unit(250, "lb"),
  27299. name: "Front",
  27300. image: {
  27301. source: "./media/characters/joey/front.svg",
  27302. extra: 1791 / 1537,
  27303. bottom: 28 / 1816
  27304. }
  27305. },
  27306. },
  27307. [
  27308. {
  27309. name: "Micro",
  27310. height: math.unit(3, "inches")
  27311. },
  27312. {
  27313. name: "Normal",
  27314. height: math.unit(7 + 1 / 12, "feet"),
  27315. default: true
  27316. },
  27317. ]
  27318. ))
  27319. characterMakers.push(() => makeCharacter(
  27320. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27321. {
  27322. front: {
  27323. height: math.unit(165, "cm"),
  27324. weight: math.unit(140, "lb"),
  27325. name: "Front",
  27326. image: {
  27327. source: "./media/characters/sam-evans/front.svg",
  27328. extra: 3417 / 3230,
  27329. bottom: 41.3 / 3417
  27330. }
  27331. },
  27332. frontSixTails: {
  27333. height: math.unit(165, "cm"),
  27334. weight: math.unit(140, "lb"),
  27335. name: "Front-six-tails",
  27336. image: {
  27337. source: "./media/characters/sam-evans/front-six-tails.svg",
  27338. extra: 3417 / 3230,
  27339. bottom: 41.3 / 3417
  27340. }
  27341. },
  27342. back: {
  27343. height: math.unit(165, "cm"),
  27344. weight: math.unit(140, "lb"),
  27345. name: "Back",
  27346. image: {
  27347. source: "./media/characters/sam-evans/back.svg",
  27348. extra: 3227 / 3032,
  27349. bottom: 6.8 / 3234
  27350. }
  27351. },
  27352. face: {
  27353. height: math.unit(0.68, "feet"),
  27354. name: "Face",
  27355. image: {
  27356. source: "./media/characters/sam-evans/face.svg"
  27357. }
  27358. },
  27359. },
  27360. [
  27361. {
  27362. name: "Normal",
  27363. height: math.unit(165, "cm"),
  27364. default: true
  27365. },
  27366. {
  27367. name: "Macro",
  27368. height: math.unit(100, "meters")
  27369. },
  27370. {
  27371. name: "Macro+",
  27372. height: math.unit(800, "meters")
  27373. },
  27374. {
  27375. name: "Macro++",
  27376. height: math.unit(3, "km")
  27377. },
  27378. {
  27379. name: "Macro+++",
  27380. height: math.unit(30, "km")
  27381. },
  27382. ]
  27383. ))
  27384. characterMakers.push(() => makeCharacter(
  27385. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27386. {
  27387. front: {
  27388. height: math.unit(10, "feet"),
  27389. weight: math.unit(750, "lb"),
  27390. name: "Front",
  27391. image: {
  27392. source: "./media/characters/juliet-a/front.svg",
  27393. extra: 1766 / 1720,
  27394. bottom: 43 / 1809
  27395. }
  27396. },
  27397. back: {
  27398. height: math.unit(10, "feet"),
  27399. weight: math.unit(750, "lb"),
  27400. name: "Back",
  27401. image: {
  27402. source: "./media/characters/juliet-a/back.svg",
  27403. extra: 1781 / 1734,
  27404. bottom: 35 / 1810,
  27405. }
  27406. },
  27407. },
  27408. [
  27409. {
  27410. name: "Normal",
  27411. height: math.unit(10, "feet"),
  27412. default: true
  27413. },
  27414. {
  27415. name: "Dragon Form",
  27416. height: math.unit(250, "feet")
  27417. },
  27418. {
  27419. name: "Macro",
  27420. height: math.unit(1000, "feet")
  27421. },
  27422. {
  27423. name: "Megamacro",
  27424. height: math.unit(10000, "feet")
  27425. }
  27426. ]
  27427. ))
  27428. characterMakers.push(() => makeCharacter(
  27429. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27430. {
  27431. regular: {
  27432. height: math.unit(7 + 3 / 12, "feet"),
  27433. weight: math.unit(260, "lb"),
  27434. name: "Regular",
  27435. image: {
  27436. source: "./media/characters/wild/regular.svg",
  27437. extra: 97.45 / 92,
  27438. bottom: 6.8 / 104.3
  27439. }
  27440. },
  27441. biggums: {
  27442. height: math.unit(8 + 6 / 12, "feet"),
  27443. weight: math.unit(425, "lb"),
  27444. name: "Biggums",
  27445. image: {
  27446. source: "./media/characters/wild/biggums.svg",
  27447. extra: 97.45 / 92,
  27448. bottom: 7.5 / 132.34
  27449. }
  27450. },
  27451. mawRegular: {
  27452. height: math.unit(1.24, "feet"),
  27453. name: "Maw (Regular)",
  27454. image: {
  27455. source: "./media/characters/wild/maw.svg"
  27456. }
  27457. },
  27458. mawBiggums: {
  27459. height: math.unit(1.47, "feet"),
  27460. name: "Maw (Biggums)",
  27461. image: {
  27462. source: "./media/characters/wild/maw.svg"
  27463. }
  27464. },
  27465. },
  27466. [
  27467. {
  27468. name: "Normal",
  27469. height: math.unit(7 + 3 / 12, "feet"),
  27470. default: true
  27471. },
  27472. ]
  27473. ))
  27474. characterMakers.push(() => makeCharacter(
  27475. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27476. {
  27477. front: {
  27478. height: math.unit(2.5, "meters"),
  27479. weight: math.unit(200, "kg"),
  27480. name: "Front",
  27481. image: {
  27482. source: "./media/characters/vidar/front.svg",
  27483. extra: 2994 / 2795,
  27484. bottom: 56 / 3061
  27485. }
  27486. },
  27487. back: {
  27488. height: math.unit(2.5, "meters"),
  27489. weight: math.unit(200, "kg"),
  27490. name: "Back",
  27491. image: {
  27492. source: "./media/characters/vidar/back.svg",
  27493. extra: 3131 / 2928,
  27494. bottom: 13.5 / 3141.5
  27495. }
  27496. },
  27497. feral: {
  27498. height: math.unit(2.5, "meters"),
  27499. weight: math.unit(2000, "kg"),
  27500. name: "Feral",
  27501. image: {
  27502. source: "./media/characters/vidar/feral.svg",
  27503. extra: 2790 / 1765,
  27504. bottom: 6 / 2796
  27505. }
  27506. },
  27507. },
  27508. [
  27509. {
  27510. name: "Normal",
  27511. height: math.unit(2.5, "meters"),
  27512. default: true
  27513. },
  27514. {
  27515. name: "Macro",
  27516. height: math.unit(100, "meters")
  27517. },
  27518. ]
  27519. ))
  27520. characterMakers.push(() => makeCharacter(
  27521. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27522. {
  27523. front: {
  27524. height: math.unit(5 + 9 / 12, "feet"),
  27525. weight: math.unit(120, "lb"),
  27526. name: "Front",
  27527. image: {
  27528. source: "./media/characters/ash/front.svg",
  27529. extra: 2189 / 1961,
  27530. bottom: 5.2 / 2194
  27531. }
  27532. },
  27533. },
  27534. [
  27535. {
  27536. name: "Normal",
  27537. height: math.unit(5 + 9 / 12, "feet"),
  27538. default: true
  27539. },
  27540. ]
  27541. ))
  27542. characterMakers.push(() => makeCharacter(
  27543. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27544. {
  27545. front: {
  27546. height: math.unit(9, "feet"),
  27547. weight: math.unit(10000, "lb"),
  27548. name: "Front",
  27549. image: {
  27550. source: "./media/characters/gygabite/front.svg",
  27551. bottom: 31.7 / 537.8,
  27552. extra: 505 / 370
  27553. }
  27554. },
  27555. },
  27556. [
  27557. {
  27558. name: "Normal",
  27559. height: math.unit(9, "feet"),
  27560. default: true
  27561. },
  27562. ]
  27563. ))
  27564. characterMakers.push(() => makeCharacter(
  27565. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27566. {
  27567. front: {
  27568. height: math.unit(12, "feet"),
  27569. weight: math.unit(35000, "lb"),
  27570. name: "Front",
  27571. image: {
  27572. source: "./media/characters/p0tat0/front.svg",
  27573. extra: 1065 / 921,
  27574. bottom: 55.7 / 1121.25
  27575. }
  27576. },
  27577. },
  27578. [
  27579. {
  27580. name: "Normal",
  27581. height: math.unit(12, "feet"),
  27582. default: true
  27583. },
  27584. ]
  27585. ))
  27586. characterMakers.push(() => makeCharacter(
  27587. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27588. {
  27589. side: {
  27590. height: math.unit(6.5, "feet"),
  27591. weight: math.unit(800, "lb"),
  27592. name: "Side",
  27593. image: {
  27594. source: "./media/characters/dusk/side.svg",
  27595. extra: 615 / 373,
  27596. bottom: 53 / 664
  27597. }
  27598. },
  27599. sitting: {
  27600. height: math.unit(7, "feet"),
  27601. weight: math.unit(800, "lb"),
  27602. name: "Sitting",
  27603. image: {
  27604. source: "./media/characters/dusk/sitting.svg",
  27605. extra: 753 / 425,
  27606. bottom: 33 / 774
  27607. }
  27608. },
  27609. head: {
  27610. height: math.unit(6.1, "feet"),
  27611. name: "Head",
  27612. image: {
  27613. source: "./media/characters/dusk/head.svg"
  27614. }
  27615. },
  27616. },
  27617. [
  27618. {
  27619. name: "Normal",
  27620. height: math.unit(7, "feet"),
  27621. default: true
  27622. },
  27623. ]
  27624. ))
  27625. characterMakers.push(() => makeCharacter(
  27626. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27627. {
  27628. front: {
  27629. height: math.unit(15, "feet"),
  27630. weight: math.unit(7000, "lb"),
  27631. name: "Front",
  27632. image: {
  27633. source: "./media/characters/jay-direwolf/front.svg",
  27634. extra: 1810 / 1732,
  27635. bottom: 66 / 1892
  27636. }
  27637. },
  27638. },
  27639. [
  27640. {
  27641. name: "Normal",
  27642. height: math.unit(15, "feet"),
  27643. default: true
  27644. },
  27645. ]
  27646. ))
  27647. characterMakers.push(() => makeCharacter(
  27648. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27649. {
  27650. front: {
  27651. height: math.unit(4 + 9 / 12, "feet"),
  27652. weight: math.unit(130, "lb"),
  27653. name: "Front",
  27654. image: {
  27655. source: "./media/characters/anchovie/front.svg",
  27656. extra: 382 / 350,
  27657. bottom: 25 / 409
  27658. }
  27659. },
  27660. back: {
  27661. height: math.unit(4 + 9 / 12, "feet"),
  27662. weight: math.unit(130, "lb"),
  27663. name: "Back",
  27664. image: {
  27665. source: "./media/characters/anchovie/back.svg",
  27666. extra: 385 / 352,
  27667. bottom: 16.6 / 402
  27668. }
  27669. },
  27670. frontDressed: {
  27671. height: math.unit(4 + 9 / 12, "feet"),
  27672. weight: math.unit(130, "lb"),
  27673. name: "Front (Dressed)",
  27674. image: {
  27675. source: "./media/characters/anchovie/front-dressed.svg",
  27676. extra: 382 / 350,
  27677. bottom: 25 / 409
  27678. }
  27679. },
  27680. backDressed: {
  27681. height: math.unit(4 + 9 / 12, "feet"),
  27682. weight: math.unit(130, "lb"),
  27683. name: "Back (Dressed)",
  27684. image: {
  27685. source: "./media/characters/anchovie/back-dressed.svg",
  27686. extra: 385 / 352,
  27687. bottom: 16.6 / 402
  27688. }
  27689. },
  27690. },
  27691. [
  27692. {
  27693. name: "Micro",
  27694. height: math.unit(6.4, "inches")
  27695. },
  27696. {
  27697. name: "Normal",
  27698. height: math.unit(4 + 9 / 12, "feet"),
  27699. default: true
  27700. },
  27701. ]
  27702. ))
  27703. characterMakers.push(() => makeCharacter(
  27704. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27705. {
  27706. front: {
  27707. height: math.unit(2, "meters"),
  27708. weight: math.unit(180, "lb"),
  27709. name: "Front",
  27710. image: {
  27711. source: "./media/characters/acidrenamon/front.svg",
  27712. extra: 987 / 890,
  27713. bottom: 22.8 / 1009
  27714. }
  27715. },
  27716. back: {
  27717. height: math.unit(2, "meters"),
  27718. weight: math.unit(180, "lb"),
  27719. name: "Back",
  27720. image: {
  27721. source: "./media/characters/acidrenamon/back.svg",
  27722. extra: 983 / 891,
  27723. bottom: 8.4 / 992
  27724. }
  27725. },
  27726. head: {
  27727. height: math.unit(1.92, "feet"),
  27728. name: "Head",
  27729. image: {
  27730. source: "./media/characters/acidrenamon/head.svg"
  27731. }
  27732. },
  27733. rump: {
  27734. height: math.unit(1.72, "feet"),
  27735. name: "Rump",
  27736. image: {
  27737. source: "./media/characters/acidrenamon/rump.svg"
  27738. }
  27739. },
  27740. tail: {
  27741. height: math.unit(4.2, "feet"),
  27742. name: "Tail",
  27743. image: {
  27744. source: "./media/characters/acidrenamon/tail.svg"
  27745. }
  27746. },
  27747. },
  27748. [
  27749. {
  27750. name: "Normal",
  27751. height: math.unit(2, "meters"),
  27752. default: true
  27753. },
  27754. {
  27755. name: "Minimacro",
  27756. height: math.unit(7, "meters")
  27757. },
  27758. {
  27759. name: "Macro",
  27760. height: math.unit(200, "meters")
  27761. },
  27762. {
  27763. name: "Gigamacro",
  27764. height: math.unit(0.2, "earths")
  27765. },
  27766. ]
  27767. ))
  27768. characterMakers.push(() => makeCharacter(
  27769. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27770. {
  27771. front: {
  27772. height: math.unit(152, "feet"),
  27773. name: "Front",
  27774. image: {
  27775. source: "./media/characters/kenzie-lee/front.svg",
  27776. extra: 1869/1774,
  27777. bottom: 128/1997
  27778. }
  27779. },
  27780. side: {
  27781. height: math.unit(86, "feet"),
  27782. name: "Side",
  27783. image: {
  27784. source: "./media/characters/kenzie-lee/side.svg",
  27785. extra: 930/815,
  27786. bottom: 177/1107
  27787. }
  27788. },
  27789. paw: {
  27790. height: math.unit(15, "feet"),
  27791. name: "Paw",
  27792. image: {
  27793. source: "./media/characters/kenzie-lee/paw.svg"
  27794. }
  27795. },
  27796. },
  27797. [
  27798. {
  27799. name: "Micro",
  27800. height: math.unit(1.5, "inches")
  27801. },
  27802. {
  27803. name: "Normal",
  27804. height: math.unit(152, "feet"),
  27805. default: true
  27806. },
  27807. {
  27808. name: "Megamacro",
  27809. height: math.unit(7, "miles")
  27810. },
  27811. {
  27812. name: "Gigamacro",
  27813. height: math.unit(8000, "miles")
  27814. },
  27815. ]
  27816. ))
  27817. characterMakers.push(() => makeCharacter(
  27818. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27819. {
  27820. side: {
  27821. height: math.unit(6, "feet"),
  27822. weight: math.unit(150, "lb"),
  27823. name: "Side",
  27824. image: {
  27825. source: "./media/characters/withers/side.svg",
  27826. extra: 1830 / 1728,
  27827. bottom: 96 / 1927
  27828. }
  27829. },
  27830. front: {
  27831. height: math.unit(6, "feet"),
  27832. weight: math.unit(150, "lb"),
  27833. name: "Front",
  27834. image: {
  27835. source: "./media/characters/withers/front.svg",
  27836. extra: 1514 / 1438,
  27837. bottom: 118 / 1632
  27838. }
  27839. },
  27840. },
  27841. [
  27842. {
  27843. name: "Macro",
  27844. height: math.unit(168, "feet"),
  27845. default: true
  27846. },
  27847. {
  27848. name: "Megamacro",
  27849. height: math.unit(15, "miles")
  27850. }
  27851. ]
  27852. ))
  27853. characterMakers.push(() => makeCharacter(
  27854. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27855. {
  27856. front: {
  27857. height: math.unit(6 + 7 / 12, "feet"),
  27858. weight: math.unit(250, "lb"),
  27859. name: "Front",
  27860. image: {
  27861. source: "./media/characters/nemoskii/front.svg",
  27862. extra: 2270 / 1734,
  27863. bottom: 86 / 2354
  27864. }
  27865. },
  27866. back: {
  27867. height: math.unit(6 + 7 / 12, "feet"),
  27868. weight: math.unit(250, "lb"),
  27869. name: "Back",
  27870. image: {
  27871. source: "./media/characters/nemoskii/back.svg",
  27872. extra: 1845 / 1788,
  27873. bottom: 10.5 / 1852
  27874. }
  27875. },
  27876. head: {
  27877. height: math.unit(1.31, "feet"),
  27878. name: "Head",
  27879. image: {
  27880. source: "./media/characters/nemoskii/head.svg"
  27881. }
  27882. },
  27883. },
  27884. [
  27885. {
  27886. name: "Micro",
  27887. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27888. },
  27889. {
  27890. name: "Normal",
  27891. height: math.unit(6 + 7 / 12, "feet"),
  27892. default: true
  27893. },
  27894. {
  27895. name: "Macro",
  27896. height: math.unit((6 + 7 / 12) * 150, "feet")
  27897. },
  27898. {
  27899. name: "Macro+",
  27900. height: math.unit((6 + 7 / 12) * 500, "feet")
  27901. },
  27902. {
  27903. name: "Megamacro",
  27904. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27905. },
  27906. ]
  27907. ))
  27908. characterMakers.push(() => makeCharacter(
  27909. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27910. {
  27911. front: {
  27912. height: math.unit(1, "mile"),
  27913. weight: math.unit(265261.9, "lb"),
  27914. name: "Front",
  27915. image: {
  27916. source: "./media/characters/shui/front.svg",
  27917. extra: 1633 / 1564,
  27918. bottom: 91.5 / 1726
  27919. }
  27920. },
  27921. },
  27922. [
  27923. {
  27924. name: "Macro",
  27925. height: math.unit(1, "mile"),
  27926. default: true
  27927. },
  27928. ]
  27929. ))
  27930. characterMakers.push(() => makeCharacter(
  27931. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27932. {
  27933. front: {
  27934. height: math.unit(12 + 6 / 12, "feet"),
  27935. weight: math.unit(1342, "lb"),
  27936. name: "Front",
  27937. image: {
  27938. source: "./media/characters/arokh-takakura/front.svg",
  27939. extra: 1089 / 1043,
  27940. bottom: 77.4 / 1176.7
  27941. }
  27942. },
  27943. back: {
  27944. height: math.unit(12 + 6 / 12, "feet"),
  27945. weight: math.unit(1342, "lb"),
  27946. name: "Back",
  27947. image: {
  27948. source: "./media/characters/arokh-takakura/back.svg",
  27949. extra: 1046 / 1019,
  27950. bottom: 102 / 1150
  27951. }
  27952. },
  27953. },
  27954. [
  27955. {
  27956. name: "Big",
  27957. height: math.unit(12 + 6 / 12, "feet"),
  27958. default: true
  27959. },
  27960. ]
  27961. ))
  27962. characterMakers.push(() => makeCharacter(
  27963. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27964. {
  27965. front: {
  27966. height: math.unit(5 + 6 / 12, "feet"),
  27967. weight: math.unit(150, "lb"),
  27968. name: "Front",
  27969. image: {
  27970. source: "./media/characters/theo/front.svg",
  27971. extra: 1184 / 1131,
  27972. bottom: 7.4 / 1191
  27973. }
  27974. },
  27975. },
  27976. [
  27977. {
  27978. name: "Micro",
  27979. height: math.unit(5, "inches")
  27980. },
  27981. {
  27982. name: "Normal",
  27983. height: math.unit(5 + 6 / 12, "feet"),
  27984. default: true
  27985. },
  27986. ]
  27987. ))
  27988. characterMakers.push(() => makeCharacter(
  27989. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27990. {
  27991. front: {
  27992. height: math.unit(5 + 9 / 12, "feet"),
  27993. weight: math.unit(130, "lb"),
  27994. name: "Front",
  27995. image: {
  27996. source: "./media/characters/cecelia-swift/front.svg",
  27997. extra: 502 / 484,
  27998. bottom: 23 / 523
  27999. }
  28000. },
  28001. back: {
  28002. height: math.unit(5 + 9 / 12, "feet"),
  28003. weight: math.unit(130, "lb"),
  28004. name: "Back",
  28005. image: {
  28006. source: "./media/characters/cecelia-swift/back.svg",
  28007. extra: 499 / 485,
  28008. bottom: 12 / 511
  28009. }
  28010. },
  28011. head: {
  28012. height: math.unit(0.90, "feet"),
  28013. name: "Head",
  28014. image: {
  28015. source: "./media/characters/cecelia-swift/head.svg"
  28016. }
  28017. },
  28018. rump: {
  28019. height: math.unit(1.75, "feet"),
  28020. name: "Rump",
  28021. image: {
  28022. source: "./media/characters/cecelia-swift/rump.svg"
  28023. }
  28024. },
  28025. },
  28026. [
  28027. {
  28028. name: "Normal",
  28029. height: math.unit(5 + 9 / 12, "feet"),
  28030. default: true
  28031. },
  28032. {
  28033. name: "Big",
  28034. height: math.unit(50, "feet")
  28035. },
  28036. {
  28037. name: "Macro",
  28038. height: math.unit(100, "feet")
  28039. },
  28040. {
  28041. name: "Macro+",
  28042. height: math.unit(500, "feet")
  28043. },
  28044. {
  28045. name: "Macro++",
  28046. height: math.unit(1000, "feet")
  28047. },
  28048. ]
  28049. ))
  28050. characterMakers.push(() => makeCharacter(
  28051. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28052. {
  28053. front: {
  28054. height: math.unit(6, "feet"),
  28055. weight: math.unit(150, "lb"),
  28056. name: "Front",
  28057. image: {
  28058. source: "./media/characters/kaunan/front.svg",
  28059. extra: 2890 / 2523,
  28060. bottom: 49 / 2939
  28061. }
  28062. },
  28063. },
  28064. [
  28065. {
  28066. name: "Macro",
  28067. height: math.unit(150, "feet"),
  28068. default: true
  28069. },
  28070. ]
  28071. ))
  28072. characterMakers.push(() => makeCharacter(
  28073. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28074. {
  28075. front: {
  28076. height: math.unit(175, "cm"),
  28077. weight: math.unit(60, "kg"),
  28078. name: "Front",
  28079. image: {
  28080. source: "./media/characters/fei/front.svg",
  28081. extra: 1873/1723,
  28082. bottom: 53/1926
  28083. }
  28084. },
  28085. },
  28086. [
  28087. {
  28088. name: "Mortal",
  28089. height: math.unit(175, "cm")
  28090. },
  28091. {
  28092. name: "Normal",
  28093. height: math.unit(3500, "m"),
  28094. default: true
  28095. },
  28096. {
  28097. name: "Stroll",
  28098. height: math.unit(17.5, "km")
  28099. },
  28100. {
  28101. name: "Showoff",
  28102. height: math.unit(175, "km")
  28103. },
  28104. ]
  28105. ))
  28106. characterMakers.push(() => makeCharacter(
  28107. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28108. {
  28109. front: {
  28110. height: math.unit(7, "feet"),
  28111. weight: math.unit(1000, "kg"),
  28112. name: "Front",
  28113. image: {
  28114. source: "./media/characters/edrax/front.svg",
  28115. extra: 2838 / 2550,
  28116. bottom: 130 / 2968
  28117. }
  28118. },
  28119. },
  28120. [
  28121. {
  28122. name: "Small",
  28123. height: math.unit(7, "feet")
  28124. },
  28125. {
  28126. name: "Normal",
  28127. height: math.unit(1500, "meters")
  28128. },
  28129. {
  28130. name: "Mega",
  28131. height: math.unit(12000000, "km"),
  28132. default: true
  28133. },
  28134. {
  28135. name: "Megamacro",
  28136. height: math.unit(10600000, "lightyears")
  28137. },
  28138. {
  28139. name: "Hypermacro",
  28140. height: math.unit(256, "yottameters")
  28141. },
  28142. ]
  28143. ))
  28144. characterMakers.push(() => makeCharacter(
  28145. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28146. {
  28147. front: {
  28148. height: math.unit(10, "feet"),
  28149. weight: math.unit(750, "lb"),
  28150. name: "Front",
  28151. image: {
  28152. source: "./media/characters/clove/front.svg",
  28153. extra: 1918/1751,
  28154. bottom: 52/1970
  28155. }
  28156. },
  28157. back: {
  28158. height: math.unit(10, "feet"),
  28159. weight: math.unit(750, "lb"),
  28160. name: "Back",
  28161. image: {
  28162. source: "./media/characters/clove/back.svg",
  28163. extra: 1912/1747,
  28164. bottom: 50/1962
  28165. }
  28166. },
  28167. },
  28168. [
  28169. {
  28170. name: "Normal",
  28171. height: math.unit(10, "feet"),
  28172. default: true
  28173. },
  28174. ]
  28175. ))
  28176. characterMakers.push(() => makeCharacter(
  28177. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28178. {
  28179. front: {
  28180. height: math.unit(4, "feet"),
  28181. weight: math.unit(50, "lb"),
  28182. name: "Front",
  28183. image: {
  28184. source: "./media/characters/alex-rabbit/front.svg",
  28185. extra: 507 / 458,
  28186. bottom: 18.5 / 527
  28187. }
  28188. },
  28189. back: {
  28190. height: math.unit(4, "feet"),
  28191. weight: math.unit(50, "lb"),
  28192. name: "Back",
  28193. image: {
  28194. source: "./media/characters/alex-rabbit/back.svg",
  28195. extra: 502 / 460,
  28196. bottom: 18.9 / 521
  28197. }
  28198. },
  28199. },
  28200. [
  28201. {
  28202. name: "Normal",
  28203. height: math.unit(4, "feet"),
  28204. default: true
  28205. },
  28206. ]
  28207. ))
  28208. characterMakers.push(() => makeCharacter(
  28209. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28210. {
  28211. front: {
  28212. height: math.unit(1 + 3 / 12, "feet"),
  28213. weight: math.unit(80, "lb"),
  28214. name: "Front",
  28215. image: {
  28216. source: "./media/characters/zander-rose/front.svg",
  28217. extra: 916 / 797,
  28218. bottom: 17 / 933
  28219. }
  28220. },
  28221. back: {
  28222. height: math.unit(1 + 3 / 12, "feet"),
  28223. weight: math.unit(80, "lb"),
  28224. name: "Back",
  28225. image: {
  28226. source: "./media/characters/zander-rose/back.svg",
  28227. extra: 903 / 779,
  28228. bottom: 31 / 934
  28229. }
  28230. },
  28231. },
  28232. [
  28233. {
  28234. name: "Normal",
  28235. height: math.unit(1 + 3 / 12, "feet"),
  28236. default: true
  28237. },
  28238. ]
  28239. ))
  28240. characterMakers.push(() => makeCharacter(
  28241. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28242. {
  28243. anthro: {
  28244. height: math.unit(6, "feet"),
  28245. weight: math.unit(150, "lb"),
  28246. name: "Anthro",
  28247. image: {
  28248. source: "./media/characters/razz/anthro.svg",
  28249. extra: 1437 / 1343,
  28250. bottom: 48 / 1485
  28251. }
  28252. },
  28253. feral: {
  28254. height: math.unit(6, "feet"),
  28255. weight: math.unit(150, "lb"),
  28256. name: "Feral",
  28257. image: {
  28258. source: "./media/characters/razz/feral.svg",
  28259. extra: 2569 / 1385,
  28260. bottom: 95 / 2664
  28261. }
  28262. },
  28263. },
  28264. [
  28265. {
  28266. name: "Normal",
  28267. height: math.unit(6, "feet"),
  28268. default: true
  28269. },
  28270. ]
  28271. ))
  28272. characterMakers.push(() => makeCharacter(
  28273. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28274. {
  28275. front: {
  28276. height: math.unit(9 + 4 / 12, "feet"),
  28277. weight: math.unit(500, "lb"),
  28278. name: "Front",
  28279. image: {
  28280. source: "./media/characters/morrigan/front.svg",
  28281. extra: 2707 / 2579,
  28282. bottom: 156 / 2863
  28283. }
  28284. },
  28285. },
  28286. [
  28287. {
  28288. name: "Normal",
  28289. height: math.unit(9 + 4 / 12, "feet"),
  28290. default: true
  28291. },
  28292. ]
  28293. ))
  28294. characterMakers.push(() => makeCharacter(
  28295. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28296. {
  28297. front: {
  28298. height: math.unit(5, "stories"),
  28299. weight: math.unit(4000, "lb"),
  28300. name: "Front",
  28301. image: {
  28302. source: "./media/characters/jenene/front.svg",
  28303. extra: 1780 / 1710,
  28304. bottom: 57 / 1837
  28305. }
  28306. },
  28307. },
  28308. [
  28309. {
  28310. name: "Normal",
  28311. height: math.unit(5, "stories"),
  28312. default: true
  28313. },
  28314. ]
  28315. ))
  28316. characterMakers.push(() => makeCharacter(
  28317. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28318. {
  28319. taurSfw: {
  28320. height: math.unit(10, "meters"),
  28321. weight: math.unit(17500, "kg"),
  28322. name: "Taur",
  28323. image: {
  28324. source: "./media/characters/faey/taur-sfw.svg",
  28325. extra: 1200 / 968,
  28326. bottom: 41 / 1241
  28327. }
  28328. },
  28329. chestmaw: {
  28330. height: math.unit(2.01, "meters"),
  28331. name: "Chestmaw",
  28332. image: {
  28333. source: "./media/characters/faey/chestmaw.svg"
  28334. }
  28335. },
  28336. foot: {
  28337. height: math.unit(2.43, "meters"),
  28338. name: "Foot",
  28339. image: {
  28340. source: "./media/characters/faey/foot.svg"
  28341. }
  28342. },
  28343. jaws: {
  28344. height: math.unit(1.66, "meters"),
  28345. name: "Jaws",
  28346. image: {
  28347. source: "./media/characters/faey/jaws.svg"
  28348. }
  28349. },
  28350. tongues: {
  28351. height: math.unit(2.01, "meters"),
  28352. name: "Tongues",
  28353. image: {
  28354. source: "./media/characters/faey/tongues.svg"
  28355. }
  28356. },
  28357. },
  28358. [
  28359. {
  28360. name: "Small",
  28361. height: math.unit(10, "meters"),
  28362. default: true
  28363. },
  28364. {
  28365. name: "Big",
  28366. height: math.unit(500000, "km")
  28367. },
  28368. ]
  28369. ))
  28370. characterMakers.push(() => makeCharacter(
  28371. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28372. {
  28373. front: {
  28374. height: math.unit(7, "feet"),
  28375. weight: math.unit(275, "lb"),
  28376. name: "Front",
  28377. image: {
  28378. source: "./media/characters/roku/front.svg",
  28379. extra: 903 / 878,
  28380. bottom: 37 / 940
  28381. }
  28382. },
  28383. },
  28384. [
  28385. {
  28386. name: "Normal",
  28387. height: math.unit(7, "feet"),
  28388. default: true
  28389. },
  28390. {
  28391. name: "Macro",
  28392. height: math.unit(500, "feet")
  28393. },
  28394. {
  28395. name: "Megamacro",
  28396. height: math.unit(200, "miles")
  28397. },
  28398. ]
  28399. ))
  28400. characterMakers.push(() => makeCharacter(
  28401. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28402. {
  28403. front: {
  28404. height: math.unit(6 + 2 / 12, "feet"),
  28405. weight: math.unit(150, "lb"),
  28406. name: "Front",
  28407. image: {
  28408. source: "./media/characters/lira/front.svg",
  28409. extra: 1727 / 1605,
  28410. bottom: 26 / 1753
  28411. }
  28412. },
  28413. back: {
  28414. height: math.unit(6 + 2 / 12, "feet"),
  28415. weight: math.unit(150, "lb"),
  28416. name: "Back",
  28417. image: {
  28418. source: "./media/characters/lira/back.svg",
  28419. extra: 1713/1621,
  28420. bottom: 20/1733
  28421. }
  28422. },
  28423. hand: {
  28424. height: math.unit(0.75, "feet"),
  28425. name: "Hand",
  28426. image: {
  28427. source: "./media/characters/lira/hand.svg"
  28428. }
  28429. },
  28430. maw: {
  28431. height: math.unit(0.65, "feet"),
  28432. name: "Maw",
  28433. image: {
  28434. source: "./media/characters/lira/maw.svg"
  28435. }
  28436. },
  28437. pawDigi: {
  28438. height: math.unit(1.6, "feet"),
  28439. name: "Paw Digi",
  28440. image: {
  28441. source: "./media/characters/lira/paw-digi.svg"
  28442. }
  28443. },
  28444. pawPlanti: {
  28445. height: math.unit(1.4, "feet"),
  28446. name: "Paw Planti",
  28447. image: {
  28448. source: "./media/characters/lira/paw-planti.svg"
  28449. }
  28450. },
  28451. },
  28452. [
  28453. {
  28454. name: "Normal",
  28455. height: math.unit(6 + 2 / 12, "feet"),
  28456. default: true
  28457. },
  28458. {
  28459. name: "Macro",
  28460. height: math.unit(100, "feet")
  28461. },
  28462. {
  28463. name: "Macro²",
  28464. height: math.unit(1600, "feet")
  28465. },
  28466. {
  28467. name: "Planetary",
  28468. height: math.unit(20, "earths")
  28469. },
  28470. ]
  28471. ))
  28472. characterMakers.push(() => makeCharacter(
  28473. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28474. {
  28475. front: {
  28476. height: math.unit(6, "feet"),
  28477. weight: math.unit(150, "lb"),
  28478. name: "Front",
  28479. image: {
  28480. source: "./media/characters/hadjet/front.svg",
  28481. extra: 1480 / 1346,
  28482. bottom: 26 / 1506
  28483. }
  28484. },
  28485. frontNsfw: {
  28486. height: math.unit(6, "feet"),
  28487. weight: math.unit(150, "lb"),
  28488. name: "Front (NSFW)",
  28489. image: {
  28490. source: "./media/characters/hadjet/front-nsfw.svg",
  28491. extra: 1440 / 1358,
  28492. bottom: 52 / 1492
  28493. }
  28494. },
  28495. },
  28496. [
  28497. {
  28498. name: "Macro",
  28499. height: math.unit(10, "stories"),
  28500. default: true
  28501. },
  28502. {
  28503. name: "Megamacro",
  28504. height: math.unit(1.5, "miles")
  28505. },
  28506. {
  28507. name: "Megamacro+",
  28508. height: math.unit(5, "miles")
  28509. },
  28510. ]
  28511. ))
  28512. characterMakers.push(() => makeCharacter(
  28513. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28514. {
  28515. side: {
  28516. height: math.unit(106, "feet"),
  28517. weight: math.unit(500, "tonnes"),
  28518. name: "Side",
  28519. image: {
  28520. source: "./media/characters/kodran/side.svg",
  28521. extra: 553 / 480,
  28522. bottom: 33 / 586
  28523. }
  28524. },
  28525. front: {
  28526. height: math.unit(132, "feet"),
  28527. weight: math.unit(500, "tonnes"),
  28528. name: "Front",
  28529. image: {
  28530. source: "./media/characters/kodran/front.svg",
  28531. extra: 667 / 643,
  28532. bottom: 42 / 709
  28533. }
  28534. },
  28535. flying: {
  28536. height: math.unit(350, "feet"),
  28537. weight: math.unit(500, "tonnes"),
  28538. name: "Flying",
  28539. image: {
  28540. source: "./media/characters/kodran/flying.svg"
  28541. }
  28542. },
  28543. foot: {
  28544. height: math.unit(33, "feet"),
  28545. name: "Foot",
  28546. image: {
  28547. source: "./media/characters/kodran/foot.svg"
  28548. }
  28549. },
  28550. footFront: {
  28551. height: math.unit(19, "feet"),
  28552. name: "Foot (Front)",
  28553. image: {
  28554. source: "./media/characters/kodran/foot-front.svg",
  28555. extra: 261 / 261,
  28556. bottom: 91 / 352
  28557. }
  28558. },
  28559. headFront: {
  28560. height: math.unit(53, "feet"),
  28561. name: "Head (Front)",
  28562. image: {
  28563. source: "./media/characters/kodran/head-front.svg"
  28564. }
  28565. },
  28566. headSide: {
  28567. height: math.unit(65, "feet"),
  28568. name: "Head (Side)",
  28569. image: {
  28570. source: "./media/characters/kodran/head-side.svg"
  28571. }
  28572. },
  28573. throat: {
  28574. height: math.unit(79, "feet"),
  28575. name: "Throat",
  28576. image: {
  28577. source: "./media/characters/kodran/throat.svg"
  28578. }
  28579. },
  28580. },
  28581. [
  28582. {
  28583. name: "Large",
  28584. height: math.unit(106, "feet"),
  28585. default: true
  28586. },
  28587. ]
  28588. ))
  28589. characterMakers.push(() => makeCharacter(
  28590. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28591. {
  28592. side: {
  28593. height: math.unit(11, "feet"),
  28594. weight: math.unit(150, "lb"),
  28595. name: "Side",
  28596. image: {
  28597. source: "./media/characters/pyxaron/side.svg",
  28598. extra: 305 / 195,
  28599. bottom: 17 / 322
  28600. }
  28601. },
  28602. },
  28603. [
  28604. {
  28605. name: "Normal",
  28606. height: math.unit(11, "feet"),
  28607. default: true
  28608. },
  28609. ]
  28610. ))
  28611. characterMakers.push(() => makeCharacter(
  28612. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28613. {
  28614. front: {
  28615. height: math.unit(6, "feet"),
  28616. weight: math.unit(150, "lb"),
  28617. name: "Front",
  28618. image: {
  28619. source: "./media/characters/meep/front.svg",
  28620. extra: 88 / 80,
  28621. bottom: 6 / 94
  28622. }
  28623. },
  28624. },
  28625. [
  28626. {
  28627. name: "Fun Sized",
  28628. height: math.unit(2, "inches"),
  28629. default: true
  28630. },
  28631. {
  28632. name: "Friend Sized",
  28633. height: math.unit(8, "inches")
  28634. },
  28635. ]
  28636. ))
  28637. characterMakers.push(() => makeCharacter(
  28638. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28639. {
  28640. front: {
  28641. height: math.unit(15, "feet"),
  28642. weight: math.unit(2500, "lb"),
  28643. name: "Front",
  28644. image: {
  28645. source: "./media/characters/holly-rabbit/front.svg",
  28646. extra: 1433 / 1233,
  28647. bottom: 125 / 1558
  28648. }
  28649. },
  28650. dick: {
  28651. height: math.unit(4.6, "feet"),
  28652. name: "Dick",
  28653. image: {
  28654. source: "./media/characters/holly-rabbit/dick.svg"
  28655. }
  28656. },
  28657. },
  28658. [
  28659. {
  28660. name: "Normal",
  28661. height: math.unit(15, "feet"),
  28662. default: true
  28663. },
  28664. {
  28665. name: "Macro",
  28666. height: math.unit(250, "feet")
  28667. },
  28668. {
  28669. name: "Macro+",
  28670. height: math.unit(2500, "feet")
  28671. },
  28672. ]
  28673. ))
  28674. characterMakers.push(() => makeCharacter(
  28675. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28676. {
  28677. front: {
  28678. height: math.unit(3.02, "meters"),
  28679. weight: math.unit(500, "kg"),
  28680. name: "Front",
  28681. image: {
  28682. source: "./media/characters/drena/front.svg",
  28683. extra: 282 / 243,
  28684. bottom: 8 / 290
  28685. }
  28686. },
  28687. side: {
  28688. height: math.unit(3.02, "meters"),
  28689. weight: math.unit(500, "kg"),
  28690. name: "Side",
  28691. image: {
  28692. source: "./media/characters/drena/side.svg",
  28693. extra: 280 / 245,
  28694. bottom: 10 / 290
  28695. }
  28696. },
  28697. back: {
  28698. height: math.unit(3.02, "meters"),
  28699. weight: math.unit(500, "kg"),
  28700. name: "Back",
  28701. image: {
  28702. source: "./media/characters/drena/back.svg",
  28703. extra: 278 / 243,
  28704. bottom: 2 / 280
  28705. }
  28706. },
  28707. foot: {
  28708. height: math.unit(0.75, "meters"),
  28709. name: "Foot",
  28710. image: {
  28711. source: "./media/characters/drena/foot.svg"
  28712. }
  28713. },
  28714. maw: {
  28715. height: math.unit(0.82, "meters"),
  28716. name: "Maw",
  28717. image: {
  28718. source: "./media/characters/drena/maw.svg"
  28719. }
  28720. },
  28721. rump: {
  28722. height: math.unit(0.93, "meters"),
  28723. name: "Rump",
  28724. image: {
  28725. source: "./media/characters/drena/rump.svg"
  28726. }
  28727. },
  28728. },
  28729. [
  28730. {
  28731. name: "Normal",
  28732. height: math.unit(3.02, "meters"),
  28733. default: true
  28734. },
  28735. ]
  28736. ))
  28737. characterMakers.push(() => makeCharacter(
  28738. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28739. {
  28740. front: {
  28741. height: math.unit(6 + 4 / 12, "feet"),
  28742. weight: math.unit(250, "lb"),
  28743. name: "Front",
  28744. image: {
  28745. source: "./media/characters/remmyzilla/front.svg",
  28746. extra: 4033 / 3588,
  28747. bottom: 123 / 4156
  28748. }
  28749. },
  28750. back: {
  28751. height: math.unit(6 + 4 / 12, "feet"),
  28752. weight: math.unit(250, "lb"),
  28753. name: "Back",
  28754. image: {
  28755. source: "./media/characters/remmyzilla/back.svg",
  28756. extra: 2687 / 2555,
  28757. bottom: 48 / 2735
  28758. }
  28759. },
  28760. paw: {
  28761. height: math.unit(1.73, "feet"),
  28762. name: "Paw",
  28763. image: {
  28764. source: "./media/characters/remmyzilla/paw.svg"
  28765. }
  28766. },
  28767. maw: {
  28768. height: math.unit(1.73, "feet"),
  28769. name: "Maw",
  28770. image: {
  28771. source: "./media/characters/remmyzilla/maw.svg"
  28772. }
  28773. },
  28774. },
  28775. [
  28776. {
  28777. name: "Normal",
  28778. height: math.unit(6 + 4 / 12, "feet")
  28779. },
  28780. {
  28781. name: "Minimacro",
  28782. height: math.unit(12 + 8 / 12, "feet")
  28783. },
  28784. {
  28785. name: "Normal",
  28786. height: math.unit(640, "feet"),
  28787. default: true
  28788. },
  28789. {
  28790. name: "Megamacro",
  28791. height: math.unit(6400, "feet")
  28792. },
  28793. {
  28794. name: "Gigamacro",
  28795. height: math.unit(64000, "miles")
  28796. },
  28797. ]
  28798. ))
  28799. characterMakers.push(() => makeCharacter(
  28800. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28801. {
  28802. front: {
  28803. height: math.unit(2.5, "meters"),
  28804. weight: math.unit(300, "lb"),
  28805. name: "Front",
  28806. image: {
  28807. source: "./media/characters/lawrence/front.svg",
  28808. extra: 357 / 335,
  28809. bottom: 30 / 387
  28810. }
  28811. },
  28812. back: {
  28813. height: math.unit(2.5, "meters"),
  28814. weight: math.unit(300, "lb"),
  28815. name: "Back",
  28816. image: {
  28817. source: "./media/characters/lawrence/back.svg",
  28818. extra: 357 / 338,
  28819. bottom: 16 / 373
  28820. }
  28821. },
  28822. head: {
  28823. height: math.unit(0.9, "meter"),
  28824. name: "Head",
  28825. image: {
  28826. source: "./media/characters/lawrence/head.svg"
  28827. }
  28828. },
  28829. maw: {
  28830. height: math.unit(0.7, "meter"),
  28831. name: "Maw",
  28832. image: {
  28833. source: "./media/characters/lawrence/maw.svg"
  28834. }
  28835. },
  28836. footBottom: {
  28837. height: math.unit(0.5, "meter"),
  28838. name: "Foot (Bottom)",
  28839. image: {
  28840. source: "./media/characters/lawrence/foot-bottom.svg"
  28841. }
  28842. },
  28843. footTop: {
  28844. height: math.unit(0.5, "meter"),
  28845. name: "Foot (Top)",
  28846. image: {
  28847. source: "./media/characters/lawrence/foot-top.svg"
  28848. }
  28849. },
  28850. },
  28851. [
  28852. {
  28853. name: "Normal",
  28854. height: math.unit(2.5, "meters"),
  28855. default: true
  28856. },
  28857. {
  28858. name: "Macro",
  28859. height: math.unit(95, "meters")
  28860. },
  28861. {
  28862. name: "Megamacro",
  28863. height: math.unit(150, "km")
  28864. },
  28865. ]
  28866. ))
  28867. characterMakers.push(() => makeCharacter(
  28868. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28869. {
  28870. front: {
  28871. height: math.unit(4.2, "meters"),
  28872. name: "Front",
  28873. image: {
  28874. source: "./media/characters/sydney/front.svg",
  28875. extra: 1323 / 1277,
  28876. bottom: 111 / 1434
  28877. }
  28878. },
  28879. },
  28880. [
  28881. {
  28882. name: "Normal",
  28883. height: math.unit(4.2, "meters"),
  28884. default: true
  28885. },
  28886. ]
  28887. ))
  28888. characterMakers.push(() => makeCharacter(
  28889. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28890. {
  28891. back: {
  28892. height: math.unit(201, "feet"),
  28893. name: "Back",
  28894. image: {
  28895. source: "./media/characters/jessica/back.svg",
  28896. extra: 273 / 259,
  28897. bottom: 7 / 280
  28898. }
  28899. },
  28900. },
  28901. [
  28902. {
  28903. name: "Normal",
  28904. height: math.unit(201, "feet"),
  28905. default: true
  28906. },
  28907. {
  28908. name: "Megamacro",
  28909. height: math.unit(8, "miles")
  28910. },
  28911. ]
  28912. ))
  28913. characterMakers.push(() => makeCharacter(
  28914. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28915. {
  28916. side: {
  28917. height: math.unit(320, "cm"),
  28918. name: "Side",
  28919. image: {
  28920. source: "./media/characters/victoria/side.svg",
  28921. extra: 778 / 346,
  28922. bottom: 56 / 834
  28923. }
  28924. },
  28925. maw: {
  28926. height: math.unit(5.9, "feet"),
  28927. name: "Maw",
  28928. image: {
  28929. source: "./media/characters/victoria/maw.svg"
  28930. }
  28931. },
  28932. },
  28933. [
  28934. {
  28935. name: "Normal",
  28936. height: math.unit(320, "cm"),
  28937. default: true
  28938. },
  28939. ]
  28940. ))
  28941. characterMakers.push(() => makeCharacter(
  28942. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28943. {
  28944. front: {
  28945. height: math.unit(5 + 6 / 12, "feet"),
  28946. name: "Front",
  28947. image: {
  28948. source: "./media/characters/cat/front.svg",
  28949. extra: 1449/1295,
  28950. bottom: 34/1483
  28951. }
  28952. },
  28953. back: {
  28954. height: math.unit(5 + 6 / 12, "feet"),
  28955. name: "Back",
  28956. image: {
  28957. source: "./media/characters/cat/back.svg",
  28958. extra: 1466/1301,
  28959. bottom: 19/1485
  28960. }
  28961. },
  28962. taur: {
  28963. height: math.unit(7, "feet"),
  28964. name: "Taur",
  28965. image: {
  28966. source: "./media/characters/cat/taur.svg",
  28967. extra: 1389/1233,
  28968. bottom: 83/1472
  28969. }
  28970. },
  28971. lucarioFront: {
  28972. height: math.unit(4, "feet"),
  28973. name: "Lucario (Front)",
  28974. image: {
  28975. source: "./media/characters/cat/lucario-front.svg",
  28976. extra: 1149/1019,
  28977. bottom: 84/1233
  28978. }
  28979. },
  28980. lucarioBack: {
  28981. height: math.unit(4, "feet"),
  28982. name: "Lucario (Back)",
  28983. image: {
  28984. source: "./media/characters/cat/lucario-back.svg",
  28985. extra: 1190/1059,
  28986. bottom: 33/1223
  28987. }
  28988. },
  28989. megaLucario: {
  28990. height: math.unit(4, "feet"),
  28991. name: "Mega Lucario",
  28992. image: {
  28993. source: "./media/characters/cat/mega-lucario.svg",
  28994. extra: 1515 / 1319,
  28995. bottom: 63 / 1578
  28996. }
  28997. },
  28998. nickit: {
  28999. height: math.unit(2, "feet"),
  29000. name: "Nickit",
  29001. image: {
  29002. source: "./media/characters/cat/nickit.svg",
  29003. extra: 1980 / 1585,
  29004. bottom: 102 / 2082
  29005. }
  29006. },
  29007. lopunnyFront: {
  29008. height: math.unit(5, "feet"),
  29009. name: "Lopunny (Front)",
  29010. image: {
  29011. source: "./media/characters/cat/lopunny-front.svg",
  29012. extra: 1782 / 1469,
  29013. bottom: 38 / 1820
  29014. }
  29015. },
  29016. lopunnyBack: {
  29017. height: math.unit(5, "feet"),
  29018. name: "Lopunny (Back)",
  29019. image: {
  29020. source: "./media/characters/cat/lopunny-back.svg",
  29021. extra: 1660 / 1490,
  29022. bottom: 25 / 1685
  29023. }
  29024. },
  29025. },
  29026. [
  29027. {
  29028. name: "Really small",
  29029. height: math.unit(1, "nm")
  29030. },
  29031. {
  29032. name: "Micro",
  29033. height: math.unit(5, "inches")
  29034. },
  29035. {
  29036. name: "Normal",
  29037. height: math.unit(5 + 6 / 12, "feet"),
  29038. default: true
  29039. },
  29040. {
  29041. name: "Macro",
  29042. height: math.unit(50, "feet")
  29043. },
  29044. {
  29045. name: "Macro+",
  29046. height: math.unit(150, "feet")
  29047. },
  29048. {
  29049. name: "Megamacro",
  29050. height: math.unit(100, "miles")
  29051. },
  29052. ]
  29053. ))
  29054. characterMakers.push(() => makeCharacter(
  29055. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29056. {
  29057. front: {
  29058. height: math.unit(63.4, "meters"),
  29059. weight: math.unit(3.28349e+6, "kilograms"),
  29060. name: "Front",
  29061. image: {
  29062. source: "./media/characters/kirina-violet/front.svg",
  29063. extra: 2812 / 2725,
  29064. bottom: 0 / 2812
  29065. }
  29066. },
  29067. back: {
  29068. height: math.unit(63.4, "meters"),
  29069. weight: math.unit(3.28349e+6, "kilograms"),
  29070. name: "Back",
  29071. image: {
  29072. source: "./media/characters/kirina-violet/back.svg",
  29073. extra: 2812 / 2725,
  29074. bottom: 0 / 2812
  29075. }
  29076. },
  29077. mouth: {
  29078. height: math.unit(4.35, "meters"),
  29079. name: "Mouth",
  29080. image: {
  29081. source: "./media/characters/kirina-violet/mouth.svg"
  29082. }
  29083. },
  29084. paw: {
  29085. height: math.unit(5.6, "meters"),
  29086. name: "Paw",
  29087. image: {
  29088. source: "./media/characters/kirina-violet/paw.svg"
  29089. }
  29090. },
  29091. tail: {
  29092. height: math.unit(18, "meters"),
  29093. name: "Tail",
  29094. image: {
  29095. source: "./media/characters/kirina-violet/tail.svg"
  29096. }
  29097. },
  29098. },
  29099. [
  29100. {
  29101. name: "Macro",
  29102. height: math.unit(63.4, "meters"),
  29103. default: true
  29104. },
  29105. ]
  29106. ))
  29107. characterMakers.push(() => makeCharacter(
  29108. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29109. {
  29110. front: {
  29111. height: math.unit(75, "feet"),
  29112. name: "Front",
  29113. image: {
  29114. source: "./media/characters/cat-gigachu/front.svg",
  29115. extra: 1239/1027,
  29116. bottom: 32/1271
  29117. }
  29118. },
  29119. back: {
  29120. height: math.unit(75, "feet"),
  29121. name: "Back",
  29122. image: {
  29123. source: "./media/characters/cat-gigachu/back.svg",
  29124. extra: 1229/1030,
  29125. bottom: 9/1238
  29126. }
  29127. },
  29128. },
  29129. [
  29130. {
  29131. name: "Dynamax",
  29132. height: math.unit(75, "feet"),
  29133. default: true
  29134. },
  29135. ]
  29136. ))
  29137. characterMakers.push(() => makeCharacter(
  29138. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29139. {
  29140. front: {
  29141. height: math.unit(6, "feet"),
  29142. weight: math.unit(150, "lb"),
  29143. name: "Front",
  29144. image: {
  29145. source: "./media/characters/sfaiyan/front.svg",
  29146. extra: 999 / 978,
  29147. bottom: 5 / 1004
  29148. }
  29149. },
  29150. },
  29151. [
  29152. {
  29153. name: "Normal",
  29154. height: math.unit(1.82, "meters")
  29155. },
  29156. {
  29157. name: "Giant",
  29158. height: math.unit(2.27, "km"),
  29159. default: true
  29160. },
  29161. ]
  29162. ))
  29163. characterMakers.push(() => makeCharacter(
  29164. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29165. {
  29166. front: {
  29167. height: math.unit(179, "cm"),
  29168. weight: math.unit(100, "kg"),
  29169. name: "Front",
  29170. image: {
  29171. source: "./media/characters/raunehkeli/front.svg",
  29172. extra: 1934 / 1926,
  29173. bottom: 0 / 1934
  29174. }
  29175. },
  29176. },
  29177. [
  29178. {
  29179. name: "Normal",
  29180. height: math.unit(179, "cm")
  29181. },
  29182. {
  29183. name: "Maximum",
  29184. height: math.unit(575, "meters"),
  29185. default: true
  29186. },
  29187. ]
  29188. ))
  29189. characterMakers.push(() => makeCharacter(
  29190. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29191. {
  29192. front: {
  29193. height: math.unit(6, "feet"),
  29194. weight: math.unit(150, "lb"),
  29195. name: "Front",
  29196. image: {
  29197. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29198. extra: 2625 / 2518,
  29199. bottom: 60 / 2685
  29200. }
  29201. },
  29202. },
  29203. [
  29204. {
  29205. name: "Normal",
  29206. height: math.unit(6 + 2 / 12, "feet")
  29207. },
  29208. {
  29209. name: "Macro",
  29210. height: math.unit(1180, "feet"),
  29211. default: true
  29212. },
  29213. ]
  29214. ))
  29215. characterMakers.push(() => makeCharacter(
  29216. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29217. {
  29218. front: {
  29219. height: math.unit(5 + 6 / 12, "feet"),
  29220. weight: math.unit(108, "lb"),
  29221. name: "Front",
  29222. image: {
  29223. source: "./media/characters/lilith-zott/front.svg",
  29224. extra: 2510 / 2238,
  29225. bottom: 100 / 2610
  29226. }
  29227. },
  29228. frontDressed: {
  29229. height: math.unit(5 + 6 / 12, "feet"),
  29230. weight: math.unit(108, "lb"),
  29231. name: "Front (Dressed)",
  29232. image: {
  29233. source: "./media/characters/lilith-zott/front-dressed.svg",
  29234. extra: 2510 / 2238,
  29235. bottom: 100 / 2610
  29236. }
  29237. },
  29238. },
  29239. [
  29240. {
  29241. name: "Normal",
  29242. height: math.unit(5 + 6 / 12, "feet")
  29243. },
  29244. {
  29245. name: "Macro",
  29246. height: math.unit(1030, "feet"),
  29247. default: true
  29248. },
  29249. ]
  29250. ))
  29251. characterMakers.push(() => makeCharacter(
  29252. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29253. {
  29254. front: {
  29255. height: math.unit(6, "feet"),
  29256. weight: math.unit(150, "lb"),
  29257. name: "Front",
  29258. image: {
  29259. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29260. extra: 2567 / 2435,
  29261. bottom: 39 / 2606
  29262. }
  29263. },
  29264. frontSuper: {
  29265. height: math.unit(6, "feet"),
  29266. name: "Front (Super)",
  29267. image: {
  29268. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29269. extra: 2567 / 2435,
  29270. bottom: 39 / 2606
  29271. }
  29272. },
  29273. },
  29274. [
  29275. {
  29276. name: "Normal",
  29277. height: math.unit(5 + 10 / 12, "feet")
  29278. },
  29279. {
  29280. name: "Macro",
  29281. height: math.unit(1100, "feet"),
  29282. default: true
  29283. },
  29284. ]
  29285. ))
  29286. characterMakers.push(() => makeCharacter(
  29287. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29288. {
  29289. front: {
  29290. height: math.unit(100, "miles"),
  29291. name: "Front",
  29292. image: {
  29293. source: "./media/characters/sona/front.svg",
  29294. extra: 2433 / 2201,
  29295. bottom: 53 / 2486
  29296. }
  29297. },
  29298. foot: {
  29299. height: math.unit(16.1, "miles"),
  29300. name: "Foot",
  29301. image: {
  29302. source: "./media/characters/sona/foot.svg"
  29303. }
  29304. },
  29305. },
  29306. [
  29307. {
  29308. name: "Macro",
  29309. height: math.unit(100, "miles"),
  29310. default: true
  29311. },
  29312. ]
  29313. ))
  29314. characterMakers.push(() => makeCharacter(
  29315. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29316. {
  29317. front: {
  29318. height: math.unit(6, "feet"),
  29319. weight: math.unit(150, "lb"),
  29320. name: "Front",
  29321. image: {
  29322. source: "./media/characters/bailey/front.svg",
  29323. extra: 1778 / 1724,
  29324. bottom: 30 / 1808
  29325. }
  29326. },
  29327. },
  29328. [
  29329. {
  29330. name: "Micro",
  29331. height: math.unit(4, "inches")
  29332. },
  29333. {
  29334. name: "Normal",
  29335. height: math.unit(5 + 5 / 12, "feet"),
  29336. default: true
  29337. },
  29338. {
  29339. name: "Macro",
  29340. height: math.unit(250, "feet")
  29341. },
  29342. {
  29343. name: "Megamacro",
  29344. height: math.unit(100, "miles")
  29345. },
  29346. ]
  29347. ))
  29348. characterMakers.push(() => makeCharacter(
  29349. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29350. {
  29351. front: {
  29352. height: math.unit(5 + 2 / 12, "feet"),
  29353. weight: math.unit(120, "lb"),
  29354. name: "Front",
  29355. image: {
  29356. source: "./media/characters/snaps/front.svg",
  29357. extra: 2370 / 2177,
  29358. bottom: 48 / 2418
  29359. }
  29360. },
  29361. back: {
  29362. height: math.unit(5 + 2 / 12, "feet"),
  29363. weight: math.unit(120, "lb"),
  29364. name: "Back",
  29365. image: {
  29366. source: "./media/characters/snaps/back.svg",
  29367. extra: 2408 / 2258,
  29368. bottom: 15 / 2423
  29369. }
  29370. },
  29371. },
  29372. [
  29373. {
  29374. name: "Micro",
  29375. height: math.unit(9, "inches")
  29376. },
  29377. {
  29378. name: "Normal",
  29379. height: math.unit(5 + 2 / 12, "feet"),
  29380. default: true
  29381. },
  29382. {
  29383. name: "Mini Macro",
  29384. height: math.unit(10, "feet")
  29385. },
  29386. ]
  29387. ))
  29388. characterMakers.push(() => makeCharacter(
  29389. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29390. {
  29391. front: {
  29392. height: math.unit(1.8, "meters"),
  29393. weight: math.unit(85, "kg"),
  29394. name: "Front",
  29395. image: {
  29396. source: "./media/characters/azteck/front.svg",
  29397. extra: 2815 / 2625,
  29398. bottom: 89 / 2904
  29399. }
  29400. },
  29401. back: {
  29402. height: math.unit(1.8, "meters"),
  29403. weight: math.unit(85, "kg"),
  29404. name: "Back",
  29405. image: {
  29406. source: "./media/characters/azteck/back.svg",
  29407. extra: 2856 / 2648,
  29408. bottom: 85 / 2941
  29409. }
  29410. },
  29411. frontDressed: {
  29412. height: math.unit(1.8, "meters"),
  29413. weight: math.unit(85, "kg"),
  29414. name: "Front (Dressed)",
  29415. image: {
  29416. source: "./media/characters/azteck/front-dressed.svg",
  29417. extra: 2147 / 2003,
  29418. bottom: 68 / 2215
  29419. }
  29420. },
  29421. head: {
  29422. height: math.unit(0.47, "meters"),
  29423. weight: math.unit(85, "kg"),
  29424. name: "Head",
  29425. image: {
  29426. source: "./media/characters/azteck/head.svg"
  29427. }
  29428. },
  29429. },
  29430. [
  29431. {
  29432. name: "Bite sized",
  29433. height: math.unit(16, "cm")
  29434. },
  29435. {
  29436. name: "Normal",
  29437. height: math.unit(1.8, "meters"),
  29438. default: true
  29439. },
  29440. ]
  29441. ))
  29442. characterMakers.push(() => makeCharacter(
  29443. { name: "Pidge", species: ["hellhound"], 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/pidge/front.svg",
  29451. extra: 620 / 588,
  29452. bottom: 9 / 629
  29453. }
  29454. },
  29455. back: {
  29456. height: math.unit(6, "feet"),
  29457. weight: math.unit(150, "lb"),
  29458. name: "Back",
  29459. image: {
  29460. source: "./media/characters/pidge/back.svg",
  29461. extra: 620 / 588,
  29462. bottom: 9 / 629
  29463. }
  29464. },
  29465. },
  29466. [
  29467. {
  29468. name: "Macro",
  29469. height: math.unit(1, "mile"),
  29470. default: true
  29471. },
  29472. ]
  29473. ))
  29474. characterMakers.push(() => makeCharacter(
  29475. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29476. {
  29477. front: {
  29478. height: math.unit(6, "feet"),
  29479. weight: math.unit(150, "lb"),
  29480. name: "Front",
  29481. image: {
  29482. source: "./media/characters/en/front.svg",
  29483. extra: 1697 / 1563,
  29484. bottom: 103 / 1800
  29485. }
  29486. },
  29487. back: {
  29488. height: math.unit(6, "feet"),
  29489. weight: math.unit(150, "lb"),
  29490. name: "Back",
  29491. image: {
  29492. source: "./media/characters/en/back.svg",
  29493. extra: 1700 / 1570,
  29494. bottom: 51 / 1751
  29495. }
  29496. },
  29497. frontDressed: {
  29498. height: math.unit(6, "feet"),
  29499. weight: math.unit(150, "lb"),
  29500. name: "Front (Dressed)",
  29501. image: {
  29502. source: "./media/characters/en/front-dressed.svg",
  29503. extra: 1697 / 1563,
  29504. bottom: 103 / 1800
  29505. }
  29506. },
  29507. backDressed: {
  29508. height: math.unit(6, "feet"),
  29509. weight: math.unit(150, "lb"),
  29510. name: "Back (Dressed)",
  29511. image: {
  29512. source: "./media/characters/en/back-dressed.svg",
  29513. extra: 1700 / 1570,
  29514. bottom: 51 / 1751
  29515. }
  29516. },
  29517. },
  29518. [
  29519. {
  29520. name: "Macro",
  29521. height: math.unit(210, "feet"),
  29522. default: true
  29523. },
  29524. ]
  29525. ))
  29526. characterMakers.push(() => makeCharacter(
  29527. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29528. {
  29529. front: {
  29530. height: math.unit(6, "feet"),
  29531. weight: math.unit(150, "lb"),
  29532. name: "Front",
  29533. image: {
  29534. source: "./media/characters/haze-orris/front.svg",
  29535. extra: 3975 / 3525,
  29536. bottom: 137 / 4112
  29537. }
  29538. },
  29539. },
  29540. [
  29541. {
  29542. name: "Micro",
  29543. height: math.unit(150, "mm"),
  29544. default: true
  29545. },
  29546. ]
  29547. ))
  29548. characterMakers.push(() => makeCharacter(
  29549. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29550. {
  29551. front: {
  29552. height: math.unit(6, "feet"),
  29553. weight: math.unit(150, "lb"),
  29554. name: "Front",
  29555. image: {
  29556. source: "./media/characters/casselene-yaro/front.svg",
  29557. extra: 4721 / 4541,
  29558. bottom: 82 / 4803
  29559. }
  29560. },
  29561. back: {
  29562. height: math.unit(6, "feet"),
  29563. weight: math.unit(150, "lb"),
  29564. name: "Back",
  29565. image: {
  29566. source: "./media/characters/casselene-yaro/back.svg",
  29567. extra: 4569 / 4377,
  29568. bottom: 69 / 4638
  29569. }
  29570. },
  29571. frontDressed: {
  29572. height: math.unit(6, "feet"),
  29573. weight: math.unit(150, "lb"),
  29574. name: "Front-dressed",
  29575. image: {
  29576. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29577. extra: 4721 / 4541,
  29578. bottom: 82 / 4803
  29579. }
  29580. },
  29581. },
  29582. [
  29583. {
  29584. name: "Macro",
  29585. height: math.unit(190, "feet"),
  29586. default: true
  29587. },
  29588. ]
  29589. ))
  29590. characterMakers.push(() => makeCharacter(
  29591. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29592. {
  29593. front: {
  29594. height: math.unit(6, "feet"),
  29595. weight: math.unit(150, "lb"),
  29596. name: "Front",
  29597. image: {
  29598. source: "./media/characters/myra-rue-delore/front.svg",
  29599. extra: 1340 / 1308,
  29600. bottom: 67 / 1407
  29601. }
  29602. },
  29603. back: {
  29604. height: math.unit(6, "feet"),
  29605. weight: math.unit(150, "lb"),
  29606. name: "Back",
  29607. image: {
  29608. source: "./media/characters/myra-rue-delore/back.svg",
  29609. extra: 1341 / 1310,
  29610. bottom: 40 / 1381
  29611. }
  29612. },
  29613. frontDressed: {
  29614. height: math.unit(6, "feet"),
  29615. weight: math.unit(150, "lb"),
  29616. name: "Front (Dressed)",
  29617. image: {
  29618. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29619. extra: 1340 / 1308,
  29620. bottom: 67 / 1407
  29621. }
  29622. },
  29623. },
  29624. [
  29625. {
  29626. name: "Macro",
  29627. height: math.unit(150, "feet"),
  29628. default: true
  29629. },
  29630. ]
  29631. ))
  29632. characterMakers.push(() => makeCharacter(
  29633. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29634. {
  29635. front: {
  29636. height: math.unit(10, "feet"),
  29637. weight: math.unit(15015, "lb"),
  29638. name: "Front",
  29639. image: {
  29640. source: "./media/characters/fem!plat/front.svg",
  29641. extra: 2799 / 2604,
  29642. bottom: 149 / 2948
  29643. }
  29644. },
  29645. },
  29646. [
  29647. {
  29648. name: "Normal",
  29649. height: math.unit(10, "feet"),
  29650. default: true
  29651. },
  29652. {
  29653. name: "Macro",
  29654. height: math.unit(100, "feet")
  29655. },
  29656. {
  29657. name: "Megamacro",
  29658. height: math.unit(1000, "feet")
  29659. },
  29660. ]
  29661. ))
  29662. characterMakers.push(() => makeCharacter(
  29663. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29664. {
  29665. front: {
  29666. height: math.unit(15 + 5 / 12, "feet"),
  29667. weight: math.unit(4600, "lb"),
  29668. name: "Front",
  29669. image: {
  29670. source: "./media/characters/neapolitan-ananassa/front.svg",
  29671. extra: 2903 / 2736,
  29672. bottom: 0 / 2903
  29673. }
  29674. },
  29675. side: {
  29676. height: math.unit(15 + 5 / 12, "feet"),
  29677. weight: math.unit(4600, "lb"),
  29678. name: "Side",
  29679. image: {
  29680. source: "./media/characters/neapolitan-ananassa/side.svg",
  29681. extra: 2925 / 2719,
  29682. bottom: 0 / 2925
  29683. }
  29684. },
  29685. back: {
  29686. height: math.unit(15 + 5 / 12, "feet"),
  29687. weight: math.unit(4600, "lb"),
  29688. name: "Back",
  29689. image: {
  29690. source: "./media/characters/neapolitan-ananassa/back.svg",
  29691. extra: 2903 / 2736,
  29692. bottom: 0 / 2903
  29693. }
  29694. },
  29695. },
  29696. [
  29697. {
  29698. name: "Normal",
  29699. height: math.unit(15 + 5 / 12, "feet"),
  29700. default: true
  29701. },
  29702. {
  29703. name: "Post-Millenium",
  29704. height: math.unit(35 + 5 / 12, "feet")
  29705. },
  29706. {
  29707. name: "Post-Era",
  29708. height: math.unit(450 + 5 / 12, "feet")
  29709. },
  29710. ]
  29711. ))
  29712. characterMakers.push(() => makeCharacter(
  29713. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29714. {
  29715. front: {
  29716. height: math.unit(300, "meters"),
  29717. weight: math.unit(125000, "tonnes"),
  29718. name: "Front",
  29719. image: {
  29720. source: "./media/characters/pazuzu/front.svg",
  29721. extra: 877 / 794,
  29722. bottom: 47 / 924
  29723. }
  29724. },
  29725. },
  29726. [
  29727. {
  29728. name: "Macro",
  29729. height: math.unit(300, "meters"),
  29730. default: true
  29731. },
  29732. ]
  29733. ))
  29734. characterMakers.push(() => makeCharacter(
  29735. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29736. {
  29737. side: {
  29738. height: math.unit(10 + 7 / 12, "feet"),
  29739. weight: math.unit(2.5, "tons"),
  29740. name: "Side",
  29741. image: {
  29742. source: "./media/characters/aasha/side.svg",
  29743. extra: 1345 / 1245,
  29744. bottom: 111 / 1456
  29745. }
  29746. },
  29747. back: {
  29748. height: math.unit(10 + 7 / 12, "feet"),
  29749. weight: math.unit(2.5, "tons"),
  29750. name: "Back",
  29751. image: {
  29752. source: "./media/characters/aasha/back.svg",
  29753. extra: 1133 / 1057,
  29754. bottom: 257 / 1390
  29755. }
  29756. },
  29757. },
  29758. [
  29759. {
  29760. name: "Normal",
  29761. height: math.unit(10 + 7 / 12, "feet"),
  29762. default: true
  29763. },
  29764. ]
  29765. ))
  29766. characterMakers.push(() => makeCharacter(
  29767. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29768. {
  29769. front: {
  29770. height: math.unit(6 + 3 / 12, "feet"),
  29771. name: "Front",
  29772. image: {
  29773. source: "./media/characters/nevan/front.svg",
  29774. extra: 704 / 704,
  29775. bottom: 28 / 732
  29776. }
  29777. },
  29778. back: {
  29779. height: math.unit(6 + 3 / 12, "feet"),
  29780. name: "Back",
  29781. image: {
  29782. source: "./media/characters/nevan/back.svg",
  29783. extra: 714 / 714,
  29784. bottom: 21 / 735
  29785. }
  29786. },
  29787. frontFlaccid: {
  29788. height: math.unit(6 + 3 / 12, "feet"),
  29789. name: "Front (Flaccid)",
  29790. image: {
  29791. source: "./media/characters/nevan/front-flaccid.svg",
  29792. extra: 704 / 704,
  29793. bottom: 28 / 732
  29794. }
  29795. },
  29796. frontErect: {
  29797. height: math.unit(6 + 3 / 12, "feet"),
  29798. name: "Front (Erect)",
  29799. image: {
  29800. source: "./media/characters/nevan/front-erect.svg",
  29801. extra: 704 / 704,
  29802. bottom: 28 / 732
  29803. }
  29804. },
  29805. backFlaccid: {
  29806. height: math.unit(6 + 3 / 12, "feet"),
  29807. name: "Back (Flaccid)",
  29808. image: {
  29809. source: "./media/characters/nevan/back-flaccid.svg",
  29810. extra: 714 / 714,
  29811. bottom: 21 / 735
  29812. }
  29813. },
  29814. },
  29815. [
  29816. {
  29817. name: "Normal",
  29818. height: math.unit(6 + 3 / 12, "feet"),
  29819. default: true
  29820. },
  29821. ]
  29822. ))
  29823. characterMakers.push(() => makeCharacter(
  29824. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29825. {
  29826. front: {
  29827. height: math.unit(4, "feet"),
  29828. name: "Front",
  29829. image: {
  29830. source: "./media/characters/arhan/front.svg",
  29831. extra: 3368 / 3133,
  29832. bottom: 0 / 3368
  29833. }
  29834. },
  29835. side: {
  29836. height: math.unit(4, "feet"),
  29837. name: "Side",
  29838. image: {
  29839. source: "./media/characters/arhan/side.svg",
  29840. extra: 3347 / 3105,
  29841. bottom: 0 / 3347
  29842. }
  29843. },
  29844. tongue: {
  29845. height: math.unit(1.42, "feet"),
  29846. name: "Tongue",
  29847. image: {
  29848. source: "./media/characters/arhan/tongue.svg"
  29849. }
  29850. },
  29851. head: {
  29852. height: math.unit(0.85, "feet"),
  29853. name: "Head",
  29854. image: {
  29855. source: "./media/characters/arhan/head.svg"
  29856. }
  29857. },
  29858. },
  29859. [
  29860. {
  29861. name: "Normal",
  29862. height: math.unit(4, "feet"),
  29863. default: true
  29864. },
  29865. ]
  29866. ))
  29867. characterMakers.push(() => makeCharacter(
  29868. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29869. {
  29870. front: {
  29871. height: math.unit(5 + 7.5 / 12, "feet"),
  29872. weight: math.unit(120, "lb"),
  29873. name: "Front",
  29874. image: {
  29875. source: "./media/characters/digi-duncan/front.svg",
  29876. extra: 330 / 326,
  29877. bottom: 16 / 346
  29878. }
  29879. },
  29880. side: {
  29881. height: math.unit(5 + 7.5 / 12, "feet"),
  29882. weight: math.unit(120, "lb"),
  29883. name: "Side",
  29884. image: {
  29885. source: "./media/characters/digi-duncan/side.svg",
  29886. extra: 341 / 337,
  29887. bottom: 1 / 342
  29888. }
  29889. },
  29890. back: {
  29891. height: math.unit(5 + 7.5 / 12, "feet"),
  29892. weight: math.unit(120, "lb"),
  29893. name: "Back",
  29894. image: {
  29895. source: "./media/characters/digi-duncan/back.svg",
  29896. extra: 330 / 326,
  29897. bottom: 12 / 342
  29898. }
  29899. },
  29900. },
  29901. [
  29902. {
  29903. name: "Speck",
  29904. height: math.unit(0.25, "mm")
  29905. },
  29906. {
  29907. name: "Micro",
  29908. height: math.unit(5, "mm")
  29909. },
  29910. {
  29911. name: "Tiny",
  29912. height: math.unit(0.5, "inches"),
  29913. default: true
  29914. },
  29915. {
  29916. name: "Human",
  29917. height: math.unit(5 + 7.5 / 12, "feet")
  29918. },
  29919. {
  29920. name: "Minigiant",
  29921. height: math.unit(8 + 5.25, "feet")
  29922. },
  29923. {
  29924. name: "Giant",
  29925. height: math.unit(2000, "feet")
  29926. },
  29927. {
  29928. name: "Mega",
  29929. height: math.unit(371.1, "miles")
  29930. },
  29931. ]
  29932. ))
  29933. characterMakers.push(() => makeCharacter(
  29934. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29935. {
  29936. front: {
  29937. height: math.unit(2, "meters"),
  29938. weight: math.unit(350, "kg"),
  29939. name: "Front",
  29940. image: {
  29941. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29942. extra: 898 / 838,
  29943. bottom: 9 / 907
  29944. }
  29945. },
  29946. },
  29947. [
  29948. {
  29949. name: "Micro",
  29950. height: math.unit(8, "meters")
  29951. },
  29952. {
  29953. name: "Normal",
  29954. height: math.unit(50, "meters"),
  29955. default: true
  29956. },
  29957. {
  29958. name: "Macro",
  29959. height: math.unit(500, "meters")
  29960. },
  29961. ]
  29962. ))
  29963. characterMakers.push(() => makeCharacter(
  29964. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29965. {
  29966. front: {
  29967. height: math.unit(6 + 6 / 12, "feet"),
  29968. name: "Front",
  29969. image: {
  29970. source: "./media/characters/khardesh/front.svg",
  29971. extra: 888 / 797,
  29972. bottom: 25 / 913
  29973. }
  29974. },
  29975. },
  29976. [
  29977. {
  29978. name: "Normal",
  29979. height: math.unit(6 + 6 / 12, "feet"),
  29980. default: true
  29981. },
  29982. {
  29983. name: "Normal+",
  29984. height: math.unit(4, "meters")
  29985. },
  29986. {
  29987. name: "Macro",
  29988. height: math.unit(50, "meters")
  29989. },
  29990. {
  29991. name: "Macro+",
  29992. height: math.unit(100, "meters")
  29993. },
  29994. {
  29995. name: "Megamacro",
  29996. height: math.unit(20, "km")
  29997. },
  29998. ]
  29999. ))
  30000. characterMakers.push(() => makeCharacter(
  30001. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30002. {
  30003. front: {
  30004. height: math.unit(6, "feet"),
  30005. weight: math.unit(150, "lb"),
  30006. name: "Front",
  30007. image: {
  30008. source: "./media/characters/kosho/front.svg",
  30009. extra: 1847 / 1847,
  30010. bottom: 86 / 1933
  30011. }
  30012. },
  30013. },
  30014. [
  30015. {
  30016. name: "Second-stage micro",
  30017. height: math.unit(0.5, "inches")
  30018. },
  30019. {
  30020. name: "First-stage micro",
  30021. height: math.unit(6, "inches")
  30022. },
  30023. {
  30024. name: "Normal",
  30025. height: math.unit(6, "feet"),
  30026. default: true
  30027. },
  30028. {
  30029. name: "First-stage macro",
  30030. height: math.unit(72, "feet")
  30031. },
  30032. {
  30033. name: "Second-stage macro",
  30034. height: math.unit(864, "feet")
  30035. },
  30036. ]
  30037. ))
  30038. characterMakers.push(() => makeCharacter(
  30039. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30040. {
  30041. normal: {
  30042. height: math.unit(4 + 6 / 12, "feet"),
  30043. name: "Normal",
  30044. image: {
  30045. source: "./media/characters/hydra/normal.svg",
  30046. extra: 2833 / 2634,
  30047. bottom: 68 / 2901
  30048. }
  30049. },
  30050. smol: {
  30051. height: math.unit(0.705, "inches"),
  30052. name: "Smol",
  30053. image: {
  30054. source: "./media/characters/hydra/smol.svg",
  30055. extra: 2715 / 2540,
  30056. bottom: 0 / 2715
  30057. }
  30058. },
  30059. },
  30060. [
  30061. {
  30062. name: "Normal",
  30063. height: math.unit(4 + 6 / 12, "feet"),
  30064. default: true
  30065. }
  30066. ]
  30067. ))
  30068. characterMakers.push(() => makeCharacter(
  30069. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30070. {
  30071. front: {
  30072. height: math.unit(0.6, "cm"),
  30073. name: "Front",
  30074. image: {
  30075. source: "./media/characters/daz/front.svg",
  30076. extra: 1682 / 1164,
  30077. bottom: 42 / 1724
  30078. }
  30079. },
  30080. },
  30081. [
  30082. {
  30083. name: "Normal",
  30084. height: math.unit(0.6, "cm"),
  30085. default: true
  30086. },
  30087. ]
  30088. ))
  30089. characterMakers.push(() => makeCharacter(
  30090. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30091. {
  30092. front: {
  30093. height: math.unit(6, "feet"),
  30094. weight: math.unit(235, "lb"),
  30095. name: "Front",
  30096. image: {
  30097. source: "./media/characters/theo-pangolin/front.svg",
  30098. extra: 1996 / 1969,
  30099. bottom: 115 / 2111
  30100. }
  30101. },
  30102. back: {
  30103. height: math.unit(6, "feet"),
  30104. weight: math.unit(235, "lb"),
  30105. name: "Back",
  30106. image: {
  30107. source: "./media/characters/theo-pangolin/back.svg",
  30108. extra: 1979 / 1979,
  30109. bottom: 40 / 2019
  30110. }
  30111. },
  30112. feral: {
  30113. height: math.unit(2, "feet"),
  30114. weight: math.unit(30, "lb"),
  30115. name: "Feral",
  30116. image: {
  30117. source: "./media/characters/theo-pangolin/feral.svg",
  30118. extra: 803 / 791,
  30119. bottom: 181 / 984
  30120. }
  30121. },
  30122. footFive: {
  30123. height: math.unit(1.43, "feet"),
  30124. name: "Foot (Five Toes)",
  30125. image: {
  30126. source: "./media/characters/theo-pangolin/foot-five.svg"
  30127. }
  30128. },
  30129. footFour: {
  30130. height: math.unit(1.43, "feet"),
  30131. name: "Foot (Four Toes)",
  30132. image: {
  30133. source: "./media/characters/theo-pangolin/foot-four.svg"
  30134. }
  30135. },
  30136. handFour: {
  30137. height: math.unit(0.81, "feet"),
  30138. name: "Hand (Four Fingers)",
  30139. image: {
  30140. source: "./media/characters/theo-pangolin/hand-four.svg"
  30141. }
  30142. },
  30143. handThree: {
  30144. height: math.unit(0.81, "feet"),
  30145. name: "Hand (Three Fingers)",
  30146. image: {
  30147. source: "./media/characters/theo-pangolin/hand-three.svg"
  30148. }
  30149. },
  30150. headFront: {
  30151. height: math.unit(1.37, "feet"),
  30152. name: "Head (Front)",
  30153. image: {
  30154. source: "./media/characters/theo-pangolin/head-front.svg"
  30155. }
  30156. },
  30157. headSide: {
  30158. height: math.unit(1.43, "feet"),
  30159. name: "Head (Side)",
  30160. image: {
  30161. source: "./media/characters/theo-pangolin/head-side.svg"
  30162. }
  30163. },
  30164. tongue: {
  30165. height: math.unit(2.29, "feet"),
  30166. name: "Tongue",
  30167. image: {
  30168. source: "./media/characters/theo-pangolin/tongue.svg"
  30169. }
  30170. },
  30171. },
  30172. [
  30173. {
  30174. name: "Normal",
  30175. height: math.unit(6, "feet")
  30176. },
  30177. {
  30178. name: "Macro",
  30179. height: math.unit(400, "feet"),
  30180. default: true
  30181. },
  30182. ]
  30183. ))
  30184. characterMakers.push(() => makeCharacter(
  30185. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30186. {
  30187. front: {
  30188. height: math.unit(6, "inches"),
  30189. weight: math.unit(0.036, "kg"),
  30190. name: "Front",
  30191. image: {
  30192. source: "./media/characters/renée/front.svg",
  30193. extra: 900 / 886,
  30194. bottom: 8 / 908
  30195. }
  30196. },
  30197. },
  30198. [
  30199. {
  30200. name: "Nano",
  30201. height: math.unit(1, "nm")
  30202. },
  30203. {
  30204. name: "Micro",
  30205. height: math.unit(1, "mm")
  30206. },
  30207. {
  30208. name: "Normal",
  30209. height: math.unit(6, "inches")
  30210. },
  30211. {
  30212. name: "Macro",
  30213. height: math.unit(2000, "feet"),
  30214. default: true
  30215. },
  30216. {
  30217. name: "Megamacro",
  30218. height: math.unit(2, "km")
  30219. },
  30220. {
  30221. name: "Gigamacro",
  30222. height: math.unit(2000, "km")
  30223. },
  30224. {
  30225. name: "Teramacro",
  30226. height: math.unit(250000, "km")
  30227. },
  30228. ]
  30229. ))
  30230. characterMakers.push(() => makeCharacter(
  30231. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30232. {
  30233. front: {
  30234. height: math.unit(4, "meters"),
  30235. weight: math.unit(150, "kg"),
  30236. name: "Front",
  30237. image: {
  30238. source: "./media/characters/caledvwlch/front.svg",
  30239. extra: 1760 / 1551,
  30240. bottom: 28 / 1788
  30241. }
  30242. },
  30243. side: {
  30244. height: math.unit(4, "meters"),
  30245. weight: math.unit(150, "kg"),
  30246. name: "Side",
  30247. image: {
  30248. source: "./media/characters/caledvwlch/side.svg",
  30249. extra: 1605 / 1536,
  30250. bottom: 31 / 1636
  30251. }
  30252. },
  30253. back: {
  30254. height: math.unit(4, "meters"),
  30255. weight: math.unit(150, "kg"),
  30256. name: "Back",
  30257. image: {
  30258. source: "./media/characters/caledvwlch/back.svg",
  30259. extra: 1635 / 1565,
  30260. bottom: 27 / 1662
  30261. }
  30262. },
  30263. },
  30264. [
  30265. {
  30266. name: "\"Incognito\"",
  30267. height: math.unit(4, "meters")
  30268. },
  30269. {
  30270. name: "Small rampage",
  30271. height: math.unit(600, "meters")
  30272. },
  30273. {
  30274. name: "Mega",
  30275. height: math.unit(30, "km")
  30276. },
  30277. {
  30278. name: "Home-size",
  30279. height: math.unit(50, "km"),
  30280. default: true
  30281. },
  30282. {
  30283. name: "Giga",
  30284. height: math.unit(300, "km")
  30285. },
  30286. {
  30287. name: "Lounging",
  30288. height: math.unit(11000, "km")
  30289. },
  30290. {
  30291. name: "Planet snacking",
  30292. height: math.unit(2000000, "km")
  30293. },
  30294. ]
  30295. ))
  30296. characterMakers.push(() => makeCharacter(
  30297. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30298. {
  30299. front: {
  30300. height: math.unit(6, "feet"),
  30301. weight: math.unit(215, "lb"),
  30302. name: "Front",
  30303. image: {
  30304. source: "./media/characters/sapphire-svell/front.svg",
  30305. extra: 495 / 455,
  30306. bottom: 20 / 515
  30307. }
  30308. },
  30309. back: {
  30310. height: math.unit(6, "feet"),
  30311. weight: math.unit(216, "lb"),
  30312. name: "Back",
  30313. image: {
  30314. source: "./media/characters/sapphire-svell/back.svg",
  30315. extra: 497 / 477,
  30316. bottom: 7 / 504
  30317. }
  30318. },
  30319. maw: {
  30320. height: math.unit(1.57, "feet"),
  30321. name: "Maw",
  30322. image: {
  30323. source: "./media/characters/sapphire-svell/maw.svg"
  30324. }
  30325. },
  30326. foot: {
  30327. height: math.unit(1.07, "feet"),
  30328. name: "Foot",
  30329. image: {
  30330. source: "./media/characters/sapphire-svell/foot.svg"
  30331. }
  30332. },
  30333. toering: {
  30334. height: math.unit(1.7, "inch"),
  30335. name: "Toering",
  30336. image: {
  30337. source: "./media/characters/sapphire-svell/toering.svg"
  30338. }
  30339. },
  30340. },
  30341. [
  30342. {
  30343. name: "Normal",
  30344. height: math.unit(300, "feet"),
  30345. default: true
  30346. },
  30347. {
  30348. name: "Augmented",
  30349. height: math.unit(1250, "feet")
  30350. },
  30351. {
  30352. name: "Unleashed",
  30353. height: math.unit(3000, "feet")
  30354. },
  30355. ]
  30356. ))
  30357. characterMakers.push(() => makeCharacter(
  30358. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30359. {
  30360. side: {
  30361. height: math.unit(2 + 3 / 12, "feet"),
  30362. weight: math.unit(110, "lb"),
  30363. name: "Side",
  30364. image: {
  30365. source: "./media/characters/glitch-flux/side.svg",
  30366. extra: 997 / 805,
  30367. bottom: 20 / 1017
  30368. }
  30369. },
  30370. },
  30371. [
  30372. {
  30373. name: "Normal",
  30374. height: math.unit(2 + 3 / 12, "feet"),
  30375. default: true
  30376. },
  30377. ]
  30378. ))
  30379. characterMakers.push(() => makeCharacter(
  30380. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30381. {
  30382. front: {
  30383. height: math.unit(4, "meters"),
  30384. name: "Front",
  30385. image: {
  30386. source: "./media/characters/mid/front.svg",
  30387. extra: 507 / 476,
  30388. bottom: 17 / 524
  30389. }
  30390. },
  30391. back: {
  30392. height: math.unit(4, "meters"),
  30393. name: "Back",
  30394. image: {
  30395. source: "./media/characters/mid/back.svg",
  30396. extra: 519 / 487,
  30397. bottom: 7 / 526
  30398. }
  30399. },
  30400. stuck: {
  30401. height: math.unit(2.2, "meters"),
  30402. name: "Stuck",
  30403. image: {
  30404. source: "./media/characters/mid/stuck.svg",
  30405. extra: 1951 / 1869,
  30406. bottom: 88 / 2039
  30407. }
  30408. }
  30409. },
  30410. [
  30411. {
  30412. name: "Normal",
  30413. height: math.unit(4, "meters"),
  30414. default: true
  30415. },
  30416. {
  30417. name: "Big",
  30418. height: math.unit(10, "meters")
  30419. },
  30420. {
  30421. name: "Macro",
  30422. height: math.unit(800, "meters")
  30423. },
  30424. {
  30425. name: "Megamacro",
  30426. height: math.unit(100, "km")
  30427. },
  30428. {
  30429. name: "Overgrown",
  30430. height: math.unit(1, "parsec")
  30431. },
  30432. ]
  30433. ))
  30434. characterMakers.push(() => makeCharacter(
  30435. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30436. {
  30437. front: {
  30438. height: math.unit(2.5, "meters"),
  30439. weight: math.unit(225, "kg"),
  30440. name: "Front",
  30441. image: {
  30442. source: "./media/characters/iris/front.svg",
  30443. extra: 3348 / 3251,
  30444. bottom: 205 / 3553
  30445. }
  30446. },
  30447. maw: {
  30448. height: math.unit(0.56, "meter"),
  30449. name: "Maw",
  30450. image: {
  30451. source: "./media/characters/iris/maw.svg"
  30452. }
  30453. },
  30454. },
  30455. [
  30456. {
  30457. name: "Mewter cat",
  30458. height: math.unit(1.2, "meters")
  30459. },
  30460. {
  30461. name: "Minimacro",
  30462. height: math.unit(2.5, "meters"),
  30463. default: true
  30464. },
  30465. {
  30466. name: "Macro",
  30467. height: math.unit(180, "meters")
  30468. },
  30469. {
  30470. name: "Megamacro",
  30471. height: math.unit(2746, "meters")
  30472. },
  30473. ]
  30474. ))
  30475. characterMakers.push(() => makeCharacter(
  30476. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30477. {
  30478. front: {
  30479. height: math.unit(6, "feet"),
  30480. weight: math.unit(135, "lb"),
  30481. name: "Front",
  30482. image: {
  30483. source: "./media/characters/axel/front.svg",
  30484. extra: 908 / 908,
  30485. bottom: 58 / 966
  30486. }
  30487. },
  30488. side: {
  30489. height: math.unit(6, "feet"),
  30490. weight: math.unit(135, "lb"),
  30491. name: "Side",
  30492. image: {
  30493. source: "./media/characters/axel/side.svg",
  30494. extra: 958 / 958,
  30495. bottom: 11 / 969
  30496. }
  30497. },
  30498. back: {
  30499. height: math.unit(6, "feet"),
  30500. weight: math.unit(135, "lb"),
  30501. name: "Back",
  30502. image: {
  30503. source: "./media/characters/axel/back.svg",
  30504. extra: 887 / 887,
  30505. bottom: 34 / 921
  30506. }
  30507. },
  30508. head: {
  30509. height: math.unit(1.07, "feet"),
  30510. name: "Head",
  30511. image: {
  30512. source: "./media/characters/axel/head.svg"
  30513. }
  30514. },
  30515. beak: {
  30516. height: math.unit(1.4, "feet"),
  30517. name: "Beak",
  30518. image: {
  30519. source: "./media/characters/axel/beak.svg"
  30520. }
  30521. },
  30522. beakSide: {
  30523. height: math.unit(1.4, "feet"),
  30524. name: "Beak Side",
  30525. image: {
  30526. source: "./media/characters/axel/beak-side.svg"
  30527. }
  30528. },
  30529. sheath: {
  30530. height: math.unit(0.5, "feet"),
  30531. name: "Sheath",
  30532. image: {
  30533. source: "./media/characters/axel/sheath.svg"
  30534. }
  30535. },
  30536. dick: {
  30537. height: math.unit(0.98, "feet"),
  30538. name: "Dick",
  30539. image: {
  30540. source: "./media/characters/axel/dick.svg"
  30541. }
  30542. },
  30543. },
  30544. [
  30545. {
  30546. name: "Macro",
  30547. height: math.unit(68, "meters"),
  30548. default: true
  30549. },
  30550. ]
  30551. ))
  30552. characterMakers.push(() => makeCharacter(
  30553. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30554. {
  30555. front: {
  30556. height: math.unit(3.5, "meters"),
  30557. weight: math.unit(1200, "kg"),
  30558. name: "Front",
  30559. image: {
  30560. source: "./media/characters/joanna/front.svg",
  30561. extra: 1596 / 1488,
  30562. bottom: 29 / 1625
  30563. }
  30564. },
  30565. back: {
  30566. height: math.unit(3.5, "meters"),
  30567. weight: math.unit(1200, "kg"),
  30568. name: "Back",
  30569. image: {
  30570. source: "./media/characters/joanna/back.svg",
  30571. extra: 1594 / 1495,
  30572. bottom: 26 / 1620
  30573. }
  30574. },
  30575. frontShorts: {
  30576. height: math.unit(3.5, "meters"),
  30577. weight: math.unit(1200, "kg"),
  30578. name: "Front (Shorts)",
  30579. image: {
  30580. source: "./media/characters/joanna/front-shorts.svg",
  30581. extra: 1596 / 1488,
  30582. bottom: 29 / 1625
  30583. }
  30584. },
  30585. frontBiker: {
  30586. height: math.unit(3.5, "meters"),
  30587. weight: math.unit(1200, "kg"),
  30588. name: "Front (Biker)",
  30589. image: {
  30590. source: "./media/characters/joanna/front-biker.svg",
  30591. extra: 1596 / 1488,
  30592. bottom: 29 / 1625
  30593. }
  30594. },
  30595. backBiker: {
  30596. height: math.unit(3.5, "meters"),
  30597. weight: math.unit(1200, "kg"),
  30598. name: "Back (Biker)",
  30599. image: {
  30600. source: "./media/characters/joanna/back-biker.svg",
  30601. extra: 1594 / 1495,
  30602. bottom: 88 / 1682
  30603. }
  30604. },
  30605. bikeLeft: {
  30606. height: math.unit(2.4, "meters"),
  30607. weight: math.unit(1600, "kg"),
  30608. name: "Bike (Left)",
  30609. image: {
  30610. source: "./media/characters/joanna/bike-left.svg",
  30611. extra: 720 / 720,
  30612. bottom: 8 / 728
  30613. }
  30614. },
  30615. bikeRight: {
  30616. height: math.unit(2.4, "meters"),
  30617. weight: math.unit(1600, "kg"),
  30618. name: "Bike (Right)",
  30619. image: {
  30620. source: "./media/characters/joanna/bike-right.svg",
  30621. extra: 720 / 720,
  30622. bottom: 8 / 728
  30623. }
  30624. },
  30625. },
  30626. [
  30627. {
  30628. name: "Incognito",
  30629. height: math.unit(3.5, "meters")
  30630. },
  30631. {
  30632. name: "Casual Big",
  30633. height: math.unit(200, "meters")
  30634. },
  30635. {
  30636. name: "Macro",
  30637. height: math.unit(600, "meters")
  30638. },
  30639. {
  30640. name: "Original",
  30641. height: math.unit(20, "km"),
  30642. default: true
  30643. },
  30644. {
  30645. name: "Giga",
  30646. height: math.unit(400, "km")
  30647. },
  30648. {
  30649. name: "Lounging",
  30650. height: math.unit(1500, "km")
  30651. },
  30652. {
  30653. name: "Planetary",
  30654. height: math.unit(200000, "km")
  30655. },
  30656. ]
  30657. ))
  30658. characterMakers.push(() => makeCharacter(
  30659. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30660. {
  30661. front: {
  30662. height: math.unit(6, "feet"),
  30663. weight: math.unit(150, "lb"),
  30664. name: "Front",
  30665. image: {
  30666. source: "./media/characters/hugo-sigil/front.svg",
  30667. extra: 522 / 500,
  30668. bottom: 2 / 524
  30669. }
  30670. },
  30671. back: {
  30672. height: math.unit(6, "feet"),
  30673. weight: math.unit(150, "lb"),
  30674. name: "Back",
  30675. image: {
  30676. source: "./media/characters/hugo-sigil/back.svg",
  30677. extra: 519 / 495,
  30678. bottom: 5 / 524
  30679. }
  30680. },
  30681. maw: {
  30682. height: math.unit(1.4, "feet"),
  30683. weight: math.unit(150, "lb"),
  30684. name: "Maw",
  30685. image: {
  30686. source: "./media/characters/hugo-sigil/maw.svg"
  30687. }
  30688. },
  30689. feet: {
  30690. height: math.unit(1.56, "feet"),
  30691. weight: math.unit(150, "lb"),
  30692. name: "Feet",
  30693. image: {
  30694. source: "./media/characters/hugo-sigil/feet.svg",
  30695. extra: 177 / 177,
  30696. bottom: 12 / 189
  30697. }
  30698. },
  30699. },
  30700. [
  30701. {
  30702. name: "Normal",
  30703. height: math.unit(6, "feet")
  30704. },
  30705. {
  30706. name: "Macro",
  30707. height: math.unit(200, "feet"),
  30708. default: true
  30709. },
  30710. ]
  30711. ))
  30712. characterMakers.push(() => makeCharacter(
  30713. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30714. {
  30715. front: {
  30716. height: math.unit(6, "feet"),
  30717. weight: math.unit(150, "lb"),
  30718. name: "Front",
  30719. image: {
  30720. source: "./media/characters/peri/front.svg",
  30721. extra: 2354 / 2233,
  30722. bottom: 49 / 2403
  30723. }
  30724. },
  30725. },
  30726. [
  30727. {
  30728. name: "Really Small",
  30729. height: math.unit(1, "nm")
  30730. },
  30731. {
  30732. name: "Micro",
  30733. height: math.unit(4, "inches")
  30734. },
  30735. {
  30736. name: "Normal",
  30737. height: math.unit(7, "inches"),
  30738. default: true
  30739. },
  30740. {
  30741. name: "Macro",
  30742. height: math.unit(400, "feet")
  30743. },
  30744. {
  30745. name: "Megamacro",
  30746. height: math.unit(100, "miles")
  30747. },
  30748. ]
  30749. ))
  30750. characterMakers.push(() => makeCharacter(
  30751. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30752. {
  30753. frontSlim: {
  30754. height: math.unit(7, "feet"),
  30755. name: "Front (Slim)",
  30756. image: {
  30757. source: "./media/characters/issilora/front-slim.svg",
  30758. extra: 529 / 449,
  30759. bottom: 53 / 582
  30760. }
  30761. },
  30762. sideSlim: {
  30763. height: math.unit(7, "feet"),
  30764. name: "Side (Slim)",
  30765. image: {
  30766. source: "./media/characters/issilora/side-slim.svg",
  30767. extra: 570 / 480,
  30768. bottom: 30 / 600
  30769. }
  30770. },
  30771. backSlim: {
  30772. height: math.unit(7, "feet"),
  30773. name: "Back (Slim)",
  30774. image: {
  30775. source: "./media/characters/issilora/back-slim.svg",
  30776. extra: 537 / 455,
  30777. bottom: 46 / 583
  30778. }
  30779. },
  30780. frontBuff: {
  30781. height: math.unit(7, "feet"),
  30782. name: "Front (Buff)",
  30783. image: {
  30784. source: "./media/characters/issilora/front-buff.svg",
  30785. extra: 2310 / 2035,
  30786. bottom: 335 / 2645
  30787. }
  30788. },
  30789. head: {
  30790. height: math.unit(1.94, "feet"),
  30791. name: "Head",
  30792. image: {
  30793. source: "./media/characters/issilora/head.svg"
  30794. }
  30795. },
  30796. },
  30797. [
  30798. {
  30799. name: "Minimum",
  30800. height: math.unit(7, "feet")
  30801. },
  30802. {
  30803. name: "Comfortable",
  30804. height: math.unit(17, "feet")
  30805. },
  30806. {
  30807. name: "Fun Size",
  30808. height: math.unit(47, "feet")
  30809. },
  30810. {
  30811. name: "Natural Macro",
  30812. height: math.unit(137, "feet"),
  30813. default: true
  30814. },
  30815. {
  30816. name: "Maximum Kaiju",
  30817. height: math.unit(397, "feet")
  30818. },
  30819. ]
  30820. ))
  30821. characterMakers.push(() => makeCharacter(
  30822. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30823. {
  30824. front: {
  30825. height: math.unit(50 + 9/12, "feet"),
  30826. weight: math.unit(32.8, "tons"),
  30827. name: "Front",
  30828. image: {
  30829. source: "./media/characters/irb'iiritaahn/front.svg",
  30830. extra: 1878/1826,
  30831. bottom: 326/2204
  30832. }
  30833. },
  30834. back: {
  30835. height: math.unit(50 + 9/12, "feet"),
  30836. weight: math.unit(32.8, "tons"),
  30837. name: "Back",
  30838. image: {
  30839. source: "./media/characters/irb'iiritaahn/back.svg",
  30840. extra: 2052/2018,
  30841. bottom: 152/2204
  30842. }
  30843. },
  30844. head: {
  30845. height: math.unit(12.86, "feet"),
  30846. name: "Head",
  30847. image: {
  30848. source: "./media/characters/irb'iiritaahn/head.svg"
  30849. }
  30850. },
  30851. maw: {
  30852. height: math.unit(9.66, "feet"),
  30853. name: "Maw",
  30854. image: {
  30855. source: "./media/characters/irb'iiritaahn/maw.svg"
  30856. }
  30857. },
  30858. frontDick: {
  30859. height: math.unit(8.78461, "feet"),
  30860. name: "Front Dick",
  30861. image: {
  30862. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30863. }
  30864. },
  30865. rearDick: {
  30866. height: math.unit(8.78461, "feet"),
  30867. name: "Rear Dick",
  30868. image: {
  30869. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30870. }
  30871. },
  30872. rearDickUnfolded: {
  30873. height: math.unit(8.78, "feet"),
  30874. name: "Rear Dick (Unfolded)",
  30875. image: {
  30876. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30877. }
  30878. },
  30879. wings: {
  30880. height: math.unit(43, "feet"),
  30881. name: "Wings",
  30882. image: {
  30883. source: "./media/characters/irb'iiritaahn/wings.svg"
  30884. }
  30885. },
  30886. },
  30887. [
  30888. {
  30889. name: "Macro",
  30890. height: math.unit(50 + 9/12, "feet"),
  30891. default: true
  30892. },
  30893. ]
  30894. ))
  30895. characterMakers.push(() => makeCharacter(
  30896. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30897. {
  30898. front: {
  30899. height: math.unit(205, "cm"),
  30900. weight: math.unit(102, "kg"),
  30901. name: "Front",
  30902. image: {
  30903. source: "./media/characters/irbisgreif/front.svg",
  30904. extra: 785/706,
  30905. bottom: 13/798
  30906. }
  30907. },
  30908. back: {
  30909. height: math.unit(205, "cm"),
  30910. weight: math.unit(102, "kg"),
  30911. name: "Back",
  30912. image: {
  30913. source: "./media/characters/irbisgreif/back.svg",
  30914. extra: 713/701,
  30915. bottom: 26/739
  30916. }
  30917. },
  30918. frontDressed: {
  30919. height: math.unit(216, "cm"),
  30920. weight: math.unit(102, "kg"),
  30921. name: "Front-dressed",
  30922. image: {
  30923. source: "./media/characters/irbisgreif/front-dressed.svg",
  30924. extra: 902/776,
  30925. bottom: 14/916
  30926. }
  30927. },
  30928. sideDressed: {
  30929. height: math.unit(195, "cm"),
  30930. weight: math.unit(102, "kg"),
  30931. name: "Side-dressed",
  30932. image: {
  30933. source: "./media/characters/irbisgreif/side-dressed.svg",
  30934. extra: 788/688,
  30935. bottom: 21/809
  30936. }
  30937. },
  30938. backDressed: {
  30939. height: math.unit(216, "cm"),
  30940. weight: math.unit(102, "kg"),
  30941. name: "Back-dressed",
  30942. image: {
  30943. source: "./media/characters/irbisgreif/back-dressed.svg",
  30944. extra: 901/783,
  30945. bottom: 10/911
  30946. }
  30947. },
  30948. dick: {
  30949. height: math.unit(0.49, "feet"),
  30950. name: "Dick",
  30951. image: {
  30952. source: "./media/characters/irbisgreif/dick.svg"
  30953. }
  30954. },
  30955. wingTop: {
  30956. height: math.unit(1.93 , "feet"),
  30957. name: "Wing-top",
  30958. image: {
  30959. source: "./media/characters/irbisgreif/wing-top.svg"
  30960. }
  30961. },
  30962. wingBottom: {
  30963. height: math.unit(1.93 , "feet"),
  30964. name: "Wing-bottom",
  30965. image: {
  30966. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30967. }
  30968. },
  30969. },
  30970. [
  30971. {
  30972. name: "Normal",
  30973. height: math.unit(216, "cm"),
  30974. default: true
  30975. },
  30976. ]
  30977. ))
  30978. characterMakers.push(() => makeCharacter(
  30979. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30980. {
  30981. front: {
  30982. height: math.unit(6, "feet"),
  30983. weight: math.unit(150, "lb"),
  30984. name: "Front",
  30985. image: {
  30986. source: "./media/characters/pride/front.svg",
  30987. extra: 1299/1230,
  30988. bottom: 18/1317
  30989. }
  30990. },
  30991. },
  30992. [
  30993. {
  30994. name: "Normal",
  30995. height: math.unit(7, "feet")
  30996. },
  30997. {
  30998. name: "Mini-macro",
  30999. height: math.unit(11, "feet")
  31000. },
  31001. {
  31002. name: "Macro",
  31003. height: math.unit(15, "meters"),
  31004. default: true
  31005. },
  31006. {
  31007. name: "Macro+",
  31008. height: math.unit(40, "meters")
  31009. },
  31010. ]
  31011. ))
  31012. characterMakers.push(() => makeCharacter(
  31013. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31014. {
  31015. front: {
  31016. height: math.unit(4 + 2 / 12, "feet"),
  31017. weight: math.unit(95, "lb"),
  31018. name: "Front",
  31019. image: {
  31020. source: "./media/characters/vaelophis-nyx/front.svg",
  31021. extra: 2532/2330,
  31022. bottom: 0/2532
  31023. }
  31024. },
  31025. back: {
  31026. height: math.unit(4 + 2 / 12, "feet"),
  31027. weight: math.unit(95, "lb"),
  31028. name: "Back",
  31029. image: {
  31030. source: "./media/characters/vaelophis-nyx/back.svg",
  31031. extra: 2484/2361,
  31032. bottom: 0/2484
  31033. }
  31034. },
  31035. feralSide: {
  31036. height: math.unit(2 + 1/12, "feet"),
  31037. weight: math.unit(20, "lb"),
  31038. name: "Feral (Side)",
  31039. image: {
  31040. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31041. extra: 1721/1581,
  31042. bottom: 70/1791
  31043. }
  31044. },
  31045. feralLazing: {
  31046. height: math.unit(1.08, "feet"),
  31047. weight: math.unit(20, "lb"),
  31048. name: "Feral (Lazing)",
  31049. image: {
  31050. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31051. extra: 822/822,
  31052. bottom: 248/1070
  31053. }
  31054. },
  31055. ear: {
  31056. height: math.unit(0.416, "feet"),
  31057. name: "Ear",
  31058. image: {
  31059. source: "./media/characters/vaelophis-nyx/ear.svg"
  31060. }
  31061. },
  31062. eye: {
  31063. height: math.unit(0.0748, "feet"),
  31064. name: "Eye",
  31065. image: {
  31066. source: "./media/characters/vaelophis-nyx/eye.svg"
  31067. }
  31068. },
  31069. mouth: {
  31070. height: math.unit(0.378, "feet"),
  31071. name: "Mouth",
  31072. image: {
  31073. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31074. }
  31075. },
  31076. spade: {
  31077. height: math.unit(0.55, "feet"),
  31078. name: "Spade",
  31079. image: {
  31080. source: "./media/characters/vaelophis-nyx/spade.svg"
  31081. }
  31082. },
  31083. },
  31084. [
  31085. {
  31086. name: "Normal",
  31087. height: math.unit(4 + 2/12, "feet"),
  31088. default: true
  31089. },
  31090. ]
  31091. ))
  31092. characterMakers.push(() => makeCharacter(
  31093. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31094. {
  31095. front: {
  31096. height: math.unit(7, "feet"),
  31097. weight: math.unit(231, "lb"),
  31098. name: "Front",
  31099. image: {
  31100. source: "./media/characters/flux/front.svg",
  31101. extra: 919/871,
  31102. bottom: 0/919
  31103. }
  31104. },
  31105. back: {
  31106. height: math.unit(7, "feet"),
  31107. weight: math.unit(231, "lb"),
  31108. name: "Back",
  31109. image: {
  31110. source: "./media/characters/flux/back.svg",
  31111. extra: 1040/992,
  31112. bottom: 0/1040
  31113. }
  31114. },
  31115. frontDressed: {
  31116. height: math.unit(7, "feet"),
  31117. weight: math.unit(231, "lb"),
  31118. name: "Front (Dressed)",
  31119. image: {
  31120. source: "./media/characters/flux/front-dressed.svg",
  31121. extra: 919/871,
  31122. bottom: 0/919
  31123. }
  31124. },
  31125. feralSide: {
  31126. height: math.unit(5, "feet"),
  31127. weight: math.unit(150, "lb"),
  31128. name: "Feral (Side)",
  31129. image: {
  31130. source: "./media/characters/flux/feral-side.svg",
  31131. extra: 598/528,
  31132. bottom: 28/626
  31133. }
  31134. },
  31135. head: {
  31136. height: math.unit(1.585, "feet"),
  31137. name: "Head",
  31138. image: {
  31139. source: "./media/characters/flux/head.svg"
  31140. }
  31141. },
  31142. headSide: {
  31143. height: math.unit(1.74, "feet"),
  31144. name: "Head (Side)",
  31145. image: {
  31146. source: "./media/characters/flux/head-side.svg"
  31147. }
  31148. },
  31149. headSideFire: {
  31150. height: math.unit(1.76, "feet"),
  31151. name: "Head (Side, Fire)",
  31152. image: {
  31153. source: "./media/characters/flux/head-side-fire.svg"
  31154. }
  31155. },
  31156. },
  31157. [
  31158. {
  31159. name: "Normal",
  31160. height: math.unit(7, "feet"),
  31161. default: true
  31162. },
  31163. ]
  31164. ))
  31165. characterMakers.push(() => makeCharacter(
  31166. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31167. {
  31168. front: {
  31169. height: math.unit(9, "feet"),
  31170. weight: math.unit(1012, "lb"),
  31171. name: "Front",
  31172. image: {
  31173. source: "./media/characters/ulfra-lupae/front.svg",
  31174. extra: 1083/1011,
  31175. bottom: 67/1150
  31176. }
  31177. },
  31178. },
  31179. [
  31180. {
  31181. name: "Micro",
  31182. height: math.unit(6, "inches")
  31183. },
  31184. {
  31185. name: "Socializing",
  31186. height: math.unit(6 + 5/12, "feet")
  31187. },
  31188. {
  31189. name: "Normal",
  31190. height: math.unit(9, "feet"),
  31191. default: true
  31192. },
  31193. {
  31194. name: "Macro",
  31195. height: math.unit(150, "feet")
  31196. },
  31197. ]
  31198. ))
  31199. characterMakers.push(() => makeCharacter(
  31200. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31201. {
  31202. front: {
  31203. height: math.unit(5 + 2/12, "feet"),
  31204. weight: math.unit(120, "lb"),
  31205. name: "Front",
  31206. image: {
  31207. source: "./media/characters/timber/front.svg",
  31208. extra: 2814/2705,
  31209. bottom: 181/2995
  31210. }
  31211. },
  31212. },
  31213. [
  31214. {
  31215. name: "Normal",
  31216. height: math.unit(5 + 2/12, "feet"),
  31217. default: true
  31218. },
  31219. ]
  31220. ))
  31221. characterMakers.push(() => makeCharacter(
  31222. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31223. {
  31224. front: {
  31225. height: math.unit(5 + 7/12, "feet"),
  31226. weight: math.unit(220, "lb"),
  31227. name: "Front",
  31228. image: {
  31229. source: "./media/characters/nicki/front.svg",
  31230. extra: 453/419,
  31231. bottom: 7/460
  31232. }
  31233. },
  31234. frontAlt: {
  31235. height: math.unit(5 + 7/12, "feet"),
  31236. weight: math.unit(220, "lb"),
  31237. name: "Front-alt",
  31238. image: {
  31239. source: "./media/characters/nicki/front-alt.svg",
  31240. extra: 435/411,
  31241. bottom: 12/447
  31242. }
  31243. },
  31244. back: {
  31245. height: math.unit(5 + 7/12, "feet"),
  31246. weight: math.unit(220, "lb"),
  31247. name: "Back",
  31248. image: {
  31249. source: "./media/characters/nicki/back.svg",
  31250. extra: 440/413,
  31251. bottom: 19/459
  31252. }
  31253. },
  31254. taur: {
  31255. height: math.unit(7 + 6/12, "feet"),
  31256. weight: math.unit(700, "lb"),
  31257. name: "Taur",
  31258. image: {
  31259. source: "./media/characters/nicki/taur.svg",
  31260. extra: 975/773,
  31261. bottom: 0/975
  31262. }
  31263. },
  31264. frontNsfw: {
  31265. height: math.unit(5 + 7/12, "feet"),
  31266. weight: math.unit(220, "lb"),
  31267. name: "Front (NSFW)",
  31268. image: {
  31269. source: "./media/characters/nicki/front-nsfw.svg",
  31270. extra: 453/419,
  31271. bottom: 7/460
  31272. }
  31273. },
  31274. frontNsfwAlt: {
  31275. height: math.unit(5 + 7/12, "feet"),
  31276. weight: math.unit(220, "lb"),
  31277. name: "Front (Alt, NSFW)",
  31278. image: {
  31279. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31280. extra: 435/411,
  31281. bottom: 12/447
  31282. }
  31283. },
  31284. backNsfw: {
  31285. height: math.unit(5 + 7/12, "feet"),
  31286. weight: math.unit(220, "lb"),
  31287. name: "Back (NSFW)",
  31288. image: {
  31289. source: "./media/characters/nicki/back-nsfw.svg",
  31290. extra: 440/413,
  31291. bottom: 19/459
  31292. }
  31293. },
  31294. head: {
  31295. height: math.unit(2.1, "feet"),
  31296. name: "Head",
  31297. image: {
  31298. source: "./media/characters/nicki/head.svg"
  31299. }
  31300. },
  31301. paw: {
  31302. height: math.unit(1.88, "feet"),
  31303. name: "Paw",
  31304. image: {
  31305. source: "./media/characters/nicki/paw.svg"
  31306. }
  31307. },
  31308. },
  31309. [
  31310. {
  31311. name: "Normal",
  31312. height: math.unit(5 + 7/12, "feet"),
  31313. default: true
  31314. },
  31315. ]
  31316. ))
  31317. characterMakers.push(() => makeCharacter(
  31318. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31319. {
  31320. front: {
  31321. height: math.unit(7 + 10/12, "feet"),
  31322. weight: math.unit(3.5, "tons"),
  31323. name: "Front",
  31324. image: {
  31325. source: "./media/characters/lee/front.svg",
  31326. extra: 1773/1615,
  31327. bottom: 86/1859
  31328. }
  31329. },
  31330. hand: {
  31331. height: math.unit(1.78, "feet"),
  31332. name: "Hand",
  31333. image: {
  31334. source: "./media/characters/lee/hand.svg"
  31335. }
  31336. },
  31337. maw: {
  31338. height: math.unit(1.18, "feet"),
  31339. name: "Maw",
  31340. image: {
  31341. source: "./media/characters/lee/maw.svg"
  31342. }
  31343. },
  31344. },
  31345. [
  31346. {
  31347. name: "Normal",
  31348. height: math.unit(7 + 10/12, "feet"),
  31349. default: true
  31350. },
  31351. ]
  31352. ))
  31353. characterMakers.push(() => makeCharacter(
  31354. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31355. {
  31356. front: {
  31357. height: math.unit(9, "feet"),
  31358. name: "Front",
  31359. image: {
  31360. source: "./media/characters/guti/front.svg",
  31361. extra: 4551/4355,
  31362. bottom: 123/4674
  31363. }
  31364. },
  31365. tongue: {
  31366. height: math.unit(1, "feet"),
  31367. name: "Tongue",
  31368. image: {
  31369. source: "./media/characters/guti/tongue.svg"
  31370. }
  31371. },
  31372. paw: {
  31373. height: math.unit(1.18, "feet"),
  31374. name: "Paw",
  31375. image: {
  31376. source: "./media/characters/guti/paw.svg"
  31377. }
  31378. },
  31379. },
  31380. [
  31381. {
  31382. name: "Normal",
  31383. height: math.unit(9, "feet"),
  31384. default: true
  31385. },
  31386. ]
  31387. ))
  31388. characterMakers.push(() => makeCharacter(
  31389. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31390. {
  31391. side: {
  31392. height: math.unit(5, "meters"),
  31393. name: "Side",
  31394. image: {
  31395. source: "./media/characters/vesper/side.svg",
  31396. extra: 1605/1518,
  31397. bottom: 0/1605
  31398. }
  31399. },
  31400. },
  31401. [
  31402. {
  31403. name: "Small",
  31404. height: math.unit(5, "meters")
  31405. },
  31406. {
  31407. name: "Sage",
  31408. height: math.unit(100, "meters"),
  31409. default: true
  31410. },
  31411. {
  31412. name: "Fun Size",
  31413. height: math.unit(600, "meters")
  31414. },
  31415. {
  31416. name: "Goddess",
  31417. height: math.unit(20000, "km")
  31418. },
  31419. {
  31420. name: "Maximum",
  31421. height: math.unit(5, "galaxies")
  31422. },
  31423. ]
  31424. ))
  31425. characterMakers.push(() => makeCharacter(
  31426. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31427. {
  31428. front: {
  31429. height: math.unit(6 + 3/12, "feet"),
  31430. weight: math.unit(190, "lb"),
  31431. name: "Front",
  31432. image: {
  31433. source: "./media/characters/gawain/front.svg",
  31434. extra: 2222/2139,
  31435. bottom: 90/2312
  31436. }
  31437. },
  31438. back: {
  31439. height: math.unit(6 + 3/12, "feet"),
  31440. weight: math.unit(190, "lb"),
  31441. name: "Back",
  31442. image: {
  31443. source: "./media/characters/gawain/back.svg",
  31444. extra: 2199/2111,
  31445. bottom: 73/2272
  31446. }
  31447. },
  31448. },
  31449. [
  31450. {
  31451. name: "Normal",
  31452. height: math.unit(6 + 3/12, "feet"),
  31453. default: true
  31454. },
  31455. ]
  31456. ))
  31457. characterMakers.push(() => makeCharacter(
  31458. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31459. {
  31460. side: {
  31461. height: math.unit(3.5, "meters"),
  31462. weight: math.unit(16000, "lb"),
  31463. name: "Side",
  31464. image: {
  31465. source: "./media/characters/dascalti/side.svg",
  31466. extra: 392/273,
  31467. bottom: 47/439
  31468. }
  31469. },
  31470. breath: {
  31471. height: math.unit(7.4, "feet"),
  31472. name: "Breath",
  31473. image: {
  31474. source: "./media/characters/dascalti/breath.svg"
  31475. }
  31476. },
  31477. fed: {
  31478. height: math.unit(3.6, "meters"),
  31479. weight: math.unit(16000, "lb"),
  31480. name: "Fed",
  31481. image: {
  31482. source: "./media/characters/dascalti/fed.svg",
  31483. extra: 1419/820,
  31484. bottom: 95/1514
  31485. }
  31486. },
  31487. },
  31488. [
  31489. {
  31490. name: "Normal",
  31491. height: math.unit(3.5, "meters"),
  31492. default: true
  31493. },
  31494. ]
  31495. ))
  31496. characterMakers.push(() => makeCharacter(
  31497. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31498. {
  31499. front: {
  31500. height: math.unit(3 + 5/12, "feet"),
  31501. name: "Front",
  31502. image: {
  31503. source: "./media/characters/mauve/front.svg",
  31504. extra: 1126/1033,
  31505. bottom: 65/1191
  31506. }
  31507. },
  31508. side: {
  31509. height: math.unit(3 + 5/12, "feet"),
  31510. name: "Side",
  31511. image: {
  31512. source: "./media/characters/mauve/side.svg",
  31513. extra: 1089/1001,
  31514. bottom: 29/1118
  31515. }
  31516. },
  31517. back: {
  31518. height: math.unit(3 + 5/12, "feet"),
  31519. name: "Back",
  31520. image: {
  31521. source: "./media/characters/mauve/back.svg",
  31522. extra: 1173/1053,
  31523. bottom: 109/1282
  31524. }
  31525. },
  31526. },
  31527. [
  31528. {
  31529. name: "Normal",
  31530. height: math.unit(3 + 5/12, "feet"),
  31531. default: true
  31532. },
  31533. ]
  31534. ))
  31535. characterMakers.push(() => makeCharacter(
  31536. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31537. {
  31538. front: {
  31539. height: math.unit(6 + 3/12, "feet"),
  31540. weight: math.unit(430, "lb"),
  31541. name: "Front",
  31542. image: {
  31543. source: "./media/characters/carlos/front.svg",
  31544. extra: 1964/1913,
  31545. bottom: 70/2034
  31546. }
  31547. },
  31548. },
  31549. [
  31550. {
  31551. name: "Normal",
  31552. height: math.unit(6 + 3/12, "feet"),
  31553. default: true
  31554. },
  31555. ]
  31556. ))
  31557. characterMakers.push(() => makeCharacter(
  31558. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31559. {
  31560. back: {
  31561. height: math.unit(5 + 10/12, "feet"),
  31562. weight: math.unit(200, "lb"),
  31563. name: "Back",
  31564. image: {
  31565. source: "./media/characters/jax/back.svg",
  31566. extra: 764/739,
  31567. bottom: 25/789
  31568. }
  31569. },
  31570. },
  31571. [
  31572. {
  31573. name: "Normal",
  31574. height: math.unit(5 + 10/12, "feet"),
  31575. default: true
  31576. },
  31577. ]
  31578. ))
  31579. characterMakers.push(() => makeCharacter(
  31580. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31581. {
  31582. front: {
  31583. height: math.unit(8, "feet"),
  31584. weight: math.unit(250, "lb"),
  31585. name: "Front",
  31586. image: {
  31587. source: "./media/characters/eikthynir/front.svg",
  31588. extra: 1332/1166,
  31589. bottom: 82/1414
  31590. }
  31591. },
  31592. back: {
  31593. height: math.unit(8, "feet"),
  31594. weight: math.unit(250, "lb"),
  31595. name: "Back",
  31596. image: {
  31597. source: "./media/characters/eikthynir/back.svg",
  31598. extra: 1342/1190,
  31599. bottom: 19/1361
  31600. }
  31601. },
  31602. dick: {
  31603. height: math.unit(2.35, "feet"),
  31604. name: "Dick",
  31605. image: {
  31606. source: "./media/characters/eikthynir/dick.svg"
  31607. }
  31608. },
  31609. },
  31610. [
  31611. {
  31612. name: "Normal",
  31613. height: math.unit(8, "feet"),
  31614. default: true
  31615. },
  31616. ]
  31617. ))
  31618. characterMakers.push(() => makeCharacter(
  31619. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31620. {
  31621. front: {
  31622. height: math.unit(99, "meters"),
  31623. weight: math.unit(13000, "tons"),
  31624. name: "Front",
  31625. image: {
  31626. source: "./media/characters/zlmos/front.svg",
  31627. extra: 2202/1992,
  31628. bottom: 315/2517
  31629. }
  31630. },
  31631. },
  31632. [
  31633. {
  31634. name: "Macro",
  31635. height: math.unit(99, "meters"),
  31636. default: true
  31637. },
  31638. ]
  31639. ))
  31640. characterMakers.push(() => makeCharacter(
  31641. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31642. {
  31643. front: {
  31644. height: math.unit(6 + 5/12, "feet"),
  31645. name: "Front",
  31646. image: {
  31647. source: "./media/characters/purri/front.svg",
  31648. extra: 1698/1610,
  31649. bottom: 32/1730
  31650. }
  31651. },
  31652. frontAlt: {
  31653. height: math.unit(6 + 5/12, "feet"),
  31654. name: "Front (Alt)",
  31655. image: {
  31656. source: "./media/characters/purri/front-alt.svg",
  31657. extra: 450/420,
  31658. bottom: 26/476
  31659. }
  31660. },
  31661. boots: {
  31662. height: math.unit(5.5, "feet"),
  31663. name: "Boots",
  31664. image: {
  31665. source: "./media/characters/purri/boots.svg",
  31666. extra: 905/853,
  31667. bottom: 18/923
  31668. }
  31669. },
  31670. lying: {
  31671. height: math.unit(2, "feet"),
  31672. name: "Lying",
  31673. image: {
  31674. source: "./media/characters/purri/lying.svg",
  31675. extra: 940/843,
  31676. bottom: 146/1086
  31677. }
  31678. },
  31679. devious: {
  31680. height: math.unit(1.77, "feet"),
  31681. name: "Devious",
  31682. image: {
  31683. source: "./media/characters/purri/devious.svg",
  31684. extra: 1440/1155,
  31685. bottom: 147/1587
  31686. }
  31687. },
  31688. bean: {
  31689. height: math.unit(1.94, "feet"),
  31690. name: "Bean",
  31691. image: {
  31692. source: "./media/characters/purri/bean.svg"
  31693. }
  31694. },
  31695. },
  31696. [
  31697. {
  31698. name: "Micro",
  31699. height: math.unit(1, "mm")
  31700. },
  31701. {
  31702. name: "Normal",
  31703. height: math.unit(6 + 5/12, "feet"),
  31704. default: true
  31705. },
  31706. {
  31707. name: "Macro :3c",
  31708. height: math.unit(2, "miles")
  31709. },
  31710. ]
  31711. ))
  31712. characterMakers.push(() => makeCharacter(
  31713. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31714. {
  31715. front: {
  31716. height: math.unit(6 + 2/12, "feet"),
  31717. weight: math.unit(250, "lb"),
  31718. name: "Front",
  31719. image: {
  31720. source: "./media/characters/moonlight/front.svg",
  31721. extra: 1044/908,
  31722. bottom: 56/1100
  31723. }
  31724. },
  31725. feral: {
  31726. height: math.unit(3 + 1/12, "feet"),
  31727. weight: math.unit(50, "kg"),
  31728. name: "Feral",
  31729. image: {
  31730. source: "./media/characters/moonlight/feral.svg",
  31731. extra: 3705/2791,
  31732. bottom: 145/3850
  31733. }
  31734. },
  31735. paw: {
  31736. height: math.unit(1, "feet"),
  31737. name: "Paw",
  31738. image: {
  31739. source: "./media/characters/moonlight/paw.svg"
  31740. }
  31741. },
  31742. paws: {
  31743. height: math.unit(0.98, "feet"),
  31744. name: "Paws",
  31745. image: {
  31746. source: "./media/characters/moonlight/paws.svg",
  31747. extra: 939/939,
  31748. bottom: 50/989
  31749. }
  31750. },
  31751. mouth: {
  31752. height: math.unit(0.48, "feet"),
  31753. name: "Mouth",
  31754. image: {
  31755. source: "./media/characters/moonlight/mouth.svg"
  31756. }
  31757. },
  31758. dick: {
  31759. height: math.unit(1.46, "feet"),
  31760. name: "Dick",
  31761. image: {
  31762. source: "./media/characters/moonlight/dick.svg"
  31763. }
  31764. },
  31765. },
  31766. [
  31767. {
  31768. name: "Normal",
  31769. height: math.unit(6 + 2/12, "feet"),
  31770. default: true
  31771. },
  31772. {
  31773. name: "Macro",
  31774. height: math.unit(300, "feet")
  31775. },
  31776. {
  31777. name: "Macro+",
  31778. height: math.unit(1, "mile")
  31779. },
  31780. {
  31781. name: "Mt. Moon",
  31782. height: math.unit(5, "miles")
  31783. },
  31784. {
  31785. name: "Megamacro",
  31786. height: math.unit(15, "miles")
  31787. },
  31788. ]
  31789. ))
  31790. characterMakers.push(() => makeCharacter(
  31791. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31792. {
  31793. back: {
  31794. height: math.unit(6, "feet"),
  31795. weight: math.unit(150, "lb"),
  31796. name: "Back",
  31797. image: {
  31798. source: "./media/characters/sylen/back.svg",
  31799. extra: 1335/1273,
  31800. bottom: 107/1442
  31801. }
  31802. },
  31803. },
  31804. [
  31805. {
  31806. name: "Normal",
  31807. height: math.unit(5 + 5/12, "feet")
  31808. },
  31809. {
  31810. name: "Megamacro",
  31811. height: math.unit(3, "miles"),
  31812. default: true
  31813. },
  31814. ]
  31815. ))
  31816. characterMakers.push(() => makeCharacter(
  31817. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31818. {
  31819. front: {
  31820. height: math.unit(6, "feet"),
  31821. weight: math.unit(190, "lb"),
  31822. name: "Front",
  31823. image: {
  31824. source: "./media/characters/huttser/front.svg",
  31825. extra: 1152/1058,
  31826. bottom: 23/1175
  31827. }
  31828. },
  31829. side: {
  31830. height: math.unit(6, "feet"),
  31831. weight: math.unit(190, "lb"),
  31832. name: "Side",
  31833. image: {
  31834. source: "./media/characters/huttser/side.svg",
  31835. extra: 1174/1065,
  31836. bottom: 18/1192
  31837. }
  31838. },
  31839. back: {
  31840. height: math.unit(6, "feet"),
  31841. weight: math.unit(190, "lb"),
  31842. name: "Back",
  31843. image: {
  31844. source: "./media/characters/huttser/back.svg",
  31845. extra: 1158/1056,
  31846. bottom: 12/1170
  31847. }
  31848. },
  31849. },
  31850. [
  31851. ]
  31852. ))
  31853. characterMakers.push(() => makeCharacter(
  31854. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31855. {
  31856. side: {
  31857. height: math.unit(12 + 9/12, "feet"),
  31858. weight: math.unit(15000, "lb"),
  31859. name: "Side",
  31860. image: {
  31861. source: "./media/characters/faan/side.svg",
  31862. extra: 2747/2697,
  31863. bottom: 0/2747
  31864. }
  31865. },
  31866. front: {
  31867. height: math.unit(12 + 9/12, "feet"),
  31868. weight: math.unit(15000, "lb"),
  31869. name: "Front",
  31870. image: {
  31871. source: "./media/characters/faan/front.svg",
  31872. extra: 607/571,
  31873. bottom: 24/631
  31874. }
  31875. },
  31876. head: {
  31877. height: math.unit(2.85, "feet"),
  31878. name: "Head",
  31879. image: {
  31880. source: "./media/characters/faan/head.svg"
  31881. }
  31882. },
  31883. headAlt: {
  31884. height: math.unit(3.13, "feet"),
  31885. name: "Head-alt",
  31886. image: {
  31887. source: "./media/characters/faan/head-alt.svg"
  31888. }
  31889. },
  31890. },
  31891. [
  31892. {
  31893. name: "Normal",
  31894. height: math.unit(12 + 9/12, "feet"),
  31895. default: true
  31896. },
  31897. ]
  31898. ))
  31899. characterMakers.push(() => makeCharacter(
  31900. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31901. {
  31902. front: {
  31903. height: math.unit(6, "feet"),
  31904. weight: math.unit(300, "lb"),
  31905. name: "Front",
  31906. image: {
  31907. source: "./media/characters/tanio/front.svg",
  31908. extra: 711/673,
  31909. bottom: 25/736
  31910. }
  31911. },
  31912. },
  31913. [
  31914. {
  31915. name: "Normal",
  31916. height: math.unit(6, "feet"),
  31917. default: true
  31918. },
  31919. ]
  31920. ))
  31921. characterMakers.push(() => makeCharacter(
  31922. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31923. {
  31924. front: {
  31925. height: math.unit(3, "inches"),
  31926. name: "Front",
  31927. image: {
  31928. source: "./media/characters/noboru/front.svg",
  31929. extra: 1039/932,
  31930. bottom: 18/1057
  31931. }
  31932. },
  31933. },
  31934. [
  31935. {
  31936. name: "Micro",
  31937. height: math.unit(3, "inches"),
  31938. default: true
  31939. },
  31940. ]
  31941. ))
  31942. characterMakers.push(() => makeCharacter(
  31943. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31944. {
  31945. front: {
  31946. height: math.unit(1.85, "meters"),
  31947. weight: math.unit(80, "kg"),
  31948. name: "Front",
  31949. image: {
  31950. source: "./media/characters/daniel-barrett/front.svg",
  31951. extra: 355/337,
  31952. bottom: 9/364
  31953. }
  31954. },
  31955. },
  31956. [
  31957. {
  31958. name: "Pico",
  31959. height: math.unit(0.0433, "mm")
  31960. },
  31961. {
  31962. name: "Nano",
  31963. height: math.unit(1.5, "mm")
  31964. },
  31965. {
  31966. name: "Micro",
  31967. height: math.unit(5.3, "cm"),
  31968. default: true
  31969. },
  31970. {
  31971. name: "Normal",
  31972. height: math.unit(1.85, "meters")
  31973. },
  31974. {
  31975. name: "Macro",
  31976. height: math.unit(64.7, "meters")
  31977. },
  31978. {
  31979. name: "Megamacro",
  31980. height: math.unit(2.26, "km")
  31981. },
  31982. {
  31983. name: "Gigamacro",
  31984. height: math.unit(79, "km")
  31985. },
  31986. {
  31987. name: "Teramacro",
  31988. height: math.unit(2765, "km")
  31989. },
  31990. {
  31991. name: "Petamacro",
  31992. height: math.unit(96678, "km")
  31993. },
  31994. ]
  31995. ))
  31996. characterMakers.push(() => makeCharacter(
  31997. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31998. {
  31999. front: {
  32000. height: math.unit(30, "meters"),
  32001. weight: math.unit(400, "tons"),
  32002. name: "Front",
  32003. image: {
  32004. source: "./media/characters/zeel/front.svg",
  32005. extra: 2599/2599,
  32006. bottom: 226/2825
  32007. }
  32008. },
  32009. },
  32010. [
  32011. {
  32012. name: "Macro",
  32013. height: math.unit(30, "meters"),
  32014. default: true
  32015. },
  32016. ]
  32017. ))
  32018. characterMakers.push(() => makeCharacter(
  32019. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32020. {
  32021. front: {
  32022. height: math.unit(6 + 7/12, "feet"),
  32023. weight: math.unit(210, "lb"),
  32024. name: "Front",
  32025. image: {
  32026. source: "./media/characters/tarn/front.svg",
  32027. extra: 3517/3220,
  32028. bottom: 91/3608
  32029. }
  32030. },
  32031. back: {
  32032. height: math.unit(6 + 7/12, "feet"),
  32033. weight: math.unit(210, "lb"),
  32034. name: "Back",
  32035. image: {
  32036. source: "./media/characters/tarn/back.svg",
  32037. extra: 3566/3241,
  32038. bottom: 34/3600
  32039. }
  32040. },
  32041. dick: {
  32042. height: math.unit(1.65, "feet"),
  32043. name: "Dick",
  32044. image: {
  32045. source: "./media/characters/tarn/dick.svg"
  32046. }
  32047. },
  32048. paw: {
  32049. height: math.unit(1.80, "feet"),
  32050. name: "Paw",
  32051. image: {
  32052. source: "./media/characters/tarn/paw.svg"
  32053. }
  32054. },
  32055. tongue: {
  32056. height: math.unit(0.97, "feet"),
  32057. name: "Tongue",
  32058. image: {
  32059. source: "./media/characters/tarn/tongue.svg"
  32060. }
  32061. },
  32062. },
  32063. [
  32064. {
  32065. name: "Micro",
  32066. height: math.unit(4, "inches")
  32067. },
  32068. {
  32069. name: "Normal",
  32070. height: math.unit(6 + 7/12, "feet"),
  32071. default: true
  32072. },
  32073. {
  32074. name: "Macro",
  32075. height: math.unit(300, "feet")
  32076. },
  32077. ]
  32078. ))
  32079. characterMakers.push(() => makeCharacter(
  32080. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32081. {
  32082. front: {
  32083. height: math.unit(5 + 7/12, "feet"),
  32084. weight: math.unit(80, "kg"),
  32085. name: "Front",
  32086. image: {
  32087. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32088. extra: 3023/2865,
  32089. bottom: 33/3056
  32090. }
  32091. },
  32092. back: {
  32093. height: math.unit(5 + 7/12, "feet"),
  32094. weight: math.unit(80, "kg"),
  32095. name: "Back",
  32096. image: {
  32097. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32098. extra: 3020/2886,
  32099. bottom: 30/3050
  32100. }
  32101. },
  32102. dick: {
  32103. height: math.unit(0.98, "feet"),
  32104. name: "Dick",
  32105. image: {
  32106. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32107. }
  32108. },
  32109. anatomy: {
  32110. height: math.unit(2.86, "feet"),
  32111. name: "Anatomy",
  32112. image: {
  32113. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32114. }
  32115. },
  32116. },
  32117. [
  32118. {
  32119. name: "Really Small",
  32120. height: math.unit(2, "inches")
  32121. },
  32122. {
  32123. name: "Micro",
  32124. height: math.unit(5.583, "inches")
  32125. },
  32126. {
  32127. name: "Normal",
  32128. height: math.unit(5 + 7/12, "feet"),
  32129. default: true
  32130. },
  32131. {
  32132. name: "Macro",
  32133. height: math.unit(67, "feet")
  32134. },
  32135. {
  32136. name: "Megamacro",
  32137. height: math.unit(134, "feet")
  32138. },
  32139. ]
  32140. ))
  32141. characterMakers.push(() => makeCharacter(
  32142. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32143. {
  32144. front: {
  32145. height: math.unit(9, "feet"),
  32146. weight: math.unit(120, "lb"),
  32147. name: "Front",
  32148. image: {
  32149. source: "./media/characters/sally/front.svg",
  32150. extra: 1506/1349,
  32151. bottom: 66/1572
  32152. }
  32153. },
  32154. },
  32155. [
  32156. {
  32157. name: "Normal",
  32158. height: math.unit(9, "feet"),
  32159. default: true
  32160. },
  32161. ]
  32162. ))
  32163. characterMakers.push(() => makeCharacter(
  32164. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32165. {
  32166. front: {
  32167. height: math.unit(8, "feet"),
  32168. weight: math.unit(900, "lb"),
  32169. name: "Front",
  32170. image: {
  32171. source: "./media/characters/owen/front.svg",
  32172. extra: 1761/1657,
  32173. bottom: 74/1835
  32174. }
  32175. },
  32176. side: {
  32177. height: math.unit(8, "feet"),
  32178. weight: math.unit(900, "lb"),
  32179. name: "Side",
  32180. image: {
  32181. source: "./media/characters/owen/side.svg",
  32182. extra: 1797/1734,
  32183. bottom: 30/1827
  32184. }
  32185. },
  32186. back: {
  32187. height: math.unit(8, "feet"),
  32188. weight: math.unit(900, "lb"),
  32189. name: "Back",
  32190. image: {
  32191. source: "./media/characters/owen/back.svg",
  32192. extra: 1796/1706,
  32193. bottom: 59/1855
  32194. }
  32195. },
  32196. maw: {
  32197. height: math.unit(1.76, "feet"),
  32198. name: "Maw",
  32199. image: {
  32200. source: "./media/characters/owen/maw.svg"
  32201. }
  32202. },
  32203. },
  32204. [
  32205. {
  32206. name: "Normal",
  32207. height: math.unit(8, "feet"),
  32208. default: true
  32209. },
  32210. ]
  32211. ))
  32212. characterMakers.push(() => makeCharacter(
  32213. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32214. {
  32215. front: {
  32216. height: math.unit(4, "feet"),
  32217. weight: math.unit(400, "lb"),
  32218. name: "Front",
  32219. image: {
  32220. source: "./media/characters/ryth/front.svg",
  32221. extra: 1920/1748,
  32222. bottom: 42/1962
  32223. }
  32224. },
  32225. back: {
  32226. height: math.unit(4, "feet"),
  32227. weight: math.unit(400, "lb"),
  32228. name: "Back",
  32229. image: {
  32230. source: "./media/characters/ryth/back.svg",
  32231. extra: 1897/1690,
  32232. bottom: 89/1986
  32233. }
  32234. },
  32235. mouth: {
  32236. height: math.unit(1.39, "feet"),
  32237. name: "Mouth",
  32238. image: {
  32239. source: "./media/characters/ryth/mouth.svg"
  32240. }
  32241. },
  32242. tailmaw: {
  32243. height: math.unit(1.23, "feet"),
  32244. name: "Tailmaw",
  32245. image: {
  32246. source: "./media/characters/ryth/tailmaw.svg"
  32247. }
  32248. },
  32249. goia: {
  32250. height: math.unit(4, "meters"),
  32251. weight: math.unit(10800, "lb"),
  32252. name: "Goia",
  32253. image: {
  32254. source: "./media/characters/ryth/goia.svg",
  32255. extra: 745/640,
  32256. bottom: 107/852
  32257. }
  32258. },
  32259. goiaFront: {
  32260. height: math.unit(4, "meters"),
  32261. weight: math.unit(10800, "lb"),
  32262. name: "Goia (Front)",
  32263. image: {
  32264. source: "./media/characters/ryth/goia-front.svg",
  32265. extra: 750/586,
  32266. bottom: 114/864
  32267. }
  32268. },
  32269. goiaMaw: {
  32270. height: math.unit(5.55, "feet"),
  32271. name: "Goia Maw",
  32272. image: {
  32273. source: "./media/characters/ryth/goia-maw.svg"
  32274. }
  32275. },
  32276. goiaForepaw: {
  32277. height: math.unit(3.5, "feet"),
  32278. name: "Goia Forepaw",
  32279. image: {
  32280. source: "./media/characters/ryth/goia-forepaw.svg"
  32281. }
  32282. },
  32283. goiaHindpaw: {
  32284. height: math.unit(5.55, "feet"),
  32285. name: "Goia Hindpaw",
  32286. image: {
  32287. source: "./media/characters/ryth/goia-hindpaw.svg"
  32288. }
  32289. },
  32290. },
  32291. [
  32292. {
  32293. name: "Normal",
  32294. height: math.unit(4, "feet"),
  32295. default: true
  32296. },
  32297. ]
  32298. ))
  32299. characterMakers.push(() => makeCharacter(
  32300. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32301. {
  32302. front: {
  32303. height: math.unit(7, "feet"),
  32304. weight: math.unit(180, "lb"),
  32305. name: "Front",
  32306. image: {
  32307. source: "./media/characters/necrolance/front.svg",
  32308. extra: 1062/947,
  32309. bottom: 41/1103
  32310. }
  32311. },
  32312. back: {
  32313. height: math.unit(7, "feet"),
  32314. weight: math.unit(180, "lb"),
  32315. name: "Back",
  32316. image: {
  32317. source: "./media/characters/necrolance/back.svg",
  32318. extra: 1045/984,
  32319. bottom: 14/1059
  32320. }
  32321. },
  32322. wing: {
  32323. height: math.unit(2.67, "feet"),
  32324. name: "Wing",
  32325. image: {
  32326. source: "./media/characters/necrolance/wing.svg"
  32327. }
  32328. },
  32329. },
  32330. [
  32331. {
  32332. name: "Normal",
  32333. height: math.unit(7, "feet"),
  32334. default: true
  32335. },
  32336. ]
  32337. ))
  32338. characterMakers.push(() => makeCharacter(
  32339. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32340. {
  32341. front: {
  32342. height: math.unit(76, "meters"),
  32343. weight: math.unit(30000, "tons"),
  32344. name: "Front",
  32345. image: {
  32346. source: "./media/characters/tyler/front.svg",
  32347. extra: 1640/1640,
  32348. bottom: 114/1754
  32349. }
  32350. },
  32351. },
  32352. [
  32353. {
  32354. name: "Macro",
  32355. height: math.unit(76, "meters"),
  32356. default: true
  32357. },
  32358. ]
  32359. ))
  32360. characterMakers.push(() => makeCharacter(
  32361. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32362. {
  32363. front: {
  32364. height: math.unit(4 + 11/12, "feet"),
  32365. weight: math.unit(132, "lb"),
  32366. name: "Front",
  32367. image: {
  32368. source: "./media/characters/icey/front.svg",
  32369. extra: 2750/2550,
  32370. bottom: 33/2783
  32371. }
  32372. },
  32373. back: {
  32374. height: math.unit(4 + 11/12, "feet"),
  32375. weight: math.unit(132, "lb"),
  32376. name: "Back",
  32377. image: {
  32378. source: "./media/characters/icey/back.svg",
  32379. extra: 2624/2481,
  32380. bottom: 35/2659
  32381. }
  32382. },
  32383. },
  32384. [
  32385. {
  32386. name: "Normal",
  32387. height: math.unit(4 + 11/12, "feet"),
  32388. default: true
  32389. },
  32390. ]
  32391. ))
  32392. characterMakers.push(() => makeCharacter(
  32393. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32394. {
  32395. front: {
  32396. height: math.unit(100, "feet"),
  32397. weight: math.unit(0, "lb"),
  32398. name: "Front",
  32399. image: {
  32400. source: "./media/characters/smile/front.svg",
  32401. extra: 2983/2912,
  32402. bottom: 162/3145
  32403. }
  32404. },
  32405. back: {
  32406. height: math.unit(100, "feet"),
  32407. weight: math.unit(0, "lb"),
  32408. name: "Back",
  32409. image: {
  32410. source: "./media/characters/smile/back.svg",
  32411. extra: 3143/3031,
  32412. bottom: 91/3234
  32413. }
  32414. },
  32415. head: {
  32416. height: math.unit(26.3, "feet"),
  32417. weight: math.unit(0, "lb"),
  32418. name: "Head",
  32419. image: {
  32420. source: "./media/characters/smile/head.svg"
  32421. }
  32422. },
  32423. collar: {
  32424. height: math.unit(5.3, "feet"),
  32425. weight: math.unit(0, "lb"),
  32426. name: "Collar",
  32427. image: {
  32428. source: "./media/characters/smile/collar.svg"
  32429. }
  32430. },
  32431. },
  32432. [
  32433. {
  32434. name: "Macro",
  32435. height: math.unit(100, "feet"),
  32436. default: true
  32437. },
  32438. ]
  32439. ))
  32440. characterMakers.push(() => makeCharacter(
  32441. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32442. {
  32443. dragon: {
  32444. height: math.unit(26, "feet"),
  32445. weight: math.unit(36, "tons"),
  32446. name: "Dragon",
  32447. image: {
  32448. source: "./media/characters/arimphae/dragon.svg",
  32449. extra: 1574/983,
  32450. bottom: 357/1931
  32451. }
  32452. },
  32453. drake: {
  32454. height: math.unit(9, "feet"),
  32455. weight: math.unit(1.5, "tons"),
  32456. name: "Drake",
  32457. image: {
  32458. source: "./media/characters/arimphae/drake.svg",
  32459. extra: 1120/925,
  32460. bottom: 435/1555
  32461. }
  32462. },
  32463. },
  32464. [
  32465. {
  32466. name: "Small",
  32467. height: math.unit(26*5/9, "feet")
  32468. },
  32469. {
  32470. name: "Normal",
  32471. height: math.unit(26, "feet"),
  32472. default: true
  32473. },
  32474. ]
  32475. ))
  32476. characterMakers.push(() => makeCharacter(
  32477. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32478. {
  32479. front: {
  32480. height: math.unit(8 + 9/12, "feet"),
  32481. name: "Front",
  32482. image: {
  32483. source: "./media/characters/xander/front.svg",
  32484. extra: 1237/974,
  32485. bottom: 94/1331
  32486. }
  32487. },
  32488. },
  32489. [
  32490. {
  32491. name: "Normal",
  32492. height: math.unit(8 + 9/12, "feet"),
  32493. default: true
  32494. },
  32495. {
  32496. name: "Gaze Grabber",
  32497. height: math.unit(13 + 8/12, "feet")
  32498. },
  32499. {
  32500. name: "Jaw Dropper",
  32501. height: math.unit(27, "feet")
  32502. },
  32503. {
  32504. name: "Show Stopper",
  32505. height: math.unit(136, "feet")
  32506. },
  32507. {
  32508. name: "Superstar",
  32509. height: math.unit(1.9e6, "miles")
  32510. },
  32511. ]
  32512. ))
  32513. characterMakers.push(() => makeCharacter(
  32514. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32515. {
  32516. side: {
  32517. height: math.unit(2100, "feet"),
  32518. name: "Side",
  32519. image: {
  32520. source: "./media/characters/osiris/side.svg",
  32521. extra: 1105/939,
  32522. bottom: 167/1272
  32523. }
  32524. },
  32525. },
  32526. [
  32527. {
  32528. name: "Macro",
  32529. height: math.unit(2100, "feet"),
  32530. default: true
  32531. },
  32532. ]
  32533. ))
  32534. characterMakers.push(() => makeCharacter(
  32535. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32536. {
  32537. front: {
  32538. height: math.unit(6 + 8/12, "feet"),
  32539. weight: math.unit(225, "lb"),
  32540. name: "Front",
  32541. image: {
  32542. source: "./media/characters/rhys-londe/front.svg",
  32543. extra: 2258/2141,
  32544. bottom: 188/2446
  32545. }
  32546. },
  32547. back: {
  32548. height: math.unit(6 + 8/12, "feet"),
  32549. weight: math.unit(225, "lb"),
  32550. name: "Back",
  32551. image: {
  32552. source: "./media/characters/rhys-londe/back.svg",
  32553. extra: 2237/2137,
  32554. bottom: 63/2300
  32555. }
  32556. },
  32557. frontNsfw: {
  32558. height: math.unit(6 + 8/12, "feet"),
  32559. weight: math.unit(225, "lb"),
  32560. name: "Front (NSFW)",
  32561. image: {
  32562. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32563. extra: 2258/2141,
  32564. bottom: 188/2446
  32565. }
  32566. },
  32567. backNsfw: {
  32568. height: math.unit(6 + 8/12, "feet"),
  32569. weight: math.unit(225, "lb"),
  32570. name: "Back (NSFW)",
  32571. image: {
  32572. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32573. extra: 2237/2137,
  32574. bottom: 63/2300
  32575. }
  32576. },
  32577. dick: {
  32578. height: math.unit(30, "inches"),
  32579. name: "Dick",
  32580. image: {
  32581. source: "./media/characters/rhys-londe/dick.svg"
  32582. }
  32583. },
  32584. maw: {
  32585. height: math.unit(1.6, "feet"),
  32586. name: "Maw",
  32587. image: {
  32588. source: "./media/characters/rhys-londe/maw.svg"
  32589. }
  32590. },
  32591. },
  32592. [
  32593. {
  32594. name: "Normal",
  32595. height: math.unit(6 + 8/12, "feet"),
  32596. default: true
  32597. },
  32598. ]
  32599. ))
  32600. characterMakers.push(() => makeCharacter(
  32601. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32602. {
  32603. front: {
  32604. height: math.unit(3 + 10/12, "feet"),
  32605. weight: math.unit(90, "lb"),
  32606. name: "Front",
  32607. image: {
  32608. source: "./media/characters/taivas-ensim/front.svg",
  32609. extra: 1327/1216,
  32610. bottom: 96/1423
  32611. }
  32612. },
  32613. back: {
  32614. height: math.unit(3 + 10/12, "feet"),
  32615. weight: math.unit(90, "lb"),
  32616. name: "Back",
  32617. image: {
  32618. source: "./media/characters/taivas-ensim/back.svg",
  32619. extra: 1355/1247,
  32620. bottom: 11/1366
  32621. }
  32622. },
  32623. frontNsfw: {
  32624. height: math.unit(3 + 10/12, "feet"),
  32625. weight: math.unit(90, "lb"),
  32626. name: "Front (NSFW)",
  32627. image: {
  32628. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32629. extra: 1327/1216,
  32630. bottom: 96/1423
  32631. }
  32632. },
  32633. backNsfw: {
  32634. height: math.unit(3 + 10/12, "feet"),
  32635. weight: math.unit(90, "lb"),
  32636. name: "Back (NSFW)",
  32637. image: {
  32638. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32639. extra: 1355/1247,
  32640. bottom: 11/1366
  32641. }
  32642. },
  32643. },
  32644. [
  32645. {
  32646. name: "Normal",
  32647. height: math.unit(3 + 10/12, "feet"),
  32648. default: true
  32649. },
  32650. ]
  32651. ))
  32652. characterMakers.push(() => makeCharacter(
  32653. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32654. {
  32655. front: {
  32656. height: math.unit(9 + 6/12, "feet"),
  32657. weight: math.unit(940, "lb"),
  32658. name: "Front",
  32659. image: {
  32660. source: "./media/characters/byliss/front.svg",
  32661. extra: 1327/1290,
  32662. bottom: 82/1409
  32663. }
  32664. },
  32665. back: {
  32666. height: math.unit(9 + 6/12, "feet"),
  32667. weight: math.unit(940, "lb"),
  32668. name: "Back",
  32669. image: {
  32670. source: "./media/characters/byliss/back.svg",
  32671. extra: 1376/1349,
  32672. bottom: 9/1385
  32673. }
  32674. },
  32675. frontNsfw: {
  32676. height: math.unit(9 + 6/12, "feet"),
  32677. weight: math.unit(940, "lb"),
  32678. name: "Front (NSFW)",
  32679. image: {
  32680. source: "./media/characters/byliss/front-nsfw.svg",
  32681. extra: 1327/1290,
  32682. bottom: 82/1409
  32683. }
  32684. },
  32685. backNsfw: {
  32686. height: math.unit(9 + 6/12, "feet"),
  32687. weight: math.unit(940, "lb"),
  32688. name: "Back (NSFW)",
  32689. image: {
  32690. source: "./media/characters/byliss/back-nsfw.svg",
  32691. extra: 1376/1349,
  32692. bottom: 9/1385
  32693. }
  32694. },
  32695. },
  32696. [
  32697. {
  32698. name: "Normal",
  32699. height: math.unit(9 + 6/12, "feet"),
  32700. default: true
  32701. },
  32702. ]
  32703. ))
  32704. characterMakers.push(() => makeCharacter(
  32705. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32706. {
  32707. front: {
  32708. height: math.unit(5 + 2/12, "feet"),
  32709. weight: math.unit(200, "lb"),
  32710. name: "Front",
  32711. image: {
  32712. source: "./media/characters/noraly/front.svg",
  32713. extra: 4985/4773,
  32714. bottom: 150/5135
  32715. }
  32716. },
  32717. full: {
  32718. height: math.unit(5 + 2/12, "feet"),
  32719. weight: math.unit(164, "lb"),
  32720. name: "Full",
  32721. image: {
  32722. source: "./media/characters/noraly/full.svg",
  32723. extra: 1114/1059,
  32724. bottom: 35/1149
  32725. }
  32726. },
  32727. fuller: {
  32728. height: math.unit(5 + 2/12, "feet"),
  32729. weight: math.unit(230, "lb"),
  32730. name: "Fuller",
  32731. image: {
  32732. source: "./media/characters/noraly/fuller.svg",
  32733. extra: 1114/1059,
  32734. bottom: 35/1149
  32735. }
  32736. },
  32737. fullest: {
  32738. height: math.unit(5 + 2/12, "feet"),
  32739. weight: math.unit(300, "lb"),
  32740. name: "Fullest",
  32741. image: {
  32742. source: "./media/characters/noraly/fullest.svg",
  32743. extra: 1114/1059,
  32744. bottom: 35/1149
  32745. }
  32746. },
  32747. },
  32748. [
  32749. {
  32750. name: "Normal",
  32751. height: math.unit(5 + 2/12, "feet"),
  32752. default: true
  32753. },
  32754. ]
  32755. ))
  32756. characterMakers.push(() => makeCharacter(
  32757. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32758. {
  32759. front: {
  32760. height: math.unit(5 + 2/12, "feet"),
  32761. weight: math.unit(210, "lb"),
  32762. name: "Front",
  32763. image: {
  32764. source: "./media/characters/pera/front.svg",
  32765. extra: 1560/1531,
  32766. bottom: 165/1725
  32767. }
  32768. },
  32769. back: {
  32770. height: math.unit(5 + 2/12, "feet"),
  32771. weight: math.unit(210, "lb"),
  32772. name: "Back",
  32773. image: {
  32774. source: "./media/characters/pera/back.svg",
  32775. extra: 1523/1493,
  32776. bottom: 152/1675
  32777. }
  32778. },
  32779. dick: {
  32780. height: math.unit(2.4, "feet"),
  32781. name: "Dick",
  32782. image: {
  32783. source: "./media/characters/pera/dick.svg"
  32784. }
  32785. },
  32786. },
  32787. [
  32788. {
  32789. name: "Normal",
  32790. height: math.unit(5 + 2/12, "feet"),
  32791. default: true
  32792. },
  32793. ]
  32794. ))
  32795. characterMakers.push(() => makeCharacter(
  32796. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32797. {
  32798. front: {
  32799. height: math.unit(12, "feet"),
  32800. weight: math.unit(3200, "lb"),
  32801. name: "Front",
  32802. image: {
  32803. source: "./media/characters/julian/front.svg",
  32804. extra: 2962/2701,
  32805. bottom: 184/3146
  32806. }
  32807. },
  32808. maw: {
  32809. height: math.unit(5.35, "feet"),
  32810. name: "Maw",
  32811. image: {
  32812. source: "./media/characters/julian/maw.svg"
  32813. }
  32814. },
  32815. paw: {
  32816. height: math.unit(3.07, "feet"),
  32817. name: "Paw",
  32818. image: {
  32819. source: "./media/characters/julian/paw.svg"
  32820. }
  32821. },
  32822. },
  32823. [
  32824. {
  32825. name: "Default",
  32826. height: math.unit(12, "feet"),
  32827. default: true
  32828. },
  32829. {
  32830. name: "Big",
  32831. height: math.unit(50, "feet")
  32832. },
  32833. {
  32834. name: "Really Big",
  32835. height: math.unit(1, "mile")
  32836. },
  32837. {
  32838. name: "Extremely Big",
  32839. height: math.unit(100, "miles")
  32840. },
  32841. {
  32842. name: "Planet Hugger",
  32843. height: math.unit(200, "megameters")
  32844. },
  32845. {
  32846. name: "Unreasonably Big",
  32847. height: math.unit(1e300, "meters")
  32848. },
  32849. ]
  32850. ))
  32851. characterMakers.push(() => makeCharacter(
  32852. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32853. {
  32854. solgooleo: {
  32855. height: math.unit(4, "meters"),
  32856. weight: math.unit(6000*1.5, "kg"),
  32857. volume: math.unit(6000, "liters"),
  32858. name: "Solgooleo",
  32859. image: {
  32860. source: "./media/characters/pi/solgooleo.svg",
  32861. extra: 388/331,
  32862. bottom: 29/417
  32863. }
  32864. },
  32865. },
  32866. [
  32867. {
  32868. name: "Normal",
  32869. height: math.unit(4, "meters"),
  32870. default: true
  32871. },
  32872. ]
  32873. ))
  32874. characterMakers.push(() => makeCharacter(
  32875. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32876. {
  32877. front: {
  32878. height: math.unit(8, "feet"),
  32879. weight: math.unit(4, "tons"),
  32880. name: "Front",
  32881. image: {
  32882. source: "./media/characters/shaun/front.svg",
  32883. extra: 503/495,
  32884. bottom: 20/523
  32885. }
  32886. },
  32887. back: {
  32888. height: math.unit(8, "feet"),
  32889. weight: math.unit(4, "tons"),
  32890. name: "Back",
  32891. image: {
  32892. source: "./media/characters/shaun/back.svg",
  32893. extra: 487/480,
  32894. bottom: 20/507
  32895. }
  32896. },
  32897. },
  32898. [
  32899. {
  32900. name: "Lorg",
  32901. height: math.unit(8, "feet"),
  32902. default: true
  32903. },
  32904. ]
  32905. ))
  32906. characterMakers.push(() => makeCharacter(
  32907. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32908. {
  32909. front: {
  32910. height: math.unit(7, "feet"),
  32911. name: "Front",
  32912. image: {
  32913. source: "./media/characters/sini/front.svg",
  32914. extra: 726/678,
  32915. bottom: 35/761
  32916. }
  32917. },
  32918. back: {
  32919. height: math.unit(7, "feet"),
  32920. name: "Back",
  32921. image: {
  32922. source: "./media/characters/sini/back.svg",
  32923. extra: 743/701,
  32924. bottom: 12/755
  32925. }
  32926. },
  32927. mawAnthro: {
  32928. height: math.unit(2.14, "feet"),
  32929. name: "Maw (Anthro)",
  32930. image: {
  32931. source: "./media/characters/sini/maw-anthro.svg"
  32932. }
  32933. },
  32934. dick: {
  32935. height: math.unit(1.45, "feet"),
  32936. name: "Dick (Anthro)",
  32937. image: {
  32938. source: "./media/characters/sini/dick-anthro.svg"
  32939. }
  32940. },
  32941. feral: {
  32942. height: math.unit(16, "feet"),
  32943. name: "Feral",
  32944. image: {
  32945. source: "./media/characters/sini/feral.svg",
  32946. extra: 814/605,
  32947. bottom: 11/825
  32948. }
  32949. },
  32950. mawFeral: {
  32951. height: math.unit(5.66, "feet"),
  32952. name: "Maw-feral",
  32953. image: {
  32954. source: "./media/characters/sini/maw-feral.svg"
  32955. }
  32956. },
  32957. footFeral: {
  32958. height: math.unit(5.17, "feet"),
  32959. name: "Foot-feral",
  32960. image: {
  32961. source: "./media/characters/sini/foot-feral.svg"
  32962. }
  32963. },
  32964. },
  32965. [
  32966. {
  32967. name: "Normal",
  32968. height: math.unit(7, "feet"),
  32969. default: true
  32970. },
  32971. ]
  32972. ))
  32973. characterMakers.push(() => makeCharacter(
  32974. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32975. {
  32976. side: {
  32977. height: math.unit(13, "meters"),
  32978. weight: math.unit(9072, "kg"),
  32979. name: "Side",
  32980. image: {
  32981. source: "./media/characters/raylldo/side.svg",
  32982. extra: 403/344,
  32983. bottom: 42/445
  32984. }
  32985. },
  32986. leaping: {
  32987. height: math.unit(12.3, "meters"),
  32988. weight: math.unit(9072, "kg"),
  32989. name: "Leaping",
  32990. image: {
  32991. source: "./media/characters/raylldo/leaping.svg",
  32992. extra: 470/249,
  32993. bottom: 13/483
  32994. }
  32995. },
  32996. flying: {
  32997. height: math.unit(18, "meters"),
  32998. weight: math.unit(9072, "kg"),
  32999. name: "Flying",
  33000. image: {
  33001. source: "./media/characters/raylldo/flying.svg"
  33002. }
  33003. },
  33004. head: {
  33005. height: math.unit(5.85, "meters"),
  33006. name: "Head",
  33007. image: {
  33008. source: "./media/characters/raylldo/head.svg"
  33009. }
  33010. },
  33011. maw: {
  33012. height: math.unit(5.32, "meters"),
  33013. name: "Maw",
  33014. image: {
  33015. source: "./media/characters/raylldo/maw.svg"
  33016. }
  33017. },
  33018. eye: {
  33019. height: math.unit(0.54, "meters"),
  33020. name: "Eye",
  33021. image: {
  33022. source: "./media/characters/raylldo/eye.svg"
  33023. }
  33024. },
  33025. },
  33026. [
  33027. {
  33028. name: "Normal",
  33029. height: math.unit(13, "meters"),
  33030. default: true
  33031. },
  33032. ]
  33033. ))
  33034. characterMakers.push(() => makeCharacter(
  33035. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33036. {
  33037. anthroFront: {
  33038. height: math.unit(9, "feet"),
  33039. weight: math.unit(600, "lb"),
  33040. name: "Anthro (Front)",
  33041. image: {
  33042. source: "./media/characters/glint/anthro-front.svg",
  33043. extra: 1097/1018,
  33044. bottom: 28/1125
  33045. }
  33046. },
  33047. anthroBack: {
  33048. height: math.unit(9, "feet"),
  33049. weight: math.unit(600, "lb"),
  33050. name: "Anthro (Back)",
  33051. image: {
  33052. source: "./media/characters/glint/anthro-back.svg",
  33053. extra: 1154/997,
  33054. bottom: 36/1190
  33055. }
  33056. },
  33057. feral: {
  33058. height: math.unit(11, "feet"),
  33059. weight: math.unit(50000, "lb"),
  33060. name: "Feral",
  33061. image: {
  33062. source: "./media/characters/glint/feral.svg",
  33063. extra: 3035/1585,
  33064. bottom: 1169/4204
  33065. }
  33066. },
  33067. dickAnthro: {
  33068. height: math.unit(0.7, "meters"),
  33069. name: "Dick (Anthro)",
  33070. image: {
  33071. source: "./media/characters/glint/dick-anthro.svg"
  33072. }
  33073. },
  33074. dickFeral: {
  33075. height: math.unit(2.65, "meters"),
  33076. name: "Dick (Feral)",
  33077. image: {
  33078. source: "./media/characters/glint/dick-feral.svg"
  33079. }
  33080. },
  33081. slitHidden: {
  33082. height: math.unit(5.85, "meters"),
  33083. name: "Slit (Hidden)",
  33084. image: {
  33085. source: "./media/characters/glint/slit-hidden.svg"
  33086. }
  33087. },
  33088. slitErect: {
  33089. height: math.unit(5.85, "meters"),
  33090. name: "Slit (Erect)",
  33091. image: {
  33092. source: "./media/characters/glint/slit-erect.svg"
  33093. }
  33094. },
  33095. mawAnthro: {
  33096. height: math.unit(0.63, "meters"),
  33097. name: "Maw (Anthro)",
  33098. image: {
  33099. source: "./media/characters/glint/maw.svg"
  33100. }
  33101. },
  33102. mawFeral: {
  33103. height: math.unit(2.89, "meters"),
  33104. name: "Maw (Feral)",
  33105. image: {
  33106. source: "./media/characters/glint/maw.svg"
  33107. }
  33108. },
  33109. },
  33110. [
  33111. {
  33112. name: "Normal",
  33113. height: math.unit(9, "feet"),
  33114. default: true
  33115. },
  33116. ]
  33117. ))
  33118. characterMakers.push(() => makeCharacter(
  33119. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33120. {
  33121. side: {
  33122. height: math.unit(15, "feet"),
  33123. weight: math.unit(5000, "kg"),
  33124. name: "Side",
  33125. image: {
  33126. source: "./media/characters/kairne/side.svg",
  33127. extra: 979/811,
  33128. bottom: 13/992
  33129. }
  33130. },
  33131. front: {
  33132. height: math.unit(15, "feet"),
  33133. weight: math.unit(5000, "kg"),
  33134. name: "Front",
  33135. image: {
  33136. source: "./media/characters/kairne/front.svg",
  33137. extra: 908/814,
  33138. bottom: 26/934
  33139. }
  33140. },
  33141. sideNsfw: {
  33142. height: math.unit(15, "feet"),
  33143. weight: math.unit(5000, "kg"),
  33144. name: "Side (NSFW)",
  33145. image: {
  33146. source: "./media/characters/kairne/side-nsfw.svg",
  33147. extra: 979/811,
  33148. bottom: 13/992
  33149. }
  33150. },
  33151. frontNsfw: {
  33152. height: math.unit(15, "feet"),
  33153. weight: math.unit(5000, "kg"),
  33154. name: "Front (NSFW)",
  33155. image: {
  33156. source: "./media/characters/kairne/front-nsfw.svg",
  33157. extra: 908/814,
  33158. bottom: 26/934
  33159. }
  33160. },
  33161. dickCaged: {
  33162. height: math.unit(0.65, "meters"),
  33163. name: "Dick-caged",
  33164. image: {
  33165. source: "./media/characters/kairne/dick-caged.svg"
  33166. }
  33167. },
  33168. dick: {
  33169. height: math.unit(0.79, "meters"),
  33170. name: "Dick",
  33171. image: {
  33172. source: "./media/characters/kairne/dick.svg"
  33173. }
  33174. },
  33175. genitals: {
  33176. height: math.unit(1.29, "meters"),
  33177. name: "Genitals",
  33178. image: {
  33179. source: "./media/characters/kairne/genitals.svg"
  33180. }
  33181. },
  33182. maw: {
  33183. height: math.unit(1.73, "meters"),
  33184. name: "Maw",
  33185. image: {
  33186. source: "./media/characters/kairne/maw.svg"
  33187. }
  33188. },
  33189. },
  33190. [
  33191. {
  33192. name: "Normal",
  33193. height: math.unit(15, "feet"),
  33194. default: true
  33195. },
  33196. ]
  33197. ))
  33198. characterMakers.push(() => makeCharacter(
  33199. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33200. {
  33201. front: {
  33202. height: math.unit(5 + 8/12, "feet"),
  33203. weight: math.unit(139, "lb"),
  33204. name: "Front",
  33205. image: {
  33206. source: "./media/characters/biscuit-jackal/front.svg",
  33207. extra: 2106/1961,
  33208. bottom: 58/2164
  33209. }
  33210. },
  33211. back: {
  33212. height: math.unit(5 + 8/12, "feet"),
  33213. weight: math.unit(139, "lb"),
  33214. name: "Back",
  33215. image: {
  33216. source: "./media/characters/biscuit-jackal/back.svg",
  33217. extra: 2132/1976,
  33218. bottom: 57/2189
  33219. }
  33220. },
  33221. werejackal: {
  33222. height: math.unit(6 + 3/12, "feet"),
  33223. weight: math.unit(188, "lb"),
  33224. name: "Werejackal",
  33225. image: {
  33226. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33227. extra: 2373/2178,
  33228. bottom: 53/2426
  33229. }
  33230. },
  33231. },
  33232. [
  33233. {
  33234. name: "Normal",
  33235. height: math.unit(5 + 8/12, "feet"),
  33236. default: true
  33237. },
  33238. ]
  33239. ))
  33240. characterMakers.push(() => makeCharacter(
  33241. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33242. {
  33243. front: {
  33244. height: math.unit(140, "cm"),
  33245. weight: math.unit(45, "kg"),
  33246. name: "Front",
  33247. image: {
  33248. source: "./media/characters/tayra-white/front.svg",
  33249. extra: 2229/2192,
  33250. bottom: 75/2304
  33251. }
  33252. },
  33253. },
  33254. [
  33255. {
  33256. name: "Normal",
  33257. height: math.unit(140, "cm"),
  33258. default: true
  33259. },
  33260. ]
  33261. ))
  33262. characterMakers.push(() => makeCharacter(
  33263. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33264. {
  33265. front: {
  33266. height: math.unit(4 + 5/12, "feet"),
  33267. name: "Front",
  33268. image: {
  33269. source: "./media/characters/scoop/front.svg",
  33270. extra: 1257/1136,
  33271. bottom: 69/1326
  33272. }
  33273. },
  33274. back: {
  33275. height: math.unit(4 + 5/12, "feet"),
  33276. name: "Back",
  33277. image: {
  33278. source: "./media/characters/scoop/back.svg",
  33279. extra: 1321/1152,
  33280. bottom: 32/1353
  33281. }
  33282. },
  33283. maw: {
  33284. height: math.unit(0.68, "feet"),
  33285. name: "Maw",
  33286. image: {
  33287. source: "./media/characters/scoop/maw.svg"
  33288. }
  33289. },
  33290. },
  33291. [
  33292. {
  33293. name: "Really Small",
  33294. height: math.unit(1, "mm")
  33295. },
  33296. {
  33297. name: "Micro",
  33298. height: math.unit(1, "inch")
  33299. },
  33300. {
  33301. name: "Normal",
  33302. height: math.unit(4 + 5/12, "feet"),
  33303. default: true
  33304. },
  33305. {
  33306. name: "Macro",
  33307. height: math.unit(200, "feet")
  33308. },
  33309. {
  33310. name: "Megamacro",
  33311. height: math.unit(3240, "feet")
  33312. },
  33313. {
  33314. name: "Teramacro",
  33315. height: math.unit(2500, "miles")
  33316. },
  33317. ]
  33318. ))
  33319. characterMakers.push(() => makeCharacter(
  33320. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33321. {
  33322. front: {
  33323. height: math.unit(15 + 7/12, "feet"),
  33324. name: "Front",
  33325. image: {
  33326. source: "./media/characters/saphinara/front.svg",
  33327. extra: 604/546,
  33328. bottom: 19/623
  33329. }
  33330. },
  33331. side: {
  33332. height: math.unit(15 + 7/12, "feet"),
  33333. name: "Side",
  33334. image: {
  33335. source: "./media/characters/saphinara/side.svg",
  33336. extra: 605/547,
  33337. bottom: 6/611
  33338. }
  33339. },
  33340. back: {
  33341. height: math.unit(15 + 7/12, "feet"),
  33342. name: "Back",
  33343. image: {
  33344. source: "./media/characters/saphinara/back.svg",
  33345. extra: 591/531,
  33346. bottom: 13/604
  33347. }
  33348. },
  33349. frontTail: {
  33350. height: math.unit(15 + 7/12, "feet"),
  33351. name: "Front (Full Tail)",
  33352. image: {
  33353. source: "./media/characters/saphinara/front-tail.svg",
  33354. extra: 748/547,
  33355. bottom: 66/814
  33356. }
  33357. },
  33358. },
  33359. [
  33360. {
  33361. name: "Normal",
  33362. height: math.unit(15 + 7/12, "feet"),
  33363. default: true
  33364. },
  33365. {
  33366. name: "Angry",
  33367. height: math.unit(30 + 6/12, "feet")
  33368. },
  33369. {
  33370. name: "Enraged",
  33371. height: math.unit(102 + 1/12, "feet")
  33372. },
  33373. ]
  33374. ))
  33375. characterMakers.push(() => makeCharacter(
  33376. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33377. {
  33378. front: {
  33379. height: math.unit(6 + 8/12, "feet"),
  33380. weight: math.unit(300, "lb"),
  33381. name: "Front",
  33382. image: {
  33383. source: "./media/characters/jrain/front.svg",
  33384. extra: 3039/2865,
  33385. bottom: 399/3438
  33386. }
  33387. },
  33388. back: {
  33389. height: math.unit(6 + 8/12, "feet"),
  33390. weight: math.unit(300, "lb"),
  33391. name: "Back",
  33392. image: {
  33393. source: "./media/characters/jrain/back.svg",
  33394. extra: 3089/2938,
  33395. bottom: 172/3261
  33396. }
  33397. },
  33398. head: {
  33399. height: math.unit(2.14, "feet"),
  33400. name: "Head",
  33401. image: {
  33402. source: "./media/characters/jrain/head.svg"
  33403. }
  33404. },
  33405. maw: {
  33406. height: math.unit(1.77, "feet"),
  33407. name: "Maw",
  33408. image: {
  33409. source: "./media/characters/jrain/maw.svg"
  33410. }
  33411. },
  33412. leftHand: {
  33413. height: math.unit(1.1, "feet"),
  33414. name: "Left Hand",
  33415. image: {
  33416. source: "./media/characters/jrain/left-hand.svg"
  33417. }
  33418. },
  33419. rightHand: {
  33420. height: math.unit(1.1, "feet"),
  33421. name: "Right Hand",
  33422. image: {
  33423. source: "./media/characters/jrain/right-hand.svg"
  33424. }
  33425. },
  33426. eye: {
  33427. height: math.unit(0.35, "feet"),
  33428. name: "Eye",
  33429. image: {
  33430. source: "./media/characters/jrain/eye.svg"
  33431. }
  33432. },
  33433. },
  33434. [
  33435. {
  33436. name: "Normal",
  33437. height: math.unit(6 + 8/12, "feet"),
  33438. default: true
  33439. },
  33440. {
  33441. name: "Casually Large",
  33442. height: math.unit(25, "feet")
  33443. },
  33444. {
  33445. name: "Giant",
  33446. height: math.unit(100, "feet")
  33447. },
  33448. {
  33449. name: "Kaiju",
  33450. height: math.unit(300, "feet")
  33451. },
  33452. ]
  33453. ))
  33454. characterMakers.push(() => makeCharacter(
  33455. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33456. {
  33457. dragon: {
  33458. height: math.unit(5, "meters"),
  33459. name: "Dragon",
  33460. image: {
  33461. source: "./media/characters/sabrina/dragon.svg",
  33462. extra: 3670 / 2365,
  33463. bottom: 333 / 4003
  33464. }
  33465. },
  33466. gryphon: {
  33467. height: math.unit(3, "meters"),
  33468. name: "Gryphon",
  33469. image: {
  33470. source: "./media/characters/sabrina/gryphon.svg",
  33471. extra: 1576 / 945,
  33472. bottom: 71 / 1647
  33473. }
  33474. },
  33475. snake: {
  33476. height: math.unit(12, "meters"),
  33477. name: "Snake",
  33478. image: {
  33479. source: "./media/characters/sabrina/snake.svg",
  33480. extra: 1758 / 1320,
  33481. bottom: 186 / 1944
  33482. }
  33483. },
  33484. collar: {
  33485. height: math.unit(1.86, "meters"),
  33486. name: "Collar",
  33487. image: {
  33488. source: "./media/characters/sabrina/collar.svg"
  33489. }
  33490. },
  33491. eye: {
  33492. height: math.unit(0.53, "meters"),
  33493. name: "Eye",
  33494. image: {
  33495. source: "./media/characters/sabrina/eye.svg"
  33496. }
  33497. },
  33498. foot: {
  33499. height: math.unit(1.86, "meters"),
  33500. name: "Foot",
  33501. image: {
  33502. source: "./media/characters/sabrina/foot.svg"
  33503. }
  33504. },
  33505. hand: {
  33506. height: math.unit(1.32, "meters"),
  33507. name: "Hand",
  33508. image: {
  33509. source: "./media/characters/sabrina/hand.svg"
  33510. }
  33511. },
  33512. head: {
  33513. height: math.unit(2.44, "meters"),
  33514. name: "Head",
  33515. image: {
  33516. source: "./media/characters/sabrina/head.svg"
  33517. }
  33518. },
  33519. headAngry: {
  33520. height: math.unit(2.44, "meters"),
  33521. name: "Head (Angry))",
  33522. image: {
  33523. source: "./media/characters/sabrina/head-angry.svg"
  33524. }
  33525. },
  33526. maw: {
  33527. height: math.unit(1.65, "meters"),
  33528. name: "Maw",
  33529. image: {
  33530. source: "./media/characters/sabrina/maw.svg"
  33531. }
  33532. },
  33533. spikes: {
  33534. height: math.unit(1.69, "meters"),
  33535. name: "Spikes",
  33536. image: {
  33537. source: "./media/characters/sabrina/spikes.svg"
  33538. }
  33539. },
  33540. stomach: {
  33541. height: math.unit(1.15, "meters"),
  33542. name: "Stomach",
  33543. image: {
  33544. source: "./media/characters/sabrina/stomach.svg"
  33545. }
  33546. },
  33547. tongue: {
  33548. height: math.unit(1.27, "meters"),
  33549. name: "Tongue",
  33550. image: {
  33551. source: "./media/characters/sabrina/tongue.svg"
  33552. }
  33553. },
  33554. wingDorsal: {
  33555. height: math.unit(4.85, "meters"),
  33556. name: "Wing (Dorsal)",
  33557. image: {
  33558. source: "./media/characters/sabrina/wing-dorsal.svg"
  33559. }
  33560. },
  33561. wingVentral: {
  33562. height: math.unit(4.85, "meters"),
  33563. name: "Wing (Ventral)",
  33564. image: {
  33565. source: "./media/characters/sabrina/wing-ventral.svg"
  33566. }
  33567. },
  33568. },
  33569. [
  33570. {
  33571. name: "Normal",
  33572. height: math.unit(5, "meters"),
  33573. default: true
  33574. },
  33575. ]
  33576. ))
  33577. characterMakers.push(() => makeCharacter(
  33578. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33579. {
  33580. frontMaid: {
  33581. height: math.unit(5 + 5/12, "feet"),
  33582. weight: math.unit(130, "lb"),
  33583. name: "Front (Maid)",
  33584. image: {
  33585. source: "./media/characters/midnight-tales/front-maid.svg",
  33586. extra: 489/454,
  33587. bottom: 61/550
  33588. }
  33589. },
  33590. frontFormal: {
  33591. height: math.unit(5 + 5/12, "feet"),
  33592. weight: math.unit(130, "lb"),
  33593. name: "Front (Formal)",
  33594. image: {
  33595. source: "./media/characters/midnight-tales/front-formal.svg",
  33596. extra: 489/454,
  33597. bottom: 61/550
  33598. }
  33599. },
  33600. back: {
  33601. height: math.unit(5 + 5/12, "feet"),
  33602. weight: math.unit(130, "lb"),
  33603. name: "Back",
  33604. image: {
  33605. source: "./media/characters/midnight-tales/back.svg",
  33606. extra: 498/456,
  33607. bottom: 33/531
  33608. }
  33609. },
  33610. frontBeast: {
  33611. height: math.unit(40, "feet"),
  33612. weight: math.unit(64000, "lb"),
  33613. name: "Front (Beast)",
  33614. image: {
  33615. source: "./media/characters/midnight-tales/front-beast.svg",
  33616. extra: 927/860,
  33617. bottom: 53/980
  33618. }
  33619. },
  33620. backBeast: {
  33621. height: math.unit(40, "feet"),
  33622. weight: math.unit(64000, "lb"),
  33623. name: "Back (Beast)",
  33624. image: {
  33625. source: "./media/characters/midnight-tales/back-beast.svg",
  33626. extra: 929/855,
  33627. bottom: 16/945
  33628. }
  33629. },
  33630. footBeast: {
  33631. height: math.unit(6.7, "feet"),
  33632. name: "Foot (Beast)",
  33633. image: {
  33634. source: "./media/characters/midnight-tales/foot-beast.svg"
  33635. }
  33636. },
  33637. headBeast: {
  33638. height: math.unit(8, "feet"),
  33639. name: "Head (Beast)",
  33640. image: {
  33641. source: "./media/characters/midnight-tales/head-beast.svg"
  33642. }
  33643. },
  33644. },
  33645. [
  33646. {
  33647. name: "Normal",
  33648. height: math.unit(5 + 5 / 12, "feet"),
  33649. default: true
  33650. },
  33651. {
  33652. name: "Macro",
  33653. height: math.unit(25, "feet")
  33654. },
  33655. ]
  33656. ))
  33657. characterMakers.push(() => makeCharacter(
  33658. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33659. {
  33660. front: {
  33661. height: math.unit(5 + 10/12, "feet"),
  33662. name: "Front",
  33663. image: {
  33664. source: "./media/characters/argon/front.svg",
  33665. extra: 2009/1935,
  33666. bottom: 118/2127
  33667. }
  33668. },
  33669. back: {
  33670. height: math.unit(5 + 10/12, "feet"),
  33671. name: "Back",
  33672. image: {
  33673. source: "./media/characters/argon/back.svg",
  33674. extra: 2047/1992,
  33675. bottom: 20/2067
  33676. }
  33677. },
  33678. frontDressed: {
  33679. height: math.unit(5 + 10/12, "feet"),
  33680. name: "Front (Dressed)",
  33681. image: {
  33682. source: "./media/characters/argon/front-dressed.svg",
  33683. extra: 2009/1935,
  33684. bottom: 118/2127
  33685. }
  33686. },
  33687. },
  33688. [
  33689. {
  33690. name: "Normal",
  33691. height: math.unit(5 + 10/12, "feet"),
  33692. default: true
  33693. },
  33694. ]
  33695. ))
  33696. characterMakers.push(() => makeCharacter(
  33697. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33698. {
  33699. front: {
  33700. height: math.unit(8 + 6/12, "feet"),
  33701. weight: math.unit(1150, "lb"),
  33702. name: "Front",
  33703. image: {
  33704. source: "./media/characters/kichi/front.svg",
  33705. extra: 1267/1164,
  33706. bottom: 61/1328
  33707. }
  33708. },
  33709. back: {
  33710. height: math.unit(8 + 6/12, "feet"),
  33711. weight: math.unit(1150, "lb"),
  33712. name: "Back",
  33713. image: {
  33714. source: "./media/characters/kichi/back.svg",
  33715. extra: 1273/1166,
  33716. bottom: 33/1306
  33717. }
  33718. },
  33719. },
  33720. [
  33721. {
  33722. name: "Normal",
  33723. height: math.unit(8 + 6/12, "feet"),
  33724. default: true
  33725. },
  33726. ]
  33727. ))
  33728. characterMakers.push(() => makeCharacter(
  33729. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33730. {
  33731. front: {
  33732. height: math.unit(6, "feet"),
  33733. weight: math.unit(210, "lb"),
  33734. name: "Front",
  33735. image: {
  33736. source: "./media/characters/manetel-greyscale/front.svg",
  33737. extra: 350/312,
  33738. bottom: 8/358
  33739. }
  33740. },
  33741. },
  33742. [
  33743. {
  33744. name: "Micro",
  33745. height: math.unit(2, "inches")
  33746. },
  33747. {
  33748. name: "Normal",
  33749. height: math.unit(6, "feet"),
  33750. default: true
  33751. },
  33752. {
  33753. name: "Minimacro",
  33754. height: math.unit(17, "feet")
  33755. },
  33756. {
  33757. name: "Macro",
  33758. height: math.unit(117, "feet")
  33759. },
  33760. ]
  33761. ))
  33762. characterMakers.push(() => makeCharacter(
  33763. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33764. {
  33765. side: {
  33766. height: math.unit(5 + 1/12, "feet"),
  33767. weight: math.unit(418, "lb"),
  33768. name: "Side",
  33769. image: {
  33770. source: "./media/characters/softpurr/side.svg",
  33771. extra: 1993/1945,
  33772. bottom: 134/2127
  33773. }
  33774. },
  33775. front: {
  33776. height: math.unit(5 + 1/12, "feet"),
  33777. weight: math.unit(418, "lb"),
  33778. name: "Front",
  33779. image: {
  33780. source: "./media/characters/softpurr/front.svg",
  33781. extra: 1950/1856,
  33782. bottom: 174/2124
  33783. }
  33784. },
  33785. paw: {
  33786. height: math.unit(1, "feet"),
  33787. name: "Paw",
  33788. image: {
  33789. source: "./media/characters/softpurr/paw.svg"
  33790. }
  33791. },
  33792. },
  33793. [
  33794. {
  33795. name: "Normal",
  33796. height: math.unit(5 + 1/12, "feet"),
  33797. default: true
  33798. },
  33799. ]
  33800. ))
  33801. characterMakers.push(() => makeCharacter(
  33802. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33803. {
  33804. front: {
  33805. height: math.unit(260, "meters"),
  33806. name: "Front",
  33807. image: {
  33808. source: "./media/characters/anahita/front.svg",
  33809. extra: 665/635,
  33810. bottom: 89/754
  33811. }
  33812. },
  33813. },
  33814. [
  33815. {
  33816. name: "Macro",
  33817. height: math.unit(260, "meters"),
  33818. default: true
  33819. },
  33820. ]
  33821. ))
  33822. characterMakers.push(() => makeCharacter(
  33823. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33824. {
  33825. front: {
  33826. height: math.unit(4 + 10/12, "feet"),
  33827. weight: math.unit(160, "lb"),
  33828. name: "Front",
  33829. image: {
  33830. source: "./media/characters/chip-mouse/front.svg",
  33831. extra: 3528/3408,
  33832. bottom: 0/3528
  33833. }
  33834. },
  33835. frontNsfw: {
  33836. height: math.unit(4 + 10/12, "feet"),
  33837. weight: math.unit(160, "lb"),
  33838. name: "Front (NSFW)",
  33839. image: {
  33840. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33841. extra: 3528/3408,
  33842. bottom: 0/3528
  33843. }
  33844. },
  33845. },
  33846. [
  33847. {
  33848. name: "Normal",
  33849. height: math.unit(4 + 10/12, "feet"),
  33850. default: true
  33851. },
  33852. ]
  33853. ))
  33854. characterMakers.push(() => makeCharacter(
  33855. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33856. {
  33857. side: {
  33858. height: math.unit(10, "feet"),
  33859. weight: math.unit(14000, "lb"),
  33860. name: "Side",
  33861. image: {
  33862. source: "./media/characters/kremm/side.svg",
  33863. extra: 1390/1053,
  33864. bottom: 90/1480
  33865. }
  33866. },
  33867. gut: {
  33868. height: math.unit(5.8, "feet"),
  33869. name: "Gut",
  33870. image: {
  33871. source: "./media/characters/kremm/gut.svg"
  33872. }
  33873. },
  33874. ass: {
  33875. height: math.unit(6.1, "feet"),
  33876. name: "Ass",
  33877. image: {
  33878. source: "./media/characters/kremm/ass.svg"
  33879. }
  33880. },
  33881. jaws: {
  33882. height: math.unit(2.2, "feet"),
  33883. name: "Jaws",
  33884. image: {
  33885. source: "./media/characters/kremm/jaws.svg"
  33886. }
  33887. },
  33888. dick: {
  33889. height: math.unit(4.26, "feet"),
  33890. name: "Dick",
  33891. image: {
  33892. source: "./media/characters/kremm/dick.svg"
  33893. }
  33894. },
  33895. },
  33896. [
  33897. {
  33898. name: "Normal",
  33899. height: math.unit(10, "feet"),
  33900. default: true
  33901. },
  33902. ]
  33903. ))
  33904. characterMakers.push(() => makeCharacter(
  33905. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33906. {
  33907. front: {
  33908. height: math.unit(30, "stories"),
  33909. name: "Front",
  33910. image: {
  33911. source: "./media/characters/kai/front.svg",
  33912. extra: 1892/1718,
  33913. bottom: 162/2054
  33914. }
  33915. },
  33916. },
  33917. [
  33918. {
  33919. name: "Macro",
  33920. height: math.unit(30, "stories"),
  33921. default: true
  33922. },
  33923. ]
  33924. ))
  33925. characterMakers.push(() => makeCharacter(
  33926. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33927. {
  33928. front: {
  33929. height: math.unit(6 + 4/12, "feet"),
  33930. weight: math.unit(145, "lb"),
  33931. name: "Front",
  33932. image: {
  33933. source: "./media/characters/sykes/front.svg",
  33934. extra: 1321 / 1187,
  33935. bottom: 66 / 1387
  33936. }
  33937. },
  33938. back: {
  33939. height: math.unit(6 + 4/12, "feet"),
  33940. weight: math.unit(145, "lb"),
  33941. name: "Back",
  33942. image: {
  33943. source: "./media/characters/sykes/back.svg",
  33944. extra: 1326/1181,
  33945. bottom: 31/1357
  33946. }
  33947. },
  33948. handBack: {
  33949. height: math.unit(0.9, "feet"),
  33950. name: "Hand (Back)",
  33951. image: {
  33952. source: "./media/characters/sykes/hand-back.svg"
  33953. }
  33954. },
  33955. handFront: {
  33956. height: math.unit(0.839, "feet"),
  33957. name: "Hand (Front)",
  33958. image: {
  33959. source: "./media/characters/sykes/hand-front.svg"
  33960. }
  33961. },
  33962. leftFoot: {
  33963. height: math.unit(1.2, "feet"),
  33964. name: "Foot (Left)",
  33965. image: {
  33966. source: "./media/characters/sykes/foot-left.svg"
  33967. }
  33968. },
  33969. rightFoot: {
  33970. height: math.unit(1.2, "feet"),
  33971. name: "Foot (Right)",
  33972. image: {
  33973. source: "./media/characters/sykes/foot-right.svg"
  33974. }
  33975. },
  33976. maw: {
  33977. height: math.unit(1.93, "feet"),
  33978. name: "Maw",
  33979. image: {
  33980. source: "./media/characters/sykes/maw.svg"
  33981. }
  33982. },
  33983. teeth: {
  33984. height: math.unit(0.51, "feet"),
  33985. name: "Teeth",
  33986. image: {
  33987. source: "./media/characters/sykes/teeth.svg"
  33988. }
  33989. },
  33990. tongue: {
  33991. height: math.unit(2.13, "feet"),
  33992. name: "Tongue",
  33993. image: {
  33994. source: "./media/characters/sykes/tongue.svg"
  33995. }
  33996. },
  33997. uvula: {
  33998. height: math.unit(0.16, "feet"),
  33999. name: "Uvula",
  34000. image: {
  34001. source: "./media/characters/sykes/uvula.svg"
  34002. }
  34003. },
  34004. collar: {
  34005. height: math.unit(0.287, "feet"),
  34006. name: "Collar",
  34007. image: {
  34008. source: "./media/characters/sykes/collar.svg"
  34009. }
  34010. },
  34011. },
  34012. [
  34013. {
  34014. name: "Shrunken",
  34015. height: math.unit(5, "inches")
  34016. },
  34017. {
  34018. name: "Normal",
  34019. height: math.unit(6 + 4 / 12, "feet"),
  34020. default: true
  34021. },
  34022. {
  34023. name: "Big",
  34024. height: math.unit(15, "feet")
  34025. },
  34026. ]
  34027. ))
  34028. characterMakers.push(() => makeCharacter(
  34029. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34030. {
  34031. front: {
  34032. height: math.unit(5 + 8/12, "feet"),
  34033. weight: math.unit(190, "lb"),
  34034. name: "Front",
  34035. image: {
  34036. source: "./media/characters/oven-otter/front.svg",
  34037. extra: 1809/1740,
  34038. bottom: 181/1990
  34039. }
  34040. },
  34041. back: {
  34042. height: math.unit(5 + 8/12, "feet"),
  34043. weight: math.unit(190, "lb"),
  34044. name: "Back",
  34045. image: {
  34046. source: "./media/characters/oven-otter/back.svg",
  34047. extra: 1709/1635,
  34048. bottom: 118/1827
  34049. }
  34050. },
  34051. hand: {
  34052. height: math.unit(1.07, "feet"),
  34053. name: "Hand",
  34054. image: {
  34055. source: "./media/characters/oven-otter/hand.svg"
  34056. }
  34057. },
  34058. beans: {
  34059. height: math.unit(1.74, "feet"),
  34060. name: "Beans",
  34061. image: {
  34062. source: "./media/characters/oven-otter/beans.svg"
  34063. }
  34064. },
  34065. },
  34066. [
  34067. {
  34068. name: "Micro",
  34069. height: math.unit(0.5, "inches")
  34070. },
  34071. {
  34072. name: "Normal",
  34073. height: math.unit(5 + 8/12, "feet"),
  34074. default: true
  34075. },
  34076. {
  34077. name: "Macro",
  34078. height: math.unit(250, "feet")
  34079. },
  34080. {
  34081. name: "Really High",
  34082. height: math.unit(420, "feet")
  34083. },
  34084. ]
  34085. ))
  34086. characterMakers.push(() => makeCharacter(
  34087. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34088. {
  34089. front: {
  34090. height: math.unit(5, "meters"),
  34091. weight: math.unit(292000000000000, "kg"),
  34092. name: "Front",
  34093. image: {
  34094. source: "./media/characters/devourer/front.svg",
  34095. extra: 1800/1733,
  34096. bottom: 211/2011
  34097. }
  34098. },
  34099. maw: {
  34100. height: math.unit(1.1, "meter"),
  34101. name: "Maw",
  34102. image: {
  34103. source: "./media/characters/devourer/maw.svg"
  34104. }
  34105. },
  34106. },
  34107. [
  34108. {
  34109. name: "Small",
  34110. height: math.unit(3, "meters")
  34111. },
  34112. {
  34113. name: "Large",
  34114. height: math.unit(5, "meters"),
  34115. default: true
  34116. },
  34117. ]
  34118. ))
  34119. characterMakers.push(() => makeCharacter(
  34120. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34121. {
  34122. front: {
  34123. height: math.unit(6, "feet"),
  34124. weight: math.unit(400, "lb"),
  34125. name: "Front",
  34126. image: {
  34127. source: "./media/characters/ellarby/front.svg",
  34128. extra: 1909/1763,
  34129. bottom: 80/1989
  34130. }
  34131. },
  34132. back: {
  34133. height: math.unit(6, "feet"),
  34134. weight: math.unit(400, "lb"),
  34135. name: "Back",
  34136. image: {
  34137. source: "./media/characters/ellarby/back.svg",
  34138. extra: 1914/1784,
  34139. bottom: 172/2086
  34140. }
  34141. },
  34142. },
  34143. [
  34144. {
  34145. name: "Mischief",
  34146. height: math.unit(18, "inches")
  34147. },
  34148. {
  34149. name: "Trouble",
  34150. height: math.unit(12, "feet")
  34151. },
  34152. {
  34153. name: "Havoc",
  34154. height: math.unit(200, "feet"),
  34155. default: true
  34156. },
  34157. {
  34158. name: "Pandemonium",
  34159. height: math.unit(1, "mile")
  34160. },
  34161. {
  34162. name: "Catastrophe",
  34163. height: math.unit(100, "miles")
  34164. },
  34165. ]
  34166. ))
  34167. characterMakers.push(() => makeCharacter(
  34168. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34169. {
  34170. front: {
  34171. height: math.unit(4.7, "meters"),
  34172. weight: math.unit(6500, "kg"),
  34173. name: "Front",
  34174. image: {
  34175. source: "./media/characters/vex/front.svg",
  34176. extra: 1288/1140,
  34177. bottom: 100/1388
  34178. }
  34179. },
  34180. },
  34181. [
  34182. {
  34183. name: "Normal",
  34184. height: math.unit(4.7, "meters"),
  34185. default: true
  34186. },
  34187. ]
  34188. ))
  34189. characterMakers.push(() => makeCharacter(
  34190. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34191. {
  34192. normal: {
  34193. height: math.unit(6, "feet"),
  34194. weight: math.unit(350, "lb"),
  34195. name: "Normal",
  34196. image: {
  34197. source: "./media/characters/teshy/normal.svg",
  34198. extra: 1795/1735,
  34199. bottom: 16/1811
  34200. }
  34201. },
  34202. monsterFront: {
  34203. height: math.unit(12, "feet"),
  34204. weight: math.unit(4700, "lb"),
  34205. name: "Monster (Front)",
  34206. image: {
  34207. source: "./media/characters/teshy/monster-front.svg",
  34208. extra: 2042/2034,
  34209. bottom: 128/2170
  34210. }
  34211. },
  34212. monsterSide: {
  34213. height: math.unit(12, "feet"),
  34214. weight: math.unit(4700, "lb"),
  34215. name: "Monster (Side)",
  34216. image: {
  34217. source: "./media/characters/teshy/monster-side.svg",
  34218. extra: 2067/2056,
  34219. bottom: 70/2137
  34220. }
  34221. },
  34222. monsterBack: {
  34223. height: math.unit(12, "feet"),
  34224. weight: math.unit(4700, "lb"),
  34225. name: "Monster (Back)",
  34226. image: {
  34227. source: "./media/characters/teshy/monster-back.svg",
  34228. extra: 1921/1914,
  34229. bottom: 171/2092
  34230. }
  34231. },
  34232. },
  34233. [
  34234. {
  34235. name: "Normal",
  34236. height: math.unit(6, "feet"),
  34237. default: true
  34238. },
  34239. ]
  34240. ))
  34241. characterMakers.push(() => makeCharacter(
  34242. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34243. {
  34244. front: {
  34245. height: math.unit(6, "feet"),
  34246. name: "Front",
  34247. image: {
  34248. source: "./media/characters/ramey/front.svg",
  34249. extra: 790/787,
  34250. bottom: 27/817
  34251. }
  34252. },
  34253. },
  34254. [
  34255. {
  34256. name: "Normal",
  34257. height: math.unit(6, "feet"),
  34258. default: true
  34259. },
  34260. ]
  34261. ))
  34262. characterMakers.push(() => makeCharacter(
  34263. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34264. {
  34265. front: {
  34266. height: math.unit(5 + 5/12, "feet"),
  34267. weight: math.unit(120, "lb"),
  34268. name: "Front",
  34269. image: {
  34270. source: "./media/characters/phirae/front.svg",
  34271. extra: 2491/2436,
  34272. bottom: 38/2529
  34273. }
  34274. },
  34275. },
  34276. [
  34277. {
  34278. name: "Normal",
  34279. height: math.unit(5 + 5/12, "feet"),
  34280. default: true
  34281. },
  34282. ]
  34283. ))
  34284. characterMakers.push(() => makeCharacter(
  34285. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34286. {
  34287. front: {
  34288. height: math.unit(5 + 3/12, "feet"),
  34289. name: "Front",
  34290. image: {
  34291. source: "./media/characters/stagglas/front.svg",
  34292. extra: 962/882,
  34293. bottom: 53/1015
  34294. }
  34295. },
  34296. feral: {
  34297. height: math.unit(335, "cm"),
  34298. name: "Feral",
  34299. image: {
  34300. source: "./media/characters/stagglas/feral.svg",
  34301. extra: 1732/1090,
  34302. bottom: 48/1780
  34303. }
  34304. },
  34305. },
  34306. [
  34307. {
  34308. name: "Normal",
  34309. height: math.unit(5 + 3/12, "feet"),
  34310. default: true
  34311. },
  34312. ]
  34313. ))
  34314. characterMakers.push(() => makeCharacter(
  34315. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34316. {
  34317. front: {
  34318. height: math.unit(5 + 4/12, "feet"),
  34319. weight: math.unit(145, "lb"),
  34320. name: "Front",
  34321. image: {
  34322. source: "./media/characters/starra/front.svg",
  34323. extra: 1790/1691,
  34324. bottom: 91/1881
  34325. }
  34326. },
  34327. },
  34328. [
  34329. {
  34330. name: "Normal",
  34331. height: math.unit(5 + 4/12, "feet"),
  34332. default: true
  34333. },
  34334. ]
  34335. ))
  34336. characterMakers.push(() => makeCharacter(
  34337. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34338. {
  34339. front: {
  34340. height: math.unit(2.2, "meters"),
  34341. name: "Front",
  34342. image: {
  34343. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34344. extra: 1194/1005,
  34345. bottom: 25/1219
  34346. }
  34347. },
  34348. },
  34349. [
  34350. {
  34351. name: "Normal",
  34352. height: math.unit(2.2, "meters"),
  34353. default: true
  34354. },
  34355. ]
  34356. ))
  34357. characterMakers.push(() => makeCharacter(
  34358. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34359. {
  34360. side: {
  34361. height: math.unit(8 + 2/12, "feet"),
  34362. weight: math.unit(1240, "lb"),
  34363. name: "Side",
  34364. image: {
  34365. source: "./media/characters/mika-valentine/side.svg",
  34366. extra: 2670/2501,
  34367. bottom: 250/2920
  34368. }
  34369. },
  34370. },
  34371. [
  34372. {
  34373. name: "Normal",
  34374. height: math.unit(8 + 2/12, "feet"),
  34375. default: true
  34376. },
  34377. ]
  34378. ))
  34379. characterMakers.push(() => makeCharacter(
  34380. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34381. {
  34382. front: {
  34383. height: math.unit(7 + 2/12, "feet"),
  34384. name: "Front",
  34385. image: {
  34386. source: "./media/characters/xoltol/front.svg",
  34387. extra: 2212/2124,
  34388. bottom: 84/2296
  34389. }
  34390. },
  34391. side: {
  34392. height: math.unit(7 + 2/12, "feet"),
  34393. name: "Side",
  34394. image: {
  34395. source: "./media/characters/xoltol/side.svg",
  34396. extra: 2273/2197,
  34397. bottom: 26/2299
  34398. }
  34399. },
  34400. hand: {
  34401. height: math.unit(2.5, "feet"),
  34402. name: "Hand",
  34403. image: {
  34404. source: "./media/characters/xoltol/hand.svg"
  34405. }
  34406. },
  34407. },
  34408. [
  34409. {
  34410. name: "Small-ish",
  34411. height: math.unit(5 + 11/12, "feet")
  34412. },
  34413. {
  34414. name: "Normal",
  34415. height: math.unit(7 + 2/12, "feet")
  34416. },
  34417. {
  34418. name: "\"Macro\"",
  34419. height: math.unit(14 + 9/12, "feet"),
  34420. default: true
  34421. },
  34422. {
  34423. name: "Alternate Height",
  34424. height: math.unit(20, "feet")
  34425. },
  34426. {
  34427. name: "Actually Macro",
  34428. height: math.unit(100, "feet")
  34429. },
  34430. ]
  34431. ))
  34432. characterMakers.push(() => makeCharacter(
  34433. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34434. {
  34435. front: {
  34436. height: math.unit(5 + 2/12, "feet"),
  34437. name: "Front",
  34438. image: {
  34439. source: "./media/characters/kotetsu-redwood/front.svg",
  34440. extra: 1053/942,
  34441. bottom: 60/1113
  34442. }
  34443. },
  34444. },
  34445. [
  34446. {
  34447. name: "Normal",
  34448. height: math.unit(5 + 2/12, "feet"),
  34449. default: true
  34450. },
  34451. ]
  34452. ))
  34453. characterMakers.push(() => makeCharacter(
  34454. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34455. {
  34456. front: {
  34457. height: math.unit(2.4, "meters"),
  34458. weight: math.unit(125, "kg"),
  34459. name: "Front",
  34460. image: {
  34461. source: "./media/characters/lilith/front.svg",
  34462. extra: 1590/1513,
  34463. bottom: 203/1793
  34464. }
  34465. },
  34466. },
  34467. [
  34468. {
  34469. name: "Humanoid",
  34470. height: math.unit(2.4, "meters")
  34471. },
  34472. {
  34473. name: "Normal",
  34474. height: math.unit(6, "meters"),
  34475. default: true
  34476. },
  34477. {
  34478. name: "Largest",
  34479. height: math.unit(55, "meters")
  34480. },
  34481. ]
  34482. ))
  34483. characterMakers.push(() => makeCharacter(
  34484. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34485. {
  34486. front: {
  34487. height: math.unit(8 + 4/12, "feet"),
  34488. weight: math.unit(535, "lb"),
  34489. name: "Front",
  34490. image: {
  34491. source: "./media/characters/beh'kah-bolger/front.svg",
  34492. extra: 1660/1603,
  34493. bottom: 37/1697
  34494. }
  34495. },
  34496. },
  34497. [
  34498. {
  34499. name: "Normal",
  34500. height: math.unit(8 + 4/12, "feet"),
  34501. default: true
  34502. },
  34503. {
  34504. name: "Kaiju",
  34505. height: math.unit(250, "feet")
  34506. },
  34507. {
  34508. name: "Still Growing",
  34509. height: math.unit(10, "miles")
  34510. },
  34511. {
  34512. name: "Continental",
  34513. height: math.unit(5000, "miles")
  34514. },
  34515. {
  34516. name: "Final Form",
  34517. height: math.unit(2500000, "miles")
  34518. },
  34519. ]
  34520. ))
  34521. characterMakers.push(() => makeCharacter(
  34522. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34523. {
  34524. front: {
  34525. height: math.unit(7 + 2/12, "feet"),
  34526. weight: math.unit(230, "kg"),
  34527. name: "Front",
  34528. image: {
  34529. source: "./media/characters/tatyana-milewska/front.svg",
  34530. extra: 1199/1150,
  34531. bottom: 86/1285
  34532. }
  34533. },
  34534. },
  34535. [
  34536. {
  34537. name: "Normal",
  34538. height: math.unit(7 + 2/12, "feet"),
  34539. default: true
  34540. },
  34541. {
  34542. name: "Big",
  34543. height: math.unit(12, "feet")
  34544. },
  34545. {
  34546. name: "Minimacro",
  34547. height: math.unit(20, "feet")
  34548. },
  34549. {
  34550. name: "Macro",
  34551. height: math.unit(120, "feet")
  34552. },
  34553. ]
  34554. ))
  34555. characterMakers.push(() => makeCharacter(
  34556. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34557. {
  34558. front: {
  34559. height: math.unit(7 + 8/12, "feet"),
  34560. weight: math.unit(152, "kg"),
  34561. name: "Front",
  34562. image: {
  34563. source: "./media/characters/helen-arri/front.svg",
  34564. extra: 440/423,
  34565. bottom: 14/454
  34566. }
  34567. },
  34568. back: {
  34569. height: math.unit(7 + 8/12, "feet"),
  34570. weight: math.unit(152, "kg"),
  34571. name: "Back",
  34572. image: {
  34573. source: "./media/characters/helen-arri/back.svg",
  34574. extra: 443/426,
  34575. bottom: 8/451
  34576. }
  34577. },
  34578. },
  34579. [
  34580. {
  34581. name: "Normal",
  34582. height: math.unit(7 + 8/12, "feet"),
  34583. default: true
  34584. },
  34585. {
  34586. name: "Big",
  34587. height: math.unit(14, "feet")
  34588. },
  34589. {
  34590. name: "Minimacro",
  34591. height: math.unit(24, "feet")
  34592. },
  34593. {
  34594. name: "Macro",
  34595. height: math.unit(140, "feet")
  34596. },
  34597. ]
  34598. ))
  34599. characterMakers.push(() => makeCharacter(
  34600. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34601. {
  34602. front: {
  34603. height: math.unit(6, "meters"),
  34604. name: "Front",
  34605. image: {
  34606. source: "./media/characters/ehanu-rehu/front.svg",
  34607. extra: 1800/1800,
  34608. bottom: 59/1859
  34609. }
  34610. },
  34611. },
  34612. [
  34613. {
  34614. name: "Normal",
  34615. height: math.unit(6, "meters"),
  34616. default: true
  34617. },
  34618. ]
  34619. ))
  34620. characterMakers.push(() => makeCharacter(
  34621. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34622. {
  34623. front: {
  34624. height: math.unit(7 + 3/12, "feet"),
  34625. name: "Front",
  34626. image: {
  34627. source: "./media/characters/renholder/front.svg",
  34628. extra: 3096/2960,
  34629. bottom: 250/3346
  34630. }
  34631. },
  34632. },
  34633. [
  34634. {
  34635. name: "Normal Bat",
  34636. height: math.unit(7 + 3/12, "feet"),
  34637. default: true
  34638. },
  34639. {
  34640. name: "Slightly Tall Bat",
  34641. height: math.unit(100, "feet")
  34642. },
  34643. {
  34644. name: "Big Bat",
  34645. height: math.unit(1000, "feet")
  34646. },
  34647. {
  34648. name: "City-Sized Bat",
  34649. height: math.unit(200000, "feet")
  34650. },
  34651. {
  34652. name: "Bigger Bat",
  34653. height: math.unit(10000, "miles")
  34654. },
  34655. {
  34656. name: "Solar Sized Bat",
  34657. height: math.unit(100, "AU")
  34658. },
  34659. {
  34660. name: "Galactic Bat",
  34661. height: math.unit(200000, "lightyears")
  34662. },
  34663. {
  34664. name: "Universally Known Bat",
  34665. height: math.unit(1, "universe")
  34666. },
  34667. ]
  34668. ))
  34669. characterMakers.push(() => makeCharacter(
  34670. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34671. {
  34672. front: {
  34673. height: math.unit(6 + 11/12, "feet"),
  34674. weight: math.unit(250, "lb"),
  34675. name: "Front",
  34676. image: {
  34677. source: "./media/characters/cookiecat/front.svg",
  34678. extra: 893/827,
  34679. bottom: 14/907
  34680. }
  34681. },
  34682. },
  34683. [
  34684. {
  34685. name: "Micro",
  34686. height: math.unit(3, "inches")
  34687. },
  34688. {
  34689. name: "Normal",
  34690. height: math.unit(6 + 11/12, "feet"),
  34691. default: true
  34692. },
  34693. {
  34694. name: "Macro",
  34695. height: math.unit(100, "feet")
  34696. },
  34697. {
  34698. name: "Macro+",
  34699. height: math.unit(404, "feet")
  34700. },
  34701. {
  34702. name: "Megamacro",
  34703. height: math.unit(165, "miles")
  34704. },
  34705. {
  34706. name: "Planetary",
  34707. height: math.unit(4600, "miles")
  34708. },
  34709. ]
  34710. ))
  34711. characterMakers.push(() => makeCharacter(
  34712. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34713. {
  34714. front: {
  34715. height: math.unit(10 + 3/12, "feet"),
  34716. weight: math.unit(1500, "lb"),
  34717. name: "Front",
  34718. image: {
  34719. source: "./media/characters/tux-kusanagi/front.svg",
  34720. extra: 944/840,
  34721. bottom: 39/983
  34722. }
  34723. },
  34724. back: {
  34725. height: math.unit(10 + 3/12, "feet"),
  34726. weight: math.unit(1500, "lb"),
  34727. name: "Back",
  34728. image: {
  34729. source: "./media/characters/tux-kusanagi/back.svg",
  34730. extra: 941/842,
  34731. bottom: 28/969
  34732. }
  34733. },
  34734. rump: {
  34735. height: math.unit(5.25, "feet"),
  34736. name: "Rump",
  34737. image: {
  34738. source: "./media/characters/tux-kusanagi/rump.svg"
  34739. }
  34740. },
  34741. beak: {
  34742. height: math.unit(1.54, "feet"),
  34743. name: "Beak",
  34744. image: {
  34745. source: "./media/characters/tux-kusanagi/beak.svg"
  34746. }
  34747. },
  34748. },
  34749. [
  34750. {
  34751. name: "Normal",
  34752. height: math.unit(10 + 3/12, "feet"),
  34753. default: true
  34754. },
  34755. ]
  34756. ))
  34757. characterMakers.push(() => makeCharacter(
  34758. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34759. {
  34760. front: {
  34761. height: math.unit(58, "feet"),
  34762. weight: math.unit(200, "tons"),
  34763. name: "Front",
  34764. image: {
  34765. source: "./media/characters/uzarmazari/front.svg",
  34766. extra: 1575/1455,
  34767. bottom: 152/1727
  34768. }
  34769. },
  34770. back: {
  34771. height: math.unit(58, "feet"),
  34772. weight: math.unit(200, "tons"),
  34773. name: "Back",
  34774. image: {
  34775. source: "./media/characters/uzarmazari/back.svg",
  34776. extra: 1585/1510,
  34777. bottom: 157/1742
  34778. }
  34779. },
  34780. head: {
  34781. height: math.unit(26, "feet"),
  34782. name: "Head",
  34783. image: {
  34784. source: "./media/characters/uzarmazari/head.svg"
  34785. }
  34786. },
  34787. },
  34788. [
  34789. {
  34790. name: "Normal",
  34791. height: math.unit(58, "feet"),
  34792. default: true
  34793. },
  34794. ]
  34795. ))
  34796. characterMakers.push(() => makeCharacter(
  34797. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34798. {
  34799. side: {
  34800. height: math.unit(15, "feet"),
  34801. name: "Side",
  34802. image: {
  34803. source: "./media/characters/akitu/side.svg",
  34804. extra: 1421/1321,
  34805. bottom: 157/1578
  34806. }
  34807. },
  34808. front: {
  34809. height: math.unit(15, "feet"),
  34810. name: "Front",
  34811. image: {
  34812. source: "./media/characters/akitu/front.svg",
  34813. extra: 1435/1326,
  34814. bottom: 232/1667
  34815. }
  34816. },
  34817. },
  34818. [
  34819. {
  34820. name: "Normal",
  34821. height: math.unit(15, "feet"),
  34822. default: true
  34823. },
  34824. ]
  34825. ))
  34826. characterMakers.push(() => makeCharacter(
  34827. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34828. {
  34829. front: {
  34830. height: math.unit(10 + 8/12, "feet"),
  34831. name: "Front",
  34832. image: {
  34833. source: "./media/characters/azalie-croixland/front.svg",
  34834. extra: 1972/1856,
  34835. bottom: 31/2003
  34836. }
  34837. },
  34838. },
  34839. [
  34840. {
  34841. name: "Original Height",
  34842. height: math.unit(5 + 4/12, "feet")
  34843. },
  34844. {
  34845. name: "Normal Height",
  34846. height: math.unit(10 + 8/12, "feet"),
  34847. default: true
  34848. },
  34849. ]
  34850. ))
  34851. characterMakers.push(() => makeCharacter(
  34852. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34853. {
  34854. side: {
  34855. height: math.unit(7 + 1/12, "feet"),
  34856. weight: math.unit(245, "lb"),
  34857. name: "Side",
  34858. image: {
  34859. source: "./media/characters/kavus-kazian/side.svg",
  34860. extra: 349/342,
  34861. bottom: 15/364
  34862. }
  34863. },
  34864. },
  34865. [
  34866. {
  34867. name: "Normal",
  34868. height: math.unit(7 + 1/12, "feet"),
  34869. default: true
  34870. },
  34871. ]
  34872. ))
  34873. characterMakers.push(() => makeCharacter(
  34874. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34875. {
  34876. normal: {
  34877. height: math.unit(5 + 11/12, "feet"),
  34878. name: "Normal",
  34879. image: {
  34880. source: "./media/characters/moonlight-rose/normal.svg",
  34881. extra: 1979/1835,
  34882. bottom: 14/1993
  34883. }
  34884. },
  34885. demon: {
  34886. height: math.unit(5, "km"),
  34887. name: "Demon",
  34888. image: {
  34889. source: "./media/characters/moonlight-rose/demon.svg",
  34890. extra: 986/916,
  34891. bottom: 28/1014
  34892. }
  34893. },
  34894. },
  34895. [
  34896. {
  34897. name: "\"Natural\" height",
  34898. height: math.unit(5 + 11/12, "feet")
  34899. },
  34900. {
  34901. name: "Comfortable Size",
  34902. height: math.unit(40, "meters")
  34903. },
  34904. {
  34905. name: "Common Size",
  34906. height: math.unit(50, "km"),
  34907. default: true
  34908. },
  34909. {
  34910. name: "Demonic",
  34911. height: math.unit(1.24415e+21, "meters")
  34912. },
  34913. ]
  34914. ))
  34915. characterMakers.push(() => makeCharacter(
  34916. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34917. {
  34918. front: {
  34919. height: math.unit(16, "feet"),
  34920. weight: math.unit(610, "kg"),
  34921. name: "Front",
  34922. image: {
  34923. source: "./media/characters/huckle/front.svg",
  34924. extra: 1731/1625,
  34925. bottom: 33/1764
  34926. }
  34927. },
  34928. back: {
  34929. height: math.unit(16, "feet"),
  34930. weight: math.unit(610, "kg"),
  34931. name: "Back",
  34932. image: {
  34933. source: "./media/characters/huckle/back.svg",
  34934. extra: 1738/1651,
  34935. bottom: 37/1775
  34936. }
  34937. },
  34938. laughing: {
  34939. height: math.unit(3.75, "feet"),
  34940. name: "Laughing",
  34941. image: {
  34942. source: "./media/characters/huckle/laughing.svg"
  34943. }
  34944. },
  34945. angry: {
  34946. height: math.unit(4.15, "feet"),
  34947. name: "Angry",
  34948. image: {
  34949. source: "./media/characters/huckle/angry.svg"
  34950. }
  34951. },
  34952. },
  34953. [
  34954. {
  34955. name: "Normal",
  34956. height: math.unit(16, "feet"),
  34957. default: true
  34958. },
  34959. {
  34960. name: "Mini Macro",
  34961. height: math.unit(463, "feet")
  34962. },
  34963. {
  34964. name: "Macro",
  34965. height: math.unit(1680, "meters")
  34966. },
  34967. {
  34968. name: "Mega Macro",
  34969. height: math.unit(175, "km")
  34970. },
  34971. {
  34972. name: "Terra Macro",
  34973. height: math.unit(32, "gigameters")
  34974. },
  34975. {
  34976. name: "Multiverse+",
  34977. height: math.unit(2.56e23, "yottameters")
  34978. },
  34979. ]
  34980. ))
  34981. characterMakers.push(() => makeCharacter(
  34982. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34983. {
  34984. front: {
  34985. height: math.unit(6 + 9/12, "feet"),
  34986. weight: math.unit(280, "lb"),
  34987. name: "Front",
  34988. image: {
  34989. source: "./media/characters/candy/front.svg",
  34990. extra: 234/217,
  34991. bottom: 11/245
  34992. }
  34993. },
  34994. },
  34995. [
  34996. {
  34997. name: "Really Small",
  34998. height: math.unit(0.1, "nm")
  34999. },
  35000. {
  35001. name: "Micro",
  35002. height: math.unit(2, "inches")
  35003. },
  35004. {
  35005. name: "Normal",
  35006. height: math.unit(6 + 9/12, "feet"),
  35007. default: true
  35008. },
  35009. {
  35010. name: "Small Macro",
  35011. height: math.unit(69, "feet")
  35012. },
  35013. {
  35014. name: "Macro",
  35015. height: math.unit(160, "feet")
  35016. },
  35017. {
  35018. name: "Megamacro",
  35019. height: math.unit(22000, "miles")
  35020. },
  35021. {
  35022. name: "Gigamacro",
  35023. height: math.unit(50000, "miles")
  35024. },
  35025. ]
  35026. ))
  35027. characterMakers.push(() => makeCharacter(
  35028. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35029. {
  35030. front: {
  35031. height: math.unit(4, "feet"),
  35032. weight: math.unit(90, "lb"),
  35033. name: "Front",
  35034. image: {
  35035. source: "./media/characters/joey-mcdonald/front.svg",
  35036. extra: 1059/852,
  35037. bottom: 33/1092
  35038. }
  35039. },
  35040. back: {
  35041. height: math.unit(4, "feet"),
  35042. weight: math.unit(90, "lb"),
  35043. name: "Back",
  35044. image: {
  35045. source: "./media/characters/joey-mcdonald/back.svg",
  35046. extra: 1077/879,
  35047. bottom: 5/1082
  35048. }
  35049. },
  35050. frontKobold: {
  35051. height: math.unit(4, "feet"),
  35052. weight: math.unit(100, "lb"),
  35053. name: "Front-kobold",
  35054. image: {
  35055. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35056. extra: 1480/1367,
  35057. bottom: 0/1480
  35058. }
  35059. },
  35060. backKobold: {
  35061. height: math.unit(4, "feet"),
  35062. weight: math.unit(100, "lb"),
  35063. name: "Back-kobold",
  35064. image: {
  35065. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35066. extra: 1449/1361,
  35067. bottom: 0/1449
  35068. }
  35069. },
  35070. },
  35071. [
  35072. {
  35073. name: "Normal",
  35074. height: math.unit(4, "feet"),
  35075. default: true
  35076. },
  35077. ]
  35078. ))
  35079. characterMakers.push(() => makeCharacter(
  35080. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35081. {
  35082. front: {
  35083. height: math.unit(12 + 6/12, "feet"),
  35084. name: "Front",
  35085. image: {
  35086. source: "./media/characters/kass-lockheed/front.svg",
  35087. extra: 354/343,
  35088. bottom: 9/363
  35089. }
  35090. },
  35091. back: {
  35092. height: math.unit(12 + 6/12, "feet"),
  35093. name: "Back",
  35094. image: {
  35095. source: "./media/characters/kass-lockheed/back.svg",
  35096. extra: 364/352,
  35097. bottom: 3/367
  35098. }
  35099. },
  35100. dick: {
  35101. height: math.unit(3.12, "feet"),
  35102. name: "Dick",
  35103. image: {
  35104. source: "./media/characters/kass-lockheed/dick.svg"
  35105. }
  35106. },
  35107. head: {
  35108. height: math.unit(2.6, "feet"),
  35109. name: "Head",
  35110. image: {
  35111. source: "./media/characters/kass-lockheed/head.svg"
  35112. }
  35113. },
  35114. bleh: {
  35115. height: math.unit(2.85, "feet"),
  35116. name: "Bleh",
  35117. image: {
  35118. source: "./media/characters/kass-lockheed/bleh.svg"
  35119. }
  35120. },
  35121. smug: {
  35122. height: math.unit(2.85, "feet"),
  35123. name: "Smug",
  35124. image: {
  35125. source: "./media/characters/kass-lockheed/smug.svg"
  35126. }
  35127. },
  35128. },
  35129. [
  35130. {
  35131. name: "Normal",
  35132. height: math.unit(12 + 6/12, "feet"),
  35133. default: true
  35134. },
  35135. ]
  35136. ))
  35137. characterMakers.push(() => makeCharacter(
  35138. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35139. {
  35140. front: {
  35141. height: math.unit(6 + 2/12, "feet"),
  35142. name: "Front",
  35143. image: {
  35144. source: "./media/characters/taylor/front.svg",
  35145. extra: 639/495,
  35146. bottom: 12/651
  35147. }
  35148. },
  35149. },
  35150. [
  35151. {
  35152. name: "Normal",
  35153. height: math.unit(6 + 2/12, "feet"),
  35154. default: true
  35155. },
  35156. {
  35157. name: "Big",
  35158. height: math.unit(15, "feet")
  35159. },
  35160. {
  35161. name: "Lorg",
  35162. height: math.unit(80, "feet")
  35163. },
  35164. {
  35165. name: "Too Lorg",
  35166. height: math.unit(120, "feet")
  35167. },
  35168. ]
  35169. ))
  35170. characterMakers.push(() => makeCharacter(
  35171. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35172. {
  35173. front: {
  35174. height: math.unit(15, "feet"),
  35175. name: "Front",
  35176. image: {
  35177. source: "./media/characters/kaizer/front.svg",
  35178. extra: 1612/1436,
  35179. bottom: 43/1655
  35180. }
  35181. },
  35182. },
  35183. [
  35184. {
  35185. name: "Normal",
  35186. height: math.unit(15, "feet"),
  35187. default: true
  35188. },
  35189. ]
  35190. ))
  35191. characterMakers.push(() => makeCharacter(
  35192. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35193. {
  35194. front: {
  35195. height: math.unit(2, "feet"),
  35196. weight: math.unit(30, "lb"),
  35197. name: "Front",
  35198. image: {
  35199. source: "./media/characters/sandy/front.svg",
  35200. extra: 1439/1307,
  35201. bottom: 194/1633
  35202. }
  35203. },
  35204. },
  35205. [
  35206. {
  35207. name: "Normal",
  35208. height: math.unit(2, "feet"),
  35209. default: true
  35210. },
  35211. ]
  35212. ))
  35213. characterMakers.push(() => makeCharacter(
  35214. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35215. {
  35216. front: {
  35217. height: math.unit(3, "feet"),
  35218. name: "Front",
  35219. image: {
  35220. source: "./media/characters/mellvi/front.svg",
  35221. extra: 1831/1630,
  35222. bottom: 58/1889
  35223. }
  35224. },
  35225. },
  35226. [
  35227. {
  35228. name: "Normal",
  35229. height: math.unit(3, "feet"),
  35230. default: true
  35231. },
  35232. ]
  35233. ))
  35234. characterMakers.push(() => makeCharacter(
  35235. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35236. {
  35237. front: {
  35238. height: math.unit(5 + 11/12, "feet"),
  35239. weight: math.unit(200, "lb"),
  35240. name: "Front",
  35241. image: {
  35242. source: "./media/characters/shirou/front.svg",
  35243. extra: 2491/2383,
  35244. bottom: 189/2680
  35245. }
  35246. },
  35247. back: {
  35248. height: math.unit(5 + 11/12, "feet"),
  35249. weight: math.unit(200, "lb"),
  35250. name: "Back",
  35251. image: {
  35252. source: "./media/characters/shirou/back.svg",
  35253. extra: 2554/2450,
  35254. bottom: 76/2630
  35255. }
  35256. },
  35257. },
  35258. [
  35259. {
  35260. name: "Normal",
  35261. height: math.unit(5 + 11/12, "feet"),
  35262. default: true
  35263. },
  35264. ]
  35265. ))
  35266. characterMakers.push(() => makeCharacter(
  35267. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35268. {
  35269. front: {
  35270. height: math.unit(6 + 3/12, "feet"),
  35271. weight: math.unit(177, "lb"),
  35272. name: "Front",
  35273. image: {
  35274. source: "./media/characters/noryu/front.svg",
  35275. extra: 973/885,
  35276. bottom: 10/983
  35277. }
  35278. },
  35279. },
  35280. [
  35281. {
  35282. name: "Normal",
  35283. height: math.unit(6 + 3/12, "feet"),
  35284. default: true
  35285. },
  35286. ]
  35287. ))
  35288. characterMakers.push(() => makeCharacter(
  35289. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35290. {
  35291. front: {
  35292. height: math.unit(5 + 6/12, "feet"),
  35293. weight: math.unit(170, "lb"),
  35294. name: "Front",
  35295. image: {
  35296. source: "./media/characters/mevolas-rubenido/front.svg",
  35297. extra: 2109/1901,
  35298. bottom: 96/2205
  35299. }
  35300. },
  35301. },
  35302. [
  35303. {
  35304. name: "Normal",
  35305. height: math.unit(5 + 6/12, "feet"),
  35306. default: true
  35307. },
  35308. ]
  35309. ))
  35310. characterMakers.push(() => makeCharacter(
  35311. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35312. {
  35313. front: {
  35314. height: math.unit(100, "feet"),
  35315. name: "Front",
  35316. image: {
  35317. source: "./media/characters/dee/front.svg",
  35318. extra: 2153/2036,
  35319. bottom: 59/2212
  35320. }
  35321. },
  35322. back: {
  35323. height: math.unit(100, "feet"),
  35324. name: "Back",
  35325. image: {
  35326. source: "./media/characters/dee/back.svg",
  35327. extra: 2183/2058,
  35328. bottom: 75/2258
  35329. }
  35330. },
  35331. foot: {
  35332. height: math.unit(19.43, "feet"),
  35333. name: "Foot",
  35334. image: {
  35335. source: "./media/characters/dee/foot.svg"
  35336. }
  35337. },
  35338. hoof: {
  35339. height: math.unit(20.6, "feet"),
  35340. name: "Hoof",
  35341. image: {
  35342. source: "./media/characters/dee/hoof.svg"
  35343. }
  35344. },
  35345. },
  35346. [
  35347. {
  35348. name: "Macro",
  35349. height: math.unit(100, "feet"),
  35350. default: true
  35351. },
  35352. ]
  35353. ))
  35354. characterMakers.push(() => makeCharacter(
  35355. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35356. {
  35357. front: {
  35358. height: math.unit(5 + 6/12, "feet"),
  35359. name: "Front",
  35360. image: {
  35361. source: "./media/characters/teh/front.svg",
  35362. extra: 1002/847,
  35363. bottom: 62/1064
  35364. }
  35365. },
  35366. },
  35367. [
  35368. {
  35369. name: "Normal",
  35370. height: math.unit(5 + 6/12, "feet"),
  35371. default: true
  35372. },
  35373. ]
  35374. ))
  35375. characterMakers.push(() => makeCharacter(
  35376. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35377. {
  35378. side: {
  35379. height: math.unit(6 + 1/12, "feet"),
  35380. weight: math.unit(204, "lb"),
  35381. name: "Side",
  35382. image: {
  35383. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35384. extra: 974/775,
  35385. bottom: 169/1143
  35386. }
  35387. },
  35388. sitting: {
  35389. height: math.unit(6 + 2/12, "feet"),
  35390. weight: math.unit(204, "lb"),
  35391. name: "Sitting",
  35392. image: {
  35393. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35394. extra: 1175/964,
  35395. bottom: 378/1553
  35396. }
  35397. },
  35398. },
  35399. [
  35400. {
  35401. name: "Normal",
  35402. height: math.unit(6 + 1/12, "feet"),
  35403. default: true
  35404. },
  35405. ]
  35406. ))
  35407. characterMakers.push(() => makeCharacter(
  35408. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35409. {
  35410. front: {
  35411. height: math.unit(6, "inches"),
  35412. name: "Front",
  35413. image: {
  35414. source: "./media/characters/tululi/front.svg",
  35415. extra: 1997/1876,
  35416. bottom: 20/2017
  35417. }
  35418. },
  35419. },
  35420. [
  35421. {
  35422. name: "Normal",
  35423. height: math.unit(6, "inches"),
  35424. default: true
  35425. },
  35426. ]
  35427. ))
  35428. characterMakers.push(() => makeCharacter(
  35429. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35430. {
  35431. front: {
  35432. height: math.unit(4 + 1/12, "feet"),
  35433. name: "Front",
  35434. image: {
  35435. source: "./media/characters/star/front.svg",
  35436. extra: 1493/1189,
  35437. bottom: 48/1541
  35438. }
  35439. },
  35440. },
  35441. [
  35442. {
  35443. name: "Normal",
  35444. height: math.unit(4 + 1/12, "feet"),
  35445. default: true
  35446. },
  35447. ]
  35448. ))
  35449. characterMakers.push(() => makeCharacter(
  35450. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35451. {
  35452. front: {
  35453. height: math.unit(6 + 3/12, "feet"),
  35454. name: "Front",
  35455. image: {
  35456. source: "./media/characters/comet/front.svg",
  35457. extra: 1681/1462,
  35458. bottom: 26/1707
  35459. }
  35460. },
  35461. },
  35462. [
  35463. {
  35464. name: "Normal",
  35465. height: math.unit(6 + 3/12, "feet"),
  35466. default: true
  35467. },
  35468. ]
  35469. ))
  35470. characterMakers.push(() => makeCharacter(
  35471. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35472. {
  35473. front: {
  35474. height: math.unit(950, "feet"),
  35475. name: "Front",
  35476. image: {
  35477. source: "./media/characters/vortex/front.svg",
  35478. extra: 1497/1434,
  35479. bottom: 56/1553
  35480. }
  35481. },
  35482. maw: {
  35483. height: math.unit(285, "feet"),
  35484. name: "Maw",
  35485. image: {
  35486. source: "./media/characters/vortex/maw.svg"
  35487. }
  35488. },
  35489. },
  35490. [
  35491. {
  35492. name: "Macro",
  35493. height: math.unit(950, "feet"),
  35494. default: true
  35495. },
  35496. ]
  35497. ))
  35498. characterMakers.push(() => makeCharacter(
  35499. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35500. {
  35501. front: {
  35502. height: math.unit(600, "feet"),
  35503. weight: math.unit(0.02, "grams"),
  35504. name: "Front",
  35505. image: {
  35506. source: "./media/characters/doodle/front.svg",
  35507. extra: 1578/1413,
  35508. bottom: 37/1615
  35509. }
  35510. },
  35511. },
  35512. [
  35513. {
  35514. name: "Macro",
  35515. height: math.unit(600, "feet"),
  35516. default: true
  35517. },
  35518. ]
  35519. ))
  35520. characterMakers.push(() => makeCharacter(
  35521. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35522. {
  35523. front: {
  35524. height: math.unit(6 + 6/12, "feet"),
  35525. name: "Front",
  35526. image: {
  35527. source: "./media/characters/jai/front.svg",
  35528. extra: 1645/1534,
  35529. bottom: 115/1760
  35530. }
  35531. },
  35532. },
  35533. [
  35534. {
  35535. name: "Normal",
  35536. height: math.unit(6 + 6/12, "feet"),
  35537. default: true
  35538. },
  35539. ]
  35540. ))
  35541. characterMakers.push(() => makeCharacter(
  35542. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35543. {
  35544. front: {
  35545. height: math.unit(6 + 8/12, "feet"),
  35546. name: "Front",
  35547. image: {
  35548. source: "./media/characters/pixel/front.svg",
  35549. extra: 1900/1735,
  35550. bottom: 63/1963
  35551. }
  35552. },
  35553. },
  35554. [
  35555. {
  35556. name: "Normal",
  35557. height: math.unit(6 + 8/12, "feet"),
  35558. default: true
  35559. },
  35560. ]
  35561. ))
  35562. characterMakers.push(() => makeCharacter(
  35563. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35564. {
  35565. back: {
  35566. height: math.unit(4 + 1/12, "feet"),
  35567. weight: math.unit(75, "lb"),
  35568. name: "Back",
  35569. image: {
  35570. source: "./media/characters/rhett/back.svg",
  35571. extra: 930/878,
  35572. bottom: 25/955
  35573. }
  35574. },
  35575. front: {
  35576. height: math.unit(4 + 1/12, "feet"),
  35577. weight: math.unit(75, "lb"),
  35578. name: "Front",
  35579. image: {
  35580. source: "./media/characters/rhett/front.svg",
  35581. extra: 1682/1586,
  35582. bottom: 92/1774
  35583. }
  35584. },
  35585. },
  35586. [
  35587. {
  35588. name: "Micro",
  35589. height: math.unit(8, "inches")
  35590. },
  35591. {
  35592. name: "Tiny",
  35593. height: math.unit(2, "feet")
  35594. },
  35595. {
  35596. name: "Normal",
  35597. height: math.unit(4 + 1/12, "feet"),
  35598. default: true
  35599. },
  35600. ]
  35601. ))
  35602. characterMakers.push(() => makeCharacter(
  35603. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35604. {
  35605. front: {
  35606. height: math.unit(3 + 3/12, "feet"),
  35607. name: "Front",
  35608. image: {
  35609. source: "./media/characters/penny/front.svg",
  35610. extra: 1406/1311,
  35611. bottom: 26/1432
  35612. }
  35613. },
  35614. },
  35615. [
  35616. {
  35617. name: "Normal",
  35618. height: math.unit(3 + 3/12, "feet"),
  35619. default: true
  35620. },
  35621. ]
  35622. ))
  35623. characterMakers.push(() => makeCharacter(
  35624. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35625. {
  35626. front: {
  35627. height: math.unit(4 + 11/12, "feet"),
  35628. name: "Front",
  35629. image: {
  35630. source: "./media/characters/monty/front.svg",
  35631. extra: 1479/1209,
  35632. bottom: 0/1479
  35633. }
  35634. },
  35635. },
  35636. [
  35637. {
  35638. name: "Normal",
  35639. height: math.unit(4 + 11/12, "feet"),
  35640. default: true
  35641. },
  35642. ]
  35643. ))
  35644. characterMakers.push(() => makeCharacter(
  35645. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35646. {
  35647. front: {
  35648. height: math.unit(8 + 4/12, "feet"),
  35649. name: "Front",
  35650. image: {
  35651. source: "./media/characters/sterling/front.svg",
  35652. extra: 1420/1236,
  35653. bottom: 27/1447
  35654. }
  35655. },
  35656. },
  35657. [
  35658. {
  35659. name: "Normal",
  35660. height: math.unit(8 + 4/12, "feet"),
  35661. default: true
  35662. },
  35663. ]
  35664. ))
  35665. characterMakers.push(() => makeCharacter(
  35666. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35667. {
  35668. front: {
  35669. height: math.unit(15, "feet"),
  35670. name: "Front",
  35671. image: {
  35672. source: "./media/characters/marble/front.svg",
  35673. extra: 973/937,
  35674. bottom: 32/1005
  35675. }
  35676. },
  35677. },
  35678. [
  35679. {
  35680. name: "Normal",
  35681. height: math.unit(15, "feet"),
  35682. default: true
  35683. },
  35684. ]
  35685. ))
  35686. characterMakers.push(() => makeCharacter(
  35687. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35688. {
  35689. front: {
  35690. height: math.unit(3, "inches"),
  35691. name: "Front",
  35692. image: {
  35693. source: "./media/characters/powder/front.svg",
  35694. extra: 1504/1334,
  35695. bottom: 518/2022
  35696. }
  35697. },
  35698. },
  35699. [
  35700. {
  35701. name: "Normal",
  35702. height: math.unit(3, "inches"),
  35703. default: true
  35704. },
  35705. ]
  35706. ))
  35707. characterMakers.push(() => makeCharacter(
  35708. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35709. {
  35710. front: {
  35711. height: math.unit(4 + 5/12, "feet"),
  35712. name: "Front",
  35713. image: {
  35714. source: "./media/characters/joey-raccoon/front.svg",
  35715. extra: 1273/1197,
  35716. bottom: 0/1273
  35717. }
  35718. },
  35719. },
  35720. [
  35721. {
  35722. name: "Normal",
  35723. height: math.unit(4 + 5/12, "feet"),
  35724. default: true
  35725. },
  35726. ]
  35727. ))
  35728. characterMakers.push(() => makeCharacter(
  35729. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35730. {
  35731. front: {
  35732. height: math.unit(8 + 4/12, "feet"),
  35733. name: "Front",
  35734. image: {
  35735. source: "./media/characters/vick/front.svg",
  35736. extra: 2187/2118,
  35737. bottom: 47/2234
  35738. }
  35739. },
  35740. },
  35741. [
  35742. {
  35743. name: "Normal",
  35744. height: math.unit(8 + 4/12, "feet"),
  35745. default: true
  35746. },
  35747. ]
  35748. ))
  35749. characterMakers.push(() => makeCharacter(
  35750. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35751. {
  35752. front: {
  35753. height: math.unit(5 + 5/12, "feet"),
  35754. name: "Front",
  35755. image: {
  35756. source: "./media/characters/mitsy/front.svg",
  35757. extra: 1842/1695,
  35758. bottom: 0/1842
  35759. }
  35760. },
  35761. },
  35762. [
  35763. {
  35764. name: "Normal",
  35765. height: math.unit(5 + 5/12, "feet"),
  35766. default: true
  35767. },
  35768. ]
  35769. ))
  35770. characterMakers.push(() => makeCharacter(
  35771. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35772. {
  35773. front: {
  35774. height: math.unit(6 + 3/12, "feet"),
  35775. name: "Front",
  35776. image: {
  35777. source: "./media/characters/silvy/front.svg",
  35778. extra: 1995/1836,
  35779. bottom: 225/2220
  35780. }
  35781. },
  35782. },
  35783. [
  35784. {
  35785. name: "Normal",
  35786. height: math.unit(6 + 3/12, "feet"),
  35787. default: true
  35788. },
  35789. ]
  35790. ))
  35791. characterMakers.push(() => makeCharacter(
  35792. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35793. {
  35794. front: {
  35795. height: math.unit(3 + 8/12, "feet"),
  35796. name: "Front",
  35797. image: {
  35798. source: "./media/characters/rodney/front.svg",
  35799. extra: 1956/1747,
  35800. bottom: 31/1987
  35801. }
  35802. },
  35803. frontDressed: {
  35804. height: math.unit(2.9, "feet"),
  35805. name: "Front (Dressed)",
  35806. image: {
  35807. source: "./media/characters/rodney/front-dressed.svg",
  35808. extra: 1382/1241,
  35809. bottom: 385/1767
  35810. }
  35811. },
  35812. },
  35813. [
  35814. {
  35815. name: "Normal",
  35816. height: math.unit(3 + 8/12, "feet"),
  35817. default: true
  35818. },
  35819. ]
  35820. ))
  35821. characterMakers.push(() => makeCharacter(
  35822. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35823. {
  35824. front: {
  35825. height: math.unit(5 + 9/12, "feet"),
  35826. weight: math.unit(194, "lbs"),
  35827. name: "Front",
  35828. image: {
  35829. source: "./media/characters/zakail-sudekai/front.svg",
  35830. extra: 2696/2533,
  35831. bottom: 248/2944
  35832. }
  35833. },
  35834. maw: {
  35835. height: math.unit(1.35, "feet"),
  35836. name: "Maw",
  35837. image: {
  35838. source: "./media/characters/zakail-sudekai/maw.svg"
  35839. }
  35840. },
  35841. },
  35842. [
  35843. {
  35844. name: "Normal",
  35845. height: math.unit(5 + 9/12, "feet"),
  35846. default: true
  35847. },
  35848. ]
  35849. ))
  35850. characterMakers.push(() => makeCharacter(
  35851. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35852. {
  35853. front: {
  35854. height: math.unit(8 + 4/12, "feet"),
  35855. weight: math.unit(1200, "lb"),
  35856. name: "Front",
  35857. image: {
  35858. source: "./media/characters/eleanor/front.svg",
  35859. extra: 1226/1192,
  35860. bottom: 52/1278
  35861. }
  35862. },
  35863. back: {
  35864. height: math.unit(8 + 4/12, "feet"),
  35865. weight: math.unit(1200, "lb"),
  35866. name: "Back",
  35867. image: {
  35868. source: "./media/characters/eleanor/back.svg",
  35869. extra: 1242/1184,
  35870. bottom: 60/1302
  35871. }
  35872. },
  35873. head: {
  35874. height: math.unit(2.62, "feet"),
  35875. name: "Head",
  35876. image: {
  35877. source: "./media/characters/eleanor/head.svg"
  35878. }
  35879. },
  35880. },
  35881. [
  35882. {
  35883. name: "Normal",
  35884. height: math.unit(8 + 4/12, "feet"),
  35885. default: true
  35886. },
  35887. ]
  35888. ))
  35889. characterMakers.push(() => makeCharacter(
  35890. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35891. {
  35892. front: {
  35893. height: math.unit(8 + 4/12, "feet"),
  35894. weight: math.unit(750, "lb"),
  35895. name: "Front",
  35896. image: {
  35897. source: "./media/characters/tanya/front.svg",
  35898. extra: 1749/1615,
  35899. bottom: 33/1782
  35900. }
  35901. },
  35902. },
  35903. [
  35904. {
  35905. name: "Normal",
  35906. height: math.unit(8 + 4/12, "feet"),
  35907. default: true
  35908. },
  35909. ]
  35910. ))
  35911. characterMakers.push(() => makeCharacter(
  35912. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35913. {
  35914. front: {
  35915. height: math.unit(5, "feet"),
  35916. weight: math.unit(225, "lb"),
  35917. name: "Front",
  35918. image: {
  35919. source: "./media/characters/cindy/front.svg",
  35920. extra: 1320/1250,
  35921. bottom: 42/1362
  35922. }
  35923. },
  35924. frontDressed: {
  35925. height: math.unit(5, "feet"),
  35926. weight: math.unit(225, "lb"),
  35927. name: "Front (Dressed)",
  35928. image: {
  35929. source: "./media/characters/cindy/front-dressed.svg",
  35930. extra: 1320/1250,
  35931. bottom: 42/1362
  35932. }
  35933. },
  35934. back: {
  35935. height: math.unit(5, "feet"),
  35936. weight: math.unit(225, "lb"),
  35937. name: "Back",
  35938. image: {
  35939. source: "./media/characters/cindy/back.svg",
  35940. extra: 1384/1346,
  35941. bottom: 14/1398
  35942. }
  35943. },
  35944. },
  35945. [
  35946. {
  35947. name: "Normal",
  35948. height: math.unit(5, "feet"),
  35949. default: true
  35950. },
  35951. ]
  35952. ))
  35953. characterMakers.push(() => makeCharacter(
  35954. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35955. {
  35956. front: {
  35957. height: math.unit(6 + 9/12, "feet"),
  35958. weight: math.unit(440, "lb"),
  35959. name: "Front",
  35960. image: {
  35961. source: "./media/characters/wilbur-owen/front.svg",
  35962. extra: 1575/1448,
  35963. bottom: 72/1647
  35964. }
  35965. },
  35966. back: {
  35967. height: math.unit(6 + 9/12, "feet"),
  35968. weight: math.unit(440, "lb"),
  35969. name: "Back",
  35970. image: {
  35971. source: "./media/characters/wilbur-owen/back.svg",
  35972. extra: 1578/1445,
  35973. bottom: 36/1614
  35974. }
  35975. },
  35976. },
  35977. [
  35978. {
  35979. name: "Normal",
  35980. height: math.unit(6 + 9/12, "feet"),
  35981. default: true
  35982. },
  35983. ]
  35984. ))
  35985. characterMakers.push(() => makeCharacter(
  35986. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35987. {
  35988. front: {
  35989. height: math.unit(6 + 5/12, "feet"),
  35990. weight: math.unit(650, "lb"),
  35991. name: "Front",
  35992. image: {
  35993. source: "./media/characters/keegan/front.svg",
  35994. extra: 2387/2198,
  35995. bottom: 33/2420
  35996. }
  35997. },
  35998. side: {
  35999. height: math.unit(6 + 5/12, "feet"),
  36000. weight: math.unit(650, "lb"),
  36001. name: "Side",
  36002. image: {
  36003. source: "./media/characters/keegan/side.svg",
  36004. extra: 2390/2202,
  36005. bottom: 47/2437
  36006. }
  36007. },
  36008. back: {
  36009. height: math.unit(6 + 5/12, "feet"),
  36010. weight: math.unit(650, "lb"),
  36011. name: "Back",
  36012. image: {
  36013. source: "./media/characters/keegan/back.svg",
  36014. extra: 2418/2268,
  36015. bottom: 15/2433
  36016. }
  36017. },
  36018. frontSfw: {
  36019. height: math.unit(6 + 5/12, "feet"),
  36020. weight: math.unit(650, "lb"),
  36021. name: "Front (SFW)",
  36022. image: {
  36023. source: "./media/characters/keegan/front-sfw.svg",
  36024. extra: 2387/2198,
  36025. bottom: 33/2420
  36026. }
  36027. },
  36028. beans: {
  36029. height: math.unit(1.85, "feet"),
  36030. name: "Beans",
  36031. image: {
  36032. source: "./media/characters/keegan/beans.svg"
  36033. }
  36034. },
  36035. },
  36036. [
  36037. {
  36038. name: "Normal",
  36039. height: math.unit(6 + 5/12, "feet"),
  36040. default: true
  36041. },
  36042. ]
  36043. ))
  36044. characterMakers.push(() => makeCharacter(
  36045. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36046. {
  36047. front: {
  36048. height: math.unit(9, "feet"),
  36049. name: "Front",
  36050. image: {
  36051. source: "./media/characters/colton/front.svg",
  36052. extra: 1589/1326,
  36053. bottom: 139/1728
  36054. }
  36055. },
  36056. },
  36057. [
  36058. {
  36059. name: "Normal",
  36060. height: math.unit(9, "feet"),
  36061. default: true
  36062. },
  36063. ]
  36064. ))
  36065. characterMakers.push(() => makeCharacter(
  36066. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36067. {
  36068. front: {
  36069. height: math.unit(2 + 9/12, "feet"),
  36070. name: "Front",
  36071. image: {
  36072. source: "./media/characters/bora/front.svg",
  36073. extra: 1265/1250,
  36074. bottom: 24/1289
  36075. }
  36076. },
  36077. },
  36078. [
  36079. {
  36080. name: "Normal",
  36081. height: math.unit(2 + 9/12, "feet"),
  36082. default: true
  36083. },
  36084. ]
  36085. ))
  36086. characterMakers.push(() => makeCharacter(
  36087. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36088. {
  36089. front: {
  36090. height: math.unit(8, "feet"),
  36091. name: "Front",
  36092. image: {
  36093. source: "./media/characters/myu-myu/front.svg",
  36094. extra: 1949/1857,
  36095. bottom: 90/2039
  36096. }
  36097. },
  36098. },
  36099. [
  36100. {
  36101. name: "Normal",
  36102. height: math.unit(8, "feet"),
  36103. default: true
  36104. },
  36105. {
  36106. name: "Big",
  36107. height: math.unit(15, "feet")
  36108. },
  36109. {
  36110. name: "BIG",
  36111. height: math.unit(25, "feet")
  36112. },
  36113. ]
  36114. ))
  36115. characterMakers.push(() => makeCharacter(
  36116. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36117. {
  36118. side: {
  36119. height: math.unit(7 + 5/12, "feet"),
  36120. weight: math.unit(2800, "lb"),
  36121. name: "Side",
  36122. image: {
  36123. source: "./media/characters/haloren/side.svg",
  36124. extra: 1793/409,
  36125. bottom: 59/1852
  36126. }
  36127. },
  36128. frontPaw: {
  36129. height: math.unit(2.36, "feet"),
  36130. name: "Front paw",
  36131. image: {
  36132. source: "./media/characters/haloren/front-paw.svg"
  36133. }
  36134. },
  36135. hindPaw: {
  36136. height: math.unit(3.18, "feet"),
  36137. name: "Hind paw",
  36138. image: {
  36139. source: "./media/characters/haloren/hind-paw.svg"
  36140. }
  36141. },
  36142. maw: {
  36143. height: math.unit(5.05, "feet"),
  36144. name: "Maw",
  36145. image: {
  36146. source: "./media/characters/haloren/maw.svg"
  36147. }
  36148. },
  36149. dick: {
  36150. height: math.unit(2.90, "feet"),
  36151. name: "Dick",
  36152. image: {
  36153. source: "./media/characters/haloren/dick.svg"
  36154. }
  36155. },
  36156. },
  36157. [
  36158. {
  36159. name: "Normal",
  36160. height: math.unit(7 + 5/12, "feet"),
  36161. default: true
  36162. },
  36163. {
  36164. name: "Enhanced",
  36165. height: math.unit(14 + 3/12, "feet")
  36166. },
  36167. ]
  36168. ))
  36169. characterMakers.push(() => makeCharacter(
  36170. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36171. {
  36172. front: {
  36173. height: math.unit(171, "cm"),
  36174. name: "Front",
  36175. image: {
  36176. source: "./media/characters/kimmy/front.svg",
  36177. extra: 1491/1435,
  36178. bottom: 53/1544
  36179. }
  36180. },
  36181. },
  36182. [
  36183. {
  36184. name: "Small",
  36185. height: math.unit(9, "cm")
  36186. },
  36187. {
  36188. name: "Normal",
  36189. height: math.unit(171, "cm"),
  36190. default: true
  36191. },
  36192. ]
  36193. ))
  36194. characterMakers.push(() => makeCharacter(
  36195. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36196. {
  36197. front: {
  36198. height: math.unit(8, "feet"),
  36199. weight: math.unit(300, "lb"),
  36200. name: "Front",
  36201. image: {
  36202. source: "./media/characters/galeboomer/front.svg",
  36203. extra: 4651/4415,
  36204. bottom: 162/4813
  36205. }
  36206. },
  36207. back: {
  36208. height: math.unit(8, "feet"),
  36209. weight: math.unit(300, "lb"),
  36210. name: "Back",
  36211. image: {
  36212. source: "./media/characters/galeboomer/back.svg",
  36213. extra: 4544/4314,
  36214. bottom: 16/4560
  36215. }
  36216. },
  36217. frontAlt: {
  36218. height: math.unit(8, "feet"),
  36219. weight: math.unit(300, "lb"),
  36220. name: "Front (Alt)",
  36221. image: {
  36222. source: "./media/characters/galeboomer/front-alt.svg",
  36223. extra: 4458/4228,
  36224. bottom: 68/4526
  36225. }
  36226. },
  36227. maw: {
  36228. height: math.unit(1.2, "feet"),
  36229. name: "Maw",
  36230. image: {
  36231. source: "./media/characters/galeboomer/maw.svg"
  36232. }
  36233. },
  36234. },
  36235. [
  36236. {
  36237. name: "Normal",
  36238. height: math.unit(8, "feet"),
  36239. default: true
  36240. },
  36241. ]
  36242. ))
  36243. characterMakers.push(() => makeCharacter(
  36244. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36245. {
  36246. front: {
  36247. height: math.unit(5 + 9/12, "feet"),
  36248. weight: math.unit(120, "lb"),
  36249. name: "Front",
  36250. image: {
  36251. source: "./media/characters/chyr/front.svg",
  36252. extra: 1323/1254,
  36253. bottom: 63/1386
  36254. }
  36255. },
  36256. back: {
  36257. height: math.unit(5 + 9/12, "feet"),
  36258. weight: math.unit(120, "lb"),
  36259. name: "Back",
  36260. image: {
  36261. source: "./media/characters/chyr/back.svg",
  36262. extra: 1323/1252,
  36263. bottom: 48/1371
  36264. }
  36265. },
  36266. },
  36267. [
  36268. {
  36269. name: "Normal",
  36270. height: math.unit(5 + 9/12, "feet"),
  36271. default: true
  36272. },
  36273. ]
  36274. ))
  36275. characterMakers.push(() => makeCharacter(
  36276. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36277. {
  36278. front: {
  36279. height: math.unit(7, "feet"),
  36280. weight: math.unit(310, "lb"),
  36281. name: "Front",
  36282. image: {
  36283. source: "./media/characters/solarus/front.svg",
  36284. extra: 2415/2021,
  36285. bottom: 103/2518
  36286. }
  36287. },
  36288. back: {
  36289. height: math.unit(7, "feet"),
  36290. weight: math.unit(310, "lb"),
  36291. name: "Back",
  36292. image: {
  36293. source: "./media/characters/solarus/back.svg",
  36294. extra: 2463/2089,
  36295. bottom: 79/2542
  36296. }
  36297. },
  36298. },
  36299. [
  36300. {
  36301. name: "Normal",
  36302. height: math.unit(7, "feet"),
  36303. default: true
  36304. },
  36305. ]
  36306. ))
  36307. characterMakers.push(() => makeCharacter(
  36308. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36309. {
  36310. front: {
  36311. height: math.unit(16, "feet"),
  36312. name: "Front",
  36313. image: {
  36314. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36315. extra: 1844/1780,
  36316. bottom: 58/1902
  36317. }
  36318. },
  36319. winterCoat: {
  36320. height: math.unit(16, "feet"),
  36321. name: "Winter Coat",
  36322. image: {
  36323. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36324. extra: 1807/1775,
  36325. bottom: 69/1876
  36326. }
  36327. },
  36328. },
  36329. [
  36330. {
  36331. name: "Normal",
  36332. height: math.unit(16, "feet"),
  36333. default: true
  36334. },
  36335. {
  36336. name: "Chicago Size",
  36337. height: math.unit(560, "feet")
  36338. },
  36339. ]
  36340. ))
  36341. characterMakers.push(() => makeCharacter(
  36342. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36343. {
  36344. front: {
  36345. height: math.unit(11 + 6/12, "feet"),
  36346. weight: math.unit(1366, "lb"),
  36347. name: "Front",
  36348. image: {
  36349. source: "./media/characters/lexor/front.svg",
  36350. extra: 1560/1481,
  36351. bottom: 211/1771
  36352. }
  36353. },
  36354. back: {
  36355. height: math.unit(11 + 6/12, "feet"),
  36356. weight: math.unit(1366, "lb"),
  36357. name: "Back",
  36358. image: {
  36359. source: "./media/characters/lexor/back.svg",
  36360. extra: 1614/1533,
  36361. bottom: 76/1690
  36362. }
  36363. },
  36364. maw: {
  36365. height: math.unit(3, "feet"),
  36366. name: "Maw",
  36367. image: {
  36368. source: "./media/characters/lexor/maw.svg"
  36369. }
  36370. },
  36371. dick: {
  36372. height: math.unit(2.59, "feet"),
  36373. name: "Dick",
  36374. image: {
  36375. source: "./media/characters/lexor/dick.svg"
  36376. }
  36377. },
  36378. },
  36379. [
  36380. {
  36381. name: "Normal",
  36382. height: math.unit(11 + 6/12, "feet"),
  36383. default: true
  36384. },
  36385. ]
  36386. ))
  36387. characterMakers.push(() => makeCharacter(
  36388. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36389. {
  36390. front: {
  36391. height: math.unit(5 + 8/12, "feet"),
  36392. name: "Front",
  36393. image: {
  36394. source: "./media/characters/magnum/front.svg",
  36395. extra: 942/855,
  36396. bottom: 26/968
  36397. }
  36398. },
  36399. },
  36400. [
  36401. {
  36402. name: "Normal",
  36403. height: math.unit(5 + 8/12, "feet"),
  36404. default: true
  36405. },
  36406. ]
  36407. ))
  36408. characterMakers.push(() => makeCharacter(
  36409. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36410. {
  36411. front: {
  36412. height: math.unit(18 + 4/12, "feet"),
  36413. weight: math.unit(1500, "kg"),
  36414. name: "Front",
  36415. image: {
  36416. source: "./media/characters/solas-sharpsman/front.svg",
  36417. extra: 1698/1589,
  36418. bottom: 0/1698
  36419. }
  36420. },
  36421. },
  36422. [
  36423. {
  36424. name: "Normal",
  36425. height: math.unit(18 + 4/12, "feet"),
  36426. default: true
  36427. },
  36428. ]
  36429. ))
  36430. characterMakers.push(() => makeCharacter(
  36431. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36432. {
  36433. front: {
  36434. height: math.unit(5 + 5/12, "feet"),
  36435. weight: math.unit(180, "lb"),
  36436. name: "Front",
  36437. image: {
  36438. source: "./media/characters/october/front.svg",
  36439. extra: 1800/1650,
  36440. bottom: 0/1800
  36441. }
  36442. },
  36443. frontNsfw: {
  36444. height: math.unit(5 + 5/12, "feet"),
  36445. weight: math.unit(180, "lb"),
  36446. name: "Front (NSFW)",
  36447. image: {
  36448. source: "./media/characters/october/front-nsfw.svg",
  36449. extra: 1392/1307,
  36450. bottom: 42/1434
  36451. }
  36452. },
  36453. },
  36454. [
  36455. {
  36456. name: "Normal",
  36457. height: math.unit(5 + 5/12, "feet"),
  36458. default: true
  36459. },
  36460. ]
  36461. ))
  36462. characterMakers.push(() => makeCharacter(
  36463. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36464. {
  36465. front: {
  36466. height: math.unit(8 + 6/12, "feet"),
  36467. name: "Front",
  36468. image: {
  36469. source: "./media/characters/essynkardi/front.svg",
  36470. extra: 1914/1846,
  36471. bottom: 22/1936
  36472. }
  36473. },
  36474. },
  36475. [
  36476. {
  36477. name: "Normal",
  36478. height: math.unit(8 + 6/12, "feet"),
  36479. default: true
  36480. },
  36481. ]
  36482. ))
  36483. characterMakers.push(() => makeCharacter(
  36484. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36485. {
  36486. front: {
  36487. height: math.unit(6 + 6/12, "feet"),
  36488. weight: math.unit(7, "lb"),
  36489. name: "Front",
  36490. image: {
  36491. source: "./media/characters/icky/front.svg",
  36492. extra: 813/782,
  36493. bottom: 66/879
  36494. }
  36495. },
  36496. back: {
  36497. height: math.unit(6 + 6/12, "feet"),
  36498. weight: math.unit(7, "lb"),
  36499. name: "Back",
  36500. image: {
  36501. source: "./media/characters/icky/back.svg",
  36502. extra: 754/735,
  36503. bottom: 56/810
  36504. }
  36505. },
  36506. },
  36507. [
  36508. {
  36509. name: "Normal",
  36510. height: math.unit(6 + 6/12, "feet"),
  36511. default: true
  36512. },
  36513. ]
  36514. ))
  36515. characterMakers.push(() => makeCharacter(
  36516. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36517. {
  36518. front: {
  36519. height: math.unit(15, "feet"),
  36520. name: "Front",
  36521. image: {
  36522. source: "./media/characters/rojas/front.svg",
  36523. extra: 1462/1408,
  36524. bottom: 95/1557
  36525. }
  36526. },
  36527. back: {
  36528. height: math.unit(15, "feet"),
  36529. name: "Back",
  36530. image: {
  36531. source: "./media/characters/rojas/back.svg",
  36532. extra: 1023/954,
  36533. bottom: 28/1051
  36534. }
  36535. },
  36536. },
  36537. [
  36538. {
  36539. name: "Normal",
  36540. height: math.unit(15, "feet"),
  36541. default: true
  36542. },
  36543. ]
  36544. ))
  36545. characterMakers.push(() => makeCharacter(
  36546. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36547. {
  36548. frontHuman: {
  36549. height: math.unit(5 + 7/12, "feet"),
  36550. name: "Front (Human)",
  36551. image: {
  36552. source: "./media/characters/alek-dryagan/front-human.svg",
  36553. extra: 1687/1667,
  36554. bottom: 69/1756
  36555. }
  36556. },
  36557. backHuman: {
  36558. height: math.unit(5 + 7/12, "feet"),
  36559. name: "Back (Human)",
  36560. image: {
  36561. source: "./media/characters/alek-dryagan/back-human.svg",
  36562. extra: 1670/1649,
  36563. bottom: 65/1735
  36564. }
  36565. },
  36566. frontDemi: {
  36567. height: math.unit(65, "feet"),
  36568. name: "Front (Demi)",
  36569. image: {
  36570. source: "./media/characters/alek-dryagan/front-demi.svg",
  36571. extra: 1669/1642,
  36572. bottom: 49/1718
  36573. }
  36574. },
  36575. backDemi: {
  36576. height: math.unit(65, "feet"),
  36577. name: "Back (Demi)",
  36578. image: {
  36579. source: "./media/characters/alek-dryagan/back-demi.svg",
  36580. extra: 1658/1637,
  36581. bottom: 40/1698
  36582. }
  36583. },
  36584. mawHuman: {
  36585. height: math.unit(0.3, "feet"),
  36586. name: "Maw (Human)",
  36587. image: {
  36588. source: "./media/characters/alek-dryagan/maw-human.svg"
  36589. }
  36590. },
  36591. mawDemi: {
  36592. height: math.unit(3.8, "feet"),
  36593. name: "Maw (Demi)",
  36594. image: {
  36595. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36596. }
  36597. },
  36598. },
  36599. [
  36600. {
  36601. name: "Normal",
  36602. height: math.unit(5 + 7/12, "feet"),
  36603. default: true
  36604. },
  36605. ]
  36606. ))
  36607. characterMakers.push(() => makeCharacter(
  36608. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36609. {
  36610. frontHuman: {
  36611. height: math.unit(5 + 2/12, "feet"),
  36612. name: "Front (Human)",
  36613. image: {
  36614. source: "./media/characters/gen/front-human.svg",
  36615. extra: 1627/1538,
  36616. bottom: 71/1698
  36617. }
  36618. },
  36619. backHuman: {
  36620. height: math.unit(5 + 2/12, "feet"),
  36621. name: "Back (Human)",
  36622. image: {
  36623. source: "./media/characters/gen/back-human.svg",
  36624. extra: 1638/1548,
  36625. bottom: 69/1707
  36626. }
  36627. },
  36628. frontDemi: {
  36629. height: math.unit(5 + 2/12, "feet"),
  36630. name: "Front (Demi)",
  36631. image: {
  36632. source: "./media/characters/gen/front-demi.svg",
  36633. extra: 1627/1538,
  36634. bottom: 71/1698
  36635. }
  36636. },
  36637. backDemi: {
  36638. height: math.unit(5 + 2/12, "feet"),
  36639. name: "Back (Demi)",
  36640. image: {
  36641. source: "./media/characters/gen/back-demi.svg",
  36642. extra: 1638/1548,
  36643. bottom: 69/1707
  36644. }
  36645. },
  36646. },
  36647. [
  36648. {
  36649. name: "Normal",
  36650. height: math.unit(5 + 2/12, "feet"),
  36651. default: true
  36652. },
  36653. ]
  36654. ))
  36655. characterMakers.push(() => makeCharacter(
  36656. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36657. {
  36658. frontImp: {
  36659. height: math.unit(1 + 11/12, "feet"),
  36660. name: "Front (Imp)",
  36661. image: {
  36662. source: "./media/characters/max-kobold/front-imp.svg",
  36663. extra: 1238/1134,
  36664. bottom: 81/1319
  36665. }
  36666. },
  36667. backImp: {
  36668. height: math.unit(1 + 11/12, "feet"),
  36669. name: "Back (Imp)",
  36670. image: {
  36671. source: "./media/characters/max-kobold/back-imp.svg",
  36672. extra: 1334/1175,
  36673. bottom: 34/1368
  36674. }
  36675. },
  36676. frontDemi: {
  36677. height: math.unit(5 + 9/12, "feet"),
  36678. name: "Front (Demi)",
  36679. image: {
  36680. source: "./media/characters/max-kobold/front-demi.svg",
  36681. extra: 1715/1685,
  36682. bottom: 54/1769
  36683. }
  36684. },
  36685. backDemi: {
  36686. height: math.unit(5 + 9/12, "feet"),
  36687. name: "Back (Demi)",
  36688. image: {
  36689. source: "./media/characters/max-kobold/back-demi.svg",
  36690. extra: 1752/1729,
  36691. bottom: 41/1793
  36692. }
  36693. },
  36694. handImp: {
  36695. height: math.unit(0.45, "feet"),
  36696. name: "Hand (Imp)",
  36697. image: {
  36698. source: "./media/characters/max-kobold/hand.svg"
  36699. }
  36700. },
  36701. pawImp: {
  36702. height: math.unit(0.46, "feet"),
  36703. name: "Paw (Imp)",
  36704. image: {
  36705. source: "./media/characters/max-kobold/paw.svg"
  36706. }
  36707. },
  36708. handDemi: {
  36709. height: math.unit(0.80, "feet"),
  36710. name: "Hand (Demi)",
  36711. image: {
  36712. source: "./media/characters/max-kobold/hand.svg"
  36713. }
  36714. },
  36715. pawDemi: {
  36716. height: math.unit(1.1, "feet"),
  36717. name: "Paw (Demi)",
  36718. image: {
  36719. source: "./media/characters/max-kobold/paw.svg"
  36720. }
  36721. },
  36722. headImp: {
  36723. height: math.unit(1.33, "feet"),
  36724. name: "Head (Imp)",
  36725. image: {
  36726. source: "./media/characters/max-kobold/head-imp.svg"
  36727. }
  36728. },
  36729. mawImp: {
  36730. height: math.unit(0.75, "feet"),
  36731. name: "Maw (Imp)",
  36732. image: {
  36733. source: "./media/characters/max-kobold/maw-imp.svg"
  36734. }
  36735. },
  36736. mawDemi: {
  36737. height: math.unit(0.42, "feet"),
  36738. name: "Maw (Demi)",
  36739. image: {
  36740. source: "./media/characters/max-kobold/maw-demi.svg"
  36741. }
  36742. },
  36743. },
  36744. [
  36745. {
  36746. name: "Normal",
  36747. height: math.unit(1 + 11/12, "feet"),
  36748. default: true
  36749. },
  36750. ]
  36751. ))
  36752. characterMakers.push(() => makeCharacter(
  36753. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36754. {
  36755. front: {
  36756. height: math.unit(7 + 5/12, "feet"),
  36757. name: "Front",
  36758. image: {
  36759. source: "./media/characters/carbon/front.svg",
  36760. extra: 1754/1689,
  36761. bottom: 65/1819
  36762. }
  36763. },
  36764. back: {
  36765. height: math.unit(7 + 5/12, "feet"),
  36766. name: "Back",
  36767. image: {
  36768. source: "./media/characters/carbon/back.svg",
  36769. extra: 1762/1695,
  36770. bottom: 24/1786
  36771. }
  36772. },
  36773. frontGigantamax: {
  36774. height: math.unit(150, "feet"),
  36775. name: "Front (Gigantamax)",
  36776. image: {
  36777. source: "./media/characters/carbon/front-gigantamax.svg",
  36778. extra: 1826/1669,
  36779. bottom: 59/1885
  36780. }
  36781. },
  36782. backGigantamax: {
  36783. height: math.unit(150, "feet"),
  36784. name: "Back (Gigantamax)",
  36785. image: {
  36786. source: "./media/characters/carbon/back-gigantamax.svg",
  36787. extra: 1796/1653,
  36788. bottom: 53/1849
  36789. }
  36790. },
  36791. maw: {
  36792. height: math.unit(0.48, "feet"),
  36793. name: "Maw",
  36794. image: {
  36795. source: "./media/characters/carbon/maw.svg"
  36796. }
  36797. },
  36798. mawGigantamax: {
  36799. height: math.unit(7.5, "feet"),
  36800. name: "Maw (Gigantamax)",
  36801. image: {
  36802. source: "./media/characters/carbon/maw-gigantamax.svg"
  36803. }
  36804. },
  36805. },
  36806. [
  36807. {
  36808. name: "Normal",
  36809. height: math.unit(7 + 5/12, "feet"),
  36810. default: true
  36811. },
  36812. ]
  36813. ))
  36814. characterMakers.push(() => makeCharacter(
  36815. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36816. {
  36817. front: {
  36818. height: math.unit(6, "feet"),
  36819. name: "Front",
  36820. image: {
  36821. source: "./media/characters/maverick/front.svg",
  36822. extra: 1672/1661,
  36823. bottom: 85/1757
  36824. }
  36825. },
  36826. back: {
  36827. height: math.unit(6, "feet"),
  36828. name: "Back",
  36829. image: {
  36830. source: "./media/characters/maverick/back.svg",
  36831. extra: 1642/1631,
  36832. bottom: 38/1680
  36833. }
  36834. },
  36835. },
  36836. [
  36837. {
  36838. name: "Normal",
  36839. height: math.unit(6, "feet"),
  36840. default: true
  36841. },
  36842. ]
  36843. ))
  36844. characterMakers.push(() => makeCharacter(
  36845. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36846. {
  36847. front: {
  36848. height: math.unit(15, "feet"),
  36849. weight: math.unit(615, "lb"),
  36850. name: "Front",
  36851. image: {
  36852. source: "./media/characters/grockle/front.svg",
  36853. extra: 1535/1427,
  36854. bottom: 56/1591
  36855. }
  36856. },
  36857. },
  36858. [
  36859. {
  36860. name: "Normal",
  36861. height: math.unit(15, "feet"),
  36862. default: true
  36863. },
  36864. {
  36865. name: "Large",
  36866. height: math.unit(150, "feet")
  36867. },
  36868. {
  36869. name: "Macro",
  36870. height: math.unit(1876, "feet")
  36871. },
  36872. {
  36873. name: "Mega Macro",
  36874. height: math.unit(121940, "feet")
  36875. },
  36876. {
  36877. name: "Giga Macro",
  36878. height: math.unit(750, "km")
  36879. },
  36880. {
  36881. name: "Tera Macro",
  36882. height: math.unit(750000, "km")
  36883. },
  36884. {
  36885. name: "Galactic",
  36886. height: math.unit(1.4e5, "km")
  36887. },
  36888. {
  36889. name: "Godlike",
  36890. height: math.unit(9.8e280, "galaxies")
  36891. },
  36892. ]
  36893. ))
  36894. characterMakers.push(() => makeCharacter(
  36895. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36896. {
  36897. front: {
  36898. height: math.unit(11, "meters"),
  36899. weight: math.unit(20, "tonnes"),
  36900. name: "Front",
  36901. image: {
  36902. source: "./media/characters/alistair/front.svg",
  36903. extra: 1265/1009,
  36904. bottom: 93/1358
  36905. }
  36906. },
  36907. },
  36908. [
  36909. {
  36910. name: "Normal",
  36911. height: math.unit(11, "meters"),
  36912. default: true
  36913. },
  36914. ]
  36915. ))
  36916. characterMakers.push(() => makeCharacter(
  36917. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36918. {
  36919. front: {
  36920. height: math.unit(5 + 8/12, "feet"),
  36921. name: "Front",
  36922. image: {
  36923. source: "./media/characters/haruka/front.svg",
  36924. extra: 2012/1952,
  36925. bottom: 0/2012
  36926. }
  36927. },
  36928. },
  36929. [
  36930. {
  36931. name: "Normal",
  36932. height: math.unit(5 + 8/12, "feet"),
  36933. default: true
  36934. },
  36935. ]
  36936. ))
  36937. characterMakers.push(() => makeCharacter(
  36938. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36939. {
  36940. back: {
  36941. height: math.unit(9, "feet"),
  36942. name: "Back",
  36943. image: {
  36944. source: "./media/characters/vivian-sylveon/back.svg",
  36945. extra: 1853/1714,
  36946. bottom: 0/1853
  36947. }
  36948. },
  36949. },
  36950. [
  36951. {
  36952. name: "Normal",
  36953. height: math.unit(9, "feet"),
  36954. default: true
  36955. },
  36956. {
  36957. name: "Macro",
  36958. height: math.unit(500, "feet")
  36959. },
  36960. {
  36961. name: "Megamacro",
  36962. height: math.unit(600, "miles")
  36963. },
  36964. {
  36965. name: "Gigamacro",
  36966. height: math.unit(30000, "miles")
  36967. },
  36968. ]
  36969. ))
  36970. characterMakers.push(() => makeCharacter(
  36971. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36972. {
  36973. anthro: {
  36974. height: math.unit(5 + 10/12, "feet"),
  36975. weight: math.unit(100, "lb"),
  36976. name: "Anthro",
  36977. image: {
  36978. source: "./media/characters/daiki/anthro.svg",
  36979. extra: 1115/1027,
  36980. bottom: 69/1184
  36981. }
  36982. },
  36983. feral: {
  36984. height: math.unit(200, "feet"),
  36985. name: "Feral",
  36986. image: {
  36987. source: "./media/characters/daiki/feral.svg",
  36988. extra: 1256/313,
  36989. bottom: 39/1295
  36990. }
  36991. },
  36992. feralHead: {
  36993. height: math.unit(171, "feet"),
  36994. name: "Feral Head",
  36995. image: {
  36996. source: "./media/characters/daiki/feral-head.svg"
  36997. }
  36998. },
  36999. manaDragon: {
  37000. height: math.unit(170, "meters"),
  37001. name: "Mana-dragon",
  37002. image: {
  37003. source: "./media/characters/daiki/mana-dragon.svg",
  37004. extra: 763/420,
  37005. bottom: 97/860
  37006. }
  37007. },
  37008. },
  37009. [
  37010. {
  37011. name: "Normal",
  37012. height: math.unit(5 + 10/12, "feet"),
  37013. default: true
  37014. },
  37015. ]
  37016. ))
  37017. characterMakers.push(() => makeCharacter(
  37018. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37019. {
  37020. fullyEquippedFront: {
  37021. height: math.unit(3 + 1/12, "feet"),
  37022. weight: math.unit(24, "lb"),
  37023. name: "Fully Equipped (Front)",
  37024. image: {
  37025. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37026. extra: 687/605,
  37027. bottom: 18/705
  37028. }
  37029. },
  37030. fullyEquippedBack: {
  37031. height: math.unit(3 + 1/12, "feet"),
  37032. weight: math.unit(24, "lb"),
  37033. name: "Fully Equipped (Back)",
  37034. image: {
  37035. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37036. extra: 689/590,
  37037. bottom: 18/707
  37038. }
  37039. },
  37040. dailyWear: {
  37041. height: math.unit(3 + 1/12, "feet"),
  37042. weight: math.unit(24, "lb"),
  37043. name: "Daily Wear",
  37044. image: {
  37045. source: "./media/characters/tea-spot/daily-wear.svg",
  37046. extra: 701/620,
  37047. bottom: 21/722
  37048. }
  37049. },
  37050. maidWork: {
  37051. height: math.unit(3 + 1/12, "feet"),
  37052. weight: math.unit(24, "lb"),
  37053. name: "Maid Work",
  37054. image: {
  37055. source: "./media/characters/tea-spot/maid-work.svg",
  37056. extra: 693/609,
  37057. bottom: 15/708
  37058. }
  37059. },
  37060. },
  37061. [
  37062. {
  37063. name: "Normal",
  37064. height: math.unit(3 + 1/12, "feet"),
  37065. default: true
  37066. },
  37067. ]
  37068. ))
  37069. characterMakers.push(() => makeCharacter(
  37070. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37071. {
  37072. front: {
  37073. height: math.unit(175, "cm"),
  37074. weight: math.unit(75, "kg"),
  37075. name: "Front",
  37076. image: {
  37077. source: "./media/characters/chee/front.svg",
  37078. extra: 1796/1740,
  37079. bottom: 40/1836
  37080. }
  37081. },
  37082. },
  37083. [
  37084. {
  37085. name: "Micro-Micro",
  37086. height: math.unit(1, "nm")
  37087. },
  37088. {
  37089. name: "Micro-erst",
  37090. height: math.unit(1, "micrometer")
  37091. },
  37092. {
  37093. name: "Micro-er",
  37094. height: math.unit(1, "cm")
  37095. },
  37096. {
  37097. name: "Normal",
  37098. height: math.unit(175, "cm"),
  37099. default: true
  37100. },
  37101. {
  37102. name: "Macro",
  37103. height: math.unit(100, "m")
  37104. },
  37105. {
  37106. name: "Macro-er",
  37107. height: math.unit(1, "km")
  37108. },
  37109. {
  37110. name: "Macro-erst",
  37111. height: math.unit(10, "km")
  37112. },
  37113. {
  37114. name: "Macro-Macro",
  37115. height: math.unit(100, "km")
  37116. },
  37117. ]
  37118. ))
  37119. characterMakers.push(() => makeCharacter(
  37120. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37121. {
  37122. front: {
  37123. height: math.unit(11 + 9/12, "feet"),
  37124. weight: math.unit(935, "lb"),
  37125. name: "Front",
  37126. image: {
  37127. source: "./media/characters/kingsley/front.svg",
  37128. extra: 1803/1674,
  37129. bottom: 127/1930
  37130. }
  37131. },
  37132. frontNude: {
  37133. height: math.unit(11 + 9/12, "feet"),
  37134. weight: math.unit(935, "lb"),
  37135. name: "Front (Nude)",
  37136. image: {
  37137. source: "./media/characters/kingsley/front-nude.svg",
  37138. extra: 1803/1674,
  37139. bottom: 127/1930
  37140. }
  37141. },
  37142. },
  37143. [
  37144. {
  37145. name: "Normal",
  37146. height: math.unit(11 + 9/12, "feet"),
  37147. default: true
  37148. },
  37149. ]
  37150. ))
  37151. characterMakers.push(() => makeCharacter(
  37152. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37153. {
  37154. side: {
  37155. height: math.unit(9, "feet"),
  37156. name: "Side",
  37157. image: {
  37158. source: "./media/characters/rymel/side.svg",
  37159. extra: 792/469,
  37160. bottom: 121/913
  37161. }
  37162. },
  37163. maw: {
  37164. height: math.unit(2.4, "meters"),
  37165. name: "Maw",
  37166. image: {
  37167. source: "./media/characters/rymel/maw.svg"
  37168. }
  37169. },
  37170. },
  37171. [
  37172. {
  37173. name: "House Drake",
  37174. height: math.unit(2, "feet")
  37175. },
  37176. {
  37177. name: "Reduced",
  37178. height: math.unit(4.5, "feet")
  37179. },
  37180. {
  37181. name: "Normal",
  37182. height: math.unit(9, "feet"),
  37183. default: true
  37184. },
  37185. ]
  37186. ))
  37187. characterMakers.push(() => makeCharacter(
  37188. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37189. {
  37190. front: {
  37191. height: math.unit(1.74, "meters"),
  37192. weight: math.unit(55, "kg"),
  37193. name: "Front",
  37194. image: {
  37195. source: "./media/characters/rubus/front.svg",
  37196. extra: 1894/1742,
  37197. bottom: 44/1938
  37198. }
  37199. },
  37200. },
  37201. [
  37202. {
  37203. name: "Normal",
  37204. height: math.unit(1.74, "meters"),
  37205. default: true
  37206. },
  37207. ]
  37208. ))
  37209. characterMakers.push(() => makeCharacter(
  37210. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37211. {
  37212. front: {
  37213. height: math.unit(5 + 2/12, "feet"),
  37214. weight: math.unit(112, "lb"),
  37215. name: "Front",
  37216. image: {
  37217. source: "./media/characters/cassie-kingston/front.svg",
  37218. extra: 1438/1390,
  37219. bottom: 47/1485
  37220. }
  37221. },
  37222. },
  37223. [
  37224. {
  37225. name: "Normal",
  37226. height: math.unit(5 + 2/12, "feet"),
  37227. default: true
  37228. },
  37229. {
  37230. name: "Macro",
  37231. height: math.unit(128, "feet")
  37232. },
  37233. {
  37234. name: "Megamacro",
  37235. height: math.unit(2.56, "miles")
  37236. },
  37237. ]
  37238. ))
  37239. characterMakers.push(() => makeCharacter(
  37240. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37241. {
  37242. front: {
  37243. height: math.unit(7, "feet"),
  37244. name: "Front",
  37245. image: {
  37246. source: "./media/characters/fox/front.svg",
  37247. extra: 1798/1703,
  37248. bottom: 55/1853
  37249. }
  37250. },
  37251. back: {
  37252. height: math.unit(7, "feet"),
  37253. name: "Back",
  37254. image: {
  37255. source: "./media/characters/fox/back.svg",
  37256. extra: 1748/1649,
  37257. bottom: 32/1780
  37258. }
  37259. },
  37260. head: {
  37261. height: math.unit(1.95, "feet"),
  37262. name: "Head",
  37263. image: {
  37264. source: "./media/characters/fox/head.svg"
  37265. }
  37266. },
  37267. dick: {
  37268. height: math.unit(1.33, "feet"),
  37269. name: "Dick",
  37270. image: {
  37271. source: "./media/characters/fox/dick.svg"
  37272. }
  37273. },
  37274. foot: {
  37275. height: math.unit(1, "feet"),
  37276. name: "Foot",
  37277. image: {
  37278. source: "./media/characters/fox/foot.svg"
  37279. }
  37280. },
  37281. paw: {
  37282. height: math.unit(0.92, "feet"),
  37283. name: "Paw",
  37284. image: {
  37285. source: "./media/characters/fox/paw.svg"
  37286. }
  37287. },
  37288. },
  37289. [
  37290. {
  37291. name: "Small",
  37292. height: math.unit(3, "inches")
  37293. },
  37294. {
  37295. name: "\"Realistic\"",
  37296. height: math.unit(7, "feet")
  37297. },
  37298. {
  37299. name: "Normal",
  37300. height: math.unit(150, "feet"),
  37301. default: true
  37302. },
  37303. {
  37304. name: "BIG",
  37305. height: math.unit(1200, "feet")
  37306. },
  37307. {
  37308. name: "👀",
  37309. height: math.unit(5, "miles")
  37310. },
  37311. {
  37312. name: "👀👀👀",
  37313. height: math.unit(64, "miles")
  37314. },
  37315. ]
  37316. ))
  37317. characterMakers.push(() => makeCharacter(
  37318. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37319. {
  37320. front: {
  37321. height: math.unit(625, "feet"),
  37322. name: "Front",
  37323. image: {
  37324. source: "./media/characters/asonja-rossa/front.svg",
  37325. extra: 1833/1686,
  37326. bottom: 24/1857
  37327. }
  37328. },
  37329. back: {
  37330. height: math.unit(625, "feet"),
  37331. name: "Back",
  37332. image: {
  37333. source: "./media/characters/asonja-rossa/back.svg",
  37334. extra: 1852/1753,
  37335. bottom: 26/1878
  37336. }
  37337. },
  37338. },
  37339. [
  37340. {
  37341. name: "Macro",
  37342. height: math.unit(625, "feet"),
  37343. default: true
  37344. },
  37345. ]
  37346. ))
  37347. characterMakers.push(() => makeCharacter(
  37348. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37349. {
  37350. side: {
  37351. height: math.unit(8, "feet"),
  37352. name: "Side",
  37353. image: {
  37354. source: "./media/characters/rezukii/side.svg",
  37355. extra: 979/542,
  37356. bottom: 87/1066
  37357. }
  37358. },
  37359. sitting: {
  37360. height: math.unit(14.6, "feet"),
  37361. name: "Sitting",
  37362. image: {
  37363. source: "./media/characters/rezukii/sitting.svg",
  37364. extra: 1023/813,
  37365. bottom: 45/1068
  37366. }
  37367. },
  37368. },
  37369. [
  37370. {
  37371. name: "Tiny",
  37372. height: math.unit(2, "feet")
  37373. },
  37374. {
  37375. name: "Smol",
  37376. height: math.unit(4, "feet")
  37377. },
  37378. {
  37379. name: "Normal",
  37380. height: math.unit(8, "feet"),
  37381. default: true
  37382. },
  37383. {
  37384. name: "Big",
  37385. height: math.unit(12, "feet")
  37386. },
  37387. {
  37388. name: "Macro",
  37389. height: math.unit(30, "feet")
  37390. },
  37391. ]
  37392. ))
  37393. characterMakers.push(() => makeCharacter(
  37394. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37395. {
  37396. front: {
  37397. height: math.unit(14, "feet"),
  37398. weight: math.unit(9.5, "tonnes"),
  37399. name: "Front",
  37400. image: {
  37401. source: "./media/characters/dawnheart/front.svg",
  37402. extra: 2792/2675,
  37403. bottom: 64/2856
  37404. }
  37405. },
  37406. },
  37407. [
  37408. {
  37409. name: "Normal",
  37410. height: math.unit(14, "feet"),
  37411. default: true
  37412. },
  37413. ]
  37414. ))
  37415. characterMakers.push(() => makeCharacter(
  37416. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37417. {
  37418. front: {
  37419. height: math.unit(1.7, "m"),
  37420. name: "Front",
  37421. image: {
  37422. source: "./media/characters/gladi/front.svg",
  37423. extra: 1460/1362,
  37424. bottom: 19/1479
  37425. }
  37426. },
  37427. back: {
  37428. height: math.unit(1.7, "m"),
  37429. name: "Back",
  37430. image: {
  37431. source: "./media/characters/gladi/back.svg",
  37432. extra: 1459/1357,
  37433. bottom: 12/1471
  37434. }
  37435. },
  37436. feral: {
  37437. height: math.unit(2.05, "m"),
  37438. name: "Feral",
  37439. image: {
  37440. source: "./media/characters/gladi/feral.svg",
  37441. extra: 821/557,
  37442. bottom: 91/912
  37443. }
  37444. },
  37445. },
  37446. [
  37447. {
  37448. name: "Shortest",
  37449. height: math.unit(70, "cm")
  37450. },
  37451. {
  37452. name: "Normal",
  37453. height: math.unit(1.7, "m")
  37454. },
  37455. {
  37456. name: "Macro",
  37457. height: math.unit(10, "m"),
  37458. default: true
  37459. },
  37460. {
  37461. name: "Tallest",
  37462. height: math.unit(200, "m")
  37463. },
  37464. ]
  37465. ))
  37466. characterMakers.push(() => makeCharacter(
  37467. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37468. {
  37469. front: {
  37470. height: math.unit(5 + 7/12, "feet"),
  37471. weight: math.unit(2, "tons"),
  37472. name: "Front",
  37473. image: {
  37474. source: "./media/characters/erdno/front.svg",
  37475. extra: 1234/1129,
  37476. bottom: 35/1269
  37477. }
  37478. },
  37479. angled: {
  37480. height: math.unit(5 + 7/12, "feet"),
  37481. weight: math.unit(2, "tons"),
  37482. name: "Angled",
  37483. image: {
  37484. source: "./media/characters/erdno/angled.svg",
  37485. extra: 1185/1139,
  37486. bottom: 36/1221
  37487. }
  37488. },
  37489. side: {
  37490. height: math.unit(5 + 7/12, "feet"),
  37491. weight: math.unit(2, "tons"),
  37492. name: "Side",
  37493. image: {
  37494. source: "./media/characters/erdno/side.svg",
  37495. extra: 1191/1144,
  37496. bottom: 40/1231
  37497. }
  37498. },
  37499. back: {
  37500. height: math.unit(5 + 7/12, "feet"),
  37501. weight: math.unit(2, "tons"),
  37502. name: "Back",
  37503. image: {
  37504. source: "./media/characters/erdno/back.svg",
  37505. extra: 1202/1146,
  37506. bottom: 17/1219
  37507. }
  37508. },
  37509. frontNsfw: {
  37510. height: math.unit(5 + 7/12, "feet"),
  37511. weight: math.unit(2, "tons"),
  37512. name: "Front (NSFW)",
  37513. image: {
  37514. source: "./media/characters/erdno/front-nsfw.svg",
  37515. extra: 1234/1129,
  37516. bottom: 35/1269
  37517. }
  37518. },
  37519. angledNsfw: {
  37520. height: math.unit(5 + 7/12, "feet"),
  37521. weight: math.unit(2, "tons"),
  37522. name: "Angled (NSFW)",
  37523. image: {
  37524. source: "./media/characters/erdno/angled-nsfw.svg",
  37525. extra: 1185/1139,
  37526. bottom: 36/1221
  37527. }
  37528. },
  37529. sideNsfw: {
  37530. height: math.unit(5 + 7/12, "feet"),
  37531. weight: math.unit(2, "tons"),
  37532. name: "Side (NSFW)",
  37533. image: {
  37534. source: "./media/characters/erdno/side-nsfw.svg",
  37535. extra: 1191/1144,
  37536. bottom: 40/1231
  37537. }
  37538. },
  37539. backNsfw: {
  37540. height: math.unit(5 + 7/12, "feet"),
  37541. weight: math.unit(2, "tons"),
  37542. name: "Back (NSFW)",
  37543. image: {
  37544. source: "./media/characters/erdno/back-nsfw.svg",
  37545. extra: 1202/1146,
  37546. bottom: 17/1219
  37547. }
  37548. },
  37549. frontHyper: {
  37550. height: math.unit(5 + 7/12, "feet"),
  37551. weight: math.unit(2, "tons"),
  37552. name: "Front (Hyper)",
  37553. image: {
  37554. source: "./media/characters/erdno/front-hyper.svg",
  37555. extra: 1298/1136,
  37556. bottom: 35/1333
  37557. }
  37558. },
  37559. },
  37560. [
  37561. {
  37562. name: "Normal",
  37563. height: math.unit(5 + 7/12, "feet"),
  37564. default: true
  37565. },
  37566. {
  37567. name: "Big",
  37568. height: math.unit(5.7, "meters")
  37569. },
  37570. {
  37571. name: "Macro",
  37572. height: math.unit(5.7, "kilometers")
  37573. },
  37574. {
  37575. name: "Megamacro",
  37576. height: math.unit(5.7, "earths")
  37577. },
  37578. ]
  37579. ))
  37580. characterMakers.push(() => makeCharacter(
  37581. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37582. {
  37583. front: {
  37584. height: math.unit(5 + 10/12, "feet"),
  37585. weight: math.unit(150, "lb"),
  37586. name: "Front",
  37587. image: {
  37588. source: "./media/characters/jamie/front.svg",
  37589. extra: 1908/1768,
  37590. bottom: 19/1927
  37591. }
  37592. },
  37593. },
  37594. [
  37595. {
  37596. name: "Minimum",
  37597. height: math.unit(2, "cm")
  37598. },
  37599. {
  37600. name: "Micro",
  37601. height: math.unit(3, "inches")
  37602. },
  37603. {
  37604. name: "Normal",
  37605. height: math.unit(5 + 10/12, "feet"),
  37606. default: true
  37607. },
  37608. {
  37609. name: "Macro",
  37610. height: math.unit(150, "feet")
  37611. },
  37612. {
  37613. name: "Megamacro",
  37614. height: math.unit(10000, "m")
  37615. },
  37616. ]
  37617. ))
  37618. characterMakers.push(() => makeCharacter(
  37619. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37620. {
  37621. front: {
  37622. height: math.unit(2, "meters"),
  37623. weight: math.unit(100, "kg"),
  37624. name: "Front",
  37625. image: {
  37626. source: "./media/characters/shiron/front.svg",
  37627. extra: 2103/1985,
  37628. bottom: 98/2201
  37629. }
  37630. },
  37631. back: {
  37632. height: math.unit(2, "meters"),
  37633. weight: math.unit(100, "kg"),
  37634. name: "Back",
  37635. image: {
  37636. source: "./media/characters/shiron/back.svg",
  37637. extra: 2110/2015,
  37638. bottom: 89/2199
  37639. }
  37640. },
  37641. hand: {
  37642. height: math.unit(0.96, "feet"),
  37643. name: "Hand",
  37644. image: {
  37645. source: "./media/characters/shiron/hand.svg"
  37646. }
  37647. },
  37648. foot: {
  37649. height: math.unit(1.464, "feet"),
  37650. name: "Foot",
  37651. image: {
  37652. source: "./media/characters/shiron/foot.svg"
  37653. }
  37654. },
  37655. },
  37656. [
  37657. {
  37658. name: "Normal",
  37659. height: math.unit(2, "meters")
  37660. },
  37661. {
  37662. name: "Macro",
  37663. height: math.unit(500, "meters"),
  37664. default: true
  37665. },
  37666. {
  37667. name: "Megamacro",
  37668. height: math.unit(20, "km")
  37669. },
  37670. ]
  37671. ))
  37672. characterMakers.push(() => makeCharacter(
  37673. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37674. {
  37675. front: {
  37676. height: math.unit(6, "feet"),
  37677. name: "Front",
  37678. image: {
  37679. source: "./media/characters/sam/front.svg",
  37680. extra: 849/826,
  37681. bottom: 19/868
  37682. }
  37683. },
  37684. },
  37685. [
  37686. {
  37687. name: "Normal",
  37688. height: math.unit(6, "feet"),
  37689. default: true
  37690. },
  37691. ]
  37692. ))
  37693. characterMakers.push(() => makeCharacter(
  37694. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37695. {
  37696. front: {
  37697. height: math.unit(8 + 4/12, "feet"),
  37698. weight: math.unit(122, "kg"),
  37699. name: "Front",
  37700. image: {
  37701. source: "./media/characters/namori-kurogawa/front.svg",
  37702. extra: 1894/1576,
  37703. bottom: 34/1928
  37704. }
  37705. },
  37706. },
  37707. [
  37708. {
  37709. name: "Normal",
  37710. height: math.unit(8 + 4/12, "feet"),
  37711. default: true
  37712. },
  37713. ]
  37714. ))
  37715. characterMakers.push(() => makeCharacter(
  37716. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37717. {
  37718. front: {
  37719. height: math.unit(9, "feet"),
  37720. weight: math.unit(621, "lb"),
  37721. name: "Front",
  37722. image: {
  37723. source: "./media/characters/unmru/front.svg",
  37724. extra: 1853/1747,
  37725. bottom: 73/1926
  37726. }
  37727. },
  37728. side: {
  37729. height: math.unit(9, "feet"),
  37730. weight: math.unit(621, "lb"),
  37731. name: "Side",
  37732. image: {
  37733. source: "./media/characters/unmru/side.svg",
  37734. extra: 1781/1671,
  37735. bottom: 127/1908
  37736. }
  37737. },
  37738. back: {
  37739. height: math.unit(9, "feet"),
  37740. weight: math.unit(621, "lb"),
  37741. name: "Back",
  37742. image: {
  37743. source: "./media/characters/unmru/back.svg",
  37744. extra: 1894/1765,
  37745. bottom: 75/1969
  37746. }
  37747. },
  37748. dick: {
  37749. height: math.unit(3, "feet"),
  37750. weight: math.unit(35, "lb"),
  37751. name: "Dick",
  37752. image: {
  37753. source: "./media/characters/unmru/dick.svg"
  37754. }
  37755. },
  37756. },
  37757. [
  37758. {
  37759. name: "Normal",
  37760. height: math.unit(9, "feet")
  37761. },
  37762. {
  37763. name: "Natural",
  37764. height: math.unit(27, "feet"),
  37765. default: true
  37766. },
  37767. {
  37768. name: "Giant",
  37769. height: math.unit(90, "feet")
  37770. },
  37771. {
  37772. name: "Kaiju",
  37773. height: math.unit(270, "feet")
  37774. },
  37775. {
  37776. name: "Macro",
  37777. height: math.unit(900, "feet")
  37778. },
  37779. {
  37780. name: "Macro+",
  37781. height: math.unit(2700, "feet")
  37782. },
  37783. {
  37784. name: "Megamacro",
  37785. height: math.unit(9000, "feet")
  37786. },
  37787. {
  37788. name: "City-Crushing",
  37789. height: math.unit(27000, "feet")
  37790. },
  37791. {
  37792. name: "Mountain-Mashing",
  37793. height: math.unit(90000, "feet")
  37794. },
  37795. {
  37796. name: "Earth-Eclipsing",
  37797. height: math.unit(2.7e8, "feet")
  37798. },
  37799. {
  37800. name: "Sol-Swallowing",
  37801. height: math.unit(9e10, "feet")
  37802. },
  37803. {
  37804. name: "Majoris-Munching",
  37805. height: math.unit(2.7e13, "feet")
  37806. },
  37807. ]
  37808. ))
  37809. characterMakers.push(() => makeCharacter(
  37810. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37811. {
  37812. front: {
  37813. height: math.unit(1, "inch"),
  37814. name: "Front",
  37815. image: {
  37816. source: "./media/characters/squeaks-mouse/front.svg",
  37817. extra: 352/308,
  37818. bottom: 25/377
  37819. }
  37820. },
  37821. },
  37822. [
  37823. {
  37824. name: "Micro",
  37825. height: math.unit(1, "inch"),
  37826. default: true
  37827. },
  37828. ]
  37829. ))
  37830. characterMakers.push(() => makeCharacter(
  37831. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37832. {
  37833. side: {
  37834. height: math.unit(35, "feet"),
  37835. name: "Side",
  37836. image: {
  37837. source: "./media/characters/sayko/side.svg",
  37838. extra: 1697/1021,
  37839. bottom: 82/1779
  37840. }
  37841. },
  37842. head: {
  37843. height: math.unit(16, "feet"),
  37844. name: "Head",
  37845. image: {
  37846. source: "./media/characters/sayko/head.svg"
  37847. }
  37848. },
  37849. forepaw: {
  37850. height: math.unit(7.85, "feet"),
  37851. name: "Forepaw",
  37852. image: {
  37853. source: "./media/characters/sayko/forepaw.svg"
  37854. }
  37855. },
  37856. hindpaw: {
  37857. height: math.unit(8.8, "feet"),
  37858. name: "Hindpaw",
  37859. image: {
  37860. source: "./media/characters/sayko/hindpaw.svg"
  37861. }
  37862. },
  37863. },
  37864. [
  37865. {
  37866. name: "Normal",
  37867. height: math.unit(35, "feet"),
  37868. default: true
  37869. },
  37870. {
  37871. name: "Colossus",
  37872. height: math.unit(100, "meters")
  37873. },
  37874. {
  37875. name: "\"Small\" Deity",
  37876. height: math.unit(1, "km")
  37877. },
  37878. {
  37879. name: "\"Large\" Deity",
  37880. height: math.unit(15, "km")
  37881. },
  37882. ]
  37883. ))
  37884. characterMakers.push(() => makeCharacter(
  37885. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37886. {
  37887. front: {
  37888. height: math.unit(6, "feet"),
  37889. weight: math.unit(250, "lb"),
  37890. name: "Front",
  37891. image: {
  37892. source: "./media/characters/mukiro/front.svg",
  37893. extra: 1368/1310,
  37894. bottom: 34/1402
  37895. }
  37896. },
  37897. },
  37898. [
  37899. {
  37900. name: "Normal",
  37901. height: math.unit(6, "feet"),
  37902. default: true
  37903. },
  37904. ]
  37905. ))
  37906. characterMakers.push(() => makeCharacter(
  37907. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37908. {
  37909. front: {
  37910. height: math.unit(12 + 4/12, "feet"),
  37911. name: "Front",
  37912. image: {
  37913. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37914. extra: 1346/1311,
  37915. bottom: 65/1411
  37916. }
  37917. },
  37918. },
  37919. [
  37920. {
  37921. name: "Base",
  37922. height: math.unit(12 + 4/12, "feet"),
  37923. default: true
  37924. },
  37925. {
  37926. name: "Macro",
  37927. height: math.unit(150, "feet")
  37928. },
  37929. {
  37930. name: "Mega",
  37931. height: math.unit(2, "miles")
  37932. },
  37933. {
  37934. name: "Demi God",
  37935. height: math.unit(4, "AU")
  37936. },
  37937. {
  37938. name: "God Size",
  37939. height: math.unit(1, "universe")
  37940. },
  37941. ]
  37942. ))
  37943. characterMakers.push(() => makeCharacter(
  37944. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37945. {
  37946. front: {
  37947. height: math.unit(3 + 3/12, "feet"),
  37948. weight: math.unit(88, "lb"),
  37949. name: "Front",
  37950. image: {
  37951. source: "./media/characters/trey/front.svg",
  37952. extra: 1815/1509,
  37953. bottom: 60/1875
  37954. }
  37955. },
  37956. },
  37957. [
  37958. {
  37959. name: "Normal",
  37960. height: math.unit(3 + 3/12, "feet"),
  37961. default: true
  37962. },
  37963. ]
  37964. ))
  37965. characterMakers.push(() => makeCharacter(
  37966. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  37967. {
  37968. front: {
  37969. height: math.unit(4, "meters"),
  37970. name: "Front",
  37971. image: {
  37972. source: "./media/characters/adelonda/front.svg",
  37973. extra: 1077/982,
  37974. bottom: 39/1116
  37975. }
  37976. },
  37977. back: {
  37978. height: math.unit(4, "meters"),
  37979. name: "Back",
  37980. image: {
  37981. source: "./media/characters/adelonda/back.svg",
  37982. extra: 1105/1003,
  37983. bottom: 25/1130
  37984. }
  37985. },
  37986. feral: {
  37987. height: math.unit(40/1.5, "meters"),
  37988. name: "Feral",
  37989. image: {
  37990. source: "./media/characters/adelonda/feral.svg",
  37991. extra: 597/271,
  37992. bottom: 387/984
  37993. }
  37994. },
  37995. },
  37996. [
  37997. {
  37998. name: "Normal",
  37999. height: math.unit(4, "meters"),
  38000. default: true
  38001. },
  38002. ]
  38003. ))
  38004. characterMakers.push(() => makeCharacter(
  38005. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38006. {
  38007. front: {
  38008. height: math.unit(8 + 4/12, "feet"),
  38009. weight: math.unit(670, "lb"),
  38010. name: "Front",
  38011. image: {
  38012. source: "./media/characters/acadiel/front.svg",
  38013. extra: 1901/1595,
  38014. bottom: 142/2043
  38015. }
  38016. },
  38017. },
  38018. [
  38019. {
  38020. name: "Normal",
  38021. height: math.unit(8 + 4/12, "feet"),
  38022. default: true
  38023. },
  38024. {
  38025. name: "Macro",
  38026. height: math.unit(200, "feet")
  38027. },
  38028. ]
  38029. ))
  38030. characterMakers.push(() => makeCharacter(
  38031. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38032. {
  38033. front: {
  38034. height: math.unit(6 + 2/12, "feet"),
  38035. weight: math.unit(185, "lb"),
  38036. name: "Front",
  38037. image: {
  38038. source: "./media/characters/kayne-ein/front.svg",
  38039. extra: 1780/1560,
  38040. bottom: 81/1861
  38041. }
  38042. },
  38043. },
  38044. [
  38045. {
  38046. name: "Normal",
  38047. height: math.unit(6 + 2/12, "feet"),
  38048. default: true
  38049. },
  38050. {
  38051. name: "Transformation Stage",
  38052. height: math.unit(15, "feet")
  38053. },
  38054. {
  38055. name: "Macro",
  38056. height: math.unit(150, "feet")
  38057. },
  38058. {
  38059. name: "Earth's Shadow",
  38060. height: math.unit(6200, "miles")
  38061. },
  38062. {
  38063. name: "Universal Demon",
  38064. height: math.unit(28e9, "parsecs")
  38065. },
  38066. {
  38067. name: "Multiverse God",
  38068. height: math.unit(3, "multiverses")
  38069. },
  38070. ]
  38071. ))
  38072. characterMakers.push(() => makeCharacter(
  38073. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38074. {
  38075. front: {
  38076. height: math.unit(5 + 5/12, "feet"),
  38077. name: "Front",
  38078. image: {
  38079. source: "./media/characters/fawn/front.svg",
  38080. extra: 1873/1731,
  38081. bottom: 95/1968
  38082. }
  38083. },
  38084. back: {
  38085. height: math.unit(5 + 5/12, "feet"),
  38086. name: "Back",
  38087. image: {
  38088. source: "./media/characters/fawn/back.svg",
  38089. extra: 1813/1700,
  38090. bottom: 14/1827
  38091. }
  38092. },
  38093. hoof: {
  38094. height: math.unit(1.45, "feet"),
  38095. name: "Hoof",
  38096. image: {
  38097. source: "./media/characters/fawn/hoof.svg"
  38098. }
  38099. },
  38100. },
  38101. [
  38102. {
  38103. name: "Normal",
  38104. height: math.unit(5 + 5/12, "feet"),
  38105. default: true
  38106. },
  38107. ]
  38108. ))
  38109. characterMakers.push(() => makeCharacter(
  38110. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38111. {
  38112. front: {
  38113. height: math.unit(2 + 5/12, "feet"),
  38114. name: "Front",
  38115. image: {
  38116. source: "./media/characters/orion/front.svg",
  38117. extra: 1366/1304,
  38118. bottom: 43/1409
  38119. }
  38120. },
  38121. paw: {
  38122. height: math.unit(0.52, "feet"),
  38123. name: "Paw",
  38124. image: {
  38125. source: "./media/characters/orion/paw.svg"
  38126. }
  38127. },
  38128. },
  38129. [
  38130. {
  38131. name: "Normal",
  38132. height: math.unit(2 + 5/12, "feet"),
  38133. default: true
  38134. },
  38135. ]
  38136. ))
  38137. characterMakers.push(() => makeCharacter(
  38138. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38139. {
  38140. front: {
  38141. height: math.unit(5 + 10/12, "feet"),
  38142. name: "Front",
  38143. image: {
  38144. source: "./media/characters/vera/front.svg",
  38145. extra: 1680/1575,
  38146. bottom: 49/1729
  38147. }
  38148. },
  38149. back: {
  38150. height: math.unit(5 + 10/12, "feet"),
  38151. name: "Back",
  38152. image: {
  38153. source: "./media/characters/vera/back.svg",
  38154. extra: 1700/1588,
  38155. bottom: 18/1718
  38156. }
  38157. },
  38158. arcanine: {
  38159. height: math.unit(6 + 8/12, "feet"),
  38160. name: "Arcanine",
  38161. image: {
  38162. source: "./media/characters/vera/arcanine.svg",
  38163. extra: 1590/1511,
  38164. bottom: 71/1661
  38165. }
  38166. },
  38167. maw: {
  38168. height: math.unit(0.82, "feet"),
  38169. name: "Maw",
  38170. image: {
  38171. source: "./media/characters/vera/maw.svg"
  38172. }
  38173. },
  38174. mawArcanine: {
  38175. height: math.unit(0.97, "feet"),
  38176. name: "Maw (Arcanine)",
  38177. image: {
  38178. source: "./media/characters/vera/maw-arcanine.svg"
  38179. }
  38180. },
  38181. paw: {
  38182. height: math.unit(0.75, "feet"),
  38183. name: "Paw",
  38184. image: {
  38185. source: "./media/characters/vera/paw.svg"
  38186. }
  38187. },
  38188. pawprint: {
  38189. height: math.unit(0.52, "feet"),
  38190. name: "Pawprint",
  38191. image: {
  38192. source: "./media/characters/vera/pawprint.svg"
  38193. }
  38194. },
  38195. },
  38196. [
  38197. {
  38198. name: "Normal",
  38199. height: math.unit(5 + 10/12, "feet"),
  38200. default: true
  38201. },
  38202. {
  38203. name: "Macro",
  38204. height: math.unit(75, "feet")
  38205. },
  38206. ]
  38207. ))
  38208. characterMakers.push(() => makeCharacter(
  38209. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38210. {
  38211. front: {
  38212. height: math.unit(4, "feet"),
  38213. weight: math.unit(40, "lb"),
  38214. name: "Front",
  38215. image: {
  38216. source: "./media/characters/orvan-rabbit/front.svg",
  38217. extra: 1896/1642,
  38218. bottom: 29/1925
  38219. }
  38220. },
  38221. },
  38222. [
  38223. {
  38224. name: "Normal",
  38225. height: math.unit(4, "feet"),
  38226. default: true
  38227. },
  38228. ]
  38229. ))
  38230. characterMakers.push(() => makeCharacter(
  38231. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38232. {
  38233. front: {
  38234. height: math.unit(6, "feet"),
  38235. weight: math.unit(168, "lb"),
  38236. name: "Front",
  38237. image: {
  38238. source: "./media/characters/lisa/front.svg",
  38239. extra: 2065/1867,
  38240. bottom: 46/2111
  38241. }
  38242. },
  38243. back: {
  38244. height: math.unit(6, "feet"),
  38245. weight: math.unit(168, "lb"),
  38246. name: "Back",
  38247. image: {
  38248. source: "./media/characters/lisa/back.svg",
  38249. extra: 1982/1838,
  38250. bottom: 29/2011
  38251. }
  38252. },
  38253. maw: {
  38254. height: math.unit(0.81, "feet"),
  38255. name: "Maw",
  38256. image: {
  38257. source: "./media/characters/lisa/maw.svg"
  38258. }
  38259. },
  38260. paw: {
  38261. height: math.unit(0.9, "feet"),
  38262. name: "Paw",
  38263. image: {
  38264. source: "./media/characters/lisa/paw.svg"
  38265. }
  38266. },
  38267. caribousune: {
  38268. height: math.unit(7 + 2/12, "feet"),
  38269. weight: math.unit(268, "lb"),
  38270. name: "Caribousune",
  38271. image: {
  38272. source: "./media/characters/lisa/caribousune.svg",
  38273. extra: 1843/1633,
  38274. bottom: 29/1872
  38275. }
  38276. },
  38277. frontCaribousune: {
  38278. height: math.unit(7 + 2/12, "feet"),
  38279. weight: math.unit(268, "lb"),
  38280. name: "Front (Caribousune)",
  38281. image: {
  38282. source: "./media/characters/lisa/front-caribousune.svg",
  38283. extra: 1818/1638,
  38284. bottom: 52/1870
  38285. }
  38286. },
  38287. sideCaribousune: {
  38288. height: math.unit(7 + 2/12, "feet"),
  38289. weight: math.unit(268, "lb"),
  38290. name: "Side (Caribousune)",
  38291. image: {
  38292. source: "./media/characters/lisa/side-caribousune.svg",
  38293. extra: 1851/1635,
  38294. bottom: 16/1867
  38295. }
  38296. },
  38297. backCaribousune: {
  38298. height: math.unit(7 + 2/12, "feet"),
  38299. weight: math.unit(268, "lb"),
  38300. name: "Back (Caribousune)",
  38301. image: {
  38302. source: "./media/characters/lisa/back-caribousune.svg",
  38303. extra: 1801/1604,
  38304. bottom: 44/1845
  38305. }
  38306. },
  38307. caribou: {
  38308. height: math.unit(7 + 2/12, "feet"),
  38309. weight: math.unit(268, "lb"),
  38310. name: "Caribou",
  38311. image: {
  38312. source: "./media/characters/lisa/caribou.svg",
  38313. extra: 1843/1633,
  38314. bottom: 29/1872
  38315. }
  38316. },
  38317. frontCaribou: {
  38318. height: math.unit(7 + 2/12, "feet"),
  38319. weight: math.unit(268, "lb"),
  38320. name: "Front (Caribou)",
  38321. image: {
  38322. source: "./media/characters/lisa/front-caribou.svg",
  38323. extra: 1818/1638,
  38324. bottom: 52/1870
  38325. }
  38326. },
  38327. sideCaribou: {
  38328. height: math.unit(7 + 2/12, "feet"),
  38329. weight: math.unit(268, "lb"),
  38330. name: "Side (Caribou)",
  38331. image: {
  38332. source: "./media/characters/lisa/side-caribou.svg",
  38333. extra: 1851/1635,
  38334. bottom: 16/1867
  38335. }
  38336. },
  38337. backCaribou: {
  38338. height: math.unit(7 + 2/12, "feet"),
  38339. weight: math.unit(268, "lb"),
  38340. name: "Back (Caribou)",
  38341. image: {
  38342. source: "./media/characters/lisa/back-caribou.svg",
  38343. extra: 1801/1604,
  38344. bottom: 44/1845
  38345. }
  38346. },
  38347. mawCaribou: {
  38348. height: math.unit(1.45, "feet"),
  38349. name: "Maw (Caribou)",
  38350. image: {
  38351. source: "./media/characters/lisa/maw-caribou.svg"
  38352. }
  38353. },
  38354. mawCaribousune: {
  38355. height: math.unit(1.45, "feet"),
  38356. name: "Maw (Caribousune)",
  38357. image: {
  38358. source: "./media/characters/lisa/maw-caribousune.svg"
  38359. }
  38360. },
  38361. pawCaribousune: {
  38362. height: math.unit(1.61, "feet"),
  38363. name: "Paw (Caribou)",
  38364. image: {
  38365. source: "./media/characters/lisa/paw-caribousune.svg"
  38366. }
  38367. },
  38368. },
  38369. [
  38370. {
  38371. name: "Normal",
  38372. height: math.unit(6, "feet")
  38373. },
  38374. {
  38375. name: "God Size",
  38376. height: math.unit(72, "feet"),
  38377. default: true
  38378. },
  38379. {
  38380. name: "Towering",
  38381. height: math.unit(288, "feet")
  38382. },
  38383. {
  38384. name: "City Size",
  38385. height: math.unit(48384, "feet")
  38386. },
  38387. {
  38388. name: "Continental",
  38389. height: math.unit(4200, "miles")
  38390. },
  38391. {
  38392. name: "Planet Eater",
  38393. height: math.unit(42, "earths")
  38394. },
  38395. {
  38396. name: "Star Swallower",
  38397. height: math.unit(42, "solarradii")
  38398. },
  38399. {
  38400. name: "System Swallower",
  38401. height: math.unit(84000, "AU")
  38402. },
  38403. {
  38404. name: "Galaxy Gobbler",
  38405. height: math.unit(42, "galaxies")
  38406. },
  38407. {
  38408. name: "Universe Devourer",
  38409. height: math.unit(42, "universes")
  38410. },
  38411. {
  38412. name: "Multiverse Muncher",
  38413. height: math.unit(42, "multiverses")
  38414. },
  38415. ]
  38416. ))
  38417. characterMakers.push(() => makeCharacter(
  38418. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38419. {
  38420. front: {
  38421. height: math.unit(36, "feet"),
  38422. name: "Front",
  38423. image: {
  38424. source: "./media/characters/shadow-rat/front.svg",
  38425. extra: 1845/1758,
  38426. bottom: 83/1928
  38427. }
  38428. },
  38429. },
  38430. [
  38431. {
  38432. name: "Macro",
  38433. height: math.unit(36, "feet"),
  38434. default: true
  38435. },
  38436. ]
  38437. ))
  38438. characterMakers.push(() => makeCharacter(
  38439. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38440. {
  38441. side: {
  38442. height: math.unit(8, "feet"),
  38443. weight: math.unit(2630, "lb"),
  38444. name: "Side",
  38445. image: {
  38446. source: "./media/characters/torallia/side.svg",
  38447. extra: 2164/2021,
  38448. bottom: 371/2535
  38449. }
  38450. },
  38451. },
  38452. [
  38453. {
  38454. name: "Mortal Interaction",
  38455. height: math.unit(8, "feet")
  38456. },
  38457. {
  38458. name: "Natural",
  38459. height: math.unit(24, "feet"),
  38460. default: true
  38461. },
  38462. {
  38463. name: "Giant",
  38464. height: math.unit(80, "feet")
  38465. },
  38466. {
  38467. name: "Kaiju",
  38468. height: math.unit(240, "feet")
  38469. },
  38470. {
  38471. name: "Macro",
  38472. height: math.unit(800, "feet")
  38473. },
  38474. {
  38475. name: "Macro+",
  38476. height: math.unit(2400, "feet")
  38477. },
  38478. {
  38479. name: "Macro++",
  38480. height: math.unit(8000, "feet")
  38481. },
  38482. {
  38483. name: "City-Crushing",
  38484. height: math.unit(24000, "feet")
  38485. },
  38486. {
  38487. name: "Mountain-Mashing",
  38488. height: math.unit(80000, "feet")
  38489. },
  38490. {
  38491. name: "District Demolisher",
  38492. height: math.unit(240000, "feet")
  38493. },
  38494. {
  38495. name: "Tri-County Terror",
  38496. height: math.unit(800000, "feet")
  38497. },
  38498. {
  38499. name: "State Smasher",
  38500. height: math.unit(2.4e6, "feet")
  38501. },
  38502. {
  38503. name: "Nation Nemesis",
  38504. height: math.unit(8e6, "feet")
  38505. },
  38506. {
  38507. name: "Continent Cracker",
  38508. height: math.unit(2.4e7, "feet")
  38509. },
  38510. {
  38511. name: "Planet-Pillaging",
  38512. height: math.unit(8e7, "feet")
  38513. },
  38514. {
  38515. name: "Earth-Eclipsing",
  38516. height: math.unit(2.4e8, "feet")
  38517. },
  38518. {
  38519. name: "Jovian-Jostling",
  38520. height: math.unit(8e8, "feet")
  38521. },
  38522. {
  38523. name: "Gas Giant Gulper",
  38524. height: math.unit(2.4e9, "feet")
  38525. },
  38526. {
  38527. name: "Astral Annihilator",
  38528. height: math.unit(8e9, "feet")
  38529. },
  38530. {
  38531. name: "Celestial Conqueror",
  38532. height: math.unit(2.4e10, "feet")
  38533. },
  38534. {
  38535. name: "Sol-Swallowing",
  38536. height: math.unit(8e10, "feet")
  38537. },
  38538. {
  38539. name: "Hunter of the Heavens",
  38540. height: math.unit(2.4e13, "feet")
  38541. },
  38542. ]
  38543. ))
  38544. characterMakers.push(() => makeCharacter(
  38545. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38546. {
  38547. front: {
  38548. height: math.unit(6 + 8/12, "feet"),
  38549. name: "Front",
  38550. image: {
  38551. source: "./media/characters/rebecca-pawlson/front.svg",
  38552. extra: 1737/1596,
  38553. bottom: 107/1844
  38554. }
  38555. },
  38556. back: {
  38557. height: math.unit(6 + 8/12, "feet"),
  38558. name: "Back",
  38559. image: {
  38560. source: "./media/characters/rebecca-pawlson/back.svg",
  38561. extra: 1702/1523,
  38562. bottom: 86/1788
  38563. }
  38564. },
  38565. },
  38566. [
  38567. {
  38568. name: "Normal",
  38569. height: math.unit(6 + 8/12, "feet")
  38570. },
  38571. {
  38572. name: "Mini Macro",
  38573. height: math.unit(10, "feet"),
  38574. default: true
  38575. },
  38576. {
  38577. name: "Macro",
  38578. height: math.unit(100, "feet")
  38579. },
  38580. {
  38581. name: "Mega Macro",
  38582. height: math.unit(2500, "feet")
  38583. },
  38584. {
  38585. name: "Giga Macro",
  38586. height: math.unit(50, "miles")
  38587. },
  38588. ]
  38589. ))
  38590. characterMakers.push(() => makeCharacter(
  38591. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38592. {
  38593. front: {
  38594. height: math.unit(7 + 6/12, "feet"),
  38595. weight: math.unit(600, "lb"),
  38596. name: "Front",
  38597. image: {
  38598. source: "./media/characters/moxie-nova/front.svg",
  38599. extra: 1734/1652,
  38600. bottom: 41/1775
  38601. }
  38602. },
  38603. },
  38604. [
  38605. {
  38606. name: "Normal",
  38607. height: math.unit(7 + 6/12, "feet"),
  38608. default: true
  38609. },
  38610. ]
  38611. ))
  38612. characterMakers.push(() => makeCharacter(
  38613. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38614. {
  38615. goat: {
  38616. height: math.unit(4, "feet"),
  38617. weight: math.unit(180, "lb"),
  38618. name: "Goat",
  38619. image: {
  38620. source: "./media/characters/tiffany/goat.svg",
  38621. extra: 1845/1595,
  38622. bottom: 106/1951
  38623. }
  38624. },
  38625. front: {
  38626. height: math.unit(5, "feet"),
  38627. weight: math.unit(150, "lb"),
  38628. name: "Foxcoon",
  38629. image: {
  38630. source: "./media/characters/tiffany/foxcoon.svg",
  38631. extra: 1941/1845,
  38632. bottom: 58/1999
  38633. }
  38634. },
  38635. },
  38636. [
  38637. {
  38638. name: "Normal",
  38639. height: math.unit(5, "feet"),
  38640. default: true
  38641. },
  38642. ]
  38643. ))
  38644. characterMakers.push(() => makeCharacter(
  38645. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38646. {
  38647. front: {
  38648. height: math.unit(8, "feet"),
  38649. weight: math.unit(300, "lb"),
  38650. name: "Front",
  38651. image: {
  38652. source: "./media/characters/raxinath/front.svg",
  38653. extra: 1407/1309,
  38654. bottom: 39/1446
  38655. }
  38656. },
  38657. back: {
  38658. height: math.unit(8, "feet"),
  38659. weight: math.unit(300, "lb"),
  38660. name: "Back",
  38661. image: {
  38662. source: "./media/characters/raxinath/back.svg",
  38663. extra: 1405/1315,
  38664. bottom: 9/1414
  38665. }
  38666. },
  38667. },
  38668. [
  38669. {
  38670. name: "Speck",
  38671. height: math.unit(0.5, "nm")
  38672. },
  38673. {
  38674. name: "Micro",
  38675. height: math.unit(3, "inches")
  38676. },
  38677. {
  38678. name: "Kobold",
  38679. height: math.unit(3, "feet")
  38680. },
  38681. {
  38682. name: "Normal",
  38683. height: math.unit(8, "feet"),
  38684. default: true
  38685. },
  38686. {
  38687. name: "Giant",
  38688. height: math.unit(50, "feet")
  38689. },
  38690. {
  38691. name: "Macro",
  38692. height: math.unit(1000, "feet")
  38693. },
  38694. {
  38695. name: "Megamacro",
  38696. height: math.unit(1, "mile")
  38697. },
  38698. ]
  38699. ))
  38700. characterMakers.push(() => makeCharacter(
  38701. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38702. {
  38703. front: {
  38704. height: math.unit(10, "feet"),
  38705. weight: math.unit(1442, "lb"),
  38706. name: "Front",
  38707. image: {
  38708. source: "./media/characters/mal-dragon/front.svg",
  38709. extra: 1515/1444,
  38710. bottom: 113/1628
  38711. }
  38712. },
  38713. back: {
  38714. height: math.unit(10, "feet"),
  38715. weight: math.unit(1442, "lb"),
  38716. name: "Back",
  38717. image: {
  38718. source: "./media/characters/mal-dragon/back.svg",
  38719. extra: 1527/1434,
  38720. bottom: 25/1552
  38721. }
  38722. },
  38723. },
  38724. [
  38725. {
  38726. name: "Mortal Interaction",
  38727. height: math.unit(10, "feet"),
  38728. default: true
  38729. },
  38730. {
  38731. name: "Large",
  38732. height: math.unit(30, "feet")
  38733. },
  38734. {
  38735. name: "Kaiju",
  38736. height: math.unit(300, "feet")
  38737. },
  38738. {
  38739. name: "Megamacro",
  38740. height: math.unit(10000, "feet")
  38741. },
  38742. {
  38743. name: "Continent Cracker",
  38744. height: math.unit(30000000, "feet")
  38745. },
  38746. {
  38747. name: "Sol-Swallowing",
  38748. height: math.unit(1e11, "feet")
  38749. },
  38750. {
  38751. name: "Light Universal",
  38752. height: math.unit(5, "universes")
  38753. },
  38754. {
  38755. name: "Universe Atoms",
  38756. height: math.unit(1.829e9, "universes")
  38757. },
  38758. {
  38759. name: "Light Multiversal",
  38760. height: math.unit(5, "multiverses")
  38761. },
  38762. {
  38763. name: "Multiverse Atoms",
  38764. height: math.unit(1.829e9, "multiverses")
  38765. },
  38766. {
  38767. name: "Fabric of Time",
  38768. height: math.unit(1e262, "multiverses")
  38769. },
  38770. ]
  38771. ))
  38772. characterMakers.push(() => makeCharacter(
  38773. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38774. {
  38775. front: {
  38776. height: math.unit(9, "feet"),
  38777. weight: math.unit(1050, "lb"),
  38778. name: "Front",
  38779. image: {
  38780. source: "./media/characters/tabitha/front.svg",
  38781. extra: 2083/1994,
  38782. bottom: 68/2151
  38783. }
  38784. },
  38785. },
  38786. [
  38787. {
  38788. name: "Baseline",
  38789. height: math.unit(9, "feet"),
  38790. default: true
  38791. },
  38792. {
  38793. name: "Giant",
  38794. height: math.unit(90, "feet")
  38795. },
  38796. {
  38797. name: "Macro",
  38798. height: math.unit(900, "feet")
  38799. },
  38800. {
  38801. name: "Megamacro",
  38802. height: math.unit(9000, "feet")
  38803. },
  38804. {
  38805. name: "City-Crushing",
  38806. height: math.unit(27000, "feet")
  38807. },
  38808. {
  38809. name: "Mountain-Mashing",
  38810. height: math.unit(90000, "feet")
  38811. },
  38812. {
  38813. name: "Nation Nemesis",
  38814. height: math.unit(9e6, "feet")
  38815. },
  38816. {
  38817. name: "Continent Cracker",
  38818. height: math.unit(27e6, "feet")
  38819. },
  38820. {
  38821. name: "Earth-Eclipsing",
  38822. height: math.unit(2.7e8, "feet")
  38823. },
  38824. {
  38825. name: "Gas Giant Gulper",
  38826. height: math.unit(2.7e9, "feet")
  38827. },
  38828. {
  38829. name: "Sol-Swallowing",
  38830. height: math.unit(9e10, "feet")
  38831. },
  38832. {
  38833. name: "Galaxy Gulper",
  38834. height: math.unit(9, "galaxies")
  38835. },
  38836. {
  38837. name: "Cosmos Churner",
  38838. height: math.unit(9, "universes")
  38839. },
  38840. ]
  38841. ))
  38842. characterMakers.push(() => makeCharacter(
  38843. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38844. {
  38845. front: {
  38846. height: math.unit(160, "cm"),
  38847. weight: math.unit(55, "kg"),
  38848. name: "Front",
  38849. image: {
  38850. source: "./media/characters/tow/front.svg",
  38851. extra: 1751/1722,
  38852. bottom: 74/1825
  38853. }
  38854. },
  38855. },
  38856. [
  38857. {
  38858. name: "Norm",
  38859. height: math.unit(160, "cm")
  38860. },
  38861. {
  38862. name: "Casual",
  38863. height: math.unit(3200, "m"),
  38864. default: true
  38865. },
  38866. {
  38867. name: "Show-Off",
  38868. height: math.unit(160, "km")
  38869. },
  38870. ]
  38871. ))
  38872. characterMakers.push(() => makeCharacter(
  38873. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38874. {
  38875. front: {
  38876. height: math.unit(7 + 11/12, "feet"),
  38877. weight: math.unit(342.8, "lb"),
  38878. name: "Front",
  38879. image: {
  38880. source: "./media/characters/vivian-orca-dragon/front.svg",
  38881. extra: 1890/1865,
  38882. bottom: 28/1918
  38883. }
  38884. },
  38885. },
  38886. [
  38887. {
  38888. name: "Micro",
  38889. height: math.unit(5, "inches")
  38890. },
  38891. {
  38892. name: "Normal",
  38893. height: math.unit(7 + 11/12, "feet"),
  38894. default: true
  38895. },
  38896. {
  38897. name: "Macro",
  38898. height: math.unit(395 + 7/12, "feet")
  38899. },
  38900. ]
  38901. ))
  38902. characterMakers.push(() => makeCharacter(
  38903. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38904. {
  38905. side: {
  38906. height: math.unit(10, "feet"),
  38907. weight: math.unit(1442, "lb"),
  38908. name: "Side",
  38909. image: {
  38910. source: "./media/characters/lotherakon/side.svg",
  38911. extra: 1604/1497,
  38912. bottom: 89/1693
  38913. }
  38914. },
  38915. },
  38916. [
  38917. {
  38918. name: "Mortal Interaction",
  38919. height: math.unit(10, "feet")
  38920. },
  38921. {
  38922. name: "Large",
  38923. height: math.unit(30, "feet"),
  38924. default: true
  38925. },
  38926. {
  38927. name: "Giant",
  38928. height: math.unit(100, "feet")
  38929. },
  38930. {
  38931. name: "Kaiju",
  38932. height: math.unit(300, "feet")
  38933. },
  38934. {
  38935. name: "Macro",
  38936. height: math.unit(1000, "feet")
  38937. },
  38938. {
  38939. name: "Macro+",
  38940. height: math.unit(3000, "feet")
  38941. },
  38942. {
  38943. name: "Megamacro",
  38944. height: math.unit(10000, "feet")
  38945. },
  38946. {
  38947. name: "City-Crushing",
  38948. height: math.unit(30000, "feet")
  38949. },
  38950. {
  38951. name: "Continent Cracker",
  38952. height: math.unit(30e6, "feet")
  38953. },
  38954. {
  38955. name: "Earth Eclipsing",
  38956. height: math.unit(3e8, "feet")
  38957. },
  38958. {
  38959. name: "Gas Giant Gulper",
  38960. height: math.unit(3e9, "feet")
  38961. },
  38962. {
  38963. name: "Sol-Swallowing",
  38964. height: math.unit(1e11, "feet")
  38965. },
  38966. {
  38967. name: "System Swallower",
  38968. height: math.unit(3e14, "feet")
  38969. },
  38970. {
  38971. name: "Galaxy Gulper",
  38972. height: math.unit(10, "galaxies")
  38973. },
  38974. {
  38975. name: "Light Universal",
  38976. height: math.unit(5, "universes")
  38977. },
  38978. {
  38979. name: "Universe Palm",
  38980. height: math.unit(20, "universes")
  38981. },
  38982. {
  38983. name: "Light Multiversal",
  38984. height: math.unit(5, "multiverses")
  38985. },
  38986. {
  38987. name: "Multiverse Palm",
  38988. height: math.unit(20, "multiverses")
  38989. },
  38990. {
  38991. name: "Inferno Incarnate",
  38992. height: math.unit(1e7, "multiverses")
  38993. },
  38994. ]
  38995. ))
  38996. characterMakers.push(() => makeCharacter(
  38997. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38998. {
  38999. front: {
  39000. height: math.unit(8, "feet"),
  39001. weight: math.unit(1200, "lb"),
  39002. name: "Front",
  39003. image: {
  39004. source: "./media/characters/malithee/front.svg",
  39005. extra: 1675/1640,
  39006. bottom: 162/1837
  39007. }
  39008. },
  39009. },
  39010. [
  39011. {
  39012. name: "Mortal Interaction",
  39013. height: math.unit(8, "feet"),
  39014. default: true
  39015. },
  39016. {
  39017. name: "Large",
  39018. height: math.unit(24, "feet")
  39019. },
  39020. {
  39021. name: "Kaiju",
  39022. height: math.unit(240, "feet")
  39023. },
  39024. {
  39025. name: "Megamacro",
  39026. height: math.unit(8000, "feet")
  39027. },
  39028. {
  39029. name: "Continent Cracker",
  39030. height: math.unit(24e6, "feet")
  39031. },
  39032. {
  39033. name: "Earth-Eclipsing",
  39034. height: math.unit(2.4e8, "feet")
  39035. },
  39036. {
  39037. name: "Sol-Swallowing",
  39038. height: math.unit(8e10, "feet")
  39039. },
  39040. {
  39041. name: "Galaxy Gulper",
  39042. height: math.unit(8, "galaxies")
  39043. },
  39044. {
  39045. name: "Light Universal",
  39046. height: math.unit(4, "universes")
  39047. },
  39048. {
  39049. name: "Universe Atoms",
  39050. height: math.unit(1.829e9, "universes")
  39051. },
  39052. {
  39053. name: "Light Multiversal",
  39054. height: math.unit(4, "multiverses")
  39055. },
  39056. {
  39057. name: "Multiverse Atoms",
  39058. height: math.unit(1.829e9, "multiverses")
  39059. },
  39060. {
  39061. name: "Nigh-Omnipresence",
  39062. height: math.unit(8e261, "multiverses")
  39063. },
  39064. ]
  39065. ))
  39066. characterMakers.push(() => makeCharacter(
  39067. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39068. {
  39069. front: {
  39070. height: math.unit(10, "feet"),
  39071. weight: math.unit(1500, "lb"),
  39072. name: "Front",
  39073. image: {
  39074. source: "./media/characters/miles-thestia/front.svg",
  39075. extra: 1812/1727,
  39076. bottom: 86/1898
  39077. }
  39078. },
  39079. back: {
  39080. height: math.unit(10, "feet"),
  39081. weight: math.unit(1500, "lb"),
  39082. name: "Back",
  39083. image: {
  39084. source: "./media/characters/miles-thestia/back.svg",
  39085. extra: 1799/1690,
  39086. bottom: 47/1846
  39087. }
  39088. },
  39089. frontNsfw: {
  39090. height: math.unit(10, "feet"),
  39091. weight: math.unit(1500, "lb"),
  39092. name: "Front (NSFW)",
  39093. image: {
  39094. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39095. extra: 1812/1727,
  39096. bottom: 86/1898
  39097. }
  39098. },
  39099. },
  39100. [
  39101. {
  39102. name: "Mini-Macro",
  39103. height: math.unit(10, "feet"),
  39104. default: true
  39105. },
  39106. ]
  39107. ))
  39108. characterMakers.push(() => makeCharacter(
  39109. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39110. {
  39111. front: {
  39112. height: math.unit(25, "feet"),
  39113. name: "Front",
  39114. image: {
  39115. source: "./media/characters/titan-s-wulf/front.svg",
  39116. extra: 1560/1484,
  39117. bottom: 76/1636
  39118. }
  39119. },
  39120. },
  39121. [
  39122. {
  39123. name: "Smallest",
  39124. height: math.unit(25, "feet"),
  39125. default: true
  39126. },
  39127. {
  39128. name: "Normal",
  39129. height: math.unit(200, "feet")
  39130. },
  39131. {
  39132. name: "Macro",
  39133. height: math.unit(200000, "feet")
  39134. },
  39135. {
  39136. name: "Multiversal Original",
  39137. height: math.unit(10000, "multiverses")
  39138. },
  39139. ]
  39140. ))
  39141. characterMakers.push(() => makeCharacter(
  39142. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39143. {
  39144. front: {
  39145. height: math.unit(8, "feet"),
  39146. weight: math.unit(553, "lb"),
  39147. name: "Front",
  39148. image: {
  39149. source: "./media/characters/tawendeh/front.svg",
  39150. extra: 2365/2268,
  39151. bottom: 83/2448
  39152. }
  39153. },
  39154. frontClothed: {
  39155. height: math.unit(8, "feet"),
  39156. weight: math.unit(553, "lb"),
  39157. name: "Front (Clothed)",
  39158. image: {
  39159. source: "./media/characters/tawendeh/front-clothed.svg",
  39160. extra: 2365/2268,
  39161. bottom: 83/2448
  39162. }
  39163. },
  39164. back: {
  39165. height: math.unit(8, "feet"),
  39166. weight: math.unit(553, "lb"),
  39167. name: "Back",
  39168. image: {
  39169. source: "./media/characters/tawendeh/back.svg",
  39170. extra: 2397/2294,
  39171. bottom: 42/2439
  39172. }
  39173. },
  39174. },
  39175. [
  39176. {
  39177. name: "Mortal Interaction",
  39178. height: math.unit(8, "feet"),
  39179. default: true
  39180. },
  39181. {
  39182. name: "Giant",
  39183. height: math.unit(80, "feet")
  39184. },
  39185. {
  39186. name: "Macro",
  39187. height: math.unit(800, "feet")
  39188. },
  39189. {
  39190. name: "Megamacro",
  39191. height: math.unit(8000, "feet")
  39192. },
  39193. {
  39194. name: "City-Crushing",
  39195. height: math.unit(24000, "feet")
  39196. },
  39197. {
  39198. name: "Mountain-Mashing",
  39199. height: math.unit(80000, "feet")
  39200. },
  39201. {
  39202. name: "Nation Nemesis",
  39203. height: math.unit(8e6, "feet")
  39204. },
  39205. {
  39206. name: "Continent Cracker",
  39207. height: math.unit(24e6, "feet")
  39208. },
  39209. {
  39210. name: "Earth-Eclipsing",
  39211. height: math.unit(2.4e8, "feet")
  39212. },
  39213. {
  39214. name: "Gas Giant Gulper",
  39215. height: math.unit(2.4e9, "feet")
  39216. },
  39217. {
  39218. name: "Sol-Swallowing",
  39219. height: math.unit(8e10, "feet")
  39220. },
  39221. {
  39222. name: "Galaxy Gulper",
  39223. height: math.unit(8, "galaxies")
  39224. },
  39225. {
  39226. name: "Cosmos Churner",
  39227. height: math.unit(8, "universes")
  39228. },
  39229. {
  39230. name: "Omnipotent Otter",
  39231. height: math.unit(80, "universes")
  39232. },
  39233. ]
  39234. ))
  39235. characterMakers.push(() => makeCharacter(
  39236. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39237. {
  39238. front: {
  39239. height: math.unit(2.6, "meters"),
  39240. weight: math.unit(900, "kg"),
  39241. name: "Front",
  39242. image: {
  39243. source: "./media/characters/neesha/front.svg",
  39244. extra: 1803/1653,
  39245. bottom: 128/1931
  39246. }
  39247. },
  39248. },
  39249. [
  39250. {
  39251. name: "Normal",
  39252. height: math.unit(2.6, "meters"),
  39253. default: true
  39254. },
  39255. {
  39256. name: "Macro",
  39257. height: math.unit(50, "meters")
  39258. },
  39259. ]
  39260. ))
  39261. characterMakers.push(() => makeCharacter(
  39262. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39263. {
  39264. front: {
  39265. height: math.unit(5, "feet"),
  39266. weight: math.unit(185, "lb"),
  39267. name: "Front",
  39268. image: {
  39269. source: "./media/characters/kyera/front.svg",
  39270. extra: 1875/1790,
  39271. bottom: 96/1971
  39272. }
  39273. },
  39274. },
  39275. [
  39276. {
  39277. name: "Normal",
  39278. height: math.unit(5, "feet"),
  39279. default: true
  39280. },
  39281. ]
  39282. ))
  39283. characterMakers.push(() => makeCharacter(
  39284. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39285. {
  39286. front: {
  39287. height: math.unit(7 + 6/12, "feet"),
  39288. weight: math.unit(540, "lb"),
  39289. name: "Front",
  39290. image: {
  39291. source: "./media/characters/yuko/front.svg",
  39292. extra: 1282/1222,
  39293. bottom: 101/1383
  39294. }
  39295. },
  39296. frontClothed: {
  39297. height: math.unit(7 + 6/12, "feet"),
  39298. weight: math.unit(540, "lb"),
  39299. name: "Front (Clothed)",
  39300. image: {
  39301. source: "./media/characters/yuko/front-clothed.svg",
  39302. extra: 1282/1222,
  39303. bottom: 101/1383
  39304. }
  39305. },
  39306. },
  39307. [
  39308. {
  39309. name: "Normal",
  39310. height: math.unit(7 + 6/12, "feet"),
  39311. default: true
  39312. },
  39313. {
  39314. name: "Macro",
  39315. height: math.unit(26 + 9/12, "feet")
  39316. },
  39317. {
  39318. name: "Megamacro",
  39319. height: math.unit(300, "feet")
  39320. },
  39321. {
  39322. name: "Gigamacro",
  39323. height: math.unit(5000, "feet")
  39324. },
  39325. {
  39326. name: "Planetary",
  39327. height: math.unit(10000, "miles")
  39328. },
  39329. ]
  39330. ))
  39331. characterMakers.push(() => makeCharacter(
  39332. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39333. {
  39334. front: {
  39335. height: math.unit(8 + 2/12, "feet"),
  39336. weight: math.unit(600, "lb"),
  39337. name: "Front",
  39338. image: {
  39339. source: "./media/characters/deam-nitrel/front.svg",
  39340. extra: 1308/1234,
  39341. bottom: 125/1433
  39342. }
  39343. },
  39344. },
  39345. [
  39346. {
  39347. name: "Normal",
  39348. height: math.unit(8 + 2/12, "feet"),
  39349. default: true
  39350. },
  39351. ]
  39352. ))
  39353. characterMakers.push(() => makeCharacter(
  39354. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39355. {
  39356. front: {
  39357. height: math.unit(6.1, "feet"),
  39358. weight: math.unit(180, "lb"),
  39359. name: "Front",
  39360. image: {
  39361. source: "./media/characters/skyress/front.svg",
  39362. extra: 1045/915,
  39363. bottom: 28/1073
  39364. }
  39365. },
  39366. maw: {
  39367. height: math.unit(1, "feet"),
  39368. name: "Maw",
  39369. image: {
  39370. source: "./media/characters/skyress/maw.svg"
  39371. }
  39372. },
  39373. },
  39374. [
  39375. {
  39376. name: "Normal",
  39377. height: math.unit(6.1, "feet"),
  39378. default: true
  39379. },
  39380. {
  39381. name: "Macro",
  39382. height: math.unit(200, "feet")
  39383. },
  39384. ]
  39385. ))
  39386. characterMakers.push(() => makeCharacter(
  39387. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39388. {
  39389. front: {
  39390. height: math.unit(4 + 2/12, "feet"),
  39391. weight: math.unit(40, "kg"),
  39392. name: "Front",
  39393. image: {
  39394. source: "./media/characters/amethyst-jones/front.svg",
  39395. extra: 1220/1150,
  39396. bottom: 101/1321
  39397. }
  39398. },
  39399. },
  39400. [
  39401. {
  39402. name: "Normal",
  39403. height: math.unit(4 + 2/12, "feet"),
  39404. default: true
  39405. },
  39406. ]
  39407. ))
  39408. characterMakers.push(() => makeCharacter(
  39409. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39410. {
  39411. front: {
  39412. height: math.unit(1.7, "m"),
  39413. weight: math.unit(135, "lb"),
  39414. name: "Front",
  39415. image: {
  39416. source: "./media/characters/jade/front.svg",
  39417. extra: 1818/1767,
  39418. bottom: 32/1850
  39419. }
  39420. },
  39421. back: {
  39422. height: math.unit(1.7, "m"),
  39423. weight: math.unit(135, "lb"),
  39424. name: "Back",
  39425. image: {
  39426. source: "./media/characters/jade/back.svg",
  39427. extra: 1869/1809,
  39428. bottom: 35/1904
  39429. }
  39430. },
  39431. hand: {
  39432. height: math.unit(0.24, "m"),
  39433. name: "Hand",
  39434. image: {
  39435. source: "./media/characters/jade/hand.svg"
  39436. }
  39437. },
  39438. foot: {
  39439. height: math.unit(0.263, "m"),
  39440. name: "Foot",
  39441. image: {
  39442. source: "./media/characters/jade/foot.svg"
  39443. }
  39444. },
  39445. dick: {
  39446. height: math.unit(0.47, "m"),
  39447. name: "Dick",
  39448. image: {
  39449. source: "./media/characters/jade/dick.svg"
  39450. }
  39451. },
  39452. },
  39453. [
  39454. {
  39455. name: "Micro",
  39456. height: math.unit(22, "cm")
  39457. },
  39458. {
  39459. name: "Normal",
  39460. height: math.unit(1.7, "m"),
  39461. default: true
  39462. },
  39463. {
  39464. name: "Macro",
  39465. height: math.unit(152, "m")
  39466. },
  39467. ]
  39468. ))
  39469. characterMakers.push(() => makeCharacter(
  39470. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39471. {
  39472. front: {
  39473. height: math.unit(100, "miles"),
  39474. weight: math.unit(20000, "tons"),
  39475. name: "Front",
  39476. image: {
  39477. source: "./media/characters/cookie/front.svg",
  39478. extra: 1125/1070,
  39479. bottom: 30/1155
  39480. }
  39481. },
  39482. },
  39483. [
  39484. {
  39485. name: "Big",
  39486. height: math.unit(50, "feet")
  39487. },
  39488. {
  39489. name: "Macro",
  39490. height: math.unit(100, "miles"),
  39491. default: true
  39492. },
  39493. {
  39494. name: "Megamacro",
  39495. height: math.unit(90000, "miles")
  39496. },
  39497. ]
  39498. ))
  39499. characterMakers.push(() => makeCharacter(
  39500. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39501. {
  39502. front: {
  39503. height: math.unit(6, "feet"),
  39504. weight: math.unit(145, "lb"),
  39505. name: "Front",
  39506. image: {
  39507. source: "./media/characters/farzian/front.svg",
  39508. extra: 1902/1693,
  39509. bottom: 108/2010
  39510. }
  39511. },
  39512. },
  39513. [
  39514. {
  39515. name: "Macro",
  39516. height: math.unit(500, "feet"),
  39517. default: true
  39518. },
  39519. ]
  39520. ))
  39521. characterMakers.push(() => makeCharacter(
  39522. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39523. {
  39524. front: {
  39525. height: math.unit(3 + 6/12, "feet"),
  39526. weight: math.unit(50, "lb"),
  39527. name: "Front",
  39528. image: {
  39529. source: "./media/characters/kimberly-tilson/front.svg",
  39530. extra: 1400/1322,
  39531. bottom: 36/1436
  39532. }
  39533. },
  39534. back: {
  39535. height: math.unit(3 + 6/12, "feet"),
  39536. weight: math.unit(50, "lb"),
  39537. name: "Back",
  39538. image: {
  39539. source: "./media/characters/kimberly-tilson/back.svg",
  39540. extra: 1370/1307,
  39541. bottom: 20/1390
  39542. }
  39543. },
  39544. },
  39545. [
  39546. {
  39547. name: "Normal",
  39548. height: math.unit(3 + 6/12, "feet"),
  39549. default: true
  39550. },
  39551. ]
  39552. ))
  39553. characterMakers.push(() => makeCharacter(
  39554. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39555. {
  39556. front: {
  39557. height: math.unit(1148, "feet"),
  39558. weight: math.unit(34057, "lb"),
  39559. name: "Front",
  39560. image: {
  39561. source: "./media/characters/harthos/front.svg",
  39562. extra: 1391/1339,
  39563. bottom: 13/1404
  39564. }
  39565. },
  39566. },
  39567. [
  39568. {
  39569. name: "Macro",
  39570. height: math.unit(1148, "feet"),
  39571. default: true
  39572. },
  39573. ]
  39574. ))
  39575. characterMakers.push(() => makeCharacter(
  39576. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39577. {
  39578. front: {
  39579. height: math.unit(15, "feet"),
  39580. name: "Front",
  39581. image: {
  39582. source: "./media/characters/hypatia/front.svg",
  39583. extra: 1653/1591,
  39584. bottom: 79/1732
  39585. }
  39586. },
  39587. },
  39588. [
  39589. {
  39590. name: "Normal",
  39591. height: math.unit(15, "feet")
  39592. },
  39593. {
  39594. name: "Small",
  39595. height: math.unit(300, "feet")
  39596. },
  39597. {
  39598. name: "Macro",
  39599. height: math.unit(2500, "feet"),
  39600. default: true
  39601. },
  39602. {
  39603. name: "Mega Macro",
  39604. height: math.unit(1500, "miles")
  39605. },
  39606. {
  39607. name: "Giga Macro",
  39608. height: math.unit(1.5e6, "miles")
  39609. },
  39610. ]
  39611. ))
  39612. characterMakers.push(() => makeCharacter(
  39613. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39614. {
  39615. front: {
  39616. height: math.unit(6, "feet"),
  39617. weight: math.unit(200, "lb"),
  39618. name: "Front",
  39619. image: {
  39620. source: "./media/characters/wulver/front.svg",
  39621. extra: 1724/1632,
  39622. bottom: 130/1854
  39623. }
  39624. },
  39625. frontNsfw: {
  39626. height: math.unit(6, "feet"),
  39627. weight: math.unit(200, "lb"),
  39628. name: "Front (NSFW)",
  39629. image: {
  39630. source: "./media/characters/wulver/front-nsfw.svg",
  39631. extra: 1724/1632,
  39632. bottom: 130/1854
  39633. }
  39634. },
  39635. },
  39636. [
  39637. {
  39638. name: "Human-Sized",
  39639. height: math.unit(6, "feet")
  39640. },
  39641. {
  39642. name: "Normal",
  39643. height: math.unit(4, "meters"),
  39644. default: true
  39645. },
  39646. {
  39647. name: "Large",
  39648. height: math.unit(6, "m")
  39649. },
  39650. ]
  39651. ))
  39652. characterMakers.push(() => makeCharacter(
  39653. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39654. {
  39655. front: {
  39656. height: math.unit(7, "feet"),
  39657. name: "Front",
  39658. image: {
  39659. source: "./media/characters/maru/front.svg",
  39660. extra: 1595/1570,
  39661. bottom: 0/1595
  39662. }
  39663. },
  39664. },
  39665. [
  39666. {
  39667. name: "Normal",
  39668. height: math.unit(7, "feet"),
  39669. default: true
  39670. },
  39671. {
  39672. name: "Macro",
  39673. height: math.unit(700, "feet")
  39674. },
  39675. {
  39676. name: "Mega Macro",
  39677. height: math.unit(25, "miles")
  39678. },
  39679. ]
  39680. ))
  39681. characterMakers.push(() => makeCharacter(
  39682. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39683. {
  39684. front: {
  39685. height: math.unit(6, "feet"),
  39686. weight: math.unit(170, "lb"),
  39687. name: "Front",
  39688. image: {
  39689. source: "./media/characters/xenon/front.svg",
  39690. extra: 1376/1305,
  39691. bottom: 56/1432
  39692. }
  39693. },
  39694. back: {
  39695. height: math.unit(6, "feet"),
  39696. weight: math.unit(170, "lb"),
  39697. name: "Back",
  39698. image: {
  39699. source: "./media/characters/xenon/back.svg",
  39700. extra: 1328/1259,
  39701. bottom: 95/1423
  39702. }
  39703. },
  39704. maw: {
  39705. height: math.unit(0.52, "feet"),
  39706. name: "Maw",
  39707. image: {
  39708. source: "./media/characters/xenon/maw.svg"
  39709. }
  39710. },
  39711. hand: {
  39712. height: math.unit(0.82, "feet"),
  39713. name: "Hand",
  39714. image: {
  39715. source: "./media/characters/xenon/hand.svg"
  39716. }
  39717. },
  39718. foot: {
  39719. height: math.unit(1.13, "feet"),
  39720. name: "Foot",
  39721. image: {
  39722. source: "./media/characters/xenon/foot.svg"
  39723. }
  39724. },
  39725. },
  39726. [
  39727. {
  39728. name: "Micro",
  39729. height: math.unit(0.8, "inches")
  39730. },
  39731. {
  39732. name: "Normal",
  39733. height: math.unit(6, "feet")
  39734. },
  39735. {
  39736. name: "Macro",
  39737. height: math.unit(50, "feet"),
  39738. default: true
  39739. },
  39740. {
  39741. name: "Macro+",
  39742. height: math.unit(250, "feet")
  39743. },
  39744. {
  39745. name: "Megamacro",
  39746. height: math.unit(1500, "feet")
  39747. },
  39748. ]
  39749. ))
  39750. characterMakers.push(() => makeCharacter(
  39751. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39752. {
  39753. front: {
  39754. height: math.unit(7 + 5/12, "feet"),
  39755. name: "Front",
  39756. image: {
  39757. source: "./media/characters/zane/front.svg",
  39758. extra: 1260/1203,
  39759. bottom: 94/1354
  39760. }
  39761. },
  39762. back: {
  39763. height: math.unit(5.05, "feet"),
  39764. name: "Back",
  39765. image: {
  39766. source: "./media/characters/zane/back.svg",
  39767. extra: 893/829,
  39768. bottom: 30/923
  39769. }
  39770. },
  39771. werewolf: {
  39772. height: math.unit(11, "feet"),
  39773. name: "Werewolf",
  39774. image: {
  39775. source: "./media/characters/zane/werewolf.svg",
  39776. extra: 1383/1323,
  39777. bottom: 89/1472
  39778. }
  39779. },
  39780. foot: {
  39781. height: math.unit(1.46, "feet"),
  39782. name: "Foot",
  39783. image: {
  39784. source: "./media/characters/zane/foot.svg"
  39785. }
  39786. },
  39787. footFront: {
  39788. height: math.unit(0.784, "feet"),
  39789. name: "Foot (Front)",
  39790. image: {
  39791. source: "./media/characters/zane/foot-front.svg"
  39792. }
  39793. },
  39794. dick: {
  39795. height: math.unit(1.95, "feet"),
  39796. name: "Dick",
  39797. image: {
  39798. source: "./media/characters/zane/dick.svg"
  39799. }
  39800. },
  39801. dickWerewolf: {
  39802. height: math.unit(3.77, "feet"),
  39803. name: "Dick (Werewolf)",
  39804. image: {
  39805. source: "./media/characters/zane/dick.svg"
  39806. }
  39807. },
  39808. },
  39809. [
  39810. {
  39811. name: "Normal",
  39812. height: math.unit(7 + 5/12, "feet"),
  39813. default: true
  39814. },
  39815. ]
  39816. ))
  39817. characterMakers.push(() => makeCharacter(
  39818. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39819. {
  39820. front: {
  39821. height: math.unit(6 + 2/12, "feet"),
  39822. weight: math.unit(284, "lb"),
  39823. name: "Front",
  39824. image: {
  39825. source: "./media/characters/benni-desparque/front.svg",
  39826. extra: 1353/1126,
  39827. bottom: 69/1422
  39828. }
  39829. },
  39830. },
  39831. [
  39832. {
  39833. name: "Civilian",
  39834. height: math.unit(6 + 2/12, "feet")
  39835. },
  39836. {
  39837. name: "Normal",
  39838. height: math.unit(98, "feet"),
  39839. default: true
  39840. },
  39841. {
  39842. name: "Kaiju Fighter",
  39843. height: math.unit(268, "feet")
  39844. },
  39845. ]
  39846. ))
  39847. characterMakers.push(() => makeCharacter(
  39848. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39849. {
  39850. front: {
  39851. height: math.unit(5, "feet"),
  39852. weight: math.unit(105, "lb"),
  39853. name: "Front",
  39854. image: {
  39855. source: "./media/characters/maxine/front.svg",
  39856. extra: 1386/1250,
  39857. bottom: 71/1457
  39858. }
  39859. },
  39860. },
  39861. [
  39862. {
  39863. name: "Normal",
  39864. height: math.unit(5, "feet"),
  39865. default: true
  39866. },
  39867. ]
  39868. ))
  39869. characterMakers.push(() => makeCharacter(
  39870. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39871. {
  39872. front: {
  39873. height: math.unit(11 + 7/12, "feet"),
  39874. weight: math.unit(9576, "lb"),
  39875. name: "Front",
  39876. image: {
  39877. source: "./media/characters/scaly/front.svg",
  39878. extra: 888/867,
  39879. bottom: 36/924
  39880. }
  39881. },
  39882. },
  39883. [
  39884. {
  39885. name: "Normal",
  39886. height: math.unit(11 + 7/12, "feet"),
  39887. default: true
  39888. },
  39889. ]
  39890. ))
  39891. characterMakers.push(() => makeCharacter(
  39892. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39893. {
  39894. front: {
  39895. height: math.unit(9, "inches"),
  39896. name: "Front",
  39897. image: {
  39898. source: "./media/characters/saelria/front.svg",
  39899. extra: 662/621,
  39900. bottom: 12/674
  39901. }
  39902. },
  39903. },
  39904. [
  39905. {
  39906. name: "Tiny",
  39907. height: math.unit(9, "inches"),
  39908. default: true
  39909. },
  39910. ]
  39911. ))
  39912. characterMakers.push(() => makeCharacter(
  39913. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39914. {
  39915. front: {
  39916. height: math.unit(80, "meters"),
  39917. weight: math.unit(7000, "tonnes"),
  39918. name: "Front",
  39919. image: {
  39920. source: "./media/characters/tef/front.svg",
  39921. extra: 2036/1991,
  39922. bottom: 54/2090
  39923. }
  39924. },
  39925. back: {
  39926. height: math.unit(80, "meters"),
  39927. weight: math.unit(7000, "tonnes"),
  39928. name: "Back",
  39929. image: {
  39930. source: "./media/characters/tef/back.svg",
  39931. extra: 2036/1991,
  39932. bottom: 54/2090
  39933. }
  39934. },
  39935. },
  39936. [
  39937. {
  39938. name: "Macro",
  39939. height: math.unit(80, "meters"),
  39940. default: true
  39941. },
  39942. ]
  39943. ))
  39944. characterMakers.push(() => makeCharacter(
  39945. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39946. {
  39947. front: {
  39948. height: math.unit(13, "feet"),
  39949. weight: math.unit(6, "tons"),
  39950. name: "Front",
  39951. image: {
  39952. source: "./media/characters/rover/front.svg",
  39953. extra: 1233/1156,
  39954. bottom: 50/1283
  39955. }
  39956. },
  39957. back: {
  39958. height: math.unit(13, "feet"),
  39959. weight: math.unit(6, "tons"),
  39960. name: "Back",
  39961. image: {
  39962. source: "./media/characters/rover/back.svg",
  39963. extra: 1327/1258,
  39964. bottom: 39/1366
  39965. }
  39966. },
  39967. },
  39968. [
  39969. {
  39970. name: "Normal",
  39971. height: math.unit(13, "feet"),
  39972. default: true
  39973. },
  39974. {
  39975. name: "Macro",
  39976. height: math.unit(1300, "feet")
  39977. },
  39978. {
  39979. name: "Megamacro",
  39980. height: math.unit(1300, "miles")
  39981. },
  39982. {
  39983. name: "Gigamacro",
  39984. height: math.unit(1300000, "miles")
  39985. },
  39986. ]
  39987. ))
  39988. characterMakers.push(() => makeCharacter(
  39989. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39990. {
  39991. front: {
  39992. height: math.unit(6, "feet"),
  39993. weight: math.unit(150, "lb"),
  39994. name: "Front",
  39995. image: {
  39996. source: "./media/characters/ariz/front.svg",
  39997. extra: 1401/1346,
  39998. bottom: 5/1406
  39999. }
  40000. },
  40001. },
  40002. [
  40003. {
  40004. name: "Normal",
  40005. height: math.unit(10, "feet"),
  40006. default: true
  40007. },
  40008. ]
  40009. ))
  40010. characterMakers.push(() => makeCharacter(
  40011. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40012. {
  40013. front: {
  40014. height: math.unit(6, "feet"),
  40015. weight: math.unit(140, "lb"),
  40016. name: "Front",
  40017. image: {
  40018. source: "./media/characters/sigrun/front.svg",
  40019. extra: 1418/1359,
  40020. bottom: 27/1445
  40021. }
  40022. },
  40023. },
  40024. [
  40025. {
  40026. name: "Macro",
  40027. height: math.unit(35, "feet"),
  40028. default: true
  40029. },
  40030. ]
  40031. ))
  40032. characterMakers.push(() => makeCharacter(
  40033. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40034. {
  40035. front: {
  40036. height: math.unit(6, "feet"),
  40037. weight: math.unit(150, "lb"),
  40038. name: "Front",
  40039. image: {
  40040. source: "./media/characters/numin/front.svg",
  40041. extra: 1433/1388,
  40042. bottom: 12/1445
  40043. }
  40044. },
  40045. },
  40046. [
  40047. {
  40048. name: "Macro",
  40049. height: math.unit(21.5, "km"),
  40050. default: true
  40051. },
  40052. ]
  40053. ))
  40054. characterMakers.push(() => makeCharacter(
  40055. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40056. {
  40057. front: {
  40058. height: math.unit(6, "feet"),
  40059. weight: math.unit(463, "lb"),
  40060. name: "Front",
  40061. image: {
  40062. source: "./media/characters/melwa/front.svg",
  40063. extra: 1307/1248,
  40064. bottom: 93/1400
  40065. }
  40066. },
  40067. },
  40068. [
  40069. {
  40070. name: "Macro",
  40071. height: math.unit(50, "meters"),
  40072. default: true
  40073. },
  40074. ]
  40075. ))
  40076. characterMakers.push(() => makeCharacter(
  40077. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40078. {
  40079. front: {
  40080. height: math.unit(325, "feet"),
  40081. name: "Front",
  40082. image: {
  40083. source: "./media/characters/zorkaiju/front.svg",
  40084. extra: 1955/1814,
  40085. bottom: 40/1995
  40086. }
  40087. },
  40088. frontExtended: {
  40089. height: math.unit(325, "feet"),
  40090. name: "Front (Extended)",
  40091. image: {
  40092. source: "./media/characters/zorkaiju/front-extended.svg",
  40093. extra: 1955/1814,
  40094. bottom: 40/1995
  40095. }
  40096. },
  40097. side: {
  40098. height: math.unit(325, "feet"),
  40099. name: "Side",
  40100. image: {
  40101. source: "./media/characters/zorkaiju/side.svg",
  40102. extra: 1495/1396,
  40103. bottom: 17/1512
  40104. }
  40105. },
  40106. sideExtended: {
  40107. height: math.unit(325, "feet"),
  40108. name: "Side (Extended)",
  40109. image: {
  40110. source: "./media/characters/zorkaiju/side-extended.svg",
  40111. extra: 1495/1396,
  40112. bottom: 17/1512
  40113. }
  40114. },
  40115. back: {
  40116. height: math.unit(325, "feet"),
  40117. name: "Back",
  40118. image: {
  40119. source: "./media/characters/zorkaiju/back.svg",
  40120. extra: 1959/1821,
  40121. bottom: 31/1990
  40122. }
  40123. },
  40124. backExtended: {
  40125. height: math.unit(325, "feet"),
  40126. name: "Back (Extended)",
  40127. image: {
  40128. source: "./media/characters/zorkaiju/back-extended.svg",
  40129. extra: 1959/1821,
  40130. bottom: 31/1990
  40131. }
  40132. },
  40133. hand: {
  40134. height: math.unit(58.4, "feet"),
  40135. name: "Hand",
  40136. image: {
  40137. source: "./media/characters/zorkaiju/hand.svg"
  40138. }
  40139. },
  40140. handExtended: {
  40141. height: math.unit(61.4, "feet"),
  40142. name: "Hand (Extended)",
  40143. image: {
  40144. source: "./media/characters/zorkaiju/hand-extended.svg"
  40145. }
  40146. },
  40147. foot: {
  40148. height: math.unit(95, "feet"),
  40149. name: "Foot",
  40150. image: {
  40151. source: "./media/characters/zorkaiju/foot.svg"
  40152. }
  40153. },
  40154. leftArm: {
  40155. height: math.unit(59, "feet"),
  40156. name: "Left Arm",
  40157. image: {
  40158. source: "./media/characters/zorkaiju/left-arm.svg"
  40159. }
  40160. },
  40161. rightArm: {
  40162. height: math.unit(59, "feet"),
  40163. name: "Right Arm",
  40164. image: {
  40165. source: "./media/characters/zorkaiju/right-arm.svg"
  40166. }
  40167. },
  40168. tail: {
  40169. height: math.unit(104, "feet"),
  40170. name: "Tail",
  40171. image: {
  40172. source: "./media/characters/zorkaiju/tail.svg"
  40173. }
  40174. },
  40175. tailExtended: {
  40176. height: math.unit(104, "feet"),
  40177. name: "Tail (Extended)",
  40178. image: {
  40179. source: "./media/characters/zorkaiju/tail-extended.svg"
  40180. }
  40181. },
  40182. tailBottom: {
  40183. height: math.unit(104, "feet"),
  40184. name: "Tail Bottom",
  40185. image: {
  40186. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40187. }
  40188. },
  40189. crystal: {
  40190. height: math.unit(27.54, "feet"),
  40191. name: "Crystal",
  40192. image: {
  40193. source: "./media/characters/zorkaiju/crystal.svg"
  40194. }
  40195. },
  40196. },
  40197. [
  40198. {
  40199. name: "Kaiju",
  40200. height: math.unit(325, "feet"),
  40201. default: true
  40202. },
  40203. ]
  40204. ))
  40205. characterMakers.push(() => makeCharacter(
  40206. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40207. {
  40208. front: {
  40209. height: math.unit(6 + 1/12, "feet"),
  40210. weight: math.unit(115, "lb"),
  40211. name: "Front",
  40212. image: {
  40213. source: "./media/characters/bailey-belfry/front.svg",
  40214. extra: 1240/1121,
  40215. bottom: 101/1341
  40216. }
  40217. },
  40218. },
  40219. [
  40220. {
  40221. name: "Normal",
  40222. height: math.unit(6 + 1/12, "feet"),
  40223. default: true
  40224. },
  40225. ]
  40226. ))
  40227. characterMakers.push(() => makeCharacter(
  40228. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40229. {
  40230. side: {
  40231. height: math.unit(4, "meters"),
  40232. weight: math.unit(250, "kg"),
  40233. name: "Side",
  40234. image: {
  40235. source: "./media/characters/blacky/side.svg",
  40236. extra: 1027/919,
  40237. bottom: 43/1070
  40238. }
  40239. },
  40240. maw: {
  40241. height: math.unit(1, "meters"),
  40242. name: "Maw",
  40243. image: {
  40244. source: "./media/characters/blacky/maw.svg"
  40245. }
  40246. },
  40247. paw: {
  40248. height: math.unit(1, "meters"),
  40249. name: "Paw",
  40250. image: {
  40251. source: "./media/characters/blacky/paw.svg"
  40252. }
  40253. },
  40254. },
  40255. [
  40256. {
  40257. name: "Normal",
  40258. height: math.unit(4, "meters"),
  40259. default: true
  40260. },
  40261. ]
  40262. ))
  40263. characterMakers.push(() => makeCharacter(
  40264. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40265. {
  40266. front: {
  40267. height: math.unit(170, "cm"),
  40268. weight: math.unit(66, "kg"),
  40269. name: "Front",
  40270. image: {
  40271. source: "./media/characters/thux-ei/front.svg",
  40272. extra: 1109/1011,
  40273. bottom: 8/1117
  40274. }
  40275. },
  40276. },
  40277. [
  40278. {
  40279. name: "Normal",
  40280. height: math.unit(170, "cm"),
  40281. default: true
  40282. },
  40283. ]
  40284. ))
  40285. characterMakers.push(() => makeCharacter(
  40286. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40287. {
  40288. front: {
  40289. height: math.unit(5, "feet"),
  40290. weight: math.unit(120, "lb"),
  40291. name: "Front",
  40292. image: {
  40293. source: "./media/characters/roxanne-voltaire/front.svg",
  40294. extra: 1901/1779,
  40295. bottom: 53/1954
  40296. }
  40297. },
  40298. },
  40299. [
  40300. {
  40301. name: "Normal",
  40302. height: math.unit(5, "feet"),
  40303. default: true
  40304. },
  40305. {
  40306. name: "Giant",
  40307. height: math.unit(50, "feet")
  40308. },
  40309. {
  40310. name: "Titan",
  40311. height: math.unit(500, "feet")
  40312. },
  40313. {
  40314. name: "Macro",
  40315. height: math.unit(5000, "feet")
  40316. },
  40317. {
  40318. name: "Megamacro",
  40319. height: math.unit(50000, "feet")
  40320. },
  40321. {
  40322. name: "Gigamacro",
  40323. height: math.unit(500000, "feet")
  40324. },
  40325. {
  40326. name: "Teramacro",
  40327. height: math.unit(5e6, "feet")
  40328. },
  40329. ]
  40330. ))
  40331. characterMakers.push(() => makeCharacter(
  40332. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40333. {
  40334. front: {
  40335. height: math.unit(6 + 2/12, "feet"),
  40336. name: "Front",
  40337. image: {
  40338. source: "./media/characters/squeaks/front.svg",
  40339. extra: 1823/1768,
  40340. bottom: 138/1961
  40341. }
  40342. },
  40343. },
  40344. [
  40345. {
  40346. name: "Micro",
  40347. height: math.unit(0.5, "inches")
  40348. },
  40349. {
  40350. name: "Normal",
  40351. height: math.unit(6 + 2/12, "feet"),
  40352. default: true
  40353. },
  40354. {
  40355. name: "Macro",
  40356. height: math.unit(600, "feet")
  40357. },
  40358. ]
  40359. ))
  40360. characterMakers.push(() => makeCharacter(
  40361. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40362. {
  40363. front: {
  40364. height: math.unit(1.72, "meters"),
  40365. name: "Front",
  40366. image: {
  40367. source: "./media/characters/archinger/front.svg",
  40368. extra: 1861/1675,
  40369. bottom: 125/1986
  40370. }
  40371. },
  40372. back: {
  40373. height: math.unit(1.72, "meters"),
  40374. name: "Back",
  40375. image: {
  40376. source: "./media/characters/archinger/back.svg",
  40377. extra: 1844/1701,
  40378. bottom: 104/1948
  40379. }
  40380. },
  40381. cock: {
  40382. height: math.unit(0.59, "feet"),
  40383. name: "Cock",
  40384. image: {
  40385. source: "./media/characters/archinger/cock.svg"
  40386. }
  40387. },
  40388. },
  40389. [
  40390. {
  40391. name: "Normal",
  40392. height: math.unit(1.72, "meters"),
  40393. default: true
  40394. },
  40395. {
  40396. name: "Macro",
  40397. height: math.unit(84, "meters")
  40398. },
  40399. {
  40400. name: "Macro+",
  40401. height: math.unit(112, "meters")
  40402. },
  40403. {
  40404. name: "Macro++",
  40405. height: math.unit(960, "meters")
  40406. },
  40407. {
  40408. name: "Macro+++",
  40409. height: math.unit(4, "km")
  40410. },
  40411. {
  40412. name: "Macro++++",
  40413. height: math.unit(48, "km")
  40414. },
  40415. {
  40416. name: "Macro+++++",
  40417. height: math.unit(4500, "km")
  40418. },
  40419. ]
  40420. ))
  40421. characterMakers.push(() => makeCharacter(
  40422. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40423. {
  40424. front: {
  40425. height: math.unit(5 + 5/12, "feet"),
  40426. name: "Front",
  40427. image: {
  40428. source: "./media/characters/alsnapz/front.svg",
  40429. extra: 1157/1065,
  40430. bottom: 42/1199
  40431. }
  40432. },
  40433. },
  40434. [
  40435. {
  40436. name: "Normal",
  40437. height: math.unit(5 + 5/12, "feet"),
  40438. default: true
  40439. },
  40440. ]
  40441. ))
  40442. characterMakers.push(() => makeCharacter(
  40443. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40444. {
  40445. side: {
  40446. height: math.unit(3.2, "earths"),
  40447. name: "Side",
  40448. image: {
  40449. source: "./media/characters/mag/side.svg",
  40450. extra: 1331/1008,
  40451. bottom: 52/1383
  40452. }
  40453. },
  40454. wing: {
  40455. height: math.unit(1.94, "earths"),
  40456. name: "Wing",
  40457. image: {
  40458. source: "./media/characters/mag/wing.svg"
  40459. }
  40460. },
  40461. dick: {
  40462. height: math.unit(1.8, "earths"),
  40463. name: "Dick",
  40464. image: {
  40465. source: "./media/characters/mag/dick.svg"
  40466. }
  40467. },
  40468. ass: {
  40469. height: math.unit(1.33, "earths"),
  40470. name: "Ass",
  40471. image: {
  40472. source: "./media/characters/mag/ass.svg"
  40473. }
  40474. },
  40475. head: {
  40476. height: math.unit(1.1, "earths"),
  40477. name: "Head",
  40478. image: {
  40479. source: "./media/characters/mag/head.svg"
  40480. }
  40481. },
  40482. maw: {
  40483. height: math.unit(1.62, "earths"),
  40484. name: "Maw",
  40485. image: {
  40486. source: "./media/characters/mag/maw.svg"
  40487. }
  40488. },
  40489. },
  40490. [
  40491. {
  40492. name: "Small",
  40493. height: math.unit(162, "feet")
  40494. },
  40495. {
  40496. name: "Normal",
  40497. height: math.unit(3.2, "earths"),
  40498. default: true
  40499. },
  40500. ]
  40501. ))
  40502. characterMakers.push(() => makeCharacter(
  40503. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40504. {
  40505. front: {
  40506. height: math.unit(512, "feet"),
  40507. weight: math.unit(63509, "tonnes"),
  40508. name: "Front",
  40509. image: {
  40510. source: "./media/characters/vorrel-harroc/front.svg",
  40511. extra: 1075/1063,
  40512. bottom: 62/1137
  40513. }
  40514. },
  40515. },
  40516. [
  40517. {
  40518. name: "Normal",
  40519. height: math.unit(10, "feet")
  40520. },
  40521. {
  40522. name: "Macro",
  40523. height: math.unit(512, "feet"),
  40524. default: true
  40525. },
  40526. {
  40527. name: "Megamacro",
  40528. height: math.unit(256, "miles")
  40529. },
  40530. {
  40531. name: "Gigamacro",
  40532. height: math.unit(4096, "miles")
  40533. },
  40534. ]
  40535. ))
  40536. characterMakers.push(() => makeCharacter(
  40537. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40538. {
  40539. side: {
  40540. height: math.unit(50, "feet"),
  40541. name: "Side",
  40542. image: {
  40543. source: "./media/characters/froimar/side.svg",
  40544. extra: 855/638,
  40545. bottom: 99/954
  40546. }
  40547. },
  40548. },
  40549. [
  40550. {
  40551. name: "Macro",
  40552. height: math.unit(50, "feet"),
  40553. default: true
  40554. },
  40555. ]
  40556. ))
  40557. characterMakers.push(() => makeCharacter(
  40558. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40559. {
  40560. front: {
  40561. height: math.unit(210, "miles"),
  40562. name: "Front",
  40563. image: {
  40564. source: "./media/characters/timothy/front.svg",
  40565. extra: 1007/943,
  40566. bottom: 62/1069
  40567. }
  40568. },
  40569. frontSkirt: {
  40570. height: math.unit(210, "miles"),
  40571. name: "Front (Skirt)",
  40572. image: {
  40573. source: "./media/characters/timothy/front-skirt.svg",
  40574. extra: 1007/943,
  40575. bottom: 62/1069
  40576. }
  40577. },
  40578. frontCoat: {
  40579. height: math.unit(210, "miles"),
  40580. name: "Front (Coat)",
  40581. image: {
  40582. source: "./media/characters/timothy/front-coat.svg",
  40583. extra: 1007/943,
  40584. bottom: 62/1069
  40585. }
  40586. },
  40587. },
  40588. [
  40589. {
  40590. name: "Macro",
  40591. height: math.unit(210, "miles"),
  40592. default: true
  40593. },
  40594. {
  40595. name: "Megamacro",
  40596. height: math.unit(210000, "miles")
  40597. },
  40598. ]
  40599. ))
  40600. characterMakers.push(() => makeCharacter(
  40601. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40602. {
  40603. front: {
  40604. height: math.unit(188, "feet"),
  40605. name: "Front",
  40606. image: {
  40607. source: "./media/characters/pyotr/front.svg",
  40608. extra: 1912/1826,
  40609. bottom: 18/1930
  40610. }
  40611. },
  40612. },
  40613. [
  40614. {
  40615. name: "Macro",
  40616. height: math.unit(188, "feet"),
  40617. default: true
  40618. },
  40619. {
  40620. name: "Megamacro",
  40621. height: math.unit(8, "miles")
  40622. },
  40623. ]
  40624. ))
  40625. characterMakers.push(() => makeCharacter(
  40626. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40627. {
  40628. side: {
  40629. height: math.unit(10, "feet"),
  40630. weight: math.unit(4500, "lb"),
  40631. name: "Side",
  40632. image: {
  40633. source: "./media/characters/ackart/side.svg",
  40634. extra: 1776/1668,
  40635. bottom: 116/1892
  40636. }
  40637. },
  40638. },
  40639. [
  40640. {
  40641. name: "Normal",
  40642. height: math.unit(10, "feet"),
  40643. default: true
  40644. },
  40645. ]
  40646. ))
  40647. characterMakers.push(() => makeCharacter(
  40648. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40649. {
  40650. side: {
  40651. height: math.unit(21, "feet"),
  40652. name: "Side",
  40653. image: {
  40654. source: "./media/characters/nolow/side.svg",
  40655. extra: 1484/1434,
  40656. bottom: 85/1569
  40657. }
  40658. },
  40659. sideErect: {
  40660. height: math.unit(21, "feet"),
  40661. name: "Side-erect",
  40662. image: {
  40663. source: "./media/characters/nolow/side-erect.svg",
  40664. extra: 1484/1434,
  40665. bottom: 85/1569
  40666. }
  40667. },
  40668. },
  40669. [
  40670. {
  40671. name: "Regular",
  40672. height: math.unit(12, "feet")
  40673. },
  40674. {
  40675. name: "Big Chee",
  40676. height: math.unit(21, "feet"),
  40677. default: true
  40678. },
  40679. ]
  40680. ))
  40681. characterMakers.push(() => makeCharacter(
  40682. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40683. {
  40684. front: {
  40685. height: math.unit(7, "feet"),
  40686. weight: math.unit(250, "lb"),
  40687. name: "Front",
  40688. image: {
  40689. source: "./media/characters/nines/front.svg",
  40690. extra: 1741/1607,
  40691. bottom: 41/1782
  40692. }
  40693. },
  40694. side: {
  40695. height: math.unit(7, "feet"),
  40696. weight: math.unit(250, "lb"),
  40697. name: "Side",
  40698. image: {
  40699. source: "./media/characters/nines/side.svg",
  40700. extra: 1854/1735,
  40701. bottom: 93/1947
  40702. }
  40703. },
  40704. back: {
  40705. height: math.unit(7, "feet"),
  40706. weight: math.unit(250, "lb"),
  40707. name: "Back",
  40708. image: {
  40709. source: "./media/characters/nines/back.svg",
  40710. extra: 1748/1615,
  40711. bottom: 20/1768
  40712. }
  40713. },
  40714. },
  40715. [
  40716. {
  40717. name: "Megamacro",
  40718. height: math.unit(99, "km"),
  40719. default: true
  40720. },
  40721. ]
  40722. ))
  40723. characterMakers.push(() => makeCharacter(
  40724. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40725. {
  40726. front: {
  40727. height: math.unit(5 + 10/12, "feet"),
  40728. weight: math.unit(210, "lb"),
  40729. name: "Front",
  40730. image: {
  40731. source: "./media/characters/zenith/front.svg",
  40732. extra: 1531/1452,
  40733. bottom: 198/1729
  40734. }
  40735. },
  40736. back: {
  40737. height: math.unit(5 + 10/12, "feet"),
  40738. weight: math.unit(210, "lb"),
  40739. name: "Back",
  40740. image: {
  40741. source: "./media/characters/zenith/back.svg",
  40742. extra: 1571/1487,
  40743. bottom: 75/1646
  40744. }
  40745. },
  40746. },
  40747. [
  40748. {
  40749. name: "Normal",
  40750. height: math.unit(5 + 10/12, "feet"),
  40751. default: true
  40752. }
  40753. ]
  40754. ))
  40755. characterMakers.push(() => makeCharacter(
  40756. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40757. {
  40758. front: {
  40759. height: math.unit(4, "feet"),
  40760. weight: math.unit(60, "lb"),
  40761. name: "Front",
  40762. image: {
  40763. source: "./media/characters/jasper/front.svg",
  40764. extra: 1450/1379,
  40765. bottom: 19/1469
  40766. }
  40767. },
  40768. },
  40769. [
  40770. {
  40771. name: "Normal",
  40772. height: math.unit(4, "feet"),
  40773. default: true
  40774. },
  40775. ]
  40776. ))
  40777. characterMakers.push(() => makeCharacter(
  40778. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40779. {
  40780. front: {
  40781. height: math.unit(6 + 5/12, "feet"),
  40782. weight: math.unit(290, "lb"),
  40783. name: "Front",
  40784. image: {
  40785. source: "./media/characters/tiberius-thyben/front.svg",
  40786. extra: 757/739,
  40787. bottom: 39/796
  40788. }
  40789. },
  40790. },
  40791. [
  40792. {
  40793. name: "Micro",
  40794. height: math.unit(1.5, "inches")
  40795. },
  40796. {
  40797. name: "Normal",
  40798. height: math.unit(6 + 5/12, "feet"),
  40799. default: true
  40800. },
  40801. {
  40802. name: "Macro",
  40803. height: math.unit(300, "feet")
  40804. },
  40805. ]
  40806. ))
  40807. characterMakers.push(() => makeCharacter(
  40808. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40809. {
  40810. front: {
  40811. height: math.unit(5 + 6/12, "feet"),
  40812. weight: math.unit(60, "kg"),
  40813. name: "Front",
  40814. image: {
  40815. source: "./media/characters/sabre/front.svg",
  40816. extra: 738/671,
  40817. bottom: 27/765
  40818. }
  40819. },
  40820. },
  40821. [
  40822. {
  40823. name: "Teeny",
  40824. height: math.unit(2, "inches")
  40825. },
  40826. {
  40827. name: "Smol",
  40828. height: math.unit(8, "inches")
  40829. },
  40830. {
  40831. name: "Normal",
  40832. height: math.unit(5 + 6/12, "feet"),
  40833. default: true
  40834. },
  40835. {
  40836. name: "Mini-Macro",
  40837. height: math.unit(15, "feet")
  40838. },
  40839. {
  40840. name: "Macro",
  40841. height: math.unit(50, "feet")
  40842. },
  40843. ]
  40844. ))
  40845. characterMakers.push(() => makeCharacter(
  40846. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40847. {
  40848. front: {
  40849. height: math.unit(6 + 4/12, "feet"),
  40850. weight: math.unit(170, "lb"),
  40851. name: "Front",
  40852. image: {
  40853. source: "./media/characters/charlie/front.svg",
  40854. extra: 1348/1228,
  40855. bottom: 15/1363
  40856. }
  40857. },
  40858. },
  40859. [
  40860. {
  40861. name: "Macro",
  40862. height: math.unit(1700, "meters"),
  40863. default: true
  40864. },
  40865. {
  40866. name: "MegaMacro",
  40867. height: math.unit(20400, "meters")
  40868. },
  40869. ]
  40870. ))
  40871. characterMakers.push(() => makeCharacter(
  40872. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40873. {
  40874. front: {
  40875. height: math.unit(6 + 3/12, "feet"),
  40876. weight: math.unit(185, "lb"),
  40877. name: "Front",
  40878. image: {
  40879. source: "./media/characters/susan-grant/front.svg",
  40880. extra: 1351/1327,
  40881. bottom: 26/1377
  40882. }
  40883. },
  40884. },
  40885. [
  40886. {
  40887. name: "Normal",
  40888. height: math.unit(6 + 3/12, "feet"),
  40889. default: true
  40890. },
  40891. {
  40892. name: "Macro",
  40893. height: math.unit(225, "feet")
  40894. },
  40895. {
  40896. name: "Macro+",
  40897. height: math.unit(900, "feet")
  40898. },
  40899. {
  40900. name: "MegaMacro",
  40901. height: math.unit(14400, "feet")
  40902. },
  40903. ]
  40904. ))
  40905. characterMakers.push(() => makeCharacter(
  40906. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40907. {
  40908. front: {
  40909. height: math.unit(5 + 4/12, "feet"),
  40910. weight: math.unit(110, "lb"),
  40911. name: "Front",
  40912. image: {
  40913. source: "./media/characters/axel-isanov/front.svg",
  40914. extra: 1096/1065,
  40915. bottom: 13/1109
  40916. }
  40917. },
  40918. },
  40919. [
  40920. {
  40921. name: "Normal",
  40922. height: math.unit(5 + 4/12, "feet"),
  40923. default: true
  40924. },
  40925. ]
  40926. ))
  40927. characterMakers.push(() => makeCharacter(
  40928. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40929. {
  40930. front: {
  40931. height: math.unit(9, "feet"),
  40932. weight: math.unit(467, "lb"),
  40933. name: "Front",
  40934. image: {
  40935. source: "./media/characters/necahual/front.svg",
  40936. extra: 920/873,
  40937. bottom: 26/946
  40938. }
  40939. },
  40940. back: {
  40941. height: math.unit(9, "feet"),
  40942. weight: math.unit(467, "lb"),
  40943. name: "Back",
  40944. image: {
  40945. source: "./media/characters/necahual/back.svg",
  40946. extra: 930/884,
  40947. bottom: 16/946
  40948. }
  40949. },
  40950. frontUnderwear: {
  40951. height: math.unit(9, "feet"),
  40952. weight: math.unit(467, "lb"),
  40953. name: "Front (Underwear)",
  40954. image: {
  40955. source: "./media/characters/necahual/front-underwear.svg",
  40956. extra: 920/873,
  40957. bottom: 26/946
  40958. }
  40959. },
  40960. frontDressed: {
  40961. height: math.unit(9, "feet"),
  40962. weight: math.unit(467, "lb"),
  40963. name: "Front (Dressed)",
  40964. image: {
  40965. source: "./media/characters/necahual/front-dressed.svg",
  40966. extra: 920/873,
  40967. bottom: 26/946
  40968. }
  40969. },
  40970. },
  40971. [
  40972. {
  40973. name: "Comprsesed",
  40974. height: math.unit(9, "feet")
  40975. },
  40976. {
  40977. name: "Natural",
  40978. height: math.unit(15, "feet"),
  40979. default: true
  40980. },
  40981. {
  40982. name: "Boosted",
  40983. height: math.unit(50, "feet")
  40984. },
  40985. {
  40986. name: "Boosted+",
  40987. height: math.unit(150, "feet")
  40988. },
  40989. {
  40990. name: "Max",
  40991. height: math.unit(500, "feet")
  40992. },
  40993. ]
  40994. ))
  40995. characterMakers.push(() => makeCharacter(
  40996. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40997. {
  40998. front: {
  40999. height: math.unit(22 + 1/12, "feet"),
  41000. weight: math.unit(3200, "lb"),
  41001. name: "Front",
  41002. image: {
  41003. source: "./media/characters/theo-acacia/front.svg",
  41004. extra: 1796/1741,
  41005. bottom: 83/1879
  41006. }
  41007. },
  41008. frontUnderwear: {
  41009. height: math.unit(22 + 1/12, "feet"),
  41010. weight: math.unit(3200, "lb"),
  41011. name: "Front (Underwear)",
  41012. image: {
  41013. source: "./media/characters/theo-acacia/front-underwear.svg",
  41014. extra: 1796/1741,
  41015. bottom: 83/1879
  41016. }
  41017. },
  41018. frontNude: {
  41019. height: math.unit(22 + 1/12, "feet"),
  41020. weight: math.unit(3200, "lb"),
  41021. name: "Front (Nude)",
  41022. image: {
  41023. source: "./media/characters/theo-acacia/front-nude.svg",
  41024. extra: 1796/1741,
  41025. bottom: 83/1879
  41026. }
  41027. },
  41028. },
  41029. [
  41030. {
  41031. name: "Normal",
  41032. height: math.unit(22 + 1/12, "feet"),
  41033. default: true
  41034. },
  41035. ]
  41036. ))
  41037. characterMakers.push(() => makeCharacter(
  41038. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41039. {
  41040. front: {
  41041. height: math.unit(20, "feet"),
  41042. name: "Front",
  41043. image: {
  41044. source: "./media/characters/astra/front.svg",
  41045. extra: 1850/1714,
  41046. bottom: 106/1956
  41047. }
  41048. },
  41049. frontUndressed: {
  41050. height: math.unit(20, "feet"),
  41051. name: "Front (Undressed)",
  41052. image: {
  41053. source: "./media/characters/astra/front-undressed.svg",
  41054. extra: 1926/1749,
  41055. bottom: 0/1926
  41056. }
  41057. },
  41058. hand: {
  41059. height: math.unit(1.53, "feet"),
  41060. name: "Hand",
  41061. image: {
  41062. source: "./media/characters/astra/hand.svg"
  41063. }
  41064. },
  41065. paw: {
  41066. height: math.unit(1.53, "feet"),
  41067. name: "Paw",
  41068. image: {
  41069. source: "./media/characters/astra/paw.svg"
  41070. }
  41071. },
  41072. },
  41073. [
  41074. {
  41075. name: "Smallest",
  41076. height: math.unit(20, "feet")
  41077. },
  41078. {
  41079. name: "Normal",
  41080. height: math.unit(1e9, "miles"),
  41081. default: true
  41082. },
  41083. {
  41084. name: "Larger",
  41085. height: math.unit(5, "multiverses")
  41086. },
  41087. {
  41088. name: "Largest",
  41089. height: math.unit(1e9, "multiverses")
  41090. },
  41091. ]
  41092. ))
  41093. characterMakers.push(() => makeCharacter(
  41094. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41095. {
  41096. front: {
  41097. height: math.unit(8, "feet"),
  41098. name: "Front",
  41099. image: {
  41100. source: "./media/characters/breanna/front.svg",
  41101. extra: 1912/1632,
  41102. bottom: 33/1945
  41103. }
  41104. },
  41105. },
  41106. [
  41107. {
  41108. name: "Smallest",
  41109. height: math.unit(8, "feet")
  41110. },
  41111. {
  41112. name: "Normal",
  41113. height: math.unit(1, "mile"),
  41114. default: true
  41115. },
  41116. {
  41117. name: "Maximum",
  41118. height: math.unit(1500000000000, "lightyears")
  41119. },
  41120. ]
  41121. ))
  41122. characterMakers.push(() => makeCharacter(
  41123. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41124. {
  41125. front: {
  41126. height: math.unit(5 + 11/12, "feet"),
  41127. weight: math.unit(155, "lb"),
  41128. name: "Front",
  41129. image: {
  41130. source: "./media/characters/cai/front.svg",
  41131. extra: 1823/1702,
  41132. bottom: 32/1855
  41133. }
  41134. },
  41135. back: {
  41136. height: math.unit(5 + 11/12, "feet"),
  41137. weight: math.unit(155, "lb"),
  41138. name: "Back",
  41139. image: {
  41140. source: "./media/characters/cai/back.svg",
  41141. extra: 1809/1708,
  41142. bottom: 31/1840
  41143. }
  41144. },
  41145. },
  41146. [
  41147. {
  41148. name: "Normal",
  41149. height: math.unit(5 + 11/12, "feet"),
  41150. default: true
  41151. },
  41152. {
  41153. name: "Big",
  41154. height: math.unit(15, "feet")
  41155. },
  41156. {
  41157. name: "Macro",
  41158. height: math.unit(200, "feet")
  41159. },
  41160. ]
  41161. ))
  41162. characterMakers.push(() => makeCharacter(
  41163. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41164. {
  41165. front: {
  41166. height: math.unit(5 + 6/12, "feet"),
  41167. weight: math.unit(160, "lb"),
  41168. name: "Front",
  41169. image: {
  41170. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41171. extra: 1227/1174,
  41172. bottom: 37/1264
  41173. }
  41174. },
  41175. },
  41176. [
  41177. {
  41178. name: "Macro",
  41179. height: math.unit(444, "meters"),
  41180. default: true
  41181. },
  41182. ]
  41183. ))
  41184. characterMakers.push(() => makeCharacter(
  41185. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41186. {
  41187. front: {
  41188. height: math.unit(18 + 7/12, "feet"),
  41189. name: "Front",
  41190. image: {
  41191. source: "./media/characters/rex/front.svg",
  41192. extra: 1941/1807,
  41193. bottom: 66/2007
  41194. }
  41195. },
  41196. back: {
  41197. height: math.unit(18 + 7/12, "feet"),
  41198. name: "Back",
  41199. image: {
  41200. source: "./media/characters/rex/back.svg",
  41201. extra: 1937/1822,
  41202. bottom: 42/1979
  41203. }
  41204. },
  41205. boot: {
  41206. height: math.unit(3.45, "feet"),
  41207. name: "Boot",
  41208. image: {
  41209. source: "./media/characters/rex/boot.svg"
  41210. }
  41211. },
  41212. paw: {
  41213. height: math.unit(4.17, "feet"),
  41214. name: "Paw",
  41215. image: {
  41216. source: "./media/characters/rex/paw.svg"
  41217. }
  41218. },
  41219. head: {
  41220. height: math.unit(6.728, "feet"),
  41221. name: "Head",
  41222. image: {
  41223. source: "./media/characters/rex/head.svg"
  41224. }
  41225. },
  41226. },
  41227. [
  41228. {
  41229. name: "Nano",
  41230. height: math.unit(18 + 7/12, "feet")
  41231. },
  41232. {
  41233. name: "Micro",
  41234. height: math.unit(1.5, "megameters")
  41235. },
  41236. {
  41237. name: "Normal",
  41238. height: math.unit(440, "megameters"),
  41239. default: true
  41240. },
  41241. {
  41242. name: "Macro",
  41243. height: math.unit(2.5, "gigameters")
  41244. },
  41245. {
  41246. name: "Gigamacro",
  41247. height: math.unit(2, "galaxies")
  41248. },
  41249. ]
  41250. ))
  41251. characterMakers.push(() => makeCharacter(
  41252. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41253. {
  41254. side: {
  41255. height: math.unit(32, "feet"),
  41256. weight: math.unit(250000, "lb"),
  41257. name: "Side",
  41258. image: {
  41259. source: "./media/characters/silverwing/side.svg",
  41260. extra: 1100/1019,
  41261. bottom: 204/1304
  41262. }
  41263. },
  41264. },
  41265. [
  41266. {
  41267. name: "Normal",
  41268. height: math.unit(32, "feet"),
  41269. default: true
  41270. },
  41271. ]
  41272. ))
  41273. characterMakers.push(() => makeCharacter(
  41274. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41275. {
  41276. front: {
  41277. height: math.unit(6 + 6/12, "feet"),
  41278. weight: math.unit(350, "lb"),
  41279. name: "Front",
  41280. image: {
  41281. source: "./media/characters/tristan-hawthorne/front.svg",
  41282. extra: 1159/1124,
  41283. bottom: 37/1196
  41284. }
  41285. },
  41286. },
  41287. [
  41288. {
  41289. name: "Normal",
  41290. height: math.unit(6 + 6/12, "feet"),
  41291. default: true
  41292. },
  41293. ]
  41294. ))
  41295. characterMakers.push(() => makeCharacter(
  41296. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41297. {
  41298. front: {
  41299. height: math.unit(5 + 11/12, "feet"),
  41300. weight: math.unit(190, "lb"),
  41301. name: "Front",
  41302. image: {
  41303. source: "./media/characters/mizu/front.svg",
  41304. extra: 1988/1788,
  41305. bottom: 14/2002
  41306. }
  41307. },
  41308. },
  41309. [
  41310. {
  41311. name: "Normal",
  41312. height: math.unit(5 + 11/12, "feet"),
  41313. default: true
  41314. },
  41315. ]
  41316. ))
  41317. characterMakers.push(() => makeCharacter(
  41318. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41319. {
  41320. front: {
  41321. height: math.unit(6, "feet"),
  41322. name: "Front",
  41323. image: {
  41324. source: "./media/characters/moonlight-rose-terra/front.svg",
  41325. extra: 1434/1252,
  41326. bottom: 48/1482
  41327. }
  41328. },
  41329. },
  41330. [
  41331. {
  41332. name: "TRAPPIST-1D",
  41333. height: math.unit(4992*2, "km")
  41334. },
  41335. {
  41336. name: "Earth",
  41337. height: math.unit(6367*2, "km"),
  41338. default: true
  41339. },
  41340. {
  41341. name: "Kepler-22b",
  41342. height: math.unit(15282*2, "km")
  41343. },
  41344. ]
  41345. ))
  41346. characterMakers.push(() => makeCharacter(
  41347. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41348. {
  41349. front: {
  41350. height: math.unit(6, "feet"),
  41351. name: "Front",
  41352. image: {
  41353. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41354. extra: 1851/1712,
  41355. bottom: 0/1851
  41356. }
  41357. },
  41358. },
  41359. [
  41360. {
  41361. name: "Enceladus",
  41362. height: math.unit(513*2, "km")
  41363. },
  41364. {
  41365. name: "Europe",
  41366. height: math.unit(1560*2, "km")
  41367. },
  41368. {
  41369. name: "Neptune",
  41370. height: math.unit(24622*2, "km"),
  41371. default: true
  41372. },
  41373. {
  41374. name: "CoRoT-9b",
  41375. height: math.unit(75067*2, "km")
  41376. },
  41377. ]
  41378. ))
  41379. characterMakers.push(() => makeCharacter(
  41380. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41381. {
  41382. front: {
  41383. height: math.unit(6, "feet"),
  41384. name: "Front",
  41385. image: {
  41386. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41387. extra: 1367/1286,
  41388. bottom: 55/1422
  41389. }
  41390. },
  41391. },
  41392. [
  41393. {
  41394. name: "Saturn",
  41395. height: math.unit(58232*2, "km")
  41396. },
  41397. {
  41398. name: "Jupiter",
  41399. height: math.unit(69911*2, "km"),
  41400. default: true
  41401. },
  41402. {
  41403. name: "HD 100546 b",
  41404. height: math.unit(482938, "km")
  41405. },
  41406. ]
  41407. ))
  41408. characterMakers.push(() => makeCharacter(
  41409. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41410. {
  41411. front: {
  41412. height: math.unit(1.7, "feet"),
  41413. weight: math.unit(50, "lb"),
  41414. name: "Front",
  41415. image: {
  41416. source: "./media/characters/dechroma/front.svg",
  41417. extra: 1095/859,
  41418. bottom: 64/1159
  41419. }
  41420. },
  41421. },
  41422. [
  41423. {
  41424. name: "Normal",
  41425. height: math.unit(1.7, "feet"),
  41426. default: true
  41427. },
  41428. ]
  41429. ))
  41430. characterMakers.push(() => makeCharacter(
  41431. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41432. {
  41433. side: {
  41434. height: math.unit(30, "feet"),
  41435. name: "Side",
  41436. image: {
  41437. source: "./media/characters/veluren-thanazel/side.svg",
  41438. extra: 1611/633,
  41439. bottom: 118/1729
  41440. }
  41441. },
  41442. front: {
  41443. height: math.unit(30, "feet"),
  41444. name: "Front",
  41445. image: {
  41446. source: "./media/characters/veluren-thanazel/front.svg",
  41447. extra: 1486/636,
  41448. bottom: 238/1724
  41449. }
  41450. },
  41451. head: {
  41452. height: math.unit(21.4, "feet"),
  41453. name: "Head",
  41454. image: {
  41455. source: "./media/characters/veluren-thanazel/head.svg"
  41456. }
  41457. },
  41458. genitals: {
  41459. height: math.unit(19.4, "feet"),
  41460. name: "Genitals",
  41461. image: {
  41462. source: "./media/characters/veluren-thanazel/genitals.svg"
  41463. }
  41464. },
  41465. },
  41466. [
  41467. {
  41468. name: "Social",
  41469. height: math.unit(6, "feet")
  41470. },
  41471. {
  41472. name: "Play",
  41473. height: math.unit(12, "feet")
  41474. },
  41475. {
  41476. name: "True",
  41477. height: math.unit(30, "feet"),
  41478. default: true
  41479. },
  41480. ]
  41481. ))
  41482. characterMakers.push(() => makeCharacter(
  41483. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41484. {
  41485. front: {
  41486. height: math.unit(7 + 6/12, "feet"),
  41487. weight: math.unit(500, "kg"),
  41488. name: "Front",
  41489. image: {
  41490. source: "./media/characters/arcturas/front.svg",
  41491. extra: 1700/1500,
  41492. bottom: 145/1845
  41493. }
  41494. },
  41495. },
  41496. [
  41497. {
  41498. name: "Normal",
  41499. height: math.unit(7 + 6/12, "feet"),
  41500. default: true
  41501. },
  41502. ]
  41503. ))
  41504. characterMakers.push(() => makeCharacter(
  41505. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41506. {
  41507. side: {
  41508. height: math.unit(6, "feet"),
  41509. weight: math.unit(2, "tons"),
  41510. name: "Side",
  41511. image: {
  41512. source: "./media/characters/vitaen/side.svg",
  41513. extra: 1157/617,
  41514. bottom: 122/1279
  41515. }
  41516. },
  41517. },
  41518. [
  41519. {
  41520. name: "Normal",
  41521. height: math.unit(6, "feet"),
  41522. default: true
  41523. },
  41524. ]
  41525. ))
  41526. characterMakers.push(() => makeCharacter(
  41527. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41528. {
  41529. front: {
  41530. height: math.unit(19, "feet"),
  41531. name: "Front",
  41532. image: {
  41533. source: "./media/characters/fia-dreamweaver/front.svg",
  41534. extra: 1630/1504,
  41535. bottom: 25/1655
  41536. }
  41537. },
  41538. },
  41539. [
  41540. {
  41541. name: "Normal",
  41542. height: math.unit(19, "feet"),
  41543. default: true
  41544. },
  41545. ]
  41546. ))
  41547. characterMakers.push(() => makeCharacter(
  41548. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41549. {
  41550. front: {
  41551. height: math.unit(5 + 4/12, "feet"),
  41552. name: "Front",
  41553. image: {
  41554. source: "./media/characters/artan/front.svg",
  41555. extra: 1618/1535,
  41556. bottom: 46/1664
  41557. }
  41558. },
  41559. back: {
  41560. height: math.unit(5 + 4/12, "feet"),
  41561. name: "Back",
  41562. image: {
  41563. source: "./media/characters/artan/back.svg",
  41564. extra: 1618/1543,
  41565. bottom: 31/1649
  41566. }
  41567. },
  41568. },
  41569. [
  41570. {
  41571. name: "Normal",
  41572. height: math.unit(5 + 4/12, "feet"),
  41573. default: true
  41574. },
  41575. ]
  41576. ))
  41577. characterMakers.push(() => makeCharacter(
  41578. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41579. {
  41580. side: {
  41581. height: math.unit(182, "cm"),
  41582. weight: math.unit(1000, "lb"),
  41583. name: "Side",
  41584. image: {
  41585. source: "./media/characters/silver-dragon/side.svg",
  41586. extra: 710/287,
  41587. bottom: 88/798
  41588. }
  41589. },
  41590. },
  41591. [
  41592. {
  41593. name: "Normal",
  41594. height: math.unit(182, "cm"),
  41595. default: true
  41596. },
  41597. ]
  41598. ))
  41599. characterMakers.push(() => makeCharacter(
  41600. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41601. {
  41602. side: {
  41603. height: math.unit(6 + 6/12, "feet"),
  41604. weight: math.unit(1.5, "tons"),
  41605. name: "Side",
  41606. image: {
  41607. source: "./media/characters/zephyr/side.svg",
  41608. extra: 1433/586,
  41609. bottom: 109/1542
  41610. }
  41611. },
  41612. },
  41613. [
  41614. {
  41615. name: "Normal",
  41616. height: math.unit(6 + 6/12, "feet"),
  41617. default: true
  41618. },
  41619. ]
  41620. ))
  41621. characterMakers.push(() => makeCharacter(
  41622. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41623. {
  41624. side: {
  41625. height: math.unit(1, "feet"),
  41626. name: "Side",
  41627. image: {
  41628. source: "./media/characters/vixye/side.svg",
  41629. extra: 632/541,
  41630. bottom: 0/632
  41631. }
  41632. },
  41633. },
  41634. [
  41635. {
  41636. name: "Normal",
  41637. height: math.unit(1, "feet"),
  41638. default: true
  41639. },
  41640. {
  41641. name: "True",
  41642. height: math.unit(1e15, "multiverses")
  41643. },
  41644. ]
  41645. ))
  41646. characterMakers.push(() => makeCharacter(
  41647. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41648. {
  41649. front: {
  41650. height: math.unit(8 + 2/12, "feet"),
  41651. weight: math.unit(650, "lb"),
  41652. name: "Front",
  41653. image: {
  41654. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41655. extra: 1174/1137,
  41656. bottom: 82/1256
  41657. }
  41658. },
  41659. back: {
  41660. height: math.unit(8 + 2/12, "feet"),
  41661. weight: math.unit(650, "lb"),
  41662. name: "Back",
  41663. image: {
  41664. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41665. extra: 1204/1157,
  41666. bottom: 46/1250
  41667. }
  41668. },
  41669. },
  41670. [
  41671. {
  41672. name: "Wildform",
  41673. height: math.unit(8 + 2/12, "feet"),
  41674. default: true
  41675. },
  41676. ]
  41677. ))
  41678. characterMakers.push(() => makeCharacter(
  41679. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41680. {
  41681. front: {
  41682. height: math.unit(18, "feet"),
  41683. name: "Front",
  41684. image: {
  41685. source: "./media/characters/cyphin/front.svg",
  41686. extra: 970/886,
  41687. bottom: 42/1012
  41688. }
  41689. },
  41690. back: {
  41691. height: math.unit(18, "feet"),
  41692. name: "Back",
  41693. image: {
  41694. source: "./media/characters/cyphin/back.svg",
  41695. extra: 1009/894,
  41696. bottom: 24/1033
  41697. }
  41698. },
  41699. head: {
  41700. height: math.unit(5.05, "feet"),
  41701. name: "Head",
  41702. image: {
  41703. source: "./media/characters/cyphin/head.svg"
  41704. }
  41705. },
  41706. tailbud: {
  41707. height: math.unit(5, "feet"),
  41708. name: "Tailbud",
  41709. image: {
  41710. source: "./media/characters/cyphin/tailbud.svg"
  41711. }
  41712. },
  41713. },
  41714. [
  41715. ]
  41716. ))
  41717. characterMakers.push(() => makeCharacter(
  41718. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41719. {
  41720. side: {
  41721. height: math.unit(10, "feet"),
  41722. weight: math.unit(6, "tons"),
  41723. name: "Side",
  41724. image: {
  41725. source: "./media/characters/raijin/side.svg",
  41726. extra: 1529/613,
  41727. bottom: 337/1866
  41728. }
  41729. },
  41730. },
  41731. [
  41732. {
  41733. name: "Normal",
  41734. height: math.unit(10, "feet"),
  41735. default: true
  41736. },
  41737. ]
  41738. ))
  41739. characterMakers.push(() => makeCharacter(
  41740. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41741. {
  41742. side: {
  41743. height: math.unit(9, "feet"),
  41744. name: "Side",
  41745. image: {
  41746. source: "./media/characters/nilghais/side.svg",
  41747. extra: 1047/744,
  41748. bottom: 91/1138
  41749. }
  41750. },
  41751. head: {
  41752. height: math.unit(3.14, "feet"),
  41753. name: "Head",
  41754. image: {
  41755. source: "./media/characters/nilghais/head.svg"
  41756. }
  41757. },
  41758. mouth: {
  41759. height: math.unit(4.6, "feet"),
  41760. name: "Mouth",
  41761. image: {
  41762. source: "./media/characters/nilghais/mouth.svg"
  41763. }
  41764. },
  41765. wings: {
  41766. height: math.unit(24, "feet"),
  41767. name: "Wings",
  41768. image: {
  41769. source: "./media/characters/nilghais/wings.svg"
  41770. }
  41771. },
  41772. ass: {
  41773. height: math.unit(6.12, "feet"),
  41774. name: "Ass",
  41775. image: {
  41776. source: "./media/characters/nilghais/ass.svg"
  41777. }
  41778. },
  41779. },
  41780. [
  41781. {
  41782. name: "Normal",
  41783. height: math.unit(9, "feet"),
  41784. default: true
  41785. },
  41786. ]
  41787. ))
  41788. characterMakers.push(() => makeCharacter(
  41789. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41790. {
  41791. regular: {
  41792. height: math.unit(16 + 2/12, "feet"),
  41793. weight: math.unit(2300, "lb"),
  41794. name: "Regular",
  41795. image: {
  41796. source: "./media/characters/zolgar/regular.svg",
  41797. extra: 1246/1004,
  41798. bottom: 124/1370
  41799. }
  41800. },
  41801. boxers: {
  41802. height: math.unit(16 + 2/12, "feet"),
  41803. weight: math.unit(2300, "lb"),
  41804. name: "Boxers",
  41805. image: {
  41806. source: "./media/characters/zolgar/boxers.svg",
  41807. extra: 1246/1004,
  41808. bottom: 124/1370
  41809. }
  41810. },
  41811. armored: {
  41812. height: math.unit(16 + 2/12, "feet"),
  41813. weight: math.unit(2300, "lb"),
  41814. name: "Armored",
  41815. image: {
  41816. source: "./media/characters/zolgar/armored.svg",
  41817. extra: 1246/1004,
  41818. bottom: 124/1370
  41819. }
  41820. },
  41821. goth: {
  41822. height: math.unit(16 + 2/12, "feet"),
  41823. weight: math.unit(2300, "lb"),
  41824. name: "Goth",
  41825. image: {
  41826. source: "./media/characters/zolgar/goth.svg",
  41827. extra: 1246/1004,
  41828. bottom: 124/1370
  41829. }
  41830. },
  41831. },
  41832. [
  41833. {
  41834. name: "Shrunken Down",
  41835. height: math.unit(9 + 2/12, "feet")
  41836. },
  41837. {
  41838. name: "Normal",
  41839. height: math.unit(16 + 2/12, "feet"),
  41840. default: true
  41841. },
  41842. ]
  41843. ))
  41844. characterMakers.push(() => makeCharacter(
  41845. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41846. {
  41847. front: {
  41848. height: math.unit(6, "feet"),
  41849. weight: math.unit(168, "lb"),
  41850. name: "Front",
  41851. image: {
  41852. source: "./media/characters/luca/front.svg",
  41853. extra: 841/667,
  41854. bottom: 102/943
  41855. }
  41856. },
  41857. },
  41858. [
  41859. {
  41860. name: "Normal",
  41861. height: math.unit(6, "feet"),
  41862. default: true
  41863. },
  41864. ]
  41865. ))
  41866. characterMakers.push(() => makeCharacter(
  41867. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41868. {
  41869. side: {
  41870. height: math.unit(7 + 3/12, "feet"),
  41871. weight: math.unit(312, "lb"),
  41872. name: "Side",
  41873. image: {
  41874. source: "./media/characters/zezo/side.svg",
  41875. extra: 1192/1067,
  41876. bottom: 63/1255
  41877. }
  41878. },
  41879. },
  41880. [
  41881. {
  41882. name: "Normal",
  41883. height: math.unit(7 + 3/12, "feet"),
  41884. default: true
  41885. },
  41886. ]
  41887. ))
  41888. characterMakers.push(() => makeCharacter(
  41889. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41890. {
  41891. front: {
  41892. height: math.unit(5 + 5/12, "feet"),
  41893. weight: math.unit(170, "lb"),
  41894. name: "Front",
  41895. image: {
  41896. source: "./media/characters/mayso/front.svg",
  41897. extra: 1215/1108,
  41898. bottom: 16/1231
  41899. }
  41900. },
  41901. },
  41902. [
  41903. {
  41904. name: "Normal",
  41905. height: math.unit(5 + 5/12, "feet"),
  41906. default: true
  41907. },
  41908. ]
  41909. ))
  41910. characterMakers.push(() => makeCharacter(
  41911. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41912. {
  41913. front: {
  41914. height: math.unit(4 + 3/12, "feet"),
  41915. weight: math.unit(80, "lb"),
  41916. name: "Front",
  41917. image: {
  41918. source: "./media/characters/hess/front.svg",
  41919. extra: 1200/1123,
  41920. bottom: 16/1216
  41921. }
  41922. },
  41923. },
  41924. [
  41925. {
  41926. name: "Normal",
  41927. height: math.unit(4 + 3/12, "feet"),
  41928. default: true
  41929. },
  41930. ]
  41931. ))
  41932. characterMakers.push(() => makeCharacter(
  41933. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41934. {
  41935. front: {
  41936. height: math.unit(1.9, "meters"),
  41937. name: "Front",
  41938. image: {
  41939. source: "./media/characters/ashgar/front.svg",
  41940. extra: 1177/1146,
  41941. bottom: 99/1276
  41942. }
  41943. },
  41944. back: {
  41945. height: math.unit(1.9, "meters"),
  41946. name: "Back",
  41947. image: {
  41948. source: "./media/characters/ashgar/back.svg",
  41949. extra: 1201/1183,
  41950. bottom: 53/1254
  41951. }
  41952. },
  41953. feral: {
  41954. height: math.unit(1.4, "meters"),
  41955. name: "Feral",
  41956. image: {
  41957. source: "./media/characters/ashgar/feral.svg",
  41958. extra: 370/345,
  41959. bottom: 45/415
  41960. }
  41961. },
  41962. },
  41963. [
  41964. {
  41965. name: "Normal",
  41966. height: math.unit(1.9, "meters"),
  41967. default: true
  41968. },
  41969. ]
  41970. ))
  41971. characterMakers.push(() => makeCharacter(
  41972. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41973. {
  41974. regular: {
  41975. height: math.unit(6, "feet"),
  41976. weight: math.unit(220, "lb"),
  41977. name: "Regular",
  41978. image: {
  41979. source: "./media/characters/phillip/regular.svg",
  41980. extra: 1373/1277,
  41981. bottom: 75/1448
  41982. }
  41983. },
  41984. dressed: {
  41985. height: math.unit(6, "feet"),
  41986. weight: math.unit(220, "lb"),
  41987. name: "Dressed",
  41988. image: {
  41989. source: "./media/characters/phillip/dressed.svg",
  41990. extra: 1373/1277,
  41991. bottom: 75/1448
  41992. }
  41993. },
  41994. paw: {
  41995. height: math.unit(1.44, "feet"),
  41996. name: "Paw",
  41997. image: {
  41998. source: "./media/characters/phillip/paw.svg"
  41999. }
  42000. },
  42001. },
  42002. [
  42003. {
  42004. name: "Normal",
  42005. height: math.unit(6, "feet"),
  42006. default: true
  42007. },
  42008. ]
  42009. ))
  42010. characterMakers.push(() => makeCharacter(
  42011. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42012. {
  42013. side: {
  42014. height: math.unit(42, "feet"),
  42015. name: "Side",
  42016. image: {
  42017. source: "./media/characters/uvula/side.svg",
  42018. extra: 683/586,
  42019. bottom: 60/743
  42020. }
  42021. },
  42022. front: {
  42023. height: math.unit(42, "feet"),
  42024. name: "Front",
  42025. image: {
  42026. source: "./media/characters/uvula/front.svg",
  42027. extra: 705/613,
  42028. bottom: 54/759
  42029. }
  42030. },
  42031. maw: {
  42032. height: math.unit(23.5, "feet"),
  42033. name: "Maw",
  42034. image: {
  42035. source: "./media/characters/uvula/maw.svg"
  42036. }
  42037. },
  42038. },
  42039. [
  42040. {
  42041. name: "Original Size",
  42042. height: math.unit(14, "inches")
  42043. },
  42044. {
  42045. name: "Human Size",
  42046. height: math.unit(6, "feet")
  42047. },
  42048. {
  42049. name: "Big",
  42050. height: math.unit(42, "feet"),
  42051. default: true
  42052. },
  42053. {
  42054. name: "Bigger",
  42055. height: math.unit(100, "feet")
  42056. },
  42057. ]
  42058. ))
  42059. characterMakers.push(() => makeCharacter(
  42060. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42061. {
  42062. front: {
  42063. height: math.unit(5 + 11/12, "feet"),
  42064. name: "Front",
  42065. image: {
  42066. source: "./media/characters/lannah/front.svg",
  42067. extra: 1208/1113,
  42068. bottom: 97/1305
  42069. }
  42070. },
  42071. },
  42072. [
  42073. {
  42074. name: "Normal",
  42075. height: math.unit(5 + 11/12, "feet"),
  42076. default: true
  42077. },
  42078. ]
  42079. ))
  42080. characterMakers.push(() => makeCharacter(
  42081. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42082. {
  42083. front: {
  42084. height: math.unit(6 + 3/12, "feet"),
  42085. weight: math.unit(3.5, "tons"),
  42086. name: "Front",
  42087. image: {
  42088. source: "./media/characters/emberflame/front.svg",
  42089. extra: 1198/672,
  42090. bottom: 82/1280
  42091. }
  42092. },
  42093. side: {
  42094. height: math.unit(6 + 3/12, "feet"),
  42095. weight: math.unit(3.5, "tons"),
  42096. name: "Side",
  42097. image: {
  42098. source: "./media/characters/emberflame/side.svg",
  42099. extra: 938/527,
  42100. bottom: 56/994
  42101. }
  42102. },
  42103. },
  42104. [
  42105. {
  42106. name: "Normal",
  42107. height: math.unit(6 + 3/12, "feet"),
  42108. default: true
  42109. },
  42110. ]
  42111. ))
  42112. characterMakers.push(() => makeCharacter(
  42113. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42114. {
  42115. side: {
  42116. height: math.unit(17.5, "feet"),
  42117. weight: math.unit(35, "tons"),
  42118. name: "Side",
  42119. image: {
  42120. source: "./media/characters/sophie-ambrose/side.svg",
  42121. extra: 1573/1242,
  42122. bottom: 71/1644
  42123. }
  42124. },
  42125. maw: {
  42126. height: math.unit(7.4, "feet"),
  42127. name: "Maw",
  42128. image: {
  42129. source: "./media/characters/sophie-ambrose/maw.svg"
  42130. }
  42131. },
  42132. },
  42133. [
  42134. {
  42135. name: "Normal",
  42136. height: math.unit(17.5, "feet"),
  42137. default: true
  42138. },
  42139. ]
  42140. ))
  42141. characterMakers.push(() => makeCharacter(
  42142. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42143. {
  42144. front: {
  42145. height: math.unit(280, "feet"),
  42146. weight: math.unit(550, "tons"),
  42147. name: "Front",
  42148. image: {
  42149. source: "./media/characters/king-mugi/front.svg",
  42150. extra: 1102/947,
  42151. bottom: 104/1206
  42152. }
  42153. },
  42154. },
  42155. [
  42156. {
  42157. name: "King Mugi",
  42158. height: math.unit(280, "feet"),
  42159. default: true
  42160. },
  42161. ]
  42162. ))
  42163. characterMakers.push(() => makeCharacter(
  42164. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42165. {
  42166. front: {
  42167. height: math.unit(64, "meters"),
  42168. name: "Front",
  42169. image: {
  42170. source: "./media/characters/nova-fox/front.svg",
  42171. extra: 1310/1246,
  42172. bottom: 65/1375
  42173. }
  42174. },
  42175. },
  42176. [
  42177. {
  42178. name: "Macro",
  42179. height: math.unit(64, "meters"),
  42180. default: true
  42181. },
  42182. ]
  42183. ))
  42184. characterMakers.push(() => makeCharacter(
  42185. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42186. {
  42187. front: {
  42188. height: math.unit(6 + 3/12, "feet"),
  42189. weight: math.unit(170, "lb"),
  42190. name: "Front",
  42191. image: {
  42192. source: "./media/characters/sam-bat/front.svg",
  42193. extra: 1601/1411,
  42194. bottom: 125/1726
  42195. }
  42196. },
  42197. back: {
  42198. height: math.unit(6 + 3/12, "feet"),
  42199. weight: math.unit(170, "lb"),
  42200. name: "Back",
  42201. image: {
  42202. source: "./media/characters/sam-bat/back.svg",
  42203. extra: 1577/1405,
  42204. bottom: 58/1635
  42205. }
  42206. },
  42207. },
  42208. [
  42209. {
  42210. name: "Normal",
  42211. height: math.unit(6 + 3/12, "feet"),
  42212. default: true
  42213. },
  42214. ]
  42215. ))
  42216. characterMakers.push(() => makeCharacter(
  42217. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42218. {
  42219. front: {
  42220. height: math.unit(59, "feet"),
  42221. weight: math.unit(40000, "lb"),
  42222. name: "Front",
  42223. image: {
  42224. source: "./media/characters/inari/front.svg",
  42225. extra: 1884/1350,
  42226. bottom: 95/1979
  42227. }
  42228. },
  42229. },
  42230. [
  42231. {
  42232. name: "Gigantamax",
  42233. height: math.unit(59, "feet"),
  42234. default: true
  42235. },
  42236. ]
  42237. ))
  42238. characterMakers.push(() => makeCharacter(
  42239. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42240. {
  42241. front: {
  42242. height: math.unit(5 + 8/12, "feet"),
  42243. name: "Front",
  42244. image: {
  42245. source: "./media/characters/elizabeth/front.svg",
  42246. extra: 1395/1298,
  42247. bottom: 54/1449
  42248. }
  42249. },
  42250. mouth: {
  42251. height: math.unit(1.97, "feet"),
  42252. name: "Mouth",
  42253. image: {
  42254. source: "./media/characters/elizabeth/mouth.svg"
  42255. }
  42256. },
  42257. foot: {
  42258. height: math.unit(1.17, "feet"),
  42259. name: "Foot",
  42260. image: {
  42261. source: "./media/characters/elizabeth/foot.svg"
  42262. }
  42263. },
  42264. },
  42265. [
  42266. {
  42267. name: "Normal",
  42268. height: math.unit(5 + 8/12, "feet"),
  42269. default: true
  42270. },
  42271. {
  42272. name: "Minimacro",
  42273. height: math.unit(18, "feet")
  42274. },
  42275. {
  42276. name: "Macro",
  42277. height: math.unit(180, "feet")
  42278. },
  42279. ]
  42280. ))
  42281. characterMakers.push(() => makeCharacter(
  42282. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42283. {
  42284. front: {
  42285. height: math.unit(5 + 2/12, "feet"),
  42286. name: "Front",
  42287. image: {
  42288. source: "./media/characters/october-gossamer/front.svg",
  42289. extra: 505/454,
  42290. bottom: 7/512
  42291. }
  42292. },
  42293. back: {
  42294. height: math.unit(5 + 2/12, "feet"),
  42295. name: "Back",
  42296. image: {
  42297. source: "./media/characters/october-gossamer/back.svg",
  42298. extra: 501/454,
  42299. bottom: 11/512
  42300. }
  42301. },
  42302. },
  42303. [
  42304. {
  42305. name: "Normal",
  42306. height: math.unit(5 + 2/12, "feet"),
  42307. default: true
  42308. },
  42309. ]
  42310. ))
  42311. characterMakers.push(() => makeCharacter(
  42312. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42313. {
  42314. front: {
  42315. height: math.unit(5, "feet"),
  42316. name: "Front",
  42317. image: {
  42318. source: "./media/characters/epiglottis/front.svg",
  42319. extra: 923/849,
  42320. bottom: 17/940
  42321. }
  42322. },
  42323. },
  42324. [
  42325. {
  42326. name: "Original Size",
  42327. height: math.unit(10, "inches")
  42328. },
  42329. {
  42330. name: "Human Size",
  42331. height: math.unit(5, "feet"),
  42332. default: true
  42333. },
  42334. {
  42335. name: "Big",
  42336. height: math.unit(25, "feet")
  42337. },
  42338. {
  42339. name: "Bigger",
  42340. height: math.unit(50, "feet")
  42341. },
  42342. {
  42343. name: "oh lawd",
  42344. height: math.unit(75, "feet")
  42345. },
  42346. ]
  42347. ))
  42348. characterMakers.push(() => makeCharacter(
  42349. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42350. {
  42351. front: {
  42352. height: math.unit(2 + 4/12, "feet"),
  42353. weight: math.unit(60, "lb"),
  42354. name: "Front",
  42355. image: {
  42356. source: "./media/characters/lerm/front.svg",
  42357. extra: 796/790,
  42358. bottom: 79/875
  42359. }
  42360. },
  42361. },
  42362. [
  42363. {
  42364. name: "Normal",
  42365. height: math.unit(2 + 4/12, "feet"),
  42366. default: true
  42367. },
  42368. ]
  42369. ))
  42370. characterMakers.push(() => makeCharacter(
  42371. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42372. {
  42373. front: {
  42374. height: math.unit(5.5, "feet"),
  42375. weight: math.unit(130, "lb"),
  42376. name: "Front",
  42377. image: {
  42378. source: "./media/characters/xena-nebadon/front.svg",
  42379. extra: 1828/1730,
  42380. bottom: 79/1907
  42381. }
  42382. },
  42383. },
  42384. [
  42385. {
  42386. name: "Tiny Puppy",
  42387. height: math.unit(3, "inches")
  42388. },
  42389. {
  42390. name: "Normal",
  42391. height: math.unit(5.5, "feet"),
  42392. default: true
  42393. },
  42394. {
  42395. name: "Lotta Lady",
  42396. height: math.unit(12, "feet")
  42397. },
  42398. {
  42399. name: "Pretty Big",
  42400. height: math.unit(100, "feet")
  42401. },
  42402. {
  42403. name: "Big",
  42404. height: math.unit(500, "feet")
  42405. },
  42406. {
  42407. name: "Skyscraper Toys",
  42408. height: math.unit(2500, "feet")
  42409. },
  42410. {
  42411. name: "Plane Catcher",
  42412. height: math.unit(8, "miles")
  42413. },
  42414. {
  42415. name: "Planet Toys",
  42416. height: math.unit(15, "earths")
  42417. },
  42418. {
  42419. name: "Stardust",
  42420. height: math.unit(0.25, "galaxies")
  42421. },
  42422. {
  42423. name: "Snacks",
  42424. height: math.unit(70, "universes")
  42425. },
  42426. ]
  42427. ))
  42428. characterMakers.push(() => makeCharacter(
  42429. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42430. {
  42431. front: {
  42432. height: math.unit(1.6, "meters"),
  42433. weight: math.unit(60, "kg"),
  42434. name: "Front",
  42435. image: {
  42436. source: "./media/characters/bounty/front.svg",
  42437. extra: 1426/1308,
  42438. bottom: 15/1441
  42439. }
  42440. },
  42441. back: {
  42442. height: math.unit(1.6, "meters"),
  42443. weight: math.unit(60, "kg"),
  42444. name: "Back",
  42445. image: {
  42446. source: "./media/characters/bounty/back.svg",
  42447. extra: 1417/1307,
  42448. bottom: 8/1425
  42449. }
  42450. },
  42451. },
  42452. [
  42453. {
  42454. name: "Normal",
  42455. height: math.unit(1.6, "meters"),
  42456. default: true
  42457. },
  42458. {
  42459. name: "Macro",
  42460. height: math.unit(300, "meters")
  42461. },
  42462. ]
  42463. ))
  42464. characterMakers.push(() => makeCharacter(
  42465. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42466. {
  42467. front: {
  42468. height: math.unit(2 + 8/12, "feet"),
  42469. weight: math.unit(15, "lb"),
  42470. name: "Front",
  42471. image: {
  42472. source: "./media/characters/mochi/front.svg",
  42473. extra: 1022/852,
  42474. bottom: 435/1457
  42475. }
  42476. },
  42477. back: {
  42478. height: math.unit(2 + 8/12, "feet"),
  42479. weight: math.unit(15, "lb"),
  42480. name: "Back",
  42481. image: {
  42482. source: "./media/characters/mochi/back.svg",
  42483. extra: 1335/1119,
  42484. bottom: 39/1374
  42485. }
  42486. },
  42487. bird: {
  42488. height: math.unit(2 + 8/12, "feet"),
  42489. weight: math.unit(15, "lb"),
  42490. name: "Bird",
  42491. image: {
  42492. source: "./media/characters/mochi/bird.svg",
  42493. extra: 1251/1113,
  42494. bottom: 178/1429
  42495. }
  42496. },
  42497. kaiju: {
  42498. height: math.unit(154, "feet"),
  42499. weight: math.unit(1e7, "lb"),
  42500. name: "Kaiju",
  42501. image: {
  42502. source: "./media/characters/mochi/kaiju.svg",
  42503. extra: 460/324,
  42504. bottom: 40/500
  42505. }
  42506. },
  42507. head: {
  42508. height: math.unit(1.21, "feet"),
  42509. name: "Head",
  42510. image: {
  42511. source: "./media/characters/mochi/head.svg"
  42512. }
  42513. },
  42514. alternateTail: {
  42515. height: math.unit(2 + 8/12, "feet"),
  42516. weight: math.unit(45, "lb"),
  42517. name: "Alternate Tail",
  42518. image: {
  42519. source: "./media/characters/mochi/alternate-tail.svg",
  42520. extra: 139/76,
  42521. bottom: 45/184
  42522. }
  42523. },
  42524. },
  42525. [
  42526. {
  42527. name: "Micro",
  42528. height: math.unit(2, "inches")
  42529. },
  42530. {
  42531. name: "Normal",
  42532. height: math.unit(2 + 8/12, "feet"),
  42533. default: true
  42534. },
  42535. {
  42536. name: "Macro",
  42537. height: math.unit(106, "feet")
  42538. },
  42539. ]
  42540. ))
  42541. characterMakers.push(() => makeCharacter(
  42542. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42543. {
  42544. front: {
  42545. height: math.unit(5.67, "feet"),
  42546. weight: math.unit(135, "lb"),
  42547. name: "Front",
  42548. image: {
  42549. source: "./media/characters/sarel/front.svg",
  42550. extra: 865/788,
  42551. bottom: 97/962
  42552. }
  42553. },
  42554. back: {
  42555. height: math.unit(5.67, "feet"),
  42556. weight: math.unit(135, "lb"),
  42557. name: "Back",
  42558. image: {
  42559. source: "./media/characters/sarel/back.svg",
  42560. extra: 857/777,
  42561. bottom: 32/889
  42562. }
  42563. },
  42564. chozoan: {
  42565. height: math.unit(5.67, "feet"),
  42566. weight: math.unit(135, "lb"),
  42567. name: "Chozoan",
  42568. image: {
  42569. source: "./media/characters/sarel/chozoan.svg",
  42570. extra: 865/788,
  42571. bottom: 97/962
  42572. }
  42573. },
  42574. current: {
  42575. height: math.unit(5.67, "feet"),
  42576. weight: math.unit(135, "lb"),
  42577. name: "Current",
  42578. image: {
  42579. source: "./media/characters/sarel/current.svg",
  42580. extra: 865/788,
  42581. bottom: 97/962
  42582. }
  42583. },
  42584. head: {
  42585. height: math.unit(1.77, "feet"),
  42586. name: "Head",
  42587. image: {
  42588. source: "./media/characters/sarel/head.svg"
  42589. }
  42590. },
  42591. claws: {
  42592. height: math.unit(1.8, "feet"),
  42593. name: "Claws",
  42594. image: {
  42595. source: "./media/characters/sarel/claws.svg"
  42596. }
  42597. },
  42598. clawsAlt: {
  42599. height: math.unit(1.8, "feet"),
  42600. name: "Claws-alt",
  42601. image: {
  42602. source: "./media/characters/sarel/claws-alt.svg"
  42603. }
  42604. },
  42605. },
  42606. [
  42607. {
  42608. name: "Normal",
  42609. height: math.unit(5.67, "feet"),
  42610. default: true
  42611. },
  42612. ]
  42613. ))
  42614. characterMakers.push(() => makeCharacter(
  42615. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42616. {
  42617. front: {
  42618. height: math.unit(5500, "feet"),
  42619. name: "Front",
  42620. image: {
  42621. source: "./media/characters/alyonia/front.svg",
  42622. extra: 1200/1135,
  42623. bottom: 29/1229
  42624. }
  42625. },
  42626. back: {
  42627. height: math.unit(5500, "feet"),
  42628. name: "Back",
  42629. image: {
  42630. source: "./media/characters/alyonia/back.svg",
  42631. extra: 1205/1138,
  42632. bottom: 10/1215
  42633. }
  42634. },
  42635. },
  42636. [
  42637. {
  42638. name: "Small",
  42639. height: math.unit(10, "feet")
  42640. },
  42641. {
  42642. name: "Macro",
  42643. height: math.unit(500, "feet")
  42644. },
  42645. {
  42646. name: "Mega Macro",
  42647. height: math.unit(5500, "feet"),
  42648. default: true
  42649. },
  42650. {
  42651. name: "Mega Macro+",
  42652. height: math.unit(500000, "feet")
  42653. },
  42654. {
  42655. name: "Giga Macro",
  42656. height: math.unit(3000, "miles")
  42657. },
  42658. {
  42659. name: "Tera Macro",
  42660. height: math.unit(2.8e6, "miles")
  42661. },
  42662. {
  42663. name: "Galactic",
  42664. height: math.unit(120000, "lightyears")
  42665. },
  42666. ]
  42667. ))
  42668. characterMakers.push(() => makeCharacter(
  42669. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42670. {
  42671. werewolf: {
  42672. height: math.unit(8, "feet"),
  42673. weight: math.unit(425, "lb"),
  42674. name: "Werewolf",
  42675. image: {
  42676. source: "./media/characters/autumn/werewolf.svg",
  42677. extra: 2154/2031,
  42678. bottom: 160/2314
  42679. }
  42680. },
  42681. human: {
  42682. height: math.unit(5 + 8/12, "feet"),
  42683. weight: math.unit(150, "lb"),
  42684. name: "Human",
  42685. image: {
  42686. source: "./media/characters/autumn/human.svg",
  42687. extra: 1200/1149,
  42688. bottom: 30/1230
  42689. }
  42690. },
  42691. },
  42692. [
  42693. {
  42694. name: "Normal",
  42695. height: math.unit(8, "feet"),
  42696. default: true
  42697. },
  42698. ]
  42699. ))
  42700. characterMakers.push(() => makeCharacter(
  42701. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42702. {
  42703. front: {
  42704. height: math.unit(8 + 5/12, "feet"),
  42705. weight: math.unit(825, "lb"),
  42706. name: "Front",
  42707. image: {
  42708. source: "./media/characters/cobalt-charizard/front.svg",
  42709. extra: 1268/1155,
  42710. bottom: 122/1390
  42711. }
  42712. },
  42713. side: {
  42714. height: math.unit(8 + 5/12, "feet"),
  42715. weight: math.unit(825, "lb"),
  42716. name: "Side",
  42717. image: {
  42718. source: "./media/characters/cobalt-charizard/side.svg",
  42719. extra: 1348/1257,
  42720. bottom: 58/1406
  42721. }
  42722. },
  42723. gMax: {
  42724. height: math.unit(134 + 11/12, "feet"),
  42725. name: "G-Max",
  42726. image: {
  42727. source: "./media/characters/cobalt-charizard/g-max.svg",
  42728. extra: 1835/1541,
  42729. bottom: 151/1986
  42730. }
  42731. },
  42732. },
  42733. [
  42734. {
  42735. name: "Normal",
  42736. height: math.unit(8 + 5/12, "feet"),
  42737. default: true
  42738. },
  42739. ]
  42740. ))
  42741. characterMakers.push(() => makeCharacter(
  42742. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42743. {
  42744. front: {
  42745. height: math.unit(6 + 3/12, "feet"),
  42746. weight: math.unit(210, "lb"),
  42747. name: "Front",
  42748. image: {
  42749. source: "./media/characters/stella/front.svg",
  42750. extra: 3549/3335,
  42751. bottom: 51/3600
  42752. }
  42753. },
  42754. },
  42755. [
  42756. {
  42757. name: "Normal",
  42758. height: math.unit(6 + 3/12, "feet"),
  42759. default: true
  42760. },
  42761. ]
  42762. ))
  42763. characterMakers.push(() => makeCharacter(
  42764. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42765. {
  42766. front: {
  42767. height: math.unit(5, "feet"),
  42768. weight: math.unit(90, "lb"),
  42769. name: "Front",
  42770. image: {
  42771. source: "./media/characters/riley-bishop/front.svg",
  42772. extra: 1450/1428,
  42773. bottom: 152/1602
  42774. }
  42775. },
  42776. },
  42777. [
  42778. {
  42779. name: "Normal",
  42780. height: math.unit(5, "feet"),
  42781. default: true
  42782. },
  42783. ]
  42784. ))
  42785. characterMakers.push(() => makeCharacter(
  42786. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42787. {
  42788. side: {
  42789. height: math.unit(8 + 2/12, "feet"),
  42790. weight: math.unit(500, "kg"),
  42791. name: "Side",
  42792. image: {
  42793. source: "./media/characters/theo-arcanine/side.svg",
  42794. extra: 1342/1074,
  42795. bottom: 111/1453
  42796. }
  42797. },
  42798. },
  42799. [
  42800. {
  42801. name: "Normal",
  42802. height: math.unit(8 + 2/12, "feet"),
  42803. default: true
  42804. },
  42805. ]
  42806. ))
  42807. characterMakers.push(() => makeCharacter(
  42808. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42809. {
  42810. front: {
  42811. height: math.unit(4, "feet"),
  42812. name: "Front",
  42813. image: {
  42814. source: "./media/characters/kali/front.svg",
  42815. extra: 1921/1357,
  42816. bottom: 70/1991
  42817. }
  42818. },
  42819. },
  42820. [
  42821. {
  42822. name: "Normal",
  42823. height: math.unit(4, "feet"),
  42824. default: true
  42825. },
  42826. {
  42827. name: "Macro",
  42828. height: math.unit(32, "meters")
  42829. },
  42830. {
  42831. name: "Macro+",
  42832. height: math.unit(150, "meters")
  42833. },
  42834. {
  42835. name: "Megamacro",
  42836. height: math.unit(7500, "meters")
  42837. },
  42838. {
  42839. name: "Megamacro+",
  42840. height: math.unit(80, "kilometers")
  42841. },
  42842. ]
  42843. ))
  42844. characterMakers.push(() => makeCharacter(
  42845. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42846. {
  42847. side: {
  42848. height: math.unit(5 + 11/12, "feet"),
  42849. weight: math.unit(236, "lb"),
  42850. name: "Side",
  42851. image: {
  42852. source: "./media/characters/gapp/side.svg",
  42853. extra: 775/340,
  42854. bottom: 58/833
  42855. }
  42856. },
  42857. mouth: {
  42858. height: math.unit(2.98, "feet"),
  42859. name: "Mouth",
  42860. image: {
  42861. source: "./media/characters/gapp/mouth.svg"
  42862. }
  42863. },
  42864. },
  42865. [
  42866. {
  42867. name: "Normal",
  42868. height: math.unit(5 + 1/12, "feet"),
  42869. default: true
  42870. },
  42871. ]
  42872. ))
  42873. characterMakers.push(() => makeCharacter(
  42874. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42875. {
  42876. front: {
  42877. height: math.unit(6, "feet"),
  42878. name: "Front",
  42879. image: {
  42880. source: "./media/characters/persephone/front.svg",
  42881. extra: 1895/1717,
  42882. bottom: 96/1991
  42883. }
  42884. },
  42885. back: {
  42886. height: math.unit(6, "feet"),
  42887. name: "Back",
  42888. image: {
  42889. source: "./media/characters/persephone/back.svg",
  42890. extra: 1868/1679,
  42891. bottom: 26/1894
  42892. }
  42893. },
  42894. casual: {
  42895. height: math.unit(6, "feet"),
  42896. name: "Casual",
  42897. image: {
  42898. source: "./media/characters/persephone/casual.svg",
  42899. extra: 1713/1541,
  42900. bottom: 76/1789
  42901. }
  42902. },
  42903. },
  42904. [
  42905. {
  42906. name: "Human Size",
  42907. height: math.unit(6, "feet")
  42908. },
  42909. {
  42910. name: "Big Steppy",
  42911. height: math.unit(600, "meters"),
  42912. default: true
  42913. },
  42914. {
  42915. name: "Galaxy Brain",
  42916. height: math.unit(1, "zettameter")
  42917. },
  42918. ]
  42919. ))
  42920. characterMakers.push(() => makeCharacter(
  42921. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42922. {
  42923. front: {
  42924. height: math.unit(1.85, "meters"),
  42925. name: "Front",
  42926. image: {
  42927. source: "./media/characters/riley-foxthing/front.svg",
  42928. extra: 1495/1354,
  42929. bottom: 122/1617
  42930. }
  42931. },
  42932. frontAlt: {
  42933. height: math.unit(1.85, "meters"),
  42934. name: "Front (Alt)",
  42935. image: {
  42936. source: "./media/characters/riley-foxthing/front-alt.svg",
  42937. extra: 1572/1389,
  42938. bottom: 116/1688
  42939. }
  42940. },
  42941. },
  42942. [
  42943. {
  42944. name: "Normal Sized",
  42945. height: math.unit(1.85, "meters"),
  42946. default: true
  42947. },
  42948. {
  42949. name: "Quite Sizable",
  42950. height: math.unit(5, "meters")
  42951. },
  42952. {
  42953. name: "Rather Large",
  42954. height: math.unit(20, "meters")
  42955. },
  42956. {
  42957. name: "Macro",
  42958. height: math.unit(450, "meters")
  42959. },
  42960. {
  42961. name: "Giga",
  42962. height: math.unit(5, "km")
  42963. },
  42964. ]
  42965. ))
  42966. characterMakers.push(() => makeCharacter(
  42967. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42968. {
  42969. front: {
  42970. height: math.unit(6, "feet"),
  42971. weight: math.unit(200, "lb"),
  42972. name: "Front",
  42973. image: {
  42974. source: "./media/characters/blizzard/front.svg",
  42975. extra: 1136/990,
  42976. bottom: 136/1272
  42977. }
  42978. },
  42979. back: {
  42980. height: math.unit(6, "feet"),
  42981. weight: math.unit(200, "lb"),
  42982. name: "Back",
  42983. image: {
  42984. source: "./media/characters/blizzard/back.svg",
  42985. extra: 1175/1034,
  42986. bottom: 97/1272
  42987. }
  42988. },
  42989. sitting: {
  42990. height: math.unit(3.725, "feet"),
  42991. weight: math.unit(200, "lb"),
  42992. name: "Sitting",
  42993. image: {
  42994. source: "./media/characters/blizzard/sitting.svg",
  42995. extra: 581/485,
  42996. bottom: 90/671
  42997. }
  42998. },
  42999. frontWizard: {
  43000. height: math.unit(7.9, "feet"),
  43001. weight: math.unit(200, "lb"),
  43002. name: "Front (Wizard)",
  43003. image: {
  43004. source: "./media/characters/blizzard/front-wizard.svg"
  43005. }
  43006. },
  43007. backWizard: {
  43008. height: math.unit(7.9, "feet"),
  43009. weight: math.unit(200, "lb"),
  43010. name: "Back (Wizard)",
  43011. image: {
  43012. source: "./media/characters/blizzard/back-wizard.svg"
  43013. }
  43014. },
  43015. frontNsfw: {
  43016. height: math.unit(6, "feet"),
  43017. weight: math.unit(200, "lb"),
  43018. name: "Front (NSFW)",
  43019. image: {
  43020. source: "./media/characters/blizzard/front-nsfw.svg",
  43021. extra: 1136/990,
  43022. bottom: 136/1272
  43023. }
  43024. },
  43025. backNsfw: {
  43026. height: math.unit(6, "feet"),
  43027. weight: math.unit(200, "lb"),
  43028. name: "Back (NSFW)",
  43029. image: {
  43030. source: "./media/characters/blizzard/back-nsfw.svg",
  43031. extra: 1175/1034,
  43032. bottom: 97/1272
  43033. }
  43034. },
  43035. sittingNsfw: {
  43036. height: math.unit(3.725, "feet"),
  43037. weight: math.unit(200, "lb"),
  43038. name: "Sitting (NSFW)",
  43039. image: {
  43040. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43041. extra: 581/485,
  43042. bottom: 90/671
  43043. }
  43044. },
  43045. wizardFrontNsfw: {
  43046. height: math.unit(7.9, "feet"),
  43047. weight: math.unit(200, "lb"),
  43048. name: "Wizard (Front, NSFW)",
  43049. image: {
  43050. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43051. }
  43052. },
  43053. },
  43054. [
  43055. {
  43056. name: "Normal",
  43057. height: math.unit(6, "feet"),
  43058. default: true
  43059. },
  43060. ]
  43061. ))
  43062. characterMakers.push(() => makeCharacter(
  43063. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43064. {
  43065. front: {
  43066. height: math.unit(5 + 2/12, "feet"),
  43067. name: "Front",
  43068. image: {
  43069. source: "./media/characters/lumi/front.svg",
  43070. extra: 1328/1268,
  43071. bottom: 103/1431
  43072. }
  43073. },
  43074. back: {
  43075. height: math.unit(5 + 2/12, "feet"),
  43076. name: "Back",
  43077. image: {
  43078. source: "./media/characters/lumi/back.svg",
  43079. extra: 1381/1327,
  43080. bottom: 43/1424
  43081. }
  43082. },
  43083. },
  43084. [
  43085. {
  43086. name: "Normal",
  43087. height: math.unit(5 + 2/12, "feet"),
  43088. default: true
  43089. },
  43090. ]
  43091. ))
  43092. characterMakers.push(() => makeCharacter(
  43093. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43094. {
  43095. front: {
  43096. height: math.unit(5 + 9/12, "feet"),
  43097. name: "Front",
  43098. image: {
  43099. source: "./media/characters/aliya-cotton/front.svg",
  43100. extra: 577/564,
  43101. bottom: 29/606
  43102. }
  43103. },
  43104. },
  43105. [
  43106. {
  43107. name: "Normal",
  43108. height: math.unit(5 + 9/12, "feet"),
  43109. default: true
  43110. },
  43111. ]
  43112. ))
  43113. characterMakers.push(() => makeCharacter(
  43114. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43115. {
  43116. front: {
  43117. height: math.unit(2.7, "meters"),
  43118. weight: math.unit(25000, "lb"),
  43119. name: "Front",
  43120. image: {
  43121. source: "./media/characters/noah-luxray/front.svg",
  43122. extra: 1644/825,
  43123. bottom: 339/1983
  43124. }
  43125. },
  43126. side: {
  43127. height: math.unit(2.97, "meters"),
  43128. weight: math.unit(25000, "lb"),
  43129. name: "Side",
  43130. image: {
  43131. source: "./media/characters/noah-luxray/side.svg",
  43132. extra: 1319/650,
  43133. bottom: 163/1482
  43134. }
  43135. },
  43136. dick: {
  43137. height: math.unit(7.4, "feet"),
  43138. weight: math.unit(2500, "lb"),
  43139. name: "Dick",
  43140. image: {
  43141. source: "./media/characters/noah-luxray/dick.svg"
  43142. }
  43143. },
  43144. dickAlt: {
  43145. height: math.unit(10.83, "feet"),
  43146. weight: math.unit(2500, "lb"),
  43147. name: "Dick-alt",
  43148. image: {
  43149. source: "./media/characters/noah-luxray/dick-alt.svg"
  43150. }
  43151. },
  43152. },
  43153. [
  43154. {
  43155. name: "BIG",
  43156. height: math.unit(2.7, "meters"),
  43157. default: true
  43158. },
  43159. ]
  43160. ))
  43161. characterMakers.push(() => makeCharacter(
  43162. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43163. {
  43164. standing: {
  43165. height: math.unit(183, "cm"),
  43166. weight: math.unit(68, "kg"),
  43167. name: "Standing",
  43168. image: {
  43169. source: "./media/characters/arion/standing.svg",
  43170. extra: 1869/1807,
  43171. bottom: 93/1962
  43172. }
  43173. },
  43174. reclining: {
  43175. height: math.unit(70.5, "cm"),
  43176. weight: math.unit(68, "lb"),
  43177. name: "Reclining",
  43178. image: {
  43179. source: "./media/characters/arion/reclining.svg",
  43180. extra: 937/870,
  43181. bottom: 63/1000
  43182. }
  43183. },
  43184. },
  43185. [
  43186. {
  43187. name: "Colossus Size, Low",
  43188. height: math.unit(33, "meters"),
  43189. default: true
  43190. },
  43191. {
  43192. name: "Colossus Size, Mid",
  43193. height: math.unit(52, "meters")
  43194. },
  43195. {
  43196. name: "Colossus Size, High",
  43197. height: math.unit(60, "meters")
  43198. },
  43199. {
  43200. name: "Titan Size, Low",
  43201. height: math.unit(91, "meters"),
  43202. },
  43203. {
  43204. name: "Titan Size, Mid",
  43205. height: math.unit(122, "meters")
  43206. },
  43207. {
  43208. name: "Titan Size, High",
  43209. height: math.unit(162, "meters")
  43210. },
  43211. ]
  43212. ))
  43213. characterMakers.push(() => makeCharacter(
  43214. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43215. {
  43216. front: {
  43217. height: math.unit(53, "meters"),
  43218. name: "Front",
  43219. image: {
  43220. source: "./media/characters/stellar-marbey/front.svg",
  43221. extra: 1913/1805,
  43222. bottom: 92/2005
  43223. }
  43224. },
  43225. back: {
  43226. height: math.unit(53, "meters"),
  43227. name: "Back",
  43228. image: {
  43229. source: "./media/characters/stellar-marbey/back.svg",
  43230. extra: 1960/1851,
  43231. bottom: 28/1988
  43232. }
  43233. },
  43234. mouth: {
  43235. height: math.unit(3.5, "meters"),
  43236. name: "Mouth",
  43237. image: {
  43238. source: "./media/characters/stellar-marbey/mouth.svg"
  43239. }
  43240. },
  43241. },
  43242. [
  43243. {
  43244. name: "Macro",
  43245. height: math.unit(53, "meters"),
  43246. default: true
  43247. },
  43248. ]
  43249. ))
  43250. characterMakers.push(() => makeCharacter(
  43251. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43252. {
  43253. front: {
  43254. height: math.unit(8 + 1/12, "feet"),
  43255. weight: math.unit(233, "lb"),
  43256. name: "Front",
  43257. image: {
  43258. source: "./media/characters/matsu/front.svg",
  43259. extra: 832/772,
  43260. bottom: 40/872
  43261. }
  43262. },
  43263. back: {
  43264. height: math.unit(8 + 1/12, "feet"),
  43265. weight: math.unit(233, "lb"),
  43266. name: "Back",
  43267. image: {
  43268. source: "./media/characters/matsu/back.svg",
  43269. extra: 839/780,
  43270. bottom: 47/886
  43271. }
  43272. },
  43273. },
  43274. [
  43275. {
  43276. name: "Normal",
  43277. height: math.unit(8 + 1/12, "feet"),
  43278. default: true
  43279. },
  43280. ]
  43281. ))
  43282. characterMakers.push(() => makeCharacter(
  43283. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43284. {
  43285. front: {
  43286. height: math.unit(4, "feet"),
  43287. weight: math.unit(148, "lb"),
  43288. name: "Front",
  43289. image: {
  43290. source: "./media/characters/thiz/front.svg",
  43291. extra: 1913/1748,
  43292. bottom: 62/1975
  43293. }
  43294. },
  43295. },
  43296. [
  43297. {
  43298. name: "Normal",
  43299. height: math.unit(4, "feet"),
  43300. default: true
  43301. },
  43302. ]
  43303. ))
  43304. characterMakers.push(() => makeCharacter(
  43305. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43306. {
  43307. front: {
  43308. height: math.unit(7 + 6/12, "feet"),
  43309. weight: math.unit(267, "lb"),
  43310. name: "Front",
  43311. image: {
  43312. source: "./media/characters/marcel/front.svg",
  43313. extra: 1221/1096,
  43314. bottom: 76/1297
  43315. }
  43316. },
  43317. },
  43318. [
  43319. {
  43320. name: "Normal",
  43321. height: math.unit(7 + 6/12, "feet"),
  43322. default: true
  43323. },
  43324. ]
  43325. ))
  43326. characterMakers.push(() => makeCharacter(
  43327. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43328. {
  43329. side: {
  43330. height: math.unit(42, "meters"),
  43331. name: "Side",
  43332. image: {
  43333. source: "./media/characters/flake/side.svg",
  43334. extra: 1525/1306,
  43335. bottom: 209/1734
  43336. }
  43337. },
  43338. },
  43339. [
  43340. {
  43341. name: "Normal",
  43342. height: math.unit(42, "meters"),
  43343. default: true
  43344. },
  43345. ]
  43346. ))
  43347. characterMakers.push(() => makeCharacter(
  43348. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43349. {
  43350. dressed: {
  43351. height: math.unit(6 + 4/12, "feet"),
  43352. weight: math.unit(520, "lb"),
  43353. name: "Dressed",
  43354. image: {
  43355. source: "./media/characters/someonne/dressed.svg",
  43356. extra: 1020/1010,
  43357. bottom: 178/1198
  43358. }
  43359. },
  43360. undressed: {
  43361. height: math.unit(6 + 4/12, "feet"),
  43362. weight: math.unit(520, "lb"),
  43363. name: "Undressed",
  43364. image: {
  43365. source: "./media/characters/someonne/undressed.svg",
  43366. extra: 1019/1014,
  43367. bottom: 169/1188
  43368. }
  43369. },
  43370. },
  43371. [
  43372. {
  43373. name: "Normal",
  43374. height: math.unit(6 + 4/12, "feet"),
  43375. default: true
  43376. },
  43377. ]
  43378. ))
  43379. characterMakers.push(() => makeCharacter(
  43380. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43381. {
  43382. front: {
  43383. height: math.unit(3, "feet"),
  43384. weight: math.unit(30, "lb"),
  43385. name: "Front",
  43386. image: {
  43387. source: "./media/characters/till/front.svg",
  43388. extra: 892/823,
  43389. bottom: 55/947
  43390. }
  43391. },
  43392. },
  43393. [
  43394. {
  43395. name: "Normal",
  43396. height: math.unit(3, "feet"),
  43397. default: true
  43398. },
  43399. ]
  43400. ))
  43401. characterMakers.push(() => makeCharacter(
  43402. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43403. {
  43404. front: {
  43405. height: math.unit(9 + 8/12, "feet"),
  43406. weight: math.unit(800, "lb"),
  43407. name: "Front",
  43408. image: {
  43409. source: "./media/characters/sydney-heki/front.svg",
  43410. extra: 1360/1300,
  43411. bottom: 22/1382
  43412. }
  43413. },
  43414. back: {
  43415. height: math.unit(9 + 8/12, "feet"),
  43416. weight: math.unit(800, "lb"),
  43417. name: "Back",
  43418. image: {
  43419. source: "./media/characters/sydney-heki/back.svg",
  43420. extra: 1356/1293,
  43421. bottom: 12/1368
  43422. }
  43423. },
  43424. frontDressed: {
  43425. height: math.unit(9 + 8/12, "feet"),
  43426. weight: math.unit(800, "lb"),
  43427. name: "Front-dressed",
  43428. image: {
  43429. source: "./media/characters/sydney-heki/front-dressed.svg",
  43430. extra: 1360/1300,
  43431. bottom: 22/1382
  43432. }
  43433. },
  43434. },
  43435. [
  43436. {
  43437. name: "Normal",
  43438. height: math.unit(9 + 8/12, "feet"),
  43439. default: true
  43440. },
  43441. {
  43442. name: "Macro",
  43443. height: math.unit(500, "feet")
  43444. },
  43445. {
  43446. name: "Megamacro",
  43447. height: math.unit(3.6, "miles")
  43448. },
  43449. ]
  43450. ))
  43451. characterMakers.push(() => makeCharacter(
  43452. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43453. {
  43454. front: {
  43455. height: math.unit(200, "cm"),
  43456. weight: math.unit(250, "lb"),
  43457. name: "Front",
  43458. image: {
  43459. source: "./media/characters/fowler-karlsson/front.svg",
  43460. extra: 897/845,
  43461. bottom: 123/1020
  43462. }
  43463. },
  43464. back: {
  43465. height: math.unit(200, "cm"),
  43466. weight: math.unit(250, "lb"),
  43467. name: "Back",
  43468. image: {
  43469. source: "./media/characters/fowler-karlsson/back.svg",
  43470. extra: 999/944,
  43471. bottom: 26/1025
  43472. }
  43473. },
  43474. dick: {
  43475. height: math.unit(1.92, "feet"),
  43476. weight: math.unit(150, "lb"),
  43477. name: "Dick",
  43478. image: {
  43479. source: "./media/characters/fowler-karlsson/dick.svg"
  43480. }
  43481. },
  43482. },
  43483. [
  43484. {
  43485. name: "Normal",
  43486. height: math.unit(200, "cm"),
  43487. default: true
  43488. },
  43489. {
  43490. name: "Smaller Macro",
  43491. height: math.unit(90, "m")
  43492. },
  43493. {
  43494. name: "Macro",
  43495. height: math.unit(150, "m")
  43496. },
  43497. {
  43498. name: "Bigger Macro",
  43499. height: math.unit(300, "m")
  43500. },
  43501. ]
  43502. ))
  43503. characterMakers.push(() => makeCharacter(
  43504. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43505. {
  43506. side: {
  43507. height: math.unit(8 + 2/12, "feet"),
  43508. weight: math.unit(1, "tonne"),
  43509. name: "Side",
  43510. image: {
  43511. source: "./media/characters/rylide/side.svg",
  43512. extra: 1318/1034,
  43513. bottom: 106/1424
  43514. }
  43515. },
  43516. sitting: {
  43517. height: math.unit(303, "cm"),
  43518. weight: math.unit(1, "tonne"),
  43519. name: "Sitting",
  43520. image: {
  43521. source: "./media/characters/rylide/sitting.svg",
  43522. extra: 1303/1103,
  43523. bottom: 36/1339
  43524. }
  43525. },
  43526. },
  43527. [
  43528. {
  43529. name: "Normal",
  43530. height: math.unit(8 + 2/12, "feet"),
  43531. default: true
  43532. },
  43533. ]
  43534. ))
  43535. characterMakers.push(() => makeCharacter(
  43536. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43537. {
  43538. front: {
  43539. height: math.unit(5 + 10/12, "feet"),
  43540. weight: math.unit(160, "lb"),
  43541. name: "Front",
  43542. image: {
  43543. source: "./media/characters/pudask/front.svg",
  43544. extra: 1616/1590,
  43545. bottom: 161/1777
  43546. }
  43547. },
  43548. },
  43549. [
  43550. {
  43551. name: "Ferret Height",
  43552. height: math.unit(2 + 5/12, "feet")
  43553. },
  43554. {
  43555. name: "Canon Height",
  43556. height: math.unit(5 + 10/12, "feet"),
  43557. default: true
  43558. },
  43559. ]
  43560. ))
  43561. characterMakers.push(() => makeCharacter(
  43562. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43563. {
  43564. front: {
  43565. height: math.unit(3 + 6/12, "feet"),
  43566. weight: math.unit(60, "lb"),
  43567. name: "Front",
  43568. image: {
  43569. source: "./media/characters/ramita/front.svg",
  43570. extra: 1402/1232,
  43571. bottom: 62/1464
  43572. }
  43573. },
  43574. dressed: {
  43575. height: math.unit(3 + 6/12, "feet"),
  43576. weight: math.unit(60, "lb"),
  43577. name: "Dressed",
  43578. image: {
  43579. source: "./media/characters/ramita/dressed.svg",
  43580. extra: 1534/1249,
  43581. bottom: 50/1584
  43582. }
  43583. },
  43584. },
  43585. [
  43586. {
  43587. name: "Normal",
  43588. height: math.unit(3 + 6/12, "feet"),
  43589. default: true
  43590. },
  43591. ]
  43592. ))
  43593. characterMakers.push(() => makeCharacter(
  43594. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43595. {
  43596. front: {
  43597. height: math.unit(8, "feet"),
  43598. name: "Front",
  43599. image: {
  43600. source: "./media/characters/ark/front.svg",
  43601. extra: 772/693,
  43602. bottom: 45/817
  43603. }
  43604. },
  43605. },
  43606. [
  43607. {
  43608. name: "Normal",
  43609. height: math.unit(8, "feet"),
  43610. default: true
  43611. },
  43612. ]
  43613. ))
  43614. characterMakers.push(() => makeCharacter(
  43615. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43616. {
  43617. front: {
  43618. height: math.unit(6, "feet"),
  43619. weight: math.unit(250, "lb"),
  43620. volume: math.unit(5/8, "gallons"),
  43621. name: "Front",
  43622. image: {
  43623. source: "./media/characters/ludwig-horn/front.svg",
  43624. extra: 1782/1635,
  43625. bottom: 96/1878
  43626. }
  43627. },
  43628. back: {
  43629. height: math.unit(6, "feet"),
  43630. weight: math.unit(250, "lb"),
  43631. volume: math.unit(5/8, "gallons"),
  43632. name: "Back",
  43633. image: {
  43634. source: "./media/characters/ludwig-horn/back.svg",
  43635. extra: 1874/1729,
  43636. bottom: 27/1901
  43637. }
  43638. },
  43639. dick: {
  43640. height: math.unit(1.05, "feet"),
  43641. weight: math.unit(15, "lb"),
  43642. volume: math.unit(5/8, "gallons"),
  43643. name: "Dick",
  43644. image: {
  43645. source: "./media/characters/ludwig-horn/dick.svg"
  43646. }
  43647. },
  43648. },
  43649. [
  43650. {
  43651. name: "Small",
  43652. height: math.unit(6, "feet")
  43653. },
  43654. {
  43655. name: "Typical",
  43656. height: math.unit(12, "feet"),
  43657. default: true
  43658. },
  43659. {
  43660. name: "Building",
  43661. height: math.unit(80, "feet")
  43662. },
  43663. {
  43664. name: "Town",
  43665. height: math.unit(800, "feet")
  43666. },
  43667. {
  43668. name: "Kingdom",
  43669. height: math.unit(80000, "feet")
  43670. },
  43671. {
  43672. name: "Planet",
  43673. height: math.unit(8000000, "feet")
  43674. },
  43675. {
  43676. name: "Universe",
  43677. height: math.unit(8000000000, "feet")
  43678. },
  43679. {
  43680. name: "Transcended",
  43681. height: math.unit(8e27, "feet")
  43682. },
  43683. ]
  43684. ))
  43685. characterMakers.push(() => makeCharacter(
  43686. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43687. {
  43688. front: {
  43689. height: math.unit(5, "feet"),
  43690. weight: math.unit(50, "kg"),
  43691. name: "Front",
  43692. image: {
  43693. source: "./media/characters/biot-avery/front.svg",
  43694. extra: 1295/1232,
  43695. bottom: 86/1381
  43696. }
  43697. },
  43698. },
  43699. [
  43700. {
  43701. name: "Normal",
  43702. height: math.unit(5, "feet"),
  43703. default: true
  43704. },
  43705. ]
  43706. ))
  43707. characterMakers.push(() => makeCharacter(
  43708. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43709. {
  43710. front: {
  43711. height: math.unit(6, "feet"),
  43712. name: "Front",
  43713. image: {
  43714. source: "./media/characters/kitsune-kiro/front.svg",
  43715. extra: 1270/1158,
  43716. bottom: 42/1312
  43717. }
  43718. },
  43719. frontAlt: {
  43720. height: math.unit(6, "feet"),
  43721. name: "Front-alt",
  43722. image: {
  43723. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43724. extra: 1130/1081,
  43725. bottom: 36/1166
  43726. }
  43727. },
  43728. },
  43729. [
  43730. {
  43731. name: "Smol",
  43732. height: math.unit(3, "feet")
  43733. },
  43734. {
  43735. name: "Normal",
  43736. height: math.unit(6, "feet"),
  43737. default: true
  43738. },
  43739. ]
  43740. ))
  43741. characterMakers.push(() => makeCharacter(
  43742. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43743. {
  43744. front: {
  43745. height: math.unit(6, "feet"),
  43746. weight: math.unit(125, "lb"),
  43747. name: "Front",
  43748. image: {
  43749. source: "./media/characters/jack-thatcher/front.svg",
  43750. extra: 1474/1370,
  43751. bottom: 26/1500
  43752. }
  43753. },
  43754. back: {
  43755. height: math.unit(6, "feet"),
  43756. weight: math.unit(125, "lb"),
  43757. name: "Back",
  43758. image: {
  43759. source: "./media/characters/jack-thatcher/back.svg",
  43760. extra: 1489/1384,
  43761. bottom: 18/1507
  43762. }
  43763. },
  43764. },
  43765. [
  43766. {
  43767. name: "Normal",
  43768. height: math.unit(6, "feet"),
  43769. default: true
  43770. },
  43771. {
  43772. name: "Macro",
  43773. height: math.unit(75, "feet")
  43774. },
  43775. {
  43776. name: "Macro-er",
  43777. height: math.unit(250, "feet")
  43778. },
  43779. ]
  43780. ))
  43781. characterMakers.push(() => makeCharacter(
  43782. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43783. {
  43784. front: {
  43785. height: math.unit(7, "feet"),
  43786. weight: math.unit(110, "kg"),
  43787. name: "Front",
  43788. image: {
  43789. source: "./media/characters/max-hyper/front.svg",
  43790. extra: 1969/1881,
  43791. bottom: 49/2018
  43792. }
  43793. },
  43794. },
  43795. [
  43796. {
  43797. name: "Normal",
  43798. height: math.unit(7, "feet"),
  43799. default: true
  43800. },
  43801. ]
  43802. ))
  43803. characterMakers.push(() => makeCharacter(
  43804. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43805. {
  43806. front: {
  43807. height: math.unit(5 + 5/12, "feet"),
  43808. weight: math.unit(160, "lb"),
  43809. name: "Front",
  43810. image: {
  43811. source: "./media/characters/spook/front.svg",
  43812. extra: 794/791,
  43813. bottom: 54/848
  43814. }
  43815. },
  43816. back: {
  43817. height: math.unit(5 + 5/12, "feet"),
  43818. weight: math.unit(160, "lb"),
  43819. name: "Back",
  43820. image: {
  43821. source: "./media/characters/spook/back.svg",
  43822. extra: 812/798,
  43823. bottom: 32/844
  43824. }
  43825. },
  43826. },
  43827. [
  43828. {
  43829. name: "Normal",
  43830. height: math.unit(5 + 5/12, "feet"),
  43831. default: true
  43832. },
  43833. ]
  43834. ))
  43835. characterMakers.push(() => makeCharacter(
  43836. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43837. {
  43838. front: {
  43839. height: math.unit(18, "feet"),
  43840. name: "Front",
  43841. image: {
  43842. source: "./media/characters/xeaduulix/front.svg",
  43843. extra: 1380/1166,
  43844. bottom: 110/1490
  43845. }
  43846. },
  43847. back: {
  43848. height: math.unit(18, "feet"),
  43849. name: "Back",
  43850. image: {
  43851. source: "./media/characters/xeaduulix/back.svg",
  43852. extra: 1592/1170,
  43853. bottom: 128/1720
  43854. }
  43855. },
  43856. frontNsfw: {
  43857. height: math.unit(18, "feet"),
  43858. name: "Front (NSFW)",
  43859. image: {
  43860. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43861. extra: 1380/1166,
  43862. bottom: 110/1490
  43863. }
  43864. },
  43865. backNsfw: {
  43866. height: math.unit(18, "feet"),
  43867. name: "Back (NSFW)",
  43868. image: {
  43869. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43870. extra: 1592/1170,
  43871. bottom: 128/1720
  43872. }
  43873. },
  43874. },
  43875. [
  43876. {
  43877. name: "Normal",
  43878. height: math.unit(18, "feet"),
  43879. default: true
  43880. },
  43881. ]
  43882. ))
  43883. characterMakers.push(() => makeCharacter(
  43884. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43885. {
  43886. spreadWings: {
  43887. height: math.unit(20, "feet"),
  43888. name: "Spread Wings",
  43889. image: {
  43890. source: "./media/characters/fledge/spread-wings.svg",
  43891. extra: 693/635,
  43892. bottom: 26/719
  43893. }
  43894. },
  43895. front: {
  43896. height: math.unit(20, "feet"),
  43897. name: "Front",
  43898. image: {
  43899. source: "./media/characters/fledge/front.svg",
  43900. extra: 684/637,
  43901. bottom: 18/702
  43902. }
  43903. },
  43904. frontAlt: {
  43905. height: math.unit(20, "feet"),
  43906. name: "Front (Alt)",
  43907. image: {
  43908. source: "./media/characters/fledge/front-alt.svg",
  43909. extra: 708/664,
  43910. bottom: 13/721
  43911. }
  43912. },
  43913. back: {
  43914. height: math.unit(20, "feet"),
  43915. name: "Back",
  43916. image: {
  43917. source: "./media/characters/fledge/back.svg",
  43918. extra: 718/634,
  43919. bottom: 22/740
  43920. }
  43921. },
  43922. head: {
  43923. height: math.unit(5.55, "feet"),
  43924. name: "Head",
  43925. image: {
  43926. source: "./media/characters/fledge/head.svg"
  43927. }
  43928. },
  43929. headAlt: {
  43930. height: math.unit(5.1, "feet"),
  43931. name: "Head (Alt)",
  43932. image: {
  43933. source: "./media/characters/fledge/head-alt.svg"
  43934. }
  43935. },
  43936. },
  43937. [
  43938. {
  43939. name: "Small",
  43940. height: math.unit(6 + 2/12, "feet")
  43941. },
  43942. {
  43943. name: "Big",
  43944. height: math.unit(20, "feet"),
  43945. default: true
  43946. },
  43947. {
  43948. name: "Giant",
  43949. height: math.unit(100, "feet")
  43950. },
  43951. {
  43952. name: "Macro",
  43953. height: math.unit(200, "feet")
  43954. },
  43955. ]
  43956. ))
  43957. characterMakers.push(() => makeCharacter(
  43958. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43959. {
  43960. front: {
  43961. height: math.unit(1, "meter"),
  43962. name: "Front",
  43963. image: {
  43964. source: "./media/characters/atlas-morenai/front.svg",
  43965. extra: 1275/1043,
  43966. bottom: 19/1294
  43967. }
  43968. },
  43969. back: {
  43970. height: math.unit(1, "meter"),
  43971. name: "Back",
  43972. image: {
  43973. source: "./media/characters/atlas-morenai/back.svg",
  43974. extra: 1141/1001,
  43975. bottom: 25/1166
  43976. }
  43977. },
  43978. },
  43979. [
  43980. {
  43981. name: "Normal",
  43982. height: math.unit(1, "meter"),
  43983. default: true
  43984. },
  43985. {
  43986. name: "Magic-Infused",
  43987. height: math.unit(5, "meters")
  43988. },
  43989. ]
  43990. ))
  43991. characterMakers.push(() => makeCharacter(
  43992. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43993. {
  43994. front: {
  43995. height: math.unit(5, "meters"),
  43996. name: "Front",
  43997. image: {
  43998. source: "./media/characters/cintia/front.svg",
  43999. extra: 1312/1228,
  44000. bottom: 38/1350
  44001. }
  44002. },
  44003. back: {
  44004. height: math.unit(5, "meters"),
  44005. name: "Back",
  44006. image: {
  44007. source: "./media/characters/cintia/back.svg",
  44008. extra: 1260/1166,
  44009. bottom: 98/1358
  44010. }
  44011. },
  44012. frontDick: {
  44013. height: math.unit(5, "meters"),
  44014. name: "Front (Dick)",
  44015. image: {
  44016. source: "./media/characters/cintia/front-dick.svg",
  44017. extra: 1312/1228,
  44018. bottom: 38/1350
  44019. }
  44020. },
  44021. backDick: {
  44022. height: math.unit(5, "meters"),
  44023. name: "Back (Dick)",
  44024. image: {
  44025. source: "./media/characters/cintia/back-dick.svg",
  44026. extra: 1260/1166,
  44027. bottom: 98/1358
  44028. }
  44029. },
  44030. bust: {
  44031. height: math.unit(1.97, "meters"),
  44032. name: "Bust",
  44033. image: {
  44034. source: "./media/characters/cintia/bust.svg",
  44035. extra: 617/565,
  44036. bottom: 0/617
  44037. }
  44038. },
  44039. },
  44040. [
  44041. {
  44042. name: "Normal",
  44043. height: math.unit(5, "meters"),
  44044. default: true
  44045. },
  44046. ]
  44047. ))
  44048. characterMakers.push(() => makeCharacter(
  44049. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44050. {
  44051. side: {
  44052. height: math.unit(100, "feet"),
  44053. name: "Side",
  44054. image: {
  44055. source: "./media/characters/denora/side.svg",
  44056. extra: 875/803,
  44057. bottom: 9/884
  44058. }
  44059. },
  44060. },
  44061. [
  44062. {
  44063. name: "Standard",
  44064. height: math.unit(100, "feet"),
  44065. default: true
  44066. },
  44067. {
  44068. name: "Grand",
  44069. height: math.unit(1000, "feet")
  44070. },
  44071. {
  44072. name: "Conquering",
  44073. height: math.unit(10000, "feet")
  44074. },
  44075. ]
  44076. ))
  44077. characterMakers.push(() => makeCharacter(
  44078. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44079. {
  44080. dressed: {
  44081. height: math.unit(8 + 5/12, "feet"),
  44082. weight: math.unit(700, "lb"),
  44083. name: "Dressed",
  44084. image: {
  44085. source: "./media/characters/kiva/dressed.svg",
  44086. extra: 1102/1055,
  44087. bottom: 60/1162
  44088. }
  44089. },
  44090. nude: {
  44091. height: math.unit(8 + 5/12, "feet"),
  44092. weight: math.unit(700, "lb"),
  44093. name: "Nude",
  44094. image: {
  44095. source: "./media/characters/kiva/nude.svg",
  44096. extra: 1102/1055,
  44097. bottom: 60/1162
  44098. }
  44099. },
  44100. },
  44101. [
  44102. {
  44103. name: "Base Height",
  44104. height: math.unit(8 + 5/12, "feet"),
  44105. default: true
  44106. },
  44107. {
  44108. name: "Macro",
  44109. height: math.unit(100, "feet")
  44110. },
  44111. {
  44112. name: "Max",
  44113. height: math.unit(3280, "feet")
  44114. },
  44115. ]
  44116. ))
  44117. characterMakers.push(() => makeCharacter(
  44118. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44119. {
  44120. front: {
  44121. height: math.unit(6 + 8/12, "feet"),
  44122. weight: math.unit(250, "lb"),
  44123. name: "Front",
  44124. image: {
  44125. source: "./media/characters/ztragon/front.svg",
  44126. extra: 1825/1684,
  44127. bottom: 98/1923
  44128. }
  44129. },
  44130. },
  44131. [
  44132. {
  44133. name: "Normal",
  44134. height: math.unit(6 + 8/12, "feet"),
  44135. default: true
  44136. },
  44137. {
  44138. name: "Macro",
  44139. height: math.unit(80, "feet")
  44140. },
  44141. ]
  44142. ))
  44143. characterMakers.push(() => makeCharacter(
  44144. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44145. {
  44146. front: {
  44147. height: math.unit(10.4, "feet"),
  44148. weight: math.unit(2, "tons"),
  44149. name: "Front",
  44150. image: {
  44151. source: "./media/characters/yesenia/front.svg",
  44152. extra: 1479/1474,
  44153. bottom: 233/1712
  44154. }
  44155. },
  44156. },
  44157. [
  44158. {
  44159. name: "Normal",
  44160. height: math.unit(10.4, "feet"),
  44161. default: true
  44162. },
  44163. ]
  44164. ))
  44165. characterMakers.push(() => makeCharacter(
  44166. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44167. {
  44168. normal: {
  44169. height: math.unit(6 + 1/12, "feet"),
  44170. weight: math.unit(180, "lb"),
  44171. name: "Normal",
  44172. image: {
  44173. source: "./media/characters/leanne-lycheborne/normal.svg",
  44174. extra: 1748/1660,
  44175. bottom: 98/1846
  44176. }
  44177. },
  44178. were: {
  44179. height: math.unit(12, "feet"),
  44180. weight: math.unit(1600, "lb"),
  44181. name: "Were",
  44182. image: {
  44183. source: "./media/characters/leanne-lycheborne/were.svg",
  44184. extra: 1485/1432,
  44185. bottom: 66/1551
  44186. }
  44187. },
  44188. },
  44189. [
  44190. {
  44191. name: "Normal",
  44192. height: math.unit(6 + 1/12, "feet"),
  44193. default: true
  44194. },
  44195. ]
  44196. ))
  44197. characterMakers.push(() => makeCharacter(
  44198. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44199. {
  44200. side: {
  44201. height: math.unit(13, "feet"),
  44202. name: "Side",
  44203. image: {
  44204. source: "./media/characters/kira-tyler/side.svg",
  44205. extra: 693/393,
  44206. bottom: 58/751
  44207. }
  44208. },
  44209. },
  44210. [
  44211. {
  44212. name: "Normal",
  44213. height: math.unit(13, "feet"),
  44214. default: true
  44215. },
  44216. ]
  44217. ))
  44218. characterMakers.push(() => makeCharacter(
  44219. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44220. {
  44221. front: {
  44222. height: math.unit(10.3, "feet"),
  44223. weight: math.unit(150, "lb"),
  44224. name: "Front",
  44225. image: {
  44226. source: "./media/characters/blaze/front.svg",
  44227. extra: 1378/1286,
  44228. bottom: 172/1550
  44229. }
  44230. },
  44231. },
  44232. [
  44233. {
  44234. name: "Normal",
  44235. height: math.unit(10.3, "feet"),
  44236. default: true
  44237. },
  44238. ]
  44239. ))
  44240. characterMakers.push(() => makeCharacter(
  44241. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44242. {
  44243. side: {
  44244. height: math.unit(2, "meters"),
  44245. weight: math.unit(400, "kg"),
  44246. name: "Side",
  44247. image: {
  44248. source: "./media/characters/anu/side.svg",
  44249. extra: 506/394,
  44250. bottom: 18/524
  44251. }
  44252. },
  44253. },
  44254. [
  44255. {
  44256. name: "Humanoid",
  44257. height: math.unit(2, "meters")
  44258. },
  44259. {
  44260. name: "Normal",
  44261. height: math.unit(5, "meters"),
  44262. default: true
  44263. },
  44264. ]
  44265. ))
  44266. characterMakers.push(() => makeCharacter(
  44267. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44268. {
  44269. front: {
  44270. height: math.unit(5 + 5/12, "feet"),
  44271. weight: math.unit(170, "lb"),
  44272. name: "Front",
  44273. image: {
  44274. source: "./media/characters/synx-the-lynx/front.svg",
  44275. extra: 1893/1745,
  44276. bottom: 17/1910
  44277. }
  44278. },
  44279. side: {
  44280. height: math.unit(5 + 5/12, "feet"),
  44281. weight: math.unit(170, "lb"),
  44282. name: "Side",
  44283. image: {
  44284. source: "./media/characters/synx-the-lynx/side.svg",
  44285. extra: 1884/1740,
  44286. bottom: 39/1923
  44287. }
  44288. },
  44289. back: {
  44290. height: math.unit(5 + 5/12, "feet"),
  44291. weight: math.unit(170, "lb"),
  44292. name: "Back",
  44293. image: {
  44294. source: "./media/characters/synx-the-lynx/back.svg",
  44295. extra: 1903/1755,
  44296. bottom: 14/1917
  44297. }
  44298. },
  44299. },
  44300. [
  44301. {
  44302. name: "Normal",
  44303. height: math.unit(5 + 5/12, "feet"),
  44304. default: true
  44305. },
  44306. ]
  44307. ))
  44308. characterMakers.push(() => makeCharacter(
  44309. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44310. {
  44311. back: {
  44312. height: math.unit(15, "feet"),
  44313. name: "Back",
  44314. image: {
  44315. source: "./media/characters/nadezda-fex/back.svg",
  44316. extra: 1695/1481,
  44317. bottom: 25/1720
  44318. }
  44319. },
  44320. },
  44321. [
  44322. {
  44323. name: "Normal",
  44324. height: math.unit(15, "feet"),
  44325. default: true
  44326. },
  44327. {
  44328. name: "Macro",
  44329. height: math.unit(2.5, "miles")
  44330. },
  44331. {
  44332. name: "Goddess",
  44333. height: math.unit(2, "multiverses")
  44334. },
  44335. ]
  44336. ))
  44337. characterMakers.push(() => makeCharacter(
  44338. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44339. {
  44340. front: {
  44341. height: math.unit(216, "cm"),
  44342. name: "Front",
  44343. image: {
  44344. source: "./media/characters/lev/front.svg",
  44345. extra: 1728/1670,
  44346. bottom: 82/1810
  44347. }
  44348. },
  44349. back: {
  44350. height: math.unit(216, "cm"),
  44351. name: "Back",
  44352. image: {
  44353. source: "./media/characters/lev/back.svg",
  44354. extra: 1738/1675,
  44355. bottom: 24/1762
  44356. }
  44357. },
  44358. dressed: {
  44359. height: math.unit(216, "cm"),
  44360. name: "Dressed",
  44361. image: {
  44362. source: "./media/characters/lev/dressed.svg",
  44363. extra: 1397/1351,
  44364. bottom: 73/1470
  44365. }
  44366. },
  44367. head: {
  44368. height: math.unit(0.51, "meter"),
  44369. name: "Head",
  44370. image: {
  44371. source: "./media/characters/lev/head.svg"
  44372. }
  44373. },
  44374. },
  44375. [
  44376. {
  44377. name: "Normal",
  44378. height: math.unit(216, "cm"),
  44379. default: true
  44380. },
  44381. {
  44382. name: "Relatively Macro",
  44383. height: math.unit(80, "meters")
  44384. },
  44385. {
  44386. name: "Megamacro",
  44387. height: math.unit(21600, "meters")
  44388. },
  44389. {
  44390. name: "Megamacro+",
  44391. height: math.unit(64800, "meters")
  44392. },
  44393. ]
  44394. ))
  44395. characterMakers.push(() => makeCharacter(
  44396. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44397. {
  44398. front: {
  44399. height: math.unit(2, "meters"),
  44400. weight: math.unit(80, "kg"),
  44401. name: "Front",
  44402. image: {
  44403. source: "./media/characters/moka/front.svg",
  44404. extra: 1337/1255,
  44405. bottom: 58/1395
  44406. }
  44407. },
  44408. },
  44409. [
  44410. {
  44411. name: "Micro",
  44412. height: math.unit(15, "cm")
  44413. },
  44414. {
  44415. name: "Normal",
  44416. height: math.unit(2, "meters"),
  44417. default: true
  44418. },
  44419. {
  44420. name: "Macro",
  44421. height: math.unit(20, "meters"),
  44422. },
  44423. ]
  44424. ))
  44425. characterMakers.push(() => makeCharacter(
  44426. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44427. {
  44428. front: {
  44429. height: math.unit(9, "feet"),
  44430. weight: math.unit(240, "lb"),
  44431. name: "Front",
  44432. image: {
  44433. source: "./media/characters/kuzco/front.svg",
  44434. extra: 1593/1487,
  44435. bottom: 32/1625
  44436. }
  44437. },
  44438. side: {
  44439. height: math.unit(9, "feet"),
  44440. weight: math.unit(240, "lb"),
  44441. name: "Side",
  44442. image: {
  44443. source: "./media/characters/kuzco/side.svg",
  44444. extra: 1575/1485,
  44445. bottom: 30/1605
  44446. }
  44447. },
  44448. back: {
  44449. height: math.unit(9, "feet"),
  44450. weight: math.unit(240, "lb"),
  44451. name: "Back",
  44452. image: {
  44453. source: "./media/characters/kuzco/back.svg",
  44454. extra: 1603/1514,
  44455. bottom: 14/1617
  44456. }
  44457. },
  44458. },
  44459. [
  44460. {
  44461. name: "Normal",
  44462. height: math.unit(9, "feet"),
  44463. default: true
  44464. },
  44465. ]
  44466. ))
  44467. characterMakers.push(() => makeCharacter(
  44468. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44469. {
  44470. side: {
  44471. height: math.unit(2, "meters"),
  44472. weight: math.unit(300, "kg"),
  44473. name: "Side",
  44474. image: {
  44475. source: "./media/characters/ceruleus/side.svg",
  44476. extra: 1068/974,
  44477. bottom: 126/1194
  44478. }
  44479. },
  44480. },
  44481. [
  44482. {
  44483. name: "Normal",
  44484. height: math.unit(16, "meters"),
  44485. default: true
  44486. },
  44487. ]
  44488. ))
  44489. characterMakers.push(() => makeCharacter(
  44490. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44491. {
  44492. front: {
  44493. height: math.unit(9, "feet"),
  44494. weight: math.unit(500, "kg"),
  44495. name: "Front",
  44496. image: {
  44497. source: "./media/characters/acouya/front.svg",
  44498. extra: 1660/1473,
  44499. bottom: 28/1688
  44500. }
  44501. },
  44502. },
  44503. [
  44504. {
  44505. name: "Normal",
  44506. height: math.unit(9, "feet"),
  44507. default: true
  44508. },
  44509. ]
  44510. ))
  44511. characterMakers.push(() => makeCharacter(
  44512. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44513. {
  44514. front: {
  44515. height: math.unit(5 + 6/12, "feet"),
  44516. weight: math.unit(195, "lb"),
  44517. name: "Front",
  44518. image: {
  44519. source: "./media/characters/vant/front.svg",
  44520. extra: 1396/1320,
  44521. bottom: 20/1416
  44522. }
  44523. },
  44524. back: {
  44525. height: math.unit(5 + 6/12, "feet"),
  44526. weight: math.unit(195, "lb"),
  44527. name: "Back",
  44528. image: {
  44529. source: "./media/characters/vant/back.svg",
  44530. extra: 1396/1320,
  44531. bottom: 20/1416
  44532. }
  44533. },
  44534. maw: {
  44535. height: math.unit(0.75, "feet"),
  44536. name: "Maw",
  44537. image: {
  44538. source: "./media/characters/vant/maw.svg"
  44539. }
  44540. },
  44541. paw: {
  44542. height: math.unit(1.07, "feet"),
  44543. name: "Paw",
  44544. image: {
  44545. source: "./media/characters/vant/paw.svg"
  44546. }
  44547. },
  44548. },
  44549. [
  44550. {
  44551. name: "Micro",
  44552. height: math.unit(0.25, "inches")
  44553. },
  44554. {
  44555. name: "Normal",
  44556. height: math.unit(5 + 6/12, "feet"),
  44557. default: true
  44558. },
  44559. {
  44560. name: "Macro",
  44561. height: math.unit(75, "feet")
  44562. },
  44563. ]
  44564. ))
  44565. characterMakers.push(() => makeCharacter(
  44566. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44567. {
  44568. front: {
  44569. height: math.unit(30, "meters"),
  44570. weight: math.unit(363, "tons"),
  44571. name: "Front",
  44572. image: {
  44573. source: "./media/characters/ahra/front.svg",
  44574. extra: 1914/1814,
  44575. bottom: 46/1960
  44576. }
  44577. },
  44578. },
  44579. [
  44580. {
  44581. name: "Macro",
  44582. height: math.unit(30, "meters"),
  44583. default: true
  44584. },
  44585. ]
  44586. ))
  44587. characterMakers.push(() => makeCharacter(
  44588. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44589. {
  44590. undressed: {
  44591. height: math.unit(2, "m"),
  44592. weight: math.unit(250, "kg"),
  44593. name: "Undressed",
  44594. image: {
  44595. source: "./media/characters/coriander/undressed.svg",
  44596. extra: 1757/1606,
  44597. bottom: 107/1864
  44598. }
  44599. },
  44600. dressed: {
  44601. height: math.unit(2, "m"),
  44602. weight: math.unit(250, "kg"),
  44603. name: "Dressed",
  44604. image: {
  44605. source: "./media/characters/coriander/dressed.svg",
  44606. extra: 1757/1606,
  44607. bottom: 107/1864
  44608. }
  44609. },
  44610. },
  44611. [
  44612. {
  44613. name: "Normal",
  44614. height: math.unit(4, "meters"),
  44615. default: true
  44616. },
  44617. {
  44618. name: "XL",
  44619. height: math.unit(6, "meters")
  44620. },
  44621. {
  44622. name: "XXL",
  44623. height: math.unit(8, "meters")
  44624. },
  44625. ]
  44626. ))
  44627. characterMakers.push(() => makeCharacter(
  44628. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44629. {
  44630. front: {
  44631. height: math.unit(6, "feet"),
  44632. name: "Front",
  44633. image: {
  44634. source: "./media/characters/syrinx/front.svg",
  44635. extra: 1557/1259,
  44636. bottom: 171/1728
  44637. }
  44638. },
  44639. },
  44640. [
  44641. {
  44642. name: "Normal",
  44643. height: math.unit(6 + 3/12, "feet"),
  44644. default: true
  44645. },
  44646. ]
  44647. ))
  44648. characterMakers.push(() => makeCharacter(
  44649. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44650. {
  44651. front: {
  44652. height: math.unit(11 + 6/12, "feet"),
  44653. weight: math.unit(1.5, "tons"),
  44654. name: "Front",
  44655. image: {
  44656. source: "./media/characters/bor/front.svg",
  44657. extra: 1189/1109,
  44658. bottom: 170/1359
  44659. }
  44660. },
  44661. },
  44662. [
  44663. {
  44664. name: "Normal",
  44665. height: math.unit(11 + 6/12, "feet"),
  44666. default: true
  44667. },
  44668. {
  44669. name: "Macro",
  44670. height: math.unit(32 + 9/12, "feet")
  44671. },
  44672. ]
  44673. ))
  44674. characterMakers.push(() => makeCharacter(
  44675. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44676. {
  44677. anthro: {
  44678. height: math.unit(9, "feet"),
  44679. weight: math.unit(2076, "lb"),
  44680. name: "Anthro",
  44681. image: {
  44682. source: "./media/characters/abacus/anthro.svg",
  44683. extra: 1540/1494,
  44684. bottom: 233/1773
  44685. }
  44686. },
  44687. pigeon: {
  44688. height: math.unit(1, "feet"),
  44689. name: "Pigeon",
  44690. image: {
  44691. source: "./media/characters/abacus/pigeon.svg",
  44692. extra: 528/525,
  44693. bottom: 46/574
  44694. }
  44695. },
  44696. },
  44697. [
  44698. {
  44699. name: "Normal",
  44700. height: math.unit(9, "feet"),
  44701. default: true
  44702. },
  44703. ]
  44704. ))
  44705. characterMakers.push(() => makeCharacter(
  44706. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44707. {
  44708. side: {
  44709. height: math.unit(6, "feet"),
  44710. name: "Side",
  44711. image: {
  44712. source: "./media/characters/delkhan/side.svg",
  44713. extra: 1884/1786,
  44714. bottom: 308/2192
  44715. }
  44716. },
  44717. head: {
  44718. height: math.unit(3.38, "feet"),
  44719. name: "Head",
  44720. image: {
  44721. source: "./media/characters/delkhan/head.svg"
  44722. }
  44723. },
  44724. },
  44725. [
  44726. {
  44727. name: "Normal",
  44728. height: math.unit(72, "feet"),
  44729. default: true
  44730. },
  44731. {
  44732. name: "Giant",
  44733. height: math.unit(172, "feet")
  44734. },
  44735. ]
  44736. ))
  44737. characterMakers.push(() => makeCharacter(
  44738. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44739. {
  44740. standing: {
  44741. height: math.unit(6, "feet"),
  44742. name: "Standing",
  44743. image: {
  44744. source: "./media/characters/euchidat/standing.svg",
  44745. extra: 1612/1553,
  44746. bottom: 116/1728
  44747. }
  44748. },
  44749. leaning: {
  44750. height: math.unit(6, "feet"),
  44751. name: "Leaning",
  44752. image: {
  44753. source: "./media/characters/euchidat/leaning.svg",
  44754. extra: 1719/1674,
  44755. bottom: 27/1746
  44756. }
  44757. },
  44758. },
  44759. [
  44760. {
  44761. name: "Normal",
  44762. height: math.unit(175, "feet"),
  44763. default: true
  44764. },
  44765. {
  44766. name: "Megamacro",
  44767. height: math.unit(190, "miles")
  44768. },
  44769. {
  44770. name: "Gigamacro",
  44771. height: math.unit(190000, "miles")
  44772. },
  44773. ]
  44774. ))
  44775. characterMakers.push(() => makeCharacter(
  44776. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  44777. {
  44778. front: {
  44779. height: math.unit(6, "feet"),
  44780. weight: math.unit(150, "lb"),
  44781. name: "Front",
  44782. image: {
  44783. source: "./media/characters/rebecca-stack/front.svg",
  44784. extra: 1256/1201,
  44785. bottom: 18/1274
  44786. }
  44787. },
  44788. },
  44789. [
  44790. {
  44791. name: "Normal",
  44792. height: math.unit(5 + 8/12, "feet"),
  44793. default: true
  44794. },
  44795. {
  44796. name: "Demolitionist",
  44797. height: math.unit(200, "feet")
  44798. },
  44799. {
  44800. name: "Out of Control",
  44801. height: math.unit(2, "miles")
  44802. },
  44803. {
  44804. name: "Giga",
  44805. height: math.unit(7200, "miles")
  44806. },
  44807. ]
  44808. ))
  44809. characterMakers.push(() => makeCharacter(
  44810. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  44811. {
  44812. front: {
  44813. height: math.unit(6, "feet"),
  44814. weight: math.unit(150, "lb"),
  44815. name: "Front",
  44816. image: {
  44817. source: "./media/characters/jenny-cartwright/front.svg",
  44818. extra: 1384/1376,
  44819. bottom: 58/1442
  44820. }
  44821. },
  44822. },
  44823. [
  44824. {
  44825. name: "Normal",
  44826. height: math.unit(6 + 7/12, "feet"),
  44827. default: true
  44828. },
  44829. {
  44830. name: "Librarian",
  44831. height: math.unit(55, "feet")
  44832. },
  44833. {
  44834. name: "Sightseer",
  44835. height: math.unit(50, "miles")
  44836. },
  44837. {
  44838. name: "Giga",
  44839. height: math.unit(30000, "miles")
  44840. },
  44841. ]
  44842. ))
  44843. characterMakers.push(() => makeCharacter(
  44844. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  44845. {
  44846. nude: {
  44847. height: math.unit(8, "feet"),
  44848. weight: math.unit(225, "lb"),
  44849. name: "Nude",
  44850. image: {
  44851. source: "./media/characters/marvy/nude.svg",
  44852. extra: 1900/1683,
  44853. bottom: 89/1989
  44854. }
  44855. },
  44856. dressed: {
  44857. height: math.unit(8, "feet"),
  44858. weight: math.unit(225, "lb"),
  44859. name: "Dressed",
  44860. image: {
  44861. source: "./media/characters/marvy/dressed.svg",
  44862. extra: 1900/1683,
  44863. bottom: 89/1989
  44864. }
  44865. },
  44866. head: {
  44867. height: math.unit(2.85, "feet"),
  44868. name: "Head",
  44869. image: {
  44870. source: "./media/characters/marvy/head.svg"
  44871. }
  44872. },
  44873. },
  44874. [
  44875. {
  44876. name: "Normal",
  44877. height: math.unit(8, "feet"),
  44878. default: true
  44879. },
  44880. ]
  44881. ))
  44882. characterMakers.push(() => makeCharacter(
  44883. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  44884. {
  44885. front: {
  44886. height: math.unit(8, "feet"),
  44887. weight: math.unit(250, "lb"),
  44888. name: "Front",
  44889. image: {
  44890. source: "./media/characters/leah/front.svg",
  44891. extra: 1257/1149,
  44892. bottom: 109/1366
  44893. }
  44894. },
  44895. },
  44896. [
  44897. {
  44898. name: "Normal",
  44899. height: math.unit(8, "feet"),
  44900. default: true
  44901. },
  44902. {
  44903. name: "Minimacro",
  44904. height: math.unit(40, "feet")
  44905. },
  44906. {
  44907. name: "Macro",
  44908. height: math.unit(124, "feet")
  44909. },
  44910. {
  44911. name: "Megamacro",
  44912. height: math.unit(850, "feet")
  44913. },
  44914. ]
  44915. ))
  44916. characterMakers.push(() => makeCharacter(
  44917. { name: "Alvir", species: ["ahuizotl"], tags: ["anthro"] },
  44918. {
  44919. side: {
  44920. height: math.unit(13 + 6/12, "feet"),
  44921. weight: math.unit(3200, "lb"),
  44922. name: "Side",
  44923. image: {
  44924. source: "./media/characters/alvir/side.svg",
  44925. extra: 896/589,
  44926. bottom: 26/922
  44927. }
  44928. },
  44929. },
  44930. [
  44931. {
  44932. name: "Normal",
  44933. height: math.unit(13 + 6/12, "feet"),
  44934. default: true
  44935. },
  44936. ]
  44937. ))
  44938. //characters
  44939. function makeCharacters() {
  44940. const results = [];
  44941. characterMakers.forEach(character => {
  44942. results.push(character());
  44943. });
  44944. return results;
  44945. }