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

45471 строка
1.1 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. "arctic-fox": {
  1759. name: "Arctic Fox",
  1760. parents: ["fox"]
  1761. },
  1762. "snow-tiger": {
  1763. name: "Snow Tiger",
  1764. parents: ["tiger"]
  1765. },
  1766. "marble-fox": {
  1767. name: "Marble Fox",
  1768. parents: ["fox"]
  1769. },
  1770. "king-wickerbeast": {
  1771. name: "King Wickerbeast",
  1772. parents: ["wickerbeast"]
  1773. },
  1774. "wickerbeast": {
  1775. name: "Wickerbeast",
  1776. parents: ["mammal"]
  1777. },
  1778. "european-polecat": {
  1779. name: "European Polecat",
  1780. parents: ["mustelid"]
  1781. },
  1782. "teshari": {
  1783. name: "Teshari",
  1784. parents: ["avian", "raptor"]
  1785. },
  1786. "alicorn": {
  1787. name: "Alicorn",
  1788. parents: ["horse"]
  1789. },
  1790. "atlas-moth": {
  1791. name: "Atlas Moth",
  1792. parents: ["moth"]
  1793. },
  1794. }
  1795. //species
  1796. function getSpeciesInfo(speciesList) {
  1797. let result = new Set();
  1798. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1799. result.add(entry)
  1800. });
  1801. return Array.from(result);
  1802. };
  1803. function getSpeciesInfoHelper(species) {
  1804. if (!speciesData[species]) {
  1805. console.warn(species + " doesn't exist");
  1806. return [];
  1807. }
  1808. if (speciesData[species].parents) {
  1809. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1810. } else {
  1811. return [species];
  1812. }
  1813. }
  1814. characterMakers.push(() => makeCharacter(
  1815. {
  1816. name: "Fen",
  1817. species: ["crux"],
  1818. description: {
  1819. title: "Bio",
  1820. text: "Very furry. Sheds on everything."
  1821. },
  1822. tags: [
  1823. "anthro",
  1824. "goo"
  1825. ]
  1826. },
  1827. {
  1828. front: {
  1829. height: math.unit(2.2428, "meter"),
  1830. weight: math.unit(124.738, "kg"),
  1831. name: "Front",
  1832. image: {
  1833. source: "./media/characters/fen/front.svg",
  1834. extra: 1804/1562,
  1835. bottom: 205/2009
  1836. }
  1837. },
  1838. back: {
  1839. height: math.unit(2.2428, "meter"),
  1840. weight: math.unit(124.738, "kg"),
  1841. name: "Back",
  1842. image: {
  1843. source: "./media/characters/fen/back.svg",
  1844. },
  1845. info: {
  1846. description: {
  1847. mode: "append",
  1848. text: "\n\nHe is not currently looking at you."
  1849. }
  1850. }
  1851. },
  1852. full: {
  1853. height: math.unit(0.91, "meter"),
  1854. weight: math.unit(225, "kg"),
  1855. name: "Full",
  1856. image: {
  1857. source: "./media/characters/fen/full.svg",
  1858. extra: 1133/859,
  1859. bottom: 145/1278
  1860. },
  1861. info: {
  1862. description: {
  1863. mode: "append",
  1864. text: "\n\nMunch."
  1865. }
  1866. }
  1867. },
  1868. kneeling: {
  1869. height: math.unit(5.4, "feet"),
  1870. weight: math.unit(124.738, "kg"),
  1871. name: "Kneeling",
  1872. image: {
  1873. source: "./media/characters/fen/kneeling.svg",
  1874. extra: 563 / 507
  1875. }
  1876. },
  1877. goo: {
  1878. height: math.unit(2.8, "feet"),
  1879. weight: math.unit(125, "kg"),
  1880. capacity: math.unit(1, "people"),
  1881. name: "Goo",
  1882. image: {
  1883. source: "./media/characters/fen/goo.svg",
  1884. bottom: 116 / 613
  1885. }
  1886. },
  1887. lounging: {
  1888. height: math.unit(6.5, "feet"),
  1889. weight: math.unit(125, "kg"),
  1890. name: "Lounging",
  1891. image: {
  1892. source: "./media/characters/fen/lounging.svg"
  1893. }
  1894. },
  1895. },
  1896. [
  1897. {
  1898. name: "Small",
  1899. height: math.unit(2.2428, "meter")
  1900. },
  1901. {
  1902. name: "Normal",
  1903. height: math.unit(12, "feet"),
  1904. default: true,
  1905. },
  1906. {
  1907. name: "Minimacro",
  1908. height: math.unit(40, "feet"),
  1909. info: {
  1910. description: {
  1911. mode: "append",
  1912. text: "\n\nTOO DAMN BIG"
  1913. }
  1914. }
  1915. },
  1916. {
  1917. name: "Macro",
  1918. height: math.unit(100, "feet"),
  1919. info: {
  1920. description: {
  1921. mode: "append",
  1922. text: "\n\nTOO DAMN BIG"
  1923. }
  1924. }
  1925. },
  1926. {
  1927. name: "Macro+",
  1928. height: math.unit(300, "feet")
  1929. },
  1930. {
  1931. name: "Megamacro",
  1932. height: math.unit(2, "miles")
  1933. }
  1934. ]
  1935. ))
  1936. characterMakers.push(() => makeCharacter(
  1937. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1938. {
  1939. front: {
  1940. height: math.unit(183, "cm"),
  1941. weight: math.unit(80, "kg"),
  1942. name: "Front",
  1943. image: {
  1944. source: "./media/characters/sofia-fluttertail/front.svg",
  1945. bottom: 0.01,
  1946. extra: 2154 / 2081
  1947. }
  1948. },
  1949. frontAlt: {
  1950. height: math.unit(183, "cm"),
  1951. weight: math.unit(80, "kg"),
  1952. name: "Front (alt)",
  1953. image: {
  1954. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1955. }
  1956. },
  1957. back: {
  1958. height: math.unit(183, "cm"),
  1959. weight: math.unit(80, "kg"),
  1960. name: "Back",
  1961. image: {
  1962. source: "./media/characters/sofia-fluttertail/back.svg"
  1963. }
  1964. },
  1965. kneeling: {
  1966. height: math.unit(125, "cm"),
  1967. weight: math.unit(80, "kg"),
  1968. name: "Kneeling",
  1969. image: {
  1970. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1971. extra: 1033 / 977,
  1972. bottom: 23.7 / 1057
  1973. }
  1974. },
  1975. maw: {
  1976. height: math.unit(183 / 5, "cm"),
  1977. name: "Maw",
  1978. image: {
  1979. source: "./media/characters/sofia-fluttertail/maw.svg"
  1980. }
  1981. },
  1982. mawcloseup: {
  1983. height: math.unit(183 / 5 * 0.41, "cm"),
  1984. name: "Maw (Closeup)",
  1985. image: {
  1986. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1987. }
  1988. },
  1989. paws: {
  1990. height: math.unit(1.17, "feet"),
  1991. name: "Paws",
  1992. image: {
  1993. source: "./media/characters/sofia-fluttertail/paws.svg",
  1994. extra: 851 / 851,
  1995. bottom: 17 / 868
  1996. }
  1997. },
  1998. },
  1999. [
  2000. {
  2001. name: "Normal",
  2002. height: math.unit(1.83, "meter")
  2003. },
  2004. {
  2005. name: "Size Thief",
  2006. height: math.unit(18, "feet")
  2007. },
  2008. {
  2009. name: "50 Foot Collie",
  2010. height: math.unit(50, "feet")
  2011. },
  2012. {
  2013. name: "Macro",
  2014. height: math.unit(96, "feet"),
  2015. default: true
  2016. },
  2017. {
  2018. name: "Megamerger",
  2019. height: math.unit(650, "feet")
  2020. },
  2021. ]
  2022. ))
  2023. characterMakers.push(() => makeCharacter(
  2024. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2025. {
  2026. front: {
  2027. height: math.unit(7, "feet"),
  2028. weight: math.unit(100, "kg"),
  2029. name: "Front",
  2030. image: {
  2031. source: "./media/characters/march/front.svg",
  2032. extra: 1992/1851,
  2033. bottom: 39/2031
  2034. }
  2035. },
  2036. foot: {
  2037. height: math.unit(0.9, "feet"),
  2038. name: "Foot",
  2039. image: {
  2040. source: "./media/characters/march/foot.svg"
  2041. }
  2042. },
  2043. },
  2044. [
  2045. {
  2046. name: "Normal",
  2047. height: math.unit(7.9, "feet")
  2048. },
  2049. {
  2050. name: "Macro",
  2051. height: math.unit(220, "meters")
  2052. },
  2053. {
  2054. name: "Megamacro",
  2055. height: math.unit(2.98, "km"),
  2056. default: true
  2057. },
  2058. {
  2059. name: "Gigamacro",
  2060. height: math.unit(15963, "km")
  2061. },
  2062. {
  2063. name: "Teramacro",
  2064. height: math.unit(2980000000, "km")
  2065. },
  2066. {
  2067. name: "Examacro",
  2068. height: math.unit(250, "parsecs")
  2069. },
  2070. ]
  2071. ))
  2072. characterMakers.push(() => makeCharacter(
  2073. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2074. {
  2075. front: {
  2076. height: math.unit(6, "feet"),
  2077. weight: math.unit(60, "kg"),
  2078. name: "Front",
  2079. image: {
  2080. source: "./media/characters/noir/front.svg",
  2081. extra: 1,
  2082. bottom: 0.032
  2083. }
  2084. },
  2085. },
  2086. [
  2087. {
  2088. name: "Normal",
  2089. height: math.unit(6.6, "feet")
  2090. },
  2091. {
  2092. name: "Macro",
  2093. height: math.unit(500, "feet")
  2094. },
  2095. {
  2096. name: "Megamacro",
  2097. height: math.unit(2.5, "km"),
  2098. default: true
  2099. },
  2100. {
  2101. name: "Gigamacro",
  2102. height: math.unit(22500, "km")
  2103. },
  2104. {
  2105. name: "Teramacro",
  2106. height: math.unit(2500000000, "km")
  2107. },
  2108. {
  2109. name: "Examacro",
  2110. height: math.unit(200, "parsecs")
  2111. },
  2112. ]
  2113. ))
  2114. characterMakers.push(() => makeCharacter(
  2115. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2116. {
  2117. front: {
  2118. height: math.unit(7, "feet"),
  2119. weight: math.unit(100, "kg"),
  2120. name: "Front",
  2121. image: {
  2122. source: "./media/characters/okuri/front.svg",
  2123. extra: 1,
  2124. bottom: 0.037
  2125. }
  2126. },
  2127. back: {
  2128. height: math.unit(7, "feet"),
  2129. weight: math.unit(100, "kg"),
  2130. name: "Back",
  2131. image: {
  2132. source: "./media/characters/okuri/back.svg",
  2133. extra: 1,
  2134. bottom: 0.007
  2135. }
  2136. },
  2137. },
  2138. [
  2139. {
  2140. name: "Megamacro",
  2141. height: math.unit(100, "miles"),
  2142. default: true
  2143. },
  2144. ]
  2145. ))
  2146. characterMakers.push(() => makeCharacter(
  2147. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2148. {
  2149. front: {
  2150. height: math.unit(7, "feet"),
  2151. weight: math.unit(100, "kg"),
  2152. name: "Front",
  2153. image: {
  2154. source: "./media/characters/manny/front.svg",
  2155. extra: 1,
  2156. bottom: 0.06
  2157. }
  2158. },
  2159. back: {
  2160. height: math.unit(7, "feet"),
  2161. weight: math.unit(100, "kg"),
  2162. name: "Back",
  2163. image: {
  2164. source: "./media/characters/manny/back.svg",
  2165. extra: 1,
  2166. bottom: 0.014
  2167. }
  2168. },
  2169. },
  2170. [
  2171. {
  2172. name: "Normal",
  2173. height: math.unit(7, "feet"),
  2174. },
  2175. {
  2176. name: "Macro",
  2177. height: math.unit(78, "feet"),
  2178. default: true
  2179. },
  2180. {
  2181. name: "Macro+",
  2182. height: math.unit(300, "meters")
  2183. },
  2184. {
  2185. name: "Macro++",
  2186. height: math.unit(2400, "meters")
  2187. },
  2188. {
  2189. name: "Megamacro",
  2190. height: math.unit(5167, "meters")
  2191. },
  2192. {
  2193. name: "Gigamacro",
  2194. height: math.unit(41769, "miles")
  2195. },
  2196. ]
  2197. ))
  2198. characterMakers.push(() => makeCharacter(
  2199. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2200. {
  2201. front: {
  2202. height: math.unit(7, "feet"),
  2203. weight: math.unit(100, "kg"),
  2204. name: "Front",
  2205. image: {
  2206. source: "./media/characters/adake/front-1.svg"
  2207. }
  2208. },
  2209. frontAlt: {
  2210. height: math.unit(7, "feet"),
  2211. weight: math.unit(100, "kg"),
  2212. name: "Front (Alt)",
  2213. image: {
  2214. source: "./media/characters/adake/front-2.svg",
  2215. extra: 1,
  2216. bottom: 0.01
  2217. }
  2218. },
  2219. back: {
  2220. height: math.unit(7, "feet"),
  2221. weight: math.unit(100, "kg"),
  2222. name: "Back",
  2223. image: {
  2224. source: "./media/characters/adake/back.svg",
  2225. }
  2226. },
  2227. kneel: {
  2228. height: math.unit(5.385, "feet"),
  2229. weight: math.unit(100, "kg"),
  2230. name: "Kneeling",
  2231. image: {
  2232. source: "./media/characters/adake/kneel.svg",
  2233. bottom: 0.052
  2234. }
  2235. },
  2236. },
  2237. [
  2238. {
  2239. name: "Normal",
  2240. height: math.unit(7, "feet"),
  2241. },
  2242. {
  2243. name: "Macro",
  2244. height: math.unit(78, "feet"),
  2245. default: true
  2246. },
  2247. {
  2248. name: "Macro+",
  2249. height: math.unit(300, "meters")
  2250. },
  2251. {
  2252. name: "Macro++",
  2253. height: math.unit(2400, "meters")
  2254. },
  2255. {
  2256. name: "Megamacro",
  2257. height: math.unit(5167, "meters")
  2258. },
  2259. {
  2260. name: "Gigamacro",
  2261. height: math.unit(41769, "miles")
  2262. },
  2263. ]
  2264. ))
  2265. characterMakers.push(() => makeCharacter(
  2266. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2267. {
  2268. front: {
  2269. height: math.unit(1.65, "meters"),
  2270. weight: math.unit(50, "kg"),
  2271. name: "Front",
  2272. image: {
  2273. source: "./media/characters/elijah/front.svg",
  2274. extra: 858 / 830,
  2275. bottom: 95.5 / 953.8559
  2276. }
  2277. },
  2278. back: {
  2279. height: math.unit(1.65, "meters"),
  2280. weight: math.unit(50, "kg"),
  2281. name: "Back",
  2282. image: {
  2283. source: "./media/characters/elijah/back.svg",
  2284. extra: 895 / 850,
  2285. bottom: 5.3 / 897.956
  2286. }
  2287. },
  2288. frontNsfw: {
  2289. height: math.unit(1.65, "meters"),
  2290. weight: math.unit(50, "kg"),
  2291. name: "Front (NSFW)",
  2292. image: {
  2293. source: "./media/characters/elijah/front-nsfw.svg",
  2294. extra: 858 / 830,
  2295. bottom: 95.5 / 953.8559
  2296. }
  2297. },
  2298. backNsfw: {
  2299. height: math.unit(1.65, "meters"),
  2300. weight: math.unit(50, "kg"),
  2301. name: "Back (NSFW)",
  2302. image: {
  2303. source: "./media/characters/elijah/back-nsfw.svg",
  2304. extra: 895 / 850,
  2305. bottom: 5.3 / 897.956
  2306. }
  2307. },
  2308. dick: {
  2309. height: math.unit(1, "feet"),
  2310. name: "Dick",
  2311. image: {
  2312. source: "./media/characters/elijah/dick.svg"
  2313. }
  2314. },
  2315. beakOpen: {
  2316. height: math.unit(1.25, "feet"),
  2317. name: "Beak (Open)",
  2318. image: {
  2319. source: "./media/characters/elijah/beak-open.svg"
  2320. }
  2321. },
  2322. beakShut: {
  2323. height: math.unit(1.25, "feet"),
  2324. name: "Beak (Shut)",
  2325. image: {
  2326. source: "./media/characters/elijah/beak-shut.svg"
  2327. }
  2328. },
  2329. footFlexing: {
  2330. height: math.unit(1.61, "feet"),
  2331. name: "Foot (Flexing)",
  2332. image: {
  2333. source: "./media/characters/elijah/foot-flexing.svg"
  2334. }
  2335. },
  2336. footStepping: {
  2337. height: math.unit(1.44, "feet"),
  2338. name: "Foot (Stepping)",
  2339. image: {
  2340. source: "./media/characters/elijah/foot-stepping.svg"
  2341. }
  2342. },
  2343. plantigradeLeg: {
  2344. height: math.unit(2.34, "feet"),
  2345. name: "Plantigrade Leg",
  2346. image: {
  2347. source: "./media/characters/elijah/plantigrade-leg.svg"
  2348. }
  2349. },
  2350. plantigradeFootLeft: {
  2351. height: math.unit(0.9, "feet"),
  2352. name: "Plantigrade Foot (Left)",
  2353. image: {
  2354. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2355. }
  2356. },
  2357. plantigradeFootRight: {
  2358. height: math.unit(0.9, "feet"),
  2359. name: "Plantigrade Foot (Right)",
  2360. image: {
  2361. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2362. }
  2363. },
  2364. },
  2365. [
  2366. {
  2367. name: "Normal",
  2368. height: math.unit(1.65, "meters")
  2369. },
  2370. {
  2371. name: "Macro",
  2372. height: math.unit(55, "meters"),
  2373. default: true
  2374. },
  2375. {
  2376. name: "Macro+",
  2377. height: math.unit(105, "meters")
  2378. },
  2379. ]
  2380. ))
  2381. characterMakers.push(() => makeCharacter(
  2382. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2383. {
  2384. front: {
  2385. height: math.unit(7 + 2/12, "feet"),
  2386. weight: math.unit(320, "kg"),
  2387. name: "Front",
  2388. image: {
  2389. source: "./media/characters/rai/front.svg",
  2390. extra: 1802/1696,
  2391. bottom: 68/1870
  2392. }
  2393. },
  2394. frontDressed: {
  2395. height: math.unit(7 + 2/12, "feet"),
  2396. weight: math.unit(320, "kg"),
  2397. name: "Front (Dressed)",
  2398. image: {
  2399. source: "./media/characters/rai/front-dressed.svg",
  2400. extra: 1802/1696,
  2401. bottom: 68/1870
  2402. }
  2403. },
  2404. side: {
  2405. height: math.unit(7 + 2/12, "feet"),
  2406. weight: math.unit(320, "kg"),
  2407. name: "Side",
  2408. image: {
  2409. source: "./media/characters/rai/side.svg",
  2410. extra: 1789/1710,
  2411. bottom: 115/1904
  2412. }
  2413. },
  2414. back: {
  2415. height: math.unit(7 + 2/12, "feet"),
  2416. weight: math.unit(320, "kg"),
  2417. name: "Back",
  2418. image: {
  2419. source: "./media/characters/rai/back.svg",
  2420. extra: 1770/1707,
  2421. bottom: 28/1798
  2422. }
  2423. },
  2424. feral: {
  2425. height: math.unit(9.5, "feet"),
  2426. weight: math.unit(640, "kg"),
  2427. name: "Feral",
  2428. image: {
  2429. source: "./media/characters/rai/feral.svg",
  2430. extra: 945/553,
  2431. bottom: 176/1121
  2432. }
  2433. },
  2434. dragon: {
  2435. height: math.unit(23, "feet"),
  2436. weight: math.unit(50000, "lb"),
  2437. name: "Dragon",
  2438. image: {
  2439. source: "./media/characters/rai/dragon.svg",
  2440. extra: 2498 / 2030,
  2441. bottom: 85.2 / 2584
  2442. }
  2443. },
  2444. maw: {
  2445. height: math.unit(1.69, "feet"),
  2446. name: "Maw",
  2447. image: {
  2448. source: "./media/characters/rai/maw.svg"
  2449. }
  2450. },
  2451. },
  2452. [
  2453. {
  2454. name: "Normal",
  2455. height: math.unit(7 + 2/12, "feet")
  2456. },
  2457. {
  2458. name: "Big",
  2459. height: math.unit(11, "feet")
  2460. },
  2461. {
  2462. name: "Macro",
  2463. height: math.unit(302, "feet"),
  2464. default: true
  2465. },
  2466. ]
  2467. ))
  2468. characterMakers.push(() => makeCharacter(
  2469. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2470. {
  2471. frontDressed: {
  2472. height: math.unit(216, "feet"),
  2473. weight: math.unit(7000000, "lb"),
  2474. name: "Front (Dressed)",
  2475. image: {
  2476. source: "./media/characters/jazzy/front-dressed.svg",
  2477. extra: 2738 / 2651,
  2478. bottom: 41.8 / 2786
  2479. }
  2480. },
  2481. backDressed: {
  2482. height: math.unit(216, "feet"),
  2483. weight: math.unit(7000000, "lb"),
  2484. name: "Back (Dressed)",
  2485. image: {
  2486. source: "./media/characters/jazzy/back-dressed.svg",
  2487. extra: 2775 / 2673,
  2488. bottom: 36.8 / 2817
  2489. }
  2490. },
  2491. front: {
  2492. height: math.unit(216, "feet"),
  2493. weight: math.unit(7000000, "lb"),
  2494. name: "Front",
  2495. image: {
  2496. source: "./media/characters/jazzy/front.svg",
  2497. extra: 2738 / 2651,
  2498. bottom: 41.8 / 2786
  2499. }
  2500. },
  2501. back: {
  2502. height: math.unit(216, "feet"),
  2503. weight: math.unit(7000000, "lb"),
  2504. name: "Back",
  2505. image: {
  2506. source: "./media/characters/jazzy/back.svg",
  2507. extra: 2775 / 2673,
  2508. bottom: 36.8 / 2817
  2509. }
  2510. },
  2511. maw: {
  2512. height: math.unit(20, "feet"),
  2513. name: "Maw",
  2514. image: {
  2515. source: "./media/characters/jazzy/maw.svg"
  2516. }
  2517. },
  2518. paws: {
  2519. height: math.unit(27.5, "feet"),
  2520. name: "Paws",
  2521. image: {
  2522. source: "./media/characters/jazzy/paws.svg"
  2523. }
  2524. },
  2525. eye: {
  2526. height: math.unit(4.4, "feet"),
  2527. name: "Eye",
  2528. image: {
  2529. source: "./media/characters/jazzy/eye.svg"
  2530. }
  2531. },
  2532. droneOffense: {
  2533. height: math.unit(9.5, "inches"),
  2534. name: "Drone (Offense)",
  2535. image: {
  2536. source: "./media/characters/jazzy/drone-offense.svg"
  2537. }
  2538. },
  2539. droneRecon: {
  2540. height: math.unit(9.5, "inches"),
  2541. name: "Drone (Recon)",
  2542. image: {
  2543. source: "./media/characters/jazzy/drone-recon.svg"
  2544. }
  2545. },
  2546. droneDefense: {
  2547. height: math.unit(9.5, "inches"),
  2548. name: "Drone (Defense)",
  2549. image: {
  2550. source: "./media/characters/jazzy/drone-defense.svg"
  2551. }
  2552. },
  2553. },
  2554. [
  2555. {
  2556. name: "Macro",
  2557. height: math.unit(216, "feet"),
  2558. default: true
  2559. },
  2560. ]
  2561. ))
  2562. characterMakers.push(() => makeCharacter(
  2563. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2564. {
  2565. front: {
  2566. height: math.unit(9 + 6/12, "feet"),
  2567. weight: math.unit(700, "lb"),
  2568. name: "Front",
  2569. image: {
  2570. source: "./media/characters/flamm/front.svg",
  2571. extra: 1751/1632,
  2572. bottom: 46/1797
  2573. }
  2574. },
  2575. buff: {
  2576. height: math.unit(9 + 6/12, "feet"),
  2577. weight: math.unit(950, "lb"),
  2578. name: "Buff",
  2579. image: {
  2580. source: "./media/characters/flamm/buff.svg",
  2581. extra: 3018/2874,
  2582. bottom: 221/3239
  2583. }
  2584. },
  2585. },
  2586. [
  2587. {
  2588. name: "Normal",
  2589. height: math.unit(9.5, "feet")
  2590. },
  2591. {
  2592. name: "Macro",
  2593. height: math.unit(200, "feet"),
  2594. default: true
  2595. },
  2596. ]
  2597. ))
  2598. characterMakers.push(() => makeCharacter(
  2599. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2600. {
  2601. front: {
  2602. height: math.unit(5 + 3/12, "feet"),
  2603. weight: math.unit(60, "kg"),
  2604. name: "Front",
  2605. image: {
  2606. source: "./media/characters/zephiro/front.svg",
  2607. extra: 2309 / 2162,
  2608. bottom: 0.069
  2609. }
  2610. },
  2611. side: {
  2612. height: math.unit(5 + 3/12, "feet"),
  2613. weight: math.unit(60, "kg"),
  2614. name: "Side",
  2615. image: {
  2616. source: "./media/characters/zephiro/side.svg",
  2617. extra: 2403 / 2279,
  2618. bottom: 0.015
  2619. }
  2620. },
  2621. back: {
  2622. height: math.unit(5 + 3/12, "feet"),
  2623. weight: math.unit(60, "kg"),
  2624. name: "Back",
  2625. image: {
  2626. source: "./media/characters/zephiro/back.svg",
  2627. extra: 2373 / 2244,
  2628. bottom: 0.013
  2629. }
  2630. },
  2631. hand: {
  2632. height: math.unit(0.68, "feet"),
  2633. name: "Hand",
  2634. image: {
  2635. source: "./media/characters/zephiro/hand.svg"
  2636. }
  2637. },
  2638. paw: {
  2639. height: math.unit(1, "feet"),
  2640. name: "Paw",
  2641. image: {
  2642. source: "./media/characters/zephiro/paw.svg"
  2643. }
  2644. },
  2645. beans: {
  2646. height: math.unit(0.93, "feet"),
  2647. name: "Beans",
  2648. image: {
  2649. source: "./media/characters/zephiro/beans.svg"
  2650. }
  2651. },
  2652. },
  2653. [
  2654. {
  2655. name: "Micro",
  2656. height: math.unit(3, "inches")
  2657. },
  2658. {
  2659. name: "Normal",
  2660. height: math.unit(5 + 3 / 12, "feet"),
  2661. default: true
  2662. },
  2663. {
  2664. name: "Macro",
  2665. height: math.unit(118, "feet")
  2666. },
  2667. ]
  2668. ))
  2669. characterMakers.push(() => makeCharacter(
  2670. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2671. {
  2672. front: {
  2673. height: math.unit(5, "feet"),
  2674. weight: math.unit(90, "kg"),
  2675. name: "Front",
  2676. image: {
  2677. source: "./media/characters/fory/front.svg",
  2678. extra: 2862 / 2674,
  2679. bottom: 180 / 3043.8
  2680. }
  2681. },
  2682. back: {
  2683. height: math.unit(5, "feet"),
  2684. weight: math.unit(90, "kg"),
  2685. name: "Back",
  2686. image: {
  2687. source: "./media/characters/fory/back.svg",
  2688. extra: 2962 / 2791,
  2689. bottom: 106 / 3071.8
  2690. }
  2691. },
  2692. foot: {
  2693. height: math.unit(2.14, "feet"),
  2694. name: "Foot",
  2695. image: {
  2696. source: "./media/characters/fory/foot.svg"
  2697. }
  2698. },
  2699. },
  2700. [
  2701. {
  2702. name: "Normal",
  2703. height: math.unit(5, "feet")
  2704. },
  2705. {
  2706. name: "Macro",
  2707. height: math.unit(50, "feet"),
  2708. default: true
  2709. },
  2710. {
  2711. name: "Megamacro",
  2712. height: math.unit(10, "miles")
  2713. },
  2714. {
  2715. name: "Gigamacro",
  2716. height: math.unit(5, "earths")
  2717. },
  2718. ]
  2719. ))
  2720. characterMakers.push(() => makeCharacter(
  2721. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2722. {
  2723. front: {
  2724. height: math.unit(7, "feet"),
  2725. weight: math.unit(90, "kg"),
  2726. name: "Front",
  2727. image: {
  2728. source: "./media/characters/kurrikage/front.svg",
  2729. extra: 1845/1733,
  2730. bottom: 119/1964
  2731. }
  2732. },
  2733. back: {
  2734. height: math.unit(7, "feet"),
  2735. weight: math.unit(90, "kg"),
  2736. name: "Back",
  2737. image: {
  2738. source: "./media/characters/kurrikage/back.svg",
  2739. extra: 1790/1677,
  2740. bottom: 61/1851
  2741. }
  2742. },
  2743. dressed: {
  2744. height: math.unit(7, "feet"),
  2745. weight: math.unit(90, "kg"),
  2746. name: "Dressed",
  2747. image: {
  2748. source: "./media/characters/kurrikage/dressed.svg",
  2749. extra: 1845/1733,
  2750. bottom: 119/1964
  2751. }
  2752. },
  2753. foot: {
  2754. height: math.unit(1.5, "feet"),
  2755. name: "Foot",
  2756. image: {
  2757. source: "./media/characters/kurrikage/foot.svg"
  2758. }
  2759. },
  2760. staff: {
  2761. height: math.unit(6.7, "feet"),
  2762. name: "Staff",
  2763. image: {
  2764. source: "./media/characters/kurrikage/staff.svg"
  2765. }
  2766. },
  2767. peek: {
  2768. height: math.unit(1.05, "feet"),
  2769. name: "Peeking",
  2770. image: {
  2771. source: "./media/characters/kurrikage/peek.svg",
  2772. bottom: 0.08
  2773. }
  2774. },
  2775. },
  2776. [
  2777. {
  2778. name: "Normal",
  2779. height: math.unit(12, "feet"),
  2780. default: true
  2781. },
  2782. {
  2783. name: "Big",
  2784. height: math.unit(20, "feet")
  2785. },
  2786. {
  2787. name: "Macro",
  2788. height: math.unit(500, "feet")
  2789. },
  2790. {
  2791. name: "Megamacro",
  2792. height: math.unit(20, "miles")
  2793. },
  2794. ]
  2795. ))
  2796. characterMakers.push(() => makeCharacter(
  2797. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2798. {
  2799. front: {
  2800. height: math.unit(6, "feet"),
  2801. weight: math.unit(75, "kg"),
  2802. name: "Front",
  2803. image: {
  2804. source: "./media/characters/shingo/front.svg",
  2805. extra: 1900/1825,
  2806. bottom: 82/1982
  2807. }
  2808. },
  2809. side: {
  2810. height: math.unit(6, "feet"),
  2811. weight: math.unit(75, "kg"),
  2812. name: "Side",
  2813. image: {
  2814. source: "./media/characters/shingo/side.svg",
  2815. extra: 1930/1865,
  2816. bottom: 16/1946
  2817. }
  2818. },
  2819. back: {
  2820. height: math.unit(6, "feet"),
  2821. weight: math.unit(75, "kg"),
  2822. name: "Back",
  2823. image: {
  2824. source: "./media/characters/shingo/back.svg",
  2825. extra: 1922/1852,
  2826. bottom: 16/1938
  2827. }
  2828. },
  2829. frontDressed: {
  2830. height: math.unit(6, "feet"),
  2831. weight: math.unit(150, "lb"),
  2832. name: "Front-dressed",
  2833. image: {
  2834. source: "./media/characters/shingo/front-dressed.svg",
  2835. extra: 1900/1825,
  2836. bottom: 82/1982
  2837. }
  2838. },
  2839. paw: {
  2840. height: math.unit(1.29, "feet"),
  2841. name: "Paw",
  2842. image: {
  2843. source: "./media/characters/shingo/paw.svg"
  2844. }
  2845. },
  2846. hand: {
  2847. height: math.unit(1.07, "feet"),
  2848. name: "Hand",
  2849. image: {
  2850. source: "./media/characters/shingo/hand.svg"
  2851. }
  2852. },
  2853. frontAlt: {
  2854. height: math.unit(6, "feet"),
  2855. weight: math.unit(75, "kg"),
  2856. name: "Front (Alt)",
  2857. image: {
  2858. source: "./media/characters/shingo/front-alt.svg",
  2859. extra: 3511 / 3338,
  2860. bottom: 0.005
  2861. }
  2862. },
  2863. frontAlt2: {
  2864. height: math.unit(6, "feet"),
  2865. weight: math.unit(75, "kg"),
  2866. name: "Front (Alt 2)",
  2867. image: {
  2868. source: "./media/characters/shingo/front-alt-2.svg",
  2869. extra: 706/681,
  2870. bottom: 11/717
  2871. }
  2872. },
  2873. pawAlt: {
  2874. height: math.unit(1, "feet"),
  2875. name: "Paw (Alt)",
  2876. image: {
  2877. source: "./media/characters/shingo/paw-alt.svg"
  2878. }
  2879. },
  2880. },
  2881. [
  2882. {
  2883. name: "Micro",
  2884. height: math.unit(4, "inches")
  2885. },
  2886. {
  2887. name: "Normal",
  2888. height: math.unit(6, "feet"),
  2889. default: true
  2890. },
  2891. {
  2892. name: "Macro",
  2893. height: math.unit(108, "feet")
  2894. },
  2895. {
  2896. name: "Macro+",
  2897. height: math.unit(1500, "feet")
  2898. },
  2899. ]
  2900. ))
  2901. characterMakers.push(() => makeCharacter(
  2902. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2903. {
  2904. side: {
  2905. height: math.unit(6, "feet"),
  2906. weight: math.unit(75, "kg"),
  2907. name: "Side",
  2908. image: {
  2909. source: "./media/characters/aigey/side.svg"
  2910. }
  2911. },
  2912. },
  2913. [
  2914. {
  2915. name: "Macro",
  2916. height: math.unit(200, "feet"),
  2917. default: true
  2918. },
  2919. {
  2920. name: "Megamacro",
  2921. height: math.unit(100, "miles")
  2922. },
  2923. ]
  2924. )
  2925. )
  2926. characterMakers.push(() => makeCharacter(
  2927. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2928. {
  2929. front: {
  2930. height: math.unit(5 + 5 / 12, "feet"),
  2931. weight: math.unit(75, "kg"),
  2932. name: "Front",
  2933. image: {
  2934. source: "./media/characters/natasha/front.svg",
  2935. extra: 859 / 824,
  2936. bottom: 23 / 879.6
  2937. }
  2938. },
  2939. frontNsfw: {
  2940. height: math.unit(5 + 5 / 12, "feet"),
  2941. weight: math.unit(75, "kg"),
  2942. name: "Front (NSFW)",
  2943. image: {
  2944. source: "./media/characters/natasha/front-nsfw.svg",
  2945. extra: 859 / 824,
  2946. bottom: 23 / 879.6
  2947. }
  2948. },
  2949. frontErect: {
  2950. height: math.unit(5 + 5 / 12, "feet"),
  2951. weight: math.unit(75, "kg"),
  2952. name: "Front (Erect)",
  2953. image: {
  2954. source: "./media/characters/natasha/front-erect.svg",
  2955. extra: 859 / 824,
  2956. bottom: 23 / 879.6
  2957. }
  2958. },
  2959. back: {
  2960. height: math.unit(5 + 5 / 12, "feet"),
  2961. weight: math.unit(75, "kg"),
  2962. name: "Back",
  2963. image: {
  2964. source: "./media/characters/natasha/back.svg",
  2965. extra: 887.9 / 852.6,
  2966. bottom: 9.7 / 896.4
  2967. }
  2968. },
  2969. backAlt: {
  2970. height: math.unit(5 + 5 / 12, "feet"),
  2971. weight: math.unit(75, "kg"),
  2972. name: "Back (Alt)",
  2973. image: {
  2974. source: "./media/characters/natasha/back-alt.svg",
  2975. extra: 1236.7 / 1192,
  2976. bottom: 22.3 / 1258.2
  2977. }
  2978. },
  2979. dick: {
  2980. height: math.unit(1.772, "feet"),
  2981. name: "Dick",
  2982. image: {
  2983. source: "./media/characters/natasha/dick.svg"
  2984. }
  2985. },
  2986. paw: {
  2987. height: math.unit(0.250, "meters"),
  2988. name: "Paw",
  2989. image: {
  2990. source: "./media/characters/natasha/paw.svg"
  2991. }
  2992. },
  2993. },
  2994. [
  2995. {
  2996. name: "Normal",
  2997. height: math.unit(5 + 5 / 12, "feet")
  2998. },
  2999. {
  3000. name: "Large",
  3001. height: math.unit(12, "feet")
  3002. },
  3003. {
  3004. name: "Macro",
  3005. height: math.unit(100, "feet"),
  3006. default: true
  3007. },
  3008. {
  3009. name: "Macro+",
  3010. height: math.unit(260, "feet")
  3011. },
  3012. {
  3013. name: "Macro++",
  3014. height: math.unit(1, "mile")
  3015. },
  3016. ]
  3017. ))
  3018. characterMakers.push(() => makeCharacter(
  3019. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3020. {
  3021. front: {
  3022. height: math.unit(6, "feet"),
  3023. weight: math.unit(75, "kg"),
  3024. name: "Front",
  3025. image: {
  3026. source: "./media/characters/malik/front.svg"
  3027. }
  3028. },
  3029. side: {
  3030. height: math.unit(6, "feet"),
  3031. weight: math.unit(75, "kg"),
  3032. name: "Side",
  3033. image: {
  3034. source: "./media/characters/malik/side.svg",
  3035. extra: 1.1539
  3036. }
  3037. },
  3038. back: {
  3039. height: math.unit(6, "feet"),
  3040. weight: math.unit(75, "kg"),
  3041. name: "Back",
  3042. image: {
  3043. source: "./media/characters/malik/back.svg"
  3044. }
  3045. },
  3046. },
  3047. [
  3048. {
  3049. name: "Macro",
  3050. height: math.unit(156, "feet"),
  3051. default: true
  3052. },
  3053. {
  3054. name: "Macro+",
  3055. height: math.unit(1188, "feet")
  3056. },
  3057. ]
  3058. ))
  3059. characterMakers.push(() => makeCharacter(
  3060. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3061. {
  3062. front: {
  3063. height: math.unit(6, "feet"),
  3064. weight: math.unit(75, "kg"),
  3065. name: "Front",
  3066. image: {
  3067. source: "./media/characters/sefer/front.svg",
  3068. extra: 848 / 659,
  3069. bottom: 28.3 / 876.442
  3070. }
  3071. },
  3072. back: {
  3073. height: math.unit(6, "feet"),
  3074. weight: math.unit(75, "kg"),
  3075. name: "Back",
  3076. image: {
  3077. source: "./media/characters/sefer/back.svg",
  3078. extra: 864 / 695,
  3079. bottom: 10 / 871
  3080. }
  3081. },
  3082. frontDressed: {
  3083. height: math.unit(6, "feet"),
  3084. weight: math.unit(75, "kg"),
  3085. name: "Front (Dressed)",
  3086. image: {
  3087. source: "./media/characters/sefer/front-dressed.svg",
  3088. extra: 839 / 653,
  3089. bottom: 37.6 / 878
  3090. }
  3091. },
  3092. },
  3093. [
  3094. {
  3095. name: "Normal",
  3096. height: math.unit(6, "feet"),
  3097. default: true
  3098. },
  3099. ]
  3100. ))
  3101. characterMakers.push(() => makeCharacter(
  3102. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3103. {
  3104. body: {
  3105. height: math.unit(2.2428, "meter"),
  3106. weight: math.unit(124.738, "kg"),
  3107. name: "Body",
  3108. image: {
  3109. extra: 1225 / 1050,
  3110. source: "./media/characters/north/front.svg"
  3111. }
  3112. }
  3113. },
  3114. [
  3115. {
  3116. name: "Micro",
  3117. height: math.unit(4, "inches")
  3118. },
  3119. {
  3120. name: "Macro",
  3121. height: math.unit(63, "meters")
  3122. },
  3123. {
  3124. name: "Megamacro",
  3125. height: math.unit(101, "miles"),
  3126. default: true
  3127. }
  3128. ]
  3129. ))
  3130. characterMakers.push(() => makeCharacter(
  3131. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3132. {
  3133. angled: {
  3134. height: math.unit(4, "meter"),
  3135. weight: math.unit(150, "kg"),
  3136. name: "Angled",
  3137. image: {
  3138. source: "./media/characters/talan/angled-sfw.svg",
  3139. bottom: 29 / 3734
  3140. }
  3141. },
  3142. angledNsfw: {
  3143. height: math.unit(4, "meter"),
  3144. weight: math.unit(150, "kg"),
  3145. name: "Angled (NSFW)",
  3146. image: {
  3147. source: "./media/characters/talan/angled-nsfw.svg",
  3148. bottom: 29 / 3734
  3149. }
  3150. },
  3151. frontNsfw: {
  3152. height: math.unit(4, "meter"),
  3153. weight: math.unit(150, "kg"),
  3154. name: "Front (NSFW)",
  3155. image: {
  3156. source: "./media/characters/talan/front-nsfw.svg",
  3157. bottom: 29 / 3734
  3158. }
  3159. },
  3160. sideNsfw: {
  3161. height: math.unit(4, "meter"),
  3162. weight: math.unit(150, "kg"),
  3163. name: "Side (NSFW)",
  3164. image: {
  3165. source: "./media/characters/talan/side-nsfw.svg",
  3166. bottom: 29 / 3734
  3167. }
  3168. },
  3169. back: {
  3170. height: math.unit(4, "meter"),
  3171. weight: math.unit(150, "kg"),
  3172. name: "Back",
  3173. image: {
  3174. source: "./media/characters/talan/back.svg"
  3175. }
  3176. },
  3177. dickBottom: {
  3178. height: math.unit(0.621, "meter"),
  3179. name: "Dick (Bottom)",
  3180. image: {
  3181. source: "./media/characters/talan/dick-bottom.svg"
  3182. }
  3183. },
  3184. dickTop: {
  3185. height: math.unit(0.621, "meter"),
  3186. name: "Dick (Top)",
  3187. image: {
  3188. source: "./media/characters/talan/dick-top.svg"
  3189. }
  3190. },
  3191. dickSide: {
  3192. height: math.unit(0.305, "meter"),
  3193. name: "Dick (Side)",
  3194. image: {
  3195. source: "./media/characters/talan/dick-side.svg"
  3196. }
  3197. },
  3198. dickFront: {
  3199. height: math.unit(0.305, "meter"),
  3200. name: "Dick (Front)",
  3201. image: {
  3202. source: "./media/characters/talan/dick-front.svg"
  3203. }
  3204. },
  3205. },
  3206. [
  3207. {
  3208. name: "Normal",
  3209. height: math.unit(4, "meters")
  3210. },
  3211. {
  3212. name: "Macro",
  3213. height: math.unit(100, "meters")
  3214. },
  3215. {
  3216. name: "Megamacro",
  3217. height: math.unit(2, "miles"),
  3218. default: true
  3219. },
  3220. {
  3221. name: "Gigamacro",
  3222. height: math.unit(5000, "miles")
  3223. },
  3224. {
  3225. name: "Teramacro",
  3226. height: math.unit(100, "parsecs")
  3227. }
  3228. ]
  3229. ))
  3230. characterMakers.push(() => makeCharacter(
  3231. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3232. {
  3233. front: {
  3234. height: math.unit(2, "meter"),
  3235. weight: math.unit(90, "kg"),
  3236. name: "Front",
  3237. image: {
  3238. source: "./media/characters/gael'rathus/front.svg"
  3239. }
  3240. },
  3241. frontAlt: {
  3242. height: math.unit(2, "meter"),
  3243. weight: math.unit(90, "kg"),
  3244. name: "Front (alt)",
  3245. image: {
  3246. source: "./media/characters/gael'rathus/front-alt.svg"
  3247. }
  3248. },
  3249. frontAlt2: {
  3250. height: math.unit(2, "meter"),
  3251. weight: math.unit(90, "kg"),
  3252. name: "Front (alt 2)",
  3253. image: {
  3254. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3255. }
  3256. }
  3257. },
  3258. [
  3259. {
  3260. name: "Normal",
  3261. height: math.unit(9, "feet"),
  3262. default: true
  3263. },
  3264. {
  3265. name: "Large",
  3266. height: math.unit(25, "feet")
  3267. },
  3268. {
  3269. name: "Macro",
  3270. height: math.unit(0.25, "miles")
  3271. },
  3272. {
  3273. name: "Megamacro",
  3274. height: math.unit(10, "miles")
  3275. }
  3276. ]
  3277. ))
  3278. characterMakers.push(() => makeCharacter(
  3279. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3280. {
  3281. side: {
  3282. height: math.unit(2, "meter"),
  3283. weight: math.unit(140, "kg"),
  3284. name: "Side",
  3285. image: {
  3286. source: "./media/characters/sosha/side.svg",
  3287. bottom: 0.042
  3288. }
  3289. },
  3290. },
  3291. [
  3292. {
  3293. name: "Normal",
  3294. height: math.unit(12, "feet"),
  3295. default: true
  3296. }
  3297. ]
  3298. ))
  3299. characterMakers.push(() => makeCharacter(
  3300. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3301. {
  3302. side: {
  3303. height: math.unit(5 + 5 / 12, "feet"),
  3304. weight: math.unit(170, "kg"),
  3305. name: "Side",
  3306. image: {
  3307. source: "./media/characters/runnola/side.svg",
  3308. extra: 741 / 448,
  3309. bottom: 0.05
  3310. }
  3311. },
  3312. },
  3313. [
  3314. {
  3315. name: "Small",
  3316. height: math.unit(3, "feet")
  3317. },
  3318. {
  3319. name: "Normal",
  3320. height: math.unit(5 + 5 / 12, "feet"),
  3321. default: true
  3322. },
  3323. {
  3324. name: "Big",
  3325. height: math.unit(10, "feet")
  3326. },
  3327. ]
  3328. ))
  3329. characterMakers.push(() => makeCharacter(
  3330. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3331. {
  3332. front: {
  3333. height: math.unit(2, "meter"),
  3334. weight: math.unit(50, "kg"),
  3335. name: "Front",
  3336. image: {
  3337. source: "./media/characters/kurribird/front.svg",
  3338. bottom: 0.015
  3339. }
  3340. },
  3341. frontAlt: {
  3342. height: math.unit(1.5, "meter"),
  3343. weight: math.unit(50, "kg"),
  3344. name: "Front (Alt)",
  3345. image: {
  3346. source: "./media/characters/kurribird/front-alt.svg",
  3347. extra: 1.45
  3348. }
  3349. },
  3350. },
  3351. [
  3352. {
  3353. name: "Normal",
  3354. height: math.unit(7, "feet")
  3355. },
  3356. {
  3357. name: "Big",
  3358. height: math.unit(12, "feet"),
  3359. default: true
  3360. },
  3361. {
  3362. name: "Macro",
  3363. height: math.unit(1500, "feet")
  3364. },
  3365. {
  3366. name: "Megamacro",
  3367. height: math.unit(2, "miles")
  3368. }
  3369. ]
  3370. ))
  3371. characterMakers.push(() => makeCharacter(
  3372. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3373. {
  3374. front: {
  3375. height: math.unit(2, "meter"),
  3376. weight: math.unit(80, "kg"),
  3377. name: "Front",
  3378. image: {
  3379. source: "./media/characters/elbial/front.svg",
  3380. extra: 1643 / 1556,
  3381. bottom: 60.2 / 1696
  3382. }
  3383. },
  3384. side: {
  3385. height: math.unit(2, "meter"),
  3386. weight: math.unit(80, "kg"),
  3387. name: "Side",
  3388. image: {
  3389. source: "./media/characters/elbial/side.svg",
  3390. extra: 1630 / 1565,
  3391. bottom: 71.5 / 1697
  3392. }
  3393. },
  3394. back: {
  3395. height: math.unit(2, "meter"),
  3396. weight: math.unit(80, "kg"),
  3397. name: "Back",
  3398. image: {
  3399. source: "./media/characters/elbial/back.svg",
  3400. extra: 1668 / 1595,
  3401. bottom: 5.6 / 1672
  3402. }
  3403. },
  3404. frontDressed: {
  3405. height: math.unit(2, "meter"),
  3406. weight: math.unit(80, "kg"),
  3407. name: "Front (Dressed)",
  3408. image: {
  3409. source: "./media/characters/elbial/front-dressed.svg",
  3410. extra: 1653 / 1584,
  3411. bottom: 57 / 1708
  3412. }
  3413. },
  3414. genitals: {
  3415. height: math.unit(2 / 3.367, "meter"),
  3416. name: "Genitals",
  3417. image: {
  3418. source: "./media/characters/elbial/genitals.svg"
  3419. }
  3420. },
  3421. },
  3422. [
  3423. {
  3424. name: "Large",
  3425. height: math.unit(100, "feet")
  3426. },
  3427. {
  3428. name: "Macro",
  3429. height: math.unit(500, "feet"),
  3430. default: true
  3431. },
  3432. {
  3433. name: "Megamacro",
  3434. height: math.unit(10, "miles")
  3435. },
  3436. {
  3437. name: "Gigamacro",
  3438. height: math.unit(25000, "miles")
  3439. },
  3440. {
  3441. name: "Full-Size",
  3442. height: math.unit(8000000, "gigaparsecs")
  3443. }
  3444. ]
  3445. ))
  3446. characterMakers.push(() => makeCharacter(
  3447. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3448. {
  3449. front: {
  3450. height: math.unit(2, "meter"),
  3451. weight: math.unit(60, "kg"),
  3452. name: "Front",
  3453. image: {
  3454. source: "./media/characters/noah/front.svg"
  3455. }
  3456. },
  3457. talons: {
  3458. height: math.unit(0.315, "meter"),
  3459. name: "Talons",
  3460. image: {
  3461. source: "./media/characters/noah/talons.svg"
  3462. }
  3463. }
  3464. },
  3465. [
  3466. {
  3467. name: "Large",
  3468. height: math.unit(50, "feet")
  3469. },
  3470. {
  3471. name: "Macro",
  3472. height: math.unit(750, "feet"),
  3473. default: true
  3474. },
  3475. {
  3476. name: "Megamacro",
  3477. height: math.unit(50, "miles")
  3478. },
  3479. {
  3480. name: "Gigamacro",
  3481. height: math.unit(100000, "miles")
  3482. },
  3483. {
  3484. name: "Full-Size",
  3485. height: math.unit(3000000000, "miles")
  3486. }
  3487. ]
  3488. ))
  3489. characterMakers.push(() => makeCharacter(
  3490. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3491. {
  3492. front: {
  3493. height: math.unit(2, "meter"),
  3494. weight: math.unit(80, "kg"),
  3495. name: "Front",
  3496. image: {
  3497. source: "./media/characters/natalya/front.svg"
  3498. }
  3499. },
  3500. back: {
  3501. height: math.unit(2, "meter"),
  3502. weight: math.unit(80, "kg"),
  3503. name: "Back",
  3504. image: {
  3505. source: "./media/characters/natalya/back.svg"
  3506. }
  3507. }
  3508. },
  3509. [
  3510. {
  3511. name: "Normal",
  3512. height: math.unit(150, "feet"),
  3513. default: true
  3514. },
  3515. {
  3516. name: "Megamacro",
  3517. height: math.unit(5, "miles")
  3518. },
  3519. {
  3520. name: "Full-Size",
  3521. height: math.unit(600, "kiloparsecs")
  3522. }
  3523. ]
  3524. ))
  3525. characterMakers.push(() => makeCharacter(
  3526. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3527. {
  3528. front: {
  3529. height: math.unit(2, "meter"),
  3530. weight: math.unit(50, "kg"),
  3531. name: "Front",
  3532. image: {
  3533. source: "./media/characters/erestrebah/front.svg",
  3534. extra: 1262/1162,
  3535. bottom: 96/1358
  3536. }
  3537. },
  3538. back: {
  3539. height: math.unit(2, "meter"),
  3540. weight: math.unit(50, "kg"),
  3541. name: "Back",
  3542. image: {
  3543. source: "./media/characters/erestrebah/back.svg",
  3544. extra: 1257/1139,
  3545. bottom: 13/1270
  3546. }
  3547. },
  3548. wing: {
  3549. height: math.unit(2, "meter"),
  3550. weight: math.unit(50, "kg"),
  3551. name: "Wing",
  3552. image: {
  3553. source: "./media/characters/erestrebah/wing.svg",
  3554. extra: 1262/1162,
  3555. bottom: 96/1358
  3556. }
  3557. },
  3558. mouth: {
  3559. height: math.unit(0.39, "feet"),
  3560. name: "Mouth",
  3561. image: {
  3562. source: "./media/characters/erestrebah/mouth.svg"
  3563. }
  3564. }
  3565. },
  3566. [
  3567. {
  3568. name: "Normal",
  3569. height: math.unit(10, "feet")
  3570. },
  3571. {
  3572. name: "Large",
  3573. height: math.unit(50, "feet"),
  3574. default: true
  3575. },
  3576. {
  3577. name: "Macro",
  3578. height: math.unit(300, "feet")
  3579. },
  3580. {
  3581. name: "Macro+",
  3582. height: math.unit(750, "feet")
  3583. },
  3584. {
  3585. name: "Megamacro",
  3586. height: math.unit(3, "miles")
  3587. }
  3588. ]
  3589. ))
  3590. characterMakers.push(() => makeCharacter(
  3591. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3592. {
  3593. front: {
  3594. height: math.unit(2, "meter"),
  3595. weight: math.unit(80, "kg"),
  3596. name: "Front",
  3597. image: {
  3598. source: "./media/characters/jennifer/front.svg",
  3599. bottom: 0.11,
  3600. extra: 1.16
  3601. }
  3602. },
  3603. frontAlt: {
  3604. height: math.unit(2, "meter"),
  3605. weight: math.unit(80, "kg"),
  3606. name: "Front (Alt)",
  3607. image: {
  3608. source: "./media/characters/jennifer/front-alt.svg"
  3609. }
  3610. }
  3611. },
  3612. [
  3613. {
  3614. name: "Canon Height",
  3615. height: math.unit(120, "feet"),
  3616. default: true
  3617. },
  3618. {
  3619. name: "Macro+",
  3620. height: math.unit(300, "feet")
  3621. },
  3622. {
  3623. name: "Megamacro",
  3624. height: math.unit(20000, "feet")
  3625. }
  3626. ]
  3627. ))
  3628. characterMakers.push(() => makeCharacter(
  3629. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3630. {
  3631. front: {
  3632. height: math.unit(2, "meter"),
  3633. weight: math.unit(50, "kg"),
  3634. name: "Front",
  3635. image: {
  3636. source: "./media/characters/kalista/front.svg",
  3637. extra: 1947 / 1700,
  3638. bottom: 76.6 / 1412.98
  3639. }
  3640. },
  3641. back: {
  3642. height: math.unit(2, "meter"),
  3643. weight: math.unit(50, "kg"),
  3644. name: "Back",
  3645. image: {
  3646. source: "./media/characters/kalista/back.svg",
  3647. extra: 1366 / 1156,
  3648. bottom: 33.9 / 1362.78
  3649. }
  3650. }
  3651. },
  3652. [
  3653. {
  3654. name: "Uncomfortably Small",
  3655. height: math.unit(10, "feet")
  3656. },
  3657. {
  3658. name: "Small",
  3659. height: math.unit(30, "feet")
  3660. },
  3661. {
  3662. name: "Macro",
  3663. height: math.unit(100, "feet"),
  3664. default: true
  3665. },
  3666. {
  3667. name: "Macro+",
  3668. height: math.unit(2000, "feet")
  3669. },
  3670. {
  3671. name: "True Form",
  3672. height: math.unit(8924, "miles")
  3673. }
  3674. ]
  3675. ))
  3676. characterMakers.push(() => makeCharacter(
  3677. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3678. {
  3679. front: {
  3680. height: math.unit(2, "meter"),
  3681. weight: math.unit(120, "kg"),
  3682. name: "Front",
  3683. image: {
  3684. source: "./media/characters/ggv/front.svg"
  3685. }
  3686. },
  3687. side: {
  3688. height: math.unit(2, "meter"),
  3689. weight: math.unit(120, "kg"),
  3690. name: "Side",
  3691. image: {
  3692. source: "./media/characters/ggv/side.svg"
  3693. }
  3694. }
  3695. },
  3696. [
  3697. {
  3698. name: "Extremely Puny",
  3699. height: math.unit(9 + 5 / 12, "feet")
  3700. },
  3701. {
  3702. name: "Horribly Small",
  3703. height: math.unit(47.7, "miles"),
  3704. default: true
  3705. },
  3706. {
  3707. name: "Reasonably Sized",
  3708. height: math.unit(25000, "parsecs")
  3709. },
  3710. {
  3711. name: "Slightly Uncompressed",
  3712. height: math.unit(7.77e31, "parsecs")
  3713. },
  3714. {
  3715. name: "Omniversal",
  3716. height: math.unit(1e300, "meters")
  3717. },
  3718. ]
  3719. ))
  3720. characterMakers.push(() => makeCharacter(
  3721. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3722. {
  3723. front: {
  3724. height: math.unit(2, "meter"),
  3725. weight: math.unit(75, "lb"),
  3726. name: "Front",
  3727. image: {
  3728. source: "./media/characters/napalm/front.svg"
  3729. }
  3730. },
  3731. back: {
  3732. height: math.unit(2, "meter"),
  3733. weight: math.unit(75, "lb"),
  3734. name: "Back",
  3735. image: {
  3736. source: "./media/characters/napalm/back.svg"
  3737. }
  3738. }
  3739. },
  3740. [
  3741. {
  3742. name: "Standard",
  3743. height: math.unit(55, "feet"),
  3744. default: true
  3745. }
  3746. ]
  3747. ))
  3748. characterMakers.push(() => makeCharacter(
  3749. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3750. {
  3751. front: {
  3752. height: math.unit(7 + 5 / 6, "feet"),
  3753. weight: math.unit(325, "lb"),
  3754. name: "Front",
  3755. image: {
  3756. source: "./media/characters/asana/front.svg",
  3757. extra: 1133 / 1060,
  3758. bottom: 15.2 / 1148.6
  3759. }
  3760. },
  3761. back: {
  3762. height: math.unit(7 + 5 / 6, "feet"),
  3763. weight: math.unit(325, "lb"),
  3764. name: "Back",
  3765. image: {
  3766. source: "./media/characters/asana/back.svg",
  3767. extra: 1114 / 1043,
  3768. bottom: 5 / 1120
  3769. }
  3770. },
  3771. dressedDark: {
  3772. height: math.unit(7 + 5 / 6, "feet"),
  3773. weight: math.unit(325, "lb"),
  3774. name: "Dressed (Dark)",
  3775. image: {
  3776. source: "./media/characters/asana/dressed-dark.svg",
  3777. extra: 1133 / 1060,
  3778. bottom: 15.2 / 1148.6
  3779. }
  3780. },
  3781. dressedLight: {
  3782. height: math.unit(7 + 5 / 6, "feet"),
  3783. weight: math.unit(325, "lb"),
  3784. name: "Dressed (Light)",
  3785. image: {
  3786. source: "./media/characters/asana/dressed-light.svg",
  3787. extra: 1133 / 1060,
  3788. bottom: 15.2 / 1148.6
  3789. }
  3790. },
  3791. },
  3792. [
  3793. {
  3794. name: "Standard",
  3795. height: math.unit(7 + 5 / 6, "feet"),
  3796. default: true
  3797. },
  3798. {
  3799. name: "Large",
  3800. height: math.unit(10, "meters")
  3801. },
  3802. {
  3803. name: "Macro",
  3804. height: math.unit(2500, "meters")
  3805. },
  3806. {
  3807. name: "Megamacro",
  3808. height: math.unit(5e6, "meters")
  3809. },
  3810. {
  3811. name: "Examacro",
  3812. height: math.unit(5e12, "lightyears")
  3813. },
  3814. {
  3815. name: "Max Size",
  3816. height: math.unit(1e31, "lightyears")
  3817. }
  3818. ]
  3819. ))
  3820. characterMakers.push(() => makeCharacter(
  3821. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3822. {
  3823. front: {
  3824. height: math.unit(2, "meter"),
  3825. weight: math.unit(60, "kg"),
  3826. name: "Front",
  3827. image: {
  3828. source: "./media/characters/ebony/front.svg",
  3829. bottom: 0.03,
  3830. extra: 1045 / 810 + 0.03
  3831. }
  3832. },
  3833. side: {
  3834. height: math.unit(2, "meter"),
  3835. weight: math.unit(60, "kg"),
  3836. name: "Side",
  3837. image: {
  3838. source: "./media/characters/ebony/side.svg",
  3839. bottom: 0.03,
  3840. extra: 1045 / 810 + 0.03
  3841. }
  3842. },
  3843. back: {
  3844. height: math.unit(2, "meter"),
  3845. weight: math.unit(60, "kg"),
  3846. name: "Back",
  3847. image: {
  3848. source: "./media/characters/ebony/back.svg",
  3849. bottom: 0.01,
  3850. extra: 1045 / 810 + 0.01
  3851. }
  3852. },
  3853. },
  3854. [
  3855. // TODO check why I did this lol
  3856. {
  3857. name: "Standard",
  3858. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3859. default: true
  3860. },
  3861. {
  3862. name: "Macro",
  3863. height: math.unit(200, "feet")
  3864. },
  3865. {
  3866. name: "Gigamacro",
  3867. height: math.unit(13000, "km")
  3868. }
  3869. ]
  3870. ))
  3871. characterMakers.push(() => makeCharacter(
  3872. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3873. {
  3874. front: {
  3875. height: math.unit(6, "feet"),
  3876. weight: math.unit(175, "lb"),
  3877. name: "Front",
  3878. image: {
  3879. source: "./media/characters/mountain/front.svg",
  3880. extra: 972 / 955,
  3881. bottom: 64 / 1036.6
  3882. }
  3883. },
  3884. back: {
  3885. height: math.unit(6, "feet"),
  3886. weight: math.unit(175, "lb"),
  3887. name: "Back",
  3888. image: {
  3889. source: "./media/characters/mountain/back.svg",
  3890. extra: 970 / 950,
  3891. bottom: 28.25 / 999
  3892. }
  3893. },
  3894. },
  3895. [
  3896. {
  3897. name: "Large",
  3898. height: math.unit(20, "meters")
  3899. },
  3900. {
  3901. name: "Macro",
  3902. height: math.unit(300, "meters")
  3903. },
  3904. {
  3905. name: "Gigamacro",
  3906. height: math.unit(10000, "km"),
  3907. default: true
  3908. },
  3909. {
  3910. name: "Examacro",
  3911. height: math.unit(10e9, "lightyears")
  3912. }
  3913. ]
  3914. ))
  3915. characterMakers.push(() => makeCharacter(
  3916. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3917. {
  3918. front: {
  3919. height: math.unit(8, "feet"),
  3920. weight: math.unit(500, "lb"),
  3921. name: "Front",
  3922. image: {
  3923. source: "./media/characters/rick/front.svg"
  3924. }
  3925. }
  3926. },
  3927. [
  3928. {
  3929. name: "Normal",
  3930. height: math.unit(8, "feet"),
  3931. default: true
  3932. },
  3933. {
  3934. name: "Macro",
  3935. height: math.unit(5, "km")
  3936. }
  3937. ]
  3938. ))
  3939. characterMakers.push(() => makeCharacter(
  3940. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3941. {
  3942. front: {
  3943. height: math.unit(8, "feet"),
  3944. weight: math.unit(120, "lb"),
  3945. name: "Front",
  3946. image: {
  3947. source: "./media/characters/ona/front.svg"
  3948. }
  3949. },
  3950. frontAlt: {
  3951. height: math.unit(8, "feet"),
  3952. weight: math.unit(120, "lb"),
  3953. name: "Front (Alt)",
  3954. image: {
  3955. source: "./media/characters/ona/front-alt.svg"
  3956. }
  3957. },
  3958. back: {
  3959. height: math.unit(8, "feet"),
  3960. weight: math.unit(120, "lb"),
  3961. name: "Back",
  3962. image: {
  3963. source: "./media/characters/ona/back.svg"
  3964. }
  3965. },
  3966. foot: {
  3967. height: math.unit(1.1, "feet"),
  3968. name: "Foot",
  3969. image: {
  3970. source: "./media/characters/ona/foot.svg"
  3971. }
  3972. }
  3973. },
  3974. [
  3975. {
  3976. name: "Megamacro",
  3977. height: math.unit(70, "km"),
  3978. default: true
  3979. },
  3980. {
  3981. name: "Gigamacro",
  3982. height: math.unit(681818, "miles")
  3983. },
  3984. {
  3985. name: "Examacro",
  3986. height: math.unit(3800000, "lightyears")
  3987. },
  3988. ]
  3989. ))
  3990. characterMakers.push(() => makeCharacter(
  3991. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3992. {
  3993. front: {
  3994. height: math.unit(12, "feet"),
  3995. weight: math.unit(3000, "lb"),
  3996. name: "Front",
  3997. image: {
  3998. source: "./media/characters/mech/front.svg",
  3999. extra: 2900 / 2770,
  4000. bottom: 110 / 3010
  4001. }
  4002. },
  4003. back: {
  4004. height: math.unit(12, "feet"),
  4005. weight: math.unit(3000, "lb"),
  4006. name: "Back",
  4007. image: {
  4008. source: "./media/characters/mech/back.svg",
  4009. extra: 3011 / 2890,
  4010. bottom: 94 / 3105
  4011. }
  4012. },
  4013. maw: {
  4014. height: math.unit(3.07, "feet"),
  4015. name: "Maw",
  4016. image: {
  4017. source: "./media/characters/mech/maw.svg"
  4018. }
  4019. },
  4020. head: {
  4021. height: math.unit(2.82, "feet"),
  4022. name: "Head",
  4023. image: {
  4024. source: "./media/characters/mech/head.svg"
  4025. }
  4026. },
  4027. dick: {
  4028. height: math.unit(1.43, "feet"),
  4029. name: "Dick",
  4030. image: {
  4031. source: "./media/characters/mech/dick.svg"
  4032. }
  4033. },
  4034. },
  4035. [
  4036. {
  4037. name: "Normal",
  4038. height: math.unit(12, "feet")
  4039. },
  4040. {
  4041. name: "Macro",
  4042. height: math.unit(300, "feet"),
  4043. default: true
  4044. },
  4045. {
  4046. name: "Macro+",
  4047. height: math.unit(1500, "feet")
  4048. },
  4049. ]
  4050. ))
  4051. characterMakers.push(() => makeCharacter(
  4052. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4053. {
  4054. front: {
  4055. height: math.unit(1.3, "meter"),
  4056. weight: math.unit(30, "kg"),
  4057. name: "Front",
  4058. image: {
  4059. source: "./media/characters/gregory/front.svg",
  4060. }
  4061. }
  4062. },
  4063. [
  4064. {
  4065. name: "Normal",
  4066. height: math.unit(1.3, "meter"),
  4067. default: true
  4068. },
  4069. {
  4070. name: "Macro",
  4071. height: math.unit(20, "meter")
  4072. }
  4073. ]
  4074. ))
  4075. characterMakers.push(() => makeCharacter(
  4076. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4077. {
  4078. front: {
  4079. height: math.unit(2.8, "meter"),
  4080. weight: math.unit(200, "kg"),
  4081. name: "Front",
  4082. image: {
  4083. source: "./media/characters/elory/front.svg",
  4084. }
  4085. }
  4086. },
  4087. [
  4088. {
  4089. name: "Normal",
  4090. height: math.unit(2.8, "meter"),
  4091. default: true
  4092. },
  4093. {
  4094. name: "Macro",
  4095. height: math.unit(38, "meter")
  4096. }
  4097. ]
  4098. ))
  4099. characterMakers.push(() => makeCharacter(
  4100. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4101. {
  4102. front: {
  4103. height: math.unit(470, "feet"),
  4104. weight: math.unit(924, "tons"),
  4105. name: "Front",
  4106. image: {
  4107. source: "./media/characters/angelpatamon/front.svg",
  4108. }
  4109. }
  4110. },
  4111. [
  4112. {
  4113. name: "Normal",
  4114. height: math.unit(470, "feet"),
  4115. default: true
  4116. },
  4117. {
  4118. name: "Deity Size I",
  4119. height: math.unit(28651.2, "km")
  4120. },
  4121. {
  4122. name: "Deity Size II",
  4123. height: math.unit(171907.2, "km")
  4124. }
  4125. ]
  4126. ))
  4127. characterMakers.push(() => makeCharacter(
  4128. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4129. {
  4130. side: {
  4131. height: math.unit(7.2, "meter"),
  4132. weight: math.unit(8.2, "tons"),
  4133. name: "Side",
  4134. image: {
  4135. source: "./media/characters/cryae/side.svg",
  4136. extra: 3500 / 1500
  4137. }
  4138. }
  4139. },
  4140. [
  4141. {
  4142. name: "Normal",
  4143. height: math.unit(7.2, "meter"),
  4144. default: true
  4145. }
  4146. ]
  4147. ))
  4148. characterMakers.push(() => makeCharacter(
  4149. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4150. {
  4151. front: {
  4152. height: math.unit(6, "feet"),
  4153. weight: math.unit(175, "lb"),
  4154. name: "Front",
  4155. image: {
  4156. source: "./media/characters/xera/front.svg",
  4157. extra: 2377 / 1972,
  4158. bottom: 75.5 / 2452
  4159. }
  4160. },
  4161. side: {
  4162. height: math.unit(6, "feet"),
  4163. weight: math.unit(175, "lb"),
  4164. name: "Side",
  4165. image: {
  4166. source: "./media/characters/xera/side.svg",
  4167. extra: 2345 / 2019,
  4168. bottom: 39.7 / 2384
  4169. }
  4170. },
  4171. back: {
  4172. height: math.unit(6, "feet"),
  4173. weight: math.unit(175, "lb"),
  4174. name: "Back",
  4175. image: {
  4176. source: "./media/characters/xera/back.svg",
  4177. extra: 2095 / 1984,
  4178. bottom: 67 / 2166
  4179. }
  4180. },
  4181. },
  4182. [
  4183. {
  4184. name: "Small",
  4185. height: math.unit(10, "feet")
  4186. },
  4187. {
  4188. name: "Macro",
  4189. height: math.unit(500, "meters"),
  4190. default: true
  4191. },
  4192. {
  4193. name: "Macro+",
  4194. height: math.unit(10, "km")
  4195. },
  4196. {
  4197. name: "Gigamacro",
  4198. height: math.unit(25000, "km")
  4199. },
  4200. {
  4201. name: "Teramacro",
  4202. height: math.unit(3e6, "km")
  4203. }
  4204. ]
  4205. ))
  4206. characterMakers.push(() => makeCharacter(
  4207. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4208. {
  4209. front: {
  4210. height: math.unit(6, "feet"),
  4211. weight: math.unit(175, "lb"),
  4212. name: "Front",
  4213. image: {
  4214. source: "./media/characters/nebula/front.svg",
  4215. extra: 2566 / 2362,
  4216. bottom: 81 / 2644
  4217. }
  4218. }
  4219. },
  4220. [
  4221. {
  4222. name: "Small",
  4223. height: math.unit(4.5, "meters")
  4224. },
  4225. {
  4226. name: "Macro",
  4227. height: math.unit(1500, "meters"),
  4228. default: true
  4229. },
  4230. {
  4231. name: "Megamacro",
  4232. height: math.unit(150, "km")
  4233. },
  4234. {
  4235. name: "Gigamacro",
  4236. height: math.unit(27000, "km")
  4237. }
  4238. ]
  4239. ))
  4240. characterMakers.push(() => makeCharacter(
  4241. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4242. {
  4243. front: {
  4244. height: math.unit(6, "feet"),
  4245. weight: math.unit(225, "lb"),
  4246. name: "Front",
  4247. image: {
  4248. source: "./media/characters/abysgar/front.svg"
  4249. }
  4250. }
  4251. },
  4252. [
  4253. {
  4254. name: "Small",
  4255. height: math.unit(4.5, "meters")
  4256. },
  4257. {
  4258. name: "Macro",
  4259. height: math.unit(1250, "meters"),
  4260. default: true
  4261. },
  4262. {
  4263. name: "Megamacro",
  4264. height: math.unit(125, "km")
  4265. },
  4266. {
  4267. name: "Gigamacro",
  4268. height: math.unit(26000, "km")
  4269. }
  4270. ]
  4271. ))
  4272. characterMakers.push(() => makeCharacter(
  4273. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4274. {
  4275. front: {
  4276. height: math.unit(6, "feet"),
  4277. weight: math.unit(180, "lb"),
  4278. name: "Front",
  4279. image: {
  4280. source: "./media/characters/yakuz/front.svg"
  4281. }
  4282. }
  4283. },
  4284. [
  4285. {
  4286. name: "Small",
  4287. height: math.unit(5, "meters")
  4288. },
  4289. {
  4290. name: "Macro",
  4291. height: math.unit(1500, "meters"),
  4292. default: true
  4293. },
  4294. {
  4295. name: "Megamacro",
  4296. height: math.unit(200, "km")
  4297. },
  4298. {
  4299. name: "Gigamacro",
  4300. height: math.unit(100000, "km")
  4301. }
  4302. ]
  4303. ))
  4304. characterMakers.push(() => makeCharacter(
  4305. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4306. {
  4307. front: {
  4308. height: math.unit(6, "feet"),
  4309. weight: math.unit(175, "lb"),
  4310. name: "Front",
  4311. image: {
  4312. source: "./media/characters/mirova/front.svg",
  4313. extra: 3334 / 3071,
  4314. bottom: 42 / 3375.6
  4315. }
  4316. }
  4317. },
  4318. [
  4319. {
  4320. name: "Small",
  4321. height: math.unit(5, "meters")
  4322. },
  4323. {
  4324. name: "Macro",
  4325. height: math.unit(900, "meters"),
  4326. default: true
  4327. },
  4328. {
  4329. name: "Megamacro",
  4330. height: math.unit(135, "km")
  4331. },
  4332. {
  4333. name: "Gigamacro",
  4334. height: math.unit(20000, "km")
  4335. }
  4336. ]
  4337. ))
  4338. characterMakers.push(() => makeCharacter(
  4339. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4340. {
  4341. side: {
  4342. height: math.unit(28.35, "feet"),
  4343. weight: math.unit(99.75, "tons"),
  4344. name: "Side",
  4345. image: {
  4346. source: "./media/characters/asana-mech/side.svg",
  4347. extra: 923 / 699,
  4348. bottom: 50 / 975
  4349. }
  4350. },
  4351. chaingun: {
  4352. height: math.unit(7, "feet"),
  4353. weight: math.unit(2400, "lb"),
  4354. name: "Chaingun",
  4355. image: {
  4356. source: "./media/characters/asana-mech/chaingun.svg"
  4357. }
  4358. },
  4359. laser: {
  4360. height: math.unit(7.12, "feet"),
  4361. weight: math.unit(2000, "lb"),
  4362. name: "Laser",
  4363. image: {
  4364. source: "./media/characters/asana-mech/laser.svg"
  4365. }
  4366. },
  4367. },
  4368. [
  4369. {
  4370. name: "Normal",
  4371. height: math.unit(28.35, "feet"),
  4372. default: true
  4373. },
  4374. {
  4375. name: "Macro",
  4376. height: math.unit(2500, "feet")
  4377. },
  4378. {
  4379. name: "Megamacro",
  4380. height: math.unit(25, "miles")
  4381. },
  4382. {
  4383. name: "Examacro",
  4384. height: math.unit(6e8, "lightyears")
  4385. },
  4386. ]
  4387. ))
  4388. characterMakers.push(() => makeCharacter(
  4389. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4390. {
  4391. front: {
  4392. height: math.unit(5, "meters"),
  4393. weight: math.unit(1000, "kg"),
  4394. name: "Front",
  4395. image: {
  4396. source: "./media/characters/asche/front.svg",
  4397. extra: 1258 / 1190,
  4398. bottom: 47 / 1305
  4399. }
  4400. },
  4401. frontUnderwear: {
  4402. height: math.unit(5, "meters"),
  4403. weight: math.unit(1000, "kg"),
  4404. name: "Front (Underwear)",
  4405. image: {
  4406. source: "./media/characters/asche/front-underwear.svg",
  4407. extra: 1258 / 1190,
  4408. bottom: 47 / 1305
  4409. }
  4410. },
  4411. frontDressed: {
  4412. height: math.unit(5, "meters"),
  4413. weight: math.unit(1000, "kg"),
  4414. name: "Front (Dressed)",
  4415. image: {
  4416. source: "./media/characters/asche/front-dressed.svg",
  4417. extra: 1258 / 1190,
  4418. bottom: 47 / 1305
  4419. }
  4420. },
  4421. frontArmor: {
  4422. height: math.unit(5, "meters"),
  4423. weight: math.unit(1000, "kg"),
  4424. name: "Front (Armored)",
  4425. image: {
  4426. source: "./media/characters/asche/front-armored.svg",
  4427. extra: 1374 / 1308,
  4428. bottom: 23 / 1397
  4429. }
  4430. },
  4431. mp724: {
  4432. height: math.unit(0.96, "meters"),
  4433. weight: math.unit(38, "kg"),
  4434. name: "H&K MP724",
  4435. image: {
  4436. source: "./media/characters/asche/h&k-mp724.svg"
  4437. }
  4438. },
  4439. side: {
  4440. height: math.unit(5, "meters"),
  4441. weight: math.unit(1000, "kg"),
  4442. name: "Side",
  4443. image: {
  4444. source: "./media/characters/asche/side.svg",
  4445. extra: 1717 / 1609,
  4446. bottom: 0.005
  4447. }
  4448. },
  4449. back: {
  4450. height: math.unit(5, "meters"),
  4451. weight: math.unit(1000, "kg"),
  4452. name: "Back",
  4453. image: {
  4454. source: "./media/characters/asche/back.svg",
  4455. extra: 1570 / 1501
  4456. }
  4457. },
  4458. },
  4459. [
  4460. {
  4461. name: "DEFCON 5",
  4462. height: math.unit(5, "meters")
  4463. },
  4464. {
  4465. name: "DEFCON 4",
  4466. height: math.unit(500, "meters"),
  4467. default: true
  4468. },
  4469. {
  4470. name: "DEFCON 3",
  4471. height: math.unit(5, "km")
  4472. },
  4473. {
  4474. name: "DEFCON 2",
  4475. height: math.unit(500, "km")
  4476. },
  4477. {
  4478. name: "DEFCON 1",
  4479. height: math.unit(500000, "km")
  4480. },
  4481. {
  4482. name: "DEFCON 0",
  4483. height: math.unit(3, "gigaparsecs")
  4484. },
  4485. ]
  4486. ))
  4487. characterMakers.push(() => makeCharacter(
  4488. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4489. {
  4490. front: {
  4491. height: math.unit(2, "meters"),
  4492. weight: math.unit(76, "kg"),
  4493. name: "Front",
  4494. image: {
  4495. source: "./media/characters/gale/front.svg"
  4496. }
  4497. },
  4498. frontAlt1: {
  4499. height: math.unit(2, "meters"),
  4500. weight: math.unit(76, "kg"),
  4501. name: "Front (Alt 1)",
  4502. image: {
  4503. source: "./media/characters/gale/front-alt-1.svg"
  4504. }
  4505. },
  4506. frontAlt2: {
  4507. height: math.unit(2, "meters"),
  4508. weight: math.unit(76, "kg"),
  4509. name: "Front (Alt 2)",
  4510. image: {
  4511. source: "./media/characters/gale/front-alt-2.svg"
  4512. }
  4513. },
  4514. },
  4515. [
  4516. {
  4517. name: "Normal",
  4518. height: math.unit(7, "feet")
  4519. },
  4520. {
  4521. name: "Macro",
  4522. height: math.unit(150, "feet"),
  4523. default: true
  4524. },
  4525. {
  4526. name: "Macro+",
  4527. height: math.unit(300, "feet")
  4528. },
  4529. ]
  4530. ))
  4531. characterMakers.push(() => makeCharacter(
  4532. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4533. {
  4534. front: {
  4535. height: math.unit(5 + 10/12, "feet"),
  4536. weight: math.unit(67, "kg"),
  4537. name: "Front",
  4538. image: {
  4539. source: "./media/characters/draylen/front.svg",
  4540. extra: 832/777,
  4541. bottom: 85/917
  4542. }
  4543. }
  4544. },
  4545. [
  4546. {
  4547. name: "Normal",
  4548. height: math.unit(5 + 10/12, "feet")
  4549. },
  4550. {
  4551. name: "Macro",
  4552. height: math.unit(150, "feet"),
  4553. default: true
  4554. }
  4555. ]
  4556. ))
  4557. characterMakers.push(() => makeCharacter(
  4558. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4559. {
  4560. front: {
  4561. height: math.unit(7 + 9 / 12, "feet"),
  4562. weight: math.unit(379, "lbs"),
  4563. name: "Front",
  4564. image: {
  4565. source: "./media/characters/chez/front.svg"
  4566. }
  4567. },
  4568. side: {
  4569. height: math.unit(7 + 9 / 12, "feet"),
  4570. weight: math.unit(379, "lbs"),
  4571. name: "Side",
  4572. image: {
  4573. source: "./media/characters/chez/side.svg"
  4574. }
  4575. }
  4576. },
  4577. [
  4578. {
  4579. name: "Normal",
  4580. height: math.unit(7 + 9 / 12, "feet"),
  4581. default: true
  4582. },
  4583. {
  4584. name: "God King",
  4585. height: math.unit(9750000, "meters")
  4586. }
  4587. ]
  4588. ))
  4589. characterMakers.push(() => makeCharacter(
  4590. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4591. {
  4592. front: {
  4593. height: math.unit(6, "feet"),
  4594. weight: math.unit(275, "lbs"),
  4595. name: "Front",
  4596. image: {
  4597. source: "./media/characters/kaylum/front.svg",
  4598. bottom: 0.01,
  4599. extra: 1166 / 1031
  4600. }
  4601. },
  4602. frontWingless: {
  4603. height: math.unit(6, "feet"),
  4604. weight: math.unit(275, "lbs"),
  4605. name: "Front (Wingless)",
  4606. image: {
  4607. source: "./media/characters/kaylum/front-wingless.svg",
  4608. bottom: 0.01,
  4609. extra: 1117 / 1031
  4610. }
  4611. }
  4612. },
  4613. [
  4614. {
  4615. name: "Normal",
  4616. height: math.unit(3.05, "meters")
  4617. },
  4618. {
  4619. name: "Master",
  4620. height: math.unit(5.5, "meters")
  4621. },
  4622. {
  4623. name: "Rampage",
  4624. height: math.unit(19, "meters")
  4625. },
  4626. {
  4627. name: "Macro Lite",
  4628. height: math.unit(37, "meters")
  4629. },
  4630. {
  4631. name: "Hyper Predator",
  4632. height: math.unit(61, "meters")
  4633. },
  4634. {
  4635. name: "Macro",
  4636. height: math.unit(138, "meters"),
  4637. default: true
  4638. }
  4639. ]
  4640. ))
  4641. characterMakers.push(() => makeCharacter(
  4642. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4643. {
  4644. front: {
  4645. height: math.unit(6, "feet"),
  4646. weight: math.unit(150, "lbs"),
  4647. name: "Front",
  4648. image: {
  4649. source: "./media/characters/geta/front.svg"
  4650. }
  4651. }
  4652. },
  4653. [
  4654. {
  4655. name: "Micro",
  4656. height: math.unit(3, "inches"),
  4657. default: true
  4658. },
  4659. {
  4660. name: "Normal",
  4661. height: math.unit(5 + 5 / 12, "feet")
  4662. }
  4663. ]
  4664. ))
  4665. characterMakers.push(() => makeCharacter(
  4666. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4667. {
  4668. front: {
  4669. height: math.unit(6, "feet"),
  4670. weight: math.unit(300, "lbs"),
  4671. name: "Front",
  4672. image: {
  4673. source: "./media/characters/tyrnn/front.svg"
  4674. }
  4675. }
  4676. },
  4677. [
  4678. {
  4679. name: "Main Height",
  4680. height: math.unit(355, "feet"),
  4681. default: true
  4682. },
  4683. {
  4684. name: "Fave. Height",
  4685. height: math.unit(2400, "feet")
  4686. }
  4687. ]
  4688. ))
  4689. characterMakers.push(() => makeCharacter(
  4690. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4691. {
  4692. front: {
  4693. height: math.unit(6, "feet"),
  4694. weight: math.unit(300, "lbs"),
  4695. name: "Front",
  4696. image: {
  4697. source: "./media/characters/appledectomy/front.svg"
  4698. }
  4699. }
  4700. },
  4701. [
  4702. {
  4703. name: "Macro",
  4704. height: math.unit(2500, "feet")
  4705. },
  4706. {
  4707. name: "Megamacro",
  4708. height: math.unit(50, "miles"),
  4709. default: true
  4710. },
  4711. {
  4712. name: "Gigamacro",
  4713. height: math.unit(5000, "miles")
  4714. },
  4715. {
  4716. name: "Teramacro",
  4717. height: math.unit(250000, "miles")
  4718. },
  4719. ]
  4720. ))
  4721. characterMakers.push(() => makeCharacter(
  4722. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4723. {
  4724. front: {
  4725. height: math.unit(6, "feet"),
  4726. weight: math.unit(200, "lbs"),
  4727. name: "Front",
  4728. image: {
  4729. source: "./media/characters/vulpes/front.svg",
  4730. extra: 573 / 543,
  4731. bottom: 0.033
  4732. }
  4733. },
  4734. side: {
  4735. height: math.unit(6, "feet"),
  4736. weight: math.unit(200, "lbs"),
  4737. name: "Side",
  4738. image: {
  4739. source: "./media/characters/vulpes/side.svg",
  4740. extra: 577 / 549,
  4741. bottom: 11 / 588
  4742. }
  4743. },
  4744. back: {
  4745. height: math.unit(6, "feet"),
  4746. weight: math.unit(200, "lbs"),
  4747. name: "Back",
  4748. image: {
  4749. source: "./media/characters/vulpes/back.svg",
  4750. extra: 573 / 549,
  4751. bottom: 20 / 593
  4752. }
  4753. },
  4754. feet: {
  4755. height: math.unit(1.276, "feet"),
  4756. name: "Feet",
  4757. image: {
  4758. source: "./media/characters/vulpes/feet.svg"
  4759. }
  4760. },
  4761. maw: {
  4762. height: math.unit(1.18, "feet"),
  4763. name: "Maw",
  4764. image: {
  4765. source: "./media/characters/vulpes/maw.svg"
  4766. }
  4767. },
  4768. },
  4769. [
  4770. {
  4771. name: "Micro",
  4772. height: math.unit(2, "inches")
  4773. },
  4774. {
  4775. name: "Normal",
  4776. height: math.unit(6.3, "feet")
  4777. },
  4778. {
  4779. name: "Macro",
  4780. height: math.unit(850, "feet")
  4781. },
  4782. {
  4783. name: "Megamacro",
  4784. height: math.unit(7500, "feet"),
  4785. default: true
  4786. },
  4787. {
  4788. name: "Gigamacro",
  4789. height: math.unit(570000, "miles")
  4790. }
  4791. ]
  4792. ))
  4793. characterMakers.push(() => makeCharacter(
  4794. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4795. {
  4796. front: {
  4797. height: math.unit(6, "feet"),
  4798. weight: math.unit(210, "lbs"),
  4799. name: "Front",
  4800. image: {
  4801. source: "./media/characters/rain-fallen/front.svg"
  4802. }
  4803. },
  4804. side: {
  4805. height: math.unit(6, "feet"),
  4806. weight: math.unit(210, "lbs"),
  4807. name: "Side",
  4808. image: {
  4809. source: "./media/characters/rain-fallen/side.svg"
  4810. }
  4811. },
  4812. back: {
  4813. height: math.unit(6, "feet"),
  4814. weight: math.unit(210, "lbs"),
  4815. name: "Back",
  4816. image: {
  4817. source: "./media/characters/rain-fallen/back.svg"
  4818. }
  4819. },
  4820. feral: {
  4821. height: math.unit(9, "feet"),
  4822. weight: math.unit(700, "lbs"),
  4823. name: "Feral",
  4824. image: {
  4825. source: "./media/characters/rain-fallen/feral.svg"
  4826. }
  4827. },
  4828. },
  4829. [
  4830. {
  4831. name: "Meddling with Mortals",
  4832. height: math.unit(8 + 8/12, "feet")
  4833. },
  4834. {
  4835. name: "Normal",
  4836. height: math.unit(5, "meter")
  4837. },
  4838. {
  4839. name: "Macro",
  4840. height: math.unit(150, "meter"),
  4841. default: true
  4842. },
  4843. {
  4844. name: "Megamacro",
  4845. height: math.unit(278e6, "meter")
  4846. },
  4847. {
  4848. name: "Gigamacro",
  4849. height: math.unit(2e9, "meter")
  4850. },
  4851. {
  4852. name: "Teramacro",
  4853. height: math.unit(8e12, "meter")
  4854. },
  4855. {
  4856. name: "Devourer",
  4857. height: math.unit(14, "zettameters")
  4858. },
  4859. {
  4860. name: "Scarlet King",
  4861. height: math.unit(18, "yottameters")
  4862. },
  4863. {
  4864. name: "Void",
  4865. height: math.unit(1e88, "yottameters")
  4866. }
  4867. ]
  4868. ))
  4869. characterMakers.push(() => makeCharacter(
  4870. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4871. {
  4872. standing: {
  4873. height: math.unit(6, "feet"),
  4874. weight: math.unit(180, "lbs"),
  4875. name: "Standing",
  4876. image: {
  4877. source: "./media/characters/zaakira/standing.svg",
  4878. extra: 1599/1504,
  4879. bottom: 39/1638
  4880. }
  4881. },
  4882. laying: {
  4883. height: math.unit(3, "feet"),
  4884. weight: math.unit(180, "lbs"),
  4885. name: "Laying",
  4886. image: {
  4887. source: "./media/characters/zaakira/laying.svg"
  4888. }
  4889. },
  4890. },
  4891. [
  4892. {
  4893. name: "Normal",
  4894. height: math.unit(12, "feet")
  4895. },
  4896. {
  4897. name: "Macro",
  4898. height: math.unit(279, "feet"),
  4899. default: true
  4900. }
  4901. ]
  4902. ))
  4903. characterMakers.push(() => makeCharacter(
  4904. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4905. {
  4906. femSfw: {
  4907. height: math.unit(8, "feet"),
  4908. weight: math.unit(350, "lb"),
  4909. name: "Fem",
  4910. image: {
  4911. source: "./media/characters/sigvald/fem-sfw.svg",
  4912. extra: 182 / 164,
  4913. bottom: 8.7 / 190.5
  4914. }
  4915. },
  4916. femNsfw: {
  4917. height: math.unit(8, "feet"),
  4918. weight: math.unit(350, "lb"),
  4919. name: "Fem (NSFW)",
  4920. image: {
  4921. source: "./media/characters/sigvald/fem-nsfw.svg",
  4922. extra: 182 / 164,
  4923. bottom: 8.7 / 190.5
  4924. }
  4925. },
  4926. maleNsfw: {
  4927. height: math.unit(8, "feet"),
  4928. weight: math.unit(350, "lb"),
  4929. name: "Male (NSFW)",
  4930. image: {
  4931. source: "./media/characters/sigvald/male-nsfw.svg",
  4932. extra: 182 / 164,
  4933. bottom: 8.7 / 190.5
  4934. }
  4935. },
  4936. hermNsfw: {
  4937. height: math.unit(8, "feet"),
  4938. weight: math.unit(350, "lb"),
  4939. name: "Herm (NSFW)",
  4940. image: {
  4941. source: "./media/characters/sigvald/herm-nsfw.svg",
  4942. extra: 182 / 164,
  4943. bottom: 8.7 / 190.5
  4944. }
  4945. },
  4946. dick: {
  4947. height: math.unit(2.36, "feet"),
  4948. name: "Dick",
  4949. image: {
  4950. source: "./media/characters/sigvald/dick.svg"
  4951. }
  4952. },
  4953. eye: {
  4954. height: math.unit(0.31, "feet"),
  4955. name: "Eye",
  4956. image: {
  4957. source: "./media/characters/sigvald/eye.svg"
  4958. }
  4959. },
  4960. mouth: {
  4961. height: math.unit(0.92, "feet"),
  4962. name: "Mouth",
  4963. image: {
  4964. source: "./media/characters/sigvald/mouth.svg"
  4965. }
  4966. },
  4967. paws: {
  4968. height: math.unit(2.2, "feet"),
  4969. name: "Paws",
  4970. image: {
  4971. source: "./media/characters/sigvald/paws.svg"
  4972. }
  4973. }
  4974. },
  4975. [
  4976. {
  4977. name: "Normal",
  4978. height: math.unit(8, "feet")
  4979. },
  4980. {
  4981. name: "Large",
  4982. height: math.unit(12, "feet")
  4983. },
  4984. {
  4985. name: "Larger",
  4986. height: math.unit(20, "feet")
  4987. },
  4988. {
  4989. name: "Macro",
  4990. height: math.unit(150, "feet")
  4991. },
  4992. {
  4993. name: "Macro+",
  4994. height: math.unit(200, "feet"),
  4995. default: true
  4996. },
  4997. ]
  4998. ))
  4999. characterMakers.push(() => makeCharacter(
  5000. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5001. {
  5002. side: {
  5003. height: math.unit(12, "feet"),
  5004. weight: math.unit(2000, "kg"),
  5005. name: "Side",
  5006. image: {
  5007. source: "./media/characters/scott/side.svg",
  5008. extra: 754 / 724,
  5009. bottom: 0.069
  5010. }
  5011. },
  5012. upright: {
  5013. height: math.unit(12, "feet"),
  5014. weight: math.unit(2000, "kg"),
  5015. name: "Upright",
  5016. image: {
  5017. source: "./media/characters/scott/upright.svg",
  5018. extra: 3881 / 3722,
  5019. bottom: 0.05
  5020. }
  5021. },
  5022. },
  5023. [
  5024. {
  5025. name: "Normal",
  5026. height: math.unit(12, "feet"),
  5027. default: true
  5028. },
  5029. ]
  5030. ))
  5031. characterMakers.push(() => makeCharacter(
  5032. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5033. {
  5034. side: {
  5035. height: math.unit(8, "meters"),
  5036. weight: math.unit(84755, "lbs"),
  5037. name: "Side",
  5038. image: {
  5039. source: "./media/characters/tobias/side.svg",
  5040. extra: 1474 / 1096,
  5041. bottom: 38.9 / 1513.1235
  5042. }
  5043. },
  5044. },
  5045. [
  5046. {
  5047. name: "Normal",
  5048. height: math.unit(8, "meters"),
  5049. default: true
  5050. },
  5051. ]
  5052. ))
  5053. characterMakers.push(() => makeCharacter(
  5054. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5055. {
  5056. front: {
  5057. height: math.unit(5.5, "feet"),
  5058. weight: math.unit(400, "lbs"),
  5059. name: "Front",
  5060. image: {
  5061. source: "./media/characters/kieran/front.svg",
  5062. extra: 2694 / 2364,
  5063. bottom: 217 / 2908
  5064. }
  5065. },
  5066. side: {
  5067. height: math.unit(5.5, "feet"),
  5068. weight: math.unit(400, "lbs"),
  5069. name: "Side",
  5070. image: {
  5071. source: "./media/characters/kieran/side.svg",
  5072. extra: 875 / 777,
  5073. bottom: 84.6 / 959
  5074. }
  5075. },
  5076. },
  5077. [
  5078. {
  5079. name: "Normal",
  5080. height: math.unit(5.5, "feet"),
  5081. default: true
  5082. },
  5083. ]
  5084. ))
  5085. characterMakers.push(() => makeCharacter(
  5086. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5087. {
  5088. side: {
  5089. height: math.unit(2, "meters"),
  5090. weight: math.unit(70, "kg"),
  5091. name: "Side",
  5092. image: {
  5093. source: "./media/characters/sanya/side.svg",
  5094. bottom: 0.02,
  5095. extra: 1.02
  5096. }
  5097. },
  5098. },
  5099. [
  5100. {
  5101. name: "Small",
  5102. height: math.unit(2, "meters")
  5103. },
  5104. {
  5105. name: "Normal",
  5106. height: math.unit(3, "meters")
  5107. },
  5108. {
  5109. name: "Macro",
  5110. height: math.unit(16, "meters"),
  5111. default: true
  5112. },
  5113. ]
  5114. ))
  5115. characterMakers.push(() => makeCharacter(
  5116. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5117. {
  5118. front: {
  5119. height: math.unit(2, "meters"),
  5120. weight: math.unit(120, "kg"),
  5121. name: "Front",
  5122. image: {
  5123. source: "./media/characters/miranda/front.svg",
  5124. extra: 195 / 185,
  5125. bottom: 10.9 / 206.5
  5126. }
  5127. },
  5128. back: {
  5129. height: math.unit(2, "meters"),
  5130. weight: math.unit(120, "kg"),
  5131. name: "Back",
  5132. image: {
  5133. source: "./media/characters/miranda/back.svg",
  5134. extra: 201 / 193,
  5135. bottom: 2.3 / 203.7
  5136. }
  5137. },
  5138. },
  5139. [
  5140. {
  5141. name: "Normal",
  5142. height: math.unit(10, "feet"),
  5143. default: true
  5144. }
  5145. ]
  5146. ))
  5147. characterMakers.push(() => makeCharacter(
  5148. { name: "James", species: ["deer"], tags: ["anthro"] },
  5149. {
  5150. side: {
  5151. height: math.unit(2, "meters"),
  5152. weight: math.unit(100, "kg"),
  5153. name: "Front",
  5154. image: {
  5155. source: "./media/characters/james/front.svg",
  5156. extra: 10 / 8.5
  5157. }
  5158. },
  5159. },
  5160. [
  5161. {
  5162. name: "Normal",
  5163. height: math.unit(8.5, "feet"),
  5164. default: true
  5165. }
  5166. ]
  5167. ))
  5168. characterMakers.push(() => makeCharacter(
  5169. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5170. {
  5171. side: {
  5172. height: math.unit(9.5, "feet"),
  5173. weight: math.unit(2500, "lbs"),
  5174. name: "Side",
  5175. image: {
  5176. source: "./media/characters/heather/side.svg"
  5177. }
  5178. },
  5179. },
  5180. [
  5181. {
  5182. name: "Normal",
  5183. height: math.unit(9.5, "feet"),
  5184. default: true
  5185. }
  5186. ]
  5187. ))
  5188. characterMakers.push(() => makeCharacter(
  5189. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5190. {
  5191. side: {
  5192. height: math.unit(6.5, "feet"),
  5193. weight: math.unit(400, "lbs"),
  5194. name: "Side",
  5195. image: {
  5196. source: "./media/characters/lukas/side.svg",
  5197. extra: 7.25 / 6.5
  5198. }
  5199. },
  5200. },
  5201. [
  5202. {
  5203. name: "Normal",
  5204. height: math.unit(6.5, "feet"),
  5205. default: true
  5206. }
  5207. ]
  5208. ))
  5209. characterMakers.push(() => makeCharacter(
  5210. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5211. {
  5212. side: {
  5213. height: math.unit(5, "feet"),
  5214. weight: math.unit(3000, "lbs"),
  5215. name: "Side",
  5216. image: {
  5217. source: "./media/characters/louise/side.svg"
  5218. }
  5219. },
  5220. },
  5221. [
  5222. {
  5223. name: "Normal",
  5224. height: math.unit(5, "feet"),
  5225. default: true
  5226. }
  5227. ]
  5228. ))
  5229. characterMakers.push(() => makeCharacter(
  5230. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5231. {
  5232. side: {
  5233. height: math.unit(6, "feet"),
  5234. weight: math.unit(150, "lbs"),
  5235. name: "Side",
  5236. image: {
  5237. source: "./media/characters/ramona/side.svg"
  5238. }
  5239. },
  5240. },
  5241. [
  5242. {
  5243. name: "Normal",
  5244. height: math.unit(5.3, "meters"),
  5245. default: true
  5246. },
  5247. {
  5248. name: "Macro",
  5249. height: math.unit(20, "stories")
  5250. },
  5251. {
  5252. name: "Macro+",
  5253. height: math.unit(50, "stories")
  5254. },
  5255. ]
  5256. ))
  5257. characterMakers.push(() => makeCharacter(
  5258. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5259. {
  5260. standing: {
  5261. height: math.unit(5.75, "feet"),
  5262. weight: math.unit(160, "lbs"),
  5263. name: "Standing",
  5264. image: {
  5265. source: "./media/characters/deerpuff/standing.svg",
  5266. extra: 682 / 624
  5267. }
  5268. },
  5269. sitting: {
  5270. height: math.unit(5.75 / 1.79, "feet"),
  5271. weight: math.unit(160, "lbs"),
  5272. name: "Sitting",
  5273. image: {
  5274. source: "./media/characters/deerpuff/sitting.svg",
  5275. bottom: 44 / 400,
  5276. extra: 1
  5277. }
  5278. },
  5279. taurLaying: {
  5280. height: math.unit(6, "feet"),
  5281. weight: math.unit(400, "lbs"),
  5282. name: "Taur (Laying)",
  5283. image: {
  5284. source: "./media/characters/deerpuff/taur-laying.svg"
  5285. }
  5286. },
  5287. },
  5288. [
  5289. {
  5290. name: "Puffball",
  5291. height: math.unit(6, "inches")
  5292. },
  5293. {
  5294. name: "Normalpuff",
  5295. height: math.unit(5.75, "feet")
  5296. },
  5297. {
  5298. name: "Macropuff",
  5299. height: math.unit(1500, "feet"),
  5300. default: true
  5301. },
  5302. {
  5303. name: "Megapuff",
  5304. height: math.unit(500, "miles")
  5305. },
  5306. {
  5307. name: "Gigapuff",
  5308. height: math.unit(250000, "miles")
  5309. },
  5310. {
  5311. name: "Omegapuff",
  5312. height: math.unit(1000, "lightyears")
  5313. },
  5314. ]
  5315. ))
  5316. characterMakers.push(() => makeCharacter(
  5317. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5318. {
  5319. stomping: {
  5320. height: math.unit(6, "feet"),
  5321. weight: math.unit(170, "lbs"),
  5322. name: "Stomping",
  5323. image: {
  5324. source: "./media/characters/vivian/stomping.svg"
  5325. }
  5326. },
  5327. sitting: {
  5328. height: math.unit(6 / 1.75, "feet"),
  5329. weight: math.unit(170, "lbs"),
  5330. name: "Sitting",
  5331. image: {
  5332. source: "./media/characters/vivian/sitting.svg",
  5333. bottom: 1 / 6.4,
  5334. extra: 1,
  5335. }
  5336. },
  5337. },
  5338. [
  5339. {
  5340. name: "Normal",
  5341. height: math.unit(7, "feet"),
  5342. default: true
  5343. },
  5344. {
  5345. name: "Macro",
  5346. height: math.unit(10, "stories")
  5347. },
  5348. {
  5349. name: "Macro+",
  5350. height: math.unit(30, "stories")
  5351. },
  5352. {
  5353. name: "Megamacro",
  5354. height: math.unit(10, "miles")
  5355. },
  5356. {
  5357. name: "Megamacro+",
  5358. height: math.unit(2750000, "meters")
  5359. },
  5360. ]
  5361. ))
  5362. characterMakers.push(() => makeCharacter(
  5363. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5364. {
  5365. front: {
  5366. height: math.unit(6, "feet"),
  5367. weight: math.unit(160, "lbs"),
  5368. name: "Front",
  5369. image: {
  5370. source: "./media/characters/prince/front.svg",
  5371. extra: 3400 / 3000
  5372. }
  5373. },
  5374. jumping: {
  5375. height: math.unit(6, "feet"),
  5376. weight: math.unit(160, "lbs"),
  5377. name: "Jumping",
  5378. image: {
  5379. source: "./media/characters/prince/jump.svg",
  5380. extra: 2555 / 2134
  5381. }
  5382. },
  5383. },
  5384. [
  5385. {
  5386. name: "Normal",
  5387. height: math.unit(7.75, "feet"),
  5388. default: true
  5389. },
  5390. {
  5391. name: "Not cute",
  5392. height: math.unit(17, "feet")
  5393. },
  5394. {
  5395. name: "I said NOT",
  5396. height: math.unit(91, "feet")
  5397. },
  5398. {
  5399. name: "Please stop",
  5400. height: math.unit(560, "feet")
  5401. },
  5402. {
  5403. name: "What have you done",
  5404. height: math.unit(2200, "feet")
  5405. },
  5406. {
  5407. name: "Deer God",
  5408. height: math.unit(3.6, "miles")
  5409. },
  5410. ]
  5411. ))
  5412. characterMakers.push(() => makeCharacter(
  5413. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5414. {
  5415. standing: {
  5416. height: math.unit(6, "feet"),
  5417. weight: math.unit(300, "lbs"),
  5418. name: "Standing",
  5419. image: {
  5420. source: "./media/characters/psymon/standing.svg",
  5421. extra: 1888 / 1810,
  5422. bottom: 0.05
  5423. }
  5424. },
  5425. slithering: {
  5426. height: math.unit(6, "feet"),
  5427. weight: math.unit(300, "lbs"),
  5428. name: "Slithering",
  5429. image: {
  5430. source: "./media/characters/psymon/slithering.svg",
  5431. extra: 1330 / 1224
  5432. }
  5433. },
  5434. slitheringAlt: {
  5435. height: math.unit(6, "feet"),
  5436. weight: math.unit(300, "lbs"),
  5437. name: "Slithering (Alt)",
  5438. image: {
  5439. source: "./media/characters/psymon/slithering-alt.svg",
  5440. extra: 1330 / 1224
  5441. }
  5442. },
  5443. },
  5444. [
  5445. {
  5446. name: "Normal",
  5447. height: math.unit(11.25, "feet"),
  5448. default: true
  5449. },
  5450. {
  5451. name: "Large",
  5452. height: math.unit(27, "feet")
  5453. },
  5454. {
  5455. name: "Giant",
  5456. height: math.unit(87, "feet")
  5457. },
  5458. {
  5459. name: "Macro",
  5460. height: math.unit(365, "feet")
  5461. },
  5462. {
  5463. name: "Megamacro",
  5464. height: math.unit(3, "miles")
  5465. },
  5466. {
  5467. name: "World Serpent",
  5468. height: math.unit(8000, "miles")
  5469. },
  5470. ]
  5471. ))
  5472. characterMakers.push(() => makeCharacter(
  5473. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5474. {
  5475. front: {
  5476. height: math.unit(6, "feet"),
  5477. weight: math.unit(180, "lbs"),
  5478. name: "Front",
  5479. image: {
  5480. source: "./media/characters/daimos/front.svg",
  5481. extra: 4160 / 3897,
  5482. bottom: 0.021
  5483. }
  5484. }
  5485. },
  5486. [
  5487. {
  5488. name: "Normal",
  5489. height: math.unit(8, "feet"),
  5490. default: true
  5491. },
  5492. {
  5493. name: "Big Dog",
  5494. height: math.unit(22, "feet")
  5495. },
  5496. {
  5497. name: "Macro",
  5498. height: math.unit(127, "feet")
  5499. },
  5500. {
  5501. name: "Megamacro",
  5502. height: math.unit(3600, "feet")
  5503. },
  5504. ]
  5505. ))
  5506. characterMakers.push(() => makeCharacter(
  5507. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5508. {
  5509. side: {
  5510. height: math.unit(6, "feet"),
  5511. weight: math.unit(180, "lbs"),
  5512. name: "Side",
  5513. image: {
  5514. source: "./media/characters/blake/side.svg",
  5515. extra: 1212 / 1120,
  5516. bottom: 0.05
  5517. }
  5518. },
  5519. crouched: {
  5520. height: math.unit(6 * 0.57, "feet"),
  5521. weight: math.unit(180, "lbs"),
  5522. name: "Crouched",
  5523. image: {
  5524. source: "./media/characters/blake/crouched.svg",
  5525. extra: 840 / 587,
  5526. bottom: 0.04
  5527. }
  5528. },
  5529. bent: {
  5530. height: math.unit(6 * 0.75, "feet"),
  5531. weight: math.unit(180, "lbs"),
  5532. name: "Bent",
  5533. image: {
  5534. source: "./media/characters/blake/bent.svg",
  5535. extra: 592 / 544,
  5536. bottom: 0.035
  5537. }
  5538. },
  5539. },
  5540. [
  5541. {
  5542. name: "Normal",
  5543. height: math.unit(8 + 1 / 6, "feet"),
  5544. default: true
  5545. },
  5546. {
  5547. name: "Big Backside",
  5548. height: math.unit(37, "feet")
  5549. },
  5550. {
  5551. name: "Subway Shredder",
  5552. height: math.unit(72, "feet")
  5553. },
  5554. {
  5555. name: "City Carver",
  5556. height: math.unit(1675, "feet")
  5557. },
  5558. {
  5559. name: "Tectonic Tweaker",
  5560. height: math.unit(2300, "miles")
  5561. },
  5562. ]
  5563. ))
  5564. characterMakers.push(() => makeCharacter(
  5565. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5566. {
  5567. front: {
  5568. height: math.unit(6, "feet"),
  5569. weight: math.unit(180, "lbs"),
  5570. name: "Front",
  5571. image: {
  5572. source: "./media/characters/guisetto/front.svg",
  5573. extra: 856 / 817,
  5574. bottom: 0.06
  5575. }
  5576. },
  5577. airborne: {
  5578. height: math.unit(6, "feet"),
  5579. weight: math.unit(180, "lbs"),
  5580. name: "Airborne",
  5581. image: {
  5582. source: "./media/characters/guisetto/airborne.svg",
  5583. extra: 584 / 525
  5584. }
  5585. },
  5586. },
  5587. [
  5588. {
  5589. name: "Normal",
  5590. height: math.unit(10 + 11 / 12, "feet"),
  5591. default: true
  5592. },
  5593. {
  5594. name: "Large",
  5595. height: math.unit(35, "feet")
  5596. },
  5597. {
  5598. name: "Macro",
  5599. height: math.unit(475, "feet")
  5600. },
  5601. ]
  5602. ))
  5603. characterMakers.push(() => makeCharacter(
  5604. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5605. {
  5606. front: {
  5607. height: math.unit(6, "feet"),
  5608. weight: math.unit(180, "lbs"),
  5609. name: "Front",
  5610. image: {
  5611. source: "./media/characters/luxor/front.svg",
  5612. extra: 2940 / 2152
  5613. }
  5614. },
  5615. back: {
  5616. height: math.unit(6, "feet"),
  5617. weight: math.unit(180, "lbs"),
  5618. name: "Back",
  5619. image: {
  5620. source: "./media/characters/luxor/back.svg",
  5621. extra: 1083 / 960
  5622. }
  5623. },
  5624. },
  5625. [
  5626. {
  5627. name: "Normal",
  5628. height: math.unit(5 + 5 / 6, "feet"),
  5629. default: true
  5630. },
  5631. {
  5632. name: "Lamp",
  5633. height: math.unit(50, "feet")
  5634. },
  5635. {
  5636. name: "Lämp",
  5637. height: math.unit(300, "feet")
  5638. },
  5639. {
  5640. name: "The sun is a lamp",
  5641. height: math.unit(250000, "miles")
  5642. },
  5643. ]
  5644. ))
  5645. characterMakers.push(() => makeCharacter(
  5646. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5647. {
  5648. front: {
  5649. height: math.unit(6, "feet"),
  5650. weight: math.unit(50, "lbs"),
  5651. name: "Front",
  5652. image: {
  5653. source: "./media/characters/huoyan/front.svg"
  5654. }
  5655. },
  5656. side: {
  5657. height: math.unit(6, "feet"),
  5658. weight: math.unit(180, "lbs"),
  5659. name: "Side",
  5660. image: {
  5661. source: "./media/characters/huoyan/side.svg"
  5662. }
  5663. },
  5664. },
  5665. [
  5666. {
  5667. name: "Chef",
  5668. height: math.unit(9, "feet")
  5669. },
  5670. {
  5671. name: "Normal",
  5672. height: math.unit(65, "feet"),
  5673. default: true
  5674. },
  5675. {
  5676. name: "Macro",
  5677. height: math.unit(780, "feet")
  5678. },
  5679. {
  5680. name: "Flaming Mountain",
  5681. height: math.unit(4.8, "miles")
  5682. },
  5683. {
  5684. name: "Celestial",
  5685. height: math.unit(765000, "miles")
  5686. },
  5687. ]
  5688. ))
  5689. characterMakers.push(() => makeCharacter(
  5690. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5691. {
  5692. front: {
  5693. height: math.unit(5 + 3 / 4, "feet"),
  5694. weight: math.unit(120, "lbs"),
  5695. name: "Front",
  5696. image: {
  5697. source: "./media/characters/tails/front.svg"
  5698. }
  5699. }
  5700. },
  5701. [
  5702. {
  5703. name: "Normal",
  5704. height: math.unit(5 + 3 / 4, "feet"),
  5705. default: true
  5706. }
  5707. ]
  5708. ))
  5709. characterMakers.push(() => makeCharacter(
  5710. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5711. {
  5712. front: {
  5713. height: math.unit(4, "feet"),
  5714. weight: math.unit(50, "lbs"),
  5715. name: "Front",
  5716. image: {
  5717. source: "./media/characters/rainy/front.svg"
  5718. }
  5719. }
  5720. },
  5721. [
  5722. {
  5723. name: "Macro",
  5724. height: math.unit(800, "feet"),
  5725. default: true
  5726. }
  5727. ]
  5728. ))
  5729. characterMakers.push(() => makeCharacter(
  5730. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5731. {
  5732. front: {
  5733. height: math.unit(6, "feet"),
  5734. weight: math.unit(150, "lbs"),
  5735. name: "Front",
  5736. image: {
  5737. source: "./media/characters/rainier/front.svg"
  5738. }
  5739. }
  5740. },
  5741. [
  5742. {
  5743. name: "Micro",
  5744. height: math.unit(2, "mm"),
  5745. default: true
  5746. }
  5747. ]
  5748. ))
  5749. characterMakers.push(() => makeCharacter(
  5750. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5751. {
  5752. front: {
  5753. height: math.unit(8 + 4/12, "feet"),
  5754. name: "Front",
  5755. image: {
  5756. source: "./media/characters/andy-renard/front.svg",
  5757. extra: 1839/1726,
  5758. bottom: 134/1973
  5759. }
  5760. },
  5761. back: {
  5762. height: math.unit(8 + 4/12, "feet"),
  5763. name: "Back",
  5764. image: {
  5765. source: "./media/characters/andy-renard/back.svg",
  5766. extra: 1838/1710,
  5767. bottom: 105/1943
  5768. }
  5769. },
  5770. },
  5771. [
  5772. {
  5773. name: "Tall",
  5774. height: math.unit(8 + 4/12, "feet")
  5775. },
  5776. {
  5777. name: "Mini Macro",
  5778. height: math.unit(15, "feet"),
  5779. default: true
  5780. },
  5781. {
  5782. name: "Macro",
  5783. height: math.unit(100, "feet")
  5784. },
  5785. {
  5786. name: "Mega Macro",
  5787. height: math.unit(1000, "feet")
  5788. },
  5789. {
  5790. name: "Giga Macro",
  5791. height: math.unit(10, "miles")
  5792. },
  5793. {
  5794. name: "God Macro",
  5795. height: math.unit(1, "multiverse")
  5796. },
  5797. ]
  5798. ))
  5799. characterMakers.push(() => makeCharacter(
  5800. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5801. {
  5802. front: {
  5803. height: math.unit(6, "feet"),
  5804. weight: math.unit(210, "lbs"),
  5805. name: "Front",
  5806. image: {
  5807. source: "./media/characters/cimmaron/front-sfw.svg",
  5808. extra: 701 / 676,
  5809. bottom: 0.046
  5810. }
  5811. },
  5812. back: {
  5813. height: math.unit(6, "feet"),
  5814. weight: math.unit(210, "lbs"),
  5815. name: "Back",
  5816. image: {
  5817. source: "./media/characters/cimmaron/back-sfw.svg",
  5818. extra: 701 / 676,
  5819. bottom: 0.046
  5820. }
  5821. },
  5822. frontNsfw: {
  5823. height: math.unit(6, "feet"),
  5824. weight: math.unit(210, "lbs"),
  5825. name: "Front (NSFW)",
  5826. image: {
  5827. source: "./media/characters/cimmaron/front-nsfw.svg",
  5828. extra: 701 / 676,
  5829. bottom: 0.046
  5830. }
  5831. },
  5832. backNsfw: {
  5833. height: math.unit(6, "feet"),
  5834. weight: math.unit(210, "lbs"),
  5835. name: "Back (NSFW)",
  5836. image: {
  5837. source: "./media/characters/cimmaron/back-nsfw.svg",
  5838. extra: 701 / 676,
  5839. bottom: 0.046
  5840. }
  5841. },
  5842. dick: {
  5843. height: math.unit(1.714, "feet"),
  5844. name: "Dick",
  5845. image: {
  5846. source: "./media/characters/cimmaron/dick.svg"
  5847. }
  5848. },
  5849. },
  5850. [
  5851. {
  5852. name: "Normal",
  5853. height: math.unit(6, "feet"),
  5854. default: true
  5855. },
  5856. {
  5857. name: "Macro Mayor",
  5858. height: math.unit(350, "meters")
  5859. },
  5860. ]
  5861. ))
  5862. characterMakers.push(() => makeCharacter(
  5863. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5864. {
  5865. front: {
  5866. height: math.unit(6, "feet"),
  5867. weight: math.unit(200, "lbs"),
  5868. name: "Front",
  5869. image: {
  5870. source: "./media/characters/akari/front.svg",
  5871. extra: 962 / 901,
  5872. bottom: 0.04
  5873. }
  5874. }
  5875. },
  5876. [
  5877. {
  5878. name: "Micro",
  5879. height: math.unit(5, "inches"),
  5880. default: true
  5881. },
  5882. {
  5883. name: "Normal",
  5884. height: math.unit(7, "feet")
  5885. },
  5886. ]
  5887. ))
  5888. characterMakers.push(() => makeCharacter(
  5889. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5890. {
  5891. front: {
  5892. height: math.unit(6, "feet"),
  5893. weight: math.unit(140, "lbs"),
  5894. name: "Front",
  5895. image: {
  5896. source: "./media/characters/cynosura/front.svg",
  5897. extra: 896 / 847
  5898. }
  5899. },
  5900. back: {
  5901. height: math.unit(6, "feet"),
  5902. weight: math.unit(140, "lbs"),
  5903. name: "Back",
  5904. image: {
  5905. source: "./media/characters/cynosura/back.svg",
  5906. extra: 1365 / 1250
  5907. }
  5908. },
  5909. },
  5910. [
  5911. {
  5912. name: "Micro",
  5913. height: math.unit(4, "inches")
  5914. },
  5915. {
  5916. name: "Normal",
  5917. height: math.unit(5.75, "feet"),
  5918. default: true
  5919. },
  5920. {
  5921. name: "Tall",
  5922. height: math.unit(10, "feet")
  5923. },
  5924. {
  5925. name: "Big",
  5926. height: math.unit(20, "feet")
  5927. },
  5928. {
  5929. name: "Macro",
  5930. height: math.unit(50, "feet")
  5931. },
  5932. ]
  5933. ))
  5934. characterMakers.push(() => makeCharacter(
  5935. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5936. {
  5937. front: {
  5938. height: math.unit(13 + 2/12, "feet"),
  5939. weight: math.unit(800, "kg"),
  5940. name: "Front",
  5941. image: {
  5942. source: "./media/characters/gin/front.svg",
  5943. extra: 1312/1191,
  5944. bottom: 45/1357
  5945. }
  5946. },
  5947. mouth: {
  5948. height: math.unit(2.39 * 1.8, "feet"),
  5949. name: "Mouth",
  5950. image: {
  5951. source: "./media/characters/gin/mouth.svg"
  5952. }
  5953. },
  5954. hand: {
  5955. height: math.unit(1.57 * 2.19, "feet"),
  5956. name: "Hand",
  5957. image: {
  5958. source: "./media/characters/gin/hand.svg"
  5959. }
  5960. },
  5961. foot: {
  5962. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5963. name: "Foot",
  5964. image: {
  5965. source: "./media/characters/gin/foot.svg"
  5966. }
  5967. },
  5968. sole: {
  5969. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5970. name: "Sole",
  5971. image: {
  5972. source: "./media/characters/gin/sole.svg"
  5973. }
  5974. },
  5975. },
  5976. [
  5977. {
  5978. name: "Very Small",
  5979. height: math.unit(13 + 2 / 12, "feet")
  5980. },
  5981. {
  5982. name: "Micro",
  5983. height: math.unit(600, "miles")
  5984. },
  5985. {
  5986. name: "Regular",
  5987. height: math.unit(20, "earths"),
  5988. default: true
  5989. },
  5990. {
  5991. name: "Macro",
  5992. height: math.unit(2.2, "solarradii")
  5993. },
  5994. {
  5995. name: "Teramacro",
  5996. height: math.unit(1.2, "galaxies")
  5997. },
  5998. {
  5999. name: "Omegamacro",
  6000. height: math.unit(200, "universes")
  6001. },
  6002. ]
  6003. ))
  6004. characterMakers.push(() => makeCharacter(
  6005. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6006. {
  6007. front: {
  6008. height: math.unit(6 + 1 / 6, "feet"),
  6009. weight: math.unit(178, "lbs"),
  6010. name: "Front",
  6011. image: {
  6012. source: "./media/characters/guy/front.svg"
  6013. }
  6014. }
  6015. },
  6016. [
  6017. {
  6018. name: "Normal",
  6019. height: math.unit(6 + 1 / 6, "feet"),
  6020. default: true
  6021. },
  6022. {
  6023. name: "Large",
  6024. height: math.unit(25 + 7 / 12, "feet")
  6025. },
  6026. {
  6027. name: "Macro",
  6028. height: math.unit(60 + 9 / 12, "feet")
  6029. },
  6030. {
  6031. name: "Macro+",
  6032. height: math.unit(246, "feet")
  6033. },
  6034. {
  6035. name: "Macro++",
  6036. height: math.unit(878, "feet")
  6037. }
  6038. ]
  6039. ))
  6040. characterMakers.push(() => makeCharacter(
  6041. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6042. {
  6043. front: {
  6044. height: math.unit(9, "feet"),
  6045. weight: math.unit(800, "lbs"),
  6046. name: "Front",
  6047. image: {
  6048. source: "./media/characters/tiberius/front.svg",
  6049. extra: 2295 / 2071
  6050. }
  6051. },
  6052. back: {
  6053. height: math.unit(9, "feet"),
  6054. weight: math.unit(800, "lbs"),
  6055. name: "Back",
  6056. image: {
  6057. source: "./media/characters/tiberius/back.svg",
  6058. extra: 2373 / 2160
  6059. }
  6060. },
  6061. },
  6062. [
  6063. {
  6064. name: "Normal",
  6065. height: math.unit(9, "feet"),
  6066. default: true
  6067. }
  6068. ]
  6069. ))
  6070. characterMakers.push(() => makeCharacter(
  6071. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6072. {
  6073. front: {
  6074. height: math.unit(6, "feet"),
  6075. weight: math.unit(600, "lbs"),
  6076. name: "Front",
  6077. image: {
  6078. source: "./media/characters/surgo/front.svg",
  6079. extra: 3591 / 2227
  6080. }
  6081. },
  6082. back: {
  6083. height: math.unit(6, "feet"),
  6084. weight: math.unit(600, "lbs"),
  6085. name: "Back",
  6086. image: {
  6087. source: "./media/characters/surgo/back.svg",
  6088. extra: 3557 / 2228
  6089. }
  6090. },
  6091. laying: {
  6092. height: math.unit(6 * 0.85, "feet"),
  6093. weight: math.unit(600, "lbs"),
  6094. name: "Laying",
  6095. image: {
  6096. source: "./media/characters/surgo/laying.svg"
  6097. }
  6098. },
  6099. },
  6100. [
  6101. {
  6102. name: "Normal",
  6103. height: math.unit(6, "feet"),
  6104. default: true
  6105. }
  6106. ]
  6107. ))
  6108. characterMakers.push(() => makeCharacter(
  6109. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6110. {
  6111. side: {
  6112. height: math.unit(6, "feet"),
  6113. weight: math.unit(150, "lbs"),
  6114. name: "Side",
  6115. image: {
  6116. source: "./media/characters/cibus/side.svg",
  6117. extra: 800 / 400
  6118. }
  6119. },
  6120. },
  6121. [
  6122. {
  6123. name: "Normal",
  6124. height: math.unit(6, "feet"),
  6125. default: true
  6126. }
  6127. ]
  6128. ))
  6129. characterMakers.push(() => makeCharacter(
  6130. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6131. {
  6132. front: {
  6133. height: math.unit(6, "feet"),
  6134. weight: math.unit(240, "lbs"),
  6135. name: "Front",
  6136. image: {
  6137. source: "./media/characters/nibbles/front.svg"
  6138. }
  6139. },
  6140. side: {
  6141. height: math.unit(6, "feet"),
  6142. weight: math.unit(240, "lbs"),
  6143. name: "Side",
  6144. image: {
  6145. source: "./media/characters/nibbles/side.svg"
  6146. }
  6147. },
  6148. },
  6149. [
  6150. {
  6151. name: "Normal",
  6152. height: math.unit(9, "feet"),
  6153. default: true
  6154. }
  6155. ]
  6156. ))
  6157. characterMakers.push(() => makeCharacter(
  6158. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6159. {
  6160. side: {
  6161. height: math.unit(5 + 1 / 6, "feet"),
  6162. weight: math.unit(130, "lbs"),
  6163. name: "Side",
  6164. image: {
  6165. source: "./media/characters/rikky/side.svg",
  6166. extra: 851 / 801
  6167. }
  6168. },
  6169. },
  6170. [
  6171. {
  6172. name: "Normal",
  6173. height: math.unit(5 + 1 / 6, "feet")
  6174. },
  6175. {
  6176. name: "Macro",
  6177. height: math.unit(152, "feet"),
  6178. default: true
  6179. },
  6180. {
  6181. name: "Megamacro",
  6182. height: math.unit(7, "miles")
  6183. }
  6184. ]
  6185. ))
  6186. characterMakers.push(() => makeCharacter(
  6187. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6188. {
  6189. side: {
  6190. height: math.unit(370, "cm"),
  6191. weight: math.unit(350, "lbs"),
  6192. name: "Side",
  6193. image: {
  6194. source: "./media/characters/malfressa/side.svg"
  6195. }
  6196. },
  6197. walking: {
  6198. height: math.unit(370, "cm"),
  6199. weight: math.unit(350, "lbs"),
  6200. name: "Walking",
  6201. image: {
  6202. source: "./media/characters/malfressa/walking.svg"
  6203. }
  6204. },
  6205. feral: {
  6206. height: math.unit(2500, "cm"),
  6207. weight: math.unit(100000, "lbs"),
  6208. name: "Feral",
  6209. image: {
  6210. source: "./media/characters/malfressa/feral.svg",
  6211. extra: 2108 / 837,
  6212. bottom: 0.02
  6213. }
  6214. },
  6215. },
  6216. [
  6217. {
  6218. name: "Normal",
  6219. height: math.unit(370, "cm")
  6220. },
  6221. {
  6222. name: "Macro",
  6223. height: math.unit(300, "meters"),
  6224. default: true
  6225. }
  6226. ]
  6227. ))
  6228. characterMakers.push(() => makeCharacter(
  6229. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6230. {
  6231. front: {
  6232. height: math.unit(6, "feet"),
  6233. weight: math.unit(60, "kg"),
  6234. name: "Front",
  6235. image: {
  6236. source: "./media/characters/jaro/front.svg"
  6237. }
  6238. },
  6239. back: {
  6240. height: math.unit(6, "feet"),
  6241. weight: math.unit(60, "kg"),
  6242. name: "Back",
  6243. image: {
  6244. source: "./media/characters/jaro/back.svg"
  6245. }
  6246. },
  6247. },
  6248. [
  6249. {
  6250. name: "Micro",
  6251. height: math.unit(7, "inches")
  6252. },
  6253. {
  6254. name: "Normal",
  6255. height: math.unit(5.5, "feet"),
  6256. default: true
  6257. },
  6258. {
  6259. name: "Minimacro",
  6260. height: math.unit(20, "feet")
  6261. },
  6262. {
  6263. name: "Macro",
  6264. height: math.unit(200, "meters")
  6265. }
  6266. ]
  6267. ))
  6268. characterMakers.push(() => makeCharacter(
  6269. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6270. {
  6271. front: {
  6272. height: math.unit(6, "feet"),
  6273. weight: math.unit(195, "lb"),
  6274. name: "Front",
  6275. image: {
  6276. source: "./media/characters/rogue/front.svg"
  6277. }
  6278. },
  6279. },
  6280. [
  6281. {
  6282. name: "Macro",
  6283. height: math.unit(90, "feet"),
  6284. default: true
  6285. },
  6286. ]
  6287. ))
  6288. characterMakers.push(() => makeCharacter(
  6289. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6290. {
  6291. front: {
  6292. height: math.unit(5 + 8 / 12, "feet"),
  6293. weight: math.unit(140, "lb"),
  6294. name: "Front",
  6295. image: {
  6296. source: "./media/characters/piper/front.svg",
  6297. extra: 3948/3655,
  6298. bottom: 0/3948
  6299. }
  6300. },
  6301. },
  6302. [
  6303. {
  6304. name: "Micro",
  6305. height: math.unit(2, "inches")
  6306. },
  6307. {
  6308. name: "Normal",
  6309. height: math.unit(5 + 8 / 12, "feet")
  6310. },
  6311. {
  6312. name: "Macro",
  6313. height: math.unit(250, "feet"),
  6314. default: true
  6315. },
  6316. {
  6317. name: "Megamacro",
  6318. height: math.unit(7, "miles")
  6319. },
  6320. ]
  6321. ))
  6322. characterMakers.push(() => makeCharacter(
  6323. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6324. {
  6325. front: {
  6326. height: math.unit(6, "feet"),
  6327. weight: math.unit(220, "lb"),
  6328. name: "Front",
  6329. image: {
  6330. source: "./media/characters/gemini/front.svg"
  6331. }
  6332. },
  6333. back: {
  6334. height: math.unit(6, "feet"),
  6335. weight: math.unit(220, "lb"),
  6336. name: "Back",
  6337. image: {
  6338. source: "./media/characters/gemini/back.svg"
  6339. }
  6340. },
  6341. kneeling: {
  6342. height: math.unit(6 / 1.5, "feet"),
  6343. weight: math.unit(220, "lb"),
  6344. name: "Kneeling",
  6345. image: {
  6346. source: "./media/characters/gemini/kneeling.svg",
  6347. bottom: 0.02
  6348. }
  6349. },
  6350. },
  6351. [
  6352. {
  6353. name: "Macro",
  6354. height: math.unit(300, "meters"),
  6355. default: true
  6356. },
  6357. {
  6358. name: "Megamacro",
  6359. height: math.unit(6900, "meters")
  6360. },
  6361. ]
  6362. ))
  6363. characterMakers.push(() => makeCharacter(
  6364. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6365. {
  6366. anthro: {
  6367. height: math.unit(2.35, "meters"),
  6368. weight: math.unit(73, "kg"),
  6369. name: "Anthro",
  6370. image: {
  6371. source: "./media/characters/alicia/anthro.svg",
  6372. extra: 2571 / 2385,
  6373. bottom: 75 / 2648
  6374. }
  6375. },
  6376. paw: {
  6377. height: math.unit(1.32, "feet"),
  6378. name: "Paw",
  6379. image: {
  6380. source: "./media/characters/alicia/paw.svg"
  6381. }
  6382. },
  6383. feral: {
  6384. height: math.unit(1.69, "meters"),
  6385. weight: math.unit(73, "kg"),
  6386. name: "Feral",
  6387. image: {
  6388. source: "./media/characters/alicia/feral.svg",
  6389. extra: 2123 / 1715,
  6390. bottom: 222 / 2349
  6391. }
  6392. },
  6393. },
  6394. [
  6395. {
  6396. name: "Normal",
  6397. height: math.unit(2.35, "meters")
  6398. },
  6399. {
  6400. name: "Macro",
  6401. height: math.unit(60, "meters"),
  6402. default: true
  6403. },
  6404. {
  6405. name: "Megamacro",
  6406. height: math.unit(10000, "kilometers")
  6407. },
  6408. ]
  6409. ))
  6410. characterMakers.push(() => makeCharacter(
  6411. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6412. {
  6413. front: {
  6414. height: math.unit(7, "feet"),
  6415. weight: math.unit(250, "lbs"),
  6416. name: "Front",
  6417. image: {
  6418. source: "./media/characters/archy/front.svg"
  6419. }
  6420. }
  6421. },
  6422. [
  6423. {
  6424. name: "Micro",
  6425. height: math.unit(1, "inch")
  6426. },
  6427. {
  6428. name: "Shorty",
  6429. height: math.unit(5, "feet")
  6430. },
  6431. {
  6432. name: "Normal",
  6433. height: math.unit(7, "feet")
  6434. },
  6435. {
  6436. name: "Macro",
  6437. height: math.unit(600, "meters"),
  6438. default: true
  6439. },
  6440. {
  6441. name: "Megamacro",
  6442. height: math.unit(1, "mile")
  6443. },
  6444. ]
  6445. ))
  6446. characterMakers.push(() => makeCharacter(
  6447. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6448. {
  6449. front: {
  6450. height: math.unit(1.65, "meters"),
  6451. weight: math.unit(74, "kg"),
  6452. name: "Front",
  6453. image: {
  6454. source: "./media/characters/berri/front.svg",
  6455. extra: 857 / 837,
  6456. bottom: 18 / 877
  6457. }
  6458. },
  6459. bum: {
  6460. height: math.unit(1.46, "feet"),
  6461. name: "Bum",
  6462. image: {
  6463. source: "./media/characters/berri/bum.svg"
  6464. }
  6465. },
  6466. mouth: {
  6467. height: math.unit(0.44, "feet"),
  6468. name: "Mouth",
  6469. image: {
  6470. source: "./media/characters/berri/mouth.svg"
  6471. }
  6472. },
  6473. paw: {
  6474. height: math.unit(0.826, "feet"),
  6475. name: "Paw",
  6476. image: {
  6477. source: "./media/characters/berri/paw.svg"
  6478. }
  6479. },
  6480. },
  6481. [
  6482. {
  6483. name: "Normal",
  6484. height: math.unit(1.65, "meters")
  6485. },
  6486. {
  6487. name: "Macro",
  6488. height: math.unit(60, "m"),
  6489. default: true
  6490. },
  6491. {
  6492. name: "Megamacro",
  6493. height: math.unit(9.213, "km")
  6494. },
  6495. {
  6496. name: "Planet Eater",
  6497. height: math.unit(489, "megameters")
  6498. },
  6499. {
  6500. name: "Teramacro",
  6501. height: math.unit(2471635000000, "meters")
  6502. },
  6503. {
  6504. name: "Examacro",
  6505. height: math.unit(8.0624e+26, "meters")
  6506. }
  6507. ]
  6508. ))
  6509. characterMakers.push(() => makeCharacter(
  6510. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6511. {
  6512. front: {
  6513. height: math.unit(1.72, "meters"),
  6514. weight: math.unit(68, "kg"),
  6515. name: "Front",
  6516. image: {
  6517. source: "./media/characters/lexi/front.svg"
  6518. }
  6519. }
  6520. },
  6521. [
  6522. {
  6523. name: "Very Smol",
  6524. height: math.unit(10, "mm")
  6525. },
  6526. {
  6527. name: "Micro",
  6528. height: math.unit(6.8, "cm"),
  6529. default: true
  6530. },
  6531. {
  6532. name: "Normal",
  6533. height: math.unit(1.72, "m")
  6534. }
  6535. ]
  6536. ))
  6537. characterMakers.push(() => makeCharacter(
  6538. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6539. {
  6540. front: {
  6541. height: math.unit(1.69, "meters"),
  6542. weight: math.unit(68, "kg"),
  6543. name: "Front",
  6544. image: {
  6545. source: "./media/characters/martin/front.svg",
  6546. extra: 596 / 581
  6547. }
  6548. }
  6549. },
  6550. [
  6551. {
  6552. name: "Micro",
  6553. height: math.unit(6.85, "cm"),
  6554. default: true
  6555. },
  6556. {
  6557. name: "Normal",
  6558. height: math.unit(1.69, "m")
  6559. }
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6564. {
  6565. front: {
  6566. height: math.unit(1.69, "meters"),
  6567. weight: math.unit(68, "kg"),
  6568. name: "Front",
  6569. image: {
  6570. source: "./media/characters/juno/front.svg"
  6571. }
  6572. }
  6573. },
  6574. [
  6575. {
  6576. name: "Micro",
  6577. height: math.unit(7, "cm")
  6578. },
  6579. {
  6580. name: "Normal",
  6581. height: math.unit(1.89, "m")
  6582. },
  6583. {
  6584. name: "Macro",
  6585. height: math.unit(353, "meters"),
  6586. default: true
  6587. }
  6588. ]
  6589. ))
  6590. characterMakers.push(() => makeCharacter(
  6591. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6592. {
  6593. front: {
  6594. height: math.unit(1.93, "meters"),
  6595. weight: math.unit(83, "kg"),
  6596. name: "Front",
  6597. image: {
  6598. source: "./media/characters/samantha/front.svg"
  6599. }
  6600. },
  6601. frontClothed: {
  6602. height: math.unit(1.93, "meters"),
  6603. weight: math.unit(83, "kg"),
  6604. name: "Front (Clothed)",
  6605. image: {
  6606. source: "./media/characters/samantha/front-clothed.svg"
  6607. }
  6608. },
  6609. back: {
  6610. height: math.unit(1.93, "meters"),
  6611. weight: math.unit(83, "kg"),
  6612. name: "Back",
  6613. image: {
  6614. source: "./media/characters/samantha/back.svg"
  6615. }
  6616. },
  6617. },
  6618. [
  6619. {
  6620. name: "Normal",
  6621. height: math.unit(1.93, "m")
  6622. },
  6623. {
  6624. name: "Macro",
  6625. height: math.unit(74, "meters"),
  6626. default: true
  6627. },
  6628. {
  6629. name: "Macro+",
  6630. height: math.unit(223, "meters"),
  6631. },
  6632. {
  6633. name: "Megamacro",
  6634. height: math.unit(8381, "meters"),
  6635. },
  6636. {
  6637. name: "Megamacro+",
  6638. height: math.unit(12000, "kilometers")
  6639. },
  6640. ]
  6641. ))
  6642. characterMakers.push(() => makeCharacter(
  6643. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6644. {
  6645. front: {
  6646. height: math.unit(1.92, "meters"),
  6647. weight: math.unit(80, "kg"),
  6648. name: "Front",
  6649. image: {
  6650. source: "./media/characters/dr-clay/front.svg"
  6651. }
  6652. },
  6653. frontClothed: {
  6654. height: math.unit(1.92, "meters"),
  6655. weight: math.unit(80, "kg"),
  6656. name: "Front (Clothed)",
  6657. image: {
  6658. source: "./media/characters/dr-clay/front-clothed.svg"
  6659. }
  6660. }
  6661. },
  6662. [
  6663. {
  6664. name: "Normal",
  6665. height: math.unit(1.92, "m")
  6666. },
  6667. {
  6668. name: "Macro",
  6669. height: math.unit(214, "meters"),
  6670. default: true
  6671. },
  6672. {
  6673. name: "Macro+",
  6674. height: math.unit(12.237, "meters"),
  6675. },
  6676. {
  6677. name: "Megamacro",
  6678. height: math.unit(557, "megameters"),
  6679. },
  6680. {
  6681. name: "Unimaginable",
  6682. height: math.unit(120e9, "lightyears")
  6683. },
  6684. ]
  6685. ))
  6686. characterMakers.push(() => makeCharacter(
  6687. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6688. {
  6689. front: {
  6690. height: math.unit(2, "meters"),
  6691. weight: math.unit(80, "kg"),
  6692. name: "Front",
  6693. image: {
  6694. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6695. }
  6696. }
  6697. },
  6698. [
  6699. {
  6700. name: "Teramacro",
  6701. height: math.unit(500000, "lightyears"),
  6702. default: true
  6703. },
  6704. ]
  6705. ))
  6706. characterMakers.push(() => makeCharacter(
  6707. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6708. {
  6709. crux: {
  6710. height: math.unit(2, "meters"),
  6711. weight: math.unit(150, "kg"),
  6712. name: "Crux",
  6713. image: {
  6714. source: "./media/characters/vemus/crux.svg",
  6715. extra: 1074/936,
  6716. bottom: 23/1097
  6717. }
  6718. },
  6719. skunkTanuki: {
  6720. height: math.unit(2, "meters"),
  6721. weight: math.unit(150, "kg"),
  6722. name: "Skunk-Tanuki",
  6723. image: {
  6724. source: "./media/characters/vemus/skunk-tanuki.svg",
  6725. extra: 926/893,
  6726. bottom: 20/946
  6727. }
  6728. },
  6729. },
  6730. [
  6731. {
  6732. name: "Normal",
  6733. height: math.unit(3.75, "meters"),
  6734. default: true
  6735. },
  6736. {
  6737. name: "Big",
  6738. height: math.unit(8, "meters")
  6739. },
  6740. {
  6741. name: "Macro",
  6742. height: math.unit(100, "meters")
  6743. },
  6744. {
  6745. name: "Macro+",
  6746. height: math.unit(1500, "meters")
  6747. },
  6748. {
  6749. name: "Stellar",
  6750. height: math.unit(14e8, "meters")
  6751. },
  6752. ]
  6753. ))
  6754. characterMakers.push(() => makeCharacter(
  6755. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6756. {
  6757. front: {
  6758. height: math.unit(2, "meters"),
  6759. weight: math.unit(70, "kg"),
  6760. name: "Front",
  6761. image: {
  6762. source: "./media/characters/beherit/front.svg",
  6763. extra: 1408 / 1242
  6764. }
  6765. }
  6766. },
  6767. [
  6768. {
  6769. name: "Normal",
  6770. height: math.unit(6, "feet")
  6771. },
  6772. {
  6773. name: "Lorg",
  6774. height: math.unit(25, "feet"),
  6775. default: true
  6776. },
  6777. {
  6778. name: "Lorger",
  6779. height: math.unit(75, "feet")
  6780. },
  6781. {
  6782. name: "Macro",
  6783. height: math.unit(200, "meters")
  6784. },
  6785. ]
  6786. ))
  6787. characterMakers.push(() => makeCharacter(
  6788. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6789. {
  6790. front: {
  6791. height: math.unit(2, "meters"),
  6792. weight: math.unit(150, "kg"),
  6793. name: "Front",
  6794. image: {
  6795. source: "./media/characters/everett/front.svg",
  6796. extra: 2038 / 1737,
  6797. bottom: 0.03
  6798. }
  6799. },
  6800. paw: {
  6801. height: math.unit(2 / 3.6, "meters"),
  6802. name: "Paw",
  6803. image: {
  6804. source: "./media/characters/everett/paw.svg"
  6805. }
  6806. },
  6807. },
  6808. [
  6809. {
  6810. name: "Normal",
  6811. height: math.unit(15, "feet"),
  6812. default: true
  6813. },
  6814. {
  6815. name: "Lorg",
  6816. height: math.unit(70, "feet"),
  6817. default: true
  6818. },
  6819. {
  6820. name: "Lorger",
  6821. height: math.unit(250, "feet")
  6822. },
  6823. {
  6824. name: "Macro",
  6825. height: math.unit(500, "meters")
  6826. },
  6827. ]
  6828. ))
  6829. characterMakers.push(() => makeCharacter(
  6830. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6831. {
  6832. front: {
  6833. height: math.unit(2, "meters"),
  6834. weight: math.unit(86, "kg"),
  6835. name: "Front",
  6836. image: {
  6837. source: "./media/characters/rose/front.svg",
  6838. extra: 1785/1636,
  6839. bottom: 30/1815
  6840. }
  6841. },
  6842. frontSporty: {
  6843. height: math.unit(2, "meters"),
  6844. weight: math.unit(86, "kg"),
  6845. name: "Front (Sporty)",
  6846. image: {
  6847. source: "./media/characters/rose/front-sporty.svg",
  6848. extra: 350/335,
  6849. bottom: 10/360
  6850. }
  6851. },
  6852. frontAlt: {
  6853. height: math.unit(1.6, "meters"),
  6854. weight: math.unit(86, "kg"),
  6855. name: "Front (Alt)",
  6856. image: {
  6857. source: "./media/characters/rose/front-alt.svg",
  6858. extra: 299/283,
  6859. bottom: 3/302
  6860. }
  6861. },
  6862. plush: {
  6863. height: math.unit(2, "meters"),
  6864. weight: math.unit(86/3, "kg"),
  6865. name: "Plush",
  6866. image: {
  6867. source: "./media/characters/rose/plush.svg",
  6868. extra: 361/337,
  6869. bottom: 11/372
  6870. }
  6871. },
  6872. },
  6873. [
  6874. {
  6875. name: "True Micro",
  6876. height: math.unit(9, "cm")
  6877. },
  6878. {
  6879. name: "Micro",
  6880. height: math.unit(16, "cm")
  6881. },
  6882. {
  6883. name: "Normal",
  6884. height: math.unit(1.85, "meters"),
  6885. default: true
  6886. },
  6887. {
  6888. name: "Mini-Macro",
  6889. height: math.unit(5, "meters")
  6890. },
  6891. {
  6892. name: "Macro",
  6893. height: math.unit(15, "meters")
  6894. },
  6895. {
  6896. name: "True Macro",
  6897. height: math.unit(40, "meters")
  6898. },
  6899. {
  6900. name: "City Scale",
  6901. height: math.unit(1, "km")
  6902. },
  6903. ]
  6904. ))
  6905. characterMakers.push(() => makeCharacter(
  6906. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6907. {
  6908. front: {
  6909. height: math.unit(2, "meters"),
  6910. weight: math.unit(350, "lbs"),
  6911. name: "Front",
  6912. image: {
  6913. source: "./media/characters/regal/front.svg"
  6914. }
  6915. },
  6916. back: {
  6917. height: math.unit(2, "meters"),
  6918. weight: math.unit(350, "lbs"),
  6919. name: "Back",
  6920. image: {
  6921. source: "./media/characters/regal/back.svg"
  6922. }
  6923. },
  6924. },
  6925. [
  6926. {
  6927. name: "Macro",
  6928. height: math.unit(350, "feet"),
  6929. default: true
  6930. }
  6931. ]
  6932. ))
  6933. characterMakers.push(() => makeCharacter(
  6934. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6935. {
  6936. front: {
  6937. height: math.unit(4 + 11 / 12, "feet"),
  6938. weight: math.unit(100, "lbs"),
  6939. name: "Front",
  6940. image: {
  6941. source: "./media/characters/opal/front.svg"
  6942. }
  6943. },
  6944. frontAlt: {
  6945. height: math.unit(4 + 11 / 12, "feet"),
  6946. weight: math.unit(100, "lbs"),
  6947. name: "Front (Alt)",
  6948. image: {
  6949. source: "./media/characters/opal/front-alt.svg"
  6950. }
  6951. },
  6952. },
  6953. [
  6954. {
  6955. name: "Small",
  6956. height: math.unit(4 + 11 / 12, "feet")
  6957. },
  6958. {
  6959. name: "Normal",
  6960. height: math.unit(20, "feet"),
  6961. default: true
  6962. },
  6963. {
  6964. name: "Macro",
  6965. height: math.unit(120, "feet")
  6966. },
  6967. {
  6968. name: "Megamacro",
  6969. height: math.unit(80, "miles")
  6970. },
  6971. {
  6972. name: "True Size",
  6973. height: math.unit(100000, "lightyears")
  6974. },
  6975. ]
  6976. ))
  6977. characterMakers.push(() => makeCharacter(
  6978. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6979. {
  6980. front: {
  6981. height: math.unit(6, "feet"),
  6982. weight: math.unit(200, "lbs"),
  6983. name: "Front",
  6984. image: {
  6985. source: "./media/characters/vector-wuff/front.svg"
  6986. }
  6987. }
  6988. },
  6989. [
  6990. {
  6991. name: "Normal",
  6992. height: math.unit(2.8, "meters")
  6993. },
  6994. {
  6995. name: "Macro",
  6996. height: math.unit(450, "meters"),
  6997. default: true
  6998. },
  6999. {
  7000. name: "Megamacro",
  7001. height: math.unit(15, "kilometers")
  7002. }
  7003. ]
  7004. ))
  7005. characterMakers.push(() => makeCharacter(
  7006. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7007. {
  7008. front: {
  7009. height: math.unit(6, "feet"),
  7010. weight: math.unit(256, "lbs"),
  7011. name: "Front",
  7012. image: {
  7013. source: "./media/characters/dannik/front.svg"
  7014. }
  7015. }
  7016. },
  7017. [
  7018. {
  7019. name: "Macro",
  7020. height: math.unit(69.57, "meters"),
  7021. default: true
  7022. },
  7023. ]
  7024. ))
  7025. characterMakers.push(() => makeCharacter(
  7026. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7027. {
  7028. front: {
  7029. height: math.unit(6, "feet"),
  7030. weight: math.unit(120, "lbs"),
  7031. name: "Front",
  7032. image: {
  7033. source: "./media/characters/azura-saharah/front.svg"
  7034. }
  7035. },
  7036. back: {
  7037. height: math.unit(6, "feet"),
  7038. weight: math.unit(120, "lbs"),
  7039. name: "Back",
  7040. image: {
  7041. source: "./media/characters/azura-saharah/back.svg"
  7042. }
  7043. },
  7044. },
  7045. [
  7046. {
  7047. name: "Macro",
  7048. height: math.unit(100, "feet"),
  7049. default: true
  7050. },
  7051. ]
  7052. ))
  7053. characterMakers.push(() => makeCharacter(
  7054. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7055. {
  7056. side: {
  7057. height: math.unit(5 + 4 / 12, "feet"),
  7058. weight: math.unit(163, "lbs"),
  7059. name: "Side",
  7060. image: {
  7061. source: "./media/characters/kennedy/side.svg"
  7062. }
  7063. }
  7064. },
  7065. [
  7066. {
  7067. name: "Standard Doggo",
  7068. height: math.unit(5 + 4 / 12, "feet")
  7069. },
  7070. {
  7071. name: "Big Doggo",
  7072. height: math.unit(25 + 3 / 12, "feet"),
  7073. default: true
  7074. },
  7075. ]
  7076. ))
  7077. characterMakers.push(() => makeCharacter(
  7078. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7079. {
  7080. front: {
  7081. height: math.unit(6, "feet"),
  7082. weight: math.unit(90, "lbs"),
  7083. name: "Front",
  7084. image: {
  7085. source: "./media/characters/odi-lunar/front.svg"
  7086. }
  7087. }
  7088. },
  7089. [
  7090. {
  7091. name: "Micro",
  7092. height: math.unit(3, "inches"),
  7093. default: true
  7094. },
  7095. {
  7096. name: "Normal",
  7097. height: math.unit(5.5, "feet")
  7098. }
  7099. ]
  7100. ))
  7101. characterMakers.push(() => makeCharacter(
  7102. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7103. {
  7104. back: {
  7105. height: math.unit(6, "feet"),
  7106. weight: math.unit(220, "lbs"),
  7107. name: "Back",
  7108. image: {
  7109. source: "./media/characters/mandake/back.svg"
  7110. }
  7111. }
  7112. },
  7113. [
  7114. {
  7115. name: "Normal",
  7116. height: math.unit(7, "feet"),
  7117. default: true
  7118. },
  7119. {
  7120. name: "Macro",
  7121. height: math.unit(78, "feet")
  7122. },
  7123. {
  7124. name: "Macro+",
  7125. height: math.unit(300, "meters")
  7126. },
  7127. {
  7128. name: "Macro++",
  7129. height: math.unit(2400, "feet")
  7130. },
  7131. {
  7132. name: "Megamacro",
  7133. height: math.unit(5167, "meters")
  7134. },
  7135. {
  7136. name: "Gigamacro",
  7137. height: math.unit(41769, "miles")
  7138. },
  7139. ]
  7140. ))
  7141. characterMakers.push(() => makeCharacter(
  7142. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7143. {
  7144. front: {
  7145. height: math.unit(6, "feet"),
  7146. weight: math.unit(120, "lbs"),
  7147. name: "Front",
  7148. image: {
  7149. source: "./media/characters/yozey/front.svg"
  7150. }
  7151. },
  7152. frontAlt: {
  7153. height: math.unit(6, "feet"),
  7154. weight: math.unit(120, "lbs"),
  7155. name: "Front (Alt)",
  7156. image: {
  7157. source: "./media/characters/yozey/front-alt.svg"
  7158. }
  7159. },
  7160. side: {
  7161. height: math.unit(6, "feet"),
  7162. weight: math.unit(120, "lbs"),
  7163. name: "Side",
  7164. image: {
  7165. source: "./media/characters/yozey/side.svg"
  7166. }
  7167. },
  7168. },
  7169. [
  7170. {
  7171. name: "Micro",
  7172. height: math.unit(3, "inches"),
  7173. default: true
  7174. },
  7175. {
  7176. name: "Normal",
  7177. height: math.unit(6, "feet")
  7178. }
  7179. ]
  7180. ))
  7181. characterMakers.push(() => makeCharacter(
  7182. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7183. {
  7184. front: {
  7185. height: math.unit(6, "feet"),
  7186. weight: math.unit(103, "lbs"),
  7187. name: "Front",
  7188. image: {
  7189. source: "./media/characters/valeska-voss/front.svg"
  7190. }
  7191. }
  7192. },
  7193. [
  7194. {
  7195. name: "Mini-Sized Sub",
  7196. height: math.unit(3.1, "inches")
  7197. },
  7198. {
  7199. name: "Mid-Sized Sub",
  7200. height: math.unit(6.2, "inches")
  7201. },
  7202. {
  7203. name: "Full-Sized Sub",
  7204. height: math.unit(9.3, "inches")
  7205. },
  7206. {
  7207. name: "Normal",
  7208. height: math.unit(5 + 2 / 12, "foot"),
  7209. default: true
  7210. },
  7211. ]
  7212. ))
  7213. characterMakers.push(() => makeCharacter(
  7214. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7215. {
  7216. front: {
  7217. height: math.unit(6, "feet"),
  7218. weight: math.unit(160, "lbs"),
  7219. name: "Front",
  7220. image: {
  7221. source: "./media/characters/gene-zeta/front.svg",
  7222. extra: 3006 / 2826,
  7223. bottom: 182 / 3188
  7224. }
  7225. }
  7226. },
  7227. [
  7228. {
  7229. name: "Micro",
  7230. height: math.unit(6, "inches")
  7231. },
  7232. {
  7233. name: "Normal",
  7234. height: math.unit(5 + 11 / 12, "foot"),
  7235. default: true
  7236. },
  7237. {
  7238. name: "Macro",
  7239. height: math.unit(140, "feet")
  7240. },
  7241. {
  7242. name: "Supercharged",
  7243. height: math.unit(2500, "feet")
  7244. },
  7245. ]
  7246. ))
  7247. characterMakers.push(() => makeCharacter(
  7248. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7249. {
  7250. front: {
  7251. height: math.unit(6, "feet"),
  7252. weight: math.unit(350, "lbs"),
  7253. name: "Front",
  7254. image: {
  7255. source: "./media/characters/razinox/front.svg",
  7256. extra: 1686 / 1548,
  7257. bottom: 28.2 / 1868
  7258. }
  7259. },
  7260. back: {
  7261. height: math.unit(6, "feet"),
  7262. weight: math.unit(350, "lbs"),
  7263. name: "Back",
  7264. image: {
  7265. source: "./media/characters/razinox/back.svg",
  7266. extra: 1660 / 1590,
  7267. bottom: 15 / 1665
  7268. }
  7269. },
  7270. },
  7271. [
  7272. {
  7273. name: "Normal",
  7274. height: math.unit(10 + 8 / 12, "foot")
  7275. },
  7276. {
  7277. name: "Minimacro",
  7278. height: math.unit(15, "foot")
  7279. },
  7280. {
  7281. name: "Macro",
  7282. height: math.unit(60, "foot"),
  7283. default: true
  7284. },
  7285. {
  7286. name: "Megamacro",
  7287. height: math.unit(5, "miles")
  7288. },
  7289. {
  7290. name: "Gigamacro",
  7291. height: math.unit(6000, "miles")
  7292. },
  7293. ]
  7294. ))
  7295. characterMakers.push(() => makeCharacter(
  7296. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7297. {
  7298. front: {
  7299. height: math.unit(6, "feet"),
  7300. weight: math.unit(150, "lbs"),
  7301. name: "Front",
  7302. image: {
  7303. source: "./media/characters/cobalt/front.svg"
  7304. }
  7305. }
  7306. },
  7307. [
  7308. {
  7309. name: "Normal",
  7310. height: math.unit(8 + 1 / 12, "foot")
  7311. },
  7312. {
  7313. name: "Macro",
  7314. height: math.unit(111, "foot"),
  7315. default: true
  7316. },
  7317. {
  7318. name: "Supracosmic",
  7319. height: math.unit(1e42, "feet")
  7320. },
  7321. ]
  7322. ))
  7323. characterMakers.push(() => makeCharacter(
  7324. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7325. {
  7326. front: {
  7327. height: math.unit(6, "feet"),
  7328. weight: math.unit(140, "lbs"),
  7329. name: "Front",
  7330. image: {
  7331. source: "./media/characters/amanda/front.svg"
  7332. }
  7333. }
  7334. },
  7335. [
  7336. {
  7337. name: "Micro",
  7338. height: math.unit(5, "inches"),
  7339. default: true
  7340. },
  7341. ]
  7342. ))
  7343. characterMakers.push(() => makeCharacter(
  7344. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7345. {
  7346. front: {
  7347. height: math.unit(2.75, "meters"),
  7348. weight: math.unit(1200, "lb"),
  7349. name: "Front",
  7350. image: {
  7351. source: "./media/characters/teal/front.svg",
  7352. extra: 2463 / 2320,
  7353. bottom: 166 / 2629
  7354. }
  7355. },
  7356. back: {
  7357. height: math.unit(2.75, "meters"),
  7358. weight: math.unit(1200, "lb"),
  7359. name: "Back",
  7360. image: {
  7361. source: "./media/characters/teal/back.svg",
  7362. extra: 2580 / 2489,
  7363. bottom: 151 / 2731
  7364. }
  7365. },
  7366. sitting: {
  7367. height: math.unit(1.9, "meters"),
  7368. weight: math.unit(1200, "lb"),
  7369. name: "Sitting",
  7370. image: {
  7371. source: "./media/characters/teal/sitting.svg",
  7372. extra: 623 / 590,
  7373. bottom: 121 / 744
  7374. }
  7375. },
  7376. standing: {
  7377. height: math.unit(2.75, "meters"),
  7378. weight: math.unit(1200, "lb"),
  7379. name: "Standing",
  7380. image: {
  7381. source: "./media/characters/teal/standing.svg",
  7382. extra: 923 / 893,
  7383. bottom: 60 / 983
  7384. }
  7385. },
  7386. stretching: {
  7387. height: math.unit(3.65, "meters"),
  7388. weight: math.unit(1200, "lb"),
  7389. name: "Stretching",
  7390. image: {
  7391. source: "./media/characters/teal/stretching.svg",
  7392. extra: 1276 / 1244,
  7393. bottom: 0 / 1276
  7394. }
  7395. },
  7396. legged: {
  7397. height: math.unit(1.3, "meters"),
  7398. weight: math.unit(100, "lb"),
  7399. name: "Legged",
  7400. image: {
  7401. source: "./media/characters/teal/legged.svg",
  7402. extra: 462 / 437,
  7403. bottom: 24 / 486
  7404. }
  7405. },
  7406. naga: {
  7407. height: math.unit(5.4, "meters"),
  7408. weight: math.unit(4000, "lb"),
  7409. name: "Naga",
  7410. image: {
  7411. source: "./media/characters/teal/naga.svg",
  7412. extra: 1902 / 1858,
  7413. bottom: 0 / 1902
  7414. }
  7415. },
  7416. hand: {
  7417. height: math.unit(0.52, "meters"),
  7418. name: "Hand",
  7419. image: {
  7420. source: "./media/characters/teal/hand.svg"
  7421. }
  7422. },
  7423. maw: {
  7424. height: math.unit(0.43, "meters"),
  7425. name: "Maw",
  7426. image: {
  7427. source: "./media/characters/teal/maw.svg"
  7428. }
  7429. },
  7430. slit: {
  7431. height: math.unit(0.25, "meters"),
  7432. name: "Slit",
  7433. image: {
  7434. source: "./media/characters/teal/slit.svg"
  7435. }
  7436. },
  7437. },
  7438. [
  7439. {
  7440. name: "Normal",
  7441. height: math.unit(2.75, "meters"),
  7442. default: true
  7443. },
  7444. {
  7445. name: "Macro",
  7446. height: math.unit(300, "feet")
  7447. },
  7448. {
  7449. name: "Macro+",
  7450. height: math.unit(2000, "feet")
  7451. },
  7452. ]
  7453. ))
  7454. characterMakers.push(() => makeCharacter(
  7455. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7456. {
  7457. frontCat: {
  7458. height: math.unit(6, "feet"),
  7459. weight: math.unit(180, "lbs"),
  7460. name: "Front (Cat)",
  7461. image: {
  7462. source: "./media/characters/ravin-amulet/front-cat.svg"
  7463. }
  7464. },
  7465. frontCatAlt: {
  7466. height: math.unit(6, "feet"),
  7467. weight: math.unit(180, "lbs"),
  7468. name: "Front (Alt, Cat)",
  7469. image: {
  7470. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7471. }
  7472. },
  7473. frontWerewolf: {
  7474. height: math.unit(6 * 1.2, "feet"),
  7475. weight: math.unit(225, "lbs"),
  7476. name: "Front (Werewolf)",
  7477. image: {
  7478. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7479. }
  7480. },
  7481. backWerewolf: {
  7482. height: math.unit(6 * 1.2, "feet"),
  7483. weight: math.unit(225, "lbs"),
  7484. name: "Back (Werewolf)",
  7485. image: {
  7486. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7487. }
  7488. },
  7489. },
  7490. [
  7491. {
  7492. name: "Nano",
  7493. height: math.unit(1, "micrometer")
  7494. },
  7495. {
  7496. name: "Micro",
  7497. height: math.unit(1, "inch")
  7498. },
  7499. {
  7500. name: "Normal",
  7501. height: math.unit(6, "feet"),
  7502. default: true
  7503. },
  7504. {
  7505. name: "Macro",
  7506. height: math.unit(60, "feet")
  7507. }
  7508. ]
  7509. ))
  7510. characterMakers.push(() => makeCharacter(
  7511. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7512. {
  7513. front: {
  7514. height: math.unit(6, "feet"),
  7515. weight: math.unit(165, "lbs"),
  7516. name: "Front",
  7517. image: {
  7518. source: "./media/characters/fluoresce/front.svg"
  7519. }
  7520. }
  7521. },
  7522. [
  7523. {
  7524. name: "Micro",
  7525. height: math.unit(6, "cm")
  7526. },
  7527. {
  7528. name: "Normal",
  7529. height: math.unit(5 + 7 / 12, "feet"),
  7530. default: true
  7531. },
  7532. {
  7533. name: "Macro",
  7534. height: math.unit(56, "feet")
  7535. },
  7536. {
  7537. name: "Megamacro",
  7538. height: math.unit(1.9, "miles")
  7539. },
  7540. ]
  7541. ))
  7542. characterMakers.push(() => makeCharacter(
  7543. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7544. {
  7545. front: {
  7546. height: math.unit(9 + 6 / 12, "feet"),
  7547. weight: math.unit(523, "lbs"),
  7548. name: "Side",
  7549. image: {
  7550. source: "./media/characters/aurora/side.svg"
  7551. }
  7552. }
  7553. },
  7554. [
  7555. {
  7556. name: "Normal",
  7557. height: math.unit(9 + 6 / 12, "feet")
  7558. },
  7559. {
  7560. name: "Macro",
  7561. height: math.unit(96, "feet"),
  7562. default: true
  7563. },
  7564. {
  7565. name: "Macro+",
  7566. height: math.unit(243, "feet")
  7567. },
  7568. ]
  7569. ))
  7570. characterMakers.push(() => makeCharacter(
  7571. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7572. {
  7573. front: {
  7574. height: math.unit(194, "cm"),
  7575. weight: math.unit(90, "kg"),
  7576. name: "Front",
  7577. image: {
  7578. source: "./media/characters/ranek/front.svg"
  7579. }
  7580. },
  7581. side: {
  7582. height: math.unit(194, "cm"),
  7583. weight: math.unit(90, "kg"),
  7584. name: "Side",
  7585. image: {
  7586. source: "./media/characters/ranek/side.svg"
  7587. }
  7588. },
  7589. back: {
  7590. height: math.unit(194, "cm"),
  7591. weight: math.unit(90, "kg"),
  7592. name: "Back",
  7593. image: {
  7594. source: "./media/characters/ranek/back.svg"
  7595. }
  7596. },
  7597. feral: {
  7598. height: math.unit(30, "cm"),
  7599. weight: math.unit(1.6, "lbs"),
  7600. name: "Feral",
  7601. image: {
  7602. source: "./media/characters/ranek/feral.svg"
  7603. }
  7604. },
  7605. },
  7606. [
  7607. {
  7608. name: "Normal",
  7609. height: math.unit(194, "cm"),
  7610. default: true
  7611. },
  7612. {
  7613. name: "Macro",
  7614. height: math.unit(100, "meters")
  7615. },
  7616. ]
  7617. ))
  7618. characterMakers.push(() => makeCharacter(
  7619. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7620. {
  7621. front: {
  7622. height: math.unit(5 + 6 / 12, "feet"),
  7623. weight: math.unit(153, "lbs"),
  7624. name: "Front",
  7625. image: {
  7626. source: "./media/characters/andrew-cooper/front.svg"
  7627. }
  7628. },
  7629. },
  7630. [
  7631. {
  7632. name: "Nano",
  7633. height: math.unit(1, "mm")
  7634. },
  7635. {
  7636. name: "Micro",
  7637. height: math.unit(2, "inches")
  7638. },
  7639. {
  7640. name: "Normal",
  7641. height: math.unit(5 + 6 / 12, "feet"),
  7642. default: true
  7643. }
  7644. ]
  7645. ))
  7646. characterMakers.push(() => makeCharacter(
  7647. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7648. {
  7649. front: {
  7650. height: math.unit(6, "feet"),
  7651. weight: math.unit(180, "lbs"),
  7652. name: "Front",
  7653. image: {
  7654. source: "./media/characters/akane-sato/front.svg",
  7655. extra: 1219 / 1140
  7656. }
  7657. },
  7658. back: {
  7659. height: math.unit(6, "feet"),
  7660. weight: math.unit(180, "lbs"),
  7661. name: "Back",
  7662. image: {
  7663. source: "./media/characters/akane-sato/back.svg",
  7664. extra: 1219 / 1170
  7665. }
  7666. },
  7667. },
  7668. [
  7669. {
  7670. name: "Normal",
  7671. height: math.unit(2.5, "meters")
  7672. },
  7673. {
  7674. name: "Macro",
  7675. height: math.unit(250, "meters"),
  7676. default: true
  7677. },
  7678. {
  7679. name: "Megamacro",
  7680. height: math.unit(25, "km")
  7681. },
  7682. ]
  7683. ))
  7684. characterMakers.push(() => makeCharacter(
  7685. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7686. {
  7687. front: {
  7688. height: math.unit(6, "feet"),
  7689. weight: math.unit(65, "kg"),
  7690. name: "Front",
  7691. image: {
  7692. source: "./media/characters/rook/front.svg",
  7693. extra: 960 / 950
  7694. }
  7695. }
  7696. },
  7697. [
  7698. {
  7699. name: "Normal",
  7700. height: math.unit(8.8, "feet")
  7701. },
  7702. {
  7703. name: "Macro",
  7704. height: math.unit(88, "feet"),
  7705. default: true
  7706. },
  7707. {
  7708. name: "Megamacro",
  7709. height: math.unit(8, "miles")
  7710. },
  7711. ]
  7712. ))
  7713. characterMakers.push(() => makeCharacter(
  7714. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7715. {
  7716. front: {
  7717. height: math.unit(12 + 2 / 12, "feet"),
  7718. weight: math.unit(808, "lbs"),
  7719. name: "Front",
  7720. image: {
  7721. source: "./media/characters/prodigy/front.svg"
  7722. }
  7723. }
  7724. },
  7725. [
  7726. {
  7727. name: "Normal",
  7728. height: math.unit(12 + 2 / 12, "feet"),
  7729. default: true
  7730. },
  7731. {
  7732. name: "Macro",
  7733. height: math.unit(143, "feet")
  7734. },
  7735. {
  7736. name: "Macro+",
  7737. height: math.unit(400, "feet")
  7738. },
  7739. ]
  7740. ))
  7741. characterMakers.push(() => makeCharacter(
  7742. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7743. {
  7744. front: {
  7745. height: math.unit(6, "feet"),
  7746. weight: math.unit(225, "lbs"),
  7747. name: "Front",
  7748. image: {
  7749. source: "./media/characters/daniel/front.svg"
  7750. }
  7751. },
  7752. leaning: {
  7753. height: math.unit(6, "feet"),
  7754. weight: math.unit(225, "lbs"),
  7755. name: "Leaning",
  7756. image: {
  7757. source: "./media/characters/daniel/leaning.svg"
  7758. }
  7759. },
  7760. },
  7761. [
  7762. {
  7763. name: "Macro",
  7764. height: math.unit(1000, "feet"),
  7765. default: true
  7766. },
  7767. ]
  7768. ))
  7769. characterMakers.push(() => makeCharacter(
  7770. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7771. {
  7772. front: {
  7773. height: math.unit(6, "feet"),
  7774. weight: math.unit(88, "lbs"),
  7775. name: "Front",
  7776. image: {
  7777. source: "./media/characters/chiros/front.svg",
  7778. extra: 306 / 226
  7779. }
  7780. },
  7781. side: {
  7782. height: math.unit(6, "feet"),
  7783. weight: math.unit(88, "lbs"),
  7784. name: "Side",
  7785. image: {
  7786. source: "./media/characters/chiros/side.svg",
  7787. extra: 306 / 226
  7788. }
  7789. },
  7790. },
  7791. [
  7792. {
  7793. name: "Normal",
  7794. height: math.unit(6, "cm"),
  7795. default: true
  7796. },
  7797. ]
  7798. ))
  7799. characterMakers.push(() => makeCharacter(
  7800. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7801. {
  7802. front: {
  7803. height: math.unit(6, "feet"),
  7804. weight: math.unit(100, "lbs"),
  7805. name: "Front",
  7806. image: {
  7807. source: "./media/characters/selka/front.svg",
  7808. extra: 947 / 887
  7809. }
  7810. }
  7811. },
  7812. [
  7813. {
  7814. name: "Normal",
  7815. height: math.unit(5, "cm"),
  7816. default: true
  7817. },
  7818. ]
  7819. ))
  7820. characterMakers.push(() => makeCharacter(
  7821. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7822. {
  7823. front: {
  7824. height: math.unit(8 + 3 / 12, "feet"),
  7825. weight: math.unit(424, "lbs"),
  7826. name: "Front",
  7827. image: {
  7828. source: "./media/characters/verin/front.svg",
  7829. extra: 1845 / 1550
  7830. }
  7831. },
  7832. frontArmored: {
  7833. height: math.unit(8 + 3 / 12, "feet"),
  7834. weight: math.unit(424, "lbs"),
  7835. name: "Front (Armored)",
  7836. image: {
  7837. source: "./media/characters/verin/front-armor.svg",
  7838. extra: 1845 / 1550,
  7839. bottom: 0.01
  7840. }
  7841. },
  7842. back: {
  7843. height: math.unit(8 + 3 / 12, "feet"),
  7844. weight: math.unit(424, "lbs"),
  7845. name: "Back",
  7846. image: {
  7847. source: "./media/characters/verin/back.svg",
  7848. bottom: 0.1,
  7849. extra: 1
  7850. }
  7851. },
  7852. foot: {
  7853. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7854. name: "Foot",
  7855. image: {
  7856. source: "./media/characters/verin/foot.svg"
  7857. }
  7858. },
  7859. },
  7860. [
  7861. {
  7862. name: "Normal",
  7863. height: math.unit(8 + 3 / 12, "feet")
  7864. },
  7865. {
  7866. name: "Minimacro",
  7867. height: math.unit(21, "feet"),
  7868. default: true
  7869. },
  7870. {
  7871. name: "Macro",
  7872. height: math.unit(626, "feet")
  7873. },
  7874. ]
  7875. ))
  7876. characterMakers.push(() => makeCharacter(
  7877. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7878. {
  7879. front: {
  7880. height: math.unit(2.718, "meters"),
  7881. weight: math.unit(150, "lbs"),
  7882. name: "Front",
  7883. image: {
  7884. source: "./media/characters/sovrim-terraquian/front.svg"
  7885. }
  7886. },
  7887. back: {
  7888. height: math.unit(2.718, "meters"),
  7889. weight: math.unit(150, "lbs"),
  7890. name: "Back",
  7891. image: {
  7892. source: "./media/characters/sovrim-terraquian/back.svg"
  7893. }
  7894. }
  7895. },
  7896. [
  7897. {
  7898. name: "Micro",
  7899. height: math.unit(2, "inches")
  7900. },
  7901. {
  7902. name: "Small",
  7903. height: math.unit(1, "meter")
  7904. },
  7905. {
  7906. name: "Normal",
  7907. height: math.unit(Math.E, "meters"),
  7908. default: true
  7909. },
  7910. {
  7911. name: "Macro",
  7912. height: math.unit(20, "meters")
  7913. },
  7914. {
  7915. name: "Macro+",
  7916. height: math.unit(400, "meters")
  7917. },
  7918. ]
  7919. ))
  7920. characterMakers.push(() => makeCharacter(
  7921. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7922. {
  7923. front: {
  7924. height: math.unit(7, "feet"),
  7925. weight: math.unit(489, "lbs"),
  7926. name: "Front",
  7927. image: {
  7928. source: "./media/characters/reece-silvermane/front.svg",
  7929. bottom: 0.02,
  7930. extra: 1
  7931. }
  7932. },
  7933. },
  7934. [
  7935. {
  7936. name: "Macro",
  7937. height: math.unit(1.5, "miles"),
  7938. default: true
  7939. },
  7940. ]
  7941. ))
  7942. characterMakers.push(() => makeCharacter(
  7943. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7944. {
  7945. front: {
  7946. height: math.unit(6, "feet"),
  7947. weight: math.unit(78, "kg"),
  7948. name: "Front",
  7949. image: {
  7950. source: "./media/characters/kane/front.svg",
  7951. extra: 978 / 899
  7952. }
  7953. },
  7954. },
  7955. [
  7956. {
  7957. name: "Normal",
  7958. height: math.unit(2.1, "m"),
  7959. },
  7960. {
  7961. name: "Macro",
  7962. height: math.unit(1, "km"),
  7963. default: true
  7964. },
  7965. ]
  7966. ))
  7967. characterMakers.push(() => makeCharacter(
  7968. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7969. {
  7970. front: {
  7971. height: math.unit(6, "feet"),
  7972. weight: math.unit(200, "kg"),
  7973. name: "Front",
  7974. image: {
  7975. source: "./media/characters/tegon/front.svg",
  7976. bottom: 0.01,
  7977. extra: 1
  7978. }
  7979. },
  7980. },
  7981. [
  7982. {
  7983. name: "Micro",
  7984. height: math.unit(1, "inch")
  7985. },
  7986. {
  7987. name: "Normal",
  7988. height: math.unit(6 + 3 / 12, "feet"),
  7989. default: true
  7990. },
  7991. {
  7992. name: "Macro",
  7993. height: math.unit(300, "feet")
  7994. },
  7995. {
  7996. name: "Megamacro",
  7997. height: math.unit(69, "miles")
  7998. },
  7999. ]
  8000. ))
  8001. characterMakers.push(() => makeCharacter(
  8002. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8003. {
  8004. side: {
  8005. height: math.unit(6, "feet"),
  8006. weight: math.unit(2304, "lbs"),
  8007. name: "Side",
  8008. image: {
  8009. source: "./media/characters/arcturax/side.svg",
  8010. extra: 790 / 376,
  8011. bottom: 0.01
  8012. }
  8013. },
  8014. },
  8015. [
  8016. {
  8017. name: "Micro",
  8018. height: math.unit(2, "inch")
  8019. },
  8020. {
  8021. name: "Normal",
  8022. height: math.unit(6, "feet")
  8023. },
  8024. {
  8025. name: "Macro",
  8026. height: math.unit(39, "feet"),
  8027. default: true
  8028. },
  8029. {
  8030. name: "Megamacro",
  8031. height: math.unit(7, "miles")
  8032. },
  8033. ]
  8034. ))
  8035. characterMakers.push(() => makeCharacter(
  8036. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8037. {
  8038. front: {
  8039. height: math.unit(6, "feet"),
  8040. weight: math.unit(50, "lbs"),
  8041. name: "Front",
  8042. image: {
  8043. source: "./media/characters/sentri/front.svg",
  8044. extra: 1750 / 1570,
  8045. bottom: 0.025
  8046. }
  8047. },
  8048. frontAlt: {
  8049. height: math.unit(6, "feet"),
  8050. weight: math.unit(50, "lbs"),
  8051. name: "Front (Alt)",
  8052. image: {
  8053. source: "./media/characters/sentri/front-alt.svg",
  8054. extra: 1750 / 1570,
  8055. bottom: 0.025
  8056. }
  8057. },
  8058. },
  8059. [
  8060. {
  8061. name: "Normal",
  8062. height: math.unit(15, "feet"),
  8063. default: true
  8064. },
  8065. {
  8066. name: "Macro",
  8067. height: math.unit(2500, "feet")
  8068. }
  8069. ]
  8070. ))
  8071. characterMakers.push(() => makeCharacter(
  8072. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8073. {
  8074. front: {
  8075. height: math.unit(5 + 8 / 12, "feet"),
  8076. weight: math.unit(130, "lbs"),
  8077. name: "Front",
  8078. image: {
  8079. source: "./media/characters/corvin/front.svg",
  8080. extra: 1803 / 1629
  8081. }
  8082. },
  8083. frontShirt: {
  8084. height: math.unit(5 + 8 / 12, "feet"),
  8085. weight: math.unit(130, "lbs"),
  8086. name: "Front (Shirt)",
  8087. image: {
  8088. source: "./media/characters/corvin/front-shirt.svg",
  8089. extra: 1803 / 1629
  8090. }
  8091. },
  8092. frontPoncho: {
  8093. height: math.unit(5 + 8 / 12, "feet"),
  8094. weight: math.unit(130, "lbs"),
  8095. name: "Front (Poncho)",
  8096. image: {
  8097. source: "./media/characters/corvin/front-poncho.svg",
  8098. extra: 1803 / 1629
  8099. }
  8100. },
  8101. side: {
  8102. height: math.unit(5 + 8 / 12, "feet"),
  8103. weight: math.unit(130, "lbs"),
  8104. name: "Side",
  8105. image: {
  8106. source: "./media/characters/corvin/side.svg",
  8107. extra: 1012 / 945
  8108. }
  8109. },
  8110. back: {
  8111. height: math.unit(5 + 8 / 12, "feet"),
  8112. weight: math.unit(130, "lbs"),
  8113. name: "Back",
  8114. image: {
  8115. source: "./media/characters/corvin/back.svg",
  8116. extra: 1803 / 1629
  8117. }
  8118. },
  8119. },
  8120. [
  8121. {
  8122. name: "Micro",
  8123. height: math.unit(3, "inches")
  8124. },
  8125. {
  8126. name: "Normal",
  8127. height: math.unit(5 + 8 / 12, "feet")
  8128. },
  8129. {
  8130. name: "Macro",
  8131. height: math.unit(300, "feet"),
  8132. default: true
  8133. },
  8134. {
  8135. name: "Megamacro",
  8136. height: math.unit(500, "miles")
  8137. }
  8138. ]
  8139. ))
  8140. characterMakers.push(() => makeCharacter(
  8141. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8142. {
  8143. front: {
  8144. height: math.unit(6, "feet"),
  8145. weight: math.unit(135, "lbs"),
  8146. name: "Front",
  8147. image: {
  8148. source: "./media/characters/q/front.svg",
  8149. extra: 854 / 752,
  8150. bottom: 0.005
  8151. }
  8152. },
  8153. back: {
  8154. height: math.unit(6, "feet"),
  8155. weight: math.unit(130, "lbs"),
  8156. name: "Back",
  8157. image: {
  8158. source: "./media/characters/q/back.svg",
  8159. extra: 854 / 752
  8160. }
  8161. },
  8162. },
  8163. [
  8164. {
  8165. name: "Macro",
  8166. height: math.unit(90, "feet"),
  8167. default: true
  8168. },
  8169. {
  8170. name: "Extra Macro",
  8171. height: math.unit(300, "feet"),
  8172. },
  8173. {
  8174. name: "BIG WALF",
  8175. height: math.unit(750, "feet"),
  8176. },
  8177. ]
  8178. ))
  8179. characterMakers.push(() => makeCharacter(
  8180. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8181. {
  8182. front: {
  8183. height: math.unit(6, "feet"),
  8184. weight: math.unit(150, "lbs"),
  8185. name: "Front",
  8186. image: {
  8187. source: "./media/characters/carley/front.svg",
  8188. extra: 3927 / 3540,
  8189. bottom: 29.2 / 735
  8190. }
  8191. }
  8192. },
  8193. [
  8194. {
  8195. name: "Normal",
  8196. height: math.unit(6 + 3 / 12, "feet")
  8197. },
  8198. {
  8199. name: "Macro",
  8200. height: math.unit(185, "feet"),
  8201. default: true
  8202. },
  8203. {
  8204. name: "Megamacro",
  8205. height: math.unit(8, "miles"),
  8206. },
  8207. ]
  8208. ))
  8209. characterMakers.push(() => makeCharacter(
  8210. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8211. {
  8212. front: {
  8213. height: math.unit(3, "feet"),
  8214. weight: math.unit(28, "lbs"),
  8215. name: "Front",
  8216. image: {
  8217. source: "./media/characters/citrine/front.svg"
  8218. }
  8219. }
  8220. },
  8221. [
  8222. {
  8223. name: "Normal",
  8224. height: math.unit(3, "feet"),
  8225. default: true
  8226. }
  8227. ]
  8228. ))
  8229. characterMakers.push(() => makeCharacter(
  8230. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8231. {
  8232. front: {
  8233. height: math.unit(14, "feet"),
  8234. weight: math.unit(1450, "kg"),
  8235. capacity: math.unit(15, "people"),
  8236. name: "Front",
  8237. image: {
  8238. source: "./media/characters/aura-starwind/front.svg",
  8239. extra: 1440/1327,
  8240. bottom: 11/1451
  8241. }
  8242. },
  8243. side: {
  8244. height: math.unit(14, "feet"),
  8245. weight: math.unit(1450, "kg"),
  8246. capacity: math.unit(15, "people"),
  8247. name: "Side",
  8248. image: {
  8249. source: "./media/characters/aura-starwind/side.svg",
  8250. extra: 1654 / 1497
  8251. }
  8252. },
  8253. taur: {
  8254. height: math.unit(18, "feet"),
  8255. weight: math.unit(5500, "kg"),
  8256. capacity: math.unit(50, "people"),
  8257. name: "Taur",
  8258. image: {
  8259. source: "./media/characters/aura-starwind/taur.svg",
  8260. extra: 1760 / 1650
  8261. }
  8262. },
  8263. feral: {
  8264. height: math.unit(46, "feet"),
  8265. weight: math.unit(25000, "kg"),
  8266. capacity: math.unit(120, "people"),
  8267. name: "Feral",
  8268. image: {
  8269. source: "./media/characters/aura-starwind/feral.svg"
  8270. }
  8271. },
  8272. },
  8273. [
  8274. {
  8275. name: "Normal",
  8276. height: math.unit(14, "feet"),
  8277. default: true
  8278. },
  8279. {
  8280. name: "Macro",
  8281. height: math.unit(50, "meters")
  8282. },
  8283. {
  8284. name: "Megamacro",
  8285. height: math.unit(5000, "meters")
  8286. },
  8287. {
  8288. name: "Gigamacro",
  8289. height: math.unit(100000, "kilometers")
  8290. },
  8291. ]
  8292. ))
  8293. characterMakers.push(() => makeCharacter(
  8294. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8295. {
  8296. front: {
  8297. height: math.unit(2 + 7 / 12, "feet"),
  8298. weight: math.unit(32, "lbs"),
  8299. name: "Front",
  8300. image: {
  8301. source: "./media/characters/rivet/front.svg",
  8302. extra: 1716 / 1658,
  8303. bottom: 0.03
  8304. }
  8305. },
  8306. foot: {
  8307. height: math.unit(0.551, "feet"),
  8308. name: "Rivet's Foot",
  8309. image: {
  8310. source: "./media/characters/rivet/foot.svg"
  8311. },
  8312. rename: true
  8313. }
  8314. },
  8315. [
  8316. {
  8317. name: "Micro",
  8318. height: math.unit(1.5, "inches"),
  8319. },
  8320. {
  8321. name: "Normal",
  8322. height: math.unit(2 + 7 / 12, "feet"),
  8323. default: true
  8324. },
  8325. {
  8326. name: "Macro",
  8327. height: math.unit(85, "feet")
  8328. },
  8329. {
  8330. name: "Megamacro",
  8331. height: math.unit(2.2, "km")
  8332. }
  8333. ]
  8334. ))
  8335. characterMakers.push(() => makeCharacter(
  8336. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8337. {
  8338. front: {
  8339. height: math.unit(5 + 9 / 12, "feet"),
  8340. weight: math.unit(150, "lbs"),
  8341. name: "Front",
  8342. image: {
  8343. source: "./media/characters/coffee/front.svg",
  8344. extra: 3666 / 3032,
  8345. bottom: 0.04
  8346. }
  8347. },
  8348. foot: {
  8349. height: math.unit(1.29, "feet"),
  8350. name: "Foot",
  8351. image: {
  8352. source: "./media/characters/coffee/foot.svg"
  8353. }
  8354. },
  8355. },
  8356. [
  8357. {
  8358. name: "Micro",
  8359. height: math.unit(2, "inches"),
  8360. },
  8361. {
  8362. name: "Normal",
  8363. height: math.unit(5 + 9 / 12, "feet"),
  8364. default: true
  8365. },
  8366. {
  8367. name: "Macro",
  8368. height: math.unit(800, "feet")
  8369. },
  8370. {
  8371. name: "Megamacro",
  8372. height: math.unit(25, "miles")
  8373. }
  8374. ]
  8375. ))
  8376. characterMakers.push(() => makeCharacter(
  8377. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8378. {
  8379. front: {
  8380. height: math.unit(6, "feet"),
  8381. weight: math.unit(200, "lbs"),
  8382. name: "Front",
  8383. image: {
  8384. source: "./media/characters/chari-gal/front.svg",
  8385. extra: 1568 / 1385,
  8386. bottom: 0.047
  8387. }
  8388. },
  8389. gigantamax: {
  8390. height: math.unit(6 * 16, "feet"),
  8391. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8392. name: "Gigantamax",
  8393. image: {
  8394. source: "./media/characters/chari-gal/gigantamax.svg",
  8395. extra: 1124 / 888,
  8396. bottom: 0.03
  8397. }
  8398. },
  8399. },
  8400. [
  8401. {
  8402. name: "Normal",
  8403. height: math.unit(5 + 7 / 12, "feet")
  8404. },
  8405. {
  8406. name: "Macro",
  8407. height: math.unit(200, "feet"),
  8408. default: true
  8409. }
  8410. ]
  8411. ))
  8412. characterMakers.push(() => makeCharacter(
  8413. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8414. {
  8415. front: {
  8416. height: math.unit(6, "feet"),
  8417. weight: math.unit(150, "lbs"),
  8418. name: "Front",
  8419. image: {
  8420. source: "./media/characters/nova/front.svg",
  8421. extra: 5000 / 4722,
  8422. bottom: 0.02
  8423. }
  8424. }
  8425. },
  8426. [
  8427. {
  8428. name: "Micro-",
  8429. height: math.unit(0.8, "inches")
  8430. },
  8431. {
  8432. name: "Micro",
  8433. height: math.unit(2, "inches"),
  8434. default: true
  8435. },
  8436. ]
  8437. ))
  8438. characterMakers.push(() => makeCharacter(
  8439. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8440. {
  8441. front: {
  8442. height: math.unit(3 + 1 / 12, "feet"),
  8443. weight: math.unit(21.7, "lbs"),
  8444. name: "Front",
  8445. image: {
  8446. source: "./media/characters/argent/front.svg",
  8447. extra: 1471 / 1331,
  8448. bottom: 100.8 / 1575.5
  8449. }
  8450. }
  8451. },
  8452. [
  8453. {
  8454. name: "Micro",
  8455. height: math.unit(2, "inches")
  8456. },
  8457. {
  8458. name: "Normal",
  8459. height: math.unit(3 + 1 / 12, "feet"),
  8460. default: true
  8461. },
  8462. {
  8463. name: "Macro",
  8464. height: math.unit(120, "feet")
  8465. },
  8466. ]
  8467. ))
  8468. characterMakers.push(() => makeCharacter(
  8469. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8470. {
  8471. lamp: {
  8472. height: math.unit(7 * 1559 / 989, "feet"),
  8473. name: "Magic Lamp",
  8474. image: {
  8475. source: "./media/characters/mira-al-cul/lamp.svg",
  8476. extra: 1617 / 1559
  8477. }
  8478. },
  8479. front: {
  8480. height: math.unit(7, "feet"),
  8481. name: "Front",
  8482. image: {
  8483. source: "./media/characters/mira-al-cul/front.svg",
  8484. extra: 1044 / 990
  8485. }
  8486. },
  8487. },
  8488. [
  8489. {
  8490. name: "Heavily Restricted",
  8491. height: math.unit(7 * 1559 / 989, "feet")
  8492. },
  8493. {
  8494. name: "Freshly Freed",
  8495. height: math.unit(50 * 1559 / 989, "feet")
  8496. },
  8497. {
  8498. name: "World Encompassing",
  8499. height: math.unit(10000 * 1559 / 989, "miles")
  8500. },
  8501. {
  8502. name: "Galactic",
  8503. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8504. },
  8505. {
  8506. name: "Palmed Universe",
  8507. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8508. default: true
  8509. },
  8510. {
  8511. name: "Multiversal Matriarch",
  8512. height: math.unit(8.87e10, "yottameters")
  8513. },
  8514. {
  8515. name: "Void Mother",
  8516. height: math.unit(3.14e110, "yottaparsecs")
  8517. },
  8518. {
  8519. name: "Toying with Transcendence",
  8520. height: math.unit(1e307, "meters")
  8521. },
  8522. ]
  8523. ))
  8524. characterMakers.push(() => makeCharacter(
  8525. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8526. {
  8527. front: {
  8528. height: math.unit(17 + 1 / 12, "feet"),
  8529. weight: math.unit(476.2 * 5, "lbs"),
  8530. name: "Front",
  8531. image: {
  8532. source: "./media/characters/kuro-shi-uchū/front.svg",
  8533. extra: 2329 / 1835,
  8534. bottom: 0.02
  8535. }
  8536. },
  8537. },
  8538. [
  8539. {
  8540. name: "Micro",
  8541. height: math.unit(2, "inches")
  8542. },
  8543. {
  8544. name: "Normal",
  8545. height: math.unit(12, "meters")
  8546. },
  8547. {
  8548. name: "Planetary",
  8549. height: math.unit(0.00929, "AU"),
  8550. default: true
  8551. },
  8552. {
  8553. name: "Universal",
  8554. height: math.unit(20, "gigaparsecs")
  8555. },
  8556. ]
  8557. ))
  8558. characterMakers.push(() => makeCharacter(
  8559. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8560. {
  8561. front: {
  8562. height: math.unit(5 + 2 / 12, "feet"),
  8563. weight: math.unit(120, "lbs"),
  8564. name: "Front",
  8565. image: {
  8566. source: "./media/characters/katherine/front.svg",
  8567. extra: 2075 / 1969
  8568. }
  8569. },
  8570. dress: {
  8571. height: math.unit(5 + 2 / 12, "feet"),
  8572. weight: math.unit(120, "lbs"),
  8573. name: "Dress",
  8574. image: {
  8575. source: "./media/characters/katherine/dress.svg",
  8576. extra: 2258 / 2064
  8577. }
  8578. },
  8579. },
  8580. [
  8581. {
  8582. name: "Micro",
  8583. height: math.unit(1, "inches"),
  8584. default: true
  8585. },
  8586. {
  8587. name: "Normal",
  8588. height: math.unit(5 + 2 / 12, "feet")
  8589. },
  8590. {
  8591. name: "Macro",
  8592. height: math.unit(100, "meters")
  8593. },
  8594. {
  8595. name: "Megamacro",
  8596. height: math.unit(80, "miles")
  8597. },
  8598. ]
  8599. ))
  8600. characterMakers.push(() => makeCharacter(
  8601. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8602. {
  8603. front: {
  8604. height: math.unit(7 + 8 / 12, "feet"),
  8605. weight: math.unit(250, "lbs"),
  8606. name: "Front",
  8607. image: {
  8608. source: "./media/characters/yevis/front.svg",
  8609. extra: 1938 / 1755
  8610. }
  8611. }
  8612. },
  8613. [
  8614. {
  8615. name: "Mortal",
  8616. height: math.unit(7 + 8 / 12, "feet")
  8617. },
  8618. {
  8619. name: "Battle",
  8620. height: math.unit(25 + 11 / 12, "feet")
  8621. },
  8622. {
  8623. name: "Wrath",
  8624. height: math.unit(1654 + 11 / 12, "feet")
  8625. },
  8626. {
  8627. name: "Planet Destroyer",
  8628. height: math.unit(12000, "miles")
  8629. },
  8630. {
  8631. name: "Galaxy Conqueror",
  8632. height: math.unit(1.45, "zettameters"),
  8633. default: true
  8634. },
  8635. {
  8636. name: "Universal War",
  8637. height: math.unit(184, "gigaparsecs")
  8638. },
  8639. {
  8640. name: "Eternity War",
  8641. height: math.unit(1.98e55, "yottaparsecs")
  8642. },
  8643. ]
  8644. ))
  8645. characterMakers.push(() => makeCharacter(
  8646. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8647. {
  8648. front: {
  8649. height: math.unit(5 + 8 / 12, "feet"),
  8650. weight: math.unit(63, "kg"),
  8651. name: "Front",
  8652. image: {
  8653. source: "./media/characters/xavier/front.svg",
  8654. extra: 944 / 883
  8655. }
  8656. },
  8657. frontStretch: {
  8658. height: math.unit(5 + 8 / 12, "feet"),
  8659. weight: math.unit(63, "kg"),
  8660. name: "Stretching",
  8661. image: {
  8662. source: "./media/characters/xavier/front-stretch.svg",
  8663. extra: 962 / 820
  8664. }
  8665. },
  8666. },
  8667. [
  8668. {
  8669. name: "Normal",
  8670. height: math.unit(5 + 8 / 12, "feet")
  8671. },
  8672. {
  8673. name: "Macro",
  8674. height: math.unit(100, "meters"),
  8675. default: true
  8676. },
  8677. {
  8678. name: "McLargeHuge",
  8679. height: math.unit(10, "miles")
  8680. },
  8681. ]
  8682. ))
  8683. characterMakers.push(() => makeCharacter(
  8684. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8685. {
  8686. front: {
  8687. height: math.unit(5 + 5 / 12, "feet"),
  8688. weight: math.unit(150, "lb"),
  8689. name: "Front",
  8690. image: {
  8691. source: "./media/characters/joshii/front.svg",
  8692. extra: 765 / 653,
  8693. bottom: 51 / 816
  8694. }
  8695. },
  8696. foot: {
  8697. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8698. name: "Foot",
  8699. image: {
  8700. source: "./media/characters/joshii/foot.svg"
  8701. }
  8702. },
  8703. },
  8704. [
  8705. {
  8706. name: "Micro",
  8707. height: math.unit(2, "inches"),
  8708. default: true
  8709. },
  8710. {
  8711. name: "Normal",
  8712. height: math.unit(5 + 5 / 12, "feet")
  8713. },
  8714. {
  8715. name: "Macro",
  8716. height: math.unit(785, "feet")
  8717. },
  8718. {
  8719. name: "Megamacro",
  8720. height: math.unit(24.5, "miles")
  8721. },
  8722. ]
  8723. ))
  8724. characterMakers.push(() => makeCharacter(
  8725. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8726. {
  8727. front: {
  8728. height: math.unit(6, "feet"),
  8729. weight: math.unit(150, "lb"),
  8730. name: "Front",
  8731. image: {
  8732. source: "./media/characters/goddess-elizabeth/front.svg",
  8733. extra: 1800 / 1525,
  8734. bottom: 0.005
  8735. }
  8736. },
  8737. foot: {
  8738. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8739. name: "Foot",
  8740. image: {
  8741. source: "./media/characters/goddess-elizabeth/foot.svg"
  8742. }
  8743. },
  8744. mouth: {
  8745. height: math.unit(6, "feet"),
  8746. name: "Mouth",
  8747. image: {
  8748. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8749. }
  8750. },
  8751. },
  8752. [
  8753. {
  8754. name: "Micro",
  8755. height: math.unit(12, "feet")
  8756. },
  8757. {
  8758. name: "Normal",
  8759. height: math.unit(80, "miles"),
  8760. default: true
  8761. },
  8762. {
  8763. name: "Macro",
  8764. height: math.unit(15000, "parsecs")
  8765. },
  8766. ]
  8767. ))
  8768. characterMakers.push(() => makeCharacter(
  8769. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8770. {
  8771. front: {
  8772. height: math.unit(5 + 9 / 12, "feet"),
  8773. weight: math.unit(144, "lb"),
  8774. name: "Front",
  8775. image: {
  8776. source: "./media/characters/kara/front.svg"
  8777. }
  8778. },
  8779. feet: {
  8780. height: math.unit(6 / 6.765, "feet"),
  8781. name: "Kara's Feet",
  8782. rename: true,
  8783. image: {
  8784. source: "./media/characters/kara/feet.svg"
  8785. }
  8786. },
  8787. },
  8788. [
  8789. {
  8790. name: "Normal",
  8791. height: math.unit(5 + 9 / 12, "feet")
  8792. },
  8793. {
  8794. name: "Macro",
  8795. height: math.unit(174, "feet"),
  8796. default: true
  8797. },
  8798. ]
  8799. ))
  8800. characterMakers.push(() => makeCharacter(
  8801. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8802. {
  8803. front: {
  8804. height: math.unit(18, "feet"),
  8805. weight: math.unit(4050, "lb"),
  8806. name: "Front",
  8807. image: {
  8808. source: "./media/characters/tyrone/front.svg",
  8809. extra: 2405 / 2270,
  8810. bottom: 182 / 2587
  8811. }
  8812. },
  8813. },
  8814. [
  8815. {
  8816. name: "Normal",
  8817. height: math.unit(18, "feet"),
  8818. default: true
  8819. },
  8820. {
  8821. name: "Macro",
  8822. height: math.unit(300, "feet")
  8823. },
  8824. {
  8825. name: "Megamacro",
  8826. height: math.unit(15, "km")
  8827. },
  8828. {
  8829. name: "Gigamacro",
  8830. height: math.unit(500, "km")
  8831. },
  8832. {
  8833. name: "Teramacro",
  8834. height: math.unit(0.5, "gigameters")
  8835. },
  8836. {
  8837. name: "Omnimacro",
  8838. height: math.unit(1e252, "yottauniverse")
  8839. },
  8840. ]
  8841. ))
  8842. characterMakers.push(() => makeCharacter(
  8843. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8844. {
  8845. front: {
  8846. height: math.unit(7 + 8 / 12, "feet"),
  8847. weight: math.unit(120, "lb"),
  8848. name: "Front",
  8849. image: {
  8850. source: "./media/characters/danny/front.svg",
  8851. extra: 1490 / 1350
  8852. }
  8853. },
  8854. back: {
  8855. height: math.unit(7 + 8 / 12, "feet"),
  8856. weight: math.unit(120, "lb"),
  8857. name: "Back",
  8858. image: {
  8859. source: "./media/characters/danny/back.svg",
  8860. extra: 1490 / 1350
  8861. }
  8862. },
  8863. },
  8864. [
  8865. {
  8866. name: "Normal",
  8867. height: math.unit(7 + 8 / 12, "feet"),
  8868. default: true
  8869. },
  8870. ]
  8871. ))
  8872. characterMakers.push(() => makeCharacter(
  8873. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8874. {
  8875. front: {
  8876. height: math.unit(3.5, "inches"),
  8877. weight: math.unit(19, "grams"),
  8878. name: "Front",
  8879. image: {
  8880. source: "./media/characters/mallow/front.svg",
  8881. extra: 471 / 431
  8882. }
  8883. },
  8884. back: {
  8885. height: math.unit(3.5, "inches"),
  8886. weight: math.unit(19, "grams"),
  8887. name: "Back",
  8888. image: {
  8889. source: "./media/characters/mallow/back.svg",
  8890. extra: 471 / 431
  8891. }
  8892. },
  8893. },
  8894. [
  8895. {
  8896. name: "Normal",
  8897. height: math.unit(3.5, "inches"),
  8898. default: true
  8899. },
  8900. ]
  8901. ))
  8902. characterMakers.push(() => makeCharacter(
  8903. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8904. {
  8905. front: {
  8906. height: math.unit(9, "feet"),
  8907. weight: math.unit(230, "kg"),
  8908. name: "Front",
  8909. image: {
  8910. source: "./media/characters/starry-aqua/front.svg"
  8911. }
  8912. },
  8913. back: {
  8914. height: math.unit(9, "feet"),
  8915. weight: math.unit(230, "kg"),
  8916. name: "Back",
  8917. image: {
  8918. source: "./media/characters/starry-aqua/back.svg"
  8919. }
  8920. },
  8921. hand: {
  8922. height: math.unit(9 * 0.1168, "feet"),
  8923. name: "Hand",
  8924. image: {
  8925. source: "./media/characters/starry-aqua/hand.svg"
  8926. }
  8927. },
  8928. foot: {
  8929. height: math.unit(9 * 0.18, "feet"),
  8930. name: "Foot",
  8931. image: {
  8932. source: "./media/characters/starry-aqua/foot.svg"
  8933. }
  8934. }
  8935. },
  8936. [
  8937. {
  8938. name: "Micro",
  8939. height: math.unit(3, "inches")
  8940. },
  8941. {
  8942. name: "Normal",
  8943. height: math.unit(9, "feet")
  8944. },
  8945. {
  8946. name: "Macro",
  8947. height: math.unit(300, "feet"),
  8948. default: true
  8949. },
  8950. {
  8951. name: "Megamacro",
  8952. height: math.unit(3200, "feet")
  8953. }
  8954. ]
  8955. ))
  8956. characterMakers.push(() => makeCharacter(
  8957. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  8958. {
  8959. front: {
  8960. height: math.unit(15, "feet"),
  8961. weight: math.unit(5026, "lb"),
  8962. name: "Front",
  8963. image: {
  8964. source: "./media/characters/luka-towers/front.svg",
  8965. extra: 1269/1133,
  8966. bottom: 51/1320
  8967. }
  8968. },
  8969. },
  8970. [
  8971. {
  8972. name: "Normal",
  8973. height: math.unit(15, "feet"),
  8974. default: true
  8975. },
  8976. {
  8977. name: "Minimacro",
  8978. height: math.unit(25, "feet")
  8979. },
  8980. {
  8981. name: "Macro",
  8982. height: math.unit(320, "feet")
  8983. },
  8984. {
  8985. name: "Megamacro",
  8986. height: math.unit(35000, "feet")
  8987. },
  8988. {
  8989. name: "Gigamacro",
  8990. height: math.unit(4000, "miles")
  8991. },
  8992. {
  8993. name: "Teramacro",
  8994. height: math.unit(15000, "miles")
  8995. },
  8996. ]
  8997. ))
  8998. characterMakers.push(() => makeCharacter(
  8999. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9000. {
  9001. front: {
  9002. height: math.unit(6, "feet"),
  9003. weight: math.unit(150, "lb"),
  9004. name: "Front",
  9005. image: {
  9006. source: "./media/characters/natalie-nightring/front.svg",
  9007. extra: 1,
  9008. bottom: 0.06
  9009. }
  9010. },
  9011. },
  9012. [
  9013. {
  9014. name: "Uh Oh",
  9015. height: math.unit(0.1, "mm")
  9016. },
  9017. {
  9018. name: "Small",
  9019. height: math.unit(3, "inches")
  9020. },
  9021. {
  9022. name: "Human Scale",
  9023. height: math.unit(6, "feet")
  9024. },
  9025. {
  9026. name: "Librarian",
  9027. height: math.unit(50, "feet"),
  9028. default: true
  9029. },
  9030. {
  9031. name: "Immense",
  9032. height: math.unit(200, "miles")
  9033. },
  9034. ]
  9035. ))
  9036. characterMakers.push(() => makeCharacter(
  9037. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9038. {
  9039. front: {
  9040. height: math.unit(6, "feet"),
  9041. weight: math.unit(180, "lbs"),
  9042. name: "Front",
  9043. image: {
  9044. source: "./media/characters/danni-rosie/front.svg",
  9045. extra: 1260 / 1128,
  9046. bottom: 0.022
  9047. }
  9048. },
  9049. },
  9050. [
  9051. {
  9052. name: "Micro",
  9053. height: math.unit(2, "inches"),
  9054. default: true
  9055. },
  9056. ]
  9057. ))
  9058. characterMakers.push(() => makeCharacter(
  9059. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9060. {
  9061. front: {
  9062. height: math.unit(5 + 9 / 12, "feet"),
  9063. weight: math.unit(220, "lb"),
  9064. name: "Front",
  9065. image: {
  9066. source: "./media/characters/samantha-kruse/front.svg",
  9067. extra: (985 / 935),
  9068. bottom: 0.03
  9069. }
  9070. },
  9071. frontUndressed: {
  9072. height: math.unit(5 + 9 / 12, "feet"),
  9073. weight: math.unit(220, "lb"),
  9074. name: "Front (Undressed)",
  9075. image: {
  9076. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9077. extra: (973 / 923),
  9078. bottom: 0.025
  9079. }
  9080. },
  9081. fat: {
  9082. height: math.unit(5 + 9 / 12, "feet"),
  9083. weight: math.unit(900, "lb"),
  9084. name: "Front (Fat)",
  9085. image: {
  9086. source: "./media/characters/samantha-kruse/fat.svg",
  9087. extra: 2688 / 2561
  9088. }
  9089. },
  9090. },
  9091. [
  9092. {
  9093. name: "Normal",
  9094. height: math.unit(5 + 9 / 12, "feet"),
  9095. default: true
  9096. }
  9097. ]
  9098. ))
  9099. characterMakers.push(() => makeCharacter(
  9100. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9101. {
  9102. back: {
  9103. height: math.unit(5 + 4 / 12, "feet"),
  9104. weight: math.unit(4963, "lb"),
  9105. name: "Back",
  9106. image: {
  9107. source: "./media/characters/amelia-rosie/back.svg",
  9108. extra: 1113 / 963,
  9109. bottom: 0.01
  9110. }
  9111. },
  9112. },
  9113. [
  9114. {
  9115. name: "Level 0",
  9116. height: math.unit(5 + 4 / 12, "feet")
  9117. },
  9118. {
  9119. name: "Level 1",
  9120. height: math.unit(164597, "feet"),
  9121. default: true
  9122. },
  9123. {
  9124. name: "Level 2",
  9125. height: math.unit(956243, "miles")
  9126. },
  9127. {
  9128. name: "Level 3",
  9129. height: math.unit(29421709423, "miles")
  9130. },
  9131. {
  9132. name: "Level 4",
  9133. height: math.unit(154, "lightyears")
  9134. },
  9135. {
  9136. name: "Level 5",
  9137. height: math.unit(4738272, "lightyears")
  9138. },
  9139. {
  9140. name: "Level 6",
  9141. height: math.unit(145787152896, "lightyears")
  9142. },
  9143. ]
  9144. ))
  9145. characterMakers.push(() => makeCharacter(
  9146. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9147. {
  9148. front: {
  9149. height: math.unit(5 + 11 / 12, "feet"),
  9150. weight: math.unit(65, "kg"),
  9151. name: "Front",
  9152. image: {
  9153. source: "./media/characters/rook-kitara/front.svg",
  9154. extra: 1347 / 1274,
  9155. bottom: 0.005
  9156. }
  9157. },
  9158. },
  9159. [
  9160. {
  9161. name: "Totally Unfair",
  9162. height: math.unit(1.8, "mm")
  9163. },
  9164. {
  9165. name: "Lap Rookie",
  9166. height: math.unit(1.4, "feet")
  9167. },
  9168. {
  9169. name: "Normal",
  9170. height: math.unit(5 + 11 / 12, "feet"),
  9171. default: true
  9172. },
  9173. {
  9174. name: "How Did This Happen",
  9175. height: math.unit(80, "miles")
  9176. }
  9177. ]
  9178. ))
  9179. characterMakers.push(() => makeCharacter(
  9180. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9181. {
  9182. front: {
  9183. height: math.unit(7, "feet"),
  9184. weight: math.unit(300, "lb"),
  9185. name: "Front",
  9186. image: {
  9187. source: "./media/characters/pisces/front.svg",
  9188. extra: 2255 / 2115,
  9189. bottom: 0.03
  9190. }
  9191. },
  9192. back: {
  9193. height: math.unit(7, "feet"),
  9194. weight: math.unit(300, "lb"),
  9195. name: "Back",
  9196. image: {
  9197. source: "./media/characters/pisces/back.svg",
  9198. extra: 2146 / 2055,
  9199. bottom: 0.04
  9200. }
  9201. },
  9202. },
  9203. [
  9204. {
  9205. name: "Normal",
  9206. height: math.unit(7, "feet"),
  9207. default: true
  9208. },
  9209. {
  9210. name: "Swimming Pool",
  9211. height: math.unit(12.2, "meters")
  9212. },
  9213. {
  9214. name: "Olympic Swimming Pool",
  9215. height: math.unit(56.3, "meters")
  9216. },
  9217. {
  9218. name: "Lake Superior",
  9219. height: math.unit(93900, "meters")
  9220. },
  9221. {
  9222. name: "Mediterranean Sea",
  9223. height: math.unit(644457, "meters")
  9224. },
  9225. {
  9226. name: "World's Oceans",
  9227. height: math.unit(4567491, "meters")
  9228. },
  9229. ]
  9230. ))
  9231. characterMakers.push(() => makeCharacter(
  9232. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9233. {
  9234. front: {
  9235. height: math.unit(2.3, "meters"),
  9236. weight: math.unit(120, "kg"),
  9237. name: "Front",
  9238. image: {
  9239. source: "./media/characters/zelas/front.svg"
  9240. }
  9241. },
  9242. side: {
  9243. height: math.unit(2.3, "meters"),
  9244. weight: math.unit(120, "kg"),
  9245. name: "Side",
  9246. image: {
  9247. source: "./media/characters/zelas/side.svg"
  9248. }
  9249. },
  9250. back: {
  9251. height: math.unit(2.3, "meters"),
  9252. weight: math.unit(120, "kg"),
  9253. name: "Back",
  9254. image: {
  9255. source: "./media/characters/zelas/back.svg"
  9256. }
  9257. },
  9258. foot: {
  9259. height: math.unit(1.116, "feet"),
  9260. name: "Foot",
  9261. image: {
  9262. source: "./media/characters/zelas/foot.svg"
  9263. }
  9264. },
  9265. },
  9266. [
  9267. {
  9268. name: "Normal",
  9269. height: math.unit(2.3, "meters")
  9270. },
  9271. {
  9272. name: "Macro",
  9273. height: math.unit(30, "meters"),
  9274. default: true
  9275. },
  9276. ]
  9277. ))
  9278. characterMakers.push(() => makeCharacter(
  9279. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9280. {
  9281. front: {
  9282. height: math.unit(1, "inch"),
  9283. weight: math.unit(0.21, "grams"),
  9284. name: "Front",
  9285. image: {
  9286. source: "./media/characters/talbot/front.svg",
  9287. extra: 594 / 544
  9288. }
  9289. },
  9290. },
  9291. [
  9292. {
  9293. name: "Micro",
  9294. height: math.unit(1, "inch"),
  9295. default: true
  9296. },
  9297. ]
  9298. ))
  9299. characterMakers.push(() => makeCharacter(
  9300. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9301. {
  9302. front: {
  9303. height: math.unit(3 + 3 / 12, "feet"),
  9304. weight: math.unit(51.8, "lb"),
  9305. name: "Front",
  9306. image: {
  9307. source: "./media/characters/fliss/front.svg",
  9308. extra: 840 / 640
  9309. }
  9310. },
  9311. },
  9312. [
  9313. {
  9314. name: "Teeny Tiny",
  9315. height: math.unit(1, "mm")
  9316. },
  9317. {
  9318. name: "Small",
  9319. height: math.unit(1, "inch"),
  9320. default: true
  9321. },
  9322. {
  9323. name: "Standard Sylveon",
  9324. height: math.unit(3 + 3 / 12, "feet")
  9325. },
  9326. {
  9327. name: "Large Nuisance",
  9328. height: math.unit(33, "feet")
  9329. },
  9330. {
  9331. name: "City Filler",
  9332. height: math.unit(3000, "feet")
  9333. },
  9334. {
  9335. name: "New Horizon",
  9336. height: math.unit(6000, "miles")
  9337. },
  9338. ]
  9339. ))
  9340. characterMakers.push(() => makeCharacter(
  9341. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9342. {
  9343. front: {
  9344. height: math.unit(5, "cm"),
  9345. weight: math.unit(1.94, "g"),
  9346. name: "Front",
  9347. image: {
  9348. source: "./media/characters/fleta/front.svg",
  9349. extra: 835 / 803
  9350. }
  9351. },
  9352. back: {
  9353. height: math.unit(5, "cm"),
  9354. weight: math.unit(1.94, "g"),
  9355. name: "Back",
  9356. image: {
  9357. source: "./media/characters/fleta/back.svg",
  9358. extra: 835 / 803
  9359. }
  9360. },
  9361. },
  9362. [
  9363. {
  9364. name: "Micro",
  9365. height: math.unit(5, "cm"),
  9366. default: true
  9367. },
  9368. ]
  9369. ))
  9370. characterMakers.push(() => makeCharacter(
  9371. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9372. {
  9373. front: {
  9374. height: math.unit(6, "feet"),
  9375. weight: math.unit(225, "lb"),
  9376. name: "Front",
  9377. image: {
  9378. source: "./media/characters/dominic/front.svg",
  9379. extra: 1770 / 1620,
  9380. bottom: 0.025
  9381. }
  9382. },
  9383. back: {
  9384. height: math.unit(6, "feet"),
  9385. weight: math.unit(225, "lb"),
  9386. name: "Back",
  9387. image: {
  9388. source: "./media/characters/dominic/back.svg",
  9389. extra: 1745 / 1620,
  9390. bottom: 0.065
  9391. }
  9392. },
  9393. },
  9394. [
  9395. {
  9396. name: "Nano",
  9397. height: math.unit(0.1, "mm")
  9398. },
  9399. {
  9400. name: "Micro-",
  9401. height: math.unit(1, "mm")
  9402. },
  9403. {
  9404. name: "Micro",
  9405. height: math.unit(4, "inches")
  9406. },
  9407. {
  9408. name: "Normal",
  9409. height: math.unit(6 + 4 / 12, "feet"),
  9410. default: true
  9411. },
  9412. {
  9413. name: "Macro",
  9414. height: math.unit(115, "feet")
  9415. },
  9416. {
  9417. name: "Macro+",
  9418. height: math.unit(955, "feet")
  9419. },
  9420. {
  9421. name: "Megamacro",
  9422. height: math.unit(8990, "feet")
  9423. },
  9424. {
  9425. name: "Gigmacro",
  9426. height: math.unit(9310, "miles")
  9427. },
  9428. {
  9429. name: "Teramacro",
  9430. height: math.unit(1567005010, "miles")
  9431. },
  9432. {
  9433. name: "Examacro",
  9434. height: math.unit(1425, "parsecs")
  9435. },
  9436. ]
  9437. ))
  9438. characterMakers.push(() => makeCharacter(
  9439. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9440. {
  9441. front: {
  9442. height: math.unit(400, "feet"),
  9443. weight: math.unit(44444444, "lb"),
  9444. name: "Front",
  9445. image: {
  9446. source: "./media/characters/major-colonel/front.svg"
  9447. }
  9448. },
  9449. back: {
  9450. height: math.unit(400, "feet"),
  9451. weight: math.unit(44444444, "lb"),
  9452. name: "Back",
  9453. image: {
  9454. source: "./media/characters/major-colonel/back.svg"
  9455. }
  9456. },
  9457. },
  9458. [
  9459. {
  9460. name: "Macro",
  9461. height: math.unit(400, "feet"),
  9462. default: true
  9463. },
  9464. ]
  9465. ))
  9466. characterMakers.push(() => makeCharacter(
  9467. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9468. {
  9469. catFront: {
  9470. height: math.unit(6, "feet"),
  9471. weight: math.unit(120, "lb"),
  9472. name: "Front (Cat Side)",
  9473. image: {
  9474. source: "./media/characters/axel-lycan/cat-front.svg",
  9475. extra: 430 / 402,
  9476. bottom: 43 / 472.35
  9477. }
  9478. },
  9479. catBack: {
  9480. height: math.unit(6, "feet"),
  9481. weight: math.unit(120, "lb"),
  9482. name: "Back (Cat Side)",
  9483. image: {
  9484. source: "./media/characters/axel-lycan/cat-back.svg",
  9485. extra: 447 / 419,
  9486. bottom: 23.3 / 469
  9487. }
  9488. },
  9489. wolfFront: {
  9490. height: math.unit(6, "feet"),
  9491. weight: math.unit(120, "lb"),
  9492. name: "Front (Wolf Side)",
  9493. image: {
  9494. source: "./media/characters/axel-lycan/wolf-front.svg",
  9495. extra: 485 / 456,
  9496. bottom: 19 / 504
  9497. }
  9498. },
  9499. wolfBack: {
  9500. height: math.unit(6, "feet"),
  9501. weight: math.unit(120, "lb"),
  9502. name: "Back (Wolf Side)",
  9503. image: {
  9504. source: "./media/characters/axel-lycan/wolf-back.svg",
  9505. extra: 475 / 438,
  9506. bottom: 39.2 / 514
  9507. }
  9508. },
  9509. },
  9510. [
  9511. {
  9512. name: "Macro",
  9513. height: math.unit(1, "km"),
  9514. default: true
  9515. },
  9516. ]
  9517. ))
  9518. characterMakers.push(() => makeCharacter(
  9519. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9520. {
  9521. front: {
  9522. height: math.unit(5 + 9 / 12, "feet"),
  9523. weight: math.unit(175, "lb"),
  9524. name: "Front",
  9525. image: {
  9526. source: "./media/characters/vanrel-hyena/front.svg",
  9527. extra: 1086 / 1010,
  9528. bottom: 0.04
  9529. }
  9530. },
  9531. },
  9532. [
  9533. {
  9534. name: "Normal",
  9535. height: math.unit(5 + 9 / 12, "feet"),
  9536. default: true
  9537. },
  9538. ]
  9539. ))
  9540. characterMakers.push(() => makeCharacter(
  9541. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9542. {
  9543. front: {
  9544. height: math.unit(6, "feet"),
  9545. weight: math.unit(103, "lb"),
  9546. name: "Front",
  9547. image: {
  9548. source: "./media/characters/abbott-absol/front.svg",
  9549. extra: 2010 / 1842
  9550. }
  9551. },
  9552. },
  9553. [
  9554. {
  9555. name: "Megamicro",
  9556. height: math.unit(0.1, "mm")
  9557. },
  9558. {
  9559. name: "Micro",
  9560. height: math.unit(1, "inch")
  9561. },
  9562. {
  9563. name: "Normal",
  9564. height: math.unit(6, "feet"),
  9565. default: true
  9566. },
  9567. ]
  9568. ))
  9569. characterMakers.push(() => makeCharacter(
  9570. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9571. {
  9572. front: {
  9573. height: math.unit(6, "feet"),
  9574. weight: math.unit(264, "lb"),
  9575. name: "Front",
  9576. image: {
  9577. source: "./media/characters/hector/front.svg",
  9578. extra: 2280 / 2130,
  9579. bottom: 0.07
  9580. }
  9581. },
  9582. },
  9583. [
  9584. {
  9585. name: "Normal",
  9586. height: math.unit(12.25, "foot"),
  9587. default: true
  9588. },
  9589. {
  9590. name: "Macro",
  9591. height: math.unit(160, "feet")
  9592. },
  9593. ]
  9594. ))
  9595. characterMakers.push(() => makeCharacter(
  9596. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9597. {
  9598. front: {
  9599. height: math.unit(6, "feet"),
  9600. weight: math.unit(150, "lb"),
  9601. name: "Front",
  9602. image: {
  9603. source: "./media/characters/sal/front.svg",
  9604. extra: 1846 / 1699,
  9605. bottom: 0.04
  9606. }
  9607. },
  9608. },
  9609. [
  9610. {
  9611. name: "Megamacro",
  9612. height: math.unit(10, "miles"),
  9613. default: true
  9614. },
  9615. ]
  9616. ))
  9617. characterMakers.push(() => makeCharacter(
  9618. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9619. {
  9620. front: {
  9621. height: math.unit(3, "meters"),
  9622. weight: math.unit(450, "kg"),
  9623. name: "front",
  9624. image: {
  9625. source: "./media/characters/ranger/front.svg",
  9626. extra: 2401 / 2243,
  9627. bottom: 0.05
  9628. }
  9629. },
  9630. },
  9631. [
  9632. {
  9633. name: "Normal",
  9634. height: math.unit(3, "meters"),
  9635. default: true
  9636. },
  9637. ]
  9638. ))
  9639. characterMakers.push(() => makeCharacter(
  9640. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9641. {
  9642. front: {
  9643. height: math.unit(14, "feet"),
  9644. weight: math.unit(800, "kg"),
  9645. name: "Front",
  9646. image: {
  9647. source: "./media/characters/theresa/front.svg",
  9648. extra: 3575 / 3346,
  9649. bottom: 0.03
  9650. }
  9651. },
  9652. },
  9653. [
  9654. {
  9655. name: "Normal",
  9656. height: math.unit(14, "feet"),
  9657. default: true
  9658. },
  9659. ]
  9660. ))
  9661. characterMakers.push(() => makeCharacter(
  9662. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9663. {
  9664. front: {
  9665. height: math.unit(6, "feet"),
  9666. weight: math.unit(3, "kg"),
  9667. name: "Front",
  9668. image: {
  9669. source: "./media/characters/ine/front.svg",
  9670. extra: 678 / 539,
  9671. bottom: 0.023
  9672. }
  9673. },
  9674. },
  9675. [
  9676. {
  9677. name: "Normal",
  9678. height: math.unit(2.265, "feet"),
  9679. default: true
  9680. },
  9681. ]
  9682. ))
  9683. characterMakers.push(() => makeCharacter(
  9684. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9685. {
  9686. front: {
  9687. height: math.unit(5, "feet"),
  9688. weight: math.unit(30, "kg"),
  9689. name: "Front",
  9690. image: {
  9691. source: "./media/characters/vial/front.svg",
  9692. extra: 1365 / 1277,
  9693. bottom: 0.04
  9694. }
  9695. },
  9696. },
  9697. [
  9698. {
  9699. name: "Normal",
  9700. height: math.unit(5, "feet"),
  9701. default: true
  9702. },
  9703. ]
  9704. ))
  9705. characterMakers.push(() => makeCharacter(
  9706. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9707. {
  9708. side: {
  9709. height: math.unit(3.4, "meters"),
  9710. weight: math.unit(1000, "lb"),
  9711. name: "Side",
  9712. image: {
  9713. source: "./media/characters/rovoska/side.svg",
  9714. extra: 4403 / 1515
  9715. }
  9716. },
  9717. },
  9718. [
  9719. {
  9720. name: "Normal",
  9721. height: math.unit(3.4, "meters"),
  9722. default: true
  9723. },
  9724. ]
  9725. ))
  9726. characterMakers.push(() => makeCharacter(
  9727. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9728. {
  9729. front: {
  9730. height: math.unit(8, "feet"),
  9731. weight: math.unit(315, "lb"),
  9732. name: "Front",
  9733. image: {
  9734. source: "./media/characters/gunner-rotthbauer/front.svg"
  9735. }
  9736. },
  9737. back: {
  9738. height: math.unit(8, "feet"),
  9739. weight: math.unit(315, "lb"),
  9740. name: "Back",
  9741. image: {
  9742. source: "./media/characters/gunner-rotthbauer/back.svg"
  9743. }
  9744. },
  9745. },
  9746. [
  9747. {
  9748. name: "Micro",
  9749. height: math.unit(3.5, "inches")
  9750. },
  9751. {
  9752. name: "Normal",
  9753. height: math.unit(8, "feet"),
  9754. default: true
  9755. },
  9756. {
  9757. name: "Macro",
  9758. height: math.unit(250, "feet")
  9759. },
  9760. {
  9761. name: "Megamacro",
  9762. height: math.unit(1, "AU")
  9763. },
  9764. ]
  9765. ))
  9766. characterMakers.push(() => makeCharacter(
  9767. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9768. {
  9769. front: {
  9770. height: math.unit(5 + 5 / 12, "feet"),
  9771. weight: math.unit(140, "lb"),
  9772. name: "Front",
  9773. image: {
  9774. source: "./media/characters/allatia/front.svg",
  9775. extra: 1227 / 1180,
  9776. bottom: 0.027
  9777. }
  9778. },
  9779. },
  9780. [
  9781. {
  9782. name: "Normal",
  9783. height: math.unit(5 + 5 / 12, "feet")
  9784. },
  9785. {
  9786. name: "Macro",
  9787. height: math.unit(250, "feet"),
  9788. default: true
  9789. },
  9790. {
  9791. name: "Megamacro",
  9792. height: math.unit(8, "miles")
  9793. }
  9794. ]
  9795. ))
  9796. characterMakers.push(() => makeCharacter(
  9797. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9798. {
  9799. front: {
  9800. height: math.unit(6, "feet"),
  9801. weight: math.unit(120, "lb"),
  9802. name: "Front",
  9803. image: {
  9804. source: "./media/characters/tene/front.svg",
  9805. extra: 1728 / 1578,
  9806. bottom: 0.022
  9807. }
  9808. },
  9809. stomping: {
  9810. height: math.unit(2.025, "meters"),
  9811. weight: math.unit(120, "lb"),
  9812. name: "Stomping",
  9813. image: {
  9814. source: "./media/characters/tene/stomping.svg",
  9815. extra: 938 / 873,
  9816. bottom: 0.01
  9817. }
  9818. },
  9819. sitting: {
  9820. height: math.unit(1, "meter"),
  9821. weight: math.unit(120, "lb"),
  9822. name: "Sitting",
  9823. image: {
  9824. source: "./media/characters/tene/sitting.svg",
  9825. extra: 437 / 415,
  9826. bottom: 0.1
  9827. }
  9828. },
  9829. feral: {
  9830. height: math.unit(3.9, "feet"),
  9831. weight: math.unit(250, "lb"),
  9832. name: "Feral",
  9833. image: {
  9834. source: "./media/characters/tene/feral.svg",
  9835. extra: 717 / 458,
  9836. bottom: 0.179
  9837. }
  9838. },
  9839. },
  9840. [
  9841. {
  9842. name: "Normal",
  9843. height: math.unit(6, "feet")
  9844. },
  9845. {
  9846. name: "Macro",
  9847. height: math.unit(300, "feet"),
  9848. default: true
  9849. },
  9850. {
  9851. name: "Megamacro",
  9852. height: math.unit(5, "miles")
  9853. },
  9854. ]
  9855. ))
  9856. characterMakers.push(() => makeCharacter(
  9857. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9858. {
  9859. side: {
  9860. height: math.unit(6, "feet"),
  9861. name: "Side",
  9862. image: {
  9863. source: "./media/characters/evander/side.svg",
  9864. extra: 877 / 477
  9865. }
  9866. },
  9867. },
  9868. [
  9869. {
  9870. name: "Normal",
  9871. height: math.unit(0.83, "meters"),
  9872. default: true
  9873. },
  9874. ]
  9875. ))
  9876. characterMakers.push(() => makeCharacter(
  9877. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9878. {
  9879. front: {
  9880. height: math.unit(12, "feet"),
  9881. weight: math.unit(1000, "lb"),
  9882. name: "Front",
  9883. image: {
  9884. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9885. extra: 1762 / 1611
  9886. }
  9887. },
  9888. back: {
  9889. height: math.unit(12, "feet"),
  9890. weight: math.unit(1000, "lb"),
  9891. name: "Back",
  9892. image: {
  9893. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9894. extra: 1762 / 1611
  9895. }
  9896. },
  9897. },
  9898. [
  9899. {
  9900. name: "Normal",
  9901. height: math.unit(12, "feet"),
  9902. default: true
  9903. },
  9904. {
  9905. name: "Kaiju",
  9906. height: math.unit(150, "feet")
  9907. },
  9908. ]
  9909. ))
  9910. characterMakers.push(() => makeCharacter(
  9911. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9912. {
  9913. front: {
  9914. height: math.unit(6, "feet"),
  9915. weight: math.unit(150, "lb"),
  9916. name: "Front",
  9917. image: {
  9918. source: "./media/characters/zero-alurus/front.svg"
  9919. }
  9920. },
  9921. back: {
  9922. height: math.unit(6, "feet"),
  9923. weight: math.unit(150, "lb"),
  9924. name: "Back",
  9925. image: {
  9926. source: "./media/characters/zero-alurus/back.svg"
  9927. }
  9928. },
  9929. },
  9930. [
  9931. {
  9932. name: "Normal",
  9933. height: math.unit(5 + 10 / 12, "feet")
  9934. },
  9935. {
  9936. name: "Macro",
  9937. height: math.unit(60, "feet"),
  9938. default: true
  9939. },
  9940. {
  9941. name: "Macro+",
  9942. height: math.unit(450, "feet")
  9943. },
  9944. ]
  9945. ))
  9946. characterMakers.push(() => makeCharacter(
  9947. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9948. {
  9949. front: {
  9950. height: math.unit(6, "feet"),
  9951. weight: math.unit(200, "lb"),
  9952. name: "Front",
  9953. image: {
  9954. source: "./media/characters/mega-shi/front.svg",
  9955. extra: 1279 / 1250,
  9956. bottom: 0.02
  9957. }
  9958. },
  9959. back: {
  9960. height: math.unit(6, "feet"),
  9961. weight: math.unit(200, "lb"),
  9962. name: "Back",
  9963. image: {
  9964. source: "./media/characters/mega-shi/back.svg",
  9965. extra: 1279 / 1250,
  9966. bottom: 0.02
  9967. }
  9968. },
  9969. },
  9970. [
  9971. {
  9972. name: "Micro",
  9973. height: math.unit(16 + 6 / 12, "feet")
  9974. },
  9975. {
  9976. name: "Third Dimension",
  9977. height: math.unit(40, "meters")
  9978. },
  9979. {
  9980. name: "Normal",
  9981. height: math.unit(660, "feet"),
  9982. default: true
  9983. },
  9984. {
  9985. name: "Megamacro",
  9986. height: math.unit(10, "miles")
  9987. },
  9988. {
  9989. name: "Planetary Launch",
  9990. height: math.unit(500, "miles")
  9991. },
  9992. {
  9993. name: "Interstellar",
  9994. height: math.unit(1e9, "miles")
  9995. },
  9996. {
  9997. name: "Leaving the Universe",
  9998. height: math.unit(1, "gigaparsec")
  9999. },
  10000. {
  10001. name: "Travelling Universes",
  10002. height: math.unit(30e15, "parsecs")
  10003. },
  10004. ]
  10005. ))
  10006. characterMakers.push(() => makeCharacter(
  10007. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10008. {
  10009. front: {
  10010. height: math.unit(6, "feet"),
  10011. weight: math.unit(150, "lb"),
  10012. name: "Front",
  10013. image: {
  10014. source: "./media/characters/odyssey/front.svg",
  10015. extra: 1782 / 1582,
  10016. bottom: 0.01
  10017. }
  10018. },
  10019. side: {
  10020. height: math.unit(5.7, "feet"),
  10021. weight: math.unit(140, "lb"),
  10022. name: "Side",
  10023. image: {
  10024. source: "./media/characters/odyssey/side.svg",
  10025. extra: 6462 / 5700
  10026. }
  10027. },
  10028. },
  10029. [
  10030. {
  10031. name: "Normal",
  10032. height: math.unit(5 + 4 / 12, "feet")
  10033. },
  10034. {
  10035. name: "Macro",
  10036. height: math.unit(1, "km")
  10037. },
  10038. {
  10039. name: "Megamacro",
  10040. height: math.unit(3000, "km")
  10041. },
  10042. {
  10043. name: "Gigamacro",
  10044. height: math.unit(1, "AU"),
  10045. default: true
  10046. },
  10047. {
  10048. name: "Omniversal",
  10049. height: math.unit(100e14, "lightyears")
  10050. },
  10051. ]
  10052. ))
  10053. characterMakers.push(() => makeCharacter(
  10054. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10055. {
  10056. front: {
  10057. height: math.unit(6, "feet"),
  10058. weight: math.unit(300, "lb"),
  10059. name: "Front",
  10060. image: {
  10061. source: "./media/characters/mekuto/front.svg",
  10062. extra: 921 / 832,
  10063. bottom: 0.03
  10064. }
  10065. },
  10066. hand: {
  10067. height: math.unit(6 / 10.24, "feet"),
  10068. name: "Hand",
  10069. image: {
  10070. source: "./media/characters/mekuto/hand.svg"
  10071. }
  10072. },
  10073. foot: {
  10074. height: math.unit(6 / 5.05, "feet"),
  10075. name: "Foot",
  10076. image: {
  10077. source: "./media/characters/mekuto/foot.svg"
  10078. }
  10079. },
  10080. },
  10081. [
  10082. {
  10083. name: "Minimicro",
  10084. height: math.unit(0.2, "inches")
  10085. },
  10086. {
  10087. name: "Micro",
  10088. height: math.unit(1.5, "inches")
  10089. },
  10090. {
  10091. name: "Normal",
  10092. height: math.unit(5 + 11 / 12, "feet"),
  10093. default: true
  10094. },
  10095. {
  10096. name: "Minimacro",
  10097. height: math.unit(17 + 9 / 12, "feet")
  10098. },
  10099. {
  10100. name: "Macro",
  10101. height: math.unit(177.5, "feet")
  10102. },
  10103. {
  10104. name: "Megamacro",
  10105. height: math.unit(152, "miles")
  10106. },
  10107. ]
  10108. ))
  10109. characterMakers.push(() => makeCharacter(
  10110. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10111. {
  10112. front: {
  10113. height: math.unit(6.5, "inches"),
  10114. weight: math.unit(13, "oz"),
  10115. name: "Front",
  10116. image: {
  10117. source: "./media/characters/dafydd-tomos/front.svg",
  10118. extra: 2990 / 2603,
  10119. bottom: 0.03
  10120. }
  10121. },
  10122. },
  10123. [
  10124. {
  10125. name: "Micro",
  10126. height: math.unit(6.5, "inches"),
  10127. default: true
  10128. },
  10129. ]
  10130. ))
  10131. characterMakers.push(() => makeCharacter(
  10132. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10133. {
  10134. front: {
  10135. height: math.unit(6, "feet"),
  10136. weight: math.unit(150, "lb"),
  10137. name: "Front",
  10138. image: {
  10139. source: "./media/characters/splinter/front.svg",
  10140. extra: 2990 / 2882,
  10141. bottom: 0.04
  10142. }
  10143. },
  10144. back: {
  10145. height: math.unit(6, "feet"),
  10146. weight: math.unit(150, "lb"),
  10147. name: "Back",
  10148. image: {
  10149. source: "./media/characters/splinter/back.svg",
  10150. extra: 2990 / 2882,
  10151. bottom: 0.04
  10152. }
  10153. },
  10154. },
  10155. [
  10156. {
  10157. name: "Normal",
  10158. height: math.unit(6, "feet")
  10159. },
  10160. {
  10161. name: "Macro",
  10162. height: math.unit(230, "meters"),
  10163. default: true
  10164. },
  10165. ]
  10166. ))
  10167. characterMakers.push(() => makeCharacter(
  10168. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10169. {
  10170. front: {
  10171. height: math.unit(4 + 10 / 12, "feet"),
  10172. weight: math.unit(480, "lb"),
  10173. name: "Front",
  10174. image: {
  10175. source: "./media/characters/snow-gabumon/front.svg",
  10176. extra: 1140 / 963,
  10177. bottom: 0.058
  10178. }
  10179. },
  10180. back: {
  10181. height: math.unit(4 + 10 / 12, "feet"),
  10182. weight: math.unit(480, "lb"),
  10183. name: "Back",
  10184. image: {
  10185. source: "./media/characters/snow-gabumon/back.svg",
  10186. extra: 1115 / 962,
  10187. bottom: 0.041
  10188. }
  10189. },
  10190. frontUndresed: {
  10191. height: math.unit(4 + 10 / 12, "feet"),
  10192. weight: math.unit(480, "lb"),
  10193. name: "Front (Undressed)",
  10194. image: {
  10195. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10196. extra: 1061 / 960,
  10197. bottom: 0.045
  10198. }
  10199. },
  10200. },
  10201. [
  10202. {
  10203. name: "Micro",
  10204. height: math.unit(1, "inch")
  10205. },
  10206. {
  10207. name: "Normal",
  10208. height: math.unit(4 + 10 / 12, "feet"),
  10209. default: true
  10210. },
  10211. {
  10212. name: "Macro",
  10213. height: math.unit(200, "feet")
  10214. },
  10215. {
  10216. name: "Megamacro",
  10217. height: math.unit(120, "miles")
  10218. },
  10219. {
  10220. name: "Gigamacro",
  10221. height: math.unit(9800, "miles")
  10222. },
  10223. ]
  10224. ))
  10225. characterMakers.push(() => makeCharacter(
  10226. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10227. {
  10228. front: {
  10229. height: math.unit(1.7, "meters"),
  10230. weight: math.unit(140, "lb"),
  10231. name: "Front",
  10232. image: {
  10233. source: "./media/characters/moody/front.svg",
  10234. extra: 3226 / 3007,
  10235. bottom: 0.087
  10236. }
  10237. },
  10238. },
  10239. [
  10240. {
  10241. name: "Micro",
  10242. height: math.unit(1, "mm")
  10243. },
  10244. {
  10245. name: "Normal",
  10246. height: math.unit(1.7, "meters"),
  10247. default: true
  10248. },
  10249. {
  10250. name: "Macro",
  10251. height: math.unit(80, "meters")
  10252. },
  10253. {
  10254. name: "Macro+",
  10255. height: math.unit(500, "meters")
  10256. },
  10257. ]
  10258. ))
  10259. characterMakers.push(() => makeCharacter(
  10260. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10261. {
  10262. front: {
  10263. height: math.unit(6, "feet"),
  10264. weight: math.unit(150, "lb"),
  10265. name: "Front",
  10266. image: {
  10267. source: "./media/characters/zyas/front.svg",
  10268. extra: 1180 / 1120,
  10269. bottom: 0.045
  10270. }
  10271. },
  10272. },
  10273. [
  10274. {
  10275. name: "Normal",
  10276. height: math.unit(10, "feet"),
  10277. default: true
  10278. },
  10279. {
  10280. name: "Macro",
  10281. height: math.unit(500, "feet")
  10282. },
  10283. {
  10284. name: "Megamacro",
  10285. height: math.unit(5, "miles")
  10286. },
  10287. {
  10288. name: "Teramacro",
  10289. height: math.unit(150000, "miles")
  10290. },
  10291. ]
  10292. ))
  10293. characterMakers.push(() => makeCharacter(
  10294. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10295. {
  10296. front: {
  10297. height: math.unit(6, "feet"),
  10298. weight: math.unit(150, "lb"),
  10299. name: "Front",
  10300. image: {
  10301. source: "./media/characters/cuon/front.svg",
  10302. extra: 1390 / 1320,
  10303. bottom: 0.008
  10304. }
  10305. },
  10306. },
  10307. [
  10308. {
  10309. name: "Micro",
  10310. height: math.unit(3, "inches")
  10311. },
  10312. {
  10313. name: "Normal",
  10314. height: math.unit(18 + 9 / 12, "feet"),
  10315. default: true
  10316. },
  10317. {
  10318. name: "Macro",
  10319. height: math.unit(360, "feet")
  10320. },
  10321. {
  10322. name: "Megamacro",
  10323. height: math.unit(360, "miles")
  10324. },
  10325. ]
  10326. ))
  10327. characterMakers.push(() => makeCharacter(
  10328. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10329. {
  10330. front: {
  10331. height: math.unit(2.4, "meters"),
  10332. weight: math.unit(70, "kg"),
  10333. name: "Front",
  10334. image: {
  10335. source: "./media/characters/nyanuxk/front.svg",
  10336. extra: 1172 / 1084,
  10337. bottom: 0.065
  10338. }
  10339. },
  10340. side: {
  10341. height: math.unit(2.4, "meters"),
  10342. weight: math.unit(70, "kg"),
  10343. name: "Side",
  10344. image: {
  10345. source: "./media/characters/nyanuxk/side.svg",
  10346. extra: 1190 / 1132,
  10347. bottom: 0.007
  10348. }
  10349. },
  10350. back: {
  10351. height: math.unit(2.4, "meters"),
  10352. weight: math.unit(70, "kg"),
  10353. name: "Back",
  10354. image: {
  10355. source: "./media/characters/nyanuxk/back.svg",
  10356. extra: 1200 / 1141,
  10357. bottom: 0.015
  10358. }
  10359. },
  10360. foot: {
  10361. height: math.unit(0.52, "meters"),
  10362. name: "Foot",
  10363. image: {
  10364. source: "./media/characters/nyanuxk/foot.svg"
  10365. }
  10366. },
  10367. },
  10368. [
  10369. {
  10370. name: "Micro",
  10371. height: math.unit(2, "cm")
  10372. },
  10373. {
  10374. name: "Normal",
  10375. height: math.unit(2.4, "meters"),
  10376. default: true
  10377. },
  10378. {
  10379. name: "Smaller Macro",
  10380. height: math.unit(120, "meters")
  10381. },
  10382. {
  10383. name: "Bigger Macro",
  10384. height: math.unit(1.2, "km")
  10385. },
  10386. {
  10387. name: "Megamacro",
  10388. height: math.unit(15, "kilometers")
  10389. },
  10390. {
  10391. name: "Gigamacro",
  10392. height: math.unit(2000, "km")
  10393. },
  10394. {
  10395. name: "Teramacro",
  10396. height: math.unit(500000, "km")
  10397. },
  10398. ]
  10399. ))
  10400. characterMakers.push(() => makeCharacter(
  10401. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10402. {
  10403. side: {
  10404. height: math.unit(6, "feet"),
  10405. name: "Side",
  10406. image: {
  10407. source: "./media/characters/ailbhe/side.svg",
  10408. extra: 757 / 464,
  10409. bottom: 0.041
  10410. }
  10411. },
  10412. },
  10413. [
  10414. {
  10415. name: "Normal",
  10416. height: math.unit(1.07, "meters"),
  10417. default: true
  10418. },
  10419. ]
  10420. ))
  10421. characterMakers.push(() => makeCharacter(
  10422. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10423. {
  10424. front: {
  10425. height: math.unit(6, "feet"),
  10426. weight: math.unit(120, "kg"),
  10427. name: "Front",
  10428. image: {
  10429. source: "./media/characters/zevulfius/front.svg",
  10430. extra: 965 / 903
  10431. }
  10432. },
  10433. side: {
  10434. height: math.unit(6, "feet"),
  10435. weight: math.unit(120, "kg"),
  10436. name: "Side",
  10437. image: {
  10438. source: "./media/characters/zevulfius/side.svg",
  10439. extra: 939 / 900
  10440. }
  10441. },
  10442. back: {
  10443. height: math.unit(6, "feet"),
  10444. weight: math.unit(120, "kg"),
  10445. name: "Back",
  10446. image: {
  10447. source: "./media/characters/zevulfius/back.svg",
  10448. extra: 918 / 854,
  10449. bottom: 0.005
  10450. }
  10451. },
  10452. foot: {
  10453. height: math.unit(6 / 3.72, "feet"),
  10454. name: "Foot",
  10455. image: {
  10456. source: "./media/characters/zevulfius/foot.svg"
  10457. }
  10458. },
  10459. },
  10460. [
  10461. {
  10462. name: "Macro",
  10463. height: math.unit(750, "meters")
  10464. },
  10465. {
  10466. name: "Megamacro",
  10467. height: math.unit(20, "km"),
  10468. default: true
  10469. },
  10470. {
  10471. name: "Gigamacro",
  10472. height: math.unit(2000, "km")
  10473. },
  10474. {
  10475. name: "Teramacro",
  10476. height: math.unit(250000, "km")
  10477. },
  10478. ]
  10479. ))
  10480. characterMakers.push(() => makeCharacter(
  10481. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10482. {
  10483. front: {
  10484. height: math.unit(100, "feet"),
  10485. weight: math.unit(350, "kg"),
  10486. name: "Front",
  10487. image: {
  10488. source: "./media/characters/rikes/front.svg",
  10489. extra: 1565 / 1483,
  10490. bottom: 0.017
  10491. }
  10492. },
  10493. },
  10494. [
  10495. {
  10496. name: "Macro",
  10497. height: math.unit(100, "feet"),
  10498. default: true
  10499. },
  10500. ]
  10501. ))
  10502. characterMakers.push(() => makeCharacter(
  10503. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10504. {
  10505. front: {
  10506. height: math.unit(8, "feet"),
  10507. weight: math.unit(356, "lb"),
  10508. name: "Front",
  10509. image: {
  10510. source: "./media/characters/adam-silver-mane/front.svg",
  10511. extra: 1036/937,
  10512. bottom: 63/1099
  10513. }
  10514. },
  10515. side: {
  10516. height: math.unit(8, "feet"),
  10517. weight: math.unit(356, "lb"),
  10518. name: "Side",
  10519. image: {
  10520. source: "./media/characters/adam-silver-mane/side.svg",
  10521. extra: 997/901,
  10522. bottom: 59/1056
  10523. }
  10524. },
  10525. frontNsfw: {
  10526. height: math.unit(8, "feet"),
  10527. weight: math.unit(356, "lb"),
  10528. name: "Front (NSFW)",
  10529. image: {
  10530. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10531. extra: 1036/937,
  10532. bottom: 63/1099
  10533. }
  10534. },
  10535. sideNsfw: {
  10536. height: math.unit(8, "feet"),
  10537. weight: math.unit(356, "lb"),
  10538. name: "Side (NSFW)",
  10539. image: {
  10540. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10541. extra: 997/901,
  10542. bottom: 59/1056
  10543. }
  10544. },
  10545. dick: {
  10546. height: math.unit(2.1, "feet"),
  10547. name: "Dick",
  10548. image: {
  10549. source: "./media/characters/adam-silver-mane/dick.svg"
  10550. }
  10551. },
  10552. taur: {
  10553. height: math.unit(16, "feet"),
  10554. weight: math.unit(1500, "kg"),
  10555. name: "Taur",
  10556. image: {
  10557. source: "./media/characters/adam-silver-mane/taur.svg",
  10558. extra: 1713 / 1571,
  10559. bottom: 0.01
  10560. }
  10561. },
  10562. },
  10563. [
  10564. {
  10565. name: "Normal",
  10566. height: math.unit(8, "feet")
  10567. },
  10568. {
  10569. name: "Minimacro",
  10570. height: math.unit(80, "feet")
  10571. },
  10572. {
  10573. name: "MDA",
  10574. height: math.unit(80, "meters")
  10575. },
  10576. {
  10577. name: "Macro",
  10578. height: math.unit(800, "feet"),
  10579. default: true
  10580. },
  10581. {
  10582. name: "Megamacro",
  10583. height: math.unit(8000, "feet")
  10584. },
  10585. {
  10586. name: "Gigamacro",
  10587. height: math.unit(800, "miles")
  10588. },
  10589. {
  10590. name: "Teramacro",
  10591. height: math.unit(80000, "miles")
  10592. },
  10593. {
  10594. name: "Celestial",
  10595. height: math.unit(8e6, "miles")
  10596. },
  10597. {
  10598. name: "Star Dragon",
  10599. height: math.unit(800000, "parsecs")
  10600. },
  10601. {
  10602. name: "Godly",
  10603. height: math.unit(800, "teraparsecs")
  10604. },
  10605. ]
  10606. ))
  10607. characterMakers.push(() => makeCharacter(
  10608. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10609. {
  10610. front: {
  10611. height: math.unit(6, "feet"),
  10612. weight: math.unit(150, "lb"),
  10613. name: "Front",
  10614. image: {
  10615. source: "./media/characters/ky'owin/front.svg",
  10616. extra: 3888 / 3068,
  10617. bottom: 0.015
  10618. }
  10619. },
  10620. },
  10621. [
  10622. {
  10623. name: "Normal",
  10624. height: math.unit(6 + 8 / 12, "feet")
  10625. },
  10626. {
  10627. name: "Large",
  10628. height: math.unit(68, "feet")
  10629. },
  10630. {
  10631. name: "Macro",
  10632. height: math.unit(132, "feet")
  10633. },
  10634. {
  10635. name: "Macro+",
  10636. height: math.unit(340, "feet")
  10637. },
  10638. {
  10639. name: "Macro++",
  10640. height: math.unit(680, "feet"),
  10641. default: true
  10642. },
  10643. {
  10644. name: "Megamacro",
  10645. height: math.unit(1, "mile")
  10646. },
  10647. {
  10648. name: "Megamacro+",
  10649. height: math.unit(10, "miles")
  10650. },
  10651. ]
  10652. ))
  10653. characterMakers.push(() => makeCharacter(
  10654. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10655. {
  10656. front: {
  10657. height: math.unit(4, "feet"),
  10658. weight: math.unit(50, "lb"),
  10659. name: "Front",
  10660. image: {
  10661. source: "./media/characters/mal/front.svg",
  10662. extra: 785 / 724,
  10663. bottom: 0.07
  10664. }
  10665. },
  10666. },
  10667. [
  10668. {
  10669. name: "Micro",
  10670. height: math.unit(4, "inches")
  10671. },
  10672. {
  10673. name: "Normal",
  10674. height: math.unit(4, "feet"),
  10675. default: true
  10676. },
  10677. {
  10678. name: "Macro",
  10679. height: math.unit(200, "feet")
  10680. },
  10681. ]
  10682. ))
  10683. characterMakers.push(() => makeCharacter(
  10684. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10685. {
  10686. front: {
  10687. height: math.unit(6, "feet"),
  10688. weight: math.unit(150, "lb"),
  10689. name: "Front",
  10690. image: {
  10691. source: "./media/characters/jordan-deware/front.svg",
  10692. extra: 1191 / 1012
  10693. }
  10694. },
  10695. },
  10696. [
  10697. {
  10698. name: "Nano",
  10699. height: math.unit(0.01, "mm")
  10700. },
  10701. {
  10702. name: "Minimicro",
  10703. height: math.unit(1, "mm")
  10704. },
  10705. {
  10706. name: "Micro",
  10707. height: math.unit(0.5, "inches")
  10708. },
  10709. {
  10710. name: "Normal",
  10711. height: math.unit(4, "feet"),
  10712. default: true
  10713. },
  10714. {
  10715. name: "Minimacro",
  10716. height: math.unit(40, "meters")
  10717. },
  10718. {
  10719. name: "Small Macro",
  10720. height: math.unit(400, "meters")
  10721. },
  10722. {
  10723. name: "Macro",
  10724. height: math.unit(4, "miles")
  10725. },
  10726. {
  10727. name: "Megamacro",
  10728. height: math.unit(40, "miles")
  10729. },
  10730. {
  10731. name: "Megamacro+",
  10732. height: math.unit(400, "miles")
  10733. },
  10734. {
  10735. name: "Gigamacro",
  10736. height: math.unit(400000, "miles")
  10737. },
  10738. ]
  10739. ))
  10740. characterMakers.push(() => makeCharacter(
  10741. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10742. {
  10743. side: {
  10744. height: math.unit(6, "feet"),
  10745. weight: math.unit(150, "lb"),
  10746. name: "Side",
  10747. image: {
  10748. source: "./media/characters/kimiko/side.svg",
  10749. extra: 600 / 358
  10750. }
  10751. },
  10752. },
  10753. [
  10754. {
  10755. name: "Normal",
  10756. height: math.unit(15, "feet"),
  10757. default: true
  10758. },
  10759. {
  10760. name: "Macro",
  10761. height: math.unit(220, "feet")
  10762. },
  10763. {
  10764. name: "Macro+",
  10765. height: math.unit(1450, "feet")
  10766. },
  10767. {
  10768. name: "Megamacro",
  10769. height: math.unit(11500, "feet")
  10770. },
  10771. {
  10772. name: "Gigamacro",
  10773. height: math.unit(9500, "miles")
  10774. },
  10775. {
  10776. name: "Teramacro",
  10777. height: math.unit(2208005005, "miles")
  10778. },
  10779. {
  10780. name: "Examacro",
  10781. height: math.unit(2750, "parsecs")
  10782. },
  10783. {
  10784. name: "Zettamacro",
  10785. height: math.unit(101500, "parsecs")
  10786. },
  10787. ]
  10788. ))
  10789. characterMakers.push(() => makeCharacter(
  10790. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10791. {
  10792. front: {
  10793. height: math.unit(6, "feet"),
  10794. weight: math.unit(70, "kg"),
  10795. name: "Front",
  10796. image: {
  10797. source: "./media/characters/andrew-sleepy/front.svg"
  10798. }
  10799. },
  10800. side: {
  10801. height: math.unit(6, "feet"),
  10802. weight: math.unit(70, "kg"),
  10803. name: "Side",
  10804. image: {
  10805. source: "./media/characters/andrew-sleepy/side.svg"
  10806. }
  10807. },
  10808. },
  10809. [
  10810. {
  10811. name: "Micro",
  10812. height: math.unit(1, "mm"),
  10813. default: true
  10814. },
  10815. ]
  10816. ))
  10817. characterMakers.push(() => makeCharacter(
  10818. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10819. {
  10820. front: {
  10821. height: math.unit(6, "feet"),
  10822. weight: math.unit(150, "lb"),
  10823. name: "Front",
  10824. image: {
  10825. source: "./media/characters/judio/front.svg",
  10826. extra: 1258 / 1110
  10827. }
  10828. },
  10829. },
  10830. [
  10831. {
  10832. name: "Normal",
  10833. height: math.unit(5 + 6 / 12, "feet")
  10834. },
  10835. {
  10836. name: "Macro",
  10837. height: math.unit(1000, "feet"),
  10838. default: true
  10839. },
  10840. {
  10841. name: "Megamacro",
  10842. height: math.unit(10, "miles")
  10843. },
  10844. ]
  10845. ))
  10846. characterMakers.push(() => makeCharacter(
  10847. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10848. {
  10849. front: {
  10850. height: math.unit(6, "feet"),
  10851. weight: math.unit(68, "kg"),
  10852. name: "Front",
  10853. image: {
  10854. source: "./media/characters/nomaxice/front.svg",
  10855. extra: 1498 / 1073,
  10856. bottom: 0.075
  10857. }
  10858. },
  10859. foot: {
  10860. height: math.unit(1.1, "feet"),
  10861. name: "Foot",
  10862. image: {
  10863. source: "./media/characters/nomaxice/foot.svg"
  10864. }
  10865. },
  10866. },
  10867. [
  10868. {
  10869. name: "Micro",
  10870. height: math.unit(8, "cm")
  10871. },
  10872. {
  10873. name: "Norm",
  10874. height: math.unit(1.82, "m")
  10875. },
  10876. {
  10877. name: "Norm+",
  10878. height: math.unit(8.8, "feet")
  10879. },
  10880. {
  10881. name: "Big",
  10882. height: math.unit(8, "meters"),
  10883. default: true
  10884. },
  10885. {
  10886. name: "Macro",
  10887. height: math.unit(18, "meters")
  10888. },
  10889. {
  10890. name: "Macro+",
  10891. height: math.unit(88, "meters")
  10892. },
  10893. ]
  10894. ))
  10895. characterMakers.push(() => makeCharacter(
  10896. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10897. {
  10898. front: {
  10899. height: math.unit(12, "feet"),
  10900. weight: math.unit(1.5, "tons"),
  10901. name: "Front",
  10902. image: {
  10903. source: "./media/characters/dydros/front.svg",
  10904. extra: 863 / 800,
  10905. bottom: 0.015
  10906. }
  10907. },
  10908. back: {
  10909. height: math.unit(12, "feet"),
  10910. weight: math.unit(1.5, "tons"),
  10911. name: "Back",
  10912. image: {
  10913. source: "./media/characters/dydros/back.svg",
  10914. extra: 900 / 843,
  10915. bottom: 0.005
  10916. }
  10917. },
  10918. },
  10919. [
  10920. {
  10921. name: "Normal",
  10922. height: math.unit(12, "feet"),
  10923. default: true
  10924. },
  10925. ]
  10926. ))
  10927. characterMakers.push(() => makeCharacter(
  10928. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10929. {
  10930. front: {
  10931. height: math.unit(6, "feet"),
  10932. weight: math.unit(100, "kg"),
  10933. name: "Front",
  10934. image: {
  10935. source: "./media/characters/riggi/front.svg",
  10936. extra: 5787 / 5303
  10937. }
  10938. },
  10939. hyper: {
  10940. height: math.unit(6 * 5 / 3, "feet"),
  10941. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10942. name: "Hyper",
  10943. image: {
  10944. source: "./media/characters/riggi/hyper.svg",
  10945. extra: 3595 / 3485
  10946. }
  10947. },
  10948. },
  10949. [
  10950. {
  10951. name: "Small Macro",
  10952. height: math.unit(50, "feet")
  10953. },
  10954. {
  10955. name: "Default",
  10956. height: math.unit(200, "feet"),
  10957. default: true
  10958. },
  10959. {
  10960. name: "Loom",
  10961. height: math.unit(10000, "feet")
  10962. },
  10963. {
  10964. name: "Cruising Altitude",
  10965. height: math.unit(30000, "feet")
  10966. },
  10967. {
  10968. name: "Megamacro",
  10969. height: math.unit(100, "miles")
  10970. },
  10971. {
  10972. name: "Continent Sized",
  10973. height: math.unit(2800, "miles")
  10974. },
  10975. {
  10976. name: "Earth Sized",
  10977. height: math.unit(8000, "miles")
  10978. },
  10979. ]
  10980. ))
  10981. characterMakers.push(() => makeCharacter(
  10982. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10983. {
  10984. front: {
  10985. height: math.unit(6, "feet"),
  10986. weight: math.unit(250, "lb"),
  10987. name: "Front",
  10988. image: {
  10989. source: "./media/characters/alexi/front.svg",
  10990. extra: 3483 / 3291,
  10991. bottom: 0.04
  10992. }
  10993. },
  10994. back: {
  10995. height: math.unit(6, "feet"),
  10996. weight: math.unit(250, "lb"),
  10997. name: "Back",
  10998. image: {
  10999. source: "./media/characters/alexi/back.svg",
  11000. extra: 3533 / 3356,
  11001. bottom: 0.021
  11002. }
  11003. },
  11004. frontTransforming: {
  11005. height: math.unit(8.58, "feet"),
  11006. weight: math.unit(1300, "lb"),
  11007. name: "Transforming",
  11008. image: {
  11009. source: "./media/characters/alexi/front-transforming.svg",
  11010. extra: 437 / 409,
  11011. bottom: 19 / 458.66
  11012. }
  11013. },
  11014. frontTransformed: {
  11015. height: math.unit(12.5, "feet"),
  11016. weight: math.unit(4000, "lb"),
  11017. name: "Transformed",
  11018. image: {
  11019. source: "./media/characters/alexi/front-transformed.svg",
  11020. extra: 639 / 614,
  11021. bottom: 30.55 / 671
  11022. }
  11023. },
  11024. },
  11025. [
  11026. {
  11027. name: "Normal",
  11028. height: math.unit(14, "feet"),
  11029. default: true
  11030. },
  11031. {
  11032. name: "Minimacro",
  11033. height: math.unit(30, "meters")
  11034. },
  11035. {
  11036. name: "Macro",
  11037. height: math.unit(500, "meters")
  11038. },
  11039. {
  11040. name: "Megamacro",
  11041. height: math.unit(9000, "km")
  11042. },
  11043. {
  11044. name: "Teramacro",
  11045. height: math.unit(384000, "km")
  11046. },
  11047. ]
  11048. ))
  11049. characterMakers.push(() => makeCharacter(
  11050. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11051. {
  11052. front: {
  11053. height: math.unit(6, "feet"),
  11054. weight: math.unit(150, "lb"),
  11055. name: "Front",
  11056. image: {
  11057. source: "./media/characters/kayroo/front.svg",
  11058. extra: 1153 / 1038,
  11059. bottom: 0.06
  11060. }
  11061. },
  11062. foot: {
  11063. height: math.unit(6, "feet"),
  11064. weight: math.unit(150, "lb"),
  11065. name: "Foot",
  11066. image: {
  11067. source: "./media/characters/kayroo/foot.svg"
  11068. }
  11069. },
  11070. },
  11071. [
  11072. {
  11073. name: "Normal",
  11074. height: math.unit(8, "feet"),
  11075. default: true
  11076. },
  11077. {
  11078. name: "Minimacro",
  11079. height: math.unit(250, "feet")
  11080. },
  11081. {
  11082. name: "Macro",
  11083. height: math.unit(2800, "feet")
  11084. },
  11085. {
  11086. name: "Megamacro",
  11087. height: math.unit(5200, "feet")
  11088. },
  11089. {
  11090. name: "Gigamacro",
  11091. height: math.unit(27000, "feet")
  11092. },
  11093. {
  11094. name: "Omega",
  11095. height: math.unit(45000, "feet")
  11096. },
  11097. ]
  11098. ))
  11099. characterMakers.push(() => makeCharacter(
  11100. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11101. {
  11102. front: {
  11103. height: math.unit(18, "feet"),
  11104. weight: math.unit(5800, "lb"),
  11105. name: "Front",
  11106. image: {
  11107. source: "./media/characters/rhys/front.svg",
  11108. extra: 3386 / 3090,
  11109. bottom: 0.07
  11110. }
  11111. },
  11112. },
  11113. [
  11114. {
  11115. name: "Normal",
  11116. height: math.unit(18, "feet"),
  11117. default: true
  11118. },
  11119. {
  11120. name: "Working Size",
  11121. height: math.unit(200, "feet")
  11122. },
  11123. {
  11124. name: "Demolition Size",
  11125. height: math.unit(2000, "feet")
  11126. },
  11127. {
  11128. name: "Maximum Licensed Size",
  11129. height: math.unit(5, "miles")
  11130. },
  11131. {
  11132. name: "Maximum Observed Size",
  11133. height: math.unit(10, "yottameters")
  11134. },
  11135. ]
  11136. ))
  11137. characterMakers.push(() => makeCharacter(
  11138. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11139. {
  11140. front: {
  11141. height: math.unit(6, "feet"),
  11142. weight: math.unit(250, "lb"),
  11143. name: "Front",
  11144. image: {
  11145. source: "./media/characters/toto/front.svg",
  11146. extra: 527 / 479,
  11147. bottom: 0.05
  11148. }
  11149. },
  11150. },
  11151. [
  11152. {
  11153. name: "Micro",
  11154. height: math.unit(3, "feet")
  11155. },
  11156. {
  11157. name: "Normal",
  11158. height: math.unit(10, "feet")
  11159. },
  11160. {
  11161. name: "Macro",
  11162. height: math.unit(150, "feet"),
  11163. default: true
  11164. },
  11165. {
  11166. name: "Megamacro",
  11167. height: math.unit(1200, "feet")
  11168. },
  11169. ]
  11170. ))
  11171. characterMakers.push(() => makeCharacter(
  11172. { name: "King", species: ["lion"], tags: ["anthro"] },
  11173. {
  11174. back: {
  11175. height: math.unit(6, "feet"),
  11176. weight: math.unit(150, "lb"),
  11177. name: "Back",
  11178. image: {
  11179. source: "./media/characters/king/back.svg"
  11180. }
  11181. },
  11182. },
  11183. [
  11184. {
  11185. name: "Micro",
  11186. height: math.unit(2, "inches")
  11187. },
  11188. {
  11189. name: "Normal",
  11190. height: math.unit(8, "feet")
  11191. },
  11192. {
  11193. name: "Macro",
  11194. height: math.unit(200, "feet"),
  11195. default: true
  11196. },
  11197. {
  11198. name: "Megamacro",
  11199. height: math.unit(50, "miles")
  11200. },
  11201. ]
  11202. ))
  11203. characterMakers.push(() => makeCharacter(
  11204. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11205. {
  11206. front: {
  11207. height: math.unit(11, "feet"),
  11208. weight: math.unit(1400, "lb"),
  11209. name: "Front",
  11210. image: {
  11211. source: "./media/characters/cordite/front.svg",
  11212. extra: 1919/1827,
  11213. bottom: 40/1959
  11214. }
  11215. },
  11216. side: {
  11217. height: math.unit(11, "feet"),
  11218. weight: math.unit(1400, "lb"),
  11219. name: "Side",
  11220. image: {
  11221. source: "./media/characters/cordite/side.svg",
  11222. extra: 1908/1793,
  11223. bottom: 38/1946
  11224. }
  11225. },
  11226. back: {
  11227. height: math.unit(11, "feet"),
  11228. weight: math.unit(1400, "lb"),
  11229. name: "Back",
  11230. image: {
  11231. source: "./media/characters/cordite/back.svg",
  11232. extra: 1938/1837,
  11233. bottom: 10/1948
  11234. }
  11235. },
  11236. feral: {
  11237. height: math.unit(2, "feet"),
  11238. weight: math.unit(90, "lb"),
  11239. name: "Feral",
  11240. image: {
  11241. source: "./media/characters/cordite/feral.svg",
  11242. extra: 1260 / 755,
  11243. bottom: 0.05
  11244. }
  11245. },
  11246. },
  11247. [
  11248. {
  11249. name: "Normal",
  11250. height: math.unit(11, "feet"),
  11251. default: true
  11252. },
  11253. ]
  11254. ))
  11255. characterMakers.push(() => makeCharacter(
  11256. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11257. {
  11258. front: {
  11259. height: math.unit(6, "feet"),
  11260. weight: math.unit(150, "lb"),
  11261. name: "Front",
  11262. image: {
  11263. source: "./media/characters/pianostrong/front.svg",
  11264. extra: 6577 / 6254,
  11265. bottom: 0.02
  11266. }
  11267. },
  11268. side: {
  11269. height: math.unit(6, "feet"),
  11270. weight: math.unit(150, "lb"),
  11271. name: "Side",
  11272. image: {
  11273. source: "./media/characters/pianostrong/side.svg",
  11274. extra: 6106 / 5730
  11275. }
  11276. },
  11277. back: {
  11278. height: math.unit(6, "feet"),
  11279. weight: math.unit(150, "lb"),
  11280. name: "Back",
  11281. image: {
  11282. source: "./media/characters/pianostrong/back.svg",
  11283. extra: 6085 / 5733,
  11284. bottom: 0.01
  11285. }
  11286. },
  11287. },
  11288. [
  11289. {
  11290. name: "Macro",
  11291. height: math.unit(100, "feet")
  11292. },
  11293. {
  11294. name: "Macro+",
  11295. height: math.unit(300, "feet"),
  11296. default: true
  11297. },
  11298. {
  11299. name: "Macro++",
  11300. height: math.unit(1000, "feet")
  11301. },
  11302. ]
  11303. ))
  11304. characterMakers.push(() => makeCharacter(
  11305. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11306. {
  11307. front: {
  11308. height: math.unit(6, "feet"),
  11309. weight: math.unit(150, "lb"),
  11310. name: "Front",
  11311. image: {
  11312. source: "./media/characters/kona/front.svg",
  11313. extra: 2960 / 2629,
  11314. bottom: 0.005
  11315. }
  11316. },
  11317. },
  11318. [
  11319. {
  11320. name: "Normal",
  11321. height: math.unit(11 + 8 / 12, "feet")
  11322. },
  11323. {
  11324. name: "Macro",
  11325. height: math.unit(850, "feet"),
  11326. default: true
  11327. },
  11328. {
  11329. name: "Macro+",
  11330. height: math.unit(1.5, "km"),
  11331. default: true
  11332. },
  11333. {
  11334. name: "Megamacro",
  11335. height: math.unit(80, "miles")
  11336. },
  11337. {
  11338. name: "Gigamacro",
  11339. height: math.unit(3500, "miles")
  11340. },
  11341. ]
  11342. ))
  11343. characterMakers.push(() => makeCharacter(
  11344. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11345. {
  11346. side: {
  11347. height: math.unit(1.9, "meters"),
  11348. weight: math.unit(326, "kg"),
  11349. name: "Side",
  11350. image: {
  11351. source: "./media/characters/levi/side.svg",
  11352. extra: 1704 / 1334,
  11353. bottom: 0.02
  11354. }
  11355. },
  11356. },
  11357. [
  11358. {
  11359. name: "Normal",
  11360. height: math.unit(1.9, "meters"),
  11361. default: true
  11362. },
  11363. {
  11364. name: "Macro",
  11365. height: math.unit(20, "meters")
  11366. },
  11367. {
  11368. name: "Macro+",
  11369. height: math.unit(200, "meters")
  11370. },
  11371. {
  11372. name: "Megamacro",
  11373. height: math.unit(2, "km")
  11374. },
  11375. {
  11376. name: "Megamacro+",
  11377. height: math.unit(20, "km")
  11378. },
  11379. {
  11380. name: "Gigamacro",
  11381. height: math.unit(2500, "km")
  11382. },
  11383. {
  11384. name: "Gigamacro+",
  11385. height: math.unit(120000, "km")
  11386. },
  11387. {
  11388. name: "Teramacro",
  11389. height: math.unit(7.77e6, "km")
  11390. },
  11391. ]
  11392. ))
  11393. characterMakers.push(() => makeCharacter(
  11394. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11395. {
  11396. front: {
  11397. height: math.unit(6 + 4/12, "feet"),
  11398. weight: math.unit(190, "lb"),
  11399. name: "Front",
  11400. image: {
  11401. source: "./media/characters/bmc/front.svg",
  11402. extra: 1626/1472,
  11403. bottom: 79/1705
  11404. }
  11405. },
  11406. back: {
  11407. height: math.unit(6 + 4/12, "feet"),
  11408. weight: math.unit(190, "lb"),
  11409. name: "Back",
  11410. image: {
  11411. source: "./media/characters/bmc/back.svg",
  11412. extra: 1640/1479,
  11413. bottom: 45/1685
  11414. }
  11415. },
  11416. frontArmor: {
  11417. height: math.unit(6 + 4/12, "feet"),
  11418. weight: math.unit(190, "lb"),
  11419. name: "Front-armor",
  11420. image: {
  11421. source: "./media/characters/bmc/front-armor.svg",
  11422. extra: 1538/1468,
  11423. bottom: 79/1617
  11424. }
  11425. },
  11426. },
  11427. [
  11428. {
  11429. name: "Human-sized",
  11430. height: math.unit(6 + 4 / 12, "feet")
  11431. },
  11432. {
  11433. name: "Interactive Size",
  11434. height: math.unit(25, "feet")
  11435. },
  11436. {
  11437. name: "Small",
  11438. height: math.unit(250, "feet")
  11439. },
  11440. {
  11441. name: "Normal",
  11442. height: math.unit(1250, "feet"),
  11443. default: true
  11444. },
  11445. {
  11446. name: "Good Day",
  11447. height: math.unit(88, "miles")
  11448. },
  11449. {
  11450. name: "Largest Measured Size",
  11451. height: math.unit(105.960, "galaxies")
  11452. },
  11453. ]
  11454. ))
  11455. characterMakers.push(() => makeCharacter(
  11456. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11457. {
  11458. front: {
  11459. height: math.unit(20, "feet"),
  11460. weight: math.unit(2016, "kg"),
  11461. name: "Front",
  11462. image: {
  11463. source: "./media/characters/sven-the-kaiju/front.svg",
  11464. extra: 1277/1250,
  11465. bottom: 35/1312
  11466. }
  11467. },
  11468. mouth: {
  11469. height: math.unit(1.85, "feet"),
  11470. name: "Mouth",
  11471. image: {
  11472. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11473. }
  11474. },
  11475. },
  11476. [
  11477. {
  11478. name: "Fairy",
  11479. height: math.unit(6, "inches")
  11480. },
  11481. {
  11482. name: "Normal",
  11483. height: math.unit(20, "feet"),
  11484. default: true
  11485. },
  11486. {
  11487. name: "Rampage",
  11488. height: math.unit(200, "feet")
  11489. },
  11490. {
  11491. name: "Archfey Forest Guardian",
  11492. height: math.unit(1, "mile")
  11493. },
  11494. ]
  11495. ))
  11496. characterMakers.push(() => makeCharacter(
  11497. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11498. {
  11499. front: {
  11500. height: math.unit(4, "meters"),
  11501. weight: math.unit(2, "tons"),
  11502. name: "Front",
  11503. image: {
  11504. source: "./media/characters/marik/front.svg",
  11505. extra: 1057 / 1003,
  11506. bottom: 0.08
  11507. }
  11508. },
  11509. },
  11510. [
  11511. {
  11512. name: "Normal",
  11513. height: math.unit(4, "meters"),
  11514. default: true
  11515. },
  11516. {
  11517. name: "Macro",
  11518. height: math.unit(20, "meters")
  11519. },
  11520. {
  11521. name: "Megamacro",
  11522. height: math.unit(50, "km")
  11523. },
  11524. {
  11525. name: "Gigamacro",
  11526. height: math.unit(100, "km")
  11527. },
  11528. {
  11529. name: "Alpha Macro",
  11530. height: math.unit(7.88e7, "yottameters")
  11531. },
  11532. ]
  11533. ))
  11534. characterMakers.push(() => makeCharacter(
  11535. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11536. {
  11537. front: {
  11538. height: math.unit(6, "feet"),
  11539. weight: math.unit(110, "lb"),
  11540. name: "Front",
  11541. image: {
  11542. source: "./media/characters/mel/front.svg",
  11543. extra: 736 / 617,
  11544. bottom: 0.017
  11545. }
  11546. },
  11547. },
  11548. [
  11549. {
  11550. name: "Pico",
  11551. height: math.unit(3, "pm")
  11552. },
  11553. {
  11554. name: "Nano",
  11555. height: math.unit(3, "nm")
  11556. },
  11557. {
  11558. name: "Micro",
  11559. height: math.unit(0.3, "mm"),
  11560. default: true
  11561. },
  11562. {
  11563. name: "Micro+",
  11564. height: math.unit(3, "mm")
  11565. },
  11566. {
  11567. name: "Normal",
  11568. height: math.unit(5 + 10.5 / 12, "feet")
  11569. },
  11570. ]
  11571. ))
  11572. characterMakers.push(() => makeCharacter(
  11573. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11574. {
  11575. kaiju: {
  11576. height: math.unit(1.75, "meters"),
  11577. weight: math.unit(55, "kg"),
  11578. name: "Kaiju",
  11579. image: {
  11580. source: "./media/characters/lykonous/kaiju.svg",
  11581. extra: 1055 / 946,
  11582. bottom: 0.135
  11583. }
  11584. },
  11585. },
  11586. [
  11587. {
  11588. name: "Normal",
  11589. height: math.unit(2.5, "meters"),
  11590. default: true
  11591. },
  11592. {
  11593. name: "Kaiju Dragon",
  11594. height: math.unit(60, "meters")
  11595. },
  11596. {
  11597. name: "Mega Kaiju",
  11598. height: math.unit(120, "km")
  11599. },
  11600. {
  11601. name: "Giga Kaiju",
  11602. height: math.unit(200, "megameters")
  11603. },
  11604. {
  11605. name: "Terra Kaiju",
  11606. height: math.unit(400, "gigameters")
  11607. },
  11608. {
  11609. name: "Kaiju Dragon God",
  11610. height: math.unit(13000, "exaparsecs")
  11611. },
  11612. ]
  11613. ))
  11614. characterMakers.push(() => makeCharacter(
  11615. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11616. {
  11617. front: {
  11618. height: math.unit(6, "feet"),
  11619. weight: math.unit(150, "lb"),
  11620. name: "Front",
  11621. image: {
  11622. source: "./media/characters/blü/front.svg",
  11623. extra: 1883 / 1564,
  11624. bottom: 0.031
  11625. }
  11626. },
  11627. },
  11628. [
  11629. {
  11630. name: "Normal",
  11631. height: math.unit(13, "feet"),
  11632. default: true
  11633. },
  11634. {
  11635. name: "Big Boi",
  11636. height: math.unit(150, "meters")
  11637. },
  11638. {
  11639. name: "Mini Stomper",
  11640. height: math.unit(300, "meters")
  11641. },
  11642. {
  11643. name: "Macro",
  11644. height: math.unit(1000, "meters")
  11645. },
  11646. {
  11647. name: "Megamacro",
  11648. height: math.unit(11000, "meters")
  11649. },
  11650. {
  11651. name: "Gigamacro",
  11652. height: math.unit(11000, "km")
  11653. },
  11654. {
  11655. name: "Teramacro",
  11656. height: math.unit(420000, "km")
  11657. },
  11658. {
  11659. name: "Examacro",
  11660. height: math.unit(120, "parsecs")
  11661. },
  11662. {
  11663. name: "God Tho",
  11664. height: math.unit(98000000000, "parsecs")
  11665. },
  11666. ]
  11667. ))
  11668. characterMakers.push(() => makeCharacter(
  11669. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11670. {
  11671. taurFront: {
  11672. height: math.unit(6, "feet"),
  11673. weight: math.unit(200, "lb"),
  11674. name: "Taur (Front)",
  11675. image: {
  11676. source: "./media/characters/scales/taur-front.svg",
  11677. extra: 1,
  11678. bottom: 0.05
  11679. }
  11680. },
  11681. taurBack: {
  11682. height: math.unit(6, "feet"),
  11683. weight: math.unit(200, "lb"),
  11684. name: "Taur (Back)",
  11685. image: {
  11686. source: "./media/characters/scales/taur-back.svg",
  11687. extra: 1,
  11688. bottom: 0.08
  11689. }
  11690. },
  11691. anthro: {
  11692. height: math.unit(6 * 7 / 12, "feet"),
  11693. weight: math.unit(100, "lb"),
  11694. name: "Anthro",
  11695. image: {
  11696. source: "./media/characters/scales/anthro.svg",
  11697. extra: 1,
  11698. bottom: 0.06
  11699. }
  11700. },
  11701. },
  11702. [
  11703. {
  11704. name: "Normal",
  11705. height: math.unit(12, "feet"),
  11706. default: true
  11707. },
  11708. ]
  11709. ))
  11710. characterMakers.push(() => makeCharacter(
  11711. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11712. {
  11713. front: {
  11714. height: math.unit(6, "feet"),
  11715. weight: math.unit(150, "lb"),
  11716. name: "Front",
  11717. image: {
  11718. source: "./media/characters/koragos/front.svg",
  11719. extra: 841 / 794,
  11720. bottom: 0.035
  11721. }
  11722. },
  11723. back: {
  11724. height: math.unit(6, "feet"),
  11725. weight: math.unit(150, "lb"),
  11726. name: "Back",
  11727. image: {
  11728. source: "./media/characters/koragos/back.svg",
  11729. extra: 841 / 810,
  11730. bottom: 0.022
  11731. }
  11732. },
  11733. },
  11734. [
  11735. {
  11736. name: "Normal",
  11737. height: math.unit(6 + 11 / 12, "feet"),
  11738. default: true
  11739. },
  11740. {
  11741. name: "Macro",
  11742. height: math.unit(490, "feet")
  11743. },
  11744. {
  11745. name: "Megamacro",
  11746. height: math.unit(10, "miles")
  11747. },
  11748. {
  11749. name: "Gigamacro",
  11750. height: math.unit(50, "miles")
  11751. },
  11752. ]
  11753. ))
  11754. characterMakers.push(() => makeCharacter(
  11755. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11756. {
  11757. front: {
  11758. height: math.unit(6, "feet"),
  11759. weight: math.unit(250, "lb"),
  11760. name: "Front",
  11761. image: {
  11762. source: "./media/characters/xylrem/front.svg",
  11763. extra: 3323 / 3050,
  11764. bottom: 0.065
  11765. }
  11766. },
  11767. },
  11768. [
  11769. {
  11770. name: "Micro",
  11771. height: math.unit(4, "feet")
  11772. },
  11773. {
  11774. name: "Normal",
  11775. height: math.unit(16, "feet"),
  11776. default: true
  11777. },
  11778. {
  11779. name: "Macro",
  11780. height: math.unit(2720, "feet")
  11781. },
  11782. {
  11783. name: "Megamacro",
  11784. height: math.unit(25000, "miles")
  11785. },
  11786. ]
  11787. ))
  11788. characterMakers.push(() => makeCharacter(
  11789. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11790. {
  11791. front: {
  11792. height: math.unit(8, "feet"),
  11793. weight: math.unit(250, "kg"),
  11794. name: "Front",
  11795. image: {
  11796. source: "./media/characters/ikideru/front.svg",
  11797. extra: 930 / 870,
  11798. bottom: 0.087
  11799. }
  11800. },
  11801. back: {
  11802. height: math.unit(8, "feet"),
  11803. weight: math.unit(250, "kg"),
  11804. name: "Back",
  11805. image: {
  11806. source: "./media/characters/ikideru/back.svg",
  11807. extra: 919 / 852,
  11808. bottom: 0.055
  11809. }
  11810. },
  11811. },
  11812. [
  11813. {
  11814. name: "Rare",
  11815. height: math.unit(8, "feet"),
  11816. default: true
  11817. },
  11818. {
  11819. name: "Playful Loom",
  11820. height: math.unit(80, "feet")
  11821. },
  11822. {
  11823. name: "City Leaner",
  11824. height: math.unit(230, "feet")
  11825. },
  11826. {
  11827. name: "Megamacro",
  11828. height: math.unit(2500, "feet")
  11829. },
  11830. {
  11831. name: "Gigamacro",
  11832. height: math.unit(26400, "feet")
  11833. },
  11834. {
  11835. name: "Tectonic Shifter",
  11836. height: math.unit(1.7, "megameters")
  11837. },
  11838. {
  11839. name: "Planet Carer",
  11840. height: math.unit(21, "megameters")
  11841. },
  11842. {
  11843. name: "God",
  11844. height: math.unit(11157.22, "parsecs")
  11845. },
  11846. ]
  11847. ))
  11848. characterMakers.push(() => makeCharacter(
  11849. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11850. {
  11851. front: {
  11852. height: math.unit(6, "feet"),
  11853. weight: math.unit(120, "lb"),
  11854. name: "Front",
  11855. image: {
  11856. source: "./media/characters/neo/front.svg"
  11857. }
  11858. },
  11859. },
  11860. [
  11861. {
  11862. name: "Micro",
  11863. height: math.unit(2, "inches"),
  11864. default: true
  11865. },
  11866. {
  11867. name: "Human Size",
  11868. height: math.unit(5 + 8 / 12, "feet")
  11869. },
  11870. ]
  11871. ))
  11872. characterMakers.push(() => makeCharacter(
  11873. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11874. {
  11875. front: {
  11876. height: math.unit(13 + 10 / 12, "feet"),
  11877. weight: math.unit(5320, "lb"),
  11878. name: "Front",
  11879. image: {
  11880. source: "./media/characters/chauncey-chantz/front.svg",
  11881. extra: 1587 / 1435,
  11882. bottom: 0.02
  11883. }
  11884. },
  11885. },
  11886. [
  11887. {
  11888. name: "Normal",
  11889. height: math.unit(13 + 10 / 12, "feet"),
  11890. default: true
  11891. },
  11892. {
  11893. name: "Macro",
  11894. height: math.unit(45, "feet")
  11895. },
  11896. {
  11897. name: "Megamacro",
  11898. height: math.unit(250, "miles")
  11899. },
  11900. {
  11901. name: "Planetary",
  11902. height: math.unit(10000, "miles")
  11903. },
  11904. {
  11905. name: "Galactic",
  11906. height: math.unit(40000, "parsecs")
  11907. },
  11908. {
  11909. name: "Universal",
  11910. height: math.unit(1, "yottameter")
  11911. },
  11912. ]
  11913. ))
  11914. characterMakers.push(() => makeCharacter(
  11915. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11916. {
  11917. front: {
  11918. height: math.unit(6, "feet"),
  11919. weight: math.unit(150, "lb"),
  11920. name: "Front",
  11921. image: {
  11922. source: "./media/characters/epifox/front.svg",
  11923. extra: 1,
  11924. bottom: 0.075
  11925. }
  11926. },
  11927. },
  11928. [
  11929. {
  11930. name: "Micro",
  11931. height: math.unit(6, "inches")
  11932. },
  11933. {
  11934. name: "Normal",
  11935. height: math.unit(12, "feet"),
  11936. default: true
  11937. },
  11938. {
  11939. name: "Macro",
  11940. height: math.unit(3810, "feet")
  11941. },
  11942. {
  11943. name: "Megamacro",
  11944. height: math.unit(500, "miles")
  11945. },
  11946. ]
  11947. ))
  11948. characterMakers.push(() => makeCharacter(
  11949. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11950. {
  11951. front: {
  11952. height: math.unit(1.8796, "m"),
  11953. weight: math.unit(230, "lb"),
  11954. name: "Front",
  11955. image: {
  11956. source: "./media/characters/colin-t/front.svg",
  11957. extra: 1272 / 1193,
  11958. bottom: 0.07
  11959. }
  11960. },
  11961. },
  11962. [
  11963. {
  11964. name: "Micro",
  11965. height: math.unit(0.571, "meters")
  11966. },
  11967. {
  11968. name: "Normal",
  11969. height: math.unit(1.8796, "meters"),
  11970. default: true
  11971. },
  11972. {
  11973. name: "Tall",
  11974. height: math.unit(4, "meters")
  11975. },
  11976. {
  11977. name: "Macro",
  11978. height: math.unit(67.241, "meters")
  11979. },
  11980. {
  11981. name: "Megamacro",
  11982. height: math.unit(371.856, "meters")
  11983. },
  11984. {
  11985. name: "Planetary",
  11986. height: math.unit(12631.5689, "km")
  11987. },
  11988. ]
  11989. ))
  11990. characterMakers.push(() => makeCharacter(
  11991. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11992. {
  11993. front: {
  11994. height: math.unit(1.85, "meters"),
  11995. weight: math.unit(80, "kg"),
  11996. name: "Front",
  11997. image: {
  11998. source: "./media/characters/matvei/front.svg",
  11999. extra: 614 / 594,
  12000. bottom: 0.01
  12001. }
  12002. },
  12003. },
  12004. [
  12005. {
  12006. name: "Normal",
  12007. height: math.unit(1.85, "meters"),
  12008. default: true
  12009. },
  12010. ]
  12011. ))
  12012. characterMakers.push(() => makeCharacter(
  12013. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12014. {
  12015. front: {
  12016. height: math.unit(5 + 9 / 12, "feet"),
  12017. weight: math.unit(70, "lb"),
  12018. name: "Front",
  12019. image: {
  12020. source: "./media/characters/quincy/front.svg",
  12021. extra: 3041 / 2751
  12022. }
  12023. },
  12024. back: {
  12025. height: math.unit(5 + 9 / 12, "feet"),
  12026. weight: math.unit(70, "lb"),
  12027. name: "Back",
  12028. image: {
  12029. source: "./media/characters/quincy/back.svg",
  12030. extra: 3041 / 2751
  12031. }
  12032. },
  12033. flying: {
  12034. height: math.unit(5 + 4 / 12, "feet"),
  12035. weight: math.unit(70, "lb"),
  12036. name: "Flying",
  12037. image: {
  12038. source: "./media/characters/quincy/flying.svg",
  12039. extra: 1044 / 930
  12040. }
  12041. },
  12042. },
  12043. [
  12044. {
  12045. name: "Micro",
  12046. height: math.unit(3, "cm")
  12047. },
  12048. {
  12049. name: "Normal",
  12050. height: math.unit(5 + 9 / 12, "feet")
  12051. },
  12052. {
  12053. name: "Macro",
  12054. height: math.unit(200, "meters"),
  12055. default: true
  12056. },
  12057. {
  12058. name: "Megamacro",
  12059. height: math.unit(1000, "meters")
  12060. },
  12061. ]
  12062. ))
  12063. characterMakers.push(() => makeCharacter(
  12064. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12065. {
  12066. front: {
  12067. height: math.unit(3 + 11/12, "feet"),
  12068. weight: math.unit(50, "lb"),
  12069. name: "Front",
  12070. image: {
  12071. source: "./media/characters/vanrel/front.svg",
  12072. extra: 1104/949,
  12073. bottom: 52/1156
  12074. }
  12075. },
  12076. back: {
  12077. height: math.unit(3 + 11/12, "feet"),
  12078. weight: math.unit(50, "lb"),
  12079. name: "Back",
  12080. image: {
  12081. source: "./media/characters/vanrel/back.svg",
  12082. extra: 1119/976,
  12083. bottom: 37/1156
  12084. }
  12085. },
  12086. tome: {
  12087. height: math.unit(1.35, "feet"),
  12088. weight: math.unit(10, "lb"),
  12089. name: "Vanrel's Tome",
  12090. rename: true,
  12091. image: {
  12092. source: "./media/characters/vanrel/tome.svg"
  12093. }
  12094. },
  12095. beans: {
  12096. height: math.unit(0.89, "feet"),
  12097. name: "Beans",
  12098. image: {
  12099. source: "./media/characters/vanrel/beans.svg"
  12100. }
  12101. },
  12102. },
  12103. [
  12104. {
  12105. name: "Normal",
  12106. height: math.unit(3 + 11/12, "feet"),
  12107. default: true
  12108. },
  12109. ]
  12110. ))
  12111. characterMakers.push(() => makeCharacter(
  12112. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12113. {
  12114. front: {
  12115. height: math.unit(7 + 5 / 12, "feet"),
  12116. name: "Front",
  12117. image: {
  12118. source: "./media/characters/kuiper-vanrel/front.svg",
  12119. extra: 1219/1169,
  12120. bottom: 69/1288
  12121. }
  12122. },
  12123. back: {
  12124. height: math.unit(7 + 5 / 12, "feet"),
  12125. name: "Back",
  12126. image: {
  12127. source: "./media/characters/kuiper-vanrel/back.svg",
  12128. extra: 1236/1193,
  12129. bottom: 27/1263
  12130. }
  12131. },
  12132. foot: {
  12133. height: math.unit(0.55, "meters"),
  12134. name: "Foot",
  12135. image: {
  12136. source: "./media/characters/kuiper-vanrel/foot.svg",
  12137. }
  12138. },
  12139. battle: {
  12140. height: math.unit(6.824, "feet"),
  12141. name: "Battle",
  12142. image: {
  12143. source: "./media/characters/kuiper-vanrel/battle.svg",
  12144. extra: 1466 / 1327,
  12145. bottom: 29 / 1492.5
  12146. }
  12147. },
  12148. meerkui: {
  12149. height: math.unit(18, "inches"),
  12150. name: "Meerkui",
  12151. image: {
  12152. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12153. extra: 1354/1289,
  12154. bottom: 69/1423
  12155. }
  12156. },
  12157. },
  12158. [
  12159. {
  12160. name: "Normal",
  12161. height: math.unit(7 + 5 / 12, "feet"),
  12162. default: true
  12163. },
  12164. ]
  12165. ))
  12166. characterMakers.push(() => makeCharacter(
  12167. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12168. {
  12169. front: {
  12170. height: math.unit(8 + 5 / 12, "feet"),
  12171. name: "Front",
  12172. image: {
  12173. source: "./media/characters/keset-vanrel/front.svg",
  12174. extra: 1231/1148,
  12175. bottom: 82/1313
  12176. }
  12177. },
  12178. back: {
  12179. height: math.unit(8 + 5 / 12, "feet"),
  12180. name: "Back",
  12181. image: {
  12182. source: "./media/characters/keset-vanrel/back.svg",
  12183. extra: 1240/1174,
  12184. bottom: 33/1273
  12185. }
  12186. },
  12187. hand: {
  12188. height: math.unit(0.6, "meters"),
  12189. name: "Hand",
  12190. image: {
  12191. source: "./media/characters/keset-vanrel/hand.svg"
  12192. }
  12193. },
  12194. foot: {
  12195. height: math.unit(0.94978, "meters"),
  12196. name: "Foot",
  12197. image: {
  12198. source: "./media/characters/keset-vanrel/foot.svg"
  12199. }
  12200. },
  12201. battle: {
  12202. height: math.unit(7.408, "feet"),
  12203. name: "Battle",
  12204. image: {
  12205. source: "./media/characters/keset-vanrel/battle.svg",
  12206. extra: 1890 / 1386,
  12207. bottom: 73.28 / 1970
  12208. }
  12209. },
  12210. },
  12211. [
  12212. {
  12213. name: "Normal",
  12214. height: math.unit(8 + 5 / 12, "feet"),
  12215. default: true
  12216. },
  12217. ]
  12218. ))
  12219. characterMakers.push(() => makeCharacter(
  12220. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12221. {
  12222. front: {
  12223. height: math.unit(6, "feet"),
  12224. weight: math.unit(150, "lb"),
  12225. name: "Front",
  12226. image: {
  12227. source: "./media/characters/neos/front.svg",
  12228. extra: 1696 / 992,
  12229. bottom: 0.14
  12230. }
  12231. },
  12232. },
  12233. [
  12234. {
  12235. name: "Normal",
  12236. height: math.unit(54, "cm"),
  12237. default: true
  12238. },
  12239. {
  12240. name: "Macro",
  12241. height: math.unit(100, "m")
  12242. },
  12243. {
  12244. name: "Megamacro",
  12245. height: math.unit(10, "km")
  12246. },
  12247. {
  12248. name: "Megamacro+",
  12249. height: math.unit(100, "km")
  12250. },
  12251. {
  12252. name: "Gigamacro",
  12253. height: math.unit(100, "Mm")
  12254. },
  12255. {
  12256. name: "Teramacro",
  12257. height: math.unit(100, "Gm")
  12258. },
  12259. {
  12260. name: "Examacro",
  12261. height: math.unit(100, "Em")
  12262. },
  12263. {
  12264. name: "Godly",
  12265. height: math.unit(10000, "Ym")
  12266. },
  12267. {
  12268. name: "Beyond Godly",
  12269. height: math.unit(25, "multiverses")
  12270. },
  12271. ]
  12272. ))
  12273. characterMakers.push(() => makeCharacter(
  12274. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12275. {
  12276. feminine: {
  12277. height: math.unit(5, "feet"),
  12278. weight: math.unit(100, "lb"),
  12279. name: "Feminine",
  12280. image: {
  12281. source: "./media/characters/sammy-mouse/feminine.svg",
  12282. extra: 2526 / 2425,
  12283. bottom: 0.123
  12284. }
  12285. },
  12286. masculine: {
  12287. height: math.unit(5, "feet"),
  12288. weight: math.unit(100, "lb"),
  12289. name: "Masculine",
  12290. image: {
  12291. source: "./media/characters/sammy-mouse/masculine.svg",
  12292. extra: 2526 / 2425,
  12293. bottom: 0.123
  12294. }
  12295. },
  12296. },
  12297. [
  12298. {
  12299. name: "Micro",
  12300. height: math.unit(5, "inches")
  12301. },
  12302. {
  12303. name: "Normal",
  12304. height: math.unit(5, "feet"),
  12305. default: true
  12306. },
  12307. {
  12308. name: "Macro",
  12309. height: math.unit(60, "feet")
  12310. },
  12311. ]
  12312. ))
  12313. characterMakers.push(() => makeCharacter(
  12314. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12315. {
  12316. front: {
  12317. height: math.unit(4, "feet"),
  12318. weight: math.unit(50, "lb"),
  12319. name: "Front",
  12320. image: {
  12321. source: "./media/characters/kole/front.svg",
  12322. extra: 1423 / 1303,
  12323. bottom: 0.025
  12324. }
  12325. },
  12326. back: {
  12327. height: math.unit(4, "feet"),
  12328. weight: math.unit(50, "lb"),
  12329. name: "Back",
  12330. image: {
  12331. source: "./media/characters/kole/back.svg",
  12332. extra: 1426 / 1280,
  12333. bottom: 0.02
  12334. }
  12335. },
  12336. },
  12337. [
  12338. {
  12339. name: "Normal",
  12340. height: math.unit(4, "feet"),
  12341. default: true
  12342. },
  12343. ]
  12344. ))
  12345. characterMakers.push(() => makeCharacter(
  12346. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12347. {
  12348. front: {
  12349. height: math.unit(2.5, "feet"),
  12350. weight: math.unit(32, "lb"),
  12351. name: "Front",
  12352. image: {
  12353. source: "./media/characters/rufran/front.svg",
  12354. extra: 1313/885,
  12355. bottom: 94/1407
  12356. }
  12357. },
  12358. side: {
  12359. height: math.unit(2.5, "feet"),
  12360. weight: math.unit(32, "lb"),
  12361. name: "Side",
  12362. image: {
  12363. source: "./media/characters/rufran/side.svg",
  12364. extra: 1109/852,
  12365. bottom: 118/1227
  12366. }
  12367. },
  12368. back: {
  12369. height: math.unit(2.5, "feet"),
  12370. weight: math.unit(32, "lb"),
  12371. name: "Back",
  12372. image: {
  12373. source: "./media/characters/rufran/back.svg",
  12374. extra: 1280/878,
  12375. bottom: 131/1411
  12376. }
  12377. },
  12378. mouth: {
  12379. height: math.unit(1.13, "feet"),
  12380. name: "Mouth",
  12381. image: {
  12382. source: "./media/characters/rufran/mouth.svg"
  12383. }
  12384. },
  12385. foot: {
  12386. height: math.unit(1.33, "feet"),
  12387. name: "Foot",
  12388. image: {
  12389. source: "./media/characters/rufran/foot.svg"
  12390. }
  12391. },
  12392. koboldFront: {
  12393. height: math.unit(2 + 6 / 12, "feet"),
  12394. weight: math.unit(20, "lb"),
  12395. name: "Front (Kobold)",
  12396. image: {
  12397. source: "./media/characters/rufran/kobold-front.svg",
  12398. extra: 2041 / 1839,
  12399. bottom: 0.055
  12400. }
  12401. },
  12402. koboldBack: {
  12403. height: math.unit(2 + 6 / 12, "feet"),
  12404. weight: math.unit(20, "lb"),
  12405. name: "Back (Kobold)",
  12406. image: {
  12407. source: "./media/characters/rufran/kobold-back.svg",
  12408. extra: 2054 / 1839,
  12409. bottom: 0.01
  12410. }
  12411. },
  12412. koboldHand: {
  12413. height: math.unit(0.2166, "meters"),
  12414. name: "Hand (Kobold)",
  12415. image: {
  12416. source: "./media/characters/rufran/kobold-hand.svg"
  12417. }
  12418. },
  12419. koboldFoot: {
  12420. height: math.unit(0.185, "meters"),
  12421. name: "Foot (Kobold)",
  12422. image: {
  12423. source: "./media/characters/rufran/kobold-foot.svg"
  12424. }
  12425. },
  12426. },
  12427. [
  12428. {
  12429. name: "Micro",
  12430. height: math.unit(1, "inch")
  12431. },
  12432. {
  12433. name: "Normal",
  12434. height: math.unit(2 + 6 / 12, "feet"),
  12435. default: true
  12436. },
  12437. {
  12438. name: "Big",
  12439. height: math.unit(60, "feet")
  12440. },
  12441. {
  12442. name: "Macro",
  12443. height: math.unit(325, "feet")
  12444. },
  12445. ]
  12446. ))
  12447. characterMakers.push(() => makeCharacter(
  12448. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12449. {
  12450. front: {
  12451. height: math.unit(0.3, "meters"),
  12452. weight: math.unit(3.5, "kg"),
  12453. name: "Front",
  12454. image: {
  12455. source: "./media/characters/chip/front.svg",
  12456. extra: 748 / 674
  12457. }
  12458. },
  12459. },
  12460. [
  12461. {
  12462. name: "Micro",
  12463. height: math.unit(1, "inch"),
  12464. default: true
  12465. },
  12466. ]
  12467. ))
  12468. characterMakers.push(() => makeCharacter(
  12469. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12470. {
  12471. side: {
  12472. height: math.unit(2.3, "meters"),
  12473. weight: math.unit(3500, "lb"),
  12474. name: "Side",
  12475. image: {
  12476. source: "./media/characters/torvid/side.svg",
  12477. extra: 1972 / 722,
  12478. bottom: 0.035
  12479. }
  12480. },
  12481. },
  12482. [
  12483. {
  12484. name: "Normal",
  12485. height: math.unit(2.3, "meters"),
  12486. default: true
  12487. },
  12488. ]
  12489. ))
  12490. characterMakers.push(() => makeCharacter(
  12491. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12492. {
  12493. front: {
  12494. height: math.unit(2, "meters"),
  12495. weight: math.unit(150.5, "kg"),
  12496. name: "Front",
  12497. image: {
  12498. source: "./media/characters/susan/front.svg",
  12499. extra: 693 / 635,
  12500. bottom: 0.05
  12501. }
  12502. },
  12503. },
  12504. [
  12505. {
  12506. name: "Megamacro",
  12507. height: math.unit(505, "miles"),
  12508. default: true
  12509. },
  12510. ]
  12511. ))
  12512. characterMakers.push(() => makeCharacter(
  12513. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12514. {
  12515. front: {
  12516. height: math.unit(6, "feet"),
  12517. weight: math.unit(150, "lb"),
  12518. name: "Front",
  12519. image: {
  12520. source: "./media/characters/raindrops/front.svg",
  12521. extra: 2655 / 2461,
  12522. bottom: 49 / 2705
  12523. }
  12524. },
  12525. back: {
  12526. height: math.unit(6, "feet"),
  12527. weight: math.unit(150, "lb"),
  12528. name: "Back",
  12529. image: {
  12530. source: "./media/characters/raindrops/back.svg",
  12531. extra: 2574 / 2400,
  12532. bottom: 65 / 2634
  12533. }
  12534. },
  12535. },
  12536. [
  12537. {
  12538. name: "Micro",
  12539. height: math.unit(6, "inches")
  12540. },
  12541. {
  12542. name: "Normal",
  12543. height: math.unit(6 + 2 / 12, "feet")
  12544. },
  12545. {
  12546. name: "Macro",
  12547. height: math.unit(131, "feet"),
  12548. default: true
  12549. },
  12550. {
  12551. name: "Megamacro",
  12552. height: math.unit(15, "miles")
  12553. },
  12554. {
  12555. name: "Gigamacro",
  12556. height: math.unit(4000, "miles")
  12557. },
  12558. {
  12559. name: "Teramacro",
  12560. height: math.unit(315000, "miles")
  12561. },
  12562. ]
  12563. ))
  12564. characterMakers.push(() => makeCharacter(
  12565. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12566. {
  12567. front: {
  12568. height: math.unit(2.794, "meters"),
  12569. weight: math.unit(325, "kg"),
  12570. name: "Front",
  12571. image: {
  12572. source: "./media/characters/tezwa/front.svg",
  12573. extra: 2083 / 1906,
  12574. bottom: 0.031
  12575. }
  12576. },
  12577. foot: {
  12578. height: math.unit(0.687, "meters"),
  12579. name: "Foot",
  12580. image: {
  12581. source: "./media/characters/tezwa/foot.svg"
  12582. }
  12583. },
  12584. },
  12585. [
  12586. {
  12587. name: "Normal",
  12588. height: math.unit(9 + 2 / 12, "feet"),
  12589. default: true
  12590. },
  12591. ]
  12592. ))
  12593. characterMakers.push(() => makeCharacter(
  12594. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12595. {
  12596. front: {
  12597. height: math.unit(58, "feet"),
  12598. weight: math.unit(89000, "lb"),
  12599. name: "Front",
  12600. image: {
  12601. source: "./media/characters/typhus/front.svg",
  12602. extra: 816 / 800,
  12603. bottom: 0.065
  12604. }
  12605. },
  12606. },
  12607. [
  12608. {
  12609. name: "Macro",
  12610. height: math.unit(58, "feet"),
  12611. default: true
  12612. },
  12613. ]
  12614. ))
  12615. characterMakers.push(() => makeCharacter(
  12616. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12617. {
  12618. front: {
  12619. height: math.unit(12, "feet"),
  12620. weight: math.unit(6, "tonnes"),
  12621. name: "Front",
  12622. image: {
  12623. source: "./media/characters/lyra-von-wulf/front.svg",
  12624. extra: 1,
  12625. bottom: 0.10
  12626. }
  12627. },
  12628. frontMecha: {
  12629. height: math.unit(12, "feet"),
  12630. weight: math.unit(12, "tonnes"),
  12631. name: "Front (Mecha)",
  12632. image: {
  12633. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12634. extra: 1,
  12635. bottom: 0.042
  12636. }
  12637. },
  12638. maw: {
  12639. height: math.unit(2.2, "feet"),
  12640. name: "Maw",
  12641. image: {
  12642. source: "./media/characters/lyra-von-wulf/maw.svg"
  12643. }
  12644. },
  12645. },
  12646. [
  12647. {
  12648. name: "Normal",
  12649. height: math.unit(12, "feet"),
  12650. default: true
  12651. },
  12652. {
  12653. name: "Classic",
  12654. height: math.unit(50, "feet")
  12655. },
  12656. {
  12657. name: "Macro",
  12658. height: math.unit(500, "feet")
  12659. },
  12660. {
  12661. name: "Megamacro",
  12662. height: math.unit(1, "mile")
  12663. },
  12664. {
  12665. name: "Gigamacro",
  12666. height: math.unit(400, "miles")
  12667. },
  12668. {
  12669. name: "Teramacro",
  12670. height: math.unit(22000, "miles")
  12671. },
  12672. {
  12673. name: "Solarmacro",
  12674. height: math.unit(8600000, "miles")
  12675. },
  12676. {
  12677. name: "Galactic",
  12678. height: math.unit(1057000, "lightyears")
  12679. },
  12680. ]
  12681. ))
  12682. characterMakers.push(() => makeCharacter(
  12683. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12684. {
  12685. front: {
  12686. height: math.unit(6 + 10 / 12, "feet"),
  12687. weight: math.unit(150, "lb"),
  12688. name: "Front",
  12689. image: {
  12690. source: "./media/characters/dixon/front.svg",
  12691. extra: 3361 / 3209,
  12692. bottom: 0.01
  12693. }
  12694. },
  12695. },
  12696. [
  12697. {
  12698. name: "Normal",
  12699. height: math.unit(6 + 10 / 12, "feet"),
  12700. default: true
  12701. },
  12702. {
  12703. name: "Big",
  12704. height: math.unit(12, "meters")
  12705. },
  12706. {
  12707. name: "Macro",
  12708. height: math.unit(500, "meters")
  12709. },
  12710. {
  12711. name: "Megamacro",
  12712. height: math.unit(2, "km")
  12713. },
  12714. ]
  12715. ))
  12716. characterMakers.push(() => makeCharacter(
  12717. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12718. {
  12719. front: {
  12720. height: math.unit(185, "cm"),
  12721. weight: math.unit(68, "kg"),
  12722. name: "Front",
  12723. image: {
  12724. source: "./media/characters/kauko/front.svg",
  12725. extra: 1455 / 1421,
  12726. bottom: 0.03
  12727. }
  12728. },
  12729. back: {
  12730. height: math.unit(185, "cm"),
  12731. weight: math.unit(68, "kg"),
  12732. name: "Back",
  12733. image: {
  12734. source: "./media/characters/kauko/back.svg",
  12735. extra: 1455 / 1421,
  12736. bottom: 0.004
  12737. }
  12738. },
  12739. },
  12740. [
  12741. {
  12742. name: "Normal",
  12743. height: math.unit(185, "cm"),
  12744. default: true
  12745. },
  12746. ]
  12747. ))
  12748. characterMakers.push(() => makeCharacter(
  12749. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12750. {
  12751. front: {
  12752. height: math.unit(6, "feet"),
  12753. weight: math.unit(150, "kg"),
  12754. name: "Front",
  12755. image: {
  12756. source: "./media/characters/varg/front.svg",
  12757. extra: 1108 / 1018,
  12758. bottom: 0.0375
  12759. }
  12760. },
  12761. },
  12762. [
  12763. {
  12764. name: "Normal",
  12765. height: math.unit(5, "meters")
  12766. },
  12767. {
  12768. name: "Macro",
  12769. height: math.unit(200, "meters")
  12770. },
  12771. {
  12772. name: "Megamacro",
  12773. height: math.unit(20, "kilometers")
  12774. },
  12775. {
  12776. name: "True Size",
  12777. height: math.unit(211, "km"),
  12778. default: true
  12779. },
  12780. {
  12781. name: "Gigamacro",
  12782. height: math.unit(1000, "km")
  12783. },
  12784. {
  12785. name: "Gigamacro+",
  12786. height: math.unit(8000, "km")
  12787. },
  12788. {
  12789. name: "Teramacro",
  12790. height: math.unit(1000000, "km")
  12791. },
  12792. ]
  12793. ))
  12794. characterMakers.push(() => makeCharacter(
  12795. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12796. {
  12797. front: {
  12798. height: math.unit(7 + 7 / 12, "feet"),
  12799. weight: math.unit(267, "lb"),
  12800. name: "Front",
  12801. image: {
  12802. source: "./media/characters/dayza/front.svg",
  12803. extra: 1262 / 1200,
  12804. bottom: 0.035
  12805. }
  12806. },
  12807. side: {
  12808. height: math.unit(7 + 7 / 12, "feet"),
  12809. weight: math.unit(267, "lb"),
  12810. name: "Side",
  12811. image: {
  12812. source: "./media/characters/dayza/side.svg",
  12813. extra: 1295 / 1245,
  12814. bottom: 0.05
  12815. }
  12816. },
  12817. back: {
  12818. height: math.unit(7 + 7 / 12, "feet"),
  12819. weight: math.unit(267, "lb"),
  12820. name: "Back",
  12821. image: {
  12822. source: "./media/characters/dayza/back.svg",
  12823. extra: 1241 / 1170
  12824. }
  12825. },
  12826. },
  12827. [
  12828. {
  12829. name: "Normal",
  12830. height: math.unit(7 + 7 / 12, "feet"),
  12831. default: true
  12832. },
  12833. {
  12834. name: "Macro",
  12835. height: math.unit(155, "feet")
  12836. },
  12837. ]
  12838. ))
  12839. characterMakers.push(() => makeCharacter(
  12840. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12841. {
  12842. front: {
  12843. height: math.unit(6 + 5 / 12, "feet"),
  12844. weight: math.unit(160, "lb"),
  12845. name: "Front",
  12846. image: {
  12847. source: "./media/characters/xanthos/front.svg",
  12848. extra: 1,
  12849. bottom: 0.04
  12850. }
  12851. },
  12852. back: {
  12853. height: math.unit(6 + 5 / 12, "feet"),
  12854. weight: math.unit(160, "lb"),
  12855. name: "Back",
  12856. image: {
  12857. source: "./media/characters/xanthos/back.svg",
  12858. extra: 1,
  12859. bottom: 0.03
  12860. }
  12861. },
  12862. hand: {
  12863. height: math.unit(0.928, "feet"),
  12864. name: "Hand",
  12865. image: {
  12866. source: "./media/characters/xanthos/hand.svg"
  12867. }
  12868. },
  12869. foot: {
  12870. height: math.unit(1.286, "feet"),
  12871. name: "Foot",
  12872. image: {
  12873. source: "./media/characters/xanthos/foot.svg"
  12874. }
  12875. },
  12876. },
  12877. [
  12878. {
  12879. name: "Normal",
  12880. height: math.unit(6 + 5 / 12, "feet"),
  12881. default: true
  12882. },
  12883. {
  12884. name: "Normal+",
  12885. height: math.unit(6, "meters")
  12886. },
  12887. {
  12888. name: "Macro",
  12889. height: math.unit(40, "feet")
  12890. },
  12891. {
  12892. name: "Macro+",
  12893. height: math.unit(200, "meters")
  12894. },
  12895. {
  12896. name: "Megamacro",
  12897. height: math.unit(20, "km")
  12898. },
  12899. {
  12900. name: "Megamacro+",
  12901. height: math.unit(100, "km")
  12902. },
  12903. {
  12904. name: "Gigamacro",
  12905. height: math.unit(200, "megameters")
  12906. },
  12907. {
  12908. name: "Gigamacro+",
  12909. height: math.unit(1.5, "gigameters")
  12910. },
  12911. ]
  12912. ))
  12913. characterMakers.push(() => makeCharacter(
  12914. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12915. {
  12916. front: {
  12917. height: math.unit(6 + 3 / 12, "feet"),
  12918. weight: math.unit(215, "lb"),
  12919. name: "Front",
  12920. image: {
  12921. source: "./media/characters/grynn/front.svg",
  12922. extra: 4627 / 4209,
  12923. bottom: 0.047
  12924. }
  12925. },
  12926. },
  12927. [
  12928. {
  12929. name: "Micro",
  12930. height: math.unit(6, "inches")
  12931. },
  12932. {
  12933. name: "Normal",
  12934. height: math.unit(6 + 3 / 12, "feet"),
  12935. default: true
  12936. },
  12937. {
  12938. name: "Big",
  12939. height: math.unit(104, "feet")
  12940. },
  12941. {
  12942. name: "Macro",
  12943. height: math.unit(944, "feet")
  12944. },
  12945. {
  12946. name: "Macro+",
  12947. height: math.unit(9480, "feet")
  12948. },
  12949. {
  12950. name: "Megamacro",
  12951. height: math.unit(78752, "feet")
  12952. },
  12953. {
  12954. name: "Megamacro+",
  12955. height: math.unit(630128, "feet")
  12956. },
  12957. {
  12958. name: "Megamacro++",
  12959. height: math.unit(3150695, "feet")
  12960. },
  12961. ]
  12962. ))
  12963. characterMakers.push(() => makeCharacter(
  12964. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12965. {
  12966. front: {
  12967. height: math.unit(7 + 5 / 12, "feet"),
  12968. weight: math.unit(450, "lb"),
  12969. name: "Front",
  12970. image: {
  12971. source: "./media/characters/mocha-aura/front.svg",
  12972. extra: 1907 / 1817,
  12973. bottom: 0.04
  12974. }
  12975. },
  12976. back: {
  12977. height: math.unit(7 + 5 / 12, "feet"),
  12978. weight: math.unit(450, "lb"),
  12979. name: "Back",
  12980. image: {
  12981. source: "./media/characters/mocha-aura/back.svg",
  12982. extra: 1900 / 1825,
  12983. bottom: 0.045
  12984. }
  12985. },
  12986. },
  12987. [
  12988. {
  12989. name: "Nano",
  12990. height: math.unit(1, "nm")
  12991. },
  12992. {
  12993. name: "Megamicro",
  12994. height: math.unit(1, "mm")
  12995. },
  12996. {
  12997. name: "Micro",
  12998. height: math.unit(3, "inches")
  12999. },
  13000. {
  13001. name: "Normal",
  13002. height: math.unit(7 + 5 / 12, "feet"),
  13003. default: true
  13004. },
  13005. {
  13006. name: "Macro",
  13007. height: math.unit(30, "feet")
  13008. },
  13009. {
  13010. name: "Megamacro",
  13011. height: math.unit(3500, "feet")
  13012. },
  13013. {
  13014. name: "Teramacro",
  13015. height: math.unit(500000, "miles")
  13016. },
  13017. {
  13018. name: "Petamacro",
  13019. height: math.unit(50000000000000000, "parsecs")
  13020. },
  13021. ]
  13022. ))
  13023. characterMakers.push(() => makeCharacter(
  13024. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13025. {
  13026. front: {
  13027. height: math.unit(6, "feet"),
  13028. weight: math.unit(150, "lb"),
  13029. name: "Front",
  13030. image: {
  13031. source: "./media/characters/ilisha-devya/front.svg",
  13032. extra: 1,
  13033. bottom: 0.175
  13034. }
  13035. },
  13036. back: {
  13037. height: math.unit(6, "feet"),
  13038. weight: math.unit(150, "lb"),
  13039. name: "Back",
  13040. image: {
  13041. source: "./media/characters/ilisha-devya/back.svg",
  13042. extra: 1,
  13043. bottom: 0.015
  13044. }
  13045. },
  13046. },
  13047. [
  13048. {
  13049. name: "Macro",
  13050. height: math.unit(500, "feet"),
  13051. default: true
  13052. },
  13053. {
  13054. name: "Megamacro",
  13055. height: math.unit(10, "miles")
  13056. },
  13057. {
  13058. name: "Gigamacro",
  13059. height: math.unit(100000, "miles")
  13060. },
  13061. {
  13062. name: "Examacro",
  13063. height: math.unit(1e9, "lightyears")
  13064. },
  13065. {
  13066. name: "Omniversal",
  13067. height: math.unit(1e33, "lightyears")
  13068. },
  13069. {
  13070. name: "Beyond Infinite",
  13071. height: math.unit(1e100, "lightyears")
  13072. },
  13073. ]
  13074. ))
  13075. characterMakers.push(() => makeCharacter(
  13076. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13077. {
  13078. Side: {
  13079. height: math.unit(6, "feet"),
  13080. weight: math.unit(150, "lb"),
  13081. name: "Side",
  13082. image: {
  13083. source: "./media/characters/mira/side.svg",
  13084. extra: 900 / 799,
  13085. bottom: 0.02
  13086. }
  13087. },
  13088. },
  13089. [
  13090. {
  13091. name: "Human Size",
  13092. height: math.unit(6, "feet")
  13093. },
  13094. {
  13095. name: "Macro",
  13096. height: math.unit(100, "feet"),
  13097. default: true
  13098. },
  13099. {
  13100. name: "Megamacro",
  13101. height: math.unit(10, "miles")
  13102. },
  13103. {
  13104. name: "Gigamacro",
  13105. height: math.unit(25000, "miles")
  13106. },
  13107. {
  13108. name: "Teramacro",
  13109. height: math.unit(300, "AU")
  13110. },
  13111. {
  13112. name: "Full Size",
  13113. height: math.unit(4.5e10, "lightyears")
  13114. },
  13115. ]
  13116. ))
  13117. characterMakers.push(() => makeCharacter(
  13118. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13119. {
  13120. front: {
  13121. height: math.unit(6, "feet"),
  13122. weight: math.unit(150, "lb"),
  13123. name: "Front",
  13124. image: {
  13125. source: "./media/characters/holly/front.svg",
  13126. extra: 639 / 606
  13127. }
  13128. },
  13129. back: {
  13130. height: math.unit(6, "feet"),
  13131. weight: math.unit(150, "lb"),
  13132. name: "Back",
  13133. image: {
  13134. source: "./media/characters/holly/back.svg",
  13135. extra: 623 / 598
  13136. }
  13137. },
  13138. frontWorking: {
  13139. height: math.unit(6, "feet"),
  13140. weight: math.unit(150, "lb"),
  13141. name: "Front (Working)",
  13142. image: {
  13143. source: "./media/characters/holly/front-working.svg",
  13144. extra: 607 / 577,
  13145. bottom: 0.048
  13146. }
  13147. },
  13148. },
  13149. [
  13150. {
  13151. name: "Normal",
  13152. height: math.unit(12 + 3 / 12, "feet"),
  13153. default: true
  13154. },
  13155. ]
  13156. ))
  13157. characterMakers.push(() => makeCharacter(
  13158. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13159. {
  13160. front: {
  13161. height: math.unit(6, "feet"),
  13162. weight: math.unit(150, "lb"),
  13163. name: "Front",
  13164. image: {
  13165. source: "./media/characters/porter/front.svg",
  13166. extra: 1,
  13167. bottom: 0.01
  13168. }
  13169. },
  13170. frontRobes: {
  13171. height: math.unit(6, "feet"),
  13172. weight: math.unit(150, "lb"),
  13173. name: "Front (Robes)",
  13174. image: {
  13175. source: "./media/characters/porter/front-robes.svg",
  13176. extra: 1.01,
  13177. bottom: 0.01
  13178. }
  13179. },
  13180. },
  13181. [
  13182. {
  13183. name: "Normal",
  13184. height: math.unit(11 + 9 / 12, "feet"),
  13185. default: true
  13186. },
  13187. ]
  13188. ))
  13189. characterMakers.push(() => makeCharacter(
  13190. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13191. {
  13192. legendary: {
  13193. height: math.unit(6, "feet"),
  13194. weight: math.unit(150, "lb"),
  13195. name: "Legendary",
  13196. image: {
  13197. source: "./media/characters/lucy/legendary.svg",
  13198. extra: 1355 / 1100,
  13199. bottom: 0.045
  13200. }
  13201. },
  13202. },
  13203. [
  13204. {
  13205. name: "Legendary",
  13206. height: math.unit(86882 * 2, "miles"),
  13207. default: true
  13208. },
  13209. ]
  13210. ))
  13211. characterMakers.push(() => makeCharacter(
  13212. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13213. {
  13214. front: {
  13215. height: math.unit(6, "feet"),
  13216. weight: math.unit(150, "lb"),
  13217. name: "Front",
  13218. image: {
  13219. source: "./media/characters/drusilla/front.svg",
  13220. extra: 678 / 635,
  13221. bottom: 0.03
  13222. }
  13223. },
  13224. back: {
  13225. height: math.unit(6, "feet"),
  13226. weight: math.unit(150, "lb"),
  13227. name: "Back",
  13228. image: {
  13229. source: "./media/characters/drusilla/back.svg",
  13230. extra: 678 / 635,
  13231. bottom: 0.005
  13232. }
  13233. },
  13234. },
  13235. [
  13236. {
  13237. name: "Macro",
  13238. height: math.unit(100, "feet")
  13239. },
  13240. {
  13241. name: "Canon Height",
  13242. height: math.unit(2000, "feet"),
  13243. default: true
  13244. },
  13245. ]
  13246. ))
  13247. characterMakers.push(() => makeCharacter(
  13248. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13249. {
  13250. front: {
  13251. height: math.unit(6, "feet"),
  13252. weight: math.unit(180, "lb"),
  13253. name: "Front",
  13254. image: {
  13255. source: "./media/characters/renard-thatch/front.svg",
  13256. extra: 2411 / 2275,
  13257. bottom: 0.01
  13258. }
  13259. },
  13260. frontPosing: {
  13261. height: math.unit(6, "feet"),
  13262. weight: math.unit(180, "lb"),
  13263. name: "Front (Posing)",
  13264. image: {
  13265. source: "./media/characters/renard-thatch/front-posing.svg",
  13266. extra: 2381 / 2261,
  13267. bottom: 0.01
  13268. }
  13269. },
  13270. back: {
  13271. height: math.unit(6, "feet"),
  13272. weight: math.unit(180, "lb"),
  13273. name: "Back",
  13274. image: {
  13275. source: "./media/characters/renard-thatch/back.svg",
  13276. extra: 2428 / 2288
  13277. }
  13278. },
  13279. },
  13280. [
  13281. {
  13282. name: "Micro",
  13283. height: math.unit(3, "inches")
  13284. },
  13285. {
  13286. name: "Default",
  13287. height: math.unit(6, "feet"),
  13288. default: true
  13289. },
  13290. {
  13291. name: "Macro",
  13292. height: math.unit(75, "feet")
  13293. },
  13294. ]
  13295. ))
  13296. characterMakers.push(() => makeCharacter(
  13297. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13298. {
  13299. front: {
  13300. height: math.unit(1450, "feet"),
  13301. weight: math.unit(1.21e6, "tons"),
  13302. name: "Front",
  13303. image: {
  13304. source: "./media/characters/sekvra/front.svg",
  13305. extra: 1,
  13306. bottom: 0.03
  13307. }
  13308. },
  13309. frontClothed: {
  13310. height: math.unit(1450, "feet"),
  13311. weight: math.unit(1.21e6, "tons"),
  13312. name: "Front (Clothed)",
  13313. image: {
  13314. source: "./media/characters/sekvra/front-clothed.svg",
  13315. extra: 1,
  13316. bottom: 0.03
  13317. }
  13318. },
  13319. side: {
  13320. height: math.unit(1450, "feet"),
  13321. weight: math.unit(1.21e6, "tons"),
  13322. name: "Side",
  13323. image: {
  13324. source: "./media/characters/sekvra/side.svg",
  13325. extra: 1,
  13326. bottom: 0.025
  13327. }
  13328. },
  13329. back: {
  13330. height: math.unit(1450, "feet"),
  13331. weight: math.unit(1.21e6, "tons"),
  13332. name: "Back",
  13333. image: {
  13334. source: "./media/characters/sekvra/back.svg",
  13335. extra: 1,
  13336. bottom: 0.005
  13337. }
  13338. },
  13339. },
  13340. [
  13341. {
  13342. name: "Macro",
  13343. height: math.unit(1450, "feet"),
  13344. default: true
  13345. },
  13346. {
  13347. name: "Megamacro",
  13348. height: math.unit(15000, "feet")
  13349. },
  13350. ]
  13351. ))
  13352. characterMakers.push(() => makeCharacter(
  13353. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13354. {
  13355. front: {
  13356. height: math.unit(6, "feet"),
  13357. weight: math.unit(150, "lb"),
  13358. name: "Front",
  13359. image: {
  13360. source: "./media/characters/carmine/front.svg",
  13361. extra: 1,
  13362. bottom: 0.035
  13363. }
  13364. },
  13365. frontArmor: {
  13366. height: math.unit(6, "feet"),
  13367. weight: math.unit(150, "lb"),
  13368. name: "Front (Armor)",
  13369. image: {
  13370. source: "./media/characters/carmine/front-armor.svg",
  13371. extra: 1,
  13372. bottom: 0.035
  13373. }
  13374. },
  13375. },
  13376. [
  13377. {
  13378. name: "Large",
  13379. height: math.unit(1, "mile")
  13380. },
  13381. {
  13382. name: "Huge",
  13383. height: math.unit(40, "miles"),
  13384. default: true
  13385. },
  13386. {
  13387. name: "Colossal",
  13388. height: math.unit(2500, "miles")
  13389. },
  13390. ]
  13391. ))
  13392. characterMakers.push(() => makeCharacter(
  13393. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13394. {
  13395. front: {
  13396. height: math.unit(6, "feet"),
  13397. weight: math.unit(150, "lb"),
  13398. name: "Front",
  13399. image: {
  13400. source: "./media/characters/elyssia/front.svg",
  13401. extra: 2201 / 2035,
  13402. bottom: 0.05
  13403. }
  13404. },
  13405. frontClothed: {
  13406. height: math.unit(6, "feet"),
  13407. weight: math.unit(150, "lb"),
  13408. name: "Front (Clothed)",
  13409. image: {
  13410. source: "./media/characters/elyssia/front-clothed.svg",
  13411. extra: 2201 / 2035,
  13412. bottom: 0.05
  13413. }
  13414. },
  13415. back: {
  13416. height: math.unit(6, "feet"),
  13417. weight: math.unit(150, "lb"),
  13418. name: "Back",
  13419. image: {
  13420. source: "./media/characters/elyssia/back.svg",
  13421. extra: 2201 / 2035,
  13422. bottom: 0.013
  13423. }
  13424. },
  13425. },
  13426. [
  13427. {
  13428. name: "Smaller",
  13429. height: math.unit(150, "feet")
  13430. },
  13431. {
  13432. name: "Standard",
  13433. height: math.unit(1400, "feet"),
  13434. default: true
  13435. },
  13436. {
  13437. name: "Distracted",
  13438. height: math.unit(15000, "feet")
  13439. },
  13440. ]
  13441. ))
  13442. characterMakers.push(() => makeCharacter(
  13443. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13444. {
  13445. front: {
  13446. height: math.unit(7 + 4 / 12, "feet"),
  13447. weight: math.unit(500, "lb"),
  13448. name: "Front",
  13449. image: {
  13450. source: "./media/characters/geno-maxwell/front.svg",
  13451. extra: 2207 / 2040,
  13452. bottom: 0.015
  13453. }
  13454. },
  13455. },
  13456. [
  13457. {
  13458. name: "Micro",
  13459. height: math.unit(3, "inches")
  13460. },
  13461. {
  13462. name: "Normal",
  13463. height: math.unit(7 + 4 / 12, "feet"),
  13464. default: true
  13465. },
  13466. {
  13467. name: "Macro",
  13468. height: math.unit(220, "feet")
  13469. },
  13470. {
  13471. name: "Megamacro",
  13472. height: math.unit(11, "miles")
  13473. },
  13474. ]
  13475. ))
  13476. characterMakers.push(() => makeCharacter(
  13477. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13478. {
  13479. front: {
  13480. height: math.unit(7 + 4 / 12, "feet"),
  13481. weight: math.unit(500, "lb"),
  13482. name: "Front",
  13483. image: {
  13484. source: "./media/characters/regena-maxwell/front.svg",
  13485. extra: 3115 / 2770,
  13486. bottom: 0.02
  13487. }
  13488. },
  13489. },
  13490. [
  13491. {
  13492. name: "Normal",
  13493. height: math.unit(7 + 4 / 12, "feet"),
  13494. default: true
  13495. },
  13496. {
  13497. name: "Macro",
  13498. height: math.unit(220, "feet")
  13499. },
  13500. {
  13501. name: "Megamacro",
  13502. height: math.unit(11, "miles")
  13503. },
  13504. ]
  13505. ))
  13506. characterMakers.push(() => makeCharacter(
  13507. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13508. {
  13509. front: {
  13510. height: math.unit(6, "feet"),
  13511. weight: math.unit(150, "lb"),
  13512. name: "Front",
  13513. image: {
  13514. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13515. extra: 860 / 690,
  13516. bottom: 0.03
  13517. }
  13518. },
  13519. },
  13520. [
  13521. {
  13522. name: "Normal",
  13523. height: math.unit(1.7, "meters"),
  13524. default: true
  13525. },
  13526. ]
  13527. ))
  13528. characterMakers.push(() => makeCharacter(
  13529. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13530. {
  13531. front: {
  13532. height: math.unit(6, "feet"),
  13533. weight: math.unit(150, "lb"),
  13534. name: "Front",
  13535. image: {
  13536. source: "./media/characters/quilly/front.svg",
  13537. extra: 890 / 776
  13538. }
  13539. },
  13540. },
  13541. [
  13542. {
  13543. name: "Gigamacro",
  13544. height: math.unit(404090, "miles"),
  13545. default: true
  13546. },
  13547. ]
  13548. ))
  13549. characterMakers.push(() => makeCharacter(
  13550. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13551. {
  13552. front: {
  13553. height: math.unit(7 + 8 / 12, "feet"),
  13554. weight: math.unit(350, "lb"),
  13555. name: "Front",
  13556. image: {
  13557. source: "./media/characters/tempest/front.svg",
  13558. extra: 1175 / 1086,
  13559. bottom: 0.02
  13560. }
  13561. },
  13562. },
  13563. [
  13564. {
  13565. name: "Normal",
  13566. height: math.unit(7 + 8 / 12, "feet"),
  13567. default: true
  13568. },
  13569. ]
  13570. ))
  13571. characterMakers.push(() => makeCharacter(
  13572. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13573. {
  13574. side: {
  13575. height: math.unit(4 + 5 / 12, "feet"),
  13576. weight: math.unit(80, "lb"),
  13577. name: "Side",
  13578. image: {
  13579. source: "./media/characters/rodger/side.svg",
  13580. extra: 1235 / 1118
  13581. }
  13582. },
  13583. },
  13584. [
  13585. {
  13586. name: "Micro",
  13587. height: math.unit(1, "inch")
  13588. },
  13589. {
  13590. name: "Normal",
  13591. height: math.unit(4 + 5 / 12, "feet"),
  13592. default: true
  13593. },
  13594. {
  13595. name: "Macro",
  13596. height: math.unit(120, "feet")
  13597. },
  13598. ]
  13599. ))
  13600. characterMakers.push(() => makeCharacter(
  13601. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13602. {
  13603. front: {
  13604. height: math.unit(6, "feet"),
  13605. weight: math.unit(150, "lb"),
  13606. name: "Front",
  13607. image: {
  13608. source: "./media/characters/danyel/front.svg",
  13609. extra: 1185 / 1123,
  13610. bottom: 0.05
  13611. }
  13612. },
  13613. },
  13614. [
  13615. {
  13616. name: "Shrunken",
  13617. height: math.unit(0.5, "mm")
  13618. },
  13619. {
  13620. name: "Micro",
  13621. height: math.unit(1, "mm"),
  13622. default: true
  13623. },
  13624. {
  13625. name: "Upsized",
  13626. height: math.unit(5 + 5 / 12, "feet")
  13627. },
  13628. ]
  13629. ))
  13630. characterMakers.push(() => makeCharacter(
  13631. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13632. {
  13633. front: {
  13634. height: math.unit(5 + 6 / 12, "feet"),
  13635. weight: math.unit(200, "lb"),
  13636. name: "Front",
  13637. image: {
  13638. source: "./media/characters/vivian-bijoux/front.svg",
  13639. extra: 1,
  13640. bottom: 0.072
  13641. }
  13642. },
  13643. },
  13644. [
  13645. {
  13646. name: "Normal",
  13647. height: math.unit(5 + 6 / 12, "feet"),
  13648. default: true
  13649. },
  13650. {
  13651. name: "Bad Dream",
  13652. height: math.unit(500, "feet")
  13653. },
  13654. {
  13655. name: "Nightmare",
  13656. height: math.unit(500, "miles")
  13657. },
  13658. ]
  13659. ))
  13660. characterMakers.push(() => makeCharacter(
  13661. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13662. {
  13663. front: {
  13664. height: math.unit(6 + 1 / 12, "feet"),
  13665. weight: math.unit(260, "lb"),
  13666. name: "Front",
  13667. image: {
  13668. source: "./media/characters/zeta/front.svg",
  13669. extra: 1968 / 1889,
  13670. bottom: 0.06
  13671. }
  13672. },
  13673. back: {
  13674. height: math.unit(6 + 1 / 12, "feet"),
  13675. weight: math.unit(260, "lb"),
  13676. name: "Back",
  13677. image: {
  13678. source: "./media/characters/zeta/back.svg",
  13679. extra: 1944 / 1858,
  13680. bottom: 0.03
  13681. }
  13682. },
  13683. hand: {
  13684. height: math.unit(1.112, "feet"),
  13685. name: "Hand",
  13686. image: {
  13687. source: "./media/characters/zeta/hand.svg"
  13688. }
  13689. },
  13690. foot: {
  13691. height: math.unit(1.48, "feet"),
  13692. name: "Foot",
  13693. image: {
  13694. source: "./media/characters/zeta/foot.svg"
  13695. }
  13696. },
  13697. },
  13698. [
  13699. {
  13700. name: "Micro",
  13701. height: math.unit(6, "inches")
  13702. },
  13703. {
  13704. name: "Normal",
  13705. height: math.unit(6 + 1 / 12, "feet"),
  13706. default: true
  13707. },
  13708. {
  13709. name: "Macro",
  13710. height: math.unit(20, "feet")
  13711. },
  13712. ]
  13713. ))
  13714. characterMakers.push(() => makeCharacter(
  13715. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13716. {
  13717. front: {
  13718. height: math.unit(6, "feet"),
  13719. weight: math.unit(150, "lb"),
  13720. name: "Front",
  13721. image: {
  13722. source: "./media/characters/jamie-larsen/front.svg",
  13723. extra: 962 / 933,
  13724. bottom: 0.02
  13725. }
  13726. },
  13727. back: {
  13728. height: math.unit(6, "feet"),
  13729. weight: math.unit(150, "lb"),
  13730. name: "Back",
  13731. image: {
  13732. source: "./media/characters/jamie-larsen/back.svg",
  13733. extra: 997 / 946
  13734. }
  13735. },
  13736. },
  13737. [
  13738. {
  13739. name: "Macro",
  13740. height: math.unit(28 + 7 / 12, "feet"),
  13741. default: true
  13742. },
  13743. {
  13744. name: "Macro+",
  13745. height: math.unit(180, "feet")
  13746. },
  13747. {
  13748. name: "Megamacro",
  13749. height: math.unit(10, "miles")
  13750. },
  13751. {
  13752. name: "Gigamacro",
  13753. height: math.unit(200000, "miles")
  13754. },
  13755. ]
  13756. ))
  13757. characterMakers.push(() => makeCharacter(
  13758. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13759. {
  13760. front: {
  13761. height: math.unit(6, "feet"),
  13762. weight: math.unit(120, "lb"),
  13763. name: "Front",
  13764. image: {
  13765. source: "./media/characters/vance/front.svg",
  13766. extra: 1980 / 1890,
  13767. bottom: 0.09
  13768. }
  13769. },
  13770. back: {
  13771. height: math.unit(6, "feet"),
  13772. weight: math.unit(120, "lb"),
  13773. name: "Back",
  13774. image: {
  13775. source: "./media/characters/vance/back.svg",
  13776. extra: 2081 / 1994,
  13777. bottom: 0.014
  13778. }
  13779. },
  13780. hand: {
  13781. height: math.unit(0.88, "feet"),
  13782. name: "Hand",
  13783. image: {
  13784. source: "./media/characters/vance/hand.svg"
  13785. }
  13786. },
  13787. foot: {
  13788. height: math.unit(0.64, "feet"),
  13789. name: "Foot",
  13790. image: {
  13791. source: "./media/characters/vance/foot.svg"
  13792. }
  13793. },
  13794. },
  13795. [
  13796. {
  13797. name: "Small",
  13798. height: math.unit(90, "feet"),
  13799. default: true
  13800. },
  13801. {
  13802. name: "Macro",
  13803. height: math.unit(100, "meters")
  13804. },
  13805. {
  13806. name: "Megamacro",
  13807. height: math.unit(15, "miles")
  13808. },
  13809. ]
  13810. ))
  13811. characterMakers.push(() => makeCharacter(
  13812. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13813. {
  13814. front: {
  13815. height: math.unit(6, "feet"),
  13816. weight: math.unit(180, "lb"),
  13817. name: "Front",
  13818. image: {
  13819. source: "./media/characters/xochitl/front.svg",
  13820. extra: 2297 / 2261,
  13821. bottom: 0.065
  13822. }
  13823. },
  13824. back: {
  13825. height: math.unit(6, "feet"),
  13826. weight: math.unit(180, "lb"),
  13827. name: "Back",
  13828. image: {
  13829. source: "./media/characters/xochitl/back.svg",
  13830. extra: 2386 / 2354,
  13831. bottom: 0.01
  13832. }
  13833. },
  13834. foot: {
  13835. height: math.unit(6 / 5 * 1.15, "feet"),
  13836. weight: math.unit(150, "lb"),
  13837. name: "Foot",
  13838. image: {
  13839. source: "./media/characters/xochitl/foot.svg"
  13840. }
  13841. },
  13842. },
  13843. [
  13844. {
  13845. name: "Macro",
  13846. height: math.unit(80, "feet")
  13847. },
  13848. {
  13849. name: "Macro+",
  13850. height: math.unit(400, "feet"),
  13851. default: true
  13852. },
  13853. {
  13854. name: "Gigamacro",
  13855. height: math.unit(80000, "miles")
  13856. },
  13857. {
  13858. name: "Gigamacro+",
  13859. height: math.unit(400000, "miles")
  13860. },
  13861. {
  13862. name: "Teramacro",
  13863. height: math.unit(300, "AU")
  13864. },
  13865. ]
  13866. ))
  13867. characterMakers.push(() => makeCharacter(
  13868. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13869. {
  13870. front: {
  13871. height: math.unit(6, "feet"),
  13872. weight: math.unit(150, "lb"),
  13873. name: "Front",
  13874. image: {
  13875. source: "./media/characters/vincent/front.svg",
  13876. extra: 1130 / 1080,
  13877. bottom: 0.055
  13878. }
  13879. },
  13880. beak: {
  13881. height: math.unit(6 * 0.1, "feet"),
  13882. name: "Beak",
  13883. image: {
  13884. source: "./media/characters/vincent/beak.svg"
  13885. }
  13886. },
  13887. hand: {
  13888. height: math.unit(6 * 0.85, "feet"),
  13889. weight: math.unit(150, "lb"),
  13890. name: "Hand",
  13891. image: {
  13892. source: "./media/characters/vincent/hand.svg"
  13893. }
  13894. },
  13895. foot: {
  13896. height: math.unit(6 * 0.19, "feet"),
  13897. weight: math.unit(150, "lb"),
  13898. name: "Foot",
  13899. image: {
  13900. source: "./media/characters/vincent/foot.svg"
  13901. }
  13902. },
  13903. },
  13904. [
  13905. {
  13906. name: "Base",
  13907. height: math.unit(6 + 5 / 12, "feet"),
  13908. default: true
  13909. },
  13910. {
  13911. name: "Macro",
  13912. height: math.unit(300, "feet")
  13913. },
  13914. {
  13915. name: "Megamacro",
  13916. height: math.unit(2, "miles")
  13917. },
  13918. {
  13919. name: "Gigamacro",
  13920. height: math.unit(1000, "miles")
  13921. },
  13922. ]
  13923. ))
  13924. characterMakers.push(() => makeCharacter(
  13925. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13926. {
  13927. front: {
  13928. height: math.unit(2, "meters"),
  13929. weight: math.unit(500, "kg"),
  13930. name: "Front",
  13931. image: {
  13932. source: "./media/characters/coatl/front.svg",
  13933. extra: 3948 / 3500,
  13934. bottom: 0.082
  13935. }
  13936. },
  13937. },
  13938. [
  13939. {
  13940. name: "Normal",
  13941. height: math.unit(4, "meters")
  13942. },
  13943. {
  13944. name: "Macro",
  13945. height: math.unit(100, "meters"),
  13946. default: true
  13947. },
  13948. {
  13949. name: "Macro+",
  13950. height: math.unit(300, "meters")
  13951. },
  13952. {
  13953. name: "Megamacro",
  13954. height: math.unit(3, "gigameters")
  13955. },
  13956. {
  13957. name: "Megamacro+",
  13958. height: math.unit(300, "terameters")
  13959. },
  13960. {
  13961. name: "Megamacro++",
  13962. height: math.unit(3, "lightyears")
  13963. },
  13964. ]
  13965. ))
  13966. characterMakers.push(() => makeCharacter(
  13967. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13968. {
  13969. front: {
  13970. height: math.unit(6, "feet"),
  13971. weight: math.unit(50, "kg"),
  13972. name: "front",
  13973. image: {
  13974. source: "./media/characters/shiroryu/front.svg",
  13975. extra: 1990 / 1935
  13976. }
  13977. },
  13978. },
  13979. [
  13980. {
  13981. name: "Mortal Mingling",
  13982. height: math.unit(3, "meters")
  13983. },
  13984. {
  13985. name: "Kaiju-ish",
  13986. height: math.unit(250, "meters")
  13987. },
  13988. {
  13989. name: "Somewhat Godly",
  13990. height: math.unit(400, "km"),
  13991. default: true
  13992. },
  13993. {
  13994. name: "Planetary",
  13995. height: math.unit(300, "megameters")
  13996. },
  13997. {
  13998. name: "Galaxy-dwarfing",
  13999. height: math.unit(450, "kiloparsecs")
  14000. },
  14001. {
  14002. name: "Universe Eater",
  14003. height: math.unit(150, "gigaparsecs")
  14004. },
  14005. {
  14006. name: "Almost Immeasurable",
  14007. height: math.unit(1.3e266, "yottaparsecs")
  14008. },
  14009. ]
  14010. ))
  14011. characterMakers.push(() => makeCharacter(
  14012. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14013. {
  14014. front: {
  14015. height: math.unit(6, "feet"),
  14016. weight: math.unit(150, "lb"),
  14017. name: "Front",
  14018. image: {
  14019. source: "./media/characters/umeko/front.svg",
  14020. extra: 1,
  14021. bottom: 0.019
  14022. }
  14023. },
  14024. frontArmored: {
  14025. height: math.unit(6, "feet"),
  14026. weight: math.unit(150, "lb"),
  14027. name: "Front (Armored)",
  14028. image: {
  14029. source: "./media/characters/umeko/front-armored.svg",
  14030. extra: 1,
  14031. bottom: 0.021
  14032. }
  14033. },
  14034. },
  14035. [
  14036. {
  14037. name: "Macro",
  14038. height: math.unit(220, "feet"),
  14039. default: true
  14040. },
  14041. {
  14042. name: "Guardian Dragon",
  14043. height: math.unit(50, "miles")
  14044. },
  14045. {
  14046. name: "Cosmic",
  14047. height: math.unit(800000, "miles")
  14048. },
  14049. ]
  14050. ))
  14051. characterMakers.push(() => makeCharacter(
  14052. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14053. {
  14054. front: {
  14055. height: math.unit(6, "feet"),
  14056. weight: math.unit(150, "lb"),
  14057. name: "Front",
  14058. image: {
  14059. source: "./media/characters/cassidy/front.svg",
  14060. extra: 1,
  14061. bottom: 0.043
  14062. }
  14063. },
  14064. },
  14065. [
  14066. {
  14067. name: "Canon Height",
  14068. height: math.unit(120, "feet"),
  14069. default: true
  14070. },
  14071. {
  14072. name: "Macro+",
  14073. height: math.unit(400, "feet")
  14074. },
  14075. {
  14076. name: "Macro++",
  14077. height: math.unit(4000, "feet")
  14078. },
  14079. {
  14080. name: "Megamacro",
  14081. height: math.unit(3, "miles")
  14082. },
  14083. ]
  14084. ))
  14085. characterMakers.push(() => makeCharacter(
  14086. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14087. {
  14088. front: {
  14089. height: math.unit(6, "feet"),
  14090. weight: math.unit(150, "lb"),
  14091. name: "Front",
  14092. image: {
  14093. source: "./media/characters/isaac/front.svg",
  14094. extra: 896 / 815,
  14095. bottom: 0.11
  14096. }
  14097. },
  14098. },
  14099. [
  14100. {
  14101. name: "Human Size",
  14102. height: math.unit(8, "feet"),
  14103. default: true
  14104. },
  14105. {
  14106. name: "Macro",
  14107. height: math.unit(400, "feet")
  14108. },
  14109. {
  14110. name: "Megamacro",
  14111. height: math.unit(50, "miles")
  14112. },
  14113. {
  14114. name: "Canon Height",
  14115. height: math.unit(200, "AU")
  14116. },
  14117. ]
  14118. ))
  14119. characterMakers.push(() => makeCharacter(
  14120. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14121. {
  14122. front: {
  14123. height: math.unit(6, "feet"),
  14124. weight: math.unit(72, "kg"),
  14125. name: "Front",
  14126. image: {
  14127. source: "./media/characters/sleekit/front.svg",
  14128. extra: 4693 / 4487,
  14129. bottom: 0.012
  14130. }
  14131. },
  14132. },
  14133. [
  14134. {
  14135. name: "Minimum Height",
  14136. height: math.unit(10, "meters")
  14137. },
  14138. {
  14139. name: "Smaller",
  14140. height: math.unit(25, "meters")
  14141. },
  14142. {
  14143. name: "Larger",
  14144. height: math.unit(38, "meters"),
  14145. default: true
  14146. },
  14147. {
  14148. name: "Maximum height",
  14149. height: math.unit(100, "meters")
  14150. },
  14151. ]
  14152. ))
  14153. characterMakers.push(() => makeCharacter(
  14154. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14155. {
  14156. front: {
  14157. height: math.unit(6, "feet"),
  14158. weight: math.unit(150, "lb"),
  14159. name: "Front",
  14160. image: {
  14161. source: "./media/characters/nillia/front.svg",
  14162. extra: 2195 / 2037,
  14163. bottom: 0.005
  14164. }
  14165. },
  14166. back: {
  14167. height: math.unit(6, "feet"),
  14168. weight: math.unit(150, "lb"),
  14169. name: "Back",
  14170. image: {
  14171. source: "./media/characters/nillia/back.svg",
  14172. extra: 2195 / 2037,
  14173. bottom: 0.005
  14174. }
  14175. },
  14176. },
  14177. [
  14178. {
  14179. name: "Canon Height",
  14180. height: math.unit(489, "feet"),
  14181. default: true
  14182. }
  14183. ]
  14184. ))
  14185. characterMakers.push(() => makeCharacter(
  14186. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14187. {
  14188. front: {
  14189. height: math.unit(6, "feet"),
  14190. weight: math.unit(150, "lb"),
  14191. name: "Front",
  14192. image: {
  14193. source: "./media/characters/mesmyriza/front.svg",
  14194. extra: 2067 / 1784,
  14195. bottom: 0.035
  14196. }
  14197. },
  14198. foot: {
  14199. height: math.unit(6 / (250 / 35), "feet"),
  14200. name: "Foot",
  14201. image: {
  14202. source: "./media/characters/mesmyriza/foot.svg"
  14203. }
  14204. },
  14205. },
  14206. [
  14207. {
  14208. name: "Macro",
  14209. height: math.unit(457, "meters"),
  14210. default: true
  14211. },
  14212. {
  14213. name: "Megamacro",
  14214. height: math.unit(8, "megameters")
  14215. },
  14216. ]
  14217. ))
  14218. characterMakers.push(() => makeCharacter(
  14219. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14220. {
  14221. front: {
  14222. height: math.unit(6, "feet"),
  14223. weight: math.unit(250, "lb"),
  14224. name: "Front",
  14225. image: {
  14226. source: "./media/characters/saudade/front.svg",
  14227. extra: 1172 / 1139,
  14228. bottom: 0.035
  14229. }
  14230. },
  14231. },
  14232. [
  14233. {
  14234. name: "Micro",
  14235. height: math.unit(3, "inches")
  14236. },
  14237. {
  14238. name: "Normal",
  14239. height: math.unit(6, "feet"),
  14240. default: true
  14241. },
  14242. {
  14243. name: "Macro",
  14244. height: math.unit(50, "feet")
  14245. },
  14246. {
  14247. name: "Megamacro",
  14248. height: math.unit(2800, "feet")
  14249. },
  14250. ]
  14251. ))
  14252. characterMakers.push(() => makeCharacter(
  14253. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14254. {
  14255. front: {
  14256. height: math.unit(5 + 4 / 12, "feet"),
  14257. weight: math.unit(100, "lb"),
  14258. name: "Front",
  14259. image: {
  14260. source: "./media/characters/keireer/front.svg",
  14261. extra: 716 / 666,
  14262. bottom: 0.05
  14263. }
  14264. },
  14265. },
  14266. [
  14267. {
  14268. name: "Normal",
  14269. height: math.unit(5 + 4 / 12, "feet"),
  14270. default: true
  14271. },
  14272. ]
  14273. ))
  14274. characterMakers.push(() => makeCharacter(
  14275. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14276. {
  14277. front: {
  14278. height: math.unit(6, "feet"),
  14279. weight: math.unit(90, "kg"),
  14280. name: "Front",
  14281. image: {
  14282. source: "./media/characters/mirja/front.svg",
  14283. extra: 1789 / 1683,
  14284. bottom: 0.05
  14285. }
  14286. },
  14287. frontDressed: {
  14288. height: math.unit(6, "feet"),
  14289. weight: math.unit(90, "lb"),
  14290. name: "Front (Dressed)",
  14291. image: {
  14292. source: "./media/characters/mirja/front-dressed.svg",
  14293. extra: 1789 / 1683,
  14294. bottom: 0.05
  14295. }
  14296. },
  14297. back: {
  14298. height: math.unit(6, "feet"),
  14299. weight: math.unit(90, "lb"),
  14300. name: "Back",
  14301. image: {
  14302. source: "./media/characters/mirja/back.svg",
  14303. extra: 953 / 917,
  14304. bottom: 0.017
  14305. }
  14306. },
  14307. },
  14308. [
  14309. {
  14310. name: "\"Incognito\"",
  14311. height: math.unit(3, "meters")
  14312. },
  14313. {
  14314. name: "Strolling Size",
  14315. height: math.unit(15, "km")
  14316. },
  14317. {
  14318. name: "Larger Strolling Size",
  14319. height: math.unit(400, "km")
  14320. },
  14321. {
  14322. name: "Preferred Size",
  14323. height: math.unit(5000, "km")
  14324. },
  14325. {
  14326. name: "True Size",
  14327. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14328. default: true
  14329. },
  14330. ]
  14331. ))
  14332. characterMakers.push(() => makeCharacter(
  14333. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14334. {
  14335. front: {
  14336. height: math.unit(15, "feet"),
  14337. weight: math.unit(880, "kg"),
  14338. name: "Front",
  14339. image: {
  14340. source: "./media/characters/nightraver/front.svg",
  14341. extra: 2444 / 2160,
  14342. bottom: 0.027
  14343. }
  14344. },
  14345. back: {
  14346. height: math.unit(15, "feet"),
  14347. weight: math.unit(880, "kg"),
  14348. name: "Back",
  14349. image: {
  14350. source: "./media/characters/nightraver/back.svg",
  14351. extra: 2309 / 2180,
  14352. bottom: 0.005
  14353. }
  14354. },
  14355. sole: {
  14356. height: math.unit(2.878, "feet"),
  14357. name: "Sole",
  14358. image: {
  14359. source: "./media/characters/nightraver/sole.svg"
  14360. }
  14361. },
  14362. foot: {
  14363. height: math.unit(2.285, "feet"),
  14364. name: "Foot",
  14365. image: {
  14366. source: "./media/characters/nightraver/foot.svg"
  14367. }
  14368. },
  14369. maw: {
  14370. height: math.unit(2.67, "feet"),
  14371. name: "Maw",
  14372. image: {
  14373. source: "./media/characters/nightraver/maw.svg"
  14374. }
  14375. },
  14376. },
  14377. [
  14378. {
  14379. name: "Micro",
  14380. height: math.unit(1, "cm")
  14381. },
  14382. {
  14383. name: "Normal",
  14384. height: math.unit(15, "feet"),
  14385. default: true
  14386. },
  14387. {
  14388. name: "Macro",
  14389. height: math.unit(300, "feet")
  14390. },
  14391. {
  14392. name: "Megamacro",
  14393. height: math.unit(300, "miles")
  14394. },
  14395. {
  14396. name: "Gigamacro",
  14397. height: math.unit(10000, "miles")
  14398. },
  14399. ]
  14400. ))
  14401. characterMakers.push(() => makeCharacter(
  14402. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14403. {
  14404. side: {
  14405. height: math.unit(2, "inches"),
  14406. weight: math.unit(5, "grams"),
  14407. name: "Side",
  14408. image: {
  14409. source: "./media/characters/arc/side.svg"
  14410. }
  14411. },
  14412. },
  14413. [
  14414. {
  14415. name: "Micro",
  14416. height: math.unit(2, "inches"),
  14417. default: true
  14418. },
  14419. ]
  14420. ))
  14421. characterMakers.push(() => makeCharacter(
  14422. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14423. {
  14424. front: {
  14425. height: math.unit(1.1938, "meters"),
  14426. weight: math.unit(54, "kg"),
  14427. name: "Front",
  14428. image: {
  14429. source: "./media/characters/nebula-shahar/front.svg",
  14430. extra: 1642 / 1436,
  14431. bottom: 0.06
  14432. }
  14433. },
  14434. },
  14435. [
  14436. {
  14437. name: "Megamicro",
  14438. height: math.unit(0.3, "mm")
  14439. },
  14440. {
  14441. name: "Micro",
  14442. height: math.unit(3, "cm")
  14443. },
  14444. {
  14445. name: "Normal",
  14446. height: math.unit(138, "cm"),
  14447. default: true
  14448. },
  14449. {
  14450. name: "Macro",
  14451. height: math.unit(30, "m")
  14452. },
  14453. ]
  14454. ))
  14455. characterMakers.push(() => makeCharacter(
  14456. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14457. {
  14458. front: {
  14459. height: math.unit(5.24, "feet"),
  14460. weight: math.unit(150, "lb"),
  14461. name: "Front",
  14462. image: {
  14463. source: "./media/characters/shayla/front.svg",
  14464. extra: 1512 / 1414,
  14465. bottom: 0.01
  14466. }
  14467. },
  14468. back: {
  14469. height: math.unit(5.24, "feet"),
  14470. weight: math.unit(150, "lb"),
  14471. name: "Back",
  14472. image: {
  14473. source: "./media/characters/shayla/back.svg",
  14474. extra: 1512 / 1414
  14475. }
  14476. },
  14477. hand: {
  14478. height: math.unit(0.7781496062992126, "feet"),
  14479. name: "Hand",
  14480. image: {
  14481. source: "./media/characters/shayla/hand.svg"
  14482. }
  14483. },
  14484. foot: {
  14485. height: math.unit(1.4206036745406823, "feet"),
  14486. name: "Foot",
  14487. image: {
  14488. source: "./media/characters/shayla/foot.svg"
  14489. }
  14490. },
  14491. },
  14492. [
  14493. {
  14494. name: "Micro",
  14495. height: math.unit(0.32, "feet")
  14496. },
  14497. {
  14498. name: "Normal",
  14499. height: math.unit(5.24, "feet"),
  14500. default: true
  14501. },
  14502. {
  14503. name: "Macro",
  14504. height: math.unit(492.12, "feet")
  14505. },
  14506. {
  14507. name: "Megamacro",
  14508. height: math.unit(186.41, "miles")
  14509. },
  14510. ]
  14511. ))
  14512. characterMakers.push(() => makeCharacter(
  14513. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14514. {
  14515. front: {
  14516. height: math.unit(2.2, "m"),
  14517. weight: math.unit(120, "kg"),
  14518. name: "Front",
  14519. image: {
  14520. source: "./media/characters/pia-jr/front.svg",
  14521. extra: 1000 / 970,
  14522. bottom: 0.035
  14523. }
  14524. },
  14525. hand: {
  14526. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14527. name: "Hand",
  14528. image: {
  14529. source: "./media/characters/pia-jr/hand.svg"
  14530. }
  14531. },
  14532. paw: {
  14533. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14534. name: "Paw",
  14535. image: {
  14536. source: "./media/characters/pia-jr/paw.svg"
  14537. }
  14538. },
  14539. },
  14540. [
  14541. {
  14542. name: "Micro",
  14543. height: math.unit(1.2, "cm")
  14544. },
  14545. {
  14546. name: "Normal",
  14547. height: math.unit(2.2, "m"),
  14548. default: true
  14549. },
  14550. {
  14551. name: "Macro",
  14552. height: math.unit(180, "m")
  14553. },
  14554. {
  14555. name: "Megamacro",
  14556. height: math.unit(420, "km")
  14557. },
  14558. ]
  14559. ))
  14560. characterMakers.push(() => makeCharacter(
  14561. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14562. {
  14563. front: {
  14564. height: math.unit(2, "m"),
  14565. weight: math.unit(115, "kg"),
  14566. name: "Front",
  14567. image: {
  14568. source: "./media/characters/pia-sr/front.svg",
  14569. extra: 760 / 730,
  14570. bottom: 0.015
  14571. }
  14572. },
  14573. back: {
  14574. height: math.unit(2, "m"),
  14575. weight: math.unit(115, "kg"),
  14576. name: "Back",
  14577. image: {
  14578. source: "./media/characters/pia-sr/back.svg",
  14579. extra: 760 / 730,
  14580. bottom: 0.01
  14581. }
  14582. },
  14583. hand: {
  14584. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14585. name: "Hand",
  14586. image: {
  14587. source: "./media/characters/pia-sr/hand.svg"
  14588. }
  14589. },
  14590. foot: {
  14591. height: math.unit(1.83, "feet"),
  14592. name: "Foot",
  14593. image: {
  14594. source: "./media/characters/pia-sr/foot.svg"
  14595. }
  14596. },
  14597. },
  14598. [
  14599. {
  14600. name: "Micro",
  14601. height: math.unit(88, "mm")
  14602. },
  14603. {
  14604. name: "Normal",
  14605. height: math.unit(2, "m"),
  14606. default: true
  14607. },
  14608. {
  14609. name: "Macro",
  14610. height: math.unit(200, "m")
  14611. },
  14612. {
  14613. name: "Megamacro",
  14614. height: math.unit(420, "km")
  14615. },
  14616. ]
  14617. ))
  14618. characterMakers.push(() => makeCharacter(
  14619. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14620. {
  14621. front: {
  14622. height: math.unit(8 + 2 / 12, "feet"),
  14623. weight: math.unit(300, "lb"),
  14624. name: "Front",
  14625. image: {
  14626. source: "./media/characters/kibibyte/front.svg",
  14627. extra: 2221 / 2098,
  14628. bottom: 0.04
  14629. }
  14630. },
  14631. },
  14632. [
  14633. {
  14634. name: "Normal",
  14635. height: math.unit(8 + 2 / 12, "feet"),
  14636. default: true
  14637. },
  14638. {
  14639. name: "Socialable Macro",
  14640. height: math.unit(50, "feet")
  14641. },
  14642. {
  14643. name: "Macro",
  14644. height: math.unit(300, "feet")
  14645. },
  14646. {
  14647. name: "Megamacro",
  14648. height: math.unit(500, "miles")
  14649. },
  14650. ]
  14651. ))
  14652. characterMakers.push(() => makeCharacter(
  14653. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14654. {
  14655. front: {
  14656. height: math.unit(6, "feet"),
  14657. weight: math.unit(150, "lb"),
  14658. name: "Front",
  14659. image: {
  14660. source: "./media/characters/felix/front.svg",
  14661. extra: 762 / 722,
  14662. bottom: 0.02
  14663. }
  14664. },
  14665. frontClothed: {
  14666. height: math.unit(6, "feet"),
  14667. weight: math.unit(150, "lb"),
  14668. name: "Front (Clothed)",
  14669. image: {
  14670. source: "./media/characters/felix/front-clothed.svg",
  14671. extra: 762 / 722,
  14672. bottom: 0.02
  14673. }
  14674. },
  14675. },
  14676. [
  14677. {
  14678. name: "Normal",
  14679. height: math.unit(6 + 8 / 12, "feet"),
  14680. default: true
  14681. },
  14682. {
  14683. name: "Macro",
  14684. height: math.unit(2600, "feet")
  14685. },
  14686. {
  14687. name: "Megamacro",
  14688. height: math.unit(450, "miles")
  14689. },
  14690. ]
  14691. ))
  14692. characterMakers.push(() => makeCharacter(
  14693. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14694. {
  14695. front: {
  14696. height: math.unit(6 + 1 / 12, "feet"),
  14697. weight: math.unit(250, "lb"),
  14698. name: "Front",
  14699. image: {
  14700. source: "./media/characters/tobo/front.svg",
  14701. extra: 608 / 586,
  14702. bottom: 0.023
  14703. }
  14704. },
  14705. back: {
  14706. height: math.unit(6 + 1 / 12, "feet"),
  14707. weight: math.unit(250, "lb"),
  14708. name: "Back",
  14709. image: {
  14710. source: "./media/characters/tobo/back.svg",
  14711. extra: 608 / 586
  14712. }
  14713. },
  14714. },
  14715. [
  14716. {
  14717. name: "Nano",
  14718. height: math.unit(2, "nm")
  14719. },
  14720. {
  14721. name: "Megamicro",
  14722. height: math.unit(0.1, "mm")
  14723. },
  14724. {
  14725. name: "Micro",
  14726. height: math.unit(1, "inch"),
  14727. default: true
  14728. },
  14729. {
  14730. name: "Human-sized",
  14731. height: math.unit(6 + 1 / 12, "feet")
  14732. },
  14733. {
  14734. name: "Macro",
  14735. height: math.unit(250, "feet")
  14736. },
  14737. {
  14738. name: "Megamacro",
  14739. height: math.unit(75, "miles")
  14740. },
  14741. {
  14742. name: "Texas-sized",
  14743. height: math.unit(750, "miles")
  14744. },
  14745. {
  14746. name: "Teramacro",
  14747. height: math.unit(50000, "miles")
  14748. },
  14749. ]
  14750. ))
  14751. characterMakers.push(() => makeCharacter(
  14752. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14753. {
  14754. front: {
  14755. height: math.unit(6, "feet"),
  14756. weight: math.unit(269, "lb"),
  14757. name: "Front",
  14758. image: {
  14759. source: "./media/characters/danny-kapowsky/front.svg",
  14760. extra: 766 / 736,
  14761. bottom: 0.044
  14762. }
  14763. },
  14764. back: {
  14765. height: math.unit(6, "feet"),
  14766. weight: math.unit(269, "lb"),
  14767. name: "Back",
  14768. image: {
  14769. source: "./media/characters/danny-kapowsky/back.svg",
  14770. extra: 797 / 760,
  14771. bottom: 0.025
  14772. }
  14773. },
  14774. },
  14775. [
  14776. {
  14777. name: "Macro",
  14778. height: math.unit(150, "feet"),
  14779. default: true
  14780. },
  14781. {
  14782. name: "Macro+",
  14783. height: math.unit(200, "feet")
  14784. },
  14785. {
  14786. name: "Macro++",
  14787. height: math.unit(300, "feet")
  14788. },
  14789. {
  14790. name: "Macro+++",
  14791. height: math.unit(400, "feet")
  14792. },
  14793. ]
  14794. ))
  14795. characterMakers.push(() => makeCharacter(
  14796. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14797. {
  14798. side: {
  14799. height: math.unit(6, "feet"),
  14800. weight: math.unit(170, "lb"),
  14801. name: "Side",
  14802. image: {
  14803. source: "./media/characters/finn/side.svg",
  14804. extra: 1953 / 1807,
  14805. bottom: 0.057
  14806. }
  14807. },
  14808. },
  14809. [
  14810. {
  14811. name: "Megamacro",
  14812. height: math.unit(14445, "feet"),
  14813. default: true
  14814. },
  14815. ]
  14816. ))
  14817. characterMakers.push(() => makeCharacter(
  14818. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14819. {
  14820. front: {
  14821. height: math.unit(5 + 6 / 12, "feet"),
  14822. weight: math.unit(125, "lb"),
  14823. name: "Front",
  14824. image: {
  14825. source: "./media/characters/roy/front.svg",
  14826. extra: 1,
  14827. bottom: 0.11
  14828. }
  14829. },
  14830. },
  14831. [
  14832. {
  14833. name: "Micro",
  14834. height: math.unit(3, "inches"),
  14835. default: true
  14836. },
  14837. {
  14838. name: "Normal",
  14839. height: math.unit(5 + 6 / 12, "feet")
  14840. },
  14841. {
  14842. name: "Lesser Macro",
  14843. height: math.unit(60, "feet")
  14844. },
  14845. {
  14846. name: "Greater Macro",
  14847. height: math.unit(120, "feet")
  14848. },
  14849. ]
  14850. ))
  14851. characterMakers.push(() => makeCharacter(
  14852. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14853. {
  14854. front: {
  14855. height: math.unit(6, "feet"),
  14856. weight: math.unit(100, "lb"),
  14857. name: "Front",
  14858. image: {
  14859. source: "./media/characters/aevsivs/front.svg",
  14860. extra: 1,
  14861. bottom: 0.03
  14862. }
  14863. },
  14864. back: {
  14865. height: math.unit(6, "feet"),
  14866. weight: math.unit(100, "lb"),
  14867. name: "Back",
  14868. image: {
  14869. source: "./media/characters/aevsivs/back.svg"
  14870. }
  14871. },
  14872. },
  14873. [
  14874. {
  14875. name: "Micro",
  14876. height: math.unit(2, "inches"),
  14877. default: true
  14878. },
  14879. {
  14880. name: "Normal",
  14881. height: math.unit(5, "feet")
  14882. },
  14883. ]
  14884. ))
  14885. characterMakers.push(() => makeCharacter(
  14886. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14887. {
  14888. front: {
  14889. height: math.unit(5 + 7 / 12, "feet"),
  14890. weight: math.unit(159, "lb"),
  14891. name: "Front",
  14892. image: {
  14893. source: "./media/characters/hildegard/front.svg",
  14894. extra: 289 / 269,
  14895. bottom: 7.63 / 297.8
  14896. }
  14897. },
  14898. back: {
  14899. height: math.unit(5 + 7 / 12, "feet"),
  14900. weight: math.unit(159, "lb"),
  14901. name: "Back",
  14902. image: {
  14903. source: "./media/characters/hildegard/back.svg",
  14904. extra: 280 / 260,
  14905. bottom: 2.3 / 282
  14906. }
  14907. },
  14908. },
  14909. [
  14910. {
  14911. name: "Normal",
  14912. height: math.unit(5 + 7 / 12, "feet"),
  14913. default: true
  14914. },
  14915. ]
  14916. ))
  14917. characterMakers.push(() => makeCharacter(
  14918. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14919. {
  14920. bernard: {
  14921. height: math.unit(2 + 7 / 12, "feet"),
  14922. weight: math.unit(66, "lb"),
  14923. name: "Bernard",
  14924. rename: true,
  14925. image: {
  14926. source: "./media/characters/bernard-wilder/bernard.svg",
  14927. extra: 192 / 128,
  14928. bottom: 0.05
  14929. }
  14930. },
  14931. wilder: {
  14932. height: math.unit(5 + 8 / 12, "feet"),
  14933. weight: math.unit(143, "lb"),
  14934. name: "Wilder",
  14935. rename: true,
  14936. image: {
  14937. source: "./media/characters/bernard-wilder/wilder.svg",
  14938. extra: 361 / 312,
  14939. bottom: 0.02
  14940. }
  14941. },
  14942. },
  14943. [
  14944. {
  14945. name: "Normal",
  14946. height: math.unit(2 + 7 / 12, "feet"),
  14947. default: true
  14948. },
  14949. ]
  14950. ))
  14951. characterMakers.push(() => makeCharacter(
  14952. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14953. {
  14954. anthro: {
  14955. height: math.unit(6 + 1 / 12, "feet"),
  14956. weight: math.unit(155, "lb"),
  14957. name: "Anthro",
  14958. image: {
  14959. source: "./media/characters/hearth/anthro.svg",
  14960. extra: 260 / 250,
  14961. bottom: 0.02
  14962. }
  14963. },
  14964. feral: {
  14965. height: math.unit(3.78, "feet"),
  14966. weight: math.unit(35, "kg"),
  14967. name: "Feral",
  14968. image: {
  14969. source: "./media/characters/hearth/feral.svg",
  14970. extra: 153 / 135,
  14971. bottom: 0.03
  14972. }
  14973. },
  14974. },
  14975. [
  14976. {
  14977. name: "Normal",
  14978. height: math.unit(6 + 1 / 12, "feet"),
  14979. default: true
  14980. },
  14981. ]
  14982. ))
  14983. characterMakers.push(() => makeCharacter(
  14984. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14985. {
  14986. front: {
  14987. height: math.unit(6, "feet"),
  14988. weight: math.unit(182, "lb"),
  14989. name: "Front",
  14990. image: {
  14991. source: "./media/characters/ingrid/front.svg",
  14992. extra: 294 / 268,
  14993. bottom: 0.027
  14994. }
  14995. },
  14996. },
  14997. [
  14998. {
  14999. name: "Normal",
  15000. height: math.unit(6, "feet"),
  15001. default: true
  15002. },
  15003. ]
  15004. ))
  15005. characterMakers.push(() => makeCharacter(
  15006. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15007. {
  15008. eevee: {
  15009. height: math.unit(2 + 10 / 12, "feet"),
  15010. weight: math.unit(86, "lb"),
  15011. name: "Malgam",
  15012. image: {
  15013. source: "./media/characters/malgam/eevee.svg",
  15014. extra: 218 / 180,
  15015. bottom: 0.2
  15016. }
  15017. },
  15018. sylveon: {
  15019. height: math.unit(4, "feet"),
  15020. weight: math.unit(101, "lb"),
  15021. name: "Future Malgam",
  15022. rename: true,
  15023. image: {
  15024. source: "./media/characters/malgam/sylveon.svg",
  15025. extra: 371 / 325,
  15026. bottom: 0.015
  15027. }
  15028. },
  15029. gigantamax: {
  15030. height: math.unit(50, "feet"),
  15031. name: "Gigantamax Malgam",
  15032. rename: true,
  15033. image: {
  15034. source: "./media/characters/malgam/gigantamax.svg"
  15035. }
  15036. },
  15037. },
  15038. [
  15039. {
  15040. name: "Normal",
  15041. height: math.unit(2 + 10 / 12, "feet"),
  15042. default: true
  15043. },
  15044. ]
  15045. ))
  15046. characterMakers.push(() => makeCharacter(
  15047. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15048. {
  15049. front: {
  15050. height: math.unit(5 + 11 / 12, "feet"),
  15051. weight: math.unit(188, "lb"),
  15052. name: "Front",
  15053. image: {
  15054. source: "./media/characters/fleur/front.svg",
  15055. extra: 309 / 283,
  15056. bottom: 0.007
  15057. }
  15058. },
  15059. },
  15060. [
  15061. {
  15062. name: "Normal",
  15063. height: math.unit(5 + 11 / 12, "feet"),
  15064. default: true
  15065. },
  15066. ]
  15067. ))
  15068. characterMakers.push(() => makeCharacter(
  15069. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15070. {
  15071. front: {
  15072. height: math.unit(5 + 4 / 12, "feet"),
  15073. weight: math.unit(122, "lb"),
  15074. name: "Front",
  15075. image: {
  15076. source: "./media/characters/jude/front.svg",
  15077. extra: 288 / 273,
  15078. bottom: 0.03
  15079. }
  15080. },
  15081. },
  15082. [
  15083. {
  15084. name: "Normal",
  15085. height: math.unit(5 + 4 / 12, "feet"),
  15086. default: true
  15087. },
  15088. ]
  15089. ))
  15090. characterMakers.push(() => makeCharacter(
  15091. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15092. {
  15093. front: {
  15094. height: math.unit(5 + 11 / 12, "feet"),
  15095. weight: math.unit(190, "lb"),
  15096. name: "Front",
  15097. image: {
  15098. source: "./media/characters/seara/front.svg",
  15099. extra: 1,
  15100. bottom: 0.05
  15101. }
  15102. },
  15103. },
  15104. [
  15105. {
  15106. name: "Normal",
  15107. height: math.unit(5 + 11 / 12, "feet"),
  15108. default: true
  15109. },
  15110. ]
  15111. ))
  15112. characterMakers.push(() => makeCharacter(
  15113. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15114. {
  15115. front: {
  15116. height: math.unit(16 + 5 / 12, "feet"),
  15117. weight: math.unit(524, "lb"),
  15118. name: "Front",
  15119. image: {
  15120. source: "./media/characters/caspian/front.svg",
  15121. extra: 1,
  15122. bottom: 0.04
  15123. }
  15124. },
  15125. },
  15126. [
  15127. {
  15128. name: "Normal",
  15129. height: math.unit(16 + 5 / 12, "feet"),
  15130. default: true
  15131. },
  15132. ]
  15133. ))
  15134. characterMakers.push(() => makeCharacter(
  15135. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15136. {
  15137. front: {
  15138. height: math.unit(5 + 7 / 12, "feet"),
  15139. weight: math.unit(170, "lb"),
  15140. name: "Front",
  15141. image: {
  15142. source: "./media/characters/mika/front.svg",
  15143. extra: 1,
  15144. bottom: 0.016
  15145. }
  15146. },
  15147. },
  15148. [
  15149. {
  15150. name: "Normal",
  15151. height: math.unit(5 + 7 / 12, "feet"),
  15152. default: true
  15153. },
  15154. ]
  15155. ))
  15156. characterMakers.push(() => makeCharacter(
  15157. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15158. {
  15159. front: {
  15160. height: math.unit(6 + 2 / 12, "feet"),
  15161. weight: math.unit(268, "lb"),
  15162. name: "Front",
  15163. image: {
  15164. source: "./media/characters/sol/front.svg",
  15165. extra: 247 / 231,
  15166. bottom: 0.05
  15167. }
  15168. },
  15169. },
  15170. [
  15171. {
  15172. name: "Normal",
  15173. height: math.unit(6 + 2 / 12, "feet"),
  15174. default: true
  15175. },
  15176. ]
  15177. ))
  15178. characterMakers.push(() => makeCharacter(
  15179. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15180. {
  15181. buizel: {
  15182. height: math.unit(2 + 5 / 12, "feet"),
  15183. weight: math.unit(87, "lb"),
  15184. name: "Buizel",
  15185. image: {
  15186. source: "./media/characters/umiko/buizel.svg",
  15187. extra: 172 / 157,
  15188. bottom: 0.01
  15189. }
  15190. },
  15191. floatzel: {
  15192. height: math.unit(5 + 9 / 12, "feet"),
  15193. weight: math.unit(250, "lb"),
  15194. name: "Floatzel",
  15195. image: {
  15196. source: "./media/characters/umiko/floatzel.svg",
  15197. extra: 262 / 248
  15198. }
  15199. },
  15200. },
  15201. [
  15202. {
  15203. name: "Normal",
  15204. height: math.unit(2 + 5 / 12, "feet"),
  15205. default: true
  15206. },
  15207. ]
  15208. ))
  15209. characterMakers.push(() => makeCharacter(
  15210. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15211. {
  15212. front: {
  15213. height: math.unit(6 + 2 / 12, "feet"),
  15214. weight: math.unit(146, "lb"),
  15215. name: "Front",
  15216. image: {
  15217. source: "./media/characters/iliac/front.svg",
  15218. extra: 389 / 365,
  15219. bottom: 0.035
  15220. }
  15221. },
  15222. },
  15223. [
  15224. {
  15225. name: "Normal",
  15226. height: math.unit(6 + 2 / 12, "feet"),
  15227. default: true
  15228. },
  15229. ]
  15230. ))
  15231. characterMakers.push(() => makeCharacter(
  15232. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15233. {
  15234. front: {
  15235. height: math.unit(6, "feet"),
  15236. weight: math.unit(170, "lb"),
  15237. name: "Front",
  15238. image: {
  15239. source: "./media/characters/topaz/front.svg",
  15240. extra: 317 / 303,
  15241. bottom: 0.055
  15242. }
  15243. },
  15244. },
  15245. [
  15246. {
  15247. name: "Normal",
  15248. height: math.unit(6, "feet"),
  15249. default: true
  15250. },
  15251. ]
  15252. ))
  15253. characterMakers.push(() => makeCharacter(
  15254. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15255. {
  15256. front: {
  15257. height: math.unit(5 + 11 / 12, "feet"),
  15258. weight: math.unit(144, "lb"),
  15259. name: "Front",
  15260. image: {
  15261. source: "./media/characters/gabriel/front.svg",
  15262. extra: 285 / 262,
  15263. bottom: 0.004
  15264. }
  15265. },
  15266. },
  15267. [
  15268. {
  15269. name: "Normal",
  15270. height: math.unit(5 + 11 / 12, "feet"),
  15271. default: true
  15272. },
  15273. ]
  15274. ))
  15275. characterMakers.push(() => makeCharacter(
  15276. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15277. {
  15278. side: {
  15279. height: math.unit(6 + 5 / 12, "feet"),
  15280. weight: math.unit(300, "lb"),
  15281. name: "Side",
  15282. image: {
  15283. source: "./media/characters/tempest-suicune/side.svg",
  15284. extra: 195 / 154,
  15285. bottom: 0.04
  15286. }
  15287. },
  15288. },
  15289. [
  15290. {
  15291. name: "Normal",
  15292. height: math.unit(6 + 5 / 12, "feet"),
  15293. default: true
  15294. },
  15295. ]
  15296. ))
  15297. characterMakers.push(() => makeCharacter(
  15298. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15299. {
  15300. front: {
  15301. height: math.unit(7 + 2 / 12, "feet"),
  15302. weight: math.unit(322, "lb"),
  15303. name: "Front",
  15304. image: {
  15305. source: "./media/characters/vulcan/front.svg",
  15306. extra: 154 / 147,
  15307. bottom: 0.04
  15308. }
  15309. },
  15310. },
  15311. [
  15312. {
  15313. name: "Normal",
  15314. height: math.unit(7 + 2 / 12, "feet"),
  15315. default: true
  15316. },
  15317. ]
  15318. ))
  15319. characterMakers.push(() => makeCharacter(
  15320. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15321. {
  15322. front: {
  15323. height: math.unit(5 + 10 / 12, "feet"),
  15324. weight: math.unit(264, "lb"),
  15325. name: "Front",
  15326. image: {
  15327. source: "./media/characters/gault/front.svg",
  15328. extra: 161 / 140,
  15329. bottom: 0.028
  15330. }
  15331. },
  15332. },
  15333. [
  15334. {
  15335. name: "Normal",
  15336. height: math.unit(5 + 10 / 12, "feet"),
  15337. default: true
  15338. },
  15339. ]
  15340. ))
  15341. characterMakers.push(() => makeCharacter(
  15342. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15343. {
  15344. front: {
  15345. height: math.unit(6, "feet"),
  15346. weight: math.unit(150, "lb"),
  15347. name: "Front",
  15348. image: {
  15349. source: "./media/characters/shard/front.svg",
  15350. extra: 273 / 238,
  15351. bottom: 0.02
  15352. }
  15353. },
  15354. },
  15355. [
  15356. {
  15357. name: "Normal",
  15358. height: math.unit(3 + 6 / 12, "feet"),
  15359. default: true
  15360. },
  15361. ]
  15362. ))
  15363. characterMakers.push(() => makeCharacter(
  15364. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15365. {
  15366. front: {
  15367. height: math.unit(5 + 11 / 12, "feet"),
  15368. weight: math.unit(146, "lb"),
  15369. name: "Front",
  15370. image: {
  15371. source: "./media/characters/ashe/front.svg",
  15372. extra: 400 / 373,
  15373. bottom: 0.01
  15374. }
  15375. },
  15376. },
  15377. [
  15378. {
  15379. name: "Normal",
  15380. height: math.unit(5 + 11 / 12, "feet"),
  15381. default: true
  15382. },
  15383. ]
  15384. ))
  15385. characterMakers.push(() => makeCharacter(
  15386. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15387. {
  15388. front: {
  15389. height: math.unit(5 + 5 / 12, "feet"),
  15390. weight: math.unit(135, "lb"),
  15391. name: "Front",
  15392. image: {
  15393. source: "./media/characters/beatrix/front.svg",
  15394. extra: 392 / 379,
  15395. bottom: 0.01
  15396. }
  15397. },
  15398. },
  15399. [
  15400. {
  15401. name: "Normal",
  15402. height: math.unit(6, "feet"),
  15403. default: true
  15404. },
  15405. ]
  15406. ))
  15407. characterMakers.push(() => makeCharacter(
  15408. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15409. {
  15410. front: {
  15411. height: math.unit(6, "feet"),
  15412. weight: math.unit(150, "lb"),
  15413. name: "Front",
  15414. image: {
  15415. source: "./media/characters/ignatius/front.svg",
  15416. extra: 245 / 222,
  15417. bottom: 0.01
  15418. }
  15419. },
  15420. },
  15421. [
  15422. {
  15423. name: "Normal",
  15424. height: math.unit(5 + 5 / 12, "feet"),
  15425. default: true
  15426. },
  15427. ]
  15428. ))
  15429. characterMakers.push(() => makeCharacter(
  15430. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15431. {
  15432. front: {
  15433. height: math.unit(6 + 2 / 12, "feet"),
  15434. weight: math.unit(138, "lb"),
  15435. name: "Front",
  15436. image: {
  15437. source: "./media/characters/mei-li/front.svg",
  15438. extra: 237 / 229,
  15439. bottom: 0.03
  15440. }
  15441. },
  15442. },
  15443. [
  15444. {
  15445. name: "Normal",
  15446. height: math.unit(6 + 2 / 12, "feet"),
  15447. default: true
  15448. },
  15449. ]
  15450. ))
  15451. characterMakers.push(() => makeCharacter(
  15452. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15453. {
  15454. front: {
  15455. height: math.unit(2 + 4 / 12, "feet"),
  15456. weight: math.unit(62, "lb"),
  15457. name: "Front",
  15458. image: {
  15459. source: "./media/characters/puru/front.svg",
  15460. extra: 206 / 149,
  15461. bottom: 0.06
  15462. }
  15463. },
  15464. },
  15465. [
  15466. {
  15467. name: "Normal",
  15468. height: math.unit(2 + 4 / 12, "feet"),
  15469. default: true
  15470. },
  15471. ]
  15472. ))
  15473. characterMakers.push(() => makeCharacter(
  15474. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15475. {
  15476. anthro: {
  15477. height: math.unit(5 + 8/12, "feet"),
  15478. weight: math.unit(200, "lb"),
  15479. energyNeed: math.unit(2000, "kcal"),
  15480. name: "Anthro",
  15481. image: {
  15482. source: "./media/characters/kee/anthro.svg",
  15483. extra: 3251/3184,
  15484. bottom: 250/3501
  15485. }
  15486. },
  15487. taur: {
  15488. height: math.unit(11, "feet"),
  15489. weight: math.unit(500, "lb"),
  15490. energyNeed: math.unit(5000, "kcal"),
  15491. name: "Taur",
  15492. image: {
  15493. source: "./media/characters/kee/taur.svg",
  15494. extra: 1362/1320,
  15495. bottom: 83/1445
  15496. }
  15497. },
  15498. },
  15499. [
  15500. {
  15501. name: "Normal",
  15502. height: math.unit(5 + 8/12, "feet"),
  15503. default: true
  15504. },
  15505. {
  15506. name: "Macro",
  15507. height: math.unit(35, "feet")
  15508. },
  15509. ]
  15510. ))
  15511. characterMakers.push(() => makeCharacter(
  15512. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15513. {
  15514. anthro: {
  15515. height: math.unit(7, "feet"),
  15516. weight: math.unit(190, "lb"),
  15517. name: "Anthro",
  15518. image: {
  15519. source: "./media/characters/cobalt-dracha/anthro.svg",
  15520. extra: 231 / 225,
  15521. bottom: 0.04
  15522. }
  15523. },
  15524. feral: {
  15525. height: math.unit(9 + 7 / 12, "feet"),
  15526. weight: math.unit(294, "lb"),
  15527. name: "Feral",
  15528. image: {
  15529. source: "./media/characters/cobalt-dracha/feral.svg",
  15530. extra: 692 / 633,
  15531. bottom: 0.05
  15532. }
  15533. },
  15534. },
  15535. [
  15536. {
  15537. name: "Normal",
  15538. height: math.unit(7, "feet"),
  15539. default: true
  15540. },
  15541. ]
  15542. ))
  15543. characterMakers.push(() => makeCharacter(
  15544. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15545. {
  15546. fallen: {
  15547. height: math.unit(11 + 8 / 12, "feet"),
  15548. weight: math.unit(485, "lb"),
  15549. name: "Java (Fallen)",
  15550. rename: true,
  15551. image: {
  15552. source: "./media/characters/java/fallen.svg",
  15553. extra: 226 / 208,
  15554. bottom: 0.005
  15555. }
  15556. },
  15557. godkin: {
  15558. height: math.unit(10 + 6 / 12, "feet"),
  15559. weight: math.unit(328, "lb"),
  15560. name: "Java (Godkin)",
  15561. rename: true,
  15562. image: {
  15563. source: "./media/characters/java/godkin.svg",
  15564. extra: 270 / 262,
  15565. bottom: 0.02
  15566. }
  15567. },
  15568. },
  15569. [
  15570. {
  15571. name: "Normal",
  15572. height: math.unit(11 + 8 / 12, "feet"),
  15573. default: true
  15574. },
  15575. ]
  15576. ))
  15577. characterMakers.push(() => makeCharacter(
  15578. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15579. {
  15580. front: {
  15581. height: math.unit(7 + 8 / 12, "feet"),
  15582. weight: math.unit(320, "lb"),
  15583. name: "Front",
  15584. image: {
  15585. source: "./media/characters/skoll/front.svg",
  15586. extra: 232 / 220,
  15587. bottom: 0.02
  15588. }
  15589. },
  15590. },
  15591. [
  15592. {
  15593. name: "Normal",
  15594. height: math.unit(7 + 8 / 12, "feet"),
  15595. default: true
  15596. },
  15597. ]
  15598. ))
  15599. characterMakers.push(() => makeCharacter(
  15600. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15601. {
  15602. front: {
  15603. height: math.unit(5 + 9 / 12, "feet"),
  15604. weight: math.unit(170, "lb"),
  15605. name: "Front",
  15606. image: {
  15607. source: "./media/characters/purna/front.svg",
  15608. extra: 239 / 229,
  15609. bottom: 0.01
  15610. }
  15611. },
  15612. },
  15613. [
  15614. {
  15615. name: "Normal",
  15616. height: math.unit(5 + 9 / 12, "feet"),
  15617. default: true
  15618. },
  15619. ]
  15620. ))
  15621. characterMakers.push(() => makeCharacter(
  15622. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15623. {
  15624. front: {
  15625. height: math.unit(5 + 9 / 12, "feet"),
  15626. weight: math.unit(142, "lb"),
  15627. name: "Front",
  15628. image: {
  15629. source: "./media/characters/kuva/front.svg",
  15630. extra: 281 / 271,
  15631. bottom: 0.006
  15632. }
  15633. },
  15634. },
  15635. [
  15636. {
  15637. name: "Normal",
  15638. height: math.unit(5 + 9 / 12, "feet"),
  15639. default: true
  15640. },
  15641. ]
  15642. ))
  15643. characterMakers.push(() => makeCharacter(
  15644. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15645. {
  15646. anthro: {
  15647. height: math.unit(9 + 2 / 12, "feet"),
  15648. weight: math.unit(270, "lb"),
  15649. name: "Anthro",
  15650. image: {
  15651. source: "./media/characters/embra/anthro.svg",
  15652. extra: 200 / 187,
  15653. bottom: 0.02
  15654. }
  15655. },
  15656. feral: {
  15657. height: math.unit(18 + 8 / 12, "feet"),
  15658. weight: math.unit(576, "lb"),
  15659. name: "Feral",
  15660. image: {
  15661. source: "./media/characters/embra/feral.svg",
  15662. extra: 152 / 137,
  15663. bottom: 0.037
  15664. }
  15665. },
  15666. },
  15667. [
  15668. {
  15669. name: "Normal",
  15670. height: math.unit(9 + 2 / 12, "feet"),
  15671. default: true
  15672. },
  15673. ]
  15674. ))
  15675. characterMakers.push(() => makeCharacter(
  15676. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15677. {
  15678. anthro: {
  15679. height: math.unit(10 + 9 / 12, "feet"),
  15680. weight: math.unit(224, "lb"),
  15681. name: "Anthro",
  15682. image: {
  15683. source: "./media/characters/grottos/anthro.svg",
  15684. extra: 350 / 332,
  15685. bottom: 0.045
  15686. }
  15687. },
  15688. feral: {
  15689. height: math.unit(20 + 7 / 12, "feet"),
  15690. weight: math.unit(629, "lb"),
  15691. name: "Feral",
  15692. image: {
  15693. source: "./media/characters/grottos/feral.svg",
  15694. extra: 207 / 190,
  15695. bottom: 0.05
  15696. }
  15697. },
  15698. },
  15699. [
  15700. {
  15701. name: "Normal",
  15702. height: math.unit(10 + 9 / 12, "feet"),
  15703. default: true
  15704. },
  15705. ]
  15706. ))
  15707. characterMakers.push(() => makeCharacter(
  15708. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15709. {
  15710. anthro: {
  15711. height: math.unit(9 + 6 / 12, "feet"),
  15712. weight: math.unit(298, "lb"),
  15713. name: "Anthro",
  15714. image: {
  15715. source: "./media/characters/frifna/anthro.svg",
  15716. extra: 282 / 269,
  15717. bottom: 0.015
  15718. }
  15719. },
  15720. feral: {
  15721. height: math.unit(16 + 2 / 12, "feet"),
  15722. weight: math.unit(624, "lb"),
  15723. name: "Feral",
  15724. image: {
  15725. source: "./media/characters/frifna/feral.svg"
  15726. }
  15727. },
  15728. },
  15729. [
  15730. {
  15731. name: "Normal",
  15732. height: math.unit(9 + 6 / 12, "feet"),
  15733. default: true
  15734. },
  15735. ]
  15736. ))
  15737. characterMakers.push(() => makeCharacter(
  15738. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15739. {
  15740. front: {
  15741. height: math.unit(6 + 2 / 12, "feet"),
  15742. weight: math.unit(168, "lb"),
  15743. name: "Front",
  15744. image: {
  15745. source: "./media/characters/elise/front.svg",
  15746. extra: 276 / 271
  15747. }
  15748. },
  15749. },
  15750. [
  15751. {
  15752. name: "Normal",
  15753. height: math.unit(6 + 2 / 12, "feet"),
  15754. default: true
  15755. },
  15756. ]
  15757. ))
  15758. characterMakers.push(() => makeCharacter(
  15759. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15760. {
  15761. front: {
  15762. height: math.unit(5 + 10 / 12, "feet"),
  15763. weight: math.unit(210, "lb"),
  15764. name: "Front",
  15765. image: {
  15766. source: "./media/characters/glade/front.svg",
  15767. extra: 258 / 247,
  15768. bottom: 0.008
  15769. }
  15770. },
  15771. },
  15772. [
  15773. {
  15774. name: "Normal",
  15775. height: math.unit(5 + 10 / 12, "feet"),
  15776. default: true
  15777. },
  15778. ]
  15779. ))
  15780. characterMakers.push(() => makeCharacter(
  15781. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15782. {
  15783. front: {
  15784. height: math.unit(5 + 10 / 12, "feet"),
  15785. weight: math.unit(129, "lb"),
  15786. name: "Front",
  15787. image: {
  15788. source: "./media/characters/rina/front.svg",
  15789. extra: 266 / 255,
  15790. bottom: 0.005
  15791. }
  15792. },
  15793. },
  15794. [
  15795. {
  15796. name: "Normal",
  15797. height: math.unit(5 + 10 / 12, "feet"),
  15798. default: true
  15799. },
  15800. ]
  15801. ))
  15802. characterMakers.push(() => makeCharacter(
  15803. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15804. {
  15805. front: {
  15806. height: math.unit(6 + 1 / 12, "feet"),
  15807. weight: math.unit(192, "lb"),
  15808. name: "Front",
  15809. image: {
  15810. source: "./media/characters/veronica/front.svg",
  15811. extra: 319 / 309,
  15812. bottom: 0.005
  15813. }
  15814. },
  15815. },
  15816. [
  15817. {
  15818. name: "Normal",
  15819. height: math.unit(6 + 1 / 12, "feet"),
  15820. default: true
  15821. },
  15822. ]
  15823. ))
  15824. characterMakers.push(() => makeCharacter(
  15825. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15826. {
  15827. front: {
  15828. height: math.unit(9 + 3 / 12, "feet"),
  15829. weight: math.unit(1100, "lb"),
  15830. name: "Front",
  15831. image: {
  15832. source: "./media/characters/braxton/front.svg",
  15833. extra: 1057 / 984,
  15834. bottom: 0.05
  15835. }
  15836. },
  15837. },
  15838. [
  15839. {
  15840. name: "Normal",
  15841. height: math.unit(9 + 3 / 12, "feet")
  15842. },
  15843. {
  15844. name: "Giant",
  15845. height: math.unit(300, "feet"),
  15846. default: true
  15847. },
  15848. {
  15849. name: "Macro",
  15850. height: math.unit(700, "feet")
  15851. },
  15852. {
  15853. name: "Megamacro",
  15854. height: math.unit(6000, "feet")
  15855. },
  15856. ]
  15857. ))
  15858. characterMakers.push(() => makeCharacter(
  15859. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15860. {
  15861. front: {
  15862. height: math.unit(6 + 7 / 12, "feet"),
  15863. weight: math.unit(150, "lb"),
  15864. name: "Front",
  15865. image: {
  15866. source: "./media/characters/blue-feyonics/front.svg",
  15867. extra: 1403 / 1306,
  15868. bottom: 0.047
  15869. }
  15870. },
  15871. },
  15872. [
  15873. {
  15874. name: "Normal",
  15875. height: math.unit(6 + 7 / 12, "feet"),
  15876. default: true
  15877. },
  15878. ]
  15879. ))
  15880. characterMakers.push(() => makeCharacter(
  15881. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15882. {
  15883. front: {
  15884. height: math.unit(1.8, "meters"),
  15885. weight: math.unit(60, "kg"),
  15886. name: "Front",
  15887. image: {
  15888. source: "./media/characters/maxwell/front.svg",
  15889. extra: 2060 / 1873
  15890. }
  15891. },
  15892. },
  15893. [
  15894. {
  15895. name: "Micro",
  15896. height: math.unit(1, "mm")
  15897. },
  15898. {
  15899. name: "Normal",
  15900. height: math.unit(1.8, "meter"),
  15901. default: true
  15902. },
  15903. {
  15904. name: "Macro",
  15905. height: math.unit(30, "meters")
  15906. },
  15907. {
  15908. name: "Megamacro",
  15909. height: math.unit(10, "km")
  15910. },
  15911. ]
  15912. ))
  15913. characterMakers.push(() => makeCharacter(
  15914. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15915. {
  15916. front: {
  15917. height: math.unit(6, "feet"),
  15918. weight: math.unit(150, "lb"),
  15919. name: "Front",
  15920. image: {
  15921. source: "./media/characters/jack/front.svg",
  15922. extra: 1754 / 1640,
  15923. bottom: 0.01
  15924. }
  15925. },
  15926. },
  15927. [
  15928. {
  15929. name: "Normal",
  15930. height: math.unit(80000, "feet"),
  15931. default: true
  15932. },
  15933. {
  15934. name: "Max size",
  15935. height: math.unit(10, "lightyears")
  15936. },
  15937. ]
  15938. ))
  15939. characterMakers.push(() => makeCharacter(
  15940. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15941. {
  15942. urban: {
  15943. height: math.unit(5, "feet"),
  15944. weight: math.unit(240, "lb"),
  15945. name: "Urban",
  15946. image: {
  15947. source: "./media/characters/cafat/urban.svg",
  15948. extra: 1223/1126,
  15949. bottom: 205/1428
  15950. }
  15951. },
  15952. summer: {
  15953. height: math.unit(5, "feet"),
  15954. weight: math.unit(240, "lb"),
  15955. name: "Summer",
  15956. image: {
  15957. source: "./media/characters/cafat/summer.svg",
  15958. extra: 1223/1126,
  15959. bottom: 205/1428
  15960. }
  15961. },
  15962. winter: {
  15963. height: math.unit(5, "feet"),
  15964. weight: math.unit(240, "lb"),
  15965. name: "Winter",
  15966. image: {
  15967. source: "./media/characters/cafat/winter.svg",
  15968. extra: 1223/1126,
  15969. bottom: 205/1428
  15970. }
  15971. },
  15972. lingerie: {
  15973. height: math.unit(5, "feet"),
  15974. weight: math.unit(240, "lb"),
  15975. name: "Lingerie",
  15976. image: {
  15977. source: "./media/characters/cafat/lingerie.svg",
  15978. extra: 1223/1126,
  15979. bottom: 205/1428
  15980. }
  15981. },
  15982. upright: {
  15983. height: math.unit(6.3, "feet"),
  15984. weight: math.unit(240, "lb"),
  15985. name: "Upright",
  15986. image: {
  15987. source: "./media/characters/cafat/upright.svg",
  15988. bottom: 0.01
  15989. }
  15990. },
  15991. uprightFull: {
  15992. height: math.unit(6.3, "feet"),
  15993. weight: math.unit(240, "lb"),
  15994. name: "Upright (Full)",
  15995. image: {
  15996. source: "./media/characters/cafat/upright-full.svg",
  15997. bottom: 0.01
  15998. }
  15999. },
  16000. },
  16001. [
  16002. {
  16003. name: "Small",
  16004. height: math.unit(5, "feet"),
  16005. default: true
  16006. },
  16007. {
  16008. name: "Large",
  16009. height: math.unit(13, "feet")
  16010. },
  16011. ]
  16012. ))
  16013. characterMakers.push(() => makeCharacter(
  16014. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16015. {
  16016. front: {
  16017. height: math.unit(6, "feet"),
  16018. weight: math.unit(150, "lb"),
  16019. name: "Front",
  16020. image: {
  16021. source: "./media/characters/verin-raharra/front.svg",
  16022. extra: 5019 / 4835,
  16023. bottom: 0.023
  16024. }
  16025. },
  16026. },
  16027. [
  16028. {
  16029. name: "Normal",
  16030. height: math.unit(7 + 5 / 12, "feet"),
  16031. default: true
  16032. },
  16033. {
  16034. name: "Upsized",
  16035. height: math.unit(20, "feet")
  16036. },
  16037. ]
  16038. ))
  16039. characterMakers.push(() => makeCharacter(
  16040. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16041. {
  16042. front: {
  16043. height: math.unit(7, "feet"),
  16044. weight: math.unit(230, "lb"),
  16045. name: "Front",
  16046. image: {
  16047. source: "./media/characters/nakata/front.svg",
  16048. extra: 1.005,
  16049. bottom: 0.01
  16050. }
  16051. },
  16052. },
  16053. [
  16054. {
  16055. name: "Normal",
  16056. height: math.unit(7, "feet"),
  16057. default: true
  16058. },
  16059. {
  16060. name: "Big",
  16061. height: math.unit(14, "feet")
  16062. },
  16063. {
  16064. name: "Macro",
  16065. height: math.unit(400, "feet")
  16066. },
  16067. ]
  16068. ))
  16069. characterMakers.push(() => makeCharacter(
  16070. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16071. {
  16072. front: {
  16073. height: math.unit(4.91, "feet"),
  16074. weight: math.unit(100, "lb"),
  16075. name: "Front",
  16076. image: {
  16077. source: "./media/characters/lily/front.svg",
  16078. extra: 1585 / 1415,
  16079. bottom: 0.02
  16080. }
  16081. },
  16082. },
  16083. [
  16084. {
  16085. name: "Normal",
  16086. height: math.unit(4.91, "feet"),
  16087. default: true
  16088. },
  16089. ]
  16090. ))
  16091. characterMakers.push(() => makeCharacter(
  16092. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16093. {
  16094. laying: {
  16095. height: math.unit(4 + 4 / 12, "feet"),
  16096. weight: math.unit(600, "lb"),
  16097. name: "Laying",
  16098. image: {
  16099. source: "./media/characters/sheila/laying.svg",
  16100. extra: 1333 / 1265,
  16101. bottom: 0.16
  16102. }
  16103. },
  16104. },
  16105. [
  16106. {
  16107. name: "Normal",
  16108. height: math.unit(4 + 4 / 12, "feet"),
  16109. default: true
  16110. },
  16111. ]
  16112. ))
  16113. characterMakers.push(() => makeCharacter(
  16114. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16115. {
  16116. front: {
  16117. height: math.unit(6, "feet"),
  16118. weight: math.unit(190, "lb"),
  16119. name: "Front",
  16120. image: {
  16121. source: "./media/characters/sax/front.svg",
  16122. extra: 1187 / 973,
  16123. bottom: 0.042
  16124. }
  16125. },
  16126. },
  16127. [
  16128. {
  16129. name: "Micro",
  16130. height: math.unit(4, "inches"),
  16131. default: true
  16132. },
  16133. ]
  16134. ))
  16135. characterMakers.push(() => makeCharacter(
  16136. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16137. {
  16138. front: {
  16139. height: math.unit(6, "feet"),
  16140. weight: math.unit(150, "lb"),
  16141. name: "Front",
  16142. image: {
  16143. source: "./media/characters/pandora/front.svg",
  16144. extra: 2720 / 2556,
  16145. bottom: 0.015
  16146. }
  16147. },
  16148. back: {
  16149. height: math.unit(6, "feet"),
  16150. weight: math.unit(150, "lb"),
  16151. name: "Back",
  16152. image: {
  16153. source: "./media/characters/pandora/back.svg",
  16154. extra: 2720 / 2556,
  16155. bottom: 0.01
  16156. }
  16157. },
  16158. beans: {
  16159. height: math.unit(6 / 8, "feet"),
  16160. name: "Beans",
  16161. image: {
  16162. source: "./media/characters/pandora/beans.svg"
  16163. }
  16164. },
  16165. collar: {
  16166. height: math.unit(0.31, "feet"),
  16167. name: "Collar",
  16168. image: {
  16169. source: "./media/characters/pandora/collar.svg"
  16170. }
  16171. },
  16172. skirt: {
  16173. height: math.unit(6, "feet"),
  16174. weight: math.unit(150, "lb"),
  16175. name: "Skirt",
  16176. image: {
  16177. source: "./media/characters/pandora/skirt.svg",
  16178. extra: 1622 / 1525,
  16179. bottom: 0.015
  16180. }
  16181. },
  16182. hoodie: {
  16183. height: math.unit(6, "feet"),
  16184. weight: math.unit(150, "lb"),
  16185. name: "Hoodie",
  16186. image: {
  16187. source: "./media/characters/pandora/hoodie.svg",
  16188. extra: 1622 / 1525,
  16189. bottom: 0.015
  16190. }
  16191. },
  16192. casual: {
  16193. height: math.unit(6, "feet"),
  16194. weight: math.unit(150, "lb"),
  16195. name: "Casual",
  16196. image: {
  16197. source: "./media/characters/pandora/casual.svg",
  16198. extra: 1622 / 1525,
  16199. bottom: 0.015
  16200. }
  16201. },
  16202. },
  16203. [
  16204. {
  16205. name: "Normal",
  16206. height: math.unit(6, "feet")
  16207. },
  16208. {
  16209. name: "Big Steppy",
  16210. height: math.unit(1, "km"),
  16211. default: true
  16212. },
  16213. {
  16214. name: "Galactic Steppy",
  16215. height: math.unit(2, "gigameters")
  16216. },
  16217. ]
  16218. ))
  16219. characterMakers.push(() => makeCharacter(
  16220. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16221. {
  16222. side: {
  16223. height: math.unit(10, "feet"),
  16224. weight: math.unit(800, "kg"),
  16225. name: "Side",
  16226. image: {
  16227. source: "./media/characters/venio-darcony/side.svg",
  16228. extra: 1373 / 1003,
  16229. bottom: 0.037
  16230. }
  16231. },
  16232. front: {
  16233. height: math.unit(19, "feet"),
  16234. weight: math.unit(800, "kg"),
  16235. name: "Front",
  16236. image: {
  16237. source: "./media/characters/venio-darcony/front.svg"
  16238. }
  16239. },
  16240. back: {
  16241. height: math.unit(19, "feet"),
  16242. weight: math.unit(800, "kg"),
  16243. name: "Back",
  16244. image: {
  16245. source: "./media/characters/venio-darcony/back.svg"
  16246. }
  16247. },
  16248. sideNsfw: {
  16249. height: math.unit(10, "feet"),
  16250. weight: math.unit(800, "kg"),
  16251. name: "Side (NSFW)",
  16252. image: {
  16253. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16254. extra: 1373 / 1003,
  16255. bottom: 0.037
  16256. }
  16257. },
  16258. frontNsfw: {
  16259. height: math.unit(19, "feet"),
  16260. weight: math.unit(800, "kg"),
  16261. name: "Front (NSFW)",
  16262. image: {
  16263. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16264. }
  16265. },
  16266. backNsfw: {
  16267. height: math.unit(19, "feet"),
  16268. weight: math.unit(800, "kg"),
  16269. name: "Back (NSFW)",
  16270. image: {
  16271. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16272. }
  16273. },
  16274. sideArmored: {
  16275. height: math.unit(10, "feet"),
  16276. weight: math.unit(800, "kg"),
  16277. name: "Side (Armored)",
  16278. image: {
  16279. source: "./media/characters/venio-darcony/side-armored.svg",
  16280. extra: 1373 / 1003,
  16281. bottom: 0.037
  16282. }
  16283. },
  16284. frontArmored: {
  16285. height: math.unit(19, "feet"),
  16286. weight: math.unit(900, "kg"),
  16287. name: "Front (Armored)",
  16288. image: {
  16289. source: "./media/characters/venio-darcony/front-armored.svg"
  16290. }
  16291. },
  16292. backArmored: {
  16293. height: math.unit(19, "feet"),
  16294. weight: math.unit(900, "kg"),
  16295. name: "Back (Armored)",
  16296. image: {
  16297. source: "./media/characters/venio-darcony/back-armored.svg"
  16298. }
  16299. },
  16300. sword: {
  16301. height: math.unit(10, "feet"),
  16302. weight: math.unit(50, "lb"),
  16303. name: "Sword",
  16304. image: {
  16305. source: "./media/characters/venio-darcony/sword.svg"
  16306. }
  16307. },
  16308. },
  16309. [
  16310. {
  16311. name: "Normal",
  16312. height: math.unit(10, "feet")
  16313. },
  16314. {
  16315. name: "Macro",
  16316. height: math.unit(130, "feet"),
  16317. default: true
  16318. },
  16319. {
  16320. name: "Macro+",
  16321. height: math.unit(240, "feet")
  16322. },
  16323. ]
  16324. ))
  16325. characterMakers.push(() => makeCharacter(
  16326. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16327. {
  16328. front: {
  16329. height: math.unit(6, "feet"),
  16330. weight: math.unit(150, "lb"),
  16331. name: "Front",
  16332. image: {
  16333. source: "./media/characters/veski/front.svg",
  16334. extra: 1299 / 1225,
  16335. bottom: 0.04
  16336. }
  16337. },
  16338. back: {
  16339. height: math.unit(6, "feet"),
  16340. weight: math.unit(150, "lb"),
  16341. name: "Back",
  16342. image: {
  16343. source: "./media/characters/veski/back.svg",
  16344. extra: 1299 / 1225,
  16345. bottom: 0.008
  16346. }
  16347. },
  16348. maw: {
  16349. height: math.unit(1.5 * 1.21, "feet"),
  16350. name: "Maw",
  16351. image: {
  16352. source: "./media/characters/veski/maw.svg"
  16353. }
  16354. },
  16355. },
  16356. [
  16357. {
  16358. name: "Macro",
  16359. height: math.unit(2, "km"),
  16360. default: true
  16361. },
  16362. ]
  16363. ))
  16364. characterMakers.push(() => makeCharacter(
  16365. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16366. {
  16367. front: {
  16368. height: math.unit(5 + 7 / 12, "feet"),
  16369. name: "Front",
  16370. image: {
  16371. source: "./media/characters/isabelle/front.svg",
  16372. extra: 2130 / 1976,
  16373. bottom: 0.05
  16374. }
  16375. },
  16376. },
  16377. [
  16378. {
  16379. name: "Supermicro",
  16380. height: math.unit(10, "micrometers")
  16381. },
  16382. {
  16383. name: "Micro",
  16384. height: math.unit(1, "inch")
  16385. },
  16386. {
  16387. name: "Tiny",
  16388. height: math.unit(5, "inches")
  16389. },
  16390. {
  16391. name: "Standard",
  16392. height: math.unit(5 + 7 / 12, "inches")
  16393. },
  16394. {
  16395. name: "Macro",
  16396. height: math.unit(80, "meters"),
  16397. default: true
  16398. },
  16399. {
  16400. name: "Megamacro",
  16401. height: math.unit(250, "meters")
  16402. },
  16403. {
  16404. name: "Gigamacro",
  16405. height: math.unit(5, "km")
  16406. },
  16407. {
  16408. name: "Cosmic",
  16409. height: math.unit(2.5e6, "miles")
  16410. },
  16411. ]
  16412. ))
  16413. characterMakers.push(() => makeCharacter(
  16414. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16415. {
  16416. front: {
  16417. height: math.unit(6, "feet"),
  16418. weight: math.unit(150, "lb"),
  16419. name: "Front",
  16420. image: {
  16421. source: "./media/characters/hanzo/front.svg",
  16422. extra: 374 / 344,
  16423. bottom: 0.02
  16424. }
  16425. },
  16426. },
  16427. [
  16428. {
  16429. name: "Normal",
  16430. height: math.unit(8, "feet"),
  16431. default: true
  16432. },
  16433. ]
  16434. ))
  16435. characterMakers.push(() => makeCharacter(
  16436. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16437. {
  16438. front: {
  16439. height: math.unit(7, "feet"),
  16440. weight: math.unit(130, "lb"),
  16441. name: "Front",
  16442. image: {
  16443. source: "./media/characters/anna/front.svg",
  16444. extra: 169 / 145,
  16445. bottom: 0.06
  16446. }
  16447. },
  16448. full: {
  16449. height: math.unit(4.96, "feet"),
  16450. weight: math.unit(220, "lb"),
  16451. name: "Full",
  16452. image: {
  16453. source: "./media/characters/anna/full.svg",
  16454. extra: 138 / 114,
  16455. bottom: 0.15
  16456. }
  16457. },
  16458. tongue: {
  16459. height: math.unit(2.53, "feet"),
  16460. name: "Tongue",
  16461. image: {
  16462. source: "./media/characters/anna/tongue.svg"
  16463. }
  16464. },
  16465. },
  16466. [
  16467. {
  16468. name: "Normal",
  16469. height: math.unit(7, "feet"),
  16470. default: true
  16471. },
  16472. ]
  16473. ))
  16474. characterMakers.push(() => makeCharacter(
  16475. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16476. {
  16477. front: {
  16478. height: math.unit(7, "feet"),
  16479. weight: math.unit(150, "lb"),
  16480. name: "Front",
  16481. image: {
  16482. source: "./media/characters/ian-corvid/front.svg",
  16483. extra: 150 / 142,
  16484. bottom: 0.02
  16485. }
  16486. },
  16487. back: {
  16488. height: math.unit(7, "feet"),
  16489. weight: math.unit(150, "lb"),
  16490. name: "Back",
  16491. image: {
  16492. source: "./media/characters/ian-corvid/back.svg",
  16493. extra: 150 / 143,
  16494. bottom: 0.01
  16495. }
  16496. },
  16497. stomping: {
  16498. height: math.unit(7, "feet"),
  16499. weight: math.unit(150, "lb"),
  16500. name: "Stomping",
  16501. image: {
  16502. source: "./media/characters/ian-corvid/stomping.svg",
  16503. extra: 76 / 72
  16504. }
  16505. },
  16506. sitting: {
  16507. height: math.unit(7 / 1.8, "feet"),
  16508. weight: math.unit(150, "lb"),
  16509. name: "Sitting",
  16510. image: {
  16511. source: "./media/characters/ian-corvid/sitting.svg",
  16512. extra: 1400 / 1269,
  16513. bottom: 0.15
  16514. }
  16515. },
  16516. },
  16517. [
  16518. {
  16519. name: "Tiny Microw",
  16520. height: math.unit(1, "inch")
  16521. },
  16522. {
  16523. name: "Microw",
  16524. height: math.unit(6, "inches")
  16525. },
  16526. {
  16527. name: "Crow",
  16528. height: math.unit(7 + 1 / 12, "feet"),
  16529. default: true
  16530. },
  16531. {
  16532. name: "Macrow",
  16533. height: math.unit(176, "feet")
  16534. },
  16535. ]
  16536. ))
  16537. characterMakers.push(() => makeCharacter(
  16538. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16539. {
  16540. front: {
  16541. height: math.unit(5 + 7 / 12, "feet"),
  16542. weight: math.unit(147, "lb"),
  16543. name: "Front",
  16544. image: {
  16545. source: "./media/characters/natalie-kellon/front.svg",
  16546. extra: 1214 / 1141,
  16547. bottom: 0.02
  16548. }
  16549. },
  16550. },
  16551. [
  16552. {
  16553. name: "Micro",
  16554. height: math.unit(1 / 16, "inch")
  16555. },
  16556. {
  16557. name: "Tiny",
  16558. height: math.unit(4, "inches")
  16559. },
  16560. {
  16561. name: "Normal",
  16562. height: math.unit(5 + 7 / 12, "feet"),
  16563. default: true
  16564. },
  16565. {
  16566. name: "Amazon",
  16567. height: math.unit(12, "feet")
  16568. },
  16569. {
  16570. name: "Giantess",
  16571. height: math.unit(160, "meters")
  16572. },
  16573. {
  16574. name: "Titaness",
  16575. height: math.unit(800, "meters")
  16576. },
  16577. ]
  16578. ))
  16579. characterMakers.push(() => makeCharacter(
  16580. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16581. {
  16582. front: {
  16583. height: math.unit(6, "feet"),
  16584. weight: math.unit(150, "lb"),
  16585. name: "Front",
  16586. image: {
  16587. source: "./media/characters/alluria/front.svg",
  16588. extra: 806 / 738,
  16589. bottom: 0.01
  16590. }
  16591. },
  16592. side: {
  16593. height: math.unit(6, "feet"),
  16594. weight: math.unit(150, "lb"),
  16595. name: "Side",
  16596. image: {
  16597. source: "./media/characters/alluria/side.svg",
  16598. extra: 800 / 750,
  16599. }
  16600. },
  16601. back: {
  16602. height: math.unit(6, "feet"),
  16603. weight: math.unit(150, "lb"),
  16604. name: "Back",
  16605. image: {
  16606. source: "./media/characters/alluria/back.svg",
  16607. extra: 806 / 738,
  16608. }
  16609. },
  16610. frontMaid: {
  16611. height: math.unit(6, "feet"),
  16612. weight: math.unit(150, "lb"),
  16613. name: "Front (Maid)",
  16614. image: {
  16615. source: "./media/characters/alluria/front-maid.svg",
  16616. extra: 806 / 738,
  16617. bottom: 0.01
  16618. }
  16619. },
  16620. sideMaid: {
  16621. height: math.unit(6, "feet"),
  16622. weight: math.unit(150, "lb"),
  16623. name: "Side (Maid)",
  16624. image: {
  16625. source: "./media/characters/alluria/side-maid.svg",
  16626. extra: 800 / 750,
  16627. bottom: 0.005
  16628. }
  16629. },
  16630. backMaid: {
  16631. height: math.unit(6, "feet"),
  16632. weight: math.unit(150, "lb"),
  16633. name: "Back (Maid)",
  16634. image: {
  16635. source: "./media/characters/alluria/back-maid.svg",
  16636. extra: 806 / 738,
  16637. }
  16638. },
  16639. },
  16640. [
  16641. {
  16642. name: "Micro",
  16643. height: math.unit(6, "inches"),
  16644. default: true
  16645. },
  16646. ]
  16647. ))
  16648. characterMakers.push(() => makeCharacter(
  16649. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16650. {
  16651. front: {
  16652. height: math.unit(6, "feet"),
  16653. weight: math.unit(150, "lb"),
  16654. name: "Front",
  16655. image: {
  16656. source: "./media/characters/kyle/front.svg",
  16657. extra: 1069 / 962,
  16658. bottom: 77.228 / 1727.45
  16659. }
  16660. },
  16661. },
  16662. [
  16663. {
  16664. name: "Macro",
  16665. height: math.unit(150, "feet"),
  16666. default: true
  16667. },
  16668. ]
  16669. ))
  16670. characterMakers.push(() => makeCharacter(
  16671. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16672. {
  16673. front: {
  16674. height: math.unit(6, "feet"),
  16675. weight: math.unit(300, "lb"),
  16676. name: "Front",
  16677. image: {
  16678. source: "./media/characters/duncan/front.svg",
  16679. extra: 1650 / 1482,
  16680. bottom: 0.05
  16681. }
  16682. },
  16683. },
  16684. [
  16685. {
  16686. name: "Macro",
  16687. height: math.unit(100, "feet"),
  16688. default: true
  16689. },
  16690. ]
  16691. ))
  16692. characterMakers.push(() => makeCharacter(
  16693. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16694. {
  16695. front: {
  16696. height: math.unit(5 + 4 / 12, "feet"),
  16697. weight: math.unit(220, "lb"),
  16698. name: "Front",
  16699. image: {
  16700. source: "./media/characters/memory/front.svg",
  16701. extra: 3641 / 3545,
  16702. bottom: 0.03
  16703. }
  16704. },
  16705. back: {
  16706. height: math.unit(5 + 4 / 12, "feet"),
  16707. weight: math.unit(220, "lb"),
  16708. name: "Back",
  16709. image: {
  16710. source: "./media/characters/memory/back.svg",
  16711. extra: 3641 / 3545,
  16712. bottom: 0.025
  16713. }
  16714. },
  16715. frontSkirt: {
  16716. height: math.unit(5 + 4 / 12, "feet"),
  16717. weight: math.unit(220, "lb"),
  16718. name: "Front (Skirt)",
  16719. image: {
  16720. source: "./media/characters/memory/front-skirt.svg",
  16721. extra: 3641 / 3545,
  16722. bottom: 0.03
  16723. }
  16724. },
  16725. frontDress: {
  16726. height: math.unit(5 + 4 / 12, "feet"),
  16727. weight: math.unit(220, "lb"),
  16728. name: "Front (Dress)",
  16729. image: {
  16730. source: "./media/characters/memory/front-dress.svg",
  16731. extra: 3641 / 3545,
  16732. bottom: 0.03
  16733. }
  16734. },
  16735. },
  16736. [
  16737. {
  16738. name: "Micro",
  16739. height: math.unit(6, "inches"),
  16740. default: true
  16741. },
  16742. {
  16743. name: "Normal",
  16744. height: math.unit(5 + 4 / 12, "feet")
  16745. },
  16746. ]
  16747. ))
  16748. characterMakers.push(() => makeCharacter(
  16749. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16750. {
  16751. front: {
  16752. height: math.unit(4 + 11 / 12, "feet"),
  16753. weight: math.unit(100, "lb"),
  16754. name: "Front",
  16755. image: {
  16756. source: "./media/characters/luno/front.svg",
  16757. extra: 1535 / 1487,
  16758. bottom: 0.03
  16759. }
  16760. },
  16761. },
  16762. [
  16763. {
  16764. name: "Micro",
  16765. height: math.unit(3, "inches")
  16766. },
  16767. {
  16768. name: "Normal",
  16769. height: math.unit(4 + 11 / 12, "feet"),
  16770. default: true
  16771. },
  16772. {
  16773. name: "Macro",
  16774. height: math.unit(300, "feet")
  16775. },
  16776. {
  16777. name: "Megamacro",
  16778. height: math.unit(700, "miles")
  16779. },
  16780. ]
  16781. ))
  16782. characterMakers.push(() => makeCharacter(
  16783. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16784. {
  16785. front: {
  16786. height: math.unit(6 + 2 / 12, "feet"),
  16787. weight: math.unit(170, "lb"),
  16788. name: "Front",
  16789. image: {
  16790. source: "./media/characters/jamesy/front.svg",
  16791. extra: 440 / 382,
  16792. bottom: 0.005
  16793. }
  16794. },
  16795. },
  16796. [
  16797. {
  16798. name: "Micro",
  16799. height: math.unit(3, "inches")
  16800. },
  16801. {
  16802. name: "Normal",
  16803. height: math.unit(6 + 2 / 12, "feet"),
  16804. default: true
  16805. },
  16806. {
  16807. name: "Macro",
  16808. height: math.unit(300, "feet")
  16809. },
  16810. {
  16811. name: "Megamacro",
  16812. height: math.unit(700, "miles")
  16813. },
  16814. ]
  16815. ))
  16816. characterMakers.push(() => makeCharacter(
  16817. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16818. {
  16819. front: {
  16820. height: math.unit(6, "feet"),
  16821. weight: math.unit(160, "lb"),
  16822. name: "Front",
  16823. image: {
  16824. source: "./media/characters/mark/front.svg",
  16825. extra: 3300 / 3100,
  16826. bottom: 136.42 / 3440.47
  16827. }
  16828. },
  16829. },
  16830. [
  16831. {
  16832. name: "Macro",
  16833. height: math.unit(120, "meters")
  16834. },
  16835. {
  16836. name: "Bigger Macro",
  16837. height: math.unit(350, "meters")
  16838. },
  16839. {
  16840. name: "Megamacro",
  16841. height: math.unit(8, "km"),
  16842. default: true
  16843. },
  16844. {
  16845. name: "Continental",
  16846. height: math.unit(4550, "km")
  16847. },
  16848. {
  16849. name: "Planetary",
  16850. height: math.unit(65000, "km")
  16851. },
  16852. ]
  16853. ))
  16854. characterMakers.push(() => makeCharacter(
  16855. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16856. {
  16857. front: {
  16858. height: math.unit(6, "feet"),
  16859. weight: math.unit(400, "lb"),
  16860. name: "Front",
  16861. image: {
  16862. source: "./media/characters/mac/front.svg",
  16863. extra: 1048 / 987.7,
  16864. bottom: 60 / 1107.6,
  16865. }
  16866. },
  16867. },
  16868. [
  16869. {
  16870. name: "Macro",
  16871. height: math.unit(500, "feet"),
  16872. default: true
  16873. },
  16874. ]
  16875. ))
  16876. characterMakers.push(() => makeCharacter(
  16877. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16878. {
  16879. front: {
  16880. height: math.unit(5 + 2 / 12, "feet"),
  16881. weight: math.unit(190, "lb"),
  16882. name: "Front",
  16883. image: {
  16884. source: "./media/characters/bari/front.svg",
  16885. extra: 3156 / 2880,
  16886. bottom: 0.03
  16887. }
  16888. },
  16889. back: {
  16890. height: math.unit(5 + 2 / 12, "feet"),
  16891. weight: math.unit(190, "lb"),
  16892. name: "Back",
  16893. image: {
  16894. source: "./media/characters/bari/back.svg",
  16895. extra: 3260 / 2834,
  16896. bottom: 0.025
  16897. }
  16898. },
  16899. frontPlush: {
  16900. height: math.unit(5 + 2 / 12, "feet"),
  16901. weight: math.unit(190, "lb"),
  16902. name: "Front (Plush)",
  16903. image: {
  16904. source: "./media/characters/bari/front-plush.svg",
  16905. extra: 1112 / 1061,
  16906. bottom: 0.002
  16907. }
  16908. },
  16909. },
  16910. [
  16911. {
  16912. name: "Micro",
  16913. height: math.unit(3, "inches")
  16914. },
  16915. {
  16916. name: "Normal",
  16917. height: math.unit(5 + 2 / 12, "feet"),
  16918. default: true
  16919. },
  16920. {
  16921. name: "Macro",
  16922. height: math.unit(20, "feet")
  16923. },
  16924. ]
  16925. ))
  16926. characterMakers.push(() => makeCharacter(
  16927. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16928. {
  16929. front: {
  16930. height: math.unit(6 + 1 / 12, "feet"),
  16931. weight: math.unit(275, "lb"),
  16932. name: "Front",
  16933. image: {
  16934. source: "./media/characters/hunter-misha-raven/front.svg"
  16935. }
  16936. },
  16937. },
  16938. [
  16939. {
  16940. name: "Mortal",
  16941. height: math.unit(6 + 1 / 12, "feet")
  16942. },
  16943. {
  16944. name: "Divine",
  16945. height: math.unit(1.12134e34, "parsecs"),
  16946. default: true
  16947. },
  16948. ]
  16949. ))
  16950. characterMakers.push(() => makeCharacter(
  16951. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16952. {
  16953. front: {
  16954. height: math.unit(6 + 3 / 12, "feet"),
  16955. weight: math.unit(220, "lb"),
  16956. name: "Front",
  16957. image: {
  16958. source: "./media/characters/max-calore/front.svg",
  16959. extra: 1700 / 1648,
  16960. bottom: 0.01
  16961. }
  16962. },
  16963. back: {
  16964. height: math.unit(6 + 3 / 12, "feet"),
  16965. weight: math.unit(220, "lb"),
  16966. name: "Back",
  16967. image: {
  16968. source: "./media/characters/max-calore/back.svg",
  16969. extra: 1700 / 1648,
  16970. bottom: 0.01
  16971. }
  16972. },
  16973. },
  16974. [
  16975. {
  16976. name: "Normal",
  16977. height: math.unit(6 + 3 / 12, "feet"),
  16978. default: true
  16979. },
  16980. ]
  16981. ))
  16982. characterMakers.push(() => makeCharacter(
  16983. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16984. {
  16985. side: {
  16986. height: math.unit(2 + 8 / 12, "feet"),
  16987. weight: math.unit(99, "lb"),
  16988. name: "Side",
  16989. image: {
  16990. source: "./media/characters/aspen/side.svg",
  16991. extra: 152 / 138,
  16992. bottom: 0.032
  16993. }
  16994. },
  16995. },
  16996. [
  16997. {
  16998. name: "Normal",
  16999. height: math.unit(2 + 8 / 12, "feet"),
  17000. default: true
  17001. },
  17002. ]
  17003. ))
  17004. characterMakers.push(() => makeCharacter(
  17005. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17006. {
  17007. side: {
  17008. height: math.unit(3 + 2 / 12, "feet"),
  17009. weight: math.unit(224, "lb"),
  17010. name: "Side",
  17011. image: {
  17012. source: "./media/characters/sheila-feral-wolf/side.svg",
  17013. extra: 179 / 166,
  17014. bottom: 0.03
  17015. }
  17016. },
  17017. },
  17018. [
  17019. {
  17020. name: "Normal",
  17021. height: math.unit(3 + 2 / 12, "feet"),
  17022. default: true
  17023. },
  17024. ]
  17025. ))
  17026. characterMakers.push(() => makeCharacter(
  17027. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17028. {
  17029. side: {
  17030. height: math.unit(1 + 9 / 12, "feet"),
  17031. weight: math.unit(38, "lb"),
  17032. name: "Side",
  17033. image: {
  17034. source: "./media/characters/michelle/side.svg",
  17035. extra: 147 / 136.7,
  17036. bottom: 0.03
  17037. }
  17038. },
  17039. },
  17040. [
  17041. {
  17042. name: "Normal",
  17043. height: math.unit(1 + 9 / 12, "feet"),
  17044. default: true
  17045. },
  17046. ]
  17047. ))
  17048. characterMakers.push(() => makeCharacter(
  17049. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17050. {
  17051. front: {
  17052. height: math.unit(1 + 1 / 12, "feet"),
  17053. weight: math.unit(18, "lb"),
  17054. name: "Front",
  17055. image: {
  17056. source: "./media/characters/nino/front.svg"
  17057. }
  17058. },
  17059. },
  17060. [
  17061. {
  17062. name: "Normal",
  17063. height: math.unit(1 + 1 / 12, "feet"),
  17064. default: true
  17065. },
  17066. ]
  17067. ))
  17068. characterMakers.push(() => makeCharacter(
  17069. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17070. {
  17071. front: {
  17072. height: math.unit(1, "feet"),
  17073. weight: math.unit(16, "lb"),
  17074. name: "Front",
  17075. image: {
  17076. source: "./media/characters/viola/front.svg"
  17077. }
  17078. },
  17079. },
  17080. [
  17081. {
  17082. name: "Normal",
  17083. height: math.unit(1, "feet"),
  17084. default: true
  17085. },
  17086. ]
  17087. ))
  17088. characterMakers.push(() => makeCharacter(
  17089. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17090. {
  17091. front: {
  17092. height: math.unit(6 + 5 / 12, "feet"),
  17093. weight: math.unit(580, "lb"),
  17094. name: "Front",
  17095. image: {
  17096. source: "./media/characters/atlas/front.svg",
  17097. extra: 298.5 / 290,
  17098. bottom: 0.015
  17099. }
  17100. },
  17101. },
  17102. [
  17103. {
  17104. name: "Normal",
  17105. height: math.unit(6 + 5 / 12, "feet"),
  17106. default: true
  17107. },
  17108. ]
  17109. ))
  17110. characterMakers.push(() => makeCharacter(
  17111. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17112. {
  17113. side: {
  17114. height: math.unit(1 + 10 / 12, "feet"),
  17115. weight: math.unit(25, "lb"),
  17116. name: "Side",
  17117. image: {
  17118. source: "./media/characters/davy/side.svg",
  17119. extra: 200 / 170,
  17120. bottom: 0.01
  17121. }
  17122. },
  17123. },
  17124. [
  17125. {
  17126. name: "Normal",
  17127. height: math.unit(1 + 10 / 12, "feet"),
  17128. default: true
  17129. },
  17130. ]
  17131. ))
  17132. characterMakers.push(() => makeCharacter(
  17133. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17134. {
  17135. side: {
  17136. height: math.unit(4 + 8 / 12, "feet"),
  17137. weight: math.unit(166, "lb"),
  17138. name: "Side",
  17139. image: {
  17140. source: "./media/characters/fiona/side.svg",
  17141. extra: 232 / 220,
  17142. bottom: 0.03
  17143. }
  17144. },
  17145. },
  17146. [
  17147. {
  17148. name: "Normal",
  17149. height: math.unit(4 + 8 / 12, "feet"),
  17150. default: true
  17151. },
  17152. ]
  17153. ))
  17154. characterMakers.push(() => makeCharacter(
  17155. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17156. {
  17157. front: {
  17158. height: math.unit(2, "feet"),
  17159. weight: math.unit(62, "lb"),
  17160. name: "Front",
  17161. image: {
  17162. source: "./media/characters/lyla/front.svg",
  17163. bottom: 0.1
  17164. }
  17165. },
  17166. },
  17167. [
  17168. {
  17169. name: "Normal",
  17170. height: math.unit(2, "feet"),
  17171. default: true
  17172. },
  17173. ]
  17174. ))
  17175. characterMakers.push(() => makeCharacter(
  17176. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17177. {
  17178. side: {
  17179. height: math.unit(1.8, "feet"),
  17180. weight: math.unit(44, "lb"),
  17181. name: "Side",
  17182. image: {
  17183. source: "./media/characters/perseus/side.svg",
  17184. bottom: 0.21
  17185. }
  17186. },
  17187. },
  17188. [
  17189. {
  17190. name: "Normal",
  17191. height: math.unit(1.8, "feet"),
  17192. default: true
  17193. },
  17194. ]
  17195. ))
  17196. characterMakers.push(() => makeCharacter(
  17197. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17198. {
  17199. side: {
  17200. height: math.unit(4 + 2 / 12, "feet"),
  17201. weight: math.unit(20, "lb"),
  17202. name: "Side",
  17203. image: {
  17204. source: "./media/characters/remus/side.svg"
  17205. }
  17206. },
  17207. },
  17208. [
  17209. {
  17210. name: "Normal",
  17211. height: math.unit(4 + 2 / 12, "feet"),
  17212. default: true
  17213. },
  17214. ]
  17215. ))
  17216. characterMakers.push(() => makeCharacter(
  17217. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17218. {
  17219. front: {
  17220. height: math.unit(4 + 11 / 12, "feet"),
  17221. weight: math.unit(114, "lb"),
  17222. name: "Front",
  17223. image: {
  17224. source: "./media/characters/raf/front.svg",
  17225. bottom: 20.5 / 1863
  17226. }
  17227. },
  17228. side: {
  17229. height: math.unit(4 + 11 / 12, "feet"),
  17230. weight: math.unit(114, "lb"),
  17231. name: "Side",
  17232. image: {
  17233. source: "./media/characters/raf/side.svg",
  17234. bottom: 22 / 1822
  17235. }
  17236. },
  17237. },
  17238. [
  17239. {
  17240. name: "Micro",
  17241. height: math.unit(2, "inches")
  17242. },
  17243. {
  17244. name: "Normal",
  17245. height: math.unit(4 + 11 / 12, "feet"),
  17246. default: true
  17247. },
  17248. {
  17249. name: "Macro",
  17250. height: math.unit(70, "feet")
  17251. },
  17252. ]
  17253. ))
  17254. characterMakers.push(() => makeCharacter(
  17255. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17256. {
  17257. front: {
  17258. height: math.unit(1.5, "meters"),
  17259. weight: math.unit(68, "kg"),
  17260. name: "Front",
  17261. image: {
  17262. source: "./media/characters/liam-einarr/front.svg",
  17263. extra: 2822 / 2666
  17264. }
  17265. },
  17266. back: {
  17267. height: math.unit(1.5, "meters"),
  17268. weight: math.unit(68, "kg"),
  17269. name: "Back",
  17270. image: {
  17271. source: "./media/characters/liam-einarr/back.svg",
  17272. extra: 2822 / 2666,
  17273. bottom: 0.015
  17274. }
  17275. },
  17276. },
  17277. [
  17278. {
  17279. name: "Normal",
  17280. height: math.unit(1.5, "meters"),
  17281. default: true
  17282. },
  17283. {
  17284. name: "Macro",
  17285. height: math.unit(150, "meters")
  17286. },
  17287. {
  17288. name: "Megamacro",
  17289. height: math.unit(35, "km")
  17290. },
  17291. ]
  17292. ))
  17293. characterMakers.push(() => makeCharacter(
  17294. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17295. {
  17296. front: {
  17297. height: math.unit(6, "feet"),
  17298. weight: math.unit(75, "kg"),
  17299. name: "Front",
  17300. image: {
  17301. source: "./media/characters/linda/front.svg",
  17302. extra: 930 / 874,
  17303. bottom: 0.004
  17304. }
  17305. },
  17306. },
  17307. [
  17308. {
  17309. name: "Normal",
  17310. height: math.unit(6, "feet"),
  17311. default: true
  17312. },
  17313. ]
  17314. ))
  17315. characterMakers.push(() => makeCharacter(
  17316. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17317. {
  17318. front: {
  17319. height: math.unit(6 + 8 / 12, "feet"),
  17320. weight: math.unit(220, "lb"),
  17321. name: "Front",
  17322. image: {
  17323. source: "./media/characters/caylex/front.svg",
  17324. extra: 821 / 772,
  17325. bottom: 0.07
  17326. }
  17327. },
  17328. back: {
  17329. height: math.unit(6 + 8 / 12, "feet"),
  17330. weight: math.unit(220, "lb"),
  17331. name: "Back",
  17332. image: {
  17333. source: "./media/characters/caylex/back.svg",
  17334. extra: 821 / 772,
  17335. bottom: 0.022
  17336. }
  17337. },
  17338. hand: {
  17339. height: math.unit(1.25, "feet"),
  17340. name: "Hand",
  17341. image: {
  17342. source: "./media/characters/caylex/hand.svg"
  17343. }
  17344. },
  17345. foot: {
  17346. height: math.unit(1.6, "feet"),
  17347. name: "Foot",
  17348. image: {
  17349. source: "./media/characters/caylex/foot.svg"
  17350. }
  17351. },
  17352. armored: {
  17353. height: math.unit(6 + 8 / 12, "feet"),
  17354. weight: math.unit(250, "lb"),
  17355. name: "Armored",
  17356. image: {
  17357. source: "./media/characters/caylex/armored.svg",
  17358. extra: 1420 / 1310,
  17359. bottom: 0.045
  17360. }
  17361. },
  17362. },
  17363. [
  17364. {
  17365. name: "Normal",
  17366. height: math.unit(6 + 8 / 12, "feet"),
  17367. default: true
  17368. },
  17369. {
  17370. name: "Normal+",
  17371. height: math.unit(12, "feet")
  17372. },
  17373. ]
  17374. ))
  17375. characterMakers.push(() => makeCharacter(
  17376. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17377. {
  17378. front: {
  17379. height: math.unit(7 + 6 / 12, "feet"),
  17380. weight: math.unit(288, "lb"),
  17381. name: "Front",
  17382. image: {
  17383. source: "./media/characters/alana/front.svg",
  17384. extra: 679 / 653,
  17385. bottom: 22.5 / 701
  17386. }
  17387. },
  17388. },
  17389. [
  17390. {
  17391. name: "Normal",
  17392. height: math.unit(7 + 6 / 12, "feet")
  17393. },
  17394. {
  17395. name: "Large",
  17396. height: math.unit(50, "feet")
  17397. },
  17398. {
  17399. name: "Macro",
  17400. height: math.unit(100, "feet"),
  17401. default: true
  17402. },
  17403. {
  17404. name: "Macro+",
  17405. height: math.unit(200, "feet")
  17406. },
  17407. ]
  17408. ))
  17409. characterMakers.push(() => makeCharacter(
  17410. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17411. {
  17412. front: {
  17413. height: math.unit(6 + 1 / 12, "feet"),
  17414. weight: math.unit(210, "lb"),
  17415. name: "Front",
  17416. image: {
  17417. source: "./media/characters/hasani/front.svg",
  17418. extra: 244 / 232,
  17419. bottom: 0.01
  17420. }
  17421. },
  17422. back: {
  17423. height: math.unit(6 + 1 / 12, "feet"),
  17424. weight: math.unit(210, "lb"),
  17425. name: "Back",
  17426. image: {
  17427. source: "./media/characters/hasani/back.svg",
  17428. extra: 244 / 232,
  17429. bottom: 0.01
  17430. }
  17431. },
  17432. },
  17433. [
  17434. {
  17435. name: "Normal",
  17436. height: math.unit(6 + 1 / 12, "feet")
  17437. },
  17438. {
  17439. name: "Macro",
  17440. height: math.unit(175, "feet"),
  17441. default: true
  17442. },
  17443. ]
  17444. ))
  17445. characterMakers.push(() => makeCharacter(
  17446. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17447. {
  17448. front: {
  17449. height: math.unit(1.82, "meters"),
  17450. weight: math.unit(140, "lb"),
  17451. name: "Front",
  17452. image: {
  17453. source: "./media/characters/nita/front.svg",
  17454. extra: 2473 / 2363,
  17455. bottom: 0.01
  17456. }
  17457. },
  17458. },
  17459. [
  17460. {
  17461. name: "Normal",
  17462. height: math.unit(1.82, "m")
  17463. },
  17464. {
  17465. name: "Macro",
  17466. height: math.unit(300, "m")
  17467. },
  17468. {
  17469. name: "Mistake Canon",
  17470. height: math.unit(0.5, "miles"),
  17471. default: true
  17472. },
  17473. {
  17474. name: "Big Mistake",
  17475. height: math.unit(13, "miles")
  17476. },
  17477. {
  17478. name: "Playing God",
  17479. height: math.unit(2450, "miles")
  17480. },
  17481. ]
  17482. ))
  17483. characterMakers.push(() => makeCharacter(
  17484. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17485. {
  17486. front: {
  17487. height: math.unit(4, "feet"),
  17488. weight: math.unit(120, "lb"),
  17489. name: "Front",
  17490. image: {
  17491. source: "./media/characters/shiriko/front.svg",
  17492. extra: 970/934,
  17493. bottom: 5/975
  17494. }
  17495. },
  17496. },
  17497. [
  17498. {
  17499. name: "Normal",
  17500. height: math.unit(4, "feet"),
  17501. default: true
  17502. },
  17503. ]
  17504. ))
  17505. characterMakers.push(() => makeCharacter(
  17506. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17507. {
  17508. front: {
  17509. height: math.unit(6, "feet"),
  17510. name: "front",
  17511. image: {
  17512. source: "./media/characters/deja/front.svg",
  17513. extra: 926 / 840,
  17514. bottom: 0.07
  17515. }
  17516. },
  17517. },
  17518. [
  17519. {
  17520. name: "Planck Length",
  17521. height: math.unit(1.6e-35, "meters")
  17522. },
  17523. {
  17524. name: "Normal",
  17525. height: math.unit(30.48, "meters"),
  17526. default: true
  17527. },
  17528. {
  17529. name: "Universal",
  17530. height: math.unit(8.8e26, "meters")
  17531. },
  17532. ]
  17533. ))
  17534. characterMakers.push(() => makeCharacter(
  17535. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17536. {
  17537. side: {
  17538. height: math.unit(8, "feet"),
  17539. weight: math.unit(6300, "lb"),
  17540. name: "Side",
  17541. image: {
  17542. source: "./media/characters/anima/side.svg",
  17543. bottom: 0.035
  17544. }
  17545. },
  17546. },
  17547. [
  17548. {
  17549. name: "Normal",
  17550. height: math.unit(8, "feet"),
  17551. default: true
  17552. },
  17553. ]
  17554. ))
  17555. characterMakers.push(() => makeCharacter(
  17556. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17557. {
  17558. front: {
  17559. height: math.unit(8, "feet"),
  17560. weight: math.unit(350, "lb"),
  17561. name: "Front",
  17562. image: {
  17563. source: "./media/characters/bianca/front.svg",
  17564. extra: 234 / 225,
  17565. bottom: 0.03
  17566. }
  17567. },
  17568. },
  17569. [
  17570. {
  17571. name: "Normal",
  17572. height: math.unit(8, "feet"),
  17573. default: true
  17574. },
  17575. ]
  17576. ))
  17577. characterMakers.push(() => makeCharacter(
  17578. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17579. {
  17580. front: {
  17581. height: math.unit(6, "feet"),
  17582. weight: math.unit(150, "lb"),
  17583. name: "Front",
  17584. image: {
  17585. source: "./media/characters/adinia/front.svg",
  17586. extra: 1845 / 1672,
  17587. bottom: 0.02
  17588. }
  17589. },
  17590. back: {
  17591. height: math.unit(6, "feet"),
  17592. weight: math.unit(150, "lb"),
  17593. name: "Back",
  17594. image: {
  17595. source: "./media/characters/adinia/back.svg",
  17596. extra: 1845 / 1672,
  17597. bottom: 0.002
  17598. }
  17599. },
  17600. },
  17601. [
  17602. {
  17603. name: "Normal",
  17604. height: math.unit(11 + 5 / 12, "feet"),
  17605. default: true
  17606. },
  17607. ]
  17608. ))
  17609. characterMakers.push(() => makeCharacter(
  17610. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17611. {
  17612. front: {
  17613. height: math.unit(3, "meters"),
  17614. weight: math.unit(200, "kg"),
  17615. name: "Front",
  17616. image: {
  17617. source: "./media/characters/lykasa/front.svg",
  17618. extra: 1076 / 976,
  17619. bottom: 0.06
  17620. }
  17621. },
  17622. },
  17623. [
  17624. {
  17625. name: "Normal",
  17626. height: math.unit(3, "meters")
  17627. },
  17628. {
  17629. name: "Kaiju",
  17630. height: math.unit(120, "meters"),
  17631. default: true
  17632. },
  17633. {
  17634. name: "Mega Kaiju",
  17635. height: math.unit(240, "km")
  17636. },
  17637. {
  17638. name: "Giga Kaiju",
  17639. height: math.unit(400, "megameters")
  17640. },
  17641. {
  17642. name: "Tera Kaiju",
  17643. height: math.unit(800, "gigameters")
  17644. },
  17645. {
  17646. name: "Kaiju Dragon Goddess",
  17647. height: math.unit(26, "zettaparsecs")
  17648. },
  17649. ]
  17650. ))
  17651. characterMakers.push(() => makeCharacter(
  17652. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17653. {
  17654. side: {
  17655. height: math.unit(283 / 124 * 6, "feet"),
  17656. weight: math.unit(35000, "lb"),
  17657. name: "Side",
  17658. image: {
  17659. source: "./media/characters/malfaren/side.svg",
  17660. extra: 2500 / 1010,
  17661. bottom: 0.01
  17662. }
  17663. },
  17664. front: {
  17665. height: math.unit(22.36, "feet"),
  17666. weight: math.unit(35000, "lb"),
  17667. name: "Front",
  17668. image: {
  17669. source: "./media/characters/malfaren/front.svg",
  17670. extra: 1631 / 1476,
  17671. bottom: 0.01
  17672. }
  17673. },
  17674. maw: {
  17675. height: math.unit(6.9, "feet"),
  17676. name: "Maw",
  17677. image: {
  17678. source: "./media/characters/malfaren/maw.svg"
  17679. }
  17680. },
  17681. },
  17682. [
  17683. {
  17684. name: "Big",
  17685. height: math.unit(283 / 162 * 6, "feet"),
  17686. },
  17687. {
  17688. name: "Bigger",
  17689. height: math.unit(283 / 124 * 6, "feet")
  17690. },
  17691. {
  17692. name: "Massive",
  17693. height: math.unit(283 / 92 * 6, "feet"),
  17694. default: true
  17695. },
  17696. {
  17697. name: "👀💦",
  17698. height: math.unit(283 / 73 * 6, "feet"),
  17699. },
  17700. ]
  17701. ))
  17702. characterMakers.push(() => makeCharacter(
  17703. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17704. {
  17705. front: {
  17706. height: math.unit(1.7, "m"),
  17707. weight: math.unit(70, "kg"),
  17708. name: "Front",
  17709. image: {
  17710. source: "./media/characters/kernel/front.svg",
  17711. extra: 222 / 210,
  17712. bottom: 0.007
  17713. }
  17714. },
  17715. },
  17716. [
  17717. {
  17718. name: "Nano",
  17719. height: math.unit(17, "micrometers")
  17720. },
  17721. {
  17722. name: "Micro",
  17723. height: math.unit(1.7, "mm")
  17724. },
  17725. {
  17726. name: "Small",
  17727. height: math.unit(1.7, "cm")
  17728. },
  17729. {
  17730. name: "Normal",
  17731. height: math.unit(1.7, "m"),
  17732. default: true
  17733. },
  17734. ]
  17735. ))
  17736. characterMakers.push(() => makeCharacter(
  17737. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17738. {
  17739. front: {
  17740. height: math.unit(1.75, "meters"),
  17741. weight: math.unit(65, "kg"),
  17742. name: "Front",
  17743. image: {
  17744. source: "./media/characters/jayne-folest/front.svg",
  17745. extra: 2115 / 2007,
  17746. bottom: 0.02
  17747. }
  17748. },
  17749. back: {
  17750. height: math.unit(1.75, "meters"),
  17751. weight: math.unit(65, "kg"),
  17752. name: "Back",
  17753. image: {
  17754. source: "./media/characters/jayne-folest/back.svg",
  17755. extra: 2115 / 2007,
  17756. bottom: 0.005
  17757. }
  17758. },
  17759. frontClothed: {
  17760. height: math.unit(1.75, "meters"),
  17761. weight: math.unit(65, "kg"),
  17762. name: "Front (Clothed)",
  17763. image: {
  17764. source: "./media/characters/jayne-folest/front-clothed.svg",
  17765. extra: 2115 / 2007,
  17766. bottom: 0.035
  17767. }
  17768. },
  17769. hand: {
  17770. height: math.unit(1 / 1.260, "feet"),
  17771. name: "Hand",
  17772. image: {
  17773. source: "./media/characters/jayne-folest/hand.svg"
  17774. }
  17775. },
  17776. foot: {
  17777. height: math.unit(1 / 0.918, "feet"),
  17778. name: "Foot",
  17779. image: {
  17780. source: "./media/characters/jayne-folest/foot.svg"
  17781. }
  17782. },
  17783. },
  17784. [
  17785. {
  17786. name: "Micro",
  17787. height: math.unit(4, "cm")
  17788. },
  17789. {
  17790. name: "Normal",
  17791. height: math.unit(1.75, "meters")
  17792. },
  17793. {
  17794. name: "Macro",
  17795. height: math.unit(47.5, "meters"),
  17796. default: true
  17797. },
  17798. ]
  17799. ))
  17800. characterMakers.push(() => makeCharacter(
  17801. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17802. {
  17803. front: {
  17804. height: math.unit(180, "cm"),
  17805. weight: math.unit(70, "kg"),
  17806. name: "Front",
  17807. image: {
  17808. source: "./media/characters/algier/front.svg",
  17809. extra: 596 / 572,
  17810. bottom: 0.04
  17811. }
  17812. },
  17813. back: {
  17814. height: math.unit(180, "cm"),
  17815. weight: math.unit(70, "kg"),
  17816. name: "Back",
  17817. image: {
  17818. source: "./media/characters/algier/back.svg",
  17819. extra: 596 / 572,
  17820. bottom: 0.025
  17821. }
  17822. },
  17823. frontdressed: {
  17824. height: math.unit(180, "cm"),
  17825. weight: math.unit(150, "kg"),
  17826. name: "Front-dressed",
  17827. image: {
  17828. source: "./media/characters/algier/front-dressed.svg",
  17829. extra: 596 / 572,
  17830. bottom: 0.038
  17831. }
  17832. },
  17833. },
  17834. [
  17835. {
  17836. name: "Micro",
  17837. height: math.unit(5, "cm")
  17838. },
  17839. {
  17840. name: "Normal",
  17841. height: math.unit(180, "cm"),
  17842. default: true
  17843. },
  17844. {
  17845. name: "Macro",
  17846. height: math.unit(64, "m")
  17847. },
  17848. ]
  17849. ))
  17850. characterMakers.push(() => makeCharacter(
  17851. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17852. {
  17853. upright: {
  17854. height: math.unit(7, "feet"),
  17855. weight: math.unit(300, "lb"),
  17856. name: "Upright",
  17857. image: {
  17858. source: "./media/characters/pretzel/upright.svg",
  17859. extra: 534 / 522,
  17860. bottom: 0.065
  17861. }
  17862. },
  17863. sprawling: {
  17864. height: math.unit(3.75, "feet"),
  17865. weight: math.unit(300, "lb"),
  17866. name: "Sprawling",
  17867. image: {
  17868. source: "./media/characters/pretzel/sprawling.svg",
  17869. extra: 314 / 281,
  17870. bottom: 0.1
  17871. }
  17872. },
  17873. tongue: {
  17874. height: math.unit(2, "feet"),
  17875. name: "Tongue",
  17876. image: {
  17877. source: "./media/characters/pretzel/tongue.svg"
  17878. }
  17879. },
  17880. },
  17881. [
  17882. {
  17883. name: "Normal",
  17884. height: math.unit(7, "feet"),
  17885. default: true
  17886. },
  17887. {
  17888. name: "Oversized",
  17889. height: math.unit(15, "feet")
  17890. },
  17891. {
  17892. name: "Huge",
  17893. height: math.unit(30, "feet")
  17894. },
  17895. {
  17896. name: "Macro",
  17897. height: math.unit(250, "feet")
  17898. },
  17899. ]
  17900. ))
  17901. characterMakers.push(() => makeCharacter(
  17902. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17903. {
  17904. sideFront: {
  17905. height: math.unit(5 + 2 / 12, "feet"),
  17906. weight: math.unit(120, "lb"),
  17907. name: "Front Side",
  17908. image: {
  17909. source: "./media/characters/roxi/side-front.svg",
  17910. extra: 2924 / 2717,
  17911. bottom: 0.08
  17912. }
  17913. },
  17914. sideBack: {
  17915. height: math.unit(5 + 2 / 12, "feet"),
  17916. weight: math.unit(120, "lb"),
  17917. name: "Back Side",
  17918. image: {
  17919. source: "./media/characters/roxi/side-back.svg",
  17920. extra: 2904 / 2693,
  17921. bottom: 0.06
  17922. }
  17923. },
  17924. front: {
  17925. height: math.unit(5 + 2 / 12, "feet"),
  17926. weight: math.unit(120, "lb"),
  17927. name: "Front",
  17928. image: {
  17929. source: "./media/characters/roxi/front.svg",
  17930. extra: 2028 / 1907,
  17931. bottom: 0.01
  17932. }
  17933. },
  17934. frontAlt: {
  17935. height: math.unit(5 + 2 / 12, "feet"),
  17936. weight: math.unit(120, "lb"),
  17937. name: "Front (Alt)",
  17938. image: {
  17939. source: "./media/characters/roxi/front-alt.svg",
  17940. extra: 1828 / 1798,
  17941. bottom: 0.01
  17942. }
  17943. },
  17944. sitting: {
  17945. height: math.unit(2.8, "feet"),
  17946. weight: math.unit(120, "lb"),
  17947. name: "Sitting",
  17948. image: {
  17949. source: "./media/characters/roxi/sitting.svg",
  17950. extra: 2660 / 2462,
  17951. bottom: 0.1
  17952. }
  17953. },
  17954. },
  17955. [
  17956. {
  17957. name: "Normal",
  17958. height: math.unit(5 + 2 / 12, "feet"),
  17959. default: true
  17960. },
  17961. ]
  17962. ))
  17963. characterMakers.push(() => makeCharacter(
  17964. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17965. {
  17966. side: {
  17967. height: math.unit(55, "feet"),
  17968. weight: math.unit(153, "tons"),
  17969. name: "Side",
  17970. image: {
  17971. source: "./media/characters/shadow/side.svg",
  17972. extra: 701 / 628,
  17973. bottom: 0.02
  17974. }
  17975. },
  17976. flying: {
  17977. height: math.unit(145, "feet"),
  17978. weight: math.unit(153, "tons"),
  17979. name: "Flying",
  17980. image: {
  17981. source: "./media/characters/shadow/flying.svg"
  17982. }
  17983. },
  17984. },
  17985. [
  17986. {
  17987. name: "Normal",
  17988. height: math.unit(55, "feet"),
  17989. default: true
  17990. },
  17991. ]
  17992. ))
  17993. characterMakers.push(() => makeCharacter(
  17994. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17995. {
  17996. front: {
  17997. height: math.unit(6, "feet"),
  17998. weight: math.unit(200, "lb"),
  17999. name: "Front",
  18000. image: {
  18001. source: "./media/characters/marcie/front.svg",
  18002. extra: 960 / 876,
  18003. bottom: 58 / 1017.87
  18004. }
  18005. },
  18006. },
  18007. [
  18008. {
  18009. name: "Macro",
  18010. height: math.unit(1, "mile"),
  18011. default: true
  18012. },
  18013. ]
  18014. ))
  18015. characterMakers.push(() => makeCharacter(
  18016. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18017. {
  18018. front: {
  18019. height: math.unit(7, "feet"),
  18020. weight: math.unit(200, "lb"),
  18021. name: "Front",
  18022. image: {
  18023. source: "./media/characters/kachina/front.svg",
  18024. extra: 1290.68 / 1119,
  18025. bottom: 36.5 / 1327.18
  18026. }
  18027. },
  18028. },
  18029. [
  18030. {
  18031. name: "Normal",
  18032. height: math.unit(7, "feet"),
  18033. default: true
  18034. },
  18035. ]
  18036. ))
  18037. characterMakers.push(() => makeCharacter(
  18038. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18039. {
  18040. looking: {
  18041. height: math.unit(2, "meters"),
  18042. weight: math.unit(300, "kg"),
  18043. name: "Looking",
  18044. image: {
  18045. source: "./media/characters/kash/looking.svg",
  18046. extra: 474 / 344,
  18047. bottom: 0.03
  18048. }
  18049. },
  18050. side: {
  18051. height: math.unit(2, "meters"),
  18052. weight: math.unit(300, "kg"),
  18053. name: "Side",
  18054. image: {
  18055. source: "./media/characters/kash/side.svg",
  18056. extra: 302 / 251,
  18057. bottom: 0.03
  18058. }
  18059. },
  18060. front: {
  18061. height: math.unit(2, "meters"),
  18062. weight: math.unit(300, "kg"),
  18063. name: "Front",
  18064. image: {
  18065. source: "./media/characters/kash/front.svg",
  18066. extra: 495 / 360,
  18067. bottom: 0.015
  18068. }
  18069. },
  18070. },
  18071. [
  18072. {
  18073. name: "Normal",
  18074. height: math.unit(2, "meters"),
  18075. default: true
  18076. },
  18077. {
  18078. name: "Big",
  18079. height: math.unit(3, "meters")
  18080. },
  18081. {
  18082. name: "Large",
  18083. height: math.unit(5, "meters")
  18084. },
  18085. ]
  18086. ))
  18087. characterMakers.push(() => makeCharacter(
  18088. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18089. {
  18090. feeding: {
  18091. height: math.unit(6.7, "feet"),
  18092. weight: math.unit(350, "lb"),
  18093. name: "Feeding",
  18094. image: {
  18095. source: "./media/characters/lalim/feeding.svg",
  18096. }
  18097. },
  18098. },
  18099. [
  18100. {
  18101. name: "Normal",
  18102. height: math.unit(6.7, "feet"),
  18103. default: true
  18104. },
  18105. ]
  18106. ))
  18107. characterMakers.push(() => makeCharacter(
  18108. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18109. {
  18110. front: {
  18111. height: math.unit(9.5, "feet"),
  18112. weight: math.unit(600, "lb"),
  18113. name: "Front",
  18114. image: {
  18115. source: "./media/characters/de'vout/front.svg",
  18116. extra: 1443 / 1328,
  18117. bottom: 0.025
  18118. }
  18119. },
  18120. back: {
  18121. height: math.unit(9.5, "feet"),
  18122. weight: math.unit(600, "lb"),
  18123. name: "Back",
  18124. image: {
  18125. source: "./media/characters/de'vout/back.svg",
  18126. extra: 1443 / 1328
  18127. }
  18128. },
  18129. frontDressed: {
  18130. height: math.unit(9.5, "feet"),
  18131. weight: math.unit(600, "lb"),
  18132. name: "Front (Dressed",
  18133. image: {
  18134. source: "./media/characters/de'vout/front-dressed.svg",
  18135. extra: 1443 / 1328,
  18136. bottom: 0.025
  18137. }
  18138. },
  18139. backDressed: {
  18140. height: math.unit(9.5, "feet"),
  18141. weight: math.unit(600, "lb"),
  18142. name: "Back (Dressed",
  18143. image: {
  18144. source: "./media/characters/de'vout/back-dressed.svg",
  18145. extra: 1443 / 1328
  18146. }
  18147. },
  18148. },
  18149. [
  18150. {
  18151. name: "Normal",
  18152. height: math.unit(9.5, "feet"),
  18153. default: true
  18154. },
  18155. ]
  18156. ))
  18157. characterMakers.push(() => makeCharacter(
  18158. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18159. {
  18160. front: {
  18161. height: math.unit(8, "feet"),
  18162. weight: math.unit(225, "lb"),
  18163. name: "Front",
  18164. image: {
  18165. source: "./media/characters/talana/front.svg",
  18166. extra: 1410 / 1300,
  18167. bottom: 0.015
  18168. }
  18169. },
  18170. frontDressed: {
  18171. height: math.unit(8, "feet"),
  18172. weight: math.unit(225, "lb"),
  18173. name: "Front (Dressed",
  18174. image: {
  18175. source: "./media/characters/talana/front-dressed.svg",
  18176. extra: 1410 / 1300,
  18177. bottom: 0.015
  18178. }
  18179. },
  18180. },
  18181. [
  18182. {
  18183. name: "Normal",
  18184. height: math.unit(8, "feet"),
  18185. default: true
  18186. },
  18187. ]
  18188. ))
  18189. characterMakers.push(() => makeCharacter(
  18190. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18191. {
  18192. side: {
  18193. height: math.unit(7.2, "feet"),
  18194. weight: math.unit(150, "lb"),
  18195. name: "Side",
  18196. image: {
  18197. source: "./media/characters/xeauvok/side.svg",
  18198. extra: 1975 / 1523,
  18199. bottom: 0.07
  18200. }
  18201. },
  18202. },
  18203. [
  18204. {
  18205. name: "Normal",
  18206. height: math.unit(7.2, "feet"),
  18207. default: true
  18208. },
  18209. ]
  18210. ))
  18211. characterMakers.push(() => makeCharacter(
  18212. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18213. {
  18214. side: {
  18215. height: math.unit(10, "feet"),
  18216. weight: math.unit(900, "kg"),
  18217. name: "Side",
  18218. image: {
  18219. source: "./media/characters/zara/side.svg",
  18220. extra: 504 / 498
  18221. }
  18222. },
  18223. },
  18224. [
  18225. {
  18226. name: "Normal",
  18227. height: math.unit(10, "feet"),
  18228. default: true
  18229. },
  18230. ]
  18231. ))
  18232. characterMakers.push(() => makeCharacter(
  18233. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18234. {
  18235. side: {
  18236. height: math.unit(6, "feet"),
  18237. weight: math.unit(150, "lb"),
  18238. name: "Side",
  18239. image: {
  18240. source: "./media/characters/richard-dragon/side.svg",
  18241. extra: 845 / 340,
  18242. bottom: 0.017
  18243. }
  18244. },
  18245. maw: {
  18246. height: math.unit(2.97, "feet"),
  18247. name: "Maw",
  18248. image: {
  18249. source: "./media/characters/richard-dragon/maw.svg"
  18250. }
  18251. },
  18252. },
  18253. [
  18254. ]
  18255. ))
  18256. characterMakers.push(() => makeCharacter(
  18257. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18258. {
  18259. front: {
  18260. height: math.unit(4, "feet"),
  18261. weight: math.unit(100, "lb"),
  18262. name: "Front",
  18263. image: {
  18264. source: "./media/characters/richard-smeargle/front.svg",
  18265. extra: 2952 / 2820,
  18266. bottom: 0.028
  18267. }
  18268. },
  18269. },
  18270. [
  18271. {
  18272. name: "Normal",
  18273. height: math.unit(4, "feet"),
  18274. default: true
  18275. },
  18276. {
  18277. name: "Dynamax",
  18278. height: math.unit(20, "meters")
  18279. },
  18280. ]
  18281. ))
  18282. characterMakers.push(() => makeCharacter(
  18283. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18284. {
  18285. front: {
  18286. height: math.unit(6, "feet"),
  18287. weight: math.unit(110, "lb"),
  18288. name: "Front",
  18289. image: {
  18290. source: "./media/characters/klay/front.svg",
  18291. extra: 962 / 883,
  18292. bottom: 0.04
  18293. }
  18294. },
  18295. back: {
  18296. height: math.unit(6, "feet"),
  18297. weight: math.unit(110, "lb"),
  18298. name: "Back",
  18299. image: {
  18300. source: "./media/characters/klay/back.svg",
  18301. extra: 962 / 883
  18302. }
  18303. },
  18304. beans: {
  18305. height: math.unit(1.15, "feet"),
  18306. name: "Beans",
  18307. image: {
  18308. source: "./media/characters/klay/beans.svg"
  18309. }
  18310. },
  18311. },
  18312. [
  18313. {
  18314. name: "Micro",
  18315. height: math.unit(6, "inches")
  18316. },
  18317. {
  18318. name: "Mini",
  18319. height: math.unit(3, "feet")
  18320. },
  18321. {
  18322. name: "Normal",
  18323. height: math.unit(6, "feet"),
  18324. default: true
  18325. },
  18326. {
  18327. name: "Big",
  18328. height: math.unit(25, "feet")
  18329. },
  18330. {
  18331. name: "Macro",
  18332. height: math.unit(100, "feet")
  18333. },
  18334. {
  18335. name: "Megamacro",
  18336. height: math.unit(400, "feet")
  18337. },
  18338. ]
  18339. ))
  18340. characterMakers.push(() => makeCharacter(
  18341. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18342. {
  18343. front: {
  18344. height: math.unit(6, "feet"),
  18345. weight: math.unit(160, "lb"),
  18346. name: "Front",
  18347. image: {
  18348. source: "./media/characters/marcus/front.svg",
  18349. extra: 734 / 676,
  18350. bottom: 0.03
  18351. }
  18352. },
  18353. },
  18354. [
  18355. {
  18356. name: "Little",
  18357. height: math.unit(6, "feet")
  18358. },
  18359. {
  18360. name: "Normal",
  18361. height: math.unit(110, "feet"),
  18362. default: true
  18363. },
  18364. {
  18365. name: "Macro",
  18366. height: math.unit(250, "feet")
  18367. },
  18368. {
  18369. name: "Megamacro",
  18370. height: math.unit(1000, "feet")
  18371. },
  18372. ]
  18373. ))
  18374. characterMakers.push(() => makeCharacter(
  18375. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18376. {
  18377. front: {
  18378. height: math.unit(7, "feet"),
  18379. weight: math.unit(275, "lb"),
  18380. name: "Front",
  18381. image: {
  18382. source: "./media/characters/claude-delroute/front.svg",
  18383. extra: 230 / 214,
  18384. bottom: 0.007
  18385. }
  18386. },
  18387. side: {
  18388. height: math.unit(7, "feet"),
  18389. weight: math.unit(275, "lb"),
  18390. name: "Side",
  18391. image: {
  18392. source: "./media/characters/claude-delroute/side.svg",
  18393. extra: 222 / 214,
  18394. bottom: 0.01
  18395. }
  18396. },
  18397. back: {
  18398. height: math.unit(7, "feet"),
  18399. weight: math.unit(275, "lb"),
  18400. name: "Back",
  18401. image: {
  18402. source: "./media/characters/claude-delroute/back.svg",
  18403. extra: 230 / 214,
  18404. bottom: 0.015
  18405. }
  18406. },
  18407. maw: {
  18408. height: math.unit(0.6407, "meters"),
  18409. name: "Maw",
  18410. image: {
  18411. source: "./media/characters/claude-delroute/maw.svg"
  18412. }
  18413. },
  18414. },
  18415. [
  18416. {
  18417. name: "Normal",
  18418. height: math.unit(7, "feet"),
  18419. default: true
  18420. },
  18421. {
  18422. name: "Lorge",
  18423. height: math.unit(20, "feet")
  18424. },
  18425. ]
  18426. ))
  18427. characterMakers.push(() => makeCharacter(
  18428. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18429. {
  18430. front: {
  18431. height: math.unit(8 + 4 / 12, "feet"),
  18432. weight: math.unit(600, "lb"),
  18433. name: "Front",
  18434. image: {
  18435. source: "./media/characters/dragonien/front.svg",
  18436. extra: 100 / 94,
  18437. bottom: 3.3 / 103.3445
  18438. }
  18439. },
  18440. back: {
  18441. height: math.unit(8 + 4 / 12, "feet"),
  18442. weight: math.unit(600, "lb"),
  18443. name: "Back",
  18444. image: {
  18445. source: "./media/characters/dragonien/back.svg",
  18446. extra: 776 / 746,
  18447. bottom: 6.4 / 782.0616
  18448. }
  18449. },
  18450. foot: {
  18451. height: math.unit(1.54, "feet"),
  18452. name: "Foot",
  18453. image: {
  18454. source: "./media/characters/dragonien/foot.svg",
  18455. }
  18456. },
  18457. },
  18458. [
  18459. {
  18460. name: "Normal",
  18461. height: math.unit(8 + 4 / 12, "feet"),
  18462. default: true
  18463. },
  18464. {
  18465. name: "Macro",
  18466. height: math.unit(200, "feet")
  18467. },
  18468. {
  18469. name: "Megamacro",
  18470. height: math.unit(1, "mile")
  18471. },
  18472. {
  18473. name: "Gigamacro",
  18474. height: math.unit(1000, "miles")
  18475. },
  18476. ]
  18477. ))
  18478. characterMakers.push(() => makeCharacter(
  18479. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18480. {
  18481. front: {
  18482. height: math.unit(5 + 2 / 12, "feet"),
  18483. weight: math.unit(110, "lb"),
  18484. name: "Front",
  18485. image: {
  18486. source: "./media/characters/desta/front.svg",
  18487. extra: 767 / 726,
  18488. bottom: 11.7 / 779
  18489. }
  18490. },
  18491. back: {
  18492. height: math.unit(5 + 2 / 12, "feet"),
  18493. weight: math.unit(110, "lb"),
  18494. name: "Back",
  18495. image: {
  18496. source: "./media/characters/desta/back.svg",
  18497. extra: 777 / 728,
  18498. bottom: 6 / 784
  18499. }
  18500. },
  18501. frontAlt: {
  18502. height: math.unit(5 + 2 / 12, "feet"),
  18503. weight: math.unit(110, "lb"),
  18504. name: "Front",
  18505. image: {
  18506. source: "./media/characters/desta/front-alt.svg",
  18507. extra: 1482 / 1417
  18508. }
  18509. },
  18510. side: {
  18511. height: math.unit(5 + 2 / 12, "feet"),
  18512. weight: math.unit(110, "lb"),
  18513. name: "Side",
  18514. image: {
  18515. source: "./media/characters/desta/side.svg",
  18516. extra: 2579 / 2491,
  18517. bottom: 0.053
  18518. }
  18519. },
  18520. },
  18521. [
  18522. {
  18523. name: "Micro",
  18524. height: math.unit(6, "inches")
  18525. },
  18526. {
  18527. name: "Normal",
  18528. height: math.unit(5 + 2 / 12, "feet"),
  18529. default: true
  18530. },
  18531. {
  18532. name: "Macro",
  18533. height: math.unit(62, "feet")
  18534. },
  18535. {
  18536. name: "Megamacro",
  18537. height: math.unit(1800, "feet")
  18538. },
  18539. ]
  18540. ))
  18541. characterMakers.push(() => makeCharacter(
  18542. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18543. {
  18544. front: {
  18545. height: math.unit(10, "feet"),
  18546. weight: math.unit(700, "lb"),
  18547. name: "Front",
  18548. image: {
  18549. source: "./media/characters/storm-alystar/front.svg",
  18550. extra: 2112 / 1898,
  18551. bottom: 0.034
  18552. }
  18553. },
  18554. },
  18555. [
  18556. {
  18557. name: "Micro",
  18558. height: math.unit(3.5, "inches")
  18559. },
  18560. {
  18561. name: "Normal",
  18562. height: math.unit(10, "feet"),
  18563. default: true
  18564. },
  18565. {
  18566. name: "Macro",
  18567. height: math.unit(400, "feet")
  18568. },
  18569. {
  18570. name: "Deific",
  18571. height: math.unit(60, "miles")
  18572. },
  18573. ]
  18574. ))
  18575. characterMakers.push(() => makeCharacter(
  18576. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18577. {
  18578. front: {
  18579. height: math.unit(2.35, "meters"),
  18580. weight: math.unit(119, "kg"),
  18581. name: "Front",
  18582. image: {
  18583. source: "./media/characters/ilia/front.svg",
  18584. extra: 1285 / 1255,
  18585. bottom: 0.06
  18586. }
  18587. },
  18588. },
  18589. [
  18590. {
  18591. name: "Normal",
  18592. height: math.unit(2.35, "meters")
  18593. },
  18594. {
  18595. name: "Macro",
  18596. height: math.unit(140, "meters"),
  18597. default: true
  18598. },
  18599. {
  18600. name: "Megamacro",
  18601. height: math.unit(100, "miles")
  18602. },
  18603. ]
  18604. ))
  18605. characterMakers.push(() => makeCharacter(
  18606. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18607. {
  18608. front: {
  18609. height: math.unit(6 + 5 / 12, "feet"),
  18610. weight: math.unit(190, "lb"),
  18611. name: "Front",
  18612. image: {
  18613. source: "./media/characters/kingdead/front.svg",
  18614. extra: 1228 / 1177
  18615. }
  18616. },
  18617. },
  18618. [
  18619. {
  18620. name: "Micro",
  18621. height: math.unit(7, "inches")
  18622. },
  18623. {
  18624. name: "Normal",
  18625. height: math.unit(6 + 5 / 12, "feet")
  18626. },
  18627. {
  18628. name: "Macro",
  18629. height: math.unit(150, "feet"),
  18630. default: true
  18631. },
  18632. {
  18633. name: "Megamacro",
  18634. height: math.unit(200, "miles")
  18635. },
  18636. ]
  18637. ))
  18638. characterMakers.push(() => makeCharacter(
  18639. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18640. {
  18641. front: {
  18642. height: math.unit(8, "feet"),
  18643. weight: math.unit(600, "lb"),
  18644. name: "Front",
  18645. image: {
  18646. source: "./media/characters/kyrehx/front.svg",
  18647. extra: 1195 / 1095,
  18648. bottom: 0.034
  18649. }
  18650. },
  18651. },
  18652. [
  18653. {
  18654. name: "Micro",
  18655. height: math.unit(2, "inches")
  18656. },
  18657. {
  18658. name: "Normal",
  18659. height: math.unit(8, "feet"),
  18660. default: true
  18661. },
  18662. {
  18663. name: "Macro",
  18664. height: math.unit(255, "feet")
  18665. },
  18666. ]
  18667. ))
  18668. characterMakers.push(() => makeCharacter(
  18669. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18670. {
  18671. front: {
  18672. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18673. weight: math.unit(184, "lb"),
  18674. name: "Front",
  18675. image: {
  18676. source: "./media/characters/xang/front.svg",
  18677. extra: 845 / 755
  18678. }
  18679. },
  18680. },
  18681. [
  18682. {
  18683. name: "Normal",
  18684. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18685. default: true
  18686. },
  18687. {
  18688. name: "Macro",
  18689. height: math.unit(0.935 * 146, "feet")
  18690. },
  18691. {
  18692. name: "Megamacro",
  18693. height: math.unit(0.935 * 3, "miles")
  18694. },
  18695. ]
  18696. ))
  18697. characterMakers.push(() => makeCharacter(
  18698. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18699. {
  18700. frontDressed: {
  18701. height: math.unit(5 + 7 / 12, "feet"),
  18702. weight: math.unit(140, "lb"),
  18703. name: "Front (Dressed)",
  18704. image: {
  18705. source: "./media/characters/doc-weardno/front-dressed.svg",
  18706. extra: 263 / 234
  18707. }
  18708. },
  18709. backDressed: {
  18710. height: math.unit(5 + 7 / 12, "feet"),
  18711. weight: math.unit(140, "lb"),
  18712. name: "Back (Dressed)",
  18713. image: {
  18714. source: "./media/characters/doc-weardno/back-dressed.svg",
  18715. extra: 266 / 238
  18716. }
  18717. },
  18718. front: {
  18719. height: math.unit(5 + 7 / 12, "feet"),
  18720. weight: math.unit(140, "lb"),
  18721. name: "Front",
  18722. image: {
  18723. source: "./media/characters/doc-weardno/front.svg",
  18724. extra: 254 / 233
  18725. }
  18726. },
  18727. },
  18728. [
  18729. {
  18730. name: "Micro",
  18731. height: math.unit(3, "inches")
  18732. },
  18733. {
  18734. name: "Normal",
  18735. height: math.unit(5 + 7 / 12, "feet"),
  18736. default: true
  18737. },
  18738. {
  18739. name: "Macro",
  18740. height: math.unit(25, "feet")
  18741. },
  18742. {
  18743. name: "Megamacro",
  18744. height: math.unit(2, "miles")
  18745. },
  18746. ]
  18747. ))
  18748. characterMakers.push(() => makeCharacter(
  18749. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18750. {
  18751. front: {
  18752. height: math.unit(6 + 2 / 12, "feet"),
  18753. weight: math.unit(153, "lb"),
  18754. name: "Front",
  18755. image: {
  18756. source: "./media/characters/seth-whilst/front.svg",
  18757. bottom: 0.07
  18758. }
  18759. },
  18760. },
  18761. [
  18762. {
  18763. name: "Micro",
  18764. height: math.unit(5, "inches")
  18765. },
  18766. {
  18767. name: "Normal",
  18768. height: math.unit(6 + 2 / 12, "feet"),
  18769. default: true
  18770. },
  18771. ]
  18772. ))
  18773. characterMakers.push(() => makeCharacter(
  18774. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18775. {
  18776. front: {
  18777. height: math.unit(3, "inches"),
  18778. weight: math.unit(8, "grams"),
  18779. name: "Front",
  18780. image: {
  18781. source: "./media/characters/pocket-jabari/front.svg",
  18782. extra: 1024 / 974,
  18783. bottom: 0.039
  18784. }
  18785. },
  18786. },
  18787. [
  18788. {
  18789. name: "Minimicro",
  18790. height: math.unit(8, "mm")
  18791. },
  18792. {
  18793. name: "Micro",
  18794. height: math.unit(3, "inches"),
  18795. default: true
  18796. },
  18797. {
  18798. name: "Normal",
  18799. height: math.unit(3, "feet")
  18800. },
  18801. ]
  18802. ))
  18803. characterMakers.push(() => makeCharacter(
  18804. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18805. {
  18806. front: {
  18807. height: math.unit(15, "feet"),
  18808. weight: math.unit(3280, "lb"),
  18809. name: "Front",
  18810. image: {
  18811. source: "./media/characters/sapphy/front.svg",
  18812. extra: 671 / 577,
  18813. bottom: 0.085
  18814. }
  18815. },
  18816. back: {
  18817. height: math.unit(15, "feet"),
  18818. weight: math.unit(3280, "lb"),
  18819. name: "Back",
  18820. image: {
  18821. source: "./media/characters/sapphy/back.svg",
  18822. extra: 631 / 607,
  18823. bottom: 0.045
  18824. }
  18825. },
  18826. },
  18827. [
  18828. {
  18829. name: "Normal",
  18830. height: math.unit(15, "feet")
  18831. },
  18832. {
  18833. name: "Casual Macro",
  18834. height: math.unit(120, "feet")
  18835. },
  18836. {
  18837. name: "Macro",
  18838. height: math.unit(2150, "feet"),
  18839. default: true
  18840. },
  18841. {
  18842. name: "Megamacro",
  18843. height: math.unit(8, "miles")
  18844. },
  18845. {
  18846. name: "Galaxy Mom",
  18847. height: math.unit(6, "megalightyears")
  18848. },
  18849. ]
  18850. ))
  18851. characterMakers.push(() => makeCharacter(
  18852. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18853. {
  18854. front: {
  18855. height: math.unit(6, "feet"),
  18856. weight: math.unit(170, "lb"),
  18857. name: "Front",
  18858. image: {
  18859. source: "./media/characters/kiro/front.svg",
  18860. extra: 1064 / 1012,
  18861. bottom: 0.052
  18862. }
  18863. },
  18864. },
  18865. [
  18866. {
  18867. name: "Micro",
  18868. height: math.unit(6, "inches")
  18869. },
  18870. {
  18871. name: "Normal",
  18872. height: math.unit(6, "feet"),
  18873. default: true
  18874. },
  18875. {
  18876. name: "Macro",
  18877. height: math.unit(72, "feet")
  18878. },
  18879. ]
  18880. ))
  18881. characterMakers.push(() => makeCharacter(
  18882. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18883. {
  18884. front: {
  18885. height: math.unit(5 + 9 / 12, "feet"),
  18886. weight: math.unit(175, "lb"),
  18887. name: "Front",
  18888. image: {
  18889. source: "./media/characters/irishfox/front.svg",
  18890. extra: 1912 / 1680,
  18891. bottom: 0.02
  18892. }
  18893. },
  18894. },
  18895. [
  18896. {
  18897. name: "Nano",
  18898. height: math.unit(1, "mm")
  18899. },
  18900. {
  18901. name: "Micro",
  18902. height: math.unit(2, "inches")
  18903. },
  18904. {
  18905. name: "Normal",
  18906. height: math.unit(5 + 9 / 12, "feet"),
  18907. default: true
  18908. },
  18909. {
  18910. name: "Macro",
  18911. height: math.unit(45, "feet")
  18912. },
  18913. ]
  18914. ))
  18915. characterMakers.push(() => makeCharacter(
  18916. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18917. {
  18918. front: {
  18919. height: math.unit(6 + 1 / 12, "feet"),
  18920. weight: math.unit(75, "lb"),
  18921. name: "Front",
  18922. image: {
  18923. source: "./media/characters/aronai-sieyes/front.svg",
  18924. extra: 1556 / 1480,
  18925. bottom: 0.015
  18926. }
  18927. },
  18928. side: {
  18929. height: math.unit(6 + 1 / 12, "feet"),
  18930. weight: math.unit(75, "lb"),
  18931. name: "Side",
  18932. image: {
  18933. source: "./media/characters/aronai-sieyes/side.svg",
  18934. extra: 1433 / 1390,
  18935. bottom: 0.0393
  18936. }
  18937. },
  18938. back: {
  18939. height: math.unit(6 + 1 / 12, "feet"),
  18940. weight: math.unit(75, "lb"),
  18941. name: "Back",
  18942. image: {
  18943. source: "./media/characters/aronai-sieyes/back.svg",
  18944. extra: 1544 / 1494,
  18945. bottom: 0.02
  18946. }
  18947. },
  18948. frontClothed: {
  18949. height: math.unit(6 + 1 / 12, "feet"),
  18950. weight: math.unit(75, "lb"),
  18951. name: "Front (Clothed)",
  18952. image: {
  18953. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18954. extra: 1582 / 1527
  18955. }
  18956. },
  18957. feral: {
  18958. height: math.unit(18, "feet"),
  18959. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18960. name: "Feral",
  18961. image: {
  18962. source: "./media/characters/aronai-sieyes/feral.svg",
  18963. extra: 1530 / 1240,
  18964. bottom: 0.035
  18965. }
  18966. },
  18967. },
  18968. [
  18969. {
  18970. name: "Micro",
  18971. height: math.unit(2, "inches")
  18972. },
  18973. {
  18974. name: "Normal",
  18975. height: math.unit(6 + 1 / 12, "feet"),
  18976. default: true
  18977. }
  18978. ]
  18979. ))
  18980. characterMakers.push(() => makeCharacter(
  18981. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18982. {
  18983. front: {
  18984. height: math.unit(12, "feet"),
  18985. weight: math.unit(410, "kg"),
  18986. name: "Front",
  18987. image: {
  18988. source: "./media/characters/xuna/front.svg",
  18989. extra: 2184 / 1980
  18990. }
  18991. },
  18992. side: {
  18993. height: math.unit(12, "feet"),
  18994. weight: math.unit(410, "kg"),
  18995. name: "Side",
  18996. image: {
  18997. source: "./media/characters/xuna/side.svg",
  18998. extra: 2184 / 1980
  18999. }
  19000. },
  19001. back: {
  19002. height: math.unit(12, "feet"),
  19003. weight: math.unit(410, "kg"),
  19004. name: "Back",
  19005. image: {
  19006. source: "./media/characters/xuna/back.svg",
  19007. extra: 2184 / 1980
  19008. }
  19009. },
  19010. },
  19011. [
  19012. {
  19013. name: "Nano glow",
  19014. height: math.unit(10, "nm")
  19015. },
  19016. {
  19017. name: "Micro floof",
  19018. height: math.unit(0.3, "m")
  19019. },
  19020. {
  19021. name: "Huggable softy boi",
  19022. height: math.unit(3.6576, "m"),
  19023. default: true
  19024. },
  19025. {
  19026. name: "Admirable floof",
  19027. height: math.unit(80, "meters")
  19028. },
  19029. {
  19030. name: "Gentle macro",
  19031. height: math.unit(300, "meters")
  19032. },
  19033. {
  19034. name: "Very careful floof",
  19035. height: math.unit(3200, "meters")
  19036. },
  19037. {
  19038. name: "The mega floof",
  19039. height: math.unit(36000, "meters")
  19040. },
  19041. {
  19042. name: "Giga-fur-Wicker",
  19043. height: math.unit(4800000, "meters")
  19044. },
  19045. {
  19046. name: "Licky world",
  19047. height: math.unit(20000000, "meters")
  19048. },
  19049. {
  19050. name: "Floofy cyan sun",
  19051. height: math.unit(1500000000, "meters")
  19052. },
  19053. {
  19054. name: "Milky Wicker",
  19055. height: math.unit(1000000000000000000000, "meters")
  19056. },
  19057. {
  19058. name: "The observing Wicker",
  19059. height: math.unit(999999999999999999999999999, "meters")
  19060. },
  19061. ]
  19062. ))
  19063. characterMakers.push(() => makeCharacter(
  19064. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19065. {
  19066. front: {
  19067. height: math.unit(5 + 9 / 12, "feet"),
  19068. weight: math.unit(150, "lb"),
  19069. name: "Front",
  19070. image: {
  19071. source: "./media/characters/arokha-sieyes/front.svg",
  19072. extra: 1425 / 1284,
  19073. bottom: 0.05
  19074. }
  19075. },
  19076. },
  19077. [
  19078. {
  19079. name: "Normal",
  19080. height: math.unit(5 + 9 / 12, "feet")
  19081. },
  19082. {
  19083. name: "Macro",
  19084. height: math.unit(30, "meters"),
  19085. default: true
  19086. },
  19087. ]
  19088. ))
  19089. characterMakers.push(() => makeCharacter(
  19090. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19091. {
  19092. front: {
  19093. height: math.unit(6, "feet"),
  19094. weight: math.unit(180, "lb"),
  19095. name: "Front",
  19096. image: {
  19097. source: "./media/characters/arokh-sieyes/front.svg",
  19098. extra: 1830 / 1769,
  19099. bottom: 0.01
  19100. }
  19101. },
  19102. },
  19103. [
  19104. {
  19105. name: "Normal",
  19106. height: math.unit(6, "feet")
  19107. },
  19108. {
  19109. name: "Macro",
  19110. height: math.unit(30, "meters"),
  19111. default: true
  19112. },
  19113. ]
  19114. ))
  19115. characterMakers.push(() => makeCharacter(
  19116. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19117. {
  19118. side: {
  19119. height: math.unit(13 + 1 / 12, "feet"),
  19120. weight: math.unit(8.5, "tonnes"),
  19121. name: "Side",
  19122. image: {
  19123. source: "./media/characters/goldeneye/side.svg",
  19124. extra: 1182 / 778,
  19125. bottom: 0.067
  19126. }
  19127. },
  19128. paw: {
  19129. height: math.unit(3.4, "feet"),
  19130. name: "Paw",
  19131. image: {
  19132. source: "./media/characters/goldeneye/paw.svg"
  19133. }
  19134. },
  19135. },
  19136. [
  19137. {
  19138. name: "Normal",
  19139. height: math.unit(13 + 1 / 12, "feet"),
  19140. default: true
  19141. },
  19142. ]
  19143. ))
  19144. characterMakers.push(() => makeCharacter(
  19145. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19146. {
  19147. front: {
  19148. height: math.unit(6 + 1 / 12, "feet"),
  19149. weight: math.unit(210, "lb"),
  19150. name: "Front",
  19151. image: {
  19152. source: "./media/characters/leonardo-lycheborne/front.svg",
  19153. extra: 776/723,
  19154. bottom: 34/810
  19155. }
  19156. },
  19157. side: {
  19158. height: math.unit(6 + 1 / 12, "feet"),
  19159. weight: math.unit(210, "lb"),
  19160. name: "Side",
  19161. image: {
  19162. source: "./media/characters/leonardo-lycheborne/side.svg",
  19163. extra: 780/728,
  19164. bottom: 12/792
  19165. }
  19166. },
  19167. back: {
  19168. height: math.unit(6 + 1 / 12, "feet"),
  19169. weight: math.unit(210, "lb"),
  19170. name: "Back",
  19171. image: {
  19172. source: "./media/characters/leonardo-lycheborne/back.svg",
  19173. extra: 775/721,
  19174. bottom: 17/792
  19175. }
  19176. },
  19177. hand: {
  19178. height: math.unit(1.08, "feet"),
  19179. name: "Hand",
  19180. image: {
  19181. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19182. }
  19183. },
  19184. foot: {
  19185. height: math.unit(1.32, "feet"),
  19186. name: "Foot",
  19187. image: {
  19188. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19189. }
  19190. },
  19191. maw: {
  19192. height: math.unit(1, "feet"),
  19193. name: "Maw",
  19194. image: {
  19195. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19196. }
  19197. },
  19198. were: {
  19199. height: math.unit(20, "feet"),
  19200. weight: math.unit(7800, "lb"),
  19201. name: "Were",
  19202. image: {
  19203. source: "./media/characters/leonardo-lycheborne/were.svg",
  19204. extra: 1224/1165,
  19205. bottom: 72/1296
  19206. }
  19207. },
  19208. feral: {
  19209. height: math.unit(7.5, "feet"),
  19210. weight: math.unit(600, "lb"),
  19211. name: "Feral",
  19212. image: {
  19213. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19214. extra: 797/702,
  19215. bottom: 139/936
  19216. }
  19217. },
  19218. taur: {
  19219. height: math.unit(11, "feet"),
  19220. weight: math.unit(3300, "lb"),
  19221. name: "Taur",
  19222. image: {
  19223. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19224. extra: 1271/1197,
  19225. bottom: 47/1318
  19226. }
  19227. },
  19228. barghest: {
  19229. height: math.unit(11, "feet"),
  19230. weight: math.unit(1300, "lb"),
  19231. name: "Barghest",
  19232. image: {
  19233. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19234. extra: 1291/1204,
  19235. bottom: 37/1328
  19236. }
  19237. },
  19238. dick: {
  19239. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19240. name: "Dick",
  19241. image: {
  19242. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19243. }
  19244. },
  19245. dickWere: {
  19246. height: math.unit((20) / 3.8, "feet"),
  19247. name: "Dick (Were)",
  19248. image: {
  19249. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19250. }
  19251. },
  19252. },
  19253. [
  19254. {
  19255. name: "Normal",
  19256. height: math.unit(6 + 1 / 12, "feet"),
  19257. default: true
  19258. },
  19259. ]
  19260. ))
  19261. characterMakers.push(() => makeCharacter(
  19262. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19263. {
  19264. front: {
  19265. height: math.unit(10, "feet"),
  19266. weight: math.unit(350, "lb"),
  19267. name: "Front",
  19268. image: {
  19269. source: "./media/characters/jet/front.svg",
  19270. extra: 2050 / 1980,
  19271. bottom: 0.013
  19272. }
  19273. },
  19274. back: {
  19275. height: math.unit(10, "feet"),
  19276. weight: math.unit(350, "lb"),
  19277. name: "Back",
  19278. image: {
  19279. source: "./media/characters/jet/back.svg",
  19280. extra: 2050 / 1980,
  19281. bottom: 0.013
  19282. }
  19283. },
  19284. },
  19285. [
  19286. {
  19287. name: "Micro",
  19288. height: math.unit(6, "inches")
  19289. },
  19290. {
  19291. name: "Normal",
  19292. height: math.unit(10, "feet"),
  19293. default: true
  19294. },
  19295. {
  19296. name: "Macro",
  19297. height: math.unit(100, "feet")
  19298. },
  19299. ]
  19300. ))
  19301. characterMakers.push(() => makeCharacter(
  19302. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19303. {
  19304. front: {
  19305. height: math.unit(15, "feet"),
  19306. weight: math.unit(2800, "lb"),
  19307. name: "Front",
  19308. image: {
  19309. source: "./media/characters/tanarath/front.svg",
  19310. extra: 2392 / 2220,
  19311. bottom: 0.03
  19312. }
  19313. },
  19314. back: {
  19315. height: math.unit(15, "feet"),
  19316. weight: math.unit(2800, "lb"),
  19317. name: "Back",
  19318. image: {
  19319. source: "./media/characters/tanarath/back.svg",
  19320. extra: 2392 / 2220,
  19321. bottom: 0.03
  19322. }
  19323. },
  19324. },
  19325. [
  19326. {
  19327. name: "Normal",
  19328. height: math.unit(15, "feet"),
  19329. default: true
  19330. },
  19331. ]
  19332. ))
  19333. characterMakers.push(() => makeCharacter(
  19334. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19335. {
  19336. front: {
  19337. height: math.unit(7 + 1 / 12, "feet"),
  19338. weight: math.unit(175, "lb"),
  19339. name: "Front",
  19340. image: {
  19341. source: "./media/characters/patty-cattybatty/front.svg",
  19342. extra: 908 / 874,
  19343. bottom: 0.025
  19344. }
  19345. },
  19346. },
  19347. [
  19348. {
  19349. name: "Micro",
  19350. height: math.unit(1, "inch")
  19351. },
  19352. {
  19353. name: "Normal",
  19354. height: math.unit(7 + 1 / 12, "feet")
  19355. },
  19356. {
  19357. name: "Mini Macro",
  19358. height: math.unit(155, "feet")
  19359. },
  19360. {
  19361. name: "Macro",
  19362. height: math.unit(1077, "feet")
  19363. },
  19364. {
  19365. name: "Mega Macro",
  19366. height: math.unit(47650, "feet"),
  19367. default: true
  19368. },
  19369. {
  19370. name: "Giga Macro",
  19371. height: math.unit(440, "miles")
  19372. },
  19373. {
  19374. name: "Tera Macro",
  19375. height: math.unit(8700, "miles")
  19376. },
  19377. {
  19378. name: "Planetary Macro",
  19379. height: math.unit(32700, "miles")
  19380. },
  19381. {
  19382. name: "Solar Macro",
  19383. height: math.unit(550000, "miles")
  19384. },
  19385. {
  19386. name: "Celestial Macro",
  19387. height: math.unit(2.5, "AU")
  19388. },
  19389. ]
  19390. ))
  19391. characterMakers.push(() => makeCharacter(
  19392. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19393. {
  19394. front: {
  19395. height: math.unit(4 + 5 / 12, "feet"),
  19396. weight: math.unit(90, "lb"),
  19397. name: "Front",
  19398. image: {
  19399. source: "./media/characters/cappu/front.svg",
  19400. extra: 1247 / 1152,
  19401. bottom: 0.012
  19402. }
  19403. },
  19404. },
  19405. [
  19406. {
  19407. name: "Normal",
  19408. height: math.unit(4 + 5 / 12, "feet"),
  19409. default: true
  19410. },
  19411. ]
  19412. ))
  19413. characterMakers.push(() => makeCharacter(
  19414. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19415. {
  19416. frontDressed: {
  19417. height: math.unit(70, "cm"),
  19418. weight: math.unit(6, "kg"),
  19419. name: "Front (Dressed)",
  19420. image: {
  19421. source: "./media/characters/sebi/front-dressed.svg",
  19422. extra: 713.5 / 686.5,
  19423. bottom: 0.003
  19424. }
  19425. },
  19426. front: {
  19427. height: math.unit(70, "cm"),
  19428. weight: math.unit(5, "kg"),
  19429. name: "Front",
  19430. image: {
  19431. source: "./media/characters/sebi/front.svg",
  19432. extra: 713.5 / 686.5,
  19433. bottom: 0.003
  19434. }
  19435. }
  19436. },
  19437. [
  19438. {
  19439. name: "Normal",
  19440. height: math.unit(70, "cm"),
  19441. default: true
  19442. },
  19443. {
  19444. name: "Macro",
  19445. height: math.unit(8, "meters")
  19446. },
  19447. ]
  19448. ))
  19449. characterMakers.push(() => makeCharacter(
  19450. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19451. {
  19452. front: {
  19453. height: math.unit(6, "feet"),
  19454. weight: math.unit(150, "lb"),
  19455. name: "Front",
  19456. image: {
  19457. source: "./media/characters/typhek/front.svg",
  19458. extra: 1948 / 1929,
  19459. bottom: 0.025
  19460. }
  19461. },
  19462. side: {
  19463. height: math.unit(6, "feet"),
  19464. weight: math.unit(150, "lb"),
  19465. name: "Side",
  19466. image: {
  19467. source: "./media/characters/typhek/side.svg",
  19468. extra: 2034 / 2010,
  19469. bottom: 0.003
  19470. }
  19471. },
  19472. back: {
  19473. height: math.unit(6, "feet"),
  19474. weight: math.unit(150, "lb"),
  19475. name: "Back",
  19476. image: {
  19477. source: "./media/characters/typhek/back.svg",
  19478. extra: 2005 / 1978,
  19479. bottom: 0.004
  19480. }
  19481. },
  19482. palm: {
  19483. height: math.unit(1.2, "feet"),
  19484. name: "Palm",
  19485. image: {
  19486. source: "./media/characters/typhek/palm.svg"
  19487. }
  19488. },
  19489. fist: {
  19490. height: math.unit(1.1, "feet"),
  19491. name: "Fist",
  19492. image: {
  19493. source: "./media/characters/typhek/fist.svg"
  19494. }
  19495. },
  19496. foot: {
  19497. height: math.unit(1.57, "feet"),
  19498. name: "Foot",
  19499. image: {
  19500. source: "./media/characters/typhek/foot.svg"
  19501. }
  19502. },
  19503. sole: {
  19504. height: math.unit(2.05, "feet"),
  19505. name: "Sole",
  19506. image: {
  19507. source: "./media/characters/typhek/sole.svg"
  19508. }
  19509. },
  19510. },
  19511. [
  19512. {
  19513. name: "Macro",
  19514. height: math.unit(40, "stories"),
  19515. default: true
  19516. },
  19517. {
  19518. name: "Megamacro",
  19519. height: math.unit(1, "mile")
  19520. },
  19521. {
  19522. name: "Gigamacro",
  19523. height: math.unit(4000, "solarradii")
  19524. },
  19525. {
  19526. name: "Universal",
  19527. height: math.unit(1.1, "universes")
  19528. }
  19529. ]
  19530. ))
  19531. characterMakers.push(() => makeCharacter(
  19532. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19533. {
  19534. side: {
  19535. height: math.unit(5 + 7 / 12, "feet"),
  19536. weight: math.unit(150, "lb"),
  19537. name: "Side",
  19538. image: {
  19539. source: "./media/characters/kassy/side.svg",
  19540. extra: 1280 / 1225,
  19541. bottom: 0.002
  19542. }
  19543. },
  19544. front: {
  19545. height: math.unit(5 + 7 / 12, "feet"),
  19546. weight: math.unit(150, "lb"),
  19547. name: "Front",
  19548. image: {
  19549. source: "./media/characters/kassy/front.svg",
  19550. extra: 1280 / 1225,
  19551. bottom: 0.025
  19552. }
  19553. },
  19554. back: {
  19555. height: math.unit(5 + 7 / 12, "feet"),
  19556. weight: math.unit(150, "lb"),
  19557. name: "Back",
  19558. image: {
  19559. source: "./media/characters/kassy/back.svg",
  19560. extra: 1280 / 1225,
  19561. bottom: 0.002
  19562. }
  19563. },
  19564. foot: {
  19565. height: math.unit(1.266, "feet"),
  19566. name: "Foot",
  19567. image: {
  19568. source: "./media/characters/kassy/foot.svg"
  19569. }
  19570. },
  19571. },
  19572. [
  19573. {
  19574. name: "Normal",
  19575. height: math.unit(5 + 7 / 12, "feet")
  19576. },
  19577. {
  19578. name: "Macro",
  19579. height: math.unit(137, "feet"),
  19580. default: true
  19581. },
  19582. {
  19583. name: "Megamacro",
  19584. height: math.unit(1, "mile")
  19585. },
  19586. ]
  19587. ))
  19588. characterMakers.push(() => makeCharacter(
  19589. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19590. {
  19591. front: {
  19592. height: math.unit(6 + 1 / 12, "feet"),
  19593. weight: math.unit(200, "lb"),
  19594. name: "Front",
  19595. image: {
  19596. source: "./media/characters/neil/front.svg",
  19597. extra: 1326 / 1250,
  19598. bottom: 0.023
  19599. }
  19600. },
  19601. },
  19602. [
  19603. {
  19604. name: "Normal",
  19605. height: math.unit(6 + 1 / 12, "feet"),
  19606. default: true
  19607. },
  19608. {
  19609. name: "Macro",
  19610. height: math.unit(200, "feet")
  19611. },
  19612. ]
  19613. ))
  19614. characterMakers.push(() => makeCharacter(
  19615. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19616. {
  19617. front: {
  19618. height: math.unit(5 + 9 / 12, "feet"),
  19619. weight: math.unit(190, "lb"),
  19620. name: "Front",
  19621. image: {
  19622. source: "./media/characters/atticus/front.svg",
  19623. extra: 2934 / 2785,
  19624. bottom: 0.025
  19625. }
  19626. },
  19627. },
  19628. [
  19629. {
  19630. name: "Normal",
  19631. height: math.unit(5 + 9 / 12, "feet"),
  19632. default: true
  19633. },
  19634. {
  19635. name: "Macro",
  19636. height: math.unit(180, "feet")
  19637. },
  19638. ]
  19639. ))
  19640. characterMakers.push(() => makeCharacter(
  19641. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19642. {
  19643. side: {
  19644. height: math.unit(9, "feet"),
  19645. weight: math.unit(650, "lb"),
  19646. name: "Side",
  19647. image: {
  19648. source: "./media/characters/milo/side.svg",
  19649. extra: 2644 / 2310,
  19650. bottom: 0.032
  19651. }
  19652. },
  19653. },
  19654. [
  19655. {
  19656. name: "Normal",
  19657. height: math.unit(9, "feet"),
  19658. default: true
  19659. },
  19660. {
  19661. name: "Macro",
  19662. height: math.unit(300, "feet")
  19663. },
  19664. ]
  19665. ))
  19666. characterMakers.push(() => makeCharacter(
  19667. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19668. {
  19669. side: {
  19670. height: math.unit(8, "meters"),
  19671. weight: math.unit(90000, "kg"),
  19672. name: "Side",
  19673. image: {
  19674. source: "./media/characters/ijzer/side.svg",
  19675. extra: 2756 / 1600,
  19676. bottom: 0.01
  19677. }
  19678. },
  19679. },
  19680. [
  19681. {
  19682. name: "Small",
  19683. height: math.unit(3, "meters")
  19684. },
  19685. {
  19686. name: "Normal",
  19687. height: math.unit(8, "meters"),
  19688. default: true
  19689. },
  19690. {
  19691. name: "Normal+",
  19692. height: math.unit(10, "meters")
  19693. },
  19694. {
  19695. name: "Bigger",
  19696. height: math.unit(24, "meters")
  19697. },
  19698. {
  19699. name: "Huge",
  19700. height: math.unit(80, "meters")
  19701. },
  19702. ]
  19703. ))
  19704. characterMakers.push(() => makeCharacter(
  19705. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19706. {
  19707. front: {
  19708. height: math.unit(6 + 2 / 12, "feet"),
  19709. weight: math.unit(153, "lb"),
  19710. name: "Front",
  19711. image: {
  19712. source: "./media/characters/luca-cervicum/front.svg",
  19713. extra: 370 / 327,
  19714. bottom: 0.015
  19715. }
  19716. },
  19717. back: {
  19718. height: math.unit(6 + 2 / 12, "feet"),
  19719. weight: math.unit(153, "lb"),
  19720. name: "Back",
  19721. image: {
  19722. source: "./media/characters/luca-cervicum/back.svg",
  19723. extra: 367 / 333,
  19724. bottom: 0.005
  19725. }
  19726. },
  19727. frontGear: {
  19728. height: math.unit(6 + 2 / 12, "feet"),
  19729. weight: math.unit(173, "lb"),
  19730. name: "Front (Gear)",
  19731. image: {
  19732. source: "./media/characters/luca-cervicum/front-gear.svg",
  19733. extra: 377 / 333,
  19734. bottom: 0.006
  19735. }
  19736. },
  19737. },
  19738. [
  19739. {
  19740. name: "Normal",
  19741. height: math.unit(6 + 2 / 12, "feet"),
  19742. default: true
  19743. },
  19744. ]
  19745. ))
  19746. characterMakers.push(() => makeCharacter(
  19747. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19748. {
  19749. front: {
  19750. height: math.unit(6 + 1 / 12, "feet"),
  19751. weight: math.unit(304, "lb"),
  19752. name: "Front",
  19753. image: {
  19754. source: "./media/characters/oliver/front.svg",
  19755. extra: 157 / 143,
  19756. bottom: 0.08
  19757. }
  19758. },
  19759. },
  19760. [
  19761. {
  19762. name: "Normal",
  19763. height: math.unit(6 + 1 / 12, "feet"),
  19764. default: true
  19765. },
  19766. ]
  19767. ))
  19768. characterMakers.push(() => makeCharacter(
  19769. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19770. {
  19771. front: {
  19772. height: math.unit(5 + 7 / 12, "feet"),
  19773. weight: math.unit(140, "lb"),
  19774. name: "Front",
  19775. image: {
  19776. source: "./media/characters/shane/front.svg",
  19777. extra: 304 / 289,
  19778. bottom: 0.005
  19779. }
  19780. },
  19781. },
  19782. [
  19783. {
  19784. name: "Normal",
  19785. height: math.unit(5 + 7 / 12, "feet"),
  19786. default: true
  19787. },
  19788. ]
  19789. ))
  19790. characterMakers.push(() => makeCharacter(
  19791. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19792. {
  19793. front: {
  19794. height: math.unit(5 + 9 / 12, "feet"),
  19795. weight: math.unit(178, "lb"),
  19796. name: "Front",
  19797. image: {
  19798. source: "./media/characters/shin/front.svg",
  19799. extra: 159 / 151,
  19800. bottom: 0.015
  19801. }
  19802. },
  19803. },
  19804. [
  19805. {
  19806. name: "Normal",
  19807. height: math.unit(5 + 9 / 12, "feet"),
  19808. default: true
  19809. },
  19810. ]
  19811. ))
  19812. characterMakers.push(() => makeCharacter(
  19813. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19814. {
  19815. front: {
  19816. height: math.unit(5 + 10 / 12, "feet"),
  19817. weight: math.unit(168, "lb"),
  19818. name: "Front",
  19819. image: {
  19820. source: "./media/characters/xerxes/front.svg",
  19821. extra: 282 / 260,
  19822. bottom: 0.045
  19823. }
  19824. },
  19825. },
  19826. [
  19827. {
  19828. name: "Normal",
  19829. height: math.unit(5 + 10 / 12, "feet"),
  19830. default: true
  19831. },
  19832. ]
  19833. ))
  19834. characterMakers.push(() => makeCharacter(
  19835. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19836. {
  19837. front: {
  19838. height: math.unit(6 + 7 / 12, "feet"),
  19839. weight: math.unit(208, "lb"),
  19840. name: "Front",
  19841. image: {
  19842. source: "./media/characters/chaska/front.svg",
  19843. extra: 332 / 319,
  19844. bottom: 0.015
  19845. }
  19846. },
  19847. },
  19848. [
  19849. {
  19850. name: "Normal",
  19851. height: math.unit(6 + 7 / 12, "feet"),
  19852. default: true
  19853. },
  19854. ]
  19855. ))
  19856. characterMakers.push(() => makeCharacter(
  19857. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19858. {
  19859. front: {
  19860. height: math.unit(5 + 8 / 12, "feet"),
  19861. weight: math.unit(208, "lb"),
  19862. name: "Front",
  19863. image: {
  19864. source: "./media/characters/enuk/front.svg",
  19865. extra: 437 / 406,
  19866. bottom: 0.02
  19867. }
  19868. },
  19869. },
  19870. [
  19871. {
  19872. name: "Normal",
  19873. height: math.unit(5 + 8 / 12, "feet"),
  19874. default: true
  19875. },
  19876. ]
  19877. ))
  19878. characterMakers.push(() => makeCharacter(
  19879. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19880. {
  19881. front: {
  19882. height: math.unit(5 + 10 / 12, "feet"),
  19883. weight: math.unit(252, "lb"),
  19884. name: "Front",
  19885. image: {
  19886. source: "./media/characters/bruun/front.svg",
  19887. extra: 197 / 187,
  19888. bottom: 0.012
  19889. }
  19890. },
  19891. },
  19892. [
  19893. {
  19894. name: "Normal",
  19895. height: math.unit(5 + 10 / 12, "feet"),
  19896. default: true
  19897. },
  19898. ]
  19899. ))
  19900. characterMakers.push(() => makeCharacter(
  19901. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19902. {
  19903. front: {
  19904. height: math.unit(6 + 10 / 12, "feet"),
  19905. weight: math.unit(255, "lb"),
  19906. name: "Front",
  19907. image: {
  19908. source: "./media/characters/alexeev/front.svg",
  19909. extra: 213 / 200,
  19910. bottom: 0.05
  19911. }
  19912. },
  19913. },
  19914. [
  19915. {
  19916. name: "Normal",
  19917. height: math.unit(6 + 10 / 12, "feet"),
  19918. default: true
  19919. },
  19920. ]
  19921. ))
  19922. characterMakers.push(() => makeCharacter(
  19923. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19924. {
  19925. front: {
  19926. height: math.unit(2 + 8 / 12, "feet"),
  19927. weight: math.unit(22, "lb"),
  19928. name: "Front",
  19929. image: {
  19930. source: "./media/characters/evelyn/front.svg",
  19931. extra: 208 / 180
  19932. }
  19933. },
  19934. },
  19935. [
  19936. {
  19937. name: "Normal",
  19938. height: math.unit(2 + 8 / 12, "feet"),
  19939. default: true
  19940. },
  19941. ]
  19942. ))
  19943. characterMakers.push(() => makeCharacter(
  19944. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19945. {
  19946. front: {
  19947. height: math.unit(5 + 9 / 12, "feet"),
  19948. weight: math.unit(139, "lb"),
  19949. name: "Front",
  19950. image: {
  19951. source: "./media/characters/inca/front.svg",
  19952. extra: 294 / 291,
  19953. bottom: 0.03
  19954. }
  19955. },
  19956. },
  19957. [
  19958. {
  19959. name: "Normal",
  19960. height: math.unit(5 + 9 / 12, "feet"),
  19961. default: true
  19962. },
  19963. ]
  19964. ))
  19965. characterMakers.push(() => makeCharacter(
  19966. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19967. {
  19968. front: {
  19969. height: math.unit(5 + 1 / 12, "feet"),
  19970. weight: math.unit(84, "lb"),
  19971. name: "Front",
  19972. image: {
  19973. source: "./media/characters/magdalene/front.svg",
  19974. extra: 293 / 273
  19975. }
  19976. },
  19977. },
  19978. [
  19979. {
  19980. name: "Normal",
  19981. height: math.unit(5 + 1 / 12, "feet"),
  19982. default: true
  19983. },
  19984. ]
  19985. ))
  19986. characterMakers.push(() => makeCharacter(
  19987. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19988. {
  19989. front: {
  19990. height: math.unit(6 + 3 / 12, "feet"),
  19991. weight: math.unit(185, "lb"),
  19992. name: "Front",
  19993. image: {
  19994. source: "./media/characters/mera/front.svg",
  19995. extra: 291 / 277,
  19996. bottom: 0.03
  19997. }
  19998. },
  19999. },
  20000. [
  20001. {
  20002. name: "Normal",
  20003. height: math.unit(6 + 3 / 12, "feet"),
  20004. default: true
  20005. },
  20006. ]
  20007. ))
  20008. characterMakers.push(() => makeCharacter(
  20009. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20010. {
  20011. front: {
  20012. height: math.unit(6 + 7 / 12, "feet"),
  20013. weight: math.unit(160, "lb"),
  20014. name: "Front",
  20015. image: {
  20016. source: "./media/characters/ceres/front.svg",
  20017. extra: 1023 / 950,
  20018. bottom: 0.027
  20019. }
  20020. },
  20021. back: {
  20022. height: math.unit(6 + 7 / 12, "feet"),
  20023. weight: math.unit(160, "lb"),
  20024. name: "Back",
  20025. image: {
  20026. source: "./media/characters/ceres/back.svg",
  20027. extra: 1023 / 950
  20028. }
  20029. },
  20030. },
  20031. [
  20032. {
  20033. name: "Normal",
  20034. height: math.unit(6 + 7 / 12, "feet"),
  20035. default: true
  20036. },
  20037. ]
  20038. ))
  20039. characterMakers.push(() => makeCharacter(
  20040. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20041. {
  20042. front: {
  20043. height: math.unit(5 + 10 / 12, "feet"),
  20044. weight: math.unit(150, "lb"),
  20045. name: "Front",
  20046. image: {
  20047. source: "./media/characters/kris/front.svg",
  20048. extra: 885 / 803,
  20049. bottom: 0.03
  20050. }
  20051. },
  20052. },
  20053. [
  20054. {
  20055. name: "Normal",
  20056. height: math.unit(5 + 10 / 12, "feet"),
  20057. default: true
  20058. },
  20059. ]
  20060. ))
  20061. characterMakers.push(() => makeCharacter(
  20062. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20063. {
  20064. front: {
  20065. height: math.unit(7, "feet"),
  20066. weight: math.unit(120, "kg"),
  20067. name: "Front",
  20068. image: {
  20069. source: "./media/characters/taluthus/front.svg",
  20070. extra: 903 / 833,
  20071. bottom: 0.015
  20072. }
  20073. },
  20074. },
  20075. [
  20076. {
  20077. name: "Normal",
  20078. height: math.unit(7, "feet"),
  20079. default: true
  20080. },
  20081. {
  20082. name: "Macro",
  20083. height: math.unit(300, "feet")
  20084. },
  20085. ]
  20086. ))
  20087. characterMakers.push(() => makeCharacter(
  20088. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20089. {
  20090. front: {
  20091. height: math.unit(5 + 9 / 12, "feet"),
  20092. weight: math.unit(145, "lb"),
  20093. name: "Front",
  20094. image: {
  20095. source: "./media/characters/dawn/front.svg",
  20096. extra: 2094 / 2016,
  20097. bottom: 0.025
  20098. }
  20099. },
  20100. back: {
  20101. height: math.unit(5 + 9 / 12, "feet"),
  20102. weight: math.unit(160, "lb"),
  20103. name: "Back",
  20104. image: {
  20105. source: "./media/characters/dawn/back.svg",
  20106. extra: 2112 / 2080,
  20107. bottom: 0.005
  20108. }
  20109. },
  20110. },
  20111. [
  20112. {
  20113. name: "Normal",
  20114. height: math.unit(6 + 7 / 12, "feet"),
  20115. default: true
  20116. },
  20117. ]
  20118. ))
  20119. characterMakers.push(() => makeCharacter(
  20120. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20121. {
  20122. anthro: {
  20123. height: math.unit(8 + 3 / 12, "feet"),
  20124. weight: math.unit(450, "lb"),
  20125. name: "Anthro",
  20126. image: {
  20127. source: "./media/characters/arador/anthro.svg",
  20128. extra: 1835 / 1718,
  20129. bottom: 0.025
  20130. }
  20131. },
  20132. feral: {
  20133. height: math.unit(4, "feet"),
  20134. weight: math.unit(200, "lb"),
  20135. name: "Feral",
  20136. image: {
  20137. source: "./media/characters/arador/feral.svg",
  20138. extra: 1683 / 1514,
  20139. bottom: 0.07
  20140. }
  20141. },
  20142. },
  20143. [
  20144. {
  20145. name: "Normal",
  20146. height: math.unit(8 + 3 / 12, "feet")
  20147. },
  20148. {
  20149. name: "Macro",
  20150. height: math.unit(82.5, "feet"),
  20151. default: true
  20152. },
  20153. ]
  20154. ))
  20155. characterMakers.push(() => makeCharacter(
  20156. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20157. {
  20158. front: {
  20159. height: math.unit(5 + 10 / 12, "feet"),
  20160. weight: math.unit(125, "lb"),
  20161. name: "Front",
  20162. image: {
  20163. source: "./media/characters/dharsi/front.svg",
  20164. extra: 716 / 630,
  20165. bottom: 0.035
  20166. }
  20167. },
  20168. },
  20169. [
  20170. {
  20171. name: "Nano",
  20172. height: math.unit(100, "nm")
  20173. },
  20174. {
  20175. name: "Micro",
  20176. height: math.unit(2, "inches")
  20177. },
  20178. {
  20179. name: "Normal",
  20180. height: math.unit(5 + 10 / 12, "feet"),
  20181. default: true
  20182. },
  20183. {
  20184. name: "Macro",
  20185. height: math.unit(1000, "feet")
  20186. },
  20187. {
  20188. name: "Megamacro",
  20189. height: math.unit(10, "miles")
  20190. },
  20191. {
  20192. name: "Gigamacro",
  20193. height: math.unit(3000, "miles")
  20194. },
  20195. {
  20196. name: "Teramacro",
  20197. height: math.unit(500000, "miles")
  20198. },
  20199. {
  20200. name: "Teramacro+",
  20201. height: math.unit(30, "galaxies")
  20202. },
  20203. ]
  20204. ))
  20205. characterMakers.push(() => makeCharacter(
  20206. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20207. {
  20208. front: {
  20209. height: math.unit(6, "feet"),
  20210. weight: math.unit(150, "lb"),
  20211. name: "Front",
  20212. image: {
  20213. source: "./media/characters/deathy/front.svg",
  20214. extra: 1552 / 1463,
  20215. bottom: 0.025
  20216. }
  20217. },
  20218. side: {
  20219. height: math.unit(6, "feet"),
  20220. weight: math.unit(150, "lb"),
  20221. name: "Side",
  20222. image: {
  20223. source: "./media/characters/deathy/side.svg",
  20224. extra: 1604 / 1455,
  20225. bottom: 0.025
  20226. }
  20227. },
  20228. back: {
  20229. height: math.unit(6, "feet"),
  20230. weight: math.unit(150, "lb"),
  20231. name: "Back",
  20232. image: {
  20233. source: "./media/characters/deathy/back.svg",
  20234. extra: 1580 / 1463,
  20235. bottom: 0.005
  20236. }
  20237. },
  20238. },
  20239. [
  20240. {
  20241. name: "Micro",
  20242. height: math.unit(5, "millimeters")
  20243. },
  20244. {
  20245. name: "Normal",
  20246. height: math.unit(6 + 5 / 12, "feet"),
  20247. default: true
  20248. },
  20249. ]
  20250. ))
  20251. characterMakers.push(() => makeCharacter(
  20252. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20253. {
  20254. front: {
  20255. height: math.unit(16, "feet"),
  20256. weight: math.unit(4000, "lb"),
  20257. name: "Front",
  20258. image: {
  20259. source: "./media/characters/juniper/front.svg",
  20260. bottom: 0.04
  20261. }
  20262. },
  20263. },
  20264. [
  20265. {
  20266. name: "Normal",
  20267. height: math.unit(16, "feet"),
  20268. default: true
  20269. },
  20270. ]
  20271. ))
  20272. characterMakers.push(() => makeCharacter(
  20273. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20274. {
  20275. front: {
  20276. height: math.unit(6, "feet"),
  20277. weight: math.unit(150, "lb"),
  20278. name: "Front",
  20279. image: {
  20280. source: "./media/characters/hipster/front.svg",
  20281. extra: 1312 / 1209,
  20282. bottom: 0.025
  20283. }
  20284. },
  20285. back: {
  20286. height: math.unit(6, "feet"),
  20287. weight: math.unit(150, "lb"),
  20288. name: "Back",
  20289. image: {
  20290. source: "./media/characters/hipster/back.svg",
  20291. extra: 1281 / 1196,
  20292. bottom: 0.01
  20293. }
  20294. },
  20295. },
  20296. [
  20297. {
  20298. name: "Micro",
  20299. height: math.unit(1, "mm")
  20300. },
  20301. {
  20302. name: "Normal",
  20303. height: math.unit(4, "inches"),
  20304. default: true
  20305. },
  20306. {
  20307. name: "Macro",
  20308. height: math.unit(500, "feet")
  20309. },
  20310. {
  20311. name: "Megamacro",
  20312. height: math.unit(1000, "miles")
  20313. },
  20314. ]
  20315. ))
  20316. characterMakers.push(() => makeCharacter(
  20317. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20318. {
  20319. front: {
  20320. height: math.unit(6, "feet"),
  20321. weight: math.unit(150, "lb"),
  20322. name: "Front",
  20323. image: {
  20324. source: "./media/characters/tendirmuldr/front.svg",
  20325. extra: 1878 / 1772,
  20326. bottom: 0.015
  20327. }
  20328. },
  20329. },
  20330. [
  20331. {
  20332. name: "Megamacro",
  20333. height: math.unit(1500, "miles"),
  20334. default: true
  20335. },
  20336. ]
  20337. ))
  20338. characterMakers.push(() => makeCharacter(
  20339. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20340. {
  20341. front: {
  20342. height: math.unit(14, "feet"),
  20343. weight: math.unit(12000, "lb"),
  20344. name: "Front",
  20345. image: {
  20346. source: "./media/characters/mort/front.svg",
  20347. extra: 365 / 318,
  20348. bottom: 0.01
  20349. }
  20350. },
  20351. side: {
  20352. height: math.unit(14, "feet"),
  20353. weight: math.unit(12000, "lb"),
  20354. name: "Side",
  20355. image: {
  20356. source: "./media/characters/mort/side.svg",
  20357. extra: 365 / 318,
  20358. bottom: 0.052
  20359. },
  20360. default: true
  20361. },
  20362. back: {
  20363. height: math.unit(14, "feet"),
  20364. weight: math.unit(12000, "lb"),
  20365. name: "Back",
  20366. image: {
  20367. source: "./media/characters/mort/back.svg",
  20368. extra: 371 / 332,
  20369. bottom: 0.18
  20370. }
  20371. },
  20372. },
  20373. [
  20374. {
  20375. name: "Normal",
  20376. height: math.unit(14, "feet"),
  20377. default: true
  20378. },
  20379. ]
  20380. ))
  20381. characterMakers.push(() => makeCharacter(
  20382. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20383. {
  20384. front: {
  20385. height: math.unit(8, "feet"),
  20386. weight: math.unit(1, "ton"),
  20387. name: "Front",
  20388. image: {
  20389. source: "./media/characters/lycoa/front.svg",
  20390. extra: 1875 / 1789,
  20391. bottom: 0.022
  20392. }
  20393. },
  20394. back: {
  20395. height: math.unit(8, "feet"),
  20396. weight: math.unit(1, "ton"),
  20397. name: "Back",
  20398. image: {
  20399. source: "./media/characters/lycoa/back.svg",
  20400. extra: 1835 / 1781,
  20401. bottom: 0.03
  20402. }
  20403. },
  20404. head: {
  20405. height: math.unit(2.1, "feet"),
  20406. name: "Head",
  20407. image: {
  20408. source: "./media/characters/lycoa/head.svg"
  20409. }
  20410. },
  20411. tailmaw: {
  20412. height: math.unit(1.9, "feet"),
  20413. name: "Tailmaw",
  20414. image: {
  20415. source: "./media/characters/lycoa/tailmaw.svg"
  20416. }
  20417. },
  20418. tentacles: {
  20419. height: math.unit(2.1, "feet"),
  20420. name: "Tentacles",
  20421. image: {
  20422. source: "./media/characters/lycoa/tentacles.svg"
  20423. }
  20424. },
  20425. dick: {
  20426. height: math.unit(1.73, "feet"),
  20427. name: "Dick",
  20428. image: {
  20429. source: "./media/characters/lycoa/dick.svg"
  20430. }
  20431. },
  20432. },
  20433. [
  20434. {
  20435. name: "Normal",
  20436. height: math.unit(8, "feet"),
  20437. default: true
  20438. },
  20439. {
  20440. name: "Macro",
  20441. height: math.unit(30, "feet")
  20442. },
  20443. ]
  20444. ))
  20445. characterMakers.push(() => makeCharacter(
  20446. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20447. {
  20448. front: {
  20449. height: math.unit(4 + 2 / 12, "feet"),
  20450. weight: math.unit(70, "lb"),
  20451. name: "Front",
  20452. image: {
  20453. source: "./media/characters/naldara/front.svg",
  20454. extra: 841 / 720,
  20455. bottom: 0.04
  20456. }
  20457. },
  20458. naga: {
  20459. height: math.unit(23, "feet"),
  20460. weight: math.unit(15000, "kg"),
  20461. name: "Naga",
  20462. image: {
  20463. source: "./media/characters/naldara/naga.svg",
  20464. extra: 3290 / 2959,
  20465. bottom: 124 / 3432
  20466. }
  20467. },
  20468. },
  20469. [
  20470. {
  20471. name: "Normal",
  20472. height: math.unit(4 + 2 / 12, "feet"),
  20473. default: true
  20474. },
  20475. ]
  20476. ))
  20477. characterMakers.push(() => makeCharacter(
  20478. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20479. {
  20480. front: {
  20481. height: math.unit(13 + 7 / 12, "feet"),
  20482. weight: math.unit(1500, "lb"),
  20483. name: "Front",
  20484. image: {
  20485. source: "./media/characters/briar/front.svg",
  20486. extra: 626 / 596,
  20487. bottom: 0.08
  20488. }
  20489. },
  20490. },
  20491. [
  20492. {
  20493. name: "Normal",
  20494. height: math.unit(13 + 7 / 12, "feet"),
  20495. default: true
  20496. },
  20497. ]
  20498. ))
  20499. characterMakers.push(() => makeCharacter(
  20500. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20501. {
  20502. side: {
  20503. height: math.unit(10, "feet"),
  20504. weight: math.unit(500, "lb"),
  20505. name: "Side",
  20506. image: {
  20507. source: "./media/characters/vanguard/side.svg",
  20508. extra: 502 / 425,
  20509. bottom: 0.087
  20510. }
  20511. },
  20512. },
  20513. [
  20514. {
  20515. name: "Normal",
  20516. height: math.unit(10, "feet"),
  20517. default: true
  20518. },
  20519. ]
  20520. ))
  20521. characterMakers.push(() => makeCharacter(
  20522. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20523. {
  20524. front: {
  20525. height: math.unit(7.5, "feet"),
  20526. weight: math.unit(2, "lb"),
  20527. name: "Front",
  20528. image: {
  20529. source: "./media/characters/artemis/front.svg",
  20530. extra: 1192 / 1075,
  20531. bottom: 0.07
  20532. }
  20533. },
  20534. frontNsfw: {
  20535. height: math.unit(7.5, "feet"),
  20536. weight: math.unit(2, "lb"),
  20537. name: "Front (NSFW)",
  20538. image: {
  20539. source: "./media/characters/artemis/front-nsfw.svg",
  20540. extra: 1192 / 1075,
  20541. bottom: 0.07
  20542. }
  20543. },
  20544. frontNsfwer: {
  20545. height: math.unit(7.5, "feet"),
  20546. weight: math.unit(2, "lb"),
  20547. name: "Front (NSFW-er)",
  20548. image: {
  20549. source: "./media/characters/artemis/front-nsfwer.svg",
  20550. extra: 1192 / 1075,
  20551. bottom: 0.07
  20552. }
  20553. },
  20554. side: {
  20555. height: math.unit(7.5, "feet"),
  20556. weight: math.unit(2, "lb"),
  20557. name: "Side",
  20558. image: {
  20559. source: "./media/characters/artemis/side.svg",
  20560. extra: 1192 / 1075,
  20561. bottom: 0.07
  20562. }
  20563. },
  20564. sideNsfw: {
  20565. height: math.unit(7.5, "feet"),
  20566. weight: math.unit(2, "lb"),
  20567. name: "Side (NSFW)",
  20568. image: {
  20569. source: "./media/characters/artemis/side-nsfw.svg",
  20570. extra: 1192 / 1075,
  20571. bottom: 0.07
  20572. }
  20573. },
  20574. sideNsfwer: {
  20575. height: math.unit(7.5, "feet"),
  20576. weight: math.unit(2, "lb"),
  20577. name: "Side (NSFW-er)",
  20578. image: {
  20579. source: "./media/characters/artemis/side-nsfwer.svg",
  20580. extra: 1192 / 1075,
  20581. bottom: 0.07
  20582. }
  20583. },
  20584. maw: {
  20585. height: math.unit(1.1, "feet"),
  20586. name: "Maw",
  20587. image: {
  20588. source: "./media/characters/artemis/maw.svg"
  20589. }
  20590. },
  20591. stomach: {
  20592. height: math.unit(0.95, "feet"),
  20593. name: "Stomach",
  20594. image: {
  20595. source: "./media/characters/artemis/stomach.svg"
  20596. }
  20597. },
  20598. dickCanine: {
  20599. height: math.unit(1, "feet"),
  20600. name: "Dick (Canine)",
  20601. image: {
  20602. source: "./media/characters/artemis/dick-canine.svg"
  20603. }
  20604. },
  20605. dickEquine: {
  20606. height: math.unit(0.85, "feet"),
  20607. name: "Dick (Equine)",
  20608. image: {
  20609. source: "./media/characters/artemis/dick-equine.svg"
  20610. }
  20611. },
  20612. dickExotic: {
  20613. height: math.unit(0.85, "feet"),
  20614. name: "Dick (Exotic)",
  20615. image: {
  20616. source: "./media/characters/artemis/dick-exotic.svg"
  20617. }
  20618. },
  20619. },
  20620. [
  20621. {
  20622. name: "Normal",
  20623. height: math.unit(7.5, "feet"),
  20624. default: true
  20625. },
  20626. {
  20627. name: "Enlarged",
  20628. height: math.unit(12, "feet")
  20629. },
  20630. ]
  20631. ))
  20632. characterMakers.push(() => makeCharacter(
  20633. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20634. {
  20635. front: {
  20636. height: math.unit(5 + 3 / 12, "feet"),
  20637. weight: math.unit(160, "lb"),
  20638. name: "Front",
  20639. image: {
  20640. source: "./media/characters/kira/front.svg",
  20641. extra: 906 / 786,
  20642. bottom: 0.01
  20643. }
  20644. },
  20645. back: {
  20646. height: math.unit(5 + 3 / 12, "feet"),
  20647. weight: math.unit(160, "lb"),
  20648. name: "Back",
  20649. image: {
  20650. source: "./media/characters/kira/back.svg",
  20651. extra: 882 / 757,
  20652. bottom: 0.005
  20653. }
  20654. },
  20655. frontDressed: {
  20656. height: math.unit(5 + 3 / 12, "feet"),
  20657. weight: math.unit(160, "lb"),
  20658. name: "Front (Dressed)",
  20659. image: {
  20660. source: "./media/characters/kira/front-dressed.svg",
  20661. extra: 906 / 786,
  20662. bottom: 0.01
  20663. }
  20664. },
  20665. beans: {
  20666. height: math.unit(0.92, "feet"),
  20667. name: "Beans",
  20668. image: {
  20669. source: "./media/characters/kira/beans.svg"
  20670. }
  20671. },
  20672. },
  20673. [
  20674. {
  20675. name: "Normal",
  20676. height: math.unit(5 + 3 / 12, "feet"),
  20677. default: true
  20678. },
  20679. ]
  20680. ))
  20681. characterMakers.push(() => makeCharacter(
  20682. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20683. {
  20684. front: {
  20685. height: math.unit(5 + 4 / 12, "feet"),
  20686. weight: math.unit(145, "lb"),
  20687. name: "Front",
  20688. image: {
  20689. source: "./media/characters/scramble/front.svg",
  20690. extra: 763 / 727,
  20691. bottom: 0.05
  20692. }
  20693. },
  20694. back: {
  20695. height: math.unit(5 + 4 / 12, "feet"),
  20696. weight: math.unit(145, "lb"),
  20697. name: "Back",
  20698. image: {
  20699. source: "./media/characters/scramble/back.svg",
  20700. extra: 826 / 737,
  20701. bottom: 0.002
  20702. }
  20703. },
  20704. },
  20705. [
  20706. {
  20707. name: "Normal",
  20708. height: math.unit(5 + 4 / 12, "feet"),
  20709. default: true
  20710. },
  20711. ]
  20712. ))
  20713. characterMakers.push(() => makeCharacter(
  20714. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20715. {
  20716. side: {
  20717. height: math.unit(6 + 2 / 12, "feet"),
  20718. weight: math.unit(190, "lb"),
  20719. name: "Side",
  20720. image: {
  20721. source: "./media/characters/biscuit/side.svg",
  20722. extra: 858 / 791,
  20723. bottom: 0.044
  20724. }
  20725. },
  20726. },
  20727. [
  20728. {
  20729. name: "Normal",
  20730. height: math.unit(6 + 2 / 12, "feet"),
  20731. default: true
  20732. },
  20733. ]
  20734. ))
  20735. characterMakers.push(() => makeCharacter(
  20736. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20737. {
  20738. front: {
  20739. height: math.unit(5 + 2 / 12, "feet"),
  20740. weight: math.unit(120, "lb"),
  20741. name: "Front",
  20742. image: {
  20743. source: "./media/characters/poffin/front.svg",
  20744. extra: 786 / 680,
  20745. bottom: 0.005
  20746. }
  20747. },
  20748. },
  20749. [
  20750. {
  20751. name: "Normal",
  20752. height: math.unit(5 + 2 / 12, "feet"),
  20753. default: true
  20754. },
  20755. ]
  20756. ))
  20757. characterMakers.push(() => makeCharacter(
  20758. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20759. {
  20760. front: {
  20761. height: math.unit(6 + 3 / 12, "feet"),
  20762. weight: math.unit(519, "lb"),
  20763. name: "Front",
  20764. image: {
  20765. source: "./media/characters/dhari/front.svg",
  20766. extra: 1048 / 946,
  20767. bottom: 0.015
  20768. }
  20769. },
  20770. back: {
  20771. height: math.unit(6 + 3 / 12, "feet"),
  20772. weight: math.unit(519, "lb"),
  20773. name: "Back",
  20774. image: {
  20775. source: "./media/characters/dhari/back.svg",
  20776. extra: 1048 / 931,
  20777. bottom: 0.005
  20778. }
  20779. },
  20780. frontDressed: {
  20781. height: math.unit(6 + 3 / 12, "feet"),
  20782. weight: math.unit(519, "lb"),
  20783. name: "Front (Dressed)",
  20784. image: {
  20785. source: "./media/characters/dhari/front-dressed.svg",
  20786. extra: 1713 / 1546,
  20787. bottom: 0.02
  20788. }
  20789. },
  20790. backDressed: {
  20791. height: math.unit(6 + 3 / 12, "feet"),
  20792. weight: math.unit(519, "lb"),
  20793. name: "Back (Dressed)",
  20794. image: {
  20795. source: "./media/characters/dhari/back-dressed.svg",
  20796. extra: 1699 / 1537,
  20797. bottom: 0.01
  20798. }
  20799. },
  20800. maw: {
  20801. height: math.unit(0.95, "feet"),
  20802. name: "Maw",
  20803. image: {
  20804. source: "./media/characters/dhari/maw.svg"
  20805. }
  20806. },
  20807. wereFront: {
  20808. height: math.unit(12 + 8 / 12, "feet"),
  20809. weight: math.unit(4000, "lb"),
  20810. name: "Front (Were)",
  20811. image: {
  20812. source: "./media/characters/dhari/were-front.svg",
  20813. extra: 1065 / 969,
  20814. bottom: 0.015
  20815. }
  20816. },
  20817. wereBack: {
  20818. height: math.unit(12 + 8 / 12, "feet"),
  20819. weight: math.unit(4000, "lb"),
  20820. name: "Back (Were)",
  20821. image: {
  20822. source: "./media/characters/dhari/were-back.svg",
  20823. extra: 1065 / 969,
  20824. bottom: 0.012
  20825. }
  20826. },
  20827. wereMaw: {
  20828. height: math.unit(0.625, "meters"),
  20829. name: "Maw (Were)",
  20830. image: {
  20831. source: "./media/characters/dhari/were-maw.svg"
  20832. }
  20833. },
  20834. },
  20835. [
  20836. {
  20837. name: "Normal",
  20838. height: math.unit(6 + 3 / 12, "feet"),
  20839. default: true
  20840. },
  20841. ]
  20842. ))
  20843. characterMakers.push(() => makeCharacter(
  20844. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20845. {
  20846. anthro: {
  20847. height: math.unit(5 + 7 / 12, "feet"),
  20848. weight: math.unit(175, "lb"),
  20849. name: "Anthro",
  20850. image: {
  20851. source: "./media/characters/rena-dyne/anthro.svg",
  20852. extra: 1849 / 1785,
  20853. bottom: 0.005
  20854. }
  20855. },
  20856. taur: {
  20857. height: math.unit(15 + 6 / 12, "feet"),
  20858. weight: math.unit(8000, "lb"),
  20859. name: "Taur",
  20860. image: {
  20861. source: "./media/characters/rena-dyne/taur.svg",
  20862. extra: 2315 / 2234,
  20863. bottom: 0.033
  20864. }
  20865. },
  20866. },
  20867. [
  20868. {
  20869. name: "Normal",
  20870. height: math.unit(5 + 7 / 12, "feet"),
  20871. default: true
  20872. },
  20873. ]
  20874. ))
  20875. characterMakers.push(() => makeCharacter(
  20876. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20877. {
  20878. front: {
  20879. height: math.unit(8, "feet"),
  20880. weight: math.unit(600, "lb"),
  20881. name: "Front",
  20882. image: {
  20883. source: "./media/characters/weremeep/front.svg",
  20884. extra: 967 / 862,
  20885. bottom: 0.01
  20886. }
  20887. },
  20888. },
  20889. [
  20890. {
  20891. name: "Normal",
  20892. height: math.unit(8, "feet"),
  20893. default: true
  20894. },
  20895. {
  20896. name: "Lorg",
  20897. height: math.unit(12, "feet")
  20898. },
  20899. {
  20900. name: "Oh Lawd She Comin'",
  20901. height: math.unit(20, "feet")
  20902. },
  20903. ]
  20904. ))
  20905. characterMakers.push(() => makeCharacter(
  20906. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20907. {
  20908. front: {
  20909. height: math.unit(4, "feet"),
  20910. weight: math.unit(90, "lb"),
  20911. name: "Front",
  20912. image: {
  20913. source: "./media/characters/reza/front.svg",
  20914. extra: 1183 / 1111,
  20915. bottom: 0.017
  20916. }
  20917. },
  20918. back: {
  20919. height: math.unit(4, "feet"),
  20920. weight: math.unit(90, "lb"),
  20921. name: "Back",
  20922. image: {
  20923. source: "./media/characters/reza/back.svg",
  20924. extra: 1183 / 1111,
  20925. bottom: 0.01
  20926. }
  20927. },
  20928. drake: {
  20929. height: math.unit(30, "feet"),
  20930. weight: math.unit(246960, "lb"),
  20931. name: "Drake",
  20932. image: {
  20933. source: "./media/characters/reza/drake.svg",
  20934. extra: 2350 / 2024,
  20935. bottom: 60.7 / 2403
  20936. }
  20937. },
  20938. },
  20939. [
  20940. {
  20941. name: "Normal",
  20942. height: math.unit(4, "feet"),
  20943. default: true
  20944. },
  20945. ]
  20946. ))
  20947. characterMakers.push(() => makeCharacter(
  20948. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20949. {
  20950. side: {
  20951. height: math.unit(15, "feet"),
  20952. weight: math.unit(14, "tons"),
  20953. name: "Side",
  20954. image: {
  20955. source: "./media/characters/athea/side.svg",
  20956. extra: 960 / 540,
  20957. bottom: 0.003
  20958. }
  20959. },
  20960. sitting: {
  20961. height: math.unit(6 * 2.85, "feet"),
  20962. weight: math.unit(14, "tons"),
  20963. name: "Sitting",
  20964. image: {
  20965. source: "./media/characters/athea/sitting.svg",
  20966. extra: 621 / 581,
  20967. bottom: 0.075
  20968. }
  20969. },
  20970. maw: {
  20971. height: math.unit(7.59498031496063, "feet"),
  20972. name: "Maw",
  20973. image: {
  20974. source: "./media/characters/athea/maw.svg"
  20975. }
  20976. },
  20977. },
  20978. [
  20979. {
  20980. name: "Lap Cat",
  20981. height: math.unit(2.5, "feet")
  20982. },
  20983. {
  20984. name: "Minimacro",
  20985. height: math.unit(15, "feet"),
  20986. default: true
  20987. },
  20988. {
  20989. name: "Macro",
  20990. height: math.unit(120, "feet")
  20991. },
  20992. {
  20993. name: "Macro+",
  20994. height: math.unit(640, "feet")
  20995. },
  20996. {
  20997. name: "Colossus",
  20998. height: math.unit(2.2, "miles")
  20999. },
  21000. ]
  21001. ))
  21002. characterMakers.push(() => makeCharacter(
  21003. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21004. {
  21005. front: {
  21006. height: math.unit(8 + 8 / 12, "feet"),
  21007. weight: math.unit(130, "kg"),
  21008. name: "Front",
  21009. image: {
  21010. source: "./media/characters/seroko/front.svg",
  21011. extra: 1385 / 1280,
  21012. bottom: 0.025
  21013. }
  21014. },
  21015. back: {
  21016. height: math.unit(8 + 8 / 12, "feet"),
  21017. weight: math.unit(130, "kg"),
  21018. name: "Back",
  21019. image: {
  21020. source: "./media/characters/seroko/back.svg",
  21021. extra: 1369 / 1238,
  21022. bottom: 0.018
  21023. }
  21024. },
  21025. frontDressed: {
  21026. height: math.unit(8 + 8 / 12, "feet"),
  21027. weight: math.unit(130, "kg"),
  21028. name: "Front (Dressed)",
  21029. image: {
  21030. source: "./media/characters/seroko/front-dressed.svg",
  21031. extra: 1366 / 1275,
  21032. bottom: 0.03
  21033. }
  21034. },
  21035. },
  21036. [
  21037. {
  21038. name: "Normal",
  21039. height: math.unit(8 + 8 / 12, "feet"),
  21040. default: true
  21041. },
  21042. ]
  21043. ))
  21044. characterMakers.push(() => makeCharacter(
  21045. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21046. {
  21047. front: {
  21048. height: math.unit(5.5, "feet"),
  21049. weight: math.unit(160, "lb"),
  21050. name: "Front",
  21051. image: {
  21052. source: "./media/characters/quatzi/front.svg",
  21053. extra: 2346 / 2242,
  21054. bottom: 0.015
  21055. }
  21056. },
  21057. },
  21058. [
  21059. {
  21060. name: "Normal",
  21061. height: math.unit(5.5, "feet"),
  21062. default: true
  21063. },
  21064. {
  21065. name: "Big",
  21066. height: math.unit(7.7, "feet")
  21067. },
  21068. ]
  21069. ))
  21070. characterMakers.push(() => makeCharacter(
  21071. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21072. {
  21073. front: {
  21074. height: math.unit(5 + 11 / 12, "feet"),
  21075. weight: math.unit(180, "lb"),
  21076. name: "Front",
  21077. image: {
  21078. source: "./media/characters/sen/front.svg",
  21079. extra: 1321 / 1254,
  21080. bottom: 0.015
  21081. }
  21082. },
  21083. side: {
  21084. height: math.unit(5 + 11 / 12, "feet"),
  21085. weight: math.unit(180, "lb"),
  21086. name: "Side",
  21087. image: {
  21088. source: "./media/characters/sen/side.svg",
  21089. extra: 1321 / 1254,
  21090. bottom: 0.007
  21091. }
  21092. },
  21093. back: {
  21094. height: math.unit(5 + 11 / 12, "feet"),
  21095. weight: math.unit(180, "lb"),
  21096. name: "Back",
  21097. image: {
  21098. source: "./media/characters/sen/back.svg",
  21099. extra: 1321 / 1254
  21100. }
  21101. },
  21102. },
  21103. [
  21104. {
  21105. name: "Normal",
  21106. height: math.unit(5 + 11 / 12, "feet"),
  21107. default: true
  21108. },
  21109. ]
  21110. ))
  21111. characterMakers.push(() => makeCharacter(
  21112. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21113. {
  21114. front: {
  21115. height: math.unit(166.6, "cm"),
  21116. weight: math.unit(66.6, "kg"),
  21117. name: "Front",
  21118. image: {
  21119. source: "./media/characters/fruity/front.svg",
  21120. extra: 1510 / 1386,
  21121. bottom: 0.04
  21122. }
  21123. },
  21124. back: {
  21125. height: math.unit(166.6, "cm"),
  21126. weight: math.unit(66.6, "lb"),
  21127. name: "Back",
  21128. image: {
  21129. source: "./media/characters/fruity/back.svg",
  21130. extra: 1563 / 1435,
  21131. bottom: 0.005
  21132. }
  21133. },
  21134. },
  21135. [
  21136. {
  21137. name: "Normal",
  21138. height: math.unit(166.6, "cm"),
  21139. default: true
  21140. },
  21141. {
  21142. name: "Demonic",
  21143. height: math.unit(166.6, "feet")
  21144. },
  21145. ]
  21146. ))
  21147. characterMakers.push(() => makeCharacter(
  21148. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21149. {
  21150. side: {
  21151. height: math.unit(10, "feet"),
  21152. weight: math.unit(500, "lb"),
  21153. name: "Side",
  21154. image: {
  21155. source: "./media/characters/zost/side.svg",
  21156. extra: 966 / 880,
  21157. bottom: 0.075
  21158. }
  21159. },
  21160. mawFront: {
  21161. height: math.unit(1.08, "meters"),
  21162. name: "Maw (Front)",
  21163. image: {
  21164. source: "./media/characters/zost/maw-front.svg"
  21165. }
  21166. },
  21167. mawSide: {
  21168. height: math.unit(2.66, "feet"),
  21169. name: "Maw (Side)",
  21170. image: {
  21171. source: "./media/characters/zost/maw-side.svg"
  21172. }
  21173. },
  21174. },
  21175. [
  21176. {
  21177. name: "Normal",
  21178. height: math.unit(10, "feet"),
  21179. default: true
  21180. },
  21181. ]
  21182. ))
  21183. characterMakers.push(() => makeCharacter(
  21184. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21185. {
  21186. front: {
  21187. height: math.unit(5 + 4 / 12, "feet"),
  21188. weight: math.unit(120, "lb"),
  21189. name: "Front",
  21190. image: {
  21191. source: "./media/characters/luci/front.svg",
  21192. extra: 1985 / 1884,
  21193. bottom: 0.04
  21194. }
  21195. },
  21196. back: {
  21197. height: math.unit(5 + 4 / 12, "feet"),
  21198. weight: math.unit(120, "lb"),
  21199. name: "Back",
  21200. image: {
  21201. source: "./media/characters/luci/back.svg",
  21202. extra: 1892 / 1791,
  21203. bottom: 0.002
  21204. }
  21205. },
  21206. },
  21207. [
  21208. {
  21209. name: "Normal",
  21210. height: math.unit(5 + 4 / 12, "feet"),
  21211. default: true
  21212. },
  21213. ]
  21214. ))
  21215. characterMakers.push(() => makeCharacter(
  21216. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21217. {
  21218. front: {
  21219. height: math.unit(1500, "feet"),
  21220. weight: math.unit(3.8e6, "tons"),
  21221. name: "Front",
  21222. image: {
  21223. source: "./media/characters/2th/front.svg",
  21224. extra: 3489 / 3350,
  21225. bottom: 0.1
  21226. }
  21227. },
  21228. foot: {
  21229. height: math.unit(461, "feet"),
  21230. name: "Foot",
  21231. image: {
  21232. source: "./media/characters/2th/foot.svg"
  21233. }
  21234. },
  21235. },
  21236. [
  21237. {
  21238. name: "\"Micro\"",
  21239. height: math.unit(15 + 7 / 12, "feet")
  21240. },
  21241. {
  21242. name: "Normal",
  21243. height: math.unit(1500, "feet"),
  21244. default: true
  21245. },
  21246. {
  21247. name: "Macro",
  21248. height: math.unit(5000, "feet")
  21249. },
  21250. {
  21251. name: "Megamacro",
  21252. height: math.unit(15, "miles")
  21253. },
  21254. {
  21255. name: "Gigamacro",
  21256. height: math.unit(4000, "miles")
  21257. },
  21258. {
  21259. name: "Galactic",
  21260. height: math.unit(50, "AU")
  21261. },
  21262. ]
  21263. ))
  21264. characterMakers.push(() => makeCharacter(
  21265. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21266. {
  21267. front: {
  21268. height: math.unit(5 + 6 / 12, "feet"),
  21269. weight: math.unit(220, "lb"),
  21270. name: "Front",
  21271. image: {
  21272. source: "./media/characters/amethyst/front.svg",
  21273. extra: 2078 / 2040,
  21274. bottom: 0.045
  21275. }
  21276. },
  21277. back: {
  21278. height: math.unit(5 + 6 / 12, "feet"),
  21279. weight: math.unit(220, "lb"),
  21280. name: "Back",
  21281. image: {
  21282. source: "./media/characters/amethyst/back.svg",
  21283. extra: 2021 / 1989,
  21284. bottom: 0.02
  21285. }
  21286. },
  21287. },
  21288. [
  21289. {
  21290. name: "Normal",
  21291. height: math.unit(5 + 6 / 12, "feet"),
  21292. default: true
  21293. },
  21294. ]
  21295. ))
  21296. characterMakers.push(() => makeCharacter(
  21297. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21298. {
  21299. front: {
  21300. height: math.unit(4 + 11 / 12, "feet"),
  21301. weight: math.unit(120, "lb"),
  21302. name: "Front",
  21303. image: {
  21304. source: "./media/characters/yumi-akiyama/front.svg",
  21305. extra: 1327 / 1235,
  21306. bottom: 0.02
  21307. }
  21308. },
  21309. back: {
  21310. height: math.unit(4 + 11 / 12, "feet"),
  21311. weight: math.unit(120, "lb"),
  21312. name: "Back",
  21313. image: {
  21314. source: "./media/characters/yumi-akiyama/back.svg",
  21315. extra: 1287 / 1245,
  21316. bottom: 0.002
  21317. }
  21318. },
  21319. },
  21320. [
  21321. {
  21322. name: "Galactic",
  21323. height: math.unit(50, "galaxies"),
  21324. default: true
  21325. },
  21326. {
  21327. name: "Universal",
  21328. height: math.unit(100, "universes")
  21329. },
  21330. ]
  21331. ))
  21332. characterMakers.push(() => makeCharacter(
  21333. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21334. {
  21335. front: {
  21336. height: math.unit(8, "feet"),
  21337. weight: math.unit(500, "lb"),
  21338. name: "Front",
  21339. image: {
  21340. source: "./media/characters/rifter-yrmori/front.svg",
  21341. extra: 1180 / 1125,
  21342. bottom: 0.02
  21343. }
  21344. },
  21345. back: {
  21346. height: math.unit(8, "feet"),
  21347. weight: math.unit(500, "lb"),
  21348. name: "Back",
  21349. image: {
  21350. source: "./media/characters/rifter-yrmori/back.svg",
  21351. extra: 1190 / 1145,
  21352. bottom: 0.001
  21353. }
  21354. },
  21355. wings: {
  21356. height: math.unit(7.75, "feet"),
  21357. weight: math.unit(500, "lb"),
  21358. name: "Wings",
  21359. image: {
  21360. source: "./media/characters/rifter-yrmori/wings.svg",
  21361. extra: 1357 / 1285
  21362. }
  21363. },
  21364. maw: {
  21365. height: math.unit(0.8, "feet"),
  21366. name: "Maw",
  21367. image: {
  21368. source: "./media/characters/rifter-yrmori/maw.svg"
  21369. }
  21370. },
  21371. mawfront: {
  21372. height: math.unit(1.45, "feet"),
  21373. name: "Maw (Front)",
  21374. image: {
  21375. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21376. }
  21377. },
  21378. },
  21379. [
  21380. {
  21381. name: "Normal",
  21382. height: math.unit(8, "feet"),
  21383. default: true
  21384. },
  21385. {
  21386. name: "Macro",
  21387. height: math.unit(42, "meters")
  21388. },
  21389. ]
  21390. ))
  21391. characterMakers.push(() => makeCharacter(
  21392. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21393. {
  21394. were: {
  21395. height: math.unit(25 + 6 / 12, "feet"),
  21396. weight: math.unit(10000, "lb"),
  21397. name: "Were",
  21398. image: {
  21399. source: "./media/characters/tahajin/were.svg",
  21400. extra: 801 / 770,
  21401. bottom: 0.042
  21402. }
  21403. },
  21404. aquatic: {
  21405. height: math.unit(6 + 4 / 12, "feet"),
  21406. weight: math.unit(160, "lb"),
  21407. name: "Aquatic",
  21408. image: {
  21409. source: "./media/characters/tahajin/aquatic.svg",
  21410. extra: 572 / 542,
  21411. bottom: 0.04
  21412. }
  21413. },
  21414. chow: {
  21415. height: math.unit(8 + 11 / 12, "feet"),
  21416. weight: math.unit(450, "lb"),
  21417. name: "Chow",
  21418. image: {
  21419. source: "./media/characters/tahajin/chow.svg",
  21420. extra: 660 / 640,
  21421. bottom: 0.015
  21422. }
  21423. },
  21424. demiNaga: {
  21425. height: math.unit(6 + 8 / 12, "feet"),
  21426. weight: math.unit(300, "lb"),
  21427. name: "Demi Naga",
  21428. image: {
  21429. source: "./media/characters/tahajin/demi-naga.svg",
  21430. extra: 643 / 615,
  21431. bottom: 0.1
  21432. }
  21433. },
  21434. data: {
  21435. height: math.unit(5, "inches"),
  21436. weight: math.unit(0.1, "lb"),
  21437. name: "Data",
  21438. image: {
  21439. source: "./media/characters/tahajin/data.svg"
  21440. }
  21441. },
  21442. fluu: {
  21443. height: math.unit(5 + 7 / 12, "feet"),
  21444. weight: math.unit(140, "lb"),
  21445. name: "Fluu",
  21446. image: {
  21447. source: "./media/characters/tahajin/fluu.svg",
  21448. extra: 628 / 592,
  21449. bottom: 0.02
  21450. }
  21451. },
  21452. starWarrior: {
  21453. height: math.unit(4 + 5 / 12, "feet"),
  21454. weight: math.unit(50, "lb"),
  21455. name: "Star Warrior",
  21456. image: {
  21457. source: "./media/characters/tahajin/star-warrior.svg"
  21458. }
  21459. },
  21460. },
  21461. [
  21462. {
  21463. name: "Normal",
  21464. height: math.unit(25 + 6 / 12, "feet"),
  21465. default: true
  21466. },
  21467. ]
  21468. ))
  21469. characterMakers.push(() => makeCharacter(
  21470. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21471. {
  21472. front: {
  21473. height: math.unit(8, "feet"),
  21474. weight: math.unit(350, "lb"),
  21475. name: "Front",
  21476. image: {
  21477. source: "./media/characters/gabira/front.svg",
  21478. extra: 608 / 580,
  21479. bottom: 0.03
  21480. }
  21481. },
  21482. back: {
  21483. height: math.unit(8, "feet"),
  21484. weight: math.unit(350, "lb"),
  21485. name: "Back",
  21486. image: {
  21487. source: "./media/characters/gabira/back.svg",
  21488. extra: 608 / 580,
  21489. bottom: 0.03
  21490. }
  21491. },
  21492. },
  21493. [
  21494. {
  21495. name: "Normal",
  21496. height: math.unit(8, "feet"),
  21497. default: true
  21498. },
  21499. ]
  21500. ))
  21501. characterMakers.push(() => makeCharacter(
  21502. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21503. {
  21504. front: {
  21505. height: math.unit(5 + 3 / 12, "feet"),
  21506. weight: math.unit(137, "lb"),
  21507. name: "Front",
  21508. image: {
  21509. source: "./media/characters/sasha-katraine/front.svg",
  21510. bottom: 0.045
  21511. }
  21512. },
  21513. },
  21514. [
  21515. {
  21516. name: "Micro",
  21517. height: math.unit(5, "inches")
  21518. },
  21519. {
  21520. name: "Normal",
  21521. height: math.unit(5 + 3 / 12, "feet"),
  21522. default: true
  21523. },
  21524. ]
  21525. ))
  21526. characterMakers.push(() => makeCharacter(
  21527. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21528. {
  21529. side: {
  21530. height: math.unit(4, "inches"),
  21531. weight: math.unit(200, "grams"),
  21532. name: "Side",
  21533. image: {
  21534. source: "./media/characters/der/side.svg",
  21535. extra: 719 / 400,
  21536. bottom: 30.6 / 749.9187
  21537. }
  21538. },
  21539. },
  21540. [
  21541. {
  21542. name: "Micro",
  21543. height: math.unit(4, "inches"),
  21544. default: true
  21545. },
  21546. ]
  21547. ))
  21548. characterMakers.push(() => makeCharacter(
  21549. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21550. {
  21551. side: {
  21552. height: math.unit(30, "meters"),
  21553. weight: math.unit(700, "tonnes"),
  21554. name: "Side",
  21555. image: {
  21556. source: "./media/characters/fixerdragon/side.svg",
  21557. extra: (1293.0514 - 116.03) / 1106.86,
  21558. bottom: 116.03 / 1293.0514
  21559. }
  21560. },
  21561. },
  21562. [
  21563. {
  21564. name: "Planck",
  21565. height: math.unit(1.6e-35, "meters")
  21566. },
  21567. {
  21568. name: "Micro",
  21569. height: math.unit(0.4, "meters")
  21570. },
  21571. {
  21572. name: "Normal",
  21573. height: math.unit(30, "meters"),
  21574. default: true
  21575. },
  21576. {
  21577. name: "Megamacro",
  21578. height: math.unit(1.2, "megameters")
  21579. },
  21580. {
  21581. name: "Teramacro",
  21582. height: math.unit(130, "terameters")
  21583. },
  21584. {
  21585. name: "Yottamacro",
  21586. height: math.unit(6200, "yottameters")
  21587. },
  21588. ]
  21589. ));
  21590. characterMakers.push(() => makeCharacter(
  21591. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21592. {
  21593. front: {
  21594. height: math.unit(8, "feet"),
  21595. weight: math.unit(250, "lb"),
  21596. name: "Front",
  21597. image: {
  21598. source: "./media/characters/kite/front.svg",
  21599. extra: 2796 / 2659,
  21600. bottom: 0.002
  21601. }
  21602. },
  21603. },
  21604. [
  21605. {
  21606. name: "Normal",
  21607. height: math.unit(8, "feet"),
  21608. default: true
  21609. },
  21610. {
  21611. name: "Macro",
  21612. height: math.unit(360, "feet")
  21613. },
  21614. {
  21615. name: "Megamacro",
  21616. height: math.unit(1500, "feet")
  21617. },
  21618. ]
  21619. ))
  21620. characterMakers.push(() => makeCharacter(
  21621. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21622. {
  21623. front: {
  21624. height: math.unit(5 + 11/12, "feet"),
  21625. weight: math.unit(170, "lb"),
  21626. name: "Front",
  21627. image: {
  21628. source: "./media/characters/poojawa-vynar/front.svg",
  21629. extra: 1735/1585,
  21630. bottom: 96/1831
  21631. }
  21632. },
  21633. back: {
  21634. height: math.unit(5 + 11/12, "feet"),
  21635. weight: math.unit(170, "lb"),
  21636. name: "Back",
  21637. image: {
  21638. source: "./media/characters/poojawa-vynar/back.svg",
  21639. extra: 1749/1607,
  21640. bottom: 28/1777
  21641. }
  21642. },
  21643. male: {
  21644. height: math.unit(5 + 11/12, "feet"),
  21645. weight: math.unit(170, "lb"),
  21646. name: "Male",
  21647. image: {
  21648. source: "./media/characters/poojawa-vynar/male.svg",
  21649. extra: 1855/1713,
  21650. bottom: 63/1918
  21651. }
  21652. },
  21653. taur: {
  21654. height: math.unit(5 + 11/12, "feet"),
  21655. weight: math.unit(170, "lb"),
  21656. name: "Taur",
  21657. image: {
  21658. source: "./media/characters/poojawa-vynar/taur.svg",
  21659. extra: 1151/1059,
  21660. bottom: 356/1507
  21661. }
  21662. },
  21663. frontDressed: {
  21664. height: math.unit(5 + 11/12, "feet"),
  21665. weight: math.unit(170, "lb"),
  21666. name: "Front (Dressed)",
  21667. image: {
  21668. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21669. extra: 1735/1585,
  21670. bottom: 96/1831
  21671. }
  21672. },
  21673. backDressed: {
  21674. height: math.unit(5 + 11/12, "feet"),
  21675. weight: math.unit(170, "lb"),
  21676. name: "Back (Dressed)",
  21677. image: {
  21678. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21679. extra: 1749/1607,
  21680. bottom: 28/1777
  21681. }
  21682. },
  21683. maleDressed: {
  21684. height: math.unit(5 + 11/12, "feet"),
  21685. weight: math.unit(170, "lb"),
  21686. name: "Male (Dressed)",
  21687. image: {
  21688. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21689. extra: 1855/1713,
  21690. bottom: 63/1918
  21691. }
  21692. },
  21693. taurDressed: {
  21694. height: math.unit(5 + 11/12, "feet"),
  21695. weight: math.unit(170, "lb"),
  21696. name: "Taur (Dressed)",
  21697. image: {
  21698. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21699. extra: 1151/1059,
  21700. bottom: 356/1507
  21701. }
  21702. },
  21703. maw: {
  21704. height: math.unit(1.46, "feet"),
  21705. name: "Maw",
  21706. image: {
  21707. source: "./media/characters/poojawa-vynar/maw.svg"
  21708. }
  21709. },
  21710. head: {
  21711. height: math.unit(2.34, "feet"),
  21712. name: "Head",
  21713. image: {
  21714. source: "./media/characters/poojawa-vynar/head.svg"
  21715. }
  21716. },
  21717. paw: {
  21718. height: math.unit(1.61, "feet"),
  21719. name: "Paw",
  21720. image: {
  21721. source: "./media/characters/poojawa-vynar/paw.svg"
  21722. }
  21723. },
  21724. pawToering: {
  21725. height: math.unit(1.72, "feet"),
  21726. name: "Paw (Toering)",
  21727. image: {
  21728. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21729. }
  21730. },
  21731. toering: {
  21732. height: math.unit(2.9, "inches"),
  21733. name: "Toering",
  21734. image: {
  21735. source: "./media/characters/poojawa-vynar/toering.svg"
  21736. }
  21737. },
  21738. shaft: {
  21739. height: math.unit(0.625, "feet"),
  21740. name: "Shaft",
  21741. image: {
  21742. source: "./media/characters/poojawa-vynar/shaft.svg"
  21743. }
  21744. },
  21745. spade: {
  21746. height: math.unit(0.42, "feet"),
  21747. name: "Spade",
  21748. image: {
  21749. source: "./media/characters/poojawa-vynar/spade.svg"
  21750. }
  21751. },
  21752. },
  21753. [
  21754. {
  21755. name: "Shortstack",
  21756. height: math.unit(4, "feet")
  21757. },
  21758. {
  21759. name: "Normal",
  21760. height: math.unit(5 + 11 / 12, "feet"),
  21761. default: true
  21762. },
  21763. {
  21764. name: "Tauric",
  21765. height: math.unit(4, "meters")
  21766. },
  21767. ]
  21768. ))
  21769. characterMakers.push(() => makeCharacter(
  21770. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21771. {
  21772. front: {
  21773. height: math.unit(293, "meters"),
  21774. weight: math.unit(70400, "tons"),
  21775. name: "Front",
  21776. image: {
  21777. source: "./media/characters/violette/front.svg",
  21778. extra: 1227 / 1180,
  21779. bottom: 0.005
  21780. }
  21781. },
  21782. back: {
  21783. height: math.unit(293, "meters"),
  21784. weight: math.unit(70400, "tons"),
  21785. name: "Back",
  21786. image: {
  21787. source: "./media/characters/violette/back.svg",
  21788. extra: 1227 / 1180,
  21789. bottom: 0.005
  21790. }
  21791. },
  21792. },
  21793. [
  21794. {
  21795. name: "Macro",
  21796. height: math.unit(293, "meters"),
  21797. default: true
  21798. },
  21799. ]
  21800. ))
  21801. characterMakers.push(() => makeCharacter(
  21802. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21803. {
  21804. front: {
  21805. height: math.unit(1050, "feet"),
  21806. weight: math.unit(200000, "tons"),
  21807. name: "Front",
  21808. image: {
  21809. source: "./media/characters/alessandra/front.svg",
  21810. extra: 960 / 912,
  21811. bottom: 0.06
  21812. }
  21813. },
  21814. },
  21815. [
  21816. {
  21817. name: "Macro",
  21818. height: math.unit(1050, "feet")
  21819. },
  21820. {
  21821. name: "Macro+",
  21822. height: math.unit(900, "meters"),
  21823. default: true
  21824. },
  21825. ]
  21826. ))
  21827. characterMakers.push(() => makeCharacter(
  21828. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21829. {
  21830. front: {
  21831. height: math.unit(5, "feet"),
  21832. weight: math.unit(187, "lb"),
  21833. name: "Front",
  21834. image: {
  21835. source: "./media/characters/person/front.svg",
  21836. extra: 3087 / 2945,
  21837. bottom: 91 / 3181
  21838. }
  21839. },
  21840. },
  21841. [
  21842. {
  21843. name: "Micro",
  21844. height: math.unit(3, "inches")
  21845. },
  21846. {
  21847. name: "Normal",
  21848. height: math.unit(5, "feet"),
  21849. default: true
  21850. },
  21851. {
  21852. name: "Macro",
  21853. height: math.unit(90, "feet")
  21854. },
  21855. {
  21856. name: "Max Size",
  21857. height: math.unit(280, "feet")
  21858. },
  21859. ]
  21860. ))
  21861. characterMakers.push(() => makeCharacter(
  21862. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21863. {
  21864. front: {
  21865. height: math.unit(4.5, "meters"),
  21866. weight: math.unit(3200, "lb"),
  21867. name: "Front",
  21868. image: {
  21869. source: "./media/characters/ty/front.svg",
  21870. extra: 1038 / 960,
  21871. bottom: 31.156 / 1068
  21872. }
  21873. },
  21874. back: {
  21875. height: math.unit(4.5, "meters"),
  21876. weight: math.unit(3200, "lb"),
  21877. name: "Back",
  21878. image: {
  21879. source: "./media/characters/ty/back.svg",
  21880. extra: 1044 / 966,
  21881. bottom: 7.48 / 1049
  21882. }
  21883. },
  21884. },
  21885. [
  21886. {
  21887. name: "Normal",
  21888. height: math.unit(4.5, "meters"),
  21889. default: true
  21890. },
  21891. ]
  21892. ))
  21893. characterMakers.push(() => makeCharacter(
  21894. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21895. {
  21896. front: {
  21897. height: math.unit(5 + 4 / 12, "feet"),
  21898. weight: math.unit(115, "lb"),
  21899. name: "Front",
  21900. image: {
  21901. source: "./media/characters/rocky/front.svg",
  21902. extra: 1012 / 975,
  21903. bottom: 54 / 1066
  21904. }
  21905. },
  21906. },
  21907. [
  21908. {
  21909. name: "Normal",
  21910. height: math.unit(5 + 4 / 12, "feet"),
  21911. default: true
  21912. },
  21913. ]
  21914. ))
  21915. characterMakers.push(() => makeCharacter(
  21916. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21917. {
  21918. upright: {
  21919. height: math.unit(6, "meters"),
  21920. weight: math.unit(4000, "kg"),
  21921. name: "Upright",
  21922. image: {
  21923. source: "./media/characters/ruin/upright.svg",
  21924. extra: 668 / 661,
  21925. bottom: 42 / 799.8396
  21926. }
  21927. },
  21928. },
  21929. [
  21930. {
  21931. name: "Normal",
  21932. height: math.unit(6, "meters"),
  21933. default: true
  21934. },
  21935. ]
  21936. ))
  21937. characterMakers.push(() => makeCharacter(
  21938. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21939. {
  21940. front: {
  21941. height: math.unit(5, "feet"),
  21942. weight: math.unit(106, "lb"),
  21943. name: "Front",
  21944. image: {
  21945. source: "./media/characters/robin/front.svg",
  21946. extra: 862 / 799,
  21947. bottom: 42.4 / 914.8856
  21948. }
  21949. },
  21950. },
  21951. [
  21952. {
  21953. name: "Normal",
  21954. height: math.unit(5, "feet"),
  21955. default: true
  21956. },
  21957. ]
  21958. ))
  21959. characterMakers.push(() => makeCharacter(
  21960. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21961. {
  21962. side: {
  21963. height: math.unit(3, "feet"),
  21964. weight: math.unit(225, "lb"),
  21965. name: "Side",
  21966. image: {
  21967. source: "./media/characters/saian/side.svg",
  21968. extra: 566 / 356,
  21969. bottom: 79.7 / 643
  21970. }
  21971. },
  21972. maw: {
  21973. height: math.unit(2.85, "feet"),
  21974. name: "Maw",
  21975. image: {
  21976. source: "./media/characters/saian/maw.svg"
  21977. }
  21978. },
  21979. },
  21980. [
  21981. {
  21982. name: "Normal",
  21983. height: math.unit(3, "feet"),
  21984. default: true
  21985. },
  21986. ]
  21987. ))
  21988. characterMakers.push(() => makeCharacter(
  21989. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21990. {
  21991. side: {
  21992. height: math.unit(8, "feet"),
  21993. weight: math.unit(300, "lb"),
  21994. name: "Side",
  21995. image: {
  21996. source: "./media/characters/equus-silvermane/side.svg",
  21997. extra: 2176 / 2050,
  21998. bottom: 65.7 / 2245
  21999. }
  22000. },
  22001. front: {
  22002. height: math.unit(8, "feet"),
  22003. weight: math.unit(300, "lb"),
  22004. name: "Front",
  22005. image: {
  22006. source: "./media/characters/equus-silvermane/front.svg",
  22007. extra: 4633 / 4400,
  22008. bottom: 71.3 / 4706.915
  22009. }
  22010. },
  22011. sideStepping: {
  22012. height: math.unit(8, "feet"),
  22013. weight: math.unit(300, "lb"),
  22014. name: "Side (Stepping)",
  22015. image: {
  22016. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22017. extra: 1968 / 1860,
  22018. bottom: 16.4 / 1989
  22019. }
  22020. },
  22021. },
  22022. [
  22023. {
  22024. name: "Normal",
  22025. height: math.unit(8, "feet")
  22026. },
  22027. {
  22028. name: "Minimacro",
  22029. height: math.unit(75, "feet"),
  22030. default: true
  22031. },
  22032. {
  22033. name: "Macro",
  22034. height: math.unit(150, "feet")
  22035. },
  22036. {
  22037. name: "Macro+",
  22038. height: math.unit(1000, "feet")
  22039. },
  22040. {
  22041. name: "Megamacro",
  22042. height: math.unit(1, "mile")
  22043. },
  22044. ]
  22045. ))
  22046. characterMakers.push(() => makeCharacter(
  22047. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22048. {
  22049. side: {
  22050. height: math.unit(20, "feet"),
  22051. weight: math.unit(30000, "kg"),
  22052. name: "Side",
  22053. image: {
  22054. source: "./media/characters/windar/side.svg",
  22055. extra: 1491 / 1248,
  22056. bottom: 82.56 / 1568
  22057. }
  22058. },
  22059. },
  22060. [
  22061. {
  22062. name: "Normal",
  22063. height: math.unit(20, "feet"),
  22064. default: true
  22065. },
  22066. ]
  22067. ))
  22068. characterMakers.push(() => makeCharacter(
  22069. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22070. {
  22071. side: {
  22072. height: math.unit(15.66, "feet"),
  22073. weight: math.unit(150, "lb"),
  22074. name: "Side",
  22075. image: {
  22076. source: "./media/characters/melody/side.svg",
  22077. extra: 1097 / 944,
  22078. bottom: 11.8 / 1109
  22079. }
  22080. },
  22081. sideOutfit: {
  22082. height: math.unit(15.66, "feet"),
  22083. weight: math.unit(150, "lb"),
  22084. name: "Side (Outfit)",
  22085. image: {
  22086. source: "./media/characters/melody/side-outfit.svg",
  22087. extra: 1097 / 944,
  22088. bottom: 11.8 / 1109
  22089. }
  22090. },
  22091. },
  22092. [
  22093. {
  22094. name: "Normal",
  22095. height: math.unit(15.66, "feet"),
  22096. default: true
  22097. },
  22098. ]
  22099. ))
  22100. characterMakers.push(() => makeCharacter(
  22101. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22102. {
  22103. front: {
  22104. height: math.unit(8, "feet"),
  22105. weight: math.unit(325, "lb"),
  22106. name: "Front",
  22107. image: {
  22108. source: "./media/characters/windera/front.svg",
  22109. extra: 3180 / 2845,
  22110. bottom: 178 / 3365
  22111. }
  22112. },
  22113. },
  22114. [
  22115. {
  22116. name: "Normal",
  22117. height: math.unit(8, "feet"),
  22118. default: true
  22119. },
  22120. ]
  22121. ))
  22122. characterMakers.push(() => makeCharacter(
  22123. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22124. {
  22125. front: {
  22126. height: math.unit(28.75, "feet"),
  22127. weight: math.unit(2000, "kg"),
  22128. name: "Front",
  22129. image: {
  22130. source: "./media/characters/sonear/front.svg",
  22131. extra: 1041.1 / 964.9,
  22132. bottom: 53.7 / 1096.6
  22133. }
  22134. },
  22135. },
  22136. [
  22137. {
  22138. name: "Normal",
  22139. height: math.unit(28.75, "feet"),
  22140. default: true
  22141. },
  22142. ]
  22143. ))
  22144. characterMakers.push(() => makeCharacter(
  22145. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22146. {
  22147. side: {
  22148. height: math.unit(25.5, "feet"),
  22149. weight: math.unit(23000, "kg"),
  22150. name: "Side",
  22151. image: {
  22152. source: "./media/characters/kanara/side.svg"
  22153. }
  22154. },
  22155. },
  22156. [
  22157. {
  22158. name: "Normal",
  22159. height: math.unit(25.5, "feet"),
  22160. default: true
  22161. },
  22162. ]
  22163. ))
  22164. characterMakers.push(() => makeCharacter(
  22165. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22166. {
  22167. side: {
  22168. height: math.unit(10, "feet"),
  22169. weight: math.unit(1000, "kg"),
  22170. name: "Side",
  22171. image: {
  22172. source: "./media/characters/ereus/side.svg",
  22173. extra: 1157 / 959,
  22174. bottom: 153 / 1312.5
  22175. }
  22176. },
  22177. },
  22178. [
  22179. {
  22180. name: "Normal",
  22181. height: math.unit(10, "feet"),
  22182. default: true
  22183. },
  22184. ]
  22185. ))
  22186. characterMakers.push(() => makeCharacter(
  22187. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22188. {
  22189. side: {
  22190. height: math.unit(4.5, "feet"),
  22191. weight: math.unit(500, "lb"),
  22192. name: "Side",
  22193. image: {
  22194. source: "./media/characters/e-ter/side.svg",
  22195. extra: 1550 / 1248,
  22196. bottom: 146 / 1694
  22197. }
  22198. },
  22199. },
  22200. [
  22201. {
  22202. name: "Normal",
  22203. height: math.unit(4.5, "feet"),
  22204. default: true
  22205. },
  22206. ]
  22207. ))
  22208. characterMakers.push(() => makeCharacter(
  22209. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22210. {
  22211. side: {
  22212. height: math.unit(9.7, "feet"),
  22213. weight: math.unit(4000, "kg"),
  22214. name: "Side",
  22215. image: {
  22216. source: "./media/characters/yamie/side.svg"
  22217. }
  22218. },
  22219. },
  22220. [
  22221. {
  22222. name: "Normal",
  22223. height: math.unit(9.7, "feet"),
  22224. default: true
  22225. },
  22226. ]
  22227. ))
  22228. characterMakers.push(() => makeCharacter(
  22229. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22230. {
  22231. front: {
  22232. height: math.unit(50, "feet"),
  22233. weight: math.unit(50000, "kg"),
  22234. name: "Front",
  22235. image: {
  22236. source: "./media/characters/anders/front.svg",
  22237. extra: 570 / 539,
  22238. bottom: 14.7 / 586.7
  22239. }
  22240. },
  22241. },
  22242. [
  22243. {
  22244. name: "Large",
  22245. height: math.unit(50, "feet")
  22246. },
  22247. {
  22248. name: "Macro",
  22249. height: math.unit(2000, "feet"),
  22250. default: true
  22251. },
  22252. {
  22253. name: "Megamacro",
  22254. height: math.unit(12, "miles")
  22255. },
  22256. ]
  22257. ))
  22258. characterMakers.push(() => makeCharacter(
  22259. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22260. {
  22261. front: {
  22262. height: math.unit(7 + 2 / 12, "feet"),
  22263. weight: math.unit(300, "lb"),
  22264. name: "Front",
  22265. image: {
  22266. source: "./media/characters/reban/front.svg",
  22267. extra: 516 / 487,
  22268. bottom: 42.82 / 558.356
  22269. }
  22270. },
  22271. dick: {
  22272. height: math.unit(7 / 5, "feet"),
  22273. name: "Dick",
  22274. image: {
  22275. source: "./media/characters/reban/dick.svg"
  22276. }
  22277. },
  22278. },
  22279. [
  22280. {
  22281. name: "Natural Height",
  22282. height: math.unit(7 + 2 / 12, "feet")
  22283. },
  22284. {
  22285. name: "Macro",
  22286. height: math.unit(500, "feet"),
  22287. default: true
  22288. },
  22289. {
  22290. name: "Canon Height",
  22291. height: math.unit(50, "AU")
  22292. },
  22293. ]
  22294. ))
  22295. characterMakers.push(() => makeCharacter(
  22296. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22297. {
  22298. front: {
  22299. height: math.unit(6, "feet"),
  22300. weight: math.unit(150, "lb"),
  22301. name: "Front",
  22302. image: {
  22303. source: "./media/characters/terrance-keayes/front.svg",
  22304. extra: 1.005,
  22305. bottom: 151 / 1615
  22306. }
  22307. },
  22308. side: {
  22309. height: math.unit(6, "feet"),
  22310. weight: math.unit(150, "lb"),
  22311. name: "Side",
  22312. image: {
  22313. source: "./media/characters/terrance-keayes/side.svg",
  22314. extra: 1.005,
  22315. bottom: 129.4 / 1544
  22316. }
  22317. },
  22318. back: {
  22319. height: math.unit(6, "feet"),
  22320. weight: math.unit(150, "lb"),
  22321. name: "Back",
  22322. image: {
  22323. source: "./media/characters/terrance-keayes/back.svg",
  22324. extra: 1.005,
  22325. bottom: 58.4 / 1557.3
  22326. }
  22327. },
  22328. dick: {
  22329. height: math.unit(6 * 0.208, "feet"),
  22330. name: "Dick",
  22331. image: {
  22332. source: "./media/characters/terrance-keayes/dick.svg"
  22333. }
  22334. },
  22335. },
  22336. [
  22337. {
  22338. name: "Canon Height",
  22339. height: math.unit(35, "miles"),
  22340. default: true
  22341. },
  22342. ]
  22343. ))
  22344. characterMakers.push(() => makeCharacter(
  22345. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22346. {
  22347. front: {
  22348. height: math.unit(6, "feet"),
  22349. weight: math.unit(150, "lb"),
  22350. name: "Front",
  22351. image: {
  22352. source: "./media/characters/ofelia/front.svg",
  22353. extra: 546 / 541,
  22354. bottom: 39 / 583
  22355. }
  22356. },
  22357. back: {
  22358. height: math.unit(6, "feet"),
  22359. weight: math.unit(150, "lb"),
  22360. name: "Back",
  22361. image: {
  22362. source: "./media/characters/ofelia/back.svg",
  22363. extra: 564 / 559.5,
  22364. bottom: 8.69 / 573.02
  22365. }
  22366. },
  22367. maw: {
  22368. height: math.unit(1, "feet"),
  22369. name: "Maw",
  22370. image: {
  22371. source: "./media/characters/ofelia/maw.svg"
  22372. }
  22373. },
  22374. foot: {
  22375. height: math.unit(1.949, "feet"),
  22376. name: "Foot",
  22377. image: {
  22378. source: "./media/characters/ofelia/foot.svg"
  22379. }
  22380. },
  22381. },
  22382. [
  22383. {
  22384. name: "Canon Height",
  22385. height: math.unit(2000, "miles"),
  22386. default: true
  22387. },
  22388. ]
  22389. ))
  22390. characterMakers.push(() => makeCharacter(
  22391. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22392. {
  22393. front: {
  22394. height: math.unit(6, "feet"),
  22395. weight: math.unit(150, "lb"),
  22396. name: "Front",
  22397. image: {
  22398. source: "./media/characters/samuel/front.svg",
  22399. extra: 265 / 258,
  22400. bottom: 2 / 266.1566
  22401. }
  22402. },
  22403. },
  22404. [
  22405. {
  22406. name: "Macro",
  22407. height: math.unit(100, "feet"),
  22408. default: true
  22409. },
  22410. {
  22411. name: "Full Size",
  22412. height: math.unit(1000, "miles")
  22413. },
  22414. ]
  22415. ))
  22416. characterMakers.push(() => makeCharacter(
  22417. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22418. {
  22419. front: {
  22420. height: math.unit(6, "feet"),
  22421. weight: math.unit(300, "lb"),
  22422. name: "Front",
  22423. image: {
  22424. source: "./media/characters/beishir-kiel/front.svg",
  22425. extra: 569 / 547,
  22426. bottom: 41.9 / 609
  22427. }
  22428. },
  22429. maw: {
  22430. height: math.unit(6 * 0.202, "feet"),
  22431. name: "Maw",
  22432. image: {
  22433. source: "./media/characters/beishir-kiel/maw.svg"
  22434. }
  22435. },
  22436. },
  22437. [
  22438. {
  22439. name: "Macro",
  22440. height: math.unit(300, "feet"),
  22441. default: true
  22442. },
  22443. ]
  22444. ))
  22445. characterMakers.push(() => makeCharacter(
  22446. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22447. {
  22448. front: {
  22449. height: math.unit(5 + 7/12, "feet"),
  22450. weight: math.unit(120, "lb"),
  22451. name: "Front",
  22452. image: {
  22453. source: "./media/characters/logan-grey/front.svg",
  22454. extra: 1836/1738,
  22455. bottom: 108/1944
  22456. }
  22457. },
  22458. back: {
  22459. height: math.unit(5 + 7/12, "feet"),
  22460. weight: math.unit(120, "lb"),
  22461. name: "Back",
  22462. image: {
  22463. source: "./media/characters/logan-grey/back.svg",
  22464. extra: 1880/1794,
  22465. bottom: 24/1904
  22466. }
  22467. },
  22468. frontSfw: {
  22469. height: math.unit(5 + 7/12, "feet"),
  22470. weight: math.unit(120, "lb"),
  22471. name: "Front (SFW)",
  22472. image: {
  22473. source: "./media/characters/logan-grey/front-sfw.svg",
  22474. extra: 1836/1738,
  22475. bottom: 108/1944
  22476. }
  22477. },
  22478. backSfw: {
  22479. height: math.unit(5 + 7/12, "feet"),
  22480. weight: math.unit(120, "lb"),
  22481. name: "Back (SFW)",
  22482. image: {
  22483. source: "./media/characters/logan-grey/back-sfw.svg",
  22484. extra: 1880/1794,
  22485. bottom: 24/1904
  22486. }
  22487. },
  22488. hands: {
  22489. height: math.unit(0.84, "feet"),
  22490. name: "Hands",
  22491. image: {
  22492. source: "./media/characters/logan-grey/hands.svg"
  22493. }
  22494. },
  22495. paws: {
  22496. height: math.unit(0.72, "feet"),
  22497. name: "Paws",
  22498. image: {
  22499. source: "./media/characters/logan-grey/paws.svg"
  22500. }
  22501. },
  22502. cock: {
  22503. height: math.unit(1.45, "feet"),
  22504. name: "Cock",
  22505. image: {
  22506. source: "./media/characters/logan-grey/cock.svg"
  22507. }
  22508. },
  22509. cockAlt: {
  22510. height: math.unit(1.437, "feet"),
  22511. name: "Cock (alt)",
  22512. image: {
  22513. source: "./media/characters/logan-grey/cock-alt.svg"
  22514. }
  22515. },
  22516. },
  22517. [
  22518. {
  22519. name: "Normal",
  22520. height: math.unit(5 + 8 / 12, "feet")
  22521. },
  22522. {
  22523. name: "The 500 Foot Femboy",
  22524. height: math.unit(500, "feet"),
  22525. default: true
  22526. },
  22527. {
  22528. name: "Megmacro",
  22529. height: math.unit(20, "miles")
  22530. },
  22531. ]
  22532. ))
  22533. characterMakers.push(() => makeCharacter(
  22534. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22535. {
  22536. front: {
  22537. height: math.unit(8 + 2 / 12, "feet"),
  22538. weight: math.unit(275, "lb"),
  22539. name: "Front",
  22540. image: {
  22541. source: "./media/characters/draganta/front.svg",
  22542. extra: 1177 / 1135,
  22543. bottom: 33.46 / 1212.1
  22544. }
  22545. },
  22546. },
  22547. [
  22548. {
  22549. name: "Normal",
  22550. height: math.unit(8 + 6 / 12, "feet"),
  22551. default: true
  22552. },
  22553. {
  22554. name: "Macro",
  22555. height: math.unit(150, "feet")
  22556. },
  22557. {
  22558. name: "Megamacro",
  22559. height: math.unit(1000, "miles")
  22560. },
  22561. ]
  22562. ))
  22563. characterMakers.push(() => makeCharacter(
  22564. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22565. {
  22566. front: {
  22567. height: math.unit(1.72, "m"),
  22568. weight: math.unit(80, "lb"),
  22569. name: "Front",
  22570. image: {
  22571. source: "./media/characters/voski/front.svg",
  22572. extra: 2076.22 / 2022.4,
  22573. bottom: 102.7 / 2177.3866
  22574. }
  22575. },
  22576. frontNsfw: {
  22577. height: math.unit(1.72, "m"),
  22578. weight: math.unit(80, "lb"),
  22579. name: "Front (NSFW)",
  22580. image: {
  22581. source: "./media/characters/voski/front-nsfw.svg",
  22582. extra: 2076.22 / 2022.4,
  22583. bottom: 102.7 / 2177.3866
  22584. }
  22585. },
  22586. back: {
  22587. height: math.unit(1.72, "m"),
  22588. weight: math.unit(80, "lb"),
  22589. name: "Back",
  22590. image: {
  22591. source: "./media/characters/voski/back.svg",
  22592. extra: 2104 / 2051,
  22593. bottom: 10.45 / 2113.63
  22594. }
  22595. },
  22596. },
  22597. [
  22598. {
  22599. name: "Normal",
  22600. height: math.unit(1.72, "m")
  22601. },
  22602. {
  22603. name: "Macro",
  22604. height: math.unit(55, "m"),
  22605. default: true
  22606. },
  22607. {
  22608. name: "Macro+",
  22609. height: math.unit(300, "m")
  22610. },
  22611. {
  22612. name: "Macro++",
  22613. height: math.unit(700, "m")
  22614. },
  22615. {
  22616. name: "Macro+++",
  22617. height: math.unit(4500, "m")
  22618. },
  22619. {
  22620. name: "Macro++++",
  22621. height: math.unit(45, "km")
  22622. },
  22623. {
  22624. name: "Macro+++++",
  22625. height: math.unit(1220, "km")
  22626. },
  22627. ]
  22628. ))
  22629. characterMakers.push(() => makeCharacter(
  22630. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22631. {
  22632. front: {
  22633. height: math.unit(2.3, "m"),
  22634. weight: math.unit(304, "kg"),
  22635. name: "Front",
  22636. image: {
  22637. source: "./media/characters/icowom-lee/front.svg",
  22638. extra: 985 / 955,
  22639. bottom: 25.4 / 1012
  22640. }
  22641. },
  22642. fronttentacles: {
  22643. height: math.unit(2.3, "m"),
  22644. weight: math.unit(304, "kg"),
  22645. name: "Front-tentacles",
  22646. image: {
  22647. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22648. extra: 985 / 955,
  22649. bottom: 25.4 / 1012
  22650. }
  22651. },
  22652. back: {
  22653. height: math.unit(2.3, "m"),
  22654. weight: math.unit(304, "kg"),
  22655. name: "Back",
  22656. image: {
  22657. source: "./media/characters/icowom-lee/back.svg",
  22658. extra: 975 / 954,
  22659. bottom: 9.5 / 985
  22660. }
  22661. },
  22662. backtentacles: {
  22663. height: math.unit(2.3, "m"),
  22664. weight: math.unit(304, "kg"),
  22665. name: "Back-tentacles",
  22666. image: {
  22667. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22668. extra: 975 / 954,
  22669. bottom: 9.5 / 985
  22670. }
  22671. },
  22672. frontDressed: {
  22673. height: math.unit(2.3, "m"),
  22674. weight: math.unit(304, "kg"),
  22675. name: "Front (Dressed)",
  22676. image: {
  22677. source: "./media/characters/icowom-lee/front-dressed.svg",
  22678. extra: 3076 / 2933,
  22679. bottom: 51.4 / 3125.1889
  22680. }
  22681. },
  22682. rump: {
  22683. height: math.unit(0.776, "meters"),
  22684. name: "Rump",
  22685. image: {
  22686. source: "./media/characters/icowom-lee/rump.svg"
  22687. }
  22688. },
  22689. genitals: {
  22690. height: math.unit(0.78, "meters"),
  22691. name: "Genitals",
  22692. image: {
  22693. source: "./media/characters/icowom-lee/genitals.svg"
  22694. }
  22695. },
  22696. },
  22697. [
  22698. {
  22699. name: "Normal",
  22700. height: math.unit(2.3, "meters"),
  22701. default: true
  22702. },
  22703. {
  22704. name: "Macro",
  22705. height: math.unit(94, "meters"),
  22706. default: true
  22707. },
  22708. ]
  22709. ))
  22710. characterMakers.push(() => makeCharacter(
  22711. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22712. {
  22713. front: {
  22714. height: math.unit(22, "meters"),
  22715. weight: math.unit(21000, "kg"),
  22716. name: "Front",
  22717. image: {
  22718. source: "./media/characters/shock-diamond/front.svg",
  22719. extra: 2204 / 2053,
  22720. bottom: 65 / 2239.47
  22721. }
  22722. },
  22723. frontNude: {
  22724. height: math.unit(22, "meters"),
  22725. weight: math.unit(21000, "kg"),
  22726. name: "Front (Nude)",
  22727. image: {
  22728. source: "./media/characters/shock-diamond/front-nude.svg",
  22729. extra: 2514 / 2285,
  22730. bottom: 13 / 2527.56
  22731. }
  22732. },
  22733. },
  22734. [
  22735. {
  22736. name: "Normal",
  22737. height: math.unit(3, "meters")
  22738. },
  22739. {
  22740. name: "Macro",
  22741. height: math.unit(22, "meters"),
  22742. default: true
  22743. },
  22744. ]
  22745. ))
  22746. characterMakers.push(() => makeCharacter(
  22747. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22748. {
  22749. front: {
  22750. height: math.unit(5 + 4 / 12, "feet"),
  22751. weight: math.unit(120, "lb"),
  22752. name: "Front",
  22753. image: {
  22754. source: "./media/characters/rory/front.svg",
  22755. extra: 1318/1241,
  22756. bottom: 42/1360
  22757. }
  22758. },
  22759. back: {
  22760. height: math.unit(5 + 4 / 12, "feet"),
  22761. weight: math.unit(120, "lb"),
  22762. name: "Back",
  22763. image: {
  22764. source: "./media/characters/rory/back.svg",
  22765. extra: 1318/1241,
  22766. bottom: 42/1360
  22767. }
  22768. },
  22769. butt: {
  22770. height: math.unit(1.74, "feet"),
  22771. name: "Butt",
  22772. image: {
  22773. source: "./media/characters/rory/butt.svg"
  22774. }
  22775. },
  22776. dick: {
  22777. height: math.unit(1.02, "feet"),
  22778. name: "Dick",
  22779. image: {
  22780. source: "./media/characters/rory/dick.svg"
  22781. }
  22782. },
  22783. paws: {
  22784. height: math.unit(1, "feet"),
  22785. name: "Paws",
  22786. image: {
  22787. source: "./media/characters/rory/paws.svg"
  22788. }
  22789. },
  22790. frontAlt: {
  22791. height: math.unit(5 + 4 / 12, "feet"),
  22792. weight: math.unit(120, "lb"),
  22793. name: "Front (Alt)",
  22794. image: {
  22795. source: "./media/characters/rory/front-alt.svg",
  22796. extra: 589 / 556,
  22797. bottom: 45.7 / 635.76
  22798. }
  22799. },
  22800. frontAltNude: {
  22801. height: math.unit(5 + 4 / 12, "feet"),
  22802. weight: math.unit(120, "lb"),
  22803. name: "Front (Alt, Nude)",
  22804. image: {
  22805. source: "./media/characters/rory/front-alt-nude.svg",
  22806. extra: 589 / 556,
  22807. bottom: 45.7 / 635.76
  22808. }
  22809. },
  22810. side: {
  22811. height: math.unit(5 + 4 / 12, "feet"),
  22812. weight: math.unit(120, "lb"),
  22813. name: "Side",
  22814. image: {
  22815. source: "./media/characters/rory/side.svg",
  22816. extra: 597 / 564,
  22817. bottom: 55 / 653
  22818. }
  22819. },
  22820. backAlt: {
  22821. height: math.unit(5 + 4 / 12, "feet"),
  22822. weight: math.unit(120, "lb"),
  22823. name: "Back (Alt)",
  22824. image: {
  22825. source: "./media/characters/rory/back-alt.svg",
  22826. extra: 620 / 585,
  22827. bottom: 8.86 / 630.43
  22828. }
  22829. },
  22830. dickAlt: {
  22831. height: math.unit(0.86, "feet"),
  22832. name: "Dick (Alt)",
  22833. image: {
  22834. source: "./media/characters/rory/dick-alt.svg"
  22835. }
  22836. },
  22837. },
  22838. [
  22839. {
  22840. name: "Normal",
  22841. height: math.unit(5 + 4 / 12, "feet"),
  22842. default: true
  22843. },
  22844. {
  22845. name: "Macro",
  22846. height: math.unit(100, "feet")
  22847. },
  22848. {
  22849. name: "Macro+",
  22850. height: math.unit(140, "feet")
  22851. },
  22852. {
  22853. name: "Macro++",
  22854. height: math.unit(300, "feet")
  22855. },
  22856. ]
  22857. ))
  22858. characterMakers.push(() => makeCharacter(
  22859. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22860. {
  22861. front: {
  22862. height: math.unit(5 + 9 / 12, "feet"),
  22863. weight: math.unit(190, "lb"),
  22864. name: "Front",
  22865. image: {
  22866. source: "./media/characters/sprisk/front.svg",
  22867. extra: 1225 / 1180,
  22868. bottom: 42.7 / 1266.4
  22869. }
  22870. },
  22871. frontNsfw: {
  22872. height: math.unit(5 + 9 / 12, "feet"),
  22873. weight: math.unit(190, "lb"),
  22874. name: "Front (NSFW)",
  22875. image: {
  22876. source: "./media/characters/sprisk/front-nsfw.svg",
  22877. extra: 1225 / 1180,
  22878. bottom: 42.7 / 1266.4
  22879. }
  22880. },
  22881. back: {
  22882. height: math.unit(5 + 9 / 12, "feet"),
  22883. weight: math.unit(190, "lb"),
  22884. name: "Back",
  22885. image: {
  22886. source: "./media/characters/sprisk/back.svg",
  22887. extra: 1247 / 1200,
  22888. bottom: 5.6 / 1253.04
  22889. }
  22890. },
  22891. },
  22892. [
  22893. {
  22894. name: "Tiny",
  22895. height: math.unit(2, "inches")
  22896. },
  22897. {
  22898. name: "Normal",
  22899. height: math.unit(5 + 9 / 12, "feet"),
  22900. default: true
  22901. },
  22902. {
  22903. name: "Mini Macro",
  22904. height: math.unit(18, "feet")
  22905. },
  22906. {
  22907. name: "Macro",
  22908. height: math.unit(100, "feet")
  22909. },
  22910. {
  22911. name: "MACRO",
  22912. height: math.unit(50, "miles")
  22913. },
  22914. {
  22915. name: "M A C R O",
  22916. height: math.unit(300, "miles")
  22917. },
  22918. ]
  22919. ))
  22920. characterMakers.push(() => makeCharacter(
  22921. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22922. {
  22923. side: {
  22924. height: math.unit(15.6, "meters"),
  22925. weight: math.unit(700000, "kg"),
  22926. name: "Side",
  22927. image: {
  22928. source: "./media/characters/bunsen/side.svg",
  22929. extra: 1644 / 358
  22930. }
  22931. },
  22932. foot: {
  22933. height: math.unit(1.611 * 1644 / 358, "meter"),
  22934. name: "Foot",
  22935. image: {
  22936. source: "./media/characters/bunsen/foot.svg"
  22937. }
  22938. },
  22939. },
  22940. [
  22941. {
  22942. name: "Small",
  22943. height: math.unit(10, "feet")
  22944. },
  22945. {
  22946. name: "Normal",
  22947. height: math.unit(15.6, "meters"),
  22948. default: true
  22949. },
  22950. ]
  22951. ))
  22952. characterMakers.push(() => makeCharacter(
  22953. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22954. {
  22955. front: {
  22956. height: math.unit(4 + 11 / 12, "feet"),
  22957. weight: math.unit(140, "lb"),
  22958. name: "Front",
  22959. image: {
  22960. source: "./media/characters/sesh/front.svg",
  22961. extra: 3420 / 3231,
  22962. bottom: 72 / 3949.5
  22963. }
  22964. },
  22965. },
  22966. [
  22967. {
  22968. name: "Normal",
  22969. height: math.unit(4 + 11 / 12, "feet")
  22970. },
  22971. {
  22972. name: "Grown",
  22973. height: math.unit(15, "feet"),
  22974. default: true
  22975. },
  22976. {
  22977. name: "Macro",
  22978. height: math.unit(1500, "feet")
  22979. },
  22980. {
  22981. name: "Megamacro",
  22982. height: math.unit(30, "miles")
  22983. },
  22984. {
  22985. name: "Continental",
  22986. height: math.unit(3000, "miles")
  22987. },
  22988. {
  22989. name: "Gravity Mass",
  22990. height: math.unit(300000, "miles")
  22991. },
  22992. {
  22993. name: "Planet Buster",
  22994. height: math.unit(30000000, "miles")
  22995. },
  22996. {
  22997. name: "Big",
  22998. height: math.unit(3000000000, "miles")
  22999. },
  23000. ]
  23001. ))
  23002. characterMakers.push(() => makeCharacter(
  23003. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23004. {
  23005. front: {
  23006. height: math.unit(9, "feet"),
  23007. weight: math.unit(350, "lb"),
  23008. name: "Front",
  23009. image: {
  23010. source: "./media/characters/pepper/front.svg",
  23011. extra: 1448 / 1312,
  23012. bottom: 9.4 / 1457.88
  23013. }
  23014. },
  23015. back: {
  23016. height: math.unit(9, "feet"),
  23017. weight: math.unit(350, "lb"),
  23018. name: "Back",
  23019. image: {
  23020. source: "./media/characters/pepper/back.svg",
  23021. extra: 1423 / 1300,
  23022. bottom: 4.6 / 1429
  23023. }
  23024. },
  23025. maw: {
  23026. height: math.unit(0.932, "feet"),
  23027. name: "Maw",
  23028. image: {
  23029. source: "./media/characters/pepper/maw.svg"
  23030. }
  23031. },
  23032. },
  23033. [
  23034. {
  23035. name: "Normal",
  23036. height: math.unit(9, "feet"),
  23037. default: true
  23038. },
  23039. ]
  23040. ))
  23041. characterMakers.push(() => makeCharacter(
  23042. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23043. {
  23044. front: {
  23045. height: math.unit(6, "feet"),
  23046. weight: math.unit(150, "lb"),
  23047. name: "Front",
  23048. image: {
  23049. source: "./media/characters/maelstrom/front.svg",
  23050. extra: 2100 / 1883,
  23051. bottom: 94 / 2196.7
  23052. }
  23053. },
  23054. },
  23055. [
  23056. {
  23057. name: "Less Kaiju",
  23058. height: math.unit(200, "feet")
  23059. },
  23060. {
  23061. name: "Kaiju",
  23062. height: math.unit(400, "feet"),
  23063. default: true
  23064. },
  23065. {
  23066. name: "Kaiju-er",
  23067. height: math.unit(600, "feet")
  23068. },
  23069. ]
  23070. ))
  23071. characterMakers.push(() => makeCharacter(
  23072. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23073. {
  23074. front: {
  23075. height: math.unit(6 + 5 / 12, "feet"),
  23076. weight: math.unit(180, "lb"),
  23077. name: "Front",
  23078. image: {
  23079. source: "./media/characters/lexir/front.svg",
  23080. extra: 180 / 172,
  23081. bottom: 12 / 192
  23082. }
  23083. },
  23084. back: {
  23085. height: math.unit(6 + 5 / 12, "feet"),
  23086. weight: math.unit(180, "lb"),
  23087. name: "Back",
  23088. image: {
  23089. source: "./media/characters/lexir/back.svg",
  23090. extra: 183.84 / 175.5,
  23091. bottom: 3.1 / 187
  23092. }
  23093. },
  23094. },
  23095. [
  23096. {
  23097. name: "Very Smal",
  23098. height: math.unit(1, "nm")
  23099. },
  23100. {
  23101. name: "Normal",
  23102. height: math.unit(6 + 5 / 12, "feet"),
  23103. default: true
  23104. },
  23105. {
  23106. name: "Macro",
  23107. height: math.unit(1, "mile")
  23108. },
  23109. {
  23110. name: "Megamacro",
  23111. height: math.unit(50, "miles")
  23112. },
  23113. ]
  23114. ))
  23115. characterMakers.push(() => makeCharacter(
  23116. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23117. {
  23118. front: {
  23119. height: math.unit(1.5, "meters"),
  23120. weight: math.unit(100, "lb"),
  23121. name: "Front",
  23122. image: {
  23123. source: "./media/characters/maksio/front.svg",
  23124. extra: 1549 / 1531,
  23125. bottom: 123.7 / 1674.5429
  23126. }
  23127. },
  23128. back: {
  23129. height: math.unit(1.5, "meters"),
  23130. weight: math.unit(100, "lb"),
  23131. name: "Back",
  23132. image: {
  23133. source: "./media/characters/maksio/back.svg",
  23134. extra: 1541 / 1509,
  23135. bottom: 97 / 1639
  23136. }
  23137. },
  23138. hand: {
  23139. height: math.unit(0.621, "feet"),
  23140. name: "Hand",
  23141. image: {
  23142. source: "./media/characters/maksio/hand.svg"
  23143. }
  23144. },
  23145. foot: {
  23146. height: math.unit(1.611, "feet"),
  23147. name: "Foot",
  23148. image: {
  23149. source: "./media/characters/maksio/foot.svg"
  23150. }
  23151. },
  23152. },
  23153. [
  23154. {
  23155. name: "Shrunken",
  23156. height: math.unit(10, "cm")
  23157. },
  23158. {
  23159. name: "Normal",
  23160. height: math.unit(150, "cm"),
  23161. default: true
  23162. },
  23163. ]
  23164. ))
  23165. characterMakers.push(() => makeCharacter(
  23166. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23167. {
  23168. front: {
  23169. height: math.unit(100, "feet"),
  23170. name: "Front",
  23171. image: {
  23172. source: "./media/characters/erza-bear/front.svg",
  23173. extra: 2449 / 2390,
  23174. bottom: 46 / 2494
  23175. }
  23176. },
  23177. back: {
  23178. height: math.unit(100, "feet"),
  23179. name: "Back",
  23180. image: {
  23181. source: "./media/characters/erza-bear/back.svg",
  23182. extra: 2489 / 2430,
  23183. bottom: 85.4 / 2480
  23184. }
  23185. },
  23186. tail: {
  23187. height: math.unit(42, "feet"),
  23188. name: "Tail",
  23189. image: {
  23190. source: "./media/characters/erza-bear/tail.svg"
  23191. }
  23192. },
  23193. tongue: {
  23194. height: math.unit(8, "feet"),
  23195. name: "Tongue",
  23196. image: {
  23197. source: "./media/characters/erza-bear/tongue.svg"
  23198. }
  23199. },
  23200. dick: {
  23201. height: math.unit(10.5, "feet"),
  23202. name: "Dick",
  23203. image: {
  23204. source: "./media/characters/erza-bear/dick.svg"
  23205. }
  23206. },
  23207. dickVertical: {
  23208. height: math.unit(16.9, "feet"),
  23209. name: "Dick (Vertical)",
  23210. image: {
  23211. source: "./media/characters/erza-bear/dick-vertical.svg"
  23212. }
  23213. },
  23214. },
  23215. [
  23216. {
  23217. name: "Macro",
  23218. height: math.unit(100, "feet"),
  23219. default: true
  23220. },
  23221. ]
  23222. ))
  23223. characterMakers.push(() => makeCharacter(
  23224. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23225. {
  23226. front: {
  23227. height: math.unit(172, "cm"),
  23228. weight: math.unit(73, "kg"),
  23229. name: "Front",
  23230. image: {
  23231. source: "./media/characters/violet-flor/front.svg",
  23232. extra: 1530 / 1442,
  23233. bottom: 61.9 / 1588.8
  23234. }
  23235. },
  23236. back: {
  23237. height: math.unit(180, "cm"),
  23238. weight: math.unit(73, "kg"),
  23239. name: "Back",
  23240. image: {
  23241. source: "./media/characters/violet-flor/back.svg",
  23242. extra: 1692 / 1630,
  23243. bottom: 20 / 1712
  23244. }
  23245. },
  23246. },
  23247. [
  23248. {
  23249. name: "Normal",
  23250. height: math.unit(172, "cm"),
  23251. default: true
  23252. },
  23253. ]
  23254. ))
  23255. characterMakers.push(() => makeCharacter(
  23256. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23257. {
  23258. front: {
  23259. height: math.unit(6, "feet"),
  23260. weight: math.unit(220, "lb"),
  23261. name: "Front",
  23262. image: {
  23263. source: "./media/characters/lynn-rhea/front.svg",
  23264. extra: 310 / 273
  23265. }
  23266. },
  23267. back: {
  23268. height: math.unit(6, "feet"),
  23269. weight: math.unit(220, "lb"),
  23270. name: "Back",
  23271. image: {
  23272. source: "./media/characters/lynn-rhea/back.svg",
  23273. extra: 310 / 273
  23274. }
  23275. },
  23276. dicks: {
  23277. height: math.unit(0.9, "feet"),
  23278. name: "Dicks",
  23279. image: {
  23280. source: "./media/characters/lynn-rhea/dicks.svg"
  23281. }
  23282. },
  23283. slit: {
  23284. height: math.unit(0.4, "feet"),
  23285. name: "Slit",
  23286. image: {
  23287. source: "./media/characters/lynn-rhea/slit.svg"
  23288. }
  23289. },
  23290. },
  23291. [
  23292. {
  23293. name: "Micro",
  23294. height: math.unit(1, "inch")
  23295. },
  23296. {
  23297. name: "Macro",
  23298. height: math.unit(60, "feet"),
  23299. default: true
  23300. },
  23301. {
  23302. name: "Megamacro",
  23303. height: math.unit(2, "miles")
  23304. },
  23305. {
  23306. name: "Gigamacro",
  23307. height: math.unit(3, "earths")
  23308. },
  23309. {
  23310. name: "Galactic",
  23311. height: math.unit(0.8, "galaxies")
  23312. },
  23313. ]
  23314. ))
  23315. characterMakers.push(() => makeCharacter(
  23316. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23317. {
  23318. front: {
  23319. height: math.unit(1600, "feet"),
  23320. weight: math.unit(85758785169, "kg"),
  23321. name: "Front",
  23322. image: {
  23323. source: "./media/characters/valathos/front.svg",
  23324. extra: 1451 / 1339
  23325. }
  23326. },
  23327. },
  23328. [
  23329. {
  23330. name: "Macro",
  23331. height: math.unit(1600, "feet"),
  23332. default: true
  23333. },
  23334. ]
  23335. ))
  23336. characterMakers.push(() => makeCharacter(
  23337. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23338. {
  23339. front: {
  23340. height: math.unit(7 + 5 / 12, "feet"),
  23341. weight: math.unit(300, "lb"),
  23342. name: "Front",
  23343. image: {
  23344. source: "./media/characters/azula/front.svg",
  23345. extra: 3208 / 2880,
  23346. bottom: 80.2 / 3277
  23347. }
  23348. },
  23349. back: {
  23350. height: math.unit(7 + 5 / 12, "feet"),
  23351. weight: math.unit(300, "lb"),
  23352. name: "Back",
  23353. image: {
  23354. source: "./media/characters/azula/back.svg",
  23355. extra: 3169 / 2822,
  23356. bottom: 150.6 / 3321
  23357. }
  23358. },
  23359. },
  23360. [
  23361. {
  23362. name: "Normal",
  23363. height: math.unit(7 + 5 / 12, "feet"),
  23364. default: true
  23365. },
  23366. {
  23367. name: "Big",
  23368. height: math.unit(20, "feet")
  23369. },
  23370. ]
  23371. ))
  23372. characterMakers.push(() => makeCharacter(
  23373. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23374. {
  23375. front: {
  23376. height: math.unit(5 + 1 / 12, "feet"),
  23377. weight: math.unit(110, "lb"),
  23378. name: "Front",
  23379. image: {
  23380. source: "./media/characters/rupert/front.svg",
  23381. extra: 1549 / 1495,
  23382. bottom: 54.2 / 1604.4
  23383. }
  23384. },
  23385. },
  23386. [
  23387. {
  23388. name: "Normal",
  23389. height: math.unit(5 + 1 / 12, "feet"),
  23390. default: true
  23391. },
  23392. ]
  23393. ))
  23394. characterMakers.push(() => makeCharacter(
  23395. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23396. {
  23397. front: {
  23398. height: math.unit(8 + 4 / 12, "feet"),
  23399. weight: math.unit(350, "lb"),
  23400. name: "Front",
  23401. image: {
  23402. source: "./media/characters/sheera-castellar/front.svg",
  23403. extra: 1957 / 1894,
  23404. bottom: 26.97 / 1975.017
  23405. }
  23406. },
  23407. side: {
  23408. height: math.unit(8 + 4 / 12, "feet"),
  23409. weight: math.unit(350, "lb"),
  23410. name: "Side",
  23411. image: {
  23412. source: "./media/characters/sheera-castellar/side.svg",
  23413. extra: 1957 / 1894
  23414. }
  23415. },
  23416. back: {
  23417. height: math.unit(8 + 4 / 12, "feet"),
  23418. weight: math.unit(350, "lb"),
  23419. name: "Back",
  23420. image: {
  23421. source: "./media/characters/sheera-castellar/back.svg",
  23422. extra: 1957 / 1894
  23423. }
  23424. },
  23425. angled: {
  23426. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23427. weight: math.unit(350, "lb"),
  23428. name: "Angled",
  23429. image: {
  23430. source: "./media/characters/sheera-castellar/angled.svg",
  23431. extra: 1807 / 1707,
  23432. bottom: 68 / 1875
  23433. }
  23434. },
  23435. genitals: {
  23436. height: math.unit(2.2, "feet"),
  23437. name: "Genitals",
  23438. image: {
  23439. source: "./media/characters/sheera-castellar/genitals.svg"
  23440. }
  23441. },
  23442. taur: {
  23443. height: math.unit(10 + 6/12, "feet"),
  23444. name: "Taur",
  23445. image: {
  23446. source: "./media/characters/sheera-castellar/taur.svg",
  23447. extra: 2017/1909,
  23448. bottom: 185/2202
  23449. }
  23450. },
  23451. },
  23452. [
  23453. {
  23454. name: "Normal",
  23455. height: math.unit(8 + 4 / 12, "feet")
  23456. },
  23457. {
  23458. name: "Macro",
  23459. height: math.unit(150, "feet"),
  23460. default: true
  23461. },
  23462. {
  23463. name: "Macro+",
  23464. height: math.unit(800, "feet")
  23465. },
  23466. ]
  23467. ))
  23468. characterMakers.push(() => makeCharacter(
  23469. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23470. {
  23471. front: {
  23472. height: math.unit(6, "feet"),
  23473. weight: math.unit(150, "lb"),
  23474. name: "Front",
  23475. image: {
  23476. source: "./media/characters/jaipur/front.svg",
  23477. extra: 3860 / 3731,
  23478. bottom: 287 / 4140
  23479. }
  23480. },
  23481. back: {
  23482. height: math.unit(6, "feet"),
  23483. weight: math.unit(150, "lb"),
  23484. name: "Back",
  23485. image: {
  23486. source: "./media/characters/jaipur/back.svg",
  23487. extra: 4060 / 3930,
  23488. bottom: 151 / 4200
  23489. }
  23490. },
  23491. },
  23492. [
  23493. {
  23494. name: "Normal",
  23495. height: math.unit(1.85, "meters"),
  23496. default: true
  23497. },
  23498. {
  23499. name: "Macro",
  23500. height: math.unit(150, "meters")
  23501. },
  23502. {
  23503. name: "Macro+",
  23504. height: math.unit(0.5, "miles")
  23505. },
  23506. {
  23507. name: "Macro++",
  23508. height: math.unit(2.5, "miles")
  23509. },
  23510. {
  23511. name: "Macro+++",
  23512. height: math.unit(12, "miles")
  23513. },
  23514. {
  23515. name: "Macro++++",
  23516. height: math.unit(120, "miles")
  23517. },
  23518. {
  23519. name: "Macro+++++",
  23520. height: math.unit(1200, "miles")
  23521. },
  23522. ]
  23523. ))
  23524. characterMakers.push(() => makeCharacter(
  23525. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23526. {
  23527. front: {
  23528. height: math.unit(6, "feet"),
  23529. weight: math.unit(150, "lb"),
  23530. name: "Front",
  23531. image: {
  23532. source: "./media/characters/sheila-wolf/front.svg",
  23533. extra: 1931 / 1808,
  23534. bottom: 29.5 / 1960
  23535. }
  23536. },
  23537. dick: {
  23538. height: math.unit(1.464, "feet"),
  23539. name: "Dick",
  23540. image: {
  23541. source: "./media/characters/sheila-wolf/dick.svg"
  23542. }
  23543. },
  23544. muzzle: {
  23545. height: math.unit(0.513, "feet"),
  23546. name: "Muzzle",
  23547. image: {
  23548. source: "./media/characters/sheila-wolf/muzzle.svg"
  23549. }
  23550. },
  23551. },
  23552. [
  23553. {
  23554. name: "Macro",
  23555. height: math.unit(70, "feet"),
  23556. default: true
  23557. },
  23558. ]
  23559. ))
  23560. characterMakers.push(() => makeCharacter(
  23561. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23562. {
  23563. front: {
  23564. height: math.unit(32, "meters"),
  23565. weight: math.unit(300000, "kg"),
  23566. name: "Front",
  23567. image: {
  23568. source: "./media/characters/almor/front.svg",
  23569. extra: 1408 / 1322,
  23570. bottom: 94.6 / 1506.5
  23571. }
  23572. },
  23573. },
  23574. [
  23575. {
  23576. name: "Macro",
  23577. height: math.unit(32, "meters"),
  23578. default: true
  23579. },
  23580. ]
  23581. ))
  23582. characterMakers.push(() => makeCharacter(
  23583. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23584. {
  23585. front: {
  23586. height: math.unit(7, "feet"),
  23587. weight: math.unit(200, "lb"),
  23588. name: "Front",
  23589. image: {
  23590. source: "./media/characters/silver/front.svg",
  23591. extra: 472.1 / 450.5,
  23592. bottom: 26.5 / 499.424
  23593. }
  23594. },
  23595. },
  23596. [
  23597. {
  23598. name: "Normal",
  23599. height: math.unit(7, "feet"),
  23600. default: true
  23601. },
  23602. {
  23603. name: "Macro",
  23604. height: math.unit(800, "feet")
  23605. },
  23606. {
  23607. name: "Megamacro",
  23608. height: math.unit(250, "miles")
  23609. },
  23610. ]
  23611. ))
  23612. characterMakers.push(() => makeCharacter(
  23613. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23614. {
  23615. front: {
  23616. height: math.unit(6, "feet"),
  23617. weight: math.unit(150, "lb"),
  23618. name: "Front",
  23619. image: {
  23620. source: "./media/characters/pliskin/front.svg",
  23621. extra: 1469 / 1359,
  23622. bottom: 70 / 1540
  23623. }
  23624. },
  23625. },
  23626. [
  23627. {
  23628. name: "Micro",
  23629. height: math.unit(3, "inches")
  23630. },
  23631. {
  23632. name: "Normal",
  23633. height: math.unit(5 + 11 / 12, "feet"),
  23634. default: true
  23635. },
  23636. {
  23637. name: "Macro",
  23638. height: math.unit(120, "feet")
  23639. },
  23640. ]
  23641. ))
  23642. characterMakers.push(() => makeCharacter(
  23643. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23644. {
  23645. front: {
  23646. height: math.unit(6, "feet"),
  23647. weight: math.unit(150, "lb"),
  23648. name: "Front",
  23649. image: {
  23650. source: "./media/characters/sammy/front.svg",
  23651. extra: 1193 / 1089,
  23652. bottom: 30.5 / 1226
  23653. }
  23654. },
  23655. },
  23656. [
  23657. {
  23658. name: "Macro",
  23659. height: math.unit(1700, "feet"),
  23660. default: true
  23661. },
  23662. {
  23663. name: "Examacro",
  23664. height: math.unit(2.5e9, "lightyears")
  23665. },
  23666. ]
  23667. ))
  23668. characterMakers.push(() => makeCharacter(
  23669. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23670. {
  23671. front: {
  23672. height: math.unit(21, "meters"),
  23673. weight: math.unit(12, "tonnes"),
  23674. name: "Front",
  23675. image: {
  23676. source: "./media/characters/kuru/front.svg",
  23677. extra: 4301 / 3785,
  23678. bottom: 371.3 / 4691
  23679. }
  23680. },
  23681. },
  23682. [
  23683. {
  23684. name: "Macro",
  23685. height: math.unit(21, "meters"),
  23686. default: true
  23687. },
  23688. ]
  23689. ))
  23690. characterMakers.push(() => makeCharacter(
  23691. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23692. {
  23693. front: {
  23694. height: math.unit(23, "meters"),
  23695. weight: math.unit(12.2, "tonnes"),
  23696. name: "Front",
  23697. image: {
  23698. source: "./media/characters/rakka/front.svg",
  23699. extra: 4670 / 4169,
  23700. bottom: 301 / 4968.7
  23701. }
  23702. },
  23703. },
  23704. [
  23705. {
  23706. name: "Macro",
  23707. height: math.unit(23, "meters"),
  23708. default: true
  23709. },
  23710. ]
  23711. ))
  23712. characterMakers.push(() => makeCharacter(
  23713. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23714. {
  23715. front: {
  23716. height: math.unit(6, "feet"),
  23717. weight: math.unit(150, "lb"),
  23718. name: "Front",
  23719. image: {
  23720. source: "./media/characters/rhys-feline/front.svg",
  23721. extra: 2488 / 2308,
  23722. bottom: 35.67 / 2519.19
  23723. }
  23724. },
  23725. },
  23726. [
  23727. {
  23728. name: "Really Small",
  23729. height: math.unit(1, "nm")
  23730. },
  23731. {
  23732. name: "Micro",
  23733. height: math.unit(4, "inches")
  23734. },
  23735. {
  23736. name: "Normal",
  23737. height: math.unit(4 + 10 / 12, "feet"),
  23738. default: true
  23739. },
  23740. {
  23741. name: "Macro",
  23742. height: math.unit(100, "feet")
  23743. },
  23744. {
  23745. name: "Megamacto",
  23746. height: math.unit(50, "miles")
  23747. },
  23748. ]
  23749. ))
  23750. characterMakers.push(() => makeCharacter(
  23751. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23752. {
  23753. side: {
  23754. height: math.unit(30, "feet"),
  23755. weight: math.unit(35000, "kg"),
  23756. name: "Side",
  23757. image: {
  23758. source: "./media/characters/alydar/side.svg",
  23759. extra: 234 / 222,
  23760. bottom: 6.5 / 241
  23761. }
  23762. },
  23763. front: {
  23764. height: math.unit(30, "feet"),
  23765. weight: math.unit(35000, "kg"),
  23766. name: "Front",
  23767. image: {
  23768. source: "./media/characters/alydar/front.svg",
  23769. extra: 223.37 / 210.2,
  23770. bottom: 22.3 / 246.76
  23771. }
  23772. },
  23773. top: {
  23774. height: math.unit(64.54, "feet"),
  23775. weight: math.unit(35000, "kg"),
  23776. name: "Top",
  23777. image: {
  23778. source: "./media/characters/alydar/top.svg"
  23779. }
  23780. },
  23781. anthro: {
  23782. height: math.unit(30, "feet"),
  23783. weight: math.unit(9000, "kg"),
  23784. name: "Anthro",
  23785. image: {
  23786. source: "./media/characters/alydar/anthro.svg",
  23787. extra: 432 / 421,
  23788. bottom: 7.18 / 440
  23789. }
  23790. },
  23791. maw: {
  23792. height: math.unit(11.693, "feet"),
  23793. name: "Maw",
  23794. image: {
  23795. source: "./media/characters/alydar/maw.svg"
  23796. }
  23797. },
  23798. head: {
  23799. height: math.unit(11.693, "feet"),
  23800. name: "Head",
  23801. image: {
  23802. source: "./media/characters/alydar/head.svg"
  23803. }
  23804. },
  23805. headAlt: {
  23806. height: math.unit(12.861, "feet"),
  23807. name: "Head (Alt)",
  23808. image: {
  23809. source: "./media/characters/alydar/head-alt.svg"
  23810. }
  23811. },
  23812. wing: {
  23813. height: math.unit(20.712, "feet"),
  23814. name: "Wing",
  23815. image: {
  23816. source: "./media/characters/alydar/wing.svg"
  23817. }
  23818. },
  23819. wingFeather: {
  23820. height: math.unit(9.662, "feet"),
  23821. name: "Wing Feather",
  23822. image: {
  23823. source: "./media/characters/alydar/wing-feather.svg"
  23824. }
  23825. },
  23826. countourFeather: {
  23827. height: math.unit(4.154, "feet"),
  23828. name: "Contour Feather",
  23829. image: {
  23830. source: "./media/characters/alydar/contour-feather.svg"
  23831. }
  23832. },
  23833. },
  23834. [
  23835. {
  23836. name: "Diplomatic",
  23837. height: math.unit(13, "feet"),
  23838. default: true
  23839. },
  23840. {
  23841. name: "Small",
  23842. height: math.unit(30, "feet")
  23843. },
  23844. {
  23845. name: "Normal",
  23846. height: math.unit(95, "feet"),
  23847. default: true
  23848. },
  23849. {
  23850. name: "Large",
  23851. height: math.unit(285, "feet")
  23852. },
  23853. {
  23854. name: "Incomprehensible",
  23855. height: math.unit(450, "megameters")
  23856. },
  23857. ]
  23858. ))
  23859. characterMakers.push(() => makeCharacter(
  23860. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23861. {
  23862. side: {
  23863. height: math.unit(11, "feet"),
  23864. weight: math.unit(1750, "kg"),
  23865. name: "Side",
  23866. image: {
  23867. source: "./media/characters/selicia/side.svg",
  23868. extra: 440 / 396,
  23869. bottom: 24.8 / 465.979
  23870. }
  23871. },
  23872. maw: {
  23873. height: math.unit(4.665, "feet"),
  23874. name: "Maw",
  23875. image: {
  23876. source: "./media/characters/selicia/maw.svg"
  23877. }
  23878. },
  23879. },
  23880. [
  23881. {
  23882. name: "Normal",
  23883. height: math.unit(11, "feet"),
  23884. default: true
  23885. },
  23886. ]
  23887. ))
  23888. characterMakers.push(() => makeCharacter(
  23889. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23890. {
  23891. side: {
  23892. height: math.unit(2 + 6 / 12, "feet"),
  23893. weight: math.unit(30, "lb"),
  23894. name: "Side",
  23895. image: {
  23896. source: "./media/characters/layla/side.svg",
  23897. extra: 244 / 188,
  23898. bottom: 18.2 / 262.1
  23899. }
  23900. },
  23901. back: {
  23902. height: math.unit(2 + 6 / 12, "feet"),
  23903. weight: math.unit(30, "lb"),
  23904. name: "Back",
  23905. image: {
  23906. source: "./media/characters/layla/back.svg",
  23907. extra: 308 / 241.5,
  23908. bottom: 8.9 / 316.8
  23909. }
  23910. },
  23911. cumming: {
  23912. height: math.unit(2 + 6 / 12, "feet"),
  23913. weight: math.unit(30, "lb"),
  23914. name: "Cumming",
  23915. image: {
  23916. source: "./media/characters/layla/cumming.svg",
  23917. extra: 342 / 279,
  23918. bottom: 595 / 938
  23919. }
  23920. },
  23921. dickFlaccid: {
  23922. height: math.unit(2.595, "feet"),
  23923. name: "Flaccid Genitals",
  23924. image: {
  23925. source: "./media/characters/layla/dick-flaccid.svg"
  23926. }
  23927. },
  23928. dickErect: {
  23929. height: math.unit(2.359, "feet"),
  23930. name: "Erect Genitals",
  23931. image: {
  23932. source: "./media/characters/layla/dick-erect.svg"
  23933. }
  23934. },
  23935. dragon: {
  23936. height: math.unit(40, "feet"),
  23937. name: "Dragon",
  23938. image: {
  23939. source: "./media/characters/layla/dragon.svg",
  23940. extra: 610/535,
  23941. bottom: 367/977
  23942. }
  23943. },
  23944. taur: {
  23945. height: math.unit(30, "feet"),
  23946. name: "Taur",
  23947. image: {
  23948. source: "./media/characters/layla/taur.svg",
  23949. extra: 1268/1199,
  23950. bottom: 112/1380
  23951. }
  23952. },
  23953. },
  23954. [
  23955. {
  23956. name: "Micro",
  23957. height: math.unit(1, "inch")
  23958. },
  23959. {
  23960. name: "Small",
  23961. height: math.unit(1, "foot")
  23962. },
  23963. {
  23964. name: "Normal",
  23965. height: math.unit(2 + 6 / 12, "feet"),
  23966. default: true
  23967. },
  23968. {
  23969. name: "Macro",
  23970. height: math.unit(200, "feet")
  23971. },
  23972. {
  23973. name: "Megamacro",
  23974. height: math.unit(1000, "miles")
  23975. },
  23976. {
  23977. name: "Planetary",
  23978. height: math.unit(8000, "miles")
  23979. },
  23980. {
  23981. name: "True Layla",
  23982. height: math.unit(200000 * 7, "multiverses")
  23983. },
  23984. ]
  23985. ))
  23986. characterMakers.push(() => makeCharacter(
  23987. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23988. {
  23989. back: {
  23990. height: math.unit(10.5, "feet"),
  23991. weight: math.unit(800, "lb"),
  23992. name: "Back",
  23993. image: {
  23994. source: "./media/characters/knox/back.svg",
  23995. extra: 1486 / 1089,
  23996. bottom: 107 / 1601.4
  23997. }
  23998. },
  23999. side: {
  24000. height: math.unit(10.5, "feet"),
  24001. weight: math.unit(800, "lb"),
  24002. name: "Side",
  24003. image: {
  24004. source: "./media/characters/knox/side.svg",
  24005. extra: 244 / 218,
  24006. bottom: 14 / 260
  24007. }
  24008. },
  24009. },
  24010. [
  24011. {
  24012. name: "Compact",
  24013. height: math.unit(10.5, "feet"),
  24014. default: true
  24015. },
  24016. {
  24017. name: "Dynamax",
  24018. height: math.unit(210, "feet")
  24019. },
  24020. {
  24021. name: "Full Macro",
  24022. height: math.unit(850, "feet")
  24023. },
  24024. ]
  24025. ))
  24026. characterMakers.push(() => makeCharacter(
  24027. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24028. {
  24029. front: {
  24030. height: math.unit(28, "feet"),
  24031. weight: math.unit(10500, "lb"),
  24032. name: "Front",
  24033. image: {
  24034. source: "./media/characters/kayda/front.svg",
  24035. extra: 1536 / 1428,
  24036. bottom: 68.7 / 1603
  24037. }
  24038. },
  24039. back: {
  24040. height: math.unit(28, "feet"),
  24041. weight: math.unit(10500, "lb"),
  24042. name: "Back",
  24043. image: {
  24044. source: "./media/characters/kayda/back.svg",
  24045. extra: 1557 / 1464,
  24046. bottom: 39.5 / 1597.49
  24047. }
  24048. },
  24049. dick: {
  24050. height: math.unit(3.858, "feet"),
  24051. name: "Dick",
  24052. image: {
  24053. source: "./media/characters/kayda/dick.svg"
  24054. }
  24055. },
  24056. },
  24057. [
  24058. {
  24059. name: "Macro",
  24060. height: math.unit(28, "feet"),
  24061. default: true
  24062. },
  24063. ]
  24064. ))
  24065. characterMakers.push(() => makeCharacter(
  24066. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24067. {
  24068. front: {
  24069. height: math.unit(10 + 11 / 12, "feet"),
  24070. weight: math.unit(1400, "lb"),
  24071. name: "Front",
  24072. image: {
  24073. source: "./media/characters/brian/front.svg",
  24074. extra: 737 / 692,
  24075. bottom: 55.4 / 785
  24076. }
  24077. },
  24078. },
  24079. [
  24080. {
  24081. name: "Normal",
  24082. height: math.unit(10 + 11 / 12, "feet"),
  24083. default: true
  24084. },
  24085. ]
  24086. ))
  24087. characterMakers.push(() => makeCharacter(
  24088. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24089. {
  24090. front: {
  24091. height: math.unit(5 + 8 / 12, "feet"),
  24092. weight: math.unit(140, "lb"),
  24093. name: "Front",
  24094. image: {
  24095. source: "./media/characters/khemri/front.svg",
  24096. extra: 4780 / 4059,
  24097. bottom: 80.1 / 4859.25
  24098. }
  24099. },
  24100. },
  24101. [
  24102. {
  24103. name: "Micro",
  24104. height: math.unit(6, "inches")
  24105. },
  24106. {
  24107. name: "Normal",
  24108. height: math.unit(5 + 8 / 12, "feet"),
  24109. default: true
  24110. },
  24111. ]
  24112. ))
  24113. characterMakers.push(() => makeCharacter(
  24114. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24115. {
  24116. front: {
  24117. height: math.unit(13, "feet"),
  24118. weight: math.unit(1700, "lb"),
  24119. name: "Front",
  24120. image: {
  24121. source: "./media/characters/felix-braveheart/front.svg",
  24122. extra: 1222 / 1157,
  24123. bottom: 53.2 / 1280
  24124. }
  24125. },
  24126. back: {
  24127. height: math.unit(13, "feet"),
  24128. weight: math.unit(1700, "lb"),
  24129. name: "Back",
  24130. image: {
  24131. source: "./media/characters/felix-braveheart/back.svg",
  24132. extra: 1277 / 1203,
  24133. bottom: 50.2 / 1327
  24134. }
  24135. },
  24136. feral: {
  24137. height: math.unit(6, "feet"),
  24138. weight: math.unit(400, "lb"),
  24139. name: "Feral",
  24140. image: {
  24141. source: "./media/characters/felix-braveheart/feral.svg",
  24142. extra: 682 / 625,
  24143. bottom: 6.9 / 688
  24144. }
  24145. },
  24146. },
  24147. [
  24148. {
  24149. name: "Normal",
  24150. height: math.unit(13, "feet"),
  24151. default: true
  24152. },
  24153. ]
  24154. ))
  24155. characterMakers.push(() => makeCharacter(
  24156. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24157. {
  24158. side: {
  24159. height: math.unit(5 + 11 / 12, "feet"),
  24160. weight: math.unit(1400, "lb"),
  24161. name: "Side",
  24162. image: {
  24163. source: "./media/characters/shadow-blade/side.svg",
  24164. extra: 1726 / 1267,
  24165. bottom: 58.4 / 1785
  24166. }
  24167. },
  24168. },
  24169. [
  24170. {
  24171. name: "Normal",
  24172. height: math.unit(5 + 11 / 12, "feet"),
  24173. default: true
  24174. },
  24175. ]
  24176. ))
  24177. characterMakers.push(() => makeCharacter(
  24178. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24179. {
  24180. front: {
  24181. height: math.unit(1 + 6 / 12, "feet"),
  24182. weight: math.unit(25, "lb"),
  24183. name: "Front",
  24184. image: {
  24185. source: "./media/characters/karla-halldor/front.svg",
  24186. extra: 1459 / 1383,
  24187. bottom: 12 / 1472
  24188. }
  24189. },
  24190. },
  24191. [
  24192. {
  24193. name: "Normal",
  24194. height: math.unit(1 + 6 / 12, "feet"),
  24195. default: true
  24196. },
  24197. ]
  24198. ))
  24199. characterMakers.push(() => makeCharacter(
  24200. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24201. {
  24202. front: {
  24203. height: math.unit(6 + 2 / 12, "feet"),
  24204. weight: math.unit(160, "lb"),
  24205. name: "Front",
  24206. image: {
  24207. source: "./media/characters/ariam/front.svg",
  24208. extra: 1073/976,
  24209. bottom: 52/1125
  24210. }
  24211. },
  24212. back: {
  24213. height: math.unit(6 + 2/12, "feet"),
  24214. weight: math.unit(160, "lb"),
  24215. name: "Back",
  24216. image: {
  24217. source: "./media/characters/ariam/back.svg",
  24218. extra: 1103/1023,
  24219. bottom: 9/1112
  24220. }
  24221. },
  24222. dressed: {
  24223. height: math.unit(6 + 2/12, "feet"),
  24224. weight: math.unit(160, "lb"),
  24225. name: "Dressed",
  24226. image: {
  24227. source: "./media/characters/ariam/dressed.svg",
  24228. extra: 1099/1009,
  24229. bottom: 25/1124
  24230. }
  24231. },
  24232. squatting: {
  24233. height: math.unit(4.1, "feet"),
  24234. weight: math.unit(160, "lb"),
  24235. name: "Squatting",
  24236. image: {
  24237. source: "./media/characters/ariam/squatting.svg",
  24238. extra: 2617 / 2112,
  24239. bottom: 61.2 / 2681,
  24240. }
  24241. },
  24242. },
  24243. [
  24244. {
  24245. name: "Normal",
  24246. height: math.unit(6 + 2 / 12, "feet"),
  24247. default: true
  24248. },
  24249. {
  24250. name: "Normal+",
  24251. height: math.unit(4, "meters")
  24252. },
  24253. {
  24254. name: "Macro",
  24255. height: math.unit(50, "meters")
  24256. },
  24257. {
  24258. name: "Macro+",
  24259. height: math.unit(100, "meters")
  24260. },
  24261. {
  24262. name: "Megamacro",
  24263. height: math.unit(20, "km")
  24264. },
  24265. {
  24266. name: "Caretaker",
  24267. height: math.unit(444, "megameters")
  24268. },
  24269. ]
  24270. ))
  24271. characterMakers.push(() => makeCharacter(
  24272. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24273. {
  24274. front: {
  24275. height: math.unit(1.67, "meters"),
  24276. weight: math.unit(140, "lb"),
  24277. name: "Front",
  24278. image: {
  24279. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24280. extra: 438 / 410,
  24281. bottom: 0.75 / 439
  24282. }
  24283. },
  24284. },
  24285. [
  24286. {
  24287. name: "Shrunken",
  24288. height: math.unit(7.6, "cm")
  24289. },
  24290. {
  24291. name: "Human Scale",
  24292. height: math.unit(1.67, "meters")
  24293. },
  24294. {
  24295. name: "Wolxi Scale",
  24296. height: math.unit(36.7, "meters"),
  24297. default: true
  24298. },
  24299. ]
  24300. ))
  24301. characterMakers.push(() => makeCharacter(
  24302. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24303. {
  24304. front: {
  24305. height: math.unit(1.73, "meters"),
  24306. weight: math.unit(240, "lb"),
  24307. name: "Front",
  24308. image: {
  24309. source: "./media/characters/izue-two-mothers/front.svg",
  24310. extra: 469 / 437,
  24311. bottom: 1.24 / 470.6
  24312. }
  24313. },
  24314. },
  24315. [
  24316. {
  24317. name: "Shrunken",
  24318. height: math.unit(7.86, "cm")
  24319. },
  24320. {
  24321. name: "Human Scale",
  24322. height: math.unit(1.73, "meters")
  24323. },
  24324. {
  24325. name: "Wolxi Scale",
  24326. height: math.unit(38, "meters"),
  24327. default: true
  24328. },
  24329. ]
  24330. ))
  24331. characterMakers.push(() => makeCharacter(
  24332. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24333. {
  24334. front: {
  24335. height: math.unit(1.55, "meters"),
  24336. weight: math.unit(120, "lb"),
  24337. name: "Front",
  24338. image: {
  24339. source: "./media/characters/teeku-love-shack/front.svg",
  24340. extra: 387 / 362,
  24341. bottom: 1.51 / 388
  24342. }
  24343. },
  24344. },
  24345. [
  24346. {
  24347. name: "Shrunken",
  24348. height: math.unit(7, "cm")
  24349. },
  24350. {
  24351. name: "Human Scale",
  24352. height: math.unit(1.55, "meters")
  24353. },
  24354. {
  24355. name: "Wolxi Scale",
  24356. height: math.unit(34.1, "meters"),
  24357. default: true
  24358. },
  24359. ]
  24360. ))
  24361. characterMakers.push(() => makeCharacter(
  24362. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24363. {
  24364. front: {
  24365. height: math.unit(1.83, "meters"),
  24366. weight: math.unit(135, "lb"),
  24367. name: "Front",
  24368. image: {
  24369. source: "./media/characters/dejma-the-red/front.svg",
  24370. extra: 480 / 458,
  24371. bottom: 1.8 / 482
  24372. }
  24373. },
  24374. },
  24375. [
  24376. {
  24377. name: "Shrunken",
  24378. height: math.unit(8.3, "cm")
  24379. },
  24380. {
  24381. name: "Human Scale",
  24382. height: math.unit(1.83, "meters")
  24383. },
  24384. {
  24385. name: "Wolxi Scale",
  24386. height: math.unit(40, "meters"),
  24387. default: true
  24388. },
  24389. ]
  24390. ))
  24391. characterMakers.push(() => makeCharacter(
  24392. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24393. {
  24394. front: {
  24395. height: math.unit(1.78, "meters"),
  24396. weight: math.unit(65, "kg"),
  24397. name: "Front",
  24398. image: {
  24399. source: "./media/characters/aki/front.svg",
  24400. extra: 452 / 415
  24401. }
  24402. },
  24403. frontNsfw: {
  24404. height: math.unit(1.78, "meters"),
  24405. weight: math.unit(65, "kg"),
  24406. name: "Front (NSFW)",
  24407. image: {
  24408. source: "./media/characters/aki/front-nsfw.svg",
  24409. extra: 452 / 415
  24410. }
  24411. },
  24412. back: {
  24413. height: math.unit(1.78, "meters"),
  24414. weight: math.unit(65, "kg"),
  24415. name: "Back",
  24416. image: {
  24417. source: "./media/characters/aki/back.svg",
  24418. extra: 452 / 415
  24419. }
  24420. },
  24421. rump: {
  24422. height: math.unit(2.05, "feet"),
  24423. name: "Rump",
  24424. image: {
  24425. source: "./media/characters/aki/rump.svg"
  24426. }
  24427. },
  24428. dick: {
  24429. height: math.unit(0.95, "feet"),
  24430. name: "Dick",
  24431. image: {
  24432. source: "./media/characters/aki/dick.svg"
  24433. }
  24434. },
  24435. },
  24436. [
  24437. {
  24438. name: "Micro",
  24439. height: math.unit(15, "cm")
  24440. },
  24441. {
  24442. name: "Normal",
  24443. height: math.unit(178, "cm"),
  24444. default: true
  24445. },
  24446. {
  24447. name: "Macro",
  24448. height: math.unit(214, "m")
  24449. },
  24450. {
  24451. name: "Macro+",
  24452. height: math.unit(534, "m")
  24453. },
  24454. ]
  24455. ))
  24456. characterMakers.push(() => makeCharacter(
  24457. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24458. {
  24459. front: {
  24460. height: math.unit(5 + 5 / 12, "feet"),
  24461. weight: math.unit(120, "lb"),
  24462. name: "Front",
  24463. image: {
  24464. source: "./media/characters/ari/front.svg",
  24465. extra: 714.5 / 682,
  24466. bottom: 8 / 722.5
  24467. }
  24468. },
  24469. },
  24470. [
  24471. {
  24472. name: "Normal",
  24473. height: math.unit(5 + 5 / 12, "feet")
  24474. },
  24475. {
  24476. name: "Macro",
  24477. height: math.unit(100, "feet"),
  24478. default: true
  24479. },
  24480. {
  24481. name: "Megamacro",
  24482. height: math.unit(100, "miles")
  24483. },
  24484. {
  24485. name: "Gigamacro",
  24486. height: math.unit(80000, "miles")
  24487. },
  24488. ]
  24489. ))
  24490. characterMakers.push(() => makeCharacter(
  24491. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24492. {
  24493. side: {
  24494. height: math.unit(9, "feet"),
  24495. weight: math.unit(400, "kg"),
  24496. name: "Side",
  24497. image: {
  24498. source: "./media/characters/bolt/side.svg",
  24499. extra: 1126 / 896,
  24500. bottom: 60 / 1187.3,
  24501. }
  24502. },
  24503. },
  24504. [
  24505. {
  24506. name: "Micro",
  24507. height: math.unit(5, "inches")
  24508. },
  24509. {
  24510. name: "Normal",
  24511. height: math.unit(9, "feet"),
  24512. default: true
  24513. },
  24514. {
  24515. name: "Macro",
  24516. height: math.unit(700, "feet")
  24517. },
  24518. {
  24519. name: "Max Size",
  24520. height: math.unit(1.52e22, "yottameters")
  24521. },
  24522. ]
  24523. ))
  24524. characterMakers.push(() => makeCharacter(
  24525. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24526. {
  24527. front: {
  24528. height: math.unit(4.53, "meters"),
  24529. weight: math.unit(3, "tons"),
  24530. name: "Front",
  24531. image: {
  24532. source: "./media/characters/draekon-sylviar/front.svg",
  24533. extra: 1228 / 1068,
  24534. bottom: 41 / 1270
  24535. }
  24536. },
  24537. tail: {
  24538. height: math.unit(1.772, "meter"),
  24539. name: "Tail",
  24540. image: {
  24541. source: "./media/characters/draekon-sylviar/tail.svg"
  24542. }
  24543. },
  24544. head: {
  24545. height: math.unit(1.331, "meter"),
  24546. name: "Head",
  24547. image: {
  24548. source: "./media/characters/draekon-sylviar/head.svg"
  24549. }
  24550. },
  24551. hand: {
  24552. height: math.unit(0.564, "meter"),
  24553. name: "Hand",
  24554. image: {
  24555. source: "./media/characters/draekon-sylviar/hand.svg"
  24556. }
  24557. },
  24558. foot: {
  24559. height: math.unit(0.621, "meter"),
  24560. name: "Foot",
  24561. image: {
  24562. source: "./media/characters/draekon-sylviar/foot.svg",
  24563. bottom: 32 / 324
  24564. }
  24565. },
  24566. dick: {
  24567. height: math.unit(61, "cm"),
  24568. name: "Dick",
  24569. image: {
  24570. source: "./media/characters/draekon-sylviar/dick.svg"
  24571. }
  24572. },
  24573. dickseparated: {
  24574. height: math.unit(61, "cm"),
  24575. name: "Dick-separated",
  24576. image: {
  24577. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24578. }
  24579. },
  24580. },
  24581. [
  24582. {
  24583. name: "Small",
  24584. height: math.unit(4.53 / 2, "meters"),
  24585. default: true
  24586. },
  24587. {
  24588. name: "Normal",
  24589. height: math.unit(4.53, "meters"),
  24590. default: true
  24591. },
  24592. {
  24593. name: "Large",
  24594. height: math.unit(4.53 * 2, "meters"),
  24595. },
  24596. ]
  24597. ))
  24598. characterMakers.push(() => makeCharacter(
  24599. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24600. {
  24601. front: {
  24602. height: math.unit(6 + 2 / 12, "feet"),
  24603. weight: math.unit(180, "lb"),
  24604. name: "Front",
  24605. image: {
  24606. source: "./media/characters/brawler/front.svg",
  24607. extra: 3301 / 3027,
  24608. bottom: 138 / 3439
  24609. }
  24610. },
  24611. },
  24612. [
  24613. {
  24614. name: "Normal",
  24615. height: math.unit(6 + 2 / 12, "feet"),
  24616. default: true
  24617. },
  24618. ]
  24619. ))
  24620. characterMakers.push(() => makeCharacter(
  24621. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24622. {
  24623. front: {
  24624. height: math.unit(11, "feet"),
  24625. weight: math.unit(1000, "lb"),
  24626. name: "Front",
  24627. image: {
  24628. source: "./media/characters/alex/front.svg",
  24629. bottom: 44.5 / 620
  24630. }
  24631. },
  24632. },
  24633. [
  24634. {
  24635. name: "Micro",
  24636. height: math.unit(5, "inches")
  24637. },
  24638. {
  24639. name: "Normal",
  24640. height: math.unit(11, "feet"),
  24641. default: true
  24642. },
  24643. {
  24644. name: "Macro",
  24645. height: math.unit(9.5e9, "feet")
  24646. },
  24647. {
  24648. name: "Max Size",
  24649. height: math.unit(1.4e283, "yottameters")
  24650. },
  24651. ]
  24652. ))
  24653. characterMakers.push(() => makeCharacter(
  24654. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24655. {
  24656. female: {
  24657. height: math.unit(29.9, "m"),
  24658. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24659. name: "Female",
  24660. image: {
  24661. source: "./media/characters/zenari/female.svg",
  24662. extra: 3281.6 / 3217,
  24663. bottom: 72.2 / 3353
  24664. }
  24665. },
  24666. male: {
  24667. height: math.unit(27.7, "m"),
  24668. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24669. name: "Male",
  24670. image: {
  24671. source: "./media/characters/zenari/male.svg",
  24672. extra: 3008 / 2991,
  24673. bottom: 54.6 / 3069
  24674. }
  24675. },
  24676. },
  24677. [
  24678. {
  24679. name: "Macro",
  24680. height: math.unit(29.7, "meters"),
  24681. default: true
  24682. },
  24683. ]
  24684. ))
  24685. characterMakers.push(() => makeCharacter(
  24686. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24687. {
  24688. female: {
  24689. height: math.unit(23.8, "m"),
  24690. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24691. name: "Female",
  24692. image: {
  24693. source: "./media/characters/mactarian/female.svg",
  24694. extra: 2662 / 2569,
  24695. bottom: 73 / 2736
  24696. }
  24697. },
  24698. male: {
  24699. height: math.unit(23.8, "m"),
  24700. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24701. name: "Male",
  24702. image: {
  24703. source: "./media/characters/mactarian/male.svg",
  24704. extra: 2673 / 2600,
  24705. bottom: 76 / 2750
  24706. }
  24707. },
  24708. },
  24709. [
  24710. {
  24711. name: "Macro",
  24712. height: math.unit(23.8, "meters"),
  24713. default: true
  24714. },
  24715. ]
  24716. ))
  24717. characterMakers.push(() => makeCharacter(
  24718. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24719. {
  24720. female: {
  24721. height: math.unit(19.3, "m"),
  24722. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24723. name: "Female",
  24724. image: {
  24725. source: "./media/characters/umok/female.svg",
  24726. extra: 2186 / 2078,
  24727. bottom: 87 / 2277
  24728. }
  24729. },
  24730. male: {
  24731. height: math.unit(19.5, "m"),
  24732. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24733. name: "Male",
  24734. image: {
  24735. source: "./media/characters/umok/male.svg",
  24736. extra: 2233 / 2140,
  24737. bottom: 24.4 / 2258
  24738. }
  24739. },
  24740. },
  24741. [
  24742. {
  24743. name: "Macro",
  24744. height: math.unit(19.3, "meters"),
  24745. default: true
  24746. },
  24747. ]
  24748. ))
  24749. characterMakers.push(() => makeCharacter(
  24750. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24751. {
  24752. female: {
  24753. height: math.unit(26.15, "m"),
  24754. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24755. name: "Female",
  24756. image: {
  24757. source: "./media/characters/joraxian/female.svg",
  24758. extra: 2912 / 2824,
  24759. bottom: 36 / 2956
  24760. }
  24761. },
  24762. male: {
  24763. height: math.unit(25.4, "m"),
  24764. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24765. name: "Male",
  24766. image: {
  24767. source: "./media/characters/joraxian/male.svg",
  24768. extra: 2877 / 2721,
  24769. bottom: 82 / 2967
  24770. }
  24771. },
  24772. },
  24773. [
  24774. {
  24775. name: "Macro",
  24776. height: math.unit(26.15, "meters"),
  24777. default: true
  24778. },
  24779. ]
  24780. ))
  24781. characterMakers.push(() => makeCharacter(
  24782. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24783. {
  24784. female: {
  24785. height: math.unit(21.6, "m"),
  24786. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24787. name: "Female",
  24788. image: {
  24789. source: "./media/characters/sthara/female.svg",
  24790. extra: 2516 / 2347,
  24791. bottom: 21.5 / 2537
  24792. }
  24793. },
  24794. male: {
  24795. height: math.unit(24, "m"),
  24796. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24797. name: "Male",
  24798. image: {
  24799. source: "./media/characters/sthara/male.svg",
  24800. extra: 2732 / 2607,
  24801. bottom: 23 / 2732
  24802. }
  24803. },
  24804. },
  24805. [
  24806. {
  24807. name: "Macro",
  24808. height: math.unit(21.6, "meters"),
  24809. default: true
  24810. },
  24811. ]
  24812. ))
  24813. characterMakers.push(() => makeCharacter(
  24814. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24815. {
  24816. front: {
  24817. height: math.unit(6 + 4 / 12, "feet"),
  24818. weight: math.unit(175, "lb"),
  24819. name: "Front",
  24820. image: {
  24821. source: "./media/characters/luka-bryzant/front.svg",
  24822. extra: 311 / 289,
  24823. bottom: 4 / 315
  24824. }
  24825. },
  24826. back: {
  24827. height: math.unit(6 + 4 / 12, "feet"),
  24828. weight: math.unit(175, "lb"),
  24829. name: "Back",
  24830. image: {
  24831. source: "./media/characters/luka-bryzant/back.svg",
  24832. extra: 311 / 289,
  24833. bottom: 3.8 / 313.7
  24834. }
  24835. },
  24836. },
  24837. [
  24838. {
  24839. name: "Micro",
  24840. height: math.unit(10, "inches")
  24841. },
  24842. {
  24843. name: "Normal",
  24844. height: math.unit(6 + 4 / 12, "feet"),
  24845. default: true
  24846. },
  24847. {
  24848. name: "Large",
  24849. height: math.unit(12, "feet")
  24850. },
  24851. ]
  24852. ))
  24853. characterMakers.push(() => makeCharacter(
  24854. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24855. {
  24856. front: {
  24857. height: math.unit(5 + 7 / 12, "feet"),
  24858. weight: math.unit(185, "lb"),
  24859. name: "Front",
  24860. image: {
  24861. source: "./media/characters/aman-aquila/front.svg",
  24862. extra: 1013 / 976,
  24863. bottom: 45.6 / 1057
  24864. }
  24865. },
  24866. side: {
  24867. height: math.unit(5 + 7 / 12, "feet"),
  24868. weight: math.unit(185, "lb"),
  24869. name: "Side",
  24870. image: {
  24871. source: "./media/characters/aman-aquila/side.svg",
  24872. extra: 1054 / 1011,
  24873. bottom: 15 / 1070
  24874. }
  24875. },
  24876. back: {
  24877. height: math.unit(5 + 7 / 12, "feet"),
  24878. weight: math.unit(185, "lb"),
  24879. name: "Back",
  24880. image: {
  24881. source: "./media/characters/aman-aquila/back.svg",
  24882. extra: 1026 / 970,
  24883. bottom: 12 / 1039
  24884. }
  24885. },
  24886. head: {
  24887. height: math.unit(1.211, "feet"),
  24888. name: "Head",
  24889. image: {
  24890. source: "./media/characters/aman-aquila/head.svg",
  24891. }
  24892. },
  24893. },
  24894. [
  24895. {
  24896. name: "Minimicro",
  24897. height: math.unit(0.057, "inches")
  24898. },
  24899. {
  24900. name: "Micro",
  24901. height: math.unit(7, "inches")
  24902. },
  24903. {
  24904. name: "Mini",
  24905. height: math.unit(3 + 7 / 12, "feet")
  24906. },
  24907. {
  24908. name: "Normal",
  24909. height: math.unit(5 + 7 / 12, "feet"),
  24910. default: true
  24911. },
  24912. {
  24913. name: "Macro",
  24914. height: math.unit(157 + 7 / 12, "feet")
  24915. },
  24916. {
  24917. name: "Megamacro",
  24918. height: math.unit(1557 + 7 / 12, "feet")
  24919. },
  24920. {
  24921. name: "Gigamacro",
  24922. height: math.unit(15557 + 7 / 12, "feet")
  24923. },
  24924. ]
  24925. ))
  24926. characterMakers.push(() => makeCharacter(
  24927. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24928. {
  24929. front: {
  24930. height: math.unit(3 + 2 / 12, "inches"),
  24931. weight: math.unit(0.3, "ounces"),
  24932. name: "Front",
  24933. image: {
  24934. source: "./media/characters/hiphae/front.svg",
  24935. extra: 1931 / 1683,
  24936. bottom: 24 / 1955
  24937. }
  24938. },
  24939. },
  24940. [
  24941. {
  24942. name: "Normal",
  24943. height: math.unit(3 + 1 / 2, "inches"),
  24944. default: true
  24945. },
  24946. ]
  24947. ))
  24948. characterMakers.push(() => makeCharacter(
  24949. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24950. {
  24951. front: {
  24952. height: math.unit(5 + 10 / 12, "feet"),
  24953. weight: math.unit(165, "lb"),
  24954. name: "Front",
  24955. image: {
  24956. source: "./media/characters/nicky/front.svg",
  24957. extra: 3144 / 2886,
  24958. bottom: 45.6 / 3192
  24959. }
  24960. },
  24961. back: {
  24962. height: math.unit(5 + 10 / 12, "feet"),
  24963. weight: math.unit(165, "lb"),
  24964. name: "Back",
  24965. image: {
  24966. source: "./media/characters/nicky/back.svg",
  24967. extra: 3055 / 2804,
  24968. bottom: 28.4 / 3087
  24969. }
  24970. },
  24971. frontclothed: {
  24972. height: math.unit(5 + 10 / 12, "feet"),
  24973. weight: math.unit(165, "lb"),
  24974. name: "Front-clothed",
  24975. image: {
  24976. source: "./media/characters/nicky/front-clothed.svg",
  24977. extra: 3184.9 / 2926.9,
  24978. bottom: 86.5 / 3239.9
  24979. }
  24980. },
  24981. foot: {
  24982. height: math.unit(1.16, "feet"),
  24983. name: "Foot",
  24984. image: {
  24985. source: "./media/characters/nicky/foot.svg"
  24986. }
  24987. },
  24988. feet: {
  24989. height: math.unit(1.34, "feet"),
  24990. name: "Feet",
  24991. image: {
  24992. source: "./media/characters/nicky/feet.svg"
  24993. }
  24994. },
  24995. maw: {
  24996. height: math.unit(0.9, "feet"),
  24997. name: "Maw",
  24998. image: {
  24999. source: "./media/characters/nicky/maw.svg"
  25000. }
  25001. },
  25002. },
  25003. [
  25004. {
  25005. name: "Normal",
  25006. height: math.unit(5 + 10 / 12, "feet"),
  25007. default: true
  25008. },
  25009. {
  25010. name: "Macro",
  25011. height: math.unit(60, "feet")
  25012. },
  25013. {
  25014. name: "Megamacro",
  25015. height: math.unit(1, "mile")
  25016. },
  25017. ]
  25018. ))
  25019. characterMakers.push(() => makeCharacter(
  25020. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25021. {
  25022. side: {
  25023. height: math.unit(10, "feet"),
  25024. weight: math.unit(600, "lb"),
  25025. name: "Side",
  25026. image: {
  25027. source: "./media/characters/blair/side.svg",
  25028. bottom: 16.6 / 475,
  25029. extra: 458 / 431
  25030. }
  25031. },
  25032. },
  25033. [
  25034. {
  25035. name: "Micro",
  25036. height: math.unit(8, "inches")
  25037. },
  25038. {
  25039. name: "Normal",
  25040. height: math.unit(10, "feet"),
  25041. default: true
  25042. },
  25043. {
  25044. name: "Macro",
  25045. height: math.unit(180, "feet")
  25046. },
  25047. ]
  25048. ))
  25049. characterMakers.push(() => makeCharacter(
  25050. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25051. {
  25052. front: {
  25053. height: math.unit(5 + 4 / 12, "feet"),
  25054. weight: math.unit(125, "lb"),
  25055. name: "Front",
  25056. image: {
  25057. source: "./media/characters/fisher/front.svg",
  25058. extra: 444 / 390,
  25059. bottom: 2 / 444.8
  25060. }
  25061. },
  25062. },
  25063. [
  25064. {
  25065. name: "Micro",
  25066. height: math.unit(4, "inches")
  25067. },
  25068. {
  25069. name: "Normal",
  25070. height: math.unit(5 + 4 / 12, "feet"),
  25071. default: true
  25072. },
  25073. {
  25074. name: "Macro",
  25075. height: math.unit(100, "feet")
  25076. },
  25077. ]
  25078. ))
  25079. characterMakers.push(() => makeCharacter(
  25080. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25081. {
  25082. front: {
  25083. height: math.unit(6.71, "feet"),
  25084. weight: math.unit(200, "lb"),
  25085. capacity: math.unit(1000000, "people"),
  25086. name: "Front",
  25087. image: {
  25088. source: "./media/characters/gliss/front.svg",
  25089. extra: 2347 / 2231,
  25090. bottom: 113 / 2462
  25091. }
  25092. },
  25093. hammerspaceSize: {
  25094. height: math.unit(6.71 * 717, "feet"),
  25095. weight: math.unit(200, "lb"),
  25096. capacity: math.unit(1000000, "people"),
  25097. name: "Hammerspace Size",
  25098. image: {
  25099. source: "./media/characters/gliss/front.svg",
  25100. extra: 2347 / 2231,
  25101. bottom: 113 / 2462
  25102. }
  25103. },
  25104. },
  25105. [
  25106. {
  25107. name: "Normal",
  25108. height: math.unit(6.71, "feet"),
  25109. default: true
  25110. },
  25111. ]
  25112. ))
  25113. characterMakers.push(() => makeCharacter(
  25114. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25115. {
  25116. side: {
  25117. height: math.unit(1.44, "m"),
  25118. weight: math.unit(80, "kg"),
  25119. name: "Side",
  25120. image: {
  25121. source: "./media/characters/dune-anderson/side.svg",
  25122. bottom: 49 / 1426
  25123. }
  25124. },
  25125. },
  25126. [
  25127. {
  25128. name: "Wolf-sized",
  25129. height: math.unit(1.44, "meters")
  25130. },
  25131. {
  25132. name: "Normal",
  25133. height: math.unit(5.05, "meters"),
  25134. default: true
  25135. },
  25136. {
  25137. name: "Big",
  25138. height: math.unit(14.4, "meters")
  25139. },
  25140. {
  25141. name: "Huge",
  25142. height: math.unit(144, "meters")
  25143. },
  25144. ]
  25145. ))
  25146. characterMakers.push(() => makeCharacter(
  25147. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25148. {
  25149. front: {
  25150. height: math.unit(7, "feet"),
  25151. weight: math.unit(425, "lb"),
  25152. name: "Front",
  25153. image: {
  25154. source: "./media/characters/hind/front.svg",
  25155. extra: 2091 / 1860,
  25156. bottom: 129 / 2220
  25157. }
  25158. },
  25159. back: {
  25160. height: math.unit(7, "feet"),
  25161. weight: math.unit(425, "lb"),
  25162. name: "Back",
  25163. image: {
  25164. source: "./media/characters/hind/back.svg",
  25165. extra: 2091 / 1860,
  25166. bottom: 24.6 / 2309
  25167. }
  25168. },
  25169. tail: {
  25170. height: math.unit(2.8, "feet"),
  25171. name: "Tail",
  25172. image: {
  25173. source: "./media/characters/hind/tail.svg"
  25174. }
  25175. },
  25176. head: {
  25177. height: math.unit(2.55, "feet"),
  25178. name: "Head",
  25179. image: {
  25180. source: "./media/characters/hind/head.svg"
  25181. }
  25182. },
  25183. },
  25184. [
  25185. {
  25186. name: "XS",
  25187. height: math.unit(0.7, "feet")
  25188. },
  25189. {
  25190. name: "Normal",
  25191. height: math.unit(7, "feet"),
  25192. default: true
  25193. },
  25194. {
  25195. name: "XL",
  25196. height: math.unit(70, "feet")
  25197. },
  25198. ]
  25199. ))
  25200. characterMakers.push(() => makeCharacter(
  25201. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25202. {
  25203. front: {
  25204. height: math.unit(2.1, "meters"),
  25205. weight: math.unit(150, "lb"),
  25206. name: "Front",
  25207. image: {
  25208. source: "./media/characters/tharquench-sizestealer/front.svg",
  25209. extra: 1605/1470,
  25210. bottom: 36/1641
  25211. }
  25212. },
  25213. frontAlt: {
  25214. height: math.unit(2.1, "meters"),
  25215. weight: math.unit(150, "lb"),
  25216. name: "Front (Alt)",
  25217. image: {
  25218. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25219. extra: 2318 / 2063,
  25220. bottom: 93.4 / 2410
  25221. }
  25222. },
  25223. },
  25224. [
  25225. {
  25226. name: "Nano",
  25227. height: math.unit(1, "mm")
  25228. },
  25229. {
  25230. name: "Micro",
  25231. height: math.unit(1, "cm")
  25232. },
  25233. {
  25234. name: "Normal",
  25235. height: math.unit(2.1, "meters"),
  25236. default: true
  25237. },
  25238. ]
  25239. ))
  25240. characterMakers.push(() => makeCharacter(
  25241. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25242. {
  25243. front: {
  25244. height: math.unit(7 + 5 / 12, "feet"),
  25245. weight: math.unit(357, "lb"),
  25246. name: "Front",
  25247. image: {
  25248. source: "./media/characters/solex-draconov/front.svg",
  25249. extra: 1993 / 1865,
  25250. bottom: 117 / 2111
  25251. }
  25252. },
  25253. },
  25254. [
  25255. {
  25256. name: "Natural Height",
  25257. height: math.unit(7 + 5 / 12, "feet"),
  25258. default: true
  25259. },
  25260. {
  25261. name: "Macro",
  25262. height: math.unit(350, "feet")
  25263. },
  25264. {
  25265. name: "Macro+",
  25266. height: math.unit(1000, "feet")
  25267. },
  25268. {
  25269. name: "Megamacro",
  25270. height: math.unit(20, "km")
  25271. },
  25272. {
  25273. name: "Megamacro+",
  25274. height: math.unit(1000, "km")
  25275. },
  25276. {
  25277. name: "Gigamacro",
  25278. height: math.unit(2.5, "Gm")
  25279. },
  25280. {
  25281. name: "Teramacro",
  25282. height: math.unit(15, "Tm")
  25283. },
  25284. {
  25285. name: "Galactic",
  25286. height: math.unit(30, "Zm")
  25287. },
  25288. {
  25289. name: "Universal",
  25290. height: math.unit(21000, "Ym")
  25291. },
  25292. {
  25293. name: "Omniversal",
  25294. height: math.unit(9.861e50, "Ym")
  25295. },
  25296. {
  25297. name: "Existential",
  25298. height: math.unit(1e300, "meters")
  25299. },
  25300. ]
  25301. ))
  25302. characterMakers.push(() => makeCharacter(
  25303. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25304. {
  25305. side: {
  25306. height: math.unit(25, "feet"),
  25307. weight: math.unit(90000, "lb"),
  25308. name: "Side",
  25309. image: {
  25310. source: "./media/characters/mandarax/side.svg",
  25311. extra: 614 / 332,
  25312. bottom: 55 / 630
  25313. }
  25314. },
  25315. head: {
  25316. height: math.unit(11.4, "feet"),
  25317. name: "Head",
  25318. image: {
  25319. source: "./media/characters/mandarax/head.svg"
  25320. }
  25321. },
  25322. belly: {
  25323. height: math.unit(33, "feet"),
  25324. name: "Belly",
  25325. capacity: math.unit(500, "people"),
  25326. image: {
  25327. source: "./media/characters/mandarax/belly.svg"
  25328. }
  25329. },
  25330. dick: {
  25331. height: math.unit(8.46, "feet"),
  25332. name: "Dick",
  25333. image: {
  25334. source: "./media/characters/mandarax/dick.svg"
  25335. }
  25336. },
  25337. top: {
  25338. height: math.unit(28, "meters"),
  25339. name: "Top",
  25340. image: {
  25341. source: "./media/characters/mandarax/top.svg"
  25342. }
  25343. },
  25344. },
  25345. [
  25346. {
  25347. name: "Normal",
  25348. height: math.unit(25, "feet"),
  25349. default: true
  25350. },
  25351. ]
  25352. ))
  25353. characterMakers.push(() => makeCharacter(
  25354. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25355. {
  25356. front: {
  25357. height: math.unit(5, "feet"),
  25358. weight: math.unit(90, "lb"),
  25359. name: "Front",
  25360. image: {
  25361. source: "./media/characters/pixil/front.svg",
  25362. extra: 2000 / 1618,
  25363. bottom: 12.3 / 2011
  25364. }
  25365. },
  25366. },
  25367. [
  25368. {
  25369. name: "Normal",
  25370. height: math.unit(5, "feet"),
  25371. default: true
  25372. },
  25373. {
  25374. name: "Megamacro",
  25375. height: math.unit(10, "miles"),
  25376. },
  25377. ]
  25378. ))
  25379. characterMakers.push(() => makeCharacter(
  25380. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25381. {
  25382. front: {
  25383. height: math.unit(7 + 2 / 12, "feet"),
  25384. weight: math.unit(200, "lb"),
  25385. name: "Front",
  25386. image: {
  25387. source: "./media/characters/angel/front.svg",
  25388. extra: 1830 / 1737,
  25389. bottom: 22.6 / 1854,
  25390. }
  25391. },
  25392. },
  25393. [
  25394. {
  25395. name: "Normal",
  25396. height: math.unit(7 + 2 / 12, "feet"),
  25397. default: true
  25398. },
  25399. {
  25400. name: "Macro",
  25401. height: math.unit(1000, "feet")
  25402. },
  25403. {
  25404. name: "Megamacro",
  25405. height: math.unit(2, "miles")
  25406. },
  25407. {
  25408. name: "Gigamacro",
  25409. height: math.unit(20, "earths")
  25410. },
  25411. ]
  25412. ))
  25413. characterMakers.push(() => makeCharacter(
  25414. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25415. {
  25416. front: {
  25417. height: math.unit(5, "feet"),
  25418. weight: math.unit(180, "lb"),
  25419. name: "Front",
  25420. image: {
  25421. source: "./media/characters/mekana/front.svg",
  25422. extra: 1671 / 1605,
  25423. bottom: 3.5 / 1691
  25424. }
  25425. },
  25426. side: {
  25427. height: math.unit(5, "feet"),
  25428. weight: math.unit(180, "lb"),
  25429. name: "Side",
  25430. image: {
  25431. source: "./media/characters/mekana/side.svg",
  25432. extra: 1671 / 1605,
  25433. bottom: 3.5 / 1691
  25434. }
  25435. },
  25436. back: {
  25437. height: math.unit(5, "feet"),
  25438. weight: math.unit(180, "lb"),
  25439. name: "Back",
  25440. image: {
  25441. source: "./media/characters/mekana/back.svg",
  25442. extra: 1671 / 1605,
  25443. bottom: 3.5 / 1691
  25444. }
  25445. },
  25446. },
  25447. [
  25448. {
  25449. name: "Normal",
  25450. height: math.unit(5, "feet"),
  25451. default: true
  25452. },
  25453. ]
  25454. ))
  25455. characterMakers.push(() => makeCharacter(
  25456. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25457. {
  25458. front: {
  25459. height: math.unit(4 + 6 / 12, "feet"),
  25460. weight: math.unit(80, "lb"),
  25461. name: "Front",
  25462. image: {
  25463. source: "./media/characters/pixie/front.svg",
  25464. extra: 1924 / 1825,
  25465. bottom: 22.4 / 1946
  25466. }
  25467. },
  25468. },
  25469. [
  25470. {
  25471. name: "Normal",
  25472. height: math.unit(4 + 6 / 12, "feet"),
  25473. default: true
  25474. },
  25475. {
  25476. name: "Macro",
  25477. height: math.unit(40, "feet")
  25478. },
  25479. ]
  25480. ))
  25481. characterMakers.push(() => makeCharacter(
  25482. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25483. {
  25484. front: {
  25485. height: math.unit(2.1, "meters"),
  25486. weight: math.unit(200, "lb"),
  25487. name: "Front",
  25488. image: {
  25489. source: "./media/characters/the-lascivious/front.svg",
  25490. extra: 1 / 0.893,
  25491. bottom: 3.5 / 573.7
  25492. }
  25493. },
  25494. },
  25495. [
  25496. {
  25497. name: "Human Scale",
  25498. height: math.unit(2.1, "meters")
  25499. },
  25500. {
  25501. name: "Wolxi Scale",
  25502. height: math.unit(46.2, "m"),
  25503. default: true
  25504. },
  25505. {
  25506. name: "Boinker of Buildings",
  25507. height: math.unit(10, "km")
  25508. },
  25509. {
  25510. name: "Shagger of Skyscrapers",
  25511. height: math.unit(40, "km")
  25512. },
  25513. {
  25514. name: "Banger of Boroughs",
  25515. height: math.unit(4000, "km")
  25516. },
  25517. {
  25518. name: "Screwer of States",
  25519. height: math.unit(100000, "km")
  25520. },
  25521. {
  25522. name: "Pounder of Planets",
  25523. height: math.unit(2000000, "km")
  25524. },
  25525. ]
  25526. ))
  25527. characterMakers.push(() => makeCharacter(
  25528. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25529. {
  25530. front: {
  25531. height: math.unit(6, "feet"),
  25532. weight: math.unit(150, "lb"),
  25533. name: "Front",
  25534. image: {
  25535. source: "./media/characters/aj/front.svg",
  25536. extra: 2039 / 1562,
  25537. bottom: 40 / 2079
  25538. }
  25539. },
  25540. },
  25541. [
  25542. {
  25543. name: "Normal",
  25544. height: math.unit(11 + 6 / 12, "feet"),
  25545. default: true
  25546. },
  25547. {
  25548. name: "Megamacro",
  25549. height: math.unit(60, "megameters")
  25550. },
  25551. ]
  25552. ))
  25553. characterMakers.push(() => makeCharacter(
  25554. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25555. {
  25556. side: {
  25557. height: math.unit(31 + 8 / 12, "feet"),
  25558. weight: math.unit(75000, "kg"),
  25559. name: "Side",
  25560. image: {
  25561. source: "./media/characters/koros/side.svg",
  25562. extra: 1442 / 1297,
  25563. bottom: 122.7 / 1562
  25564. }
  25565. },
  25566. dicksKingsCrown: {
  25567. height: math.unit(6, "feet"),
  25568. name: "Dicks (King's Crown)",
  25569. image: {
  25570. source: "./media/characters/koros/dicks-kings-crown.svg"
  25571. }
  25572. },
  25573. dicksTailSet: {
  25574. height: math.unit(3, "feet"),
  25575. name: "Dicks (Tail Set)",
  25576. image: {
  25577. source: "./media/characters/koros/dicks-tail-set.svg"
  25578. }
  25579. },
  25580. dickCumming: {
  25581. height: math.unit(7.98, "feet"),
  25582. name: "Dick (Cumming)",
  25583. image: {
  25584. source: "./media/characters/koros/dick-cumming.svg"
  25585. }
  25586. },
  25587. dicksBack: {
  25588. height: math.unit(5.9, "feet"),
  25589. name: "Dicks (Back)",
  25590. image: {
  25591. source: "./media/characters/koros/dicks-back.svg"
  25592. }
  25593. },
  25594. dicksFront: {
  25595. height: math.unit(3.72, "feet"),
  25596. name: "Dicks (Front)",
  25597. image: {
  25598. source: "./media/characters/koros/dicks-front.svg"
  25599. }
  25600. },
  25601. dicksPeeking: {
  25602. height: math.unit(3.0, "feet"),
  25603. name: "Dicks (Peeking)",
  25604. image: {
  25605. source: "./media/characters/koros/dicks-peeking.svg"
  25606. }
  25607. },
  25608. eye: {
  25609. height: math.unit(1.7, "feet"),
  25610. name: "Eye",
  25611. image: {
  25612. source: "./media/characters/koros/eye.svg"
  25613. }
  25614. },
  25615. headFront: {
  25616. height: math.unit(11.69, "feet"),
  25617. name: "Head (Front)",
  25618. image: {
  25619. source: "./media/characters/koros/head-front.svg"
  25620. }
  25621. },
  25622. headSide: {
  25623. height: math.unit(14, "feet"),
  25624. name: "Head (Side)",
  25625. image: {
  25626. source: "./media/characters/koros/head-side.svg"
  25627. }
  25628. },
  25629. leg: {
  25630. height: math.unit(17, "feet"),
  25631. name: "Leg",
  25632. image: {
  25633. source: "./media/characters/koros/leg.svg"
  25634. }
  25635. },
  25636. mawSide: {
  25637. height: math.unit(12.8, "feet"),
  25638. name: "Maw (Side)",
  25639. image: {
  25640. source: "./media/characters/koros/maw-side.svg"
  25641. }
  25642. },
  25643. mawSpitting: {
  25644. height: math.unit(17, "feet"),
  25645. name: "Maw (Spitting)",
  25646. image: {
  25647. source: "./media/characters/koros/maw-spitting.svg"
  25648. }
  25649. },
  25650. slit: {
  25651. height: math.unit(2.8, "feet"),
  25652. name: "Slit",
  25653. image: {
  25654. source: "./media/characters/koros/slit.svg"
  25655. }
  25656. },
  25657. stomach: {
  25658. height: math.unit(6.8, "feet"),
  25659. capacity: math.unit(20, "people"),
  25660. name: "Stomach",
  25661. image: {
  25662. source: "./media/characters/koros/stomach.svg"
  25663. }
  25664. },
  25665. wingspanBottom: {
  25666. height: math.unit(114, "feet"),
  25667. name: "Wingspan (Bottom)",
  25668. image: {
  25669. source: "./media/characters/koros/wingspan-bottom.svg"
  25670. }
  25671. },
  25672. wingspanTop: {
  25673. height: math.unit(104, "feet"),
  25674. name: "Wingspan (Top)",
  25675. image: {
  25676. source: "./media/characters/koros/wingspan-top.svg"
  25677. }
  25678. },
  25679. },
  25680. [
  25681. {
  25682. name: "Normal",
  25683. height: math.unit(31 + 8 / 12, "feet"),
  25684. default: true
  25685. },
  25686. ]
  25687. ))
  25688. characterMakers.push(() => makeCharacter(
  25689. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25690. {
  25691. front: {
  25692. height: math.unit(18 + 5 / 12, "feet"),
  25693. weight: math.unit(3750, "kg"),
  25694. name: "Front",
  25695. image: {
  25696. source: "./media/characters/vexx/front.svg",
  25697. extra: 426 / 396,
  25698. bottom: 31.5 / 458
  25699. }
  25700. },
  25701. maw: {
  25702. height: math.unit(6, "feet"),
  25703. name: "Maw",
  25704. image: {
  25705. source: "./media/characters/vexx/maw.svg"
  25706. }
  25707. },
  25708. },
  25709. [
  25710. {
  25711. name: "Normal",
  25712. height: math.unit(18 + 5 / 12, "feet"),
  25713. default: true
  25714. },
  25715. ]
  25716. ))
  25717. characterMakers.push(() => makeCharacter(
  25718. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25719. {
  25720. front: {
  25721. height: math.unit(17 + 6 / 12, "feet"),
  25722. weight: math.unit(150, "lb"),
  25723. name: "Front",
  25724. image: {
  25725. source: "./media/characters/baadra/front.svg",
  25726. extra: 3137 / 2890,
  25727. bottom: 168.4 / 3305
  25728. }
  25729. },
  25730. back: {
  25731. height: math.unit(17 + 6 / 12, "feet"),
  25732. weight: math.unit(150, "lb"),
  25733. name: "Back",
  25734. image: {
  25735. source: "./media/characters/baadra/back.svg",
  25736. extra: 3142 / 2890,
  25737. bottom: 220 / 3371
  25738. }
  25739. },
  25740. head: {
  25741. height: math.unit(5.45, "feet"),
  25742. name: "Head",
  25743. image: {
  25744. source: "./media/characters/baadra/head.svg"
  25745. }
  25746. },
  25747. headAngry: {
  25748. height: math.unit(4.95, "feet"),
  25749. name: "Head (Angry)",
  25750. image: {
  25751. source: "./media/characters/baadra/head-angry.svg"
  25752. }
  25753. },
  25754. headOpen: {
  25755. height: math.unit(6, "feet"),
  25756. name: "Head (Open)",
  25757. image: {
  25758. source: "./media/characters/baadra/head-open.svg"
  25759. }
  25760. },
  25761. },
  25762. [
  25763. {
  25764. name: "Normal",
  25765. height: math.unit(17 + 6 / 12, "feet"),
  25766. default: true
  25767. },
  25768. ]
  25769. ))
  25770. characterMakers.push(() => makeCharacter(
  25771. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25772. {
  25773. front: {
  25774. height: math.unit(7 + 3 / 12, "feet"),
  25775. weight: math.unit(180, "lb"),
  25776. name: "Front",
  25777. image: {
  25778. source: "./media/characters/juri/front.svg",
  25779. extra: 1401 / 1237,
  25780. bottom: 18.5 / 1418
  25781. }
  25782. },
  25783. side: {
  25784. height: math.unit(7 + 3 / 12, "feet"),
  25785. weight: math.unit(180, "lb"),
  25786. name: "Side",
  25787. image: {
  25788. source: "./media/characters/juri/side.svg",
  25789. extra: 1424 / 1242,
  25790. bottom: 18.5 / 1447
  25791. }
  25792. },
  25793. sitting: {
  25794. height: math.unit(6, "feet"),
  25795. weight: math.unit(180, "lb"),
  25796. name: "Sitting",
  25797. image: {
  25798. source: "./media/characters/juri/sitting.svg",
  25799. extra: 1270 / 1143,
  25800. bottom: 100 / 1343
  25801. }
  25802. },
  25803. back: {
  25804. height: math.unit(7 + 3 / 12, "feet"),
  25805. weight: math.unit(180, "lb"),
  25806. name: "Back",
  25807. image: {
  25808. source: "./media/characters/juri/back.svg",
  25809. extra: 1377 / 1240,
  25810. bottom: 23.7 / 1405
  25811. }
  25812. },
  25813. maw: {
  25814. height: math.unit(2.8, "feet"),
  25815. name: "Maw",
  25816. image: {
  25817. source: "./media/characters/juri/maw.svg"
  25818. }
  25819. },
  25820. stomach: {
  25821. height: math.unit(0.89, "feet"),
  25822. capacity: math.unit(4, "liters"),
  25823. name: "Stomach",
  25824. image: {
  25825. source: "./media/characters/juri/stomach.svg"
  25826. }
  25827. },
  25828. },
  25829. [
  25830. {
  25831. name: "Normal",
  25832. height: math.unit(7 + 3 / 12, "feet"),
  25833. default: true
  25834. },
  25835. ]
  25836. ))
  25837. characterMakers.push(() => makeCharacter(
  25838. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25839. {
  25840. fox: {
  25841. height: math.unit(5 + 6 / 12, "feet"),
  25842. weight: math.unit(140, "lb"),
  25843. name: "Fox",
  25844. image: {
  25845. source: "./media/characters/maxene-sita/fox.svg",
  25846. extra: 146 / 138,
  25847. bottom: 2.1 / 148.19
  25848. }
  25849. },
  25850. foxLaying: {
  25851. height: math.unit(1.70, "feet"),
  25852. weight: math.unit(140, "lb"),
  25853. name: "Fox (Laying)",
  25854. image: {
  25855. source: "./media/characters/maxene-sita/fox-laying.svg",
  25856. extra: 910 / 572,
  25857. bottom: 71 / 981
  25858. }
  25859. },
  25860. kitsune: {
  25861. height: math.unit(10, "feet"),
  25862. weight: math.unit(800, "lb"),
  25863. name: "Kitsune",
  25864. image: {
  25865. source: "./media/characters/maxene-sita/kitsune.svg",
  25866. extra: 185 / 176,
  25867. bottom: 4.7 / 189.9
  25868. }
  25869. },
  25870. hellhound: {
  25871. height: math.unit(10, "feet"),
  25872. weight: math.unit(700, "lb"),
  25873. name: "Hellhound",
  25874. image: {
  25875. source: "./media/characters/maxene-sita/hellhound.svg",
  25876. extra: 1600 / 1545,
  25877. bottom: 81 / 1681
  25878. }
  25879. },
  25880. },
  25881. [
  25882. {
  25883. name: "Normal",
  25884. height: math.unit(5 + 6 / 12, "feet"),
  25885. default: true
  25886. },
  25887. ]
  25888. ))
  25889. characterMakers.push(() => makeCharacter(
  25890. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25891. {
  25892. front: {
  25893. height: math.unit(3 + 4 / 12, "feet"),
  25894. weight: math.unit(70, "lb"),
  25895. name: "Front",
  25896. image: {
  25897. source: "./media/characters/maia/front.svg",
  25898. extra: 227 / 219.5,
  25899. bottom: 40 / 267
  25900. }
  25901. },
  25902. back: {
  25903. height: math.unit(3 + 4 / 12, "feet"),
  25904. weight: math.unit(70, "lb"),
  25905. name: "Back",
  25906. image: {
  25907. source: "./media/characters/maia/back.svg",
  25908. extra: 237 / 225
  25909. }
  25910. },
  25911. },
  25912. [
  25913. {
  25914. name: "Normal",
  25915. height: math.unit(3 + 4 / 12, "feet"),
  25916. default: true
  25917. },
  25918. ]
  25919. ))
  25920. characterMakers.push(() => makeCharacter(
  25921. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25922. {
  25923. front: {
  25924. height: math.unit(5 + 10 / 12, "feet"),
  25925. weight: math.unit(197, "lb"),
  25926. name: "Front",
  25927. image: {
  25928. source: "./media/characters/jabaro/front.svg",
  25929. extra: 225 / 216,
  25930. bottom: 5.06 / 230
  25931. }
  25932. },
  25933. back: {
  25934. height: math.unit(5 + 10 / 12, "feet"),
  25935. weight: math.unit(197, "lb"),
  25936. name: "Back",
  25937. image: {
  25938. source: "./media/characters/jabaro/back.svg",
  25939. extra: 225 / 219,
  25940. bottom: 1.9 / 227
  25941. }
  25942. },
  25943. },
  25944. [
  25945. {
  25946. name: "Normal",
  25947. height: math.unit(5 + 10 / 12, "feet"),
  25948. default: true
  25949. },
  25950. ]
  25951. ))
  25952. characterMakers.push(() => makeCharacter(
  25953. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25954. {
  25955. front: {
  25956. height: math.unit(5 + 8 / 12, "feet"),
  25957. weight: math.unit(139, "lb"),
  25958. name: "Front",
  25959. image: {
  25960. source: "./media/characters/risa/front.svg",
  25961. extra: 270 / 260,
  25962. bottom: 11.2 / 282
  25963. }
  25964. },
  25965. back: {
  25966. height: math.unit(5 + 8 / 12, "feet"),
  25967. weight: math.unit(139, "lb"),
  25968. name: "Back",
  25969. image: {
  25970. source: "./media/characters/risa/back.svg",
  25971. extra: 264 / 255,
  25972. bottom: 4 / 268
  25973. }
  25974. },
  25975. },
  25976. [
  25977. {
  25978. name: "Normal",
  25979. height: math.unit(5 + 8 / 12, "feet"),
  25980. default: true
  25981. },
  25982. ]
  25983. ))
  25984. characterMakers.push(() => makeCharacter(
  25985. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25986. {
  25987. front: {
  25988. height: math.unit(2 + 11 / 12, "feet"),
  25989. weight: math.unit(30, "lb"),
  25990. name: "Front",
  25991. image: {
  25992. source: "./media/characters/weatley/front.svg",
  25993. bottom: 10.7 / 414,
  25994. extra: 403.5 / 362
  25995. }
  25996. },
  25997. back: {
  25998. height: math.unit(2 + 11 / 12, "feet"),
  25999. weight: math.unit(30, "lb"),
  26000. name: "Back",
  26001. image: {
  26002. source: "./media/characters/weatley/back.svg",
  26003. bottom: 10.7 / 414,
  26004. extra: 403.5 / 362
  26005. }
  26006. },
  26007. },
  26008. [
  26009. {
  26010. name: "Normal",
  26011. height: math.unit(2 + 11 / 12, "feet"),
  26012. default: true
  26013. },
  26014. ]
  26015. ))
  26016. characterMakers.push(() => makeCharacter(
  26017. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26018. {
  26019. front: {
  26020. height: math.unit(5 + 2 / 12, "feet"),
  26021. weight: math.unit(50, "kg"),
  26022. name: "Front",
  26023. image: {
  26024. source: "./media/characters/mercury-crescent/front.svg",
  26025. extra: 1088 / 1033,
  26026. bottom: 18.9 / 1109
  26027. }
  26028. },
  26029. },
  26030. [
  26031. {
  26032. name: "Normal",
  26033. height: math.unit(5 + 2 / 12, "feet"),
  26034. default: true
  26035. },
  26036. ]
  26037. ))
  26038. characterMakers.push(() => makeCharacter(
  26039. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26040. {
  26041. front: {
  26042. height: math.unit(2, "feet"),
  26043. weight: math.unit(15, "kg"),
  26044. name: "Front",
  26045. image: {
  26046. source: "./media/characters/diamond-jones/front.svg",
  26047. extra: 727/723,
  26048. bottom: 46/773
  26049. }
  26050. },
  26051. },
  26052. [
  26053. {
  26054. name: "Normal",
  26055. height: math.unit(2, "feet"),
  26056. default: true
  26057. },
  26058. ]
  26059. ))
  26060. characterMakers.push(() => makeCharacter(
  26061. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26062. {
  26063. front: {
  26064. height: math.unit(3, "feet"),
  26065. weight: math.unit(30, "kg"),
  26066. name: "Front",
  26067. image: {
  26068. source: "./media/characters/sweet-bit/front.svg",
  26069. extra: 675 / 567,
  26070. bottom: 27.7 / 703
  26071. }
  26072. },
  26073. },
  26074. [
  26075. {
  26076. name: "Normal",
  26077. height: math.unit(3, "feet"),
  26078. default: true
  26079. },
  26080. ]
  26081. ))
  26082. characterMakers.push(() => makeCharacter(
  26083. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26084. {
  26085. side: {
  26086. height: math.unit(9.178, "feet"),
  26087. weight: math.unit(500, "lb"),
  26088. name: "Side",
  26089. image: {
  26090. source: "./media/characters/umbrazen/side.svg",
  26091. extra: 1730 / 1473,
  26092. bottom: 34.6 / 1765
  26093. }
  26094. },
  26095. },
  26096. [
  26097. {
  26098. name: "Normal",
  26099. height: math.unit(9.178, "feet"),
  26100. default: true
  26101. },
  26102. ]
  26103. ))
  26104. characterMakers.push(() => makeCharacter(
  26105. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26106. {
  26107. front: {
  26108. height: math.unit(10, "feet"),
  26109. weight: math.unit(750, "lb"),
  26110. name: "Front",
  26111. image: {
  26112. source: "./media/characters/arlist/front.svg",
  26113. extra: 961 / 778,
  26114. bottom: 6.2 / 986
  26115. }
  26116. },
  26117. },
  26118. [
  26119. {
  26120. name: "Normal",
  26121. height: math.unit(10, "feet"),
  26122. default: true
  26123. },
  26124. ]
  26125. ))
  26126. characterMakers.push(() => makeCharacter(
  26127. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26128. {
  26129. front: {
  26130. height: math.unit(5 + 1 / 12, "feet"),
  26131. weight: math.unit(110, "lb"),
  26132. name: "Front",
  26133. image: {
  26134. source: "./media/characters/aradel/front.svg",
  26135. extra: 324 / 303,
  26136. bottom: 3.6 / 329.4
  26137. }
  26138. },
  26139. },
  26140. [
  26141. {
  26142. name: "Normal",
  26143. height: math.unit(5 + 1 / 12, "feet"),
  26144. default: true
  26145. },
  26146. ]
  26147. ))
  26148. characterMakers.push(() => makeCharacter(
  26149. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26150. {
  26151. front: {
  26152. height: math.unit(3 + 8 / 12, "feet"),
  26153. weight: math.unit(50, "lb"),
  26154. name: "Front",
  26155. image: {
  26156. source: "./media/characters/serryn/front.svg",
  26157. extra: 1792 / 1656,
  26158. bottom: 43.5 / 1840
  26159. }
  26160. },
  26161. },
  26162. [
  26163. {
  26164. name: "Normal",
  26165. height: math.unit(3 + 8 / 12, "feet"),
  26166. default: true
  26167. },
  26168. ]
  26169. ))
  26170. characterMakers.push(() => makeCharacter(
  26171. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26172. {
  26173. front: {
  26174. height: math.unit(7 + 10 / 12, "feet"),
  26175. weight: math.unit(255, "lb"),
  26176. name: "Front",
  26177. image: {
  26178. source: "./media/characters/xavier-thyme/front.svg",
  26179. extra: 3733 / 3642,
  26180. bottom: 131 / 3869
  26181. }
  26182. },
  26183. frontRaven: {
  26184. height: math.unit(7 + 10 / 12, "feet"),
  26185. weight: math.unit(255, "lb"),
  26186. name: "Front (Raven)",
  26187. image: {
  26188. source: "./media/characters/xavier-thyme/front-raven.svg",
  26189. extra: 4385 / 3642,
  26190. bottom: 131 / 4517
  26191. }
  26192. },
  26193. },
  26194. [
  26195. {
  26196. name: "Normal",
  26197. height: math.unit(7 + 10 / 12, "feet"),
  26198. default: true
  26199. },
  26200. ]
  26201. ))
  26202. characterMakers.push(() => makeCharacter(
  26203. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26204. {
  26205. front: {
  26206. height: math.unit(1.6, "m"),
  26207. weight: math.unit(50, "kg"),
  26208. name: "Front",
  26209. image: {
  26210. source: "./media/characters/kiki/front.svg",
  26211. extra: 4682 / 3610,
  26212. bottom: 115 / 4777
  26213. }
  26214. },
  26215. },
  26216. [
  26217. {
  26218. name: "Normal",
  26219. height: math.unit(1.6, "meters"),
  26220. default: true
  26221. },
  26222. ]
  26223. ))
  26224. characterMakers.push(() => makeCharacter(
  26225. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26226. {
  26227. front: {
  26228. height: math.unit(50, "m"),
  26229. weight: math.unit(500, "tonnes"),
  26230. name: "Front",
  26231. image: {
  26232. source: "./media/characters/ryoko/front.svg",
  26233. extra: 4632 / 3926,
  26234. bottom: 193 / 4823
  26235. }
  26236. },
  26237. },
  26238. [
  26239. {
  26240. name: "Normal",
  26241. height: math.unit(50, "meters"),
  26242. default: true
  26243. },
  26244. ]
  26245. ))
  26246. characterMakers.push(() => makeCharacter(
  26247. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26248. {
  26249. front: {
  26250. height: math.unit(30, "m"),
  26251. weight: math.unit(22, "tonnes"),
  26252. name: "Front",
  26253. image: {
  26254. source: "./media/characters/elio/front.svg",
  26255. extra: 4582 / 3720,
  26256. bottom: 236 / 4828
  26257. }
  26258. },
  26259. },
  26260. [
  26261. {
  26262. name: "Normal",
  26263. height: math.unit(30, "meters"),
  26264. default: true
  26265. },
  26266. ]
  26267. ))
  26268. characterMakers.push(() => makeCharacter(
  26269. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26270. {
  26271. front: {
  26272. height: math.unit(6 + 3 / 12, "feet"),
  26273. weight: math.unit(120, "lb"),
  26274. name: "Front",
  26275. image: {
  26276. source: "./media/characters/azura/front.svg",
  26277. extra: 1149 / 1135,
  26278. bottom: 45 / 1194
  26279. }
  26280. },
  26281. frontClothed: {
  26282. height: math.unit(6 + 3 / 12, "feet"),
  26283. weight: math.unit(120, "lb"),
  26284. name: "Front (Clothed)",
  26285. image: {
  26286. source: "./media/characters/azura/front-clothed.svg",
  26287. extra: 1149 / 1135,
  26288. bottom: 45 / 1194
  26289. }
  26290. },
  26291. },
  26292. [
  26293. {
  26294. name: "Normal",
  26295. height: math.unit(6 + 3 / 12, "feet"),
  26296. default: true
  26297. },
  26298. {
  26299. name: "Macro",
  26300. height: math.unit(20 + 6 / 12, "feet")
  26301. },
  26302. {
  26303. name: "Megamacro",
  26304. height: math.unit(12, "miles")
  26305. },
  26306. {
  26307. name: "Gigamacro",
  26308. height: math.unit(10000, "miles")
  26309. },
  26310. {
  26311. name: "Teramacro",
  26312. height: math.unit(900000, "miles")
  26313. },
  26314. ]
  26315. ))
  26316. characterMakers.push(() => makeCharacter(
  26317. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26318. {
  26319. front: {
  26320. height: math.unit(12, "feet"),
  26321. weight: math.unit(1, "ton"),
  26322. capacity: math.unit(660000, "gallons"),
  26323. name: "Front",
  26324. image: {
  26325. source: "./media/characters/zeus/front.svg",
  26326. extra: 5005 / 4717,
  26327. bottom: 363 / 5388
  26328. }
  26329. },
  26330. },
  26331. [
  26332. {
  26333. name: "Normal",
  26334. height: math.unit(12, "feet")
  26335. },
  26336. {
  26337. name: "Preferred Size",
  26338. height: math.unit(0.5, "miles"),
  26339. default: true
  26340. },
  26341. {
  26342. name: "Giga Horse",
  26343. height: math.unit(300, "miles")
  26344. },
  26345. {
  26346. name: "Riding Planets",
  26347. height: math.unit(30, "megameters")
  26348. },
  26349. {
  26350. name: "Cosmic Giant",
  26351. height: math.unit(3, "zettameters")
  26352. },
  26353. {
  26354. name: "Breeding God",
  26355. height: math.unit(9.92e22, "yottameters")
  26356. },
  26357. ]
  26358. ))
  26359. characterMakers.push(() => makeCharacter(
  26360. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26361. {
  26362. side: {
  26363. height: math.unit(9, "feet"),
  26364. weight: math.unit(1500, "kg"),
  26365. name: "Side",
  26366. image: {
  26367. source: "./media/characters/fang/side.svg",
  26368. extra: 924 / 866,
  26369. bottom: 47.5 / 972.3
  26370. }
  26371. },
  26372. },
  26373. [
  26374. {
  26375. name: "Normal",
  26376. height: math.unit(9, "feet"),
  26377. default: true
  26378. },
  26379. {
  26380. name: "Macro",
  26381. height: math.unit(75 + 6 / 12, "feet")
  26382. },
  26383. {
  26384. name: "Teramacro",
  26385. height: math.unit(50000, "miles")
  26386. },
  26387. ]
  26388. ))
  26389. characterMakers.push(() => makeCharacter(
  26390. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26391. {
  26392. front: {
  26393. height: math.unit(10, "feet"),
  26394. weight: math.unit(2, "tons"),
  26395. name: "Front",
  26396. image: {
  26397. source: "./media/characters/rekhit/front.svg",
  26398. extra: 2796 / 2590,
  26399. bottom: 225 / 3022
  26400. }
  26401. },
  26402. },
  26403. [
  26404. {
  26405. name: "Normal",
  26406. height: math.unit(10, "feet"),
  26407. default: true
  26408. },
  26409. {
  26410. name: "Macro",
  26411. height: math.unit(500, "feet")
  26412. },
  26413. ]
  26414. ))
  26415. characterMakers.push(() => makeCharacter(
  26416. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26417. {
  26418. front: {
  26419. height: math.unit(7 + 6.451 / 12, "feet"),
  26420. weight: math.unit(310, "lb"),
  26421. name: "Front",
  26422. image: {
  26423. source: "./media/characters/dahlia-verrick/front.svg",
  26424. extra: 1488 / 1365,
  26425. bottom: 6.2 / 1495
  26426. }
  26427. },
  26428. back: {
  26429. height: math.unit(7 + 6.451 / 12, "feet"),
  26430. weight: math.unit(310, "lb"),
  26431. name: "Back",
  26432. image: {
  26433. source: "./media/characters/dahlia-verrick/back.svg",
  26434. extra: 1472 / 1351,
  26435. bottom: 5.28 / 1477
  26436. }
  26437. },
  26438. frontBusiness: {
  26439. height: math.unit(7 + 6.451 / 12, "feet"),
  26440. weight: math.unit(200, "lb"),
  26441. name: "Front (Business)",
  26442. image: {
  26443. source: "./media/characters/dahlia-verrick/front-business.svg",
  26444. extra: 1478 / 1381,
  26445. bottom: 5.5 / 1484
  26446. }
  26447. },
  26448. frontCasual: {
  26449. height: math.unit(7 + 6.451 / 12, "feet"),
  26450. weight: math.unit(200, "lb"),
  26451. name: "Front (Casual)",
  26452. image: {
  26453. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26454. extra: 1478 / 1381,
  26455. bottom: 5.5 / 1484
  26456. }
  26457. },
  26458. },
  26459. [
  26460. {
  26461. name: "Travel-Sized",
  26462. height: math.unit(7.45, "inches")
  26463. },
  26464. {
  26465. name: "Normal",
  26466. height: math.unit(7 + 6.451 / 12, "feet"),
  26467. default: true
  26468. },
  26469. {
  26470. name: "Hitting the Town",
  26471. height: math.unit(37 + 8 / 12, "feet")
  26472. },
  26473. {
  26474. name: "Stomp in the Suburbs",
  26475. height: math.unit(964 + 9.728 / 12, "feet")
  26476. },
  26477. {
  26478. name: "Sit on the City",
  26479. height: math.unit(61747 + 10.592 / 12, "feet")
  26480. },
  26481. {
  26482. name: "Glomp the Globe",
  26483. height: math.unit(252919327 + 4.832 / 12, "feet")
  26484. },
  26485. ]
  26486. ))
  26487. characterMakers.push(() => makeCharacter(
  26488. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26489. {
  26490. front: {
  26491. height: math.unit(6 + 4 / 12, "feet"),
  26492. weight: math.unit(320, "lb"),
  26493. name: "Front",
  26494. image: {
  26495. source: "./media/characters/balina-mahigan/front.svg",
  26496. extra: 447 / 428,
  26497. bottom: 18 / 466
  26498. }
  26499. },
  26500. back: {
  26501. height: math.unit(6 + 4 / 12, "feet"),
  26502. weight: math.unit(320, "lb"),
  26503. name: "Back",
  26504. image: {
  26505. source: "./media/characters/balina-mahigan/back.svg",
  26506. extra: 445 / 428,
  26507. bottom: 4.07 / 448
  26508. }
  26509. },
  26510. arm: {
  26511. height: math.unit(1.88, "feet"),
  26512. name: "Arm",
  26513. image: {
  26514. source: "./media/characters/balina-mahigan/arm.svg"
  26515. }
  26516. },
  26517. backPort: {
  26518. height: math.unit(0.685, "feet"),
  26519. name: "Back Port",
  26520. image: {
  26521. source: "./media/characters/balina-mahigan/back-port.svg"
  26522. }
  26523. },
  26524. hoofpaw: {
  26525. height: math.unit(1.41, "feet"),
  26526. name: "Hoofpaw",
  26527. image: {
  26528. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26529. }
  26530. },
  26531. leftHandBack: {
  26532. height: math.unit(0.938, "feet"),
  26533. name: "Left Hand (Back)",
  26534. image: {
  26535. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26536. }
  26537. },
  26538. leftHandFront: {
  26539. height: math.unit(0.938, "feet"),
  26540. name: "Left Hand (Front)",
  26541. image: {
  26542. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26543. }
  26544. },
  26545. rightHandBack: {
  26546. height: math.unit(0.95, "feet"),
  26547. name: "Right Hand (Back)",
  26548. image: {
  26549. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26550. }
  26551. },
  26552. rightHandFront: {
  26553. height: math.unit(0.95, "feet"),
  26554. name: "Right Hand (Front)",
  26555. image: {
  26556. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26557. }
  26558. },
  26559. },
  26560. [
  26561. {
  26562. name: "Normal",
  26563. height: math.unit(6 + 4 / 12, "feet"),
  26564. default: true
  26565. },
  26566. ]
  26567. ))
  26568. characterMakers.push(() => makeCharacter(
  26569. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26570. {
  26571. front: {
  26572. height: math.unit(6, "feet"),
  26573. weight: math.unit(320, "lb"),
  26574. name: "Front",
  26575. image: {
  26576. source: "./media/characters/balina-mejeri/front.svg",
  26577. extra: 517 / 488,
  26578. bottom: 44.2 / 561
  26579. }
  26580. },
  26581. },
  26582. [
  26583. {
  26584. name: "Normal",
  26585. height: math.unit(6 + 4 / 12, "feet")
  26586. },
  26587. {
  26588. name: "Business",
  26589. height: math.unit(155, "feet"),
  26590. default: true
  26591. },
  26592. ]
  26593. ))
  26594. characterMakers.push(() => makeCharacter(
  26595. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26596. {
  26597. kneeling: {
  26598. height: math.unit(6 + 4 / 12, "feet"),
  26599. weight: math.unit(300 * 20, "lb"),
  26600. name: "Kneeling",
  26601. image: {
  26602. source: "./media/characters/balbarian/kneeling.svg",
  26603. extra: 922 / 862,
  26604. bottom: 42.4 / 965
  26605. }
  26606. },
  26607. },
  26608. [
  26609. {
  26610. name: "Normal",
  26611. height: math.unit(6 + 4 / 12, "feet")
  26612. },
  26613. {
  26614. name: "Treasured",
  26615. height: math.unit(18 + 9 / 12, "feet"),
  26616. default: true
  26617. },
  26618. {
  26619. name: "Macro",
  26620. height: math.unit(900, "feet")
  26621. },
  26622. ]
  26623. ))
  26624. characterMakers.push(() => makeCharacter(
  26625. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26626. {
  26627. front: {
  26628. height: math.unit(6 + 4 / 12, "feet"),
  26629. weight: math.unit(325, "lb"),
  26630. name: "Front",
  26631. image: {
  26632. source: "./media/characters/balina-amarini/front.svg",
  26633. extra: 415 / 403,
  26634. bottom: 19 / 433.4
  26635. }
  26636. },
  26637. back: {
  26638. height: math.unit(6 + 4 / 12, "feet"),
  26639. weight: math.unit(325, "lb"),
  26640. name: "Back",
  26641. image: {
  26642. source: "./media/characters/balina-amarini/back.svg",
  26643. extra: 415 / 403,
  26644. bottom: 13.5 / 432
  26645. }
  26646. },
  26647. overdrive: {
  26648. height: math.unit(6 + 4 / 12, "feet"),
  26649. weight: math.unit(400, "lb"),
  26650. name: "Overdrive",
  26651. image: {
  26652. source: "./media/characters/balina-amarini/overdrive.svg",
  26653. extra: 269 / 259,
  26654. bottom: 12 / 282
  26655. }
  26656. },
  26657. },
  26658. [
  26659. {
  26660. name: "Boom",
  26661. height: math.unit(9 + 10 / 12, "feet"),
  26662. default: true
  26663. },
  26664. {
  26665. name: "Macro",
  26666. height: math.unit(280, "feet")
  26667. },
  26668. ]
  26669. ))
  26670. characterMakers.push(() => makeCharacter(
  26671. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26672. {
  26673. goddess: {
  26674. height: math.unit(600, "feet"),
  26675. weight: math.unit(2000000, "tons"),
  26676. name: "Goddess",
  26677. image: {
  26678. source: "./media/characters/lady-kubwa/goddess.svg",
  26679. extra: 1240.5 / 1223,
  26680. bottom: 22 / 1263
  26681. }
  26682. },
  26683. goddesser: {
  26684. height: math.unit(900, "feet"),
  26685. weight: math.unit(20000000, "lb"),
  26686. name: "Goddess-er",
  26687. image: {
  26688. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26689. extra: 899 / 888,
  26690. bottom: 12.6 / 912
  26691. }
  26692. },
  26693. },
  26694. [
  26695. {
  26696. name: "Macro",
  26697. height: math.unit(600, "feet"),
  26698. default: true
  26699. },
  26700. {
  26701. name: "Megamacro",
  26702. height: math.unit(250, "miles")
  26703. },
  26704. ]
  26705. ))
  26706. characterMakers.push(() => makeCharacter(
  26707. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26708. {
  26709. front: {
  26710. height: math.unit(7 + 7 / 12, "feet"),
  26711. weight: math.unit(250, "lb"),
  26712. name: "Front",
  26713. image: {
  26714. source: "./media/characters/tala-grovehorn/front.svg",
  26715. extra: 2636 / 2525,
  26716. bottom: 147 / 2781
  26717. }
  26718. },
  26719. back: {
  26720. height: math.unit(7 + 7 / 12, "feet"),
  26721. weight: math.unit(250, "lb"),
  26722. name: "Back",
  26723. image: {
  26724. source: "./media/characters/tala-grovehorn/back.svg",
  26725. extra: 2635 / 2539,
  26726. bottom: 100 / 2732.8
  26727. }
  26728. },
  26729. mouth: {
  26730. height: math.unit(1.15, "feet"),
  26731. name: "Mouth",
  26732. image: {
  26733. source: "./media/characters/tala-grovehorn/mouth.svg"
  26734. }
  26735. },
  26736. dick: {
  26737. height: math.unit(2.36, "feet"),
  26738. name: "Dick",
  26739. image: {
  26740. source: "./media/characters/tala-grovehorn/dick.svg"
  26741. }
  26742. },
  26743. slit: {
  26744. height: math.unit(0.61, "feet"),
  26745. name: "Slit",
  26746. image: {
  26747. source: "./media/characters/tala-grovehorn/slit.svg"
  26748. }
  26749. },
  26750. },
  26751. [
  26752. ]
  26753. ))
  26754. characterMakers.push(() => makeCharacter(
  26755. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26756. {
  26757. front: {
  26758. height: math.unit(7 + 7 / 12, "feet"),
  26759. weight: math.unit(225, "lb"),
  26760. name: "Front",
  26761. image: {
  26762. source: "./media/characters/epona/front.svg",
  26763. extra: 2445 / 2290,
  26764. bottom: 251 / 2696
  26765. }
  26766. },
  26767. back: {
  26768. height: math.unit(7 + 7 / 12, "feet"),
  26769. weight: math.unit(225, "lb"),
  26770. name: "Back",
  26771. image: {
  26772. source: "./media/characters/epona/back.svg",
  26773. extra: 2546 / 2408,
  26774. bottom: 44 / 2589
  26775. }
  26776. },
  26777. genitals: {
  26778. height: math.unit(1.5, "feet"),
  26779. name: "Genitals",
  26780. image: {
  26781. source: "./media/characters/epona/genitals.svg"
  26782. }
  26783. },
  26784. },
  26785. [
  26786. {
  26787. name: "Normal",
  26788. height: math.unit(7 + 7 / 12, "feet"),
  26789. default: true
  26790. },
  26791. ]
  26792. ))
  26793. characterMakers.push(() => makeCharacter(
  26794. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26795. {
  26796. front: {
  26797. height: math.unit(7, "feet"),
  26798. weight: math.unit(518, "lb"),
  26799. name: "Front",
  26800. image: {
  26801. source: "./media/characters/avia-bloodbourn/front.svg",
  26802. extra: 1466 / 1350,
  26803. bottom: 65 / 1527
  26804. }
  26805. },
  26806. },
  26807. [
  26808. ]
  26809. ))
  26810. characterMakers.push(() => makeCharacter(
  26811. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26812. {
  26813. front: {
  26814. height: math.unit(9.35, "feet"),
  26815. weight: math.unit(600, "lb"),
  26816. name: "Front",
  26817. image: {
  26818. source: "./media/characters/amera/front.svg",
  26819. extra: 891 / 818,
  26820. bottom: 30 / 922.7
  26821. }
  26822. },
  26823. back: {
  26824. height: math.unit(9.35, "feet"),
  26825. weight: math.unit(600, "lb"),
  26826. name: "Back",
  26827. image: {
  26828. source: "./media/characters/amera/back.svg",
  26829. extra: 876 / 824,
  26830. bottom: 6.8 / 884
  26831. }
  26832. },
  26833. dick: {
  26834. height: math.unit(2.14, "feet"),
  26835. name: "Dick",
  26836. image: {
  26837. source: "./media/characters/amera/dick.svg"
  26838. }
  26839. },
  26840. },
  26841. [
  26842. {
  26843. name: "Normal",
  26844. height: math.unit(9.35, "feet"),
  26845. default: true
  26846. },
  26847. ]
  26848. ))
  26849. characterMakers.push(() => makeCharacter(
  26850. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26851. {
  26852. kneeling: {
  26853. height: math.unit(3 + 4 / 12, "feet"),
  26854. weight: math.unit(90, "lb"),
  26855. name: "Kneeling",
  26856. image: {
  26857. source: "./media/characters/rosewen/kneeling.svg",
  26858. extra: 1835 / 1571,
  26859. bottom: 27.7 / 1862
  26860. }
  26861. },
  26862. },
  26863. [
  26864. {
  26865. name: "Normal",
  26866. height: math.unit(3 + 4 / 12, "feet"),
  26867. default: true
  26868. },
  26869. ]
  26870. ))
  26871. characterMakers.push(() => makeCharacter(
  26872. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26873. {
  26874. front: {
  26875. height: math.unit(5 + 10 / 12, "feet"),
  26876. weight: math.unit(200, "lb"),
  26877. name: "Front",
  26878. image: {
  26879. source: "./media/characters/sabah/front.svg",
  26880. extra: 849 / 763,
  26881. bottom: 33.9 / 881
  26882. }
  26883. },
  26884. },
  26885. [
  26886. {
  26887. name: "Normal",
  26888. height: math.unit(5 + 10 / 12, "feet"),
  26889. default: true
  26890. },
  26891. ]
  26892. ))
  26893. characterMakers.push(() => makeCharacter(
  26894. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26895. {
  26896. front: {
  26897. height: math.unit(3 + 5 / 12, "feet"),
  26898. weight: math.unit(40, "kg"),
  26899. name: "Front",
  26900. image: {
  26901. source: "./media/characters/purple-flame/front.svg",
  26902. extra: 1577 / 1412,
  26903. bottom: 97 / 1694
  26904. }
  26905. },
  26906. frontDressed: {
  26907. height: math.unit(3 + 5 / 12, "feet"),
  26908. weight: math.unit(40, "kg"),
  26909. name: "Front (Dressed)",
  26910. image: {
  26911. source: "./media/characters/purple-flame/front-dressed.svg",
  26912. extra: 1577 / 1412,
  26913. bottom: 97 / 1694
  26914. }
  26915. },
  26916. headphones: {
  26917. height: math.unit(0.85, "feet"),
  26918. name: "Headphones",
  26919. image: {
  26920. source: "./media/characters/purple-flame/headphones.svg"
  26921. }
  26922. },
  26923. },
  26924. [
  26925. {
  26926. name: "Really Small",
  26927. height: math.unit(5, "cm")
  26928. },
  26929. {
  26930. name: "Micro",
  26931. height: math.unit(1 + 5 / 12, "feet")
  26932. },
  26933. {
  26934. name: "Normal",
  26935. height: math.unit(3 + 5 / 12, "feet"),
  26936. default: true
  26937. },
  26938. {
  26939. name: "Minimacro",
  26940. height: math.unit(125, "feet")
  26941. },
  26942. {
  26943. name: "Macro",
  26944. height: math.unit(0.5, "miles")
  26945. },
  26946. {
  26947. name: "Megamacro",
  26948. height: math.unit(50, "miles")
  26949. },
  26950. {
  26951. name: "Gigantic",
  26952. height: math.unit(750, "miles")
  26953. },
  26954. {
  26955. name: "Planetary",
  26956. height: math.unit(15000, "miles")
  26957. },
  26958. ]
  26959. ))
  26960. characterMakers.push(() => makeCharacter(
  26961. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26962. {
  26963. front: {
  26964. height: math.unit(14, "feet"),
  26965. weight: math.unit(959, "lb"),
  26966. name: "Front",
  26967. image: {
  26968. source: "./media/characters/arsenal/front.svg",
  26969. extra: 2357 / 2157,
  26970. bottom: 93 / 2458
  26971. }
  26972. },
  26973. },
  26974. [
  26975. {
  26976. name: "Normal",
  26977. height: math.unit(14, "feet"),
  26978. default: true
  26979. },
  26980. ]
  26981. ))
  26982. characterMakers.push(() => makeCharacter(
  26983. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26984. {
  26985. front: {
  26986. height: math.unit(6, "feet"),
  26987. weight: math.unit(150, "lb"),
  26988. name: "Front",
  26989. image: {
  26990. source: "./media/characters/adira/front.svg",
  26991. extra: 1078 / 1029,
  26992. bottom: 87 / 1166
  26993. }
  26994. },
  26995. },
  26996. [
  26997. {
  26998. name: "Micro",
  26999. height: math.unit(4, "inches"),
  27000. default: true
  27001. },
  27002. {
  27003. name: "Macro",
  27004. height: math.unit(50, "feet")
  27005. },
  27006. ]
  27007. ))
  27008. characterMakers.push(() => makeCharacter(
  27009. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27010. {
  27011. front: {
  27012. height: math.unit(16, "feet"),
  27013. weight: math.unit(1000, "lb"),
  27014. name: "Front",
  27015. image: {
  27016. source: "./media/characters/grim/front.svg",
  27017. extra: 622 / 614,
  27018. bottom: 18.1 / 642
  27019. }
  27020. },
  27021. back: {
  27022. height: math.unit(16, "feet"),
  27023. weight: math.unit(1000, "lb"),
  27024. name: "Back",
  27025. image: {
  27026. source: "./media/characters/grim/back.svg",
  27027. extra: 610.6 / 602,
  27028. bottom: 40.8 / 652
  27029. }
  27030. },
  27031. hunched: {
  27032. height: math.unit(9.75, "feet"),
  27033. weight: math.unit(1000, "lb"),
  27034. name: "Hunched",
  27035. image: {
  27036. source: "./media/characters/grim/hunched.svg",
  27037. extra: 304 / 297,
  27038. bottom: 35.4 / 394
  27039. }
  27040. },
  27041. },
  27042. [
  27043. {
  27044. name: "Normal",
  27045. height: math.unit(16, "feet"),
  27046. default: true
  27047. },
  27048. ]
  27049. ))
  27050. characterMakers.push(() => makeCharacter(
  27051. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27052. {
  27053. front: {
  27054. height: math.unit(2.3, "meters"),
  27055. weight: math.unit(300, "lb"),
  27056. name: "Front",
  27057. image: {
  27058. source: "./media/characters/sinja/front-sfw.svg",
  27059. extra: 1393 / 1294,
  27060. bottom: 70 / 1463
  27061. }
  27062. },
  27063. frontNsfw: {
  27064. height: math.unit(2.3, "meters"),
  27065. weight: math.unit(300, "lb"),
  27066. name: "Front (NSFW)",
  27067. image: {
  27068. source: "./media/characters/sinja/front-nsfw.svg",
  27069. extra: 1393 / 1294,
  27070. bottom: 70 / 1463
  27071. }
  27072. },
  27073. back: {
  27074. height: math.unit(2.3, "meters"),
  27075. weight: math.unit(300, "lb"),
  27076. name: "Back",
  27077. image: {
  27078. source: "./media/characters/sinja/back.svg",
  27079. extra: 1393 / 1294,
  27080. bottom: 70 / 1463
  27081. }
  27082. },
  27083. head: {
  27084. height: math.unit(1.771, "feet"),
  27085. name: "Head",
  27086. image: {
  27087. source: "./media/characters/sinja/head.svg"
  27088. }
  27089. },
  27090. slit: {
  27091. height: math.unit(0.8, "feet"),
  27092. name: "Slit",
  27093. image: {
  27094. source: "./media/characters/sinja/slit.svg"
  27095. }
  27096. },
  27097. },
  27098. [
  27099. {
  27100. name: "Normal",
  27101. height: math.unit(2.3, "meters")
  27102. },
  27103. {
  27104. name: "Macro",
  27105. height: math.unit(91, "meters"),
  27106. default: true
  27107. },
  27108. {
  27109. name: "Megamacro",
  27110. height: math.unit(91440, "meters")
  27111. },
  27112. {
  27113. name: "Gigamacro",
  27114. height: math.unit(60960000, "meters")
  27115. },
  27116. {
  27117. name: "Teramacro",
  27118. height: math.unit(9144000000, "meters")
  27119. },
  27120. ]
  27121. ))
  27122. characterMakers.push(() => makeCharacter(
  27123. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27124. {
  27125. front: {
  27126. height: math.unit(1.7, "meters"),
  27127. weight: math.unit(130, "lb"),
  27128. name: "Front",
  27129. image: {
  27130. source: "./media/characters/kyu/front.svg",
  27131. extra: 415 / 395,
  27132. bottom: 5 / 420
  27133. }
  27134. },
  27135. head: {
  27136. height: math.unit(1.75, "feet"),
  27137. name: "Head",
  27138. image: {
  27139. source: "./media/characters/kyu/head.svg"
  27140. }
  27141. },
  27142. foot: {
  27143. height: math.unit(0.81, "feet"),
  27144. name: "Foot",
  27145. image: {
  27146. source: "./media/characters/kyu/foot.svg"
  27147. }
  27148. },
  27149. },
  27150. [
  27151. {
  27152. name: "Normal",
  27153. height: math.unit(1.7, "meters")
  27154. },
  27155. {
  27156. name: "Macro",
  27157. height: math.unit(131, "feet"),
  27158. default: true
  27159. },
  27160. {
  27161. name: "Megamacro",
  27162. height: math.unit(91440, "meters")
  27163. },
  27164. {
  27165. name: "Gigamacro",
  27166. height: math.unit(60960000, "meters")
  27167. },
  27168. {
  27169. name: "Teramacro",
  27170. height: math.unit(9144000000, "meters")
  27171. },
  27172. ]
  27173. ))
  27174. characterMakers.push(() => makeCharacter(
  27175. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27176. {
  27177. front: {
  27178. height: math.unit(7 + 1 / 12, "feet"),
  27179. weight: math.unit(250, "lb"),
  27180. name: "Front",
  27181. image: {
  27182. source: "./media/characters/joey/front.svg",
  27183. extra: 1791 / 1537,
  27184. bottom: 28 / 1816
  27185. }
  27186. },
  27187. },
  27188. [
  27189. {
  27190. name: "Micro",
  27191. height: math.unit(3, "inches")
  27192. },
  27193. {
  27194. name: "Normal",
  27195. height: math.unit(7 + 1 / 12, "feet"),
  27196. default: true
  27197. },
  27198. ]
  27199. ))
  27200. characterMakers.push(() => makeCharacter(
  27201. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27202. {
  27203. front: {
  27204. height: math.unit(165, "cm"),
  27205. weight: math.unit(140, "lb"),
  27206. name: "Front",
  27207. image: {
  27208. source: "./media/characters/sam-evans/front.svg",
  27209. extra: 3417 / 3230,
  27210. bottom: 41.3 / 3417
  27211. }
  27212. },
  27213. frontSixTails: {
  27214. height: math.unit(165, "cm"),
  27215. weight: math.unit(140, "lb"),
  27216. name: "Front-six-tails",
  27217. image: {
  27218. source: "./media/characters/sam-evans/front-six-tails.svg",
  27219. extra: 3417 / 3230,
  27220. bottom: 41.3 / 3417
  27221. }
  27222. },
  27223. back: {
  27224. height: math.unit(165, "cm"),
  27225. weight: math.unit(140, "lb"),
  27226. name: "Back",
  27227. image: {
  27228. source: "./media/characters/sam-evans/back.svg",
  27229. extra: 3227 / 3032,
  27230. bottom: 6.8 / 3234
  27231. }
  27232. },
  27233. face: {
  27234. height: math.unit(0.68, "feet"),
  27235. name: "Face",
  27236. image: {
  27237. source: "./media/characters/sam-evans/face.svg"
  27238. }
  27239. },
  27240. },
  27241. [
  27242. {
  27243. name: "Normal",
  27244. height: math.unit(165, "cm"),
  27245. default: true
  27246. },
  27247. {
  27248. name: "Macro",
  27249. height: math.unit(100, "meters")
  27250. },
  27251. {
  27252. name: "Macro+",
  27253. height: math.unit(800, "meters")
  27254. },
  27255. {
  27256. name: "Macro++",
  27257. height: math.unit(3, "km")
  27258. },
  27259. {
  27260. name: "Macro+++",
  27261. height: math.unit(30, "km")
  27262. },
  27263. ]
  27264. ))
  27265. characterMakers.push(() => makeCharacter(
  27266. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27267. {
  27268. front: {
  27269. height: math.unit(10, "feet"),
  27270. weight: math.unit(750, "lb"),
  27271. name: "Front",
  27272. image: {
  27273. source: "./media/characters/juliet-a/front.svg",
  27274. extra: 1766 / 1720,
  27275. bottom: 43 / 1809
  27276. }
  27277. },
  27278. back: {
  27279. height: math.unit(10, "feet"),
  27280. weight: math.unit(750, "lb"),
  27281. name: "Back",
  27282. image: {
  27283. source: "./media/characters/juliet-a/back.svg",
  27284. extra: 1781 / 1734,
  27285. bottom: 35 / 1810,
  27286. }
  27287. },
  27288. },
  27289. [
  27290. {
  27291. name: "Normal",
  27292. height: math.unit(10, "feet"),
  27293. default: true
  27294. },
  27295. {
  27296. name: "Dragon Form",
  27297. height: math.unit(250, "feet")
  27298. },
  27299. {
  27300. name: "Macro",
  27301. height: math.unit(1000, "feet")
  27302. },
  27303. {
  27304. name: "Megamacro",
  27305. height: math.unit(10000, "feet")
  27306. }
  27307. ]
  27308. ))
  27309. characterMakers.push(() => makeCharacter(
  27310. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27311. {
  27312. regular: {
  27313. height: math.unit(7 + 3 / 12, "feet"),
  27314. weight: math.unit(260, "lb"),
  27315. name: "Regular",
  27316. image: {
  27317. source: "./media/characters/wild/regular.svg",
  27318. extra: 97.45 / 92,
  27319. bottom: 6.8 / 104.3
  27320. }
  27321. },
  27322. biggums: {
  27323. height: math.unit(8 + 6 / 12, "feet"),
  27324. weight: math.unit(425, "lb"),
  27325. name: "Biggums",
  27326. image: {
  27327. source: "./media/characters/wild/biggums.svg",
  27328. extra: 97.45 / 92,
  27329. bottom: 7.5 / 132.34
  27330. }
  27331. },
  27332. mawRegular: {
  27333. height: math.unit(1.24, "feet"),
  27334. name: "Maw (Regular)",
  27335. image: {
  27336. source: "./media/characters/wild/maw.svg"
  27337. }
  27338. },
  27339. mawBiggums: {
  27340. height: math.unit(1.47, "feet"),
  27341. name: "Maw (Biggums)",
  27342. image: {
  27343. source: "./media/characters/wild/maw.svg"
  27344. }
  27345. },
  27346. },
  27347. [
  27348. {
  27349. name: "Normal",
  27350. height: math.unit(7 + 3 / 12, "feet"),
  27351. default: true
  27352. },
  27353. ]
  27354. ))
  27355. characterMakers.push(() => makeCharacter(
  27356. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27357. {
  27358. front: {
  27359. height: math.unit(2.5, "meters"),
  27360. weight: math.unit(200, "kg"),
  27361. name: "Front",
  27362. image: {
  27363. source: "./media/characters/vidar/front.svg",
  27364. extra: 2994 / 2795,
  27365. bottom: 56 / 3061
  27366. }
  27367. },
  27368. back: {
  27369. height: math.unit(2.5, "meters"),
  27370. weight: math.unit(200, "kg"),
  27371. name: "Back",
  27372. image: {
  27373. source: "./media/characters/vidar/back.svg",
  27374. extra: 3131 / 2928,
  27375. bottom: 13.5 / 3141.5
  27376. }
  27377. },
  27378. feral: {
  27379. height: math.unit(2.5, "meters"),
  27380. weight: math.unit(2000, "kg"),
  27381. name: "Feral",
  27382. image: {
  27383. source: "./media/characters/vidar/feral.svg",
  27384. extra: 2790 / 1765,
  27385. bottom: 6 / 2796
  27386. }
  27387. },
  27388. },
  27389. [
  27390. {
  27391. name: "Normal",
  27392. height: math.unit(2.5, "meters"),
  27393. default: true
  27394. },
  27395. {
  27396. name: "Macro",
  27397. height: math.unit(100, "meters")
  27398. },
  27399. ]
  27400. ))
  27401. characterMakers.push(() => makeCharacter(
  27402. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27403. {
  27404. front: {
  27405. height: math.unit(5 + 9 / 12, "feet"),
  27406. weight: math.unit(120, "lb"),
  27407. name: "Front",
  27408. image: {
  27409. source: "./media/characters/ash/front.svg",
  27410. extra: 2189 / 1961,
  27411. bottom: 5.2 / 2194
  27412. }
  27413. },
  27414. },
  27415. [
  27416. {
  27417. name: "Normal",
  27418. height: math.unit(5 + 9 / 12, "feet"),
  27419. default: true
  27420. },
  27421. ]
  27422. ))
  27423. characterMakers.push(() => makeCharacter(
  27424. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27425. {
  27426. front: {
  27427. height: math.unit(9, "feet"),
  27428. weight: math.unit(10000, "lb"),
  27429. name: "Front",
  27430. image: {
  27431. source: "./media/characters/gygabite/front.svg",
  27432. bottom: 31.7 / 537.8,
  27433. extra: 505 / 370
  27434. }
  27435. },
  27436. },
  27437. [
  27438. {
  27439. name: "Normal",
  27440. height: math.unit(9, "feet"),
  27441. default: true
  27442. },
  27443. ]
  27444. ))
  27445. characterMakers.push(() => makeCharacter(
  27446. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27447. {
  27448. front: {
  27449. height: math.unit(12, "feet"),
  27450. weight: math.unit(35000, "lb"),
  27451. name: "Front",
  27452. image: {
  27453. source: "./media/characters/p0tat0/front.svg",
  27454. extra: 1065 / 921,
  27455. bottom: 55.7 / 1121.25
  27456. }
  27457. },
  27458. },
  27459. [
  27460. {
  27461. name: "Normal",
  27462. height: math.unit(12, "feet"),
  27463. default: true
  27464. },
  27465. ]
  27466. ))
  27467. characterMakers.push(() => makeCharacter(
  27468. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27469. {
  27470. side: {
  27471. height: math.unit(6.5, "feet"),
  27472. weight: math.unit(800, "lb"),
  27473. name: "Side",
  27474. image: {
  27475. source: "./media/characters/dusk/side.svg",
  27476. extra: 615 / 373,
  27477. bottom: 53 / 664
  27478. }
  27479. },
  27480. sitting: {
  27481. height: math.unit(7, "feet"),
  27482. weight: math.unit(800, "lb"),
  27483. name: "Sitting",
  27484. image: {
  27485. source: "./media/characters/dusk/sitting.svg",
  27486. extra: 753 / 425,
  27487. bottom: 33 / 774
  27488. }
  27489. },
  27490. head: {
  27491. height: math.unit(6.1, "feet"),
  27492. name: "Head",
  27493. image: {
  27494. source: "./media/characters/dusk/head.svg"
  27495. }
  27496. },
  27497. },
  27498. [
  27499. {
  27500. name: "Normal",
  27501. height: math.unit(7, "feet"),
  27502. default: true
  27503. },
  27504. ]
  27505. ))
  27506. characterMakers.push(() => makeCharacter(
  27507. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27508. {
  27509. front: {
  27510. height: math.unit(15, "feet"),
  27511. weight: math.unit(7000, "lb"),
  27512. name: "Front",
  27513. image: {
  27514. source: "./media/characters/jay-direwolf/front.svg",
  27515. extra: 1810 / 1732,
  27516. bottom: 66 / 1892
  27517. }
  27518. },
  27519. },
  27520. [
  27521. {
  27522. name: "Normal",
  27523. height: math.unit(15, "feet"),
  27524. default: true
  27525. },
  27526. ]
  27527. ))
  27528. characterMakers.push(() => makeCharacter(
  27529. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27530. {
  27531. front: {
  27532. height: math.unit(4 + 9 / 12, "feet"),
  27533. weight: math.unit(130, "lb"),
  27534. name: "Front",
  27535. image: {
  27536. source: "./media/characters/anchovie/front.svg",
  27537. extra: 382 / 350,
  27538. bottom: 25 / 409
  27539. }
  27540. },
  27541. back: {
  27542. height: math.unit(4 + 9 / 12, "feet"),
  27543. weight: math.unit(130, "lb"),
  27544. name: "Back",
  27545. image: {
  27546. source: "./media/characters/anchovie/back.svg",
  27547. extra: 385 / 352,
  27548. bottom: 16.6 / 402
  27549. }
  27550. },
  27551. frontDressed: {
  27552. height: math.unit(4 + 9 / 12, "feet"),
  27553. weight: math.unit(130, "lb"),
  27554. name: "Front (Dressed)",
  27555. image: {
  27556. source: "./media/characters/anchovie/front-dressed.svg",
  27557. extra: 382 / 350,
  27558. bottom: 25 / 409
  27559. }
  27560. },
  27561. backDressed: {
  27562. height: math.unit(4 + 9 / 12, "feet"),
  27563. weight: math.unit(130, "lb"),
  27564. name: "Back (Dressed)",
  27565. image: {
  27566. source: "./media/characters/anchovie/back-dressed.svg",
  27567. extra: 385 / 352,
  27568. bottom: 16.6 / 402
  27569. }
  27570. },
  27571. },
  27572. [
  27573. {
  27574. name: "Micro",
  27575. height: math.unit(6.4, "inches")
  27576. },
  27577. {
  27578. name: "Normal",
  27579. height: math.unit(4 + 9 / 12, "feet"),
  27580. default: true
  27581. },
  27582. ]
  27583. ))
  27584. characterMakers.push(() => makeCharacter(
  27585. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27586. {
  27587. front: {
  27588. height: math.unit(2, "meters"),
  27589. weight: math.unit(180, "lb"),
  27590. name: "Front",
  27591. image: {
  27592. source: "./media/characters/acidrenamon/front.svg",
  27593. extra: 987 / 890,
  27594. bottom: 22.8 / 1009
  27595. }
  27596. },
  27597. back: {
  27598. height: math.unit(2, "meters"),
  27599. weight: math.unit(180, "lb"),
  27600. name: "Back",
  27601. image: {
  27602. source: "./media/characters/acidrenamon/back.svg",
  27603. extra: 983 / 891,
  27604. bottom: 8.4 / 992
  27605. }
  27606. },
  27607. head: {
  27608. height: math.unit(1.92, "feet"),
  27609. name: "Head",
  27610. image: {
  27611. source: "./media/characters/acidrenamon/head.svg"
  27612. }
  27613. },
  27614. rump: {
  27615. height: math.unit(1.72, "feet"),
  27616. name: "Rump",
  27617. image: {
  27618. source: "./media/characters/acidrenamon/rump.svg"
  27619. }
  27620. },
  27621. tail: {
  27622. height: math.unit(4.2, "feet"),
  27623. name: "Tail",
  27624. image: {
  27625. source: "./media/characters/acidrenamon/tail.svg"
  27626. }
  27627. },
  27628. },
  27629. [
  27630. {
  27631. name: "Normal",
  27632. height: math.unit(2, "meters"),
  27633. default: true
  27634. },
  27635. {
  27636. name: "Minimacro",
  27637. height: math.unit(7, "meters")
  27638. },
  27639. {
  27640. name: "Macro",
  27641. height: math.unit(200, "meters")
  27642. },
  27643. {
  27644. name: "Gigamacro",
  27645. height: math.unit(0.2, "earths")
  27646. },
  27647. ]
  27648. ))
  27649. characterMakers.push(() => makeCharacter(
  27650. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27651. {
  27652. front: {
  27653. height: math.unit(6, "feet"),
  27654. weight: math.unit(150, "lb"),
  27655. name: "Front",
  27656. image: {
  27657. source: "./media/characters/kenzie-lee/front.svg",
  27658. extra: 1525 / 1465,
  27659. bottom: 45 / 1570
  27660. }
  27661. },
  27662. side: {
  27663. height: math.unit(6, "feet"),
  27664. weight: math.unit(150, "lb"),
  27665. name: "Side",
  27666. image: {
  27667. source: "./media/characters/kenzie-lee/side.svg",
  27668. extra: 5505 / 5383,
  27669. bottom: 60 / 5573
  27670. }
  27671. },
  27672. paw: {
  27673. height: math.unit(0.57, "feet"),
  27674. name: "Paw",
  27675. image: {
  27676. source: "./media/characters/kenzie-lee/paw.svg"
  27677. }
  27678. },
  27679. },
  27680. [
  27681. {
  27682. name: "Normal",
  27683. height: math.unit(152, "feet"),
  27684. default: true
  27685. },
  27686. {
  27687. name: "Megamacro",
  27688. height: math.unit(7, "miles")
  27689. },
  27690. {
  27691. name: "Gigamacro",
  27692. height: math.unit(8000, "miles")
  27693. },
  27694. ]
  27695. ))
  27696. characterMakers.push(() => makeCharacter(
  27697. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27698. {
  27699. side: {
  27700. height: math.unit(6, "feet"),
  27701. weight: math.unit(150, "lb"),
  27702. name: "Side",
  27703. image: {
  27704. source: "./media/characters/withers/side.svg",
  27705. extra: 1830 / 1728,
  27706. bottom: 96 / 1927
  27707. }
  27708. },
  27709. front: {
  27710. height: math.unit(6, "feet"),
  27711. weight: math.unit(150, "lb"),
  27712. name: "Front",
  27713. image: {
  27714. source: "./media/characters/withers/front.svg",
  27715. extra: 1514 / 1438,
  27716. bottom: 118 / 1632
  27717. }
  27718. },
  27719. },
  27720. [
  27721. {
  27722. name: "Macro",
  27723. height: math.unit(168, "feet"),
  27724. default: true
  27725. },
  27726. {
  27727. name: "Megamacro",
  27728. height: math.unit(15, "miles")
  27729. }
  27730. ]
  27731. ))
  27732. characterMakers.push(() => makeCharacter(
  27733. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27734. {
  27735. front: {
  27736. height: math.unit(6 + 7 / 12, "feet"),
  27737. weight: math.unit(250, "lb"),
  27738. name: "Front",
  27739. image: {
  27740. source: "./media/characters/nemoskii/front.svg",
  27741. extra: 2270 / 1734,
  27742. bottom: 86 / 2354
  27743. }
  27744. },
  27745. back: {
  27746. height: math.unit(6 + 7 / 12, "feet"),
  27747. weight: math.unit(250, "lb"),
  27748. name: "Back",
  27749. image: {
  27750. source: "./media/characters/nemoskii/back.svg",
  27751. extra: 1845 / 1788,
  27752. bottom: 10.5 / 1852
  27753. }
  27754. },
  27755. head: {
  27756. height: math.unit(1.31, "feet"),
  27757. name: "Head",
  27758. image: {
  27759. source: "./media/characters/nemoskii/head.svg"
  27760. }
  27761. },
  27762. },
  27763. [
  27764. {
  27765. name: "Micro",
  27766. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27767. },
  27768. {
  27769. name: "Normal",
  27770. height: math.unit(6 + 7 / 12, "feet"),
  27771. default: true
  27772. },
  27773. {
  27774. name: "Macro",
  27775. height: math.unit((6 + 7 / 12) * 150, "feet")
  27776. },
  27777. {
  27778. name: "Macro+",
  27779. height: math.unit((6 + 7 / 12) * 500, "feet")
  27780. },
  27781. {
  27782. name: "Megamacro",
  27783. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27784. },
  27785. ]
  27786. ))
  27787. characterMakers.push(() => makeCharacter(
  27788. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27789. {
  27790. front: {
  27791. height: math.unit(1, "mile"),
  27792. weight: math.unit(265261.9, "lb"),
  27793. name: "Front",
  27794. image: {
  27795. source: "./media/characters/shui/front.svg",
  27796. extra: 1633 / 1564,
  27797. bottom: 91.5 / 1726
  27798. }
  27799. },
  27800. },
  27801. [
  27802. {
  27803. name: "Macro",
  27804. height: math.unit(1, "mile"),
  27805. default: true
  27806. },
  27807. ]
  27808. ))
  27809. characterMakers.push(() => makeCharacter(
  27810. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27811. {
  27812. front: {
  27813. height: math.unit(12 + 6 / 12, "feet"),
  27814. weight: math.unit(1342, "lb"),
  27815. name: "Front",
  27816. image: {
  27817. source: "./media/characters/arokh-takakura/front.svg",
  27818. extra: 1089 / 1043,
  27819. bottom: 77.4 / 1176.7
  27820. }
  27821. },
  27822. back: {
  27823. height: math.unit(12 + 6 / 12, "feet"),
  27824. weight: math.unit(1342, "lb"),
  27825. name: "Back",
  27826. image: {
  27827. source: "./media/characters/arokh-takakura/back.svg",
  27828. extra: 1046 / 1019,
  27829. bottom: 102 / 1150
  27830. }
  27831. },
  27832. },
  27833. [
  27834. {
  27835. name: "Big",
  27836. height: math.unit(12 + 6 / 12, "feet"),
  27837. default: true
  27838. },
  27839. ]
  27840. ))
  27841. characterMakers.push(() => makeCharacter(
  27842. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27843. {
  27844. front: {
  27845. height: math.unit(5 + 6 / 12, "feet"),
  27846. weight: math.unit(150, "lb"),
  27847. name: "Front",
  27848. image: {
  27849. source: "./media/characters/theo/front.svg",
  27850. extra: 1184 / 1131,
  27851. bottom: 7.4 / 1191
  27852. }
  27853. },
  27854. },
  27855. [
  27856. {
  27857. name: "Micro",
  27858. height: math.unit(5, "inches")
  27859. },
  27860. {
  27861. name: "Normal",
  27862. height: math.unit(5 + 6 / 12, "feet"),
  27863. default: true
  27864. },
  27865. ]
  27866. ))
  27867. characterMakers.push(() => makeCharacter(
  27868. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27869. {
  27870. front: {
  27871. height: math.unit(5 + 9 / 12, "feet"),
  27872. weight: math.unit(130, "lb"),
  27873. name: "Front",
  27874. image: {
  27875. source: "./media/characters/cecelia-swift/front.svg",
  27876. extra: 502 / 484,
  27877. bottom: 23 / 523
  27878. }
  27879. },
  27880. back: {
  27881. height: math.unit(5 + 9 / 12, "feet"),
  27882. weight: math.unit(130, "lb"),
  27883. name: "Back",
  27884. image: {
  27885. source: "./media/characters/cecelia-swift/back.svg",
  27886. extra: 499 / 485,
  27887. bottom: 12 / 511
  27888. }
  27889. },
  27890. head: {
  27891. height: math.unit(0.90, "feet"),
  27892. name: "Head",
  27893. image: {
  27894. source: "./media/characters/cecelia-swift/head.svg"
  27895. }
  27896. },
  27897. rump: {
  27898. height: math.unit(1.75, "feet"),
  27899. name: "Rump",
  27900. image: {
  27901. source: "./media/characters/cecelia-swift/rump.svg"
  27902. }
  27903. },
  27904. },
  27905. [
  27906. {
  27907. name: "Normal",
  27908. height: math.unit(5 + 9 / 12, "feet"),
  27909. default: true
  27910. },
  27911. {
  27912. name: "Big",
  27913. height: math.unit(50, "feet")
  27914. },
  27915. {
  27916. name: "Macro",
  27917. height: math.unit(100, "feet")
  27918. },
  27919. {
  27920. name: "Macro+",
  27921. height: math.unit(500, "feet")
  27922. },
  27923. {
  27924. name: "Macro++",
  27925. height: math.unit(1000, "feet")
  27926. },
  27927. ]
  27928. ))
  27929. characterMakers.push(() => makeCharacter(
  27930. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27931. {
  27932. front: {
  27933. height: math.unit(6, "feet"),
  27934. weight: math.unit(150, "lb"),
  27935. name: "Front",
  27936. image: {
  27937. source: "./media/characters/kaunan/front.svg",
  27938. extra: 2890 / 2523,
  27939. bottom: 49 / 2939
  27940. }
  27941. },
  27942. },
  27943. [
  27944. {
  27945. name: "Macro",
  27946. height: math.unit(150, "feet"),
  27947. default: true
  27948. },
  27949. ]
  27950. ))
  27951. characterMakers.push(() => makeCharacter(
  27952. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27953. {
  27954. front: {
  27955. height: math.unit(175, "cm"),
  27956. weight: math.unit(60, "kg"),
  27957. name: "Front",
  27958. image: {
  27959. source: "./media/characters/fei/front.svg",
  27960. extra: 1873/1723,
  27961. bottom: 53/1926
  27962. }
  27963. },
  27964. },
  27965. [
  27966. {
  27967. name: "Mortal",
  27968. height: math.unit(175, "cm")
  27969. },
  27970. {
  27971. name: "Normal",
  27972. height: math.unit(3500, "m"),
  27973. default: true
  27974. },
  27975. {
  27976. name: "Stroll",
  27977. height: math.unit(17.5, "km")
  27978. },
  27979. {
  27980. name: "Showoff",
  27981. height: math.unit(175, "km")
  27982. },
  27983. ]
  27984. ))
  27985. characterMakers.push(() => makeCharacter(
  27986. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27987. {
  27988. front: {
  27989. height: math.unit(7, "feet"),
  27990. weight: math.unit(1000, "kg"),
  27991. name: "Front",
  27992. image: {
  27993. source: "./media/characters/edrax/front.svg",
  27994. extra: 2838 / 2550,
  27995. bottom: 130 / 2968
  27996. }
  27997. },
  27998. },
  27999. [
  28000. {
  28001. name: "Small",
  28002. height: math.unit(7, "feet")
  28003. },
  28004. {
  28005. name: "Normal",
  28006. height: math.unit(1500, "meters")
  28007. },
  28008. {
  28009. name: "Mega",
  28010. height: math.unit(12000000, "km"),
  28011. default: true
  28012. },
  28013. {
  28014. name: "Megamacro",
  28015. height: math.unit(10600000, "lightyears")
  28016. },
  28017. {
  28018. name: "Hypermacro",
  28019. height: math.unit(256, "yottameters")
  28020. },
  28021. ]
  28022. ))
  28023. characterMakers.push(() => makeCharacter(
  28024. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28025. {
  28026. front: {
  28027. height: math.unit(10, "feet"),
  28028. weight: math.unit(750, "lb"),
  28029. name: "Front",
  28030. image: {
  28031. source: "./media/characters/clove/front.svg",
  28032. extra: 2031 / 1860,
  28033. bottom: 47.8 / 2080
  28034. }
  28035. },
  28036. back: {
  28037. height: math.unit(10, "feet"),
  28038. weight: math.unit(750, "lb"),
  28039. name: "Back",
  28040. image: {
  28041. source: "./media/characters/clove/back.svg",
  28042. extra: 2025 / 1859,
  28043. bottom: 46 / 2071
  28044. }
  28045. },
  28046. },
  28047. [
  28048. {
  28049. name: "Normal",
  28050. height: math.unit(10, "feet"),
  28051. default: true
  28052. },
  28053. ]
  28054. ))
  28055. characterMakers.push(() => makeCharacter(
  28056. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28057. {
  28058. front: {
  28059. height: math.unit(4, "feet"),
  28060. weight: math.unit(50, "lb"),
  28061. name: "Front",
  28062. image: {
  28063. source: "./media/characters/alex-rabbit/front.svg",
  28064. extra: 507 / 458,
  28065. bottom: 18.5 / 527
  28066. }
  28067. },
  28068. back: {
  28069. height: math.unit(4, "feet"),
  28070. weight: math.unit(50, "lb"),
  28071. name: "Back",
  28072. image: {
  28073. source: "./media/characters/alex-rabbit/back.svg",
  28074. extra: 502 / 460,
  28075. bottom: 18.9 / 521
  28076. }
  28077. },
  28078. },
  28079. [
  28080. {
  28081. name: "Normal",
  28082. height: math.unit(4, "feet"),
  28083. default: true
  28084. },
  28085. ]
  28086. ))
  28087. characterMakers.push(() => makeCharacter(
  28088. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28089. {
  28090. front: {
  28091. height: math.unit(1 + 3 / 12, "feet"),
  28092. weight: math.unit(80, "lb"),
  28093. name: "Front",
  28094. image: {
  28095. source: "./media/characters/zander-rose/front.svg",
  28096. extra: 916 / 797,
  28097. bottom: 17 / 933
  28098. }
  28099. },
  28100. back: {
  28101. height: math.unit(1 + 3 / 12, "feet"),
  28102. weight: math.unit(80, "lb"),
  28103. name: "Back",
  28104. image: {
  28105. source: "./media/characters/zander-rose/back.svg",
  28106. extra: 903 / 779,
  28107. bottom: 31 / 934
  28108. }
  28109. },
  28110. },
  28111. [
  28112. {
  28113. name: "Normal",
  28114. height: math.unit(1 + 3 / 12, "feet"),
  28115. default: true
  28116. },
  28117. ]
  28118. ))
  28119. characterMakers.push(() => makeCharacter(
  28120. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28121. {
  28122. anthro: {
  28123. height: math.unit(6, "feet"),
  28124. weight: math.unit(150, "lb"),
  28125. name: "Anthro",
  28126. image: {
  28127. source: "./media/characters/razz/anthro.svg",
  28128. extra: 1437 / 1343,
  28129. bottom: 48 / 1485
  28130. }
  28131. },
  28132. feral: {
  28133. height: math.unit(6, "feet"),
  28134. weight: math.unit(150, "lb"),
  28135. name: "Feral",
  28136. image: {
  28137. source: "./media/characters/razz/feral.svg",
  28138. extra: 2569 / 1385,
  28139. bottom: 95 / 2664
  28140. }
  28141. },
  28142. },
  28143. [
  28144. {
  28145. name: "Normal",
  28146. height: math.unit(6, "feet"),
  28147. default: true
  28148. },
  28149. ]
  28150. ))
  28151. characterMakers.push(() => makeCharacter(
  28152. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28153. {
  28154. front: {
  28155. height: math.unit(9 + 4 / 12, "feet"),
  28156. weight: math.unit(500, "lb"),
  28157. name: "Front",
  28158. image: {
  28159. source: "./media/characters/morrigan/front.svg",
  28160. extra: 2707 / 2579,
  28161. bottom: 156 / 2863
  28162. }
  28163. },
  28164. },
  28165. [
  28166. {
  28167. name: "Normal",
  28168. height: math.unit(9 + 4 / 12, "feet"),
  28169. default: true
  28170. },
  28171. ]
  28172. ))
  28173. characterMakers.push(() => makeCharacter(
  28174. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28175. {
  28176. front: {
  28177. height: math.unit(5, "stories"),
  28178. weight: math.unit(4000, "lb"),
  28179. name: "Front",
  28180. image: {
  28181. source: "./media/characters/jenene/front.svg",
  28182. extra: 1780 / 1710,
  28183. bottom: 57 / 1837
  28184. }
  28185. },
  28186. },
  28187. [
  28188. {
  28189. name: "Normal",
  28190. height: math.unit(5, "stories"),
  28191. default: true
  28192. },
  28193. ]
  28194. ))
  28195. characterMakers.push(() => makeCharacter(
  28196. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28197. {
  28198. taurSfw: {
  28199. height: math.unit(10, "meters"),
  28200. weight: math.unit(17500, "kg"),
  28201. name: "Taur",
  28202. image: {
  28203. source: "./media/characters/faey/taur-sfw.svg",
  28204. extra: 1200 / 968,
  28205. bottom: 41 / 1241
  28206. }
  28207. },
  28208. chestmaw: {
  28209. height: math.unit(2.01, "meters"),
  28210. name: "Chestmaw",
  28211. image: {
  28212. source: "./media/characters/faey/chestmaw.svg"
  28213. }
  28214. },
  28215. foot: {
  28216. height: math.unit(2.43, "meters"),
  28217. name: "Foot",
  28218. image: {
  28219. source: "./media/characters/faey/foot.svg"
  28220. }
  28221. },
  28222. jaws: {
  28223. height: math.unit(1.66, "meters"),
  28224. name: "Jaws",
  28225. image: {
  28226. source: "./media/characters/faey/jaws.svg"
  28227. }
  28228. },
  28229. tongues: {
  28230. height: math.unit(2.01, "meters"),
  28231. name: "Tongues",
  28232. image: {
  28233. source: "./media/characters/faey/tongues.svg"
  28234. }
  28235. },
  28236. },
  28237. [
  28238. {
  28239. name: "Small",
  28240. height: math.unit(10, "meters"),
  28241. default: true
  28242. },
  28243. {
  28244. name: "Big",
  28245. height: math.unit(500000, "km")
  28246. },
  28247. ]
  28248. ))
  28249. characterMakers.push(() => makeCharacter(
  28250. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28251. {
  28252. front: {
  28253. height: math.unit(7, "feet"),
  28254. weight: math.unit(275, "lb"),
  28255. name: "Front",
  28256. image: {
  28257. source: "./media/characters/roku/front.svg",
  28258. extra: 903 / 878,
  28259. bottom: 37 / 940
  28260. }
  28261. },
  28262. },
  28263. [
  28264. {
  28265. name: "Normal",
  28266. height: math.unit(7, "feet"),
  28267. default: true
  28268. },
  28269. {
  28270. name: "Macro",
  28271. height: math.unit(500, "feet")
  28272. },
  28273. {
  28274. name: "Megamacro",
  28275. height: math.unit(200, "miles")
  28276. },
  28277. ]
  28278. ))
  28279. characterMakers.push(() => makeCharacter(
  28280. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28281. {
  28282. front: {
  28283. height: math.unit(6 + 2 / 12, "feet"),
  28284. weight: math.unit(150, "lb"),
  28285. name: "Front",
  28286. image: {
  28287. source: "./media/characters/lira/front.svg",
  28288. extra: 1727 / 1605,
  28289. bottom: 26 / 1753
  28290. }
  28291. },
  28292. back: {
  28293. height: math.unit(6 + 2 / 12, "feet"),
  28294. weight: math.unit(150, "lb"),
  28295. name: "Back",
  28296. image: {
  28297. source: "./media/characters/lira/back.svg",
  28298. extra: 1713/1621,
  28299. bottom: 20/1733
  28300. }
  28301. },
  28302. hand: {
  28303. height: math.unit(0.75, "feet"),
  28304. name: "Hand",
  28305. image: {
  28306. source: "./media/characters/lira/hand.svg"
  28307. }
  28308. },
  28309. maw: {
  28310. height: math.unit(0.65, "feet"),
  28311. name: "Maw",
  28312. image: {
  28313. source: "./media/characters/lira/maw.svg"
  28314. }
  28315. },
  28316. pawDigi: {
  28317. height: math.unit(1.6, "feet"),
  28318. name: "Paw Digi",
  28319. image: {
  28320. source: "./media/characters/lira/paw-digi.svg"
  28321. }
  28322. },
  28323. pawPlanti: {
  28324. height: math.unit(1.4, "feet"),
  28325. name: "Paw Planti",
  28326. image: {
  28327. source: "./media/characters/lira/paw-planti.svg"
  28328. }
  28329. },
  28330. },
  28331. [
  28332. {
  28333. name: "Normal",
  28334. height: math.unit(6 + 2 / 12, "feet"),
  28335. default: true
  28336. },
  28337. {
  28338. name: "Macro",
  28339. height: math.unit(100, "feet")
  28340. },
  28341. {
  28342. name: "Macro²",
  28343. height: math.unit(1600, "feet")
  28344. },
  28345. {
  28346. name: "Planetary",
  28347. height: math.unit(20, "earths")
  28348. },
  28349. ]
  28350. ))
  28351. characterMakers.push(() => makeCharacter(
  28352. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28353. {
  28354. front: {
  28355. height: math.unit(6, "feet"),
  28356. weight: math.unit(150, "lb"),
  28357. name: "Front",
  28358. image: {
  28359. source: "./media/characters/hadjet/front.svg",
  28360. extra: 1480 / 1346,
  28361. bottom: 26 / 1506
  28362. }
  28363. },
  28364. frontNsfw: {
  28365. height: math.unit(6, "feet"),
  28366. weight: math.unit(150, "lb"),
  28367. name: "Front (NSFW)",
  28368. image: {
  28369. source: "./media/characters/hadjet/front-nsfw.svg",
  28370. extra: 1440 / 1358,
  28371. bottom: 52 / 1492
  28372. }
  28373. },
  28374. },
  28375. [
  28376. {
  28377. name: "Macro",
  28378. height: math.unit(10, "stories"),
  28379. default: true
  28380. },
  28381. {
  28382. name: "Megamacro",
  28383. height: math.unit(1.5, "miles")
  28384. },
  28385. {
  28386. name: "Megamacro+",
  28387. height: math.unit(5, "miles")
  28388. },
  28389. ]
  28390. ))
  28391. characterMakers.push(() => makeCharacter(
  28392. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28393. {
  28394. side: {
  28395. height: math.unit(106, "feet"),
  28396. weight: math.unit(500, "tonnes"),
  28397. name: "Side",
  28398. image: {
  28399. source: "./media/characters/kodran/side.svg",
  28400. extra: 553 / 480,
  28401. bottom: 33 / 586
  28402. }
  28403. },
  28404. front: {
  28405. height: math.unit(132, "feet"),
  28406. weight: math.unit(500, "tonnes"),
  28407. name: "Front",
  28408. image: {
  28409. source: "./media/characters/kodran/front.svg",
  28410. extra: 667 / 643,
  28411. bottom: 42 / 709
  28412. }
  28413. },
  28414. flying: {
  28415. height: math.unit(350, "feet"),
  28416. weight: math.unit(500, "tonnes"),
  28417. name: "Flying",
  28418. image: {
  28419. source: "./media/characters/kodran/flying.svg"
  28420. }
  28421. },
  28422. foot: {
  28423. height: math.unit(33, "feet"),
  28424. name: "Foot",
  28425. image: {
  28426. source: "./media/characters/kodran/foot.svg"
  28427. }
  28428. },
  28429. footFront: {
  28430. height: math.unit(19, "feet"),
  28431. name: "Foot (Front)",
  28432. image: {
  28433. source: "./media/characters/kodran/foot-front.svg",
  28434. extra: 261 / 261,
  28435. bottom: 91 / 352
  28436. }
  28437. },
  28438. headFront: {
  28439. height: math.unit(53, "feet"),
  28440. name: "Head (Front)",
  28441. image: {
  28442. source: "./media/characters/kodran/head-front.svg"
  28443. }
  28444. },
  28445. headSide: {
  28446. height: math.unit(65, "feet"),
  28447. name: "Head (Side)",
  28448. image: {
  28449. source: "./media/characters/kodran/head-side.svg"
  28450. }
  28451. },
  28452. throat: {
  28453. height: math.unit(79, "feet"),
  28454. name: "Throat",
  28455. image: {
  28456. source: "./media/characters/kodran/throat.svg"
  28457. }
  28458. },
  28459. },
  28460. [
  28461. {
  28462. name: "Large",
  28463. height: math.unit(106, "feet"),
  28464. default: true
  28465. },
  28466. ]
  28467. ))
  28468. characterMakers.push(() => makeCharacter(
  28469. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28470. {
  28471. side: {
  28472. height: math.unit(11, "feet"),
  28473. weight: math.unit(150, "lb"),
  28474. name: "Side",
  28475. image: {
  28476. source: "./media/characters/pyxaron/side.svg",
  28477. extra: 305 / 195,
  28478. bottom: 17 / 322
  28479. }
  28480. },
  28481. },
  28482. [
  28483. {
  28484. name: "Normal",
  28485. height: math.unit(11, "feet"),
  28486. default: true
  28487. },
  28488. ]
  28489. ))
  28490. characterMakers.push(() => makeCharacter(
  28491. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28492. {
  28493. front: {
  28494. height: math.unit(6, "feet"),
  28495. weight: math.unit(150, "lb"),
  28496. name: "Front",
  28497. image: {
  28498. source: "./media/characters/meep/front.svg",
  28499. extra: 88 / 80,
  28500. bottom: 6 / 94
  28501. }
  28502. },
  28503. },
  28504. [
  28505. {
  28506. name: "Fun Sized",
  28507. height: math.unit(2, "inches"),
  28508. default: true
  28509. },
  28510. {
  28511. name: "Friend Sized",
  28512. height: math.unit(8, "inches")
  28513. },
  28514. ]
  28515. ))
  28516. characterMakers.push(() => makeCharacter(
  28517. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28518. {
  28519. front: {
  28520. height: math.unit(15, "feet"),
  28521. weight: math.unit(2500, "lb"),
  28522. name: "Front",
  28523. image: {
  28524. source: "./media/characters/holly-rabbit/front.svg",
  28525. extra: 1433 / 1233,
  28526. bottom: 125 / 1558
  28527. }
  28528. },
  28529. dick: {
  28530. height: math.unit(4.6, "feet"),
  28531. name: "Dick",
  28532. image: {
  28533. source: "./media/characters/holly-rabbit/dick.svg"
  28534. }
  28535. },
  28536. },
  28537. [
  28538. {
  28539. name: "Normal",
  28540. height: math.unit(15, "feet"),
  28541. default: true
  28542. },
  28543. {
  28544. name: "Macro",
  28545. height: math.unit(250, "feet")
  28546. },
  28547. {
  28548. name: "Macro+",
  28549. height: math.unit(2500, "feet")
  28550. },
  28551. ]
  28552. ))
  28553. characterMakers.push(() => makeCharacter(
  28554. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28555. {
  28556. front: {
  28557. height: math.unit(3.02, "meters"),
  28558. weight: math.unit(500, "kg"),
  28559. name: "Front",
  28560. image: {
  28561. source: "./media/characters/drena/front.svg",
  28562. extra: 282 / 243,
  28563. bottom: 8 / 290
  28564. }
  28565. },
  28566. side: {
  28567. height: math.unit(3.02, "meters"),
  28568. weight: math.unit(500, "kg"),
  28569. name: "Side",
  28570. image: {
  28571. source: "./media/characters/drena/side.svg",
  28572. extra: 280 / 245,
  28573. bottom: 10 / 290
  28574. }
  28575. },
  28576. back: {
  28577. height: math.unit(3.02, "meters"),
  28578. weight: math.unit(500, "kg"),
  28579. name: "Back",
  28580. image: {
  28581. source: "./media/characters/drena/back.svg",
  28582. extra: 278 / 243,
  28583. bottom: 2 / 280
  28584. }
  28585. },
  28586. foot: {
  28587. height: math.unit(0.75, "meters"),
  28588. name: "Foot",
  28589. image: {
  28590. source: "./media/characters/drena/foot.svg"
  28591. }
  28592. },
  28593. maw: {
  28594. height: math.unit(0.82, "meters"),
  28595. name: "Maw",
  28596. image: {
  28597. source: "./media/characters/drena/maw.svg"
  28598. }
  28599. },
  28600. rump: {
  28601. height: math.unit(0.93, "meters"),
  28602. name: "Rump",
  28603. image: {
  28604. source: "./media/characters/drena/rump.svg"
  28605. }
  28606. },
  28607. },
  28608. [
  28609. {
  28610. name: "Normal",
  28611. height: math.unit(3.02, "meters"),
  28612. default: true
  28613. },
  28614. ]
  28615. ))
  28616. characterMakers.push(() => makeCharacter(
  28617. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28618. {
  28619. front: {
  28620. height: math.unit(6 + 4 / 12, "feet"),
  28621. weight: math.unit(250, "lb"),
  28622. name: "Front",
  28623. image: {
  28624. source: "./media/characters/remmyzilla/front.svg",
  28625. extra: 4033 / 3588,
  28626. bottom: 123 / 4156
  28627. }
  28628. },
  28629. back: {
  28630. height: math.unit(6 + 4 / 12, "feet"),
  28631. weight: math.unit(250, "lb"),
  28632. name: "Back",
  28633. image: {
  28634. source: "./media/characters/remmyzilla/back.svg",
  28635. extra: 2687 / 2555,
  28636. bottom: 48 / 2735
  28637. }
  28638. },
  28639. paw: {
  28640. height: math.unit(1.73, "feet"),
  28641. name: "Paw",
  28642. image: {
  28643. source: "./media/characters/remmyzilla/paw.svg"
  28644. }
  28645. },
  28646. maw: {
  28647. height: math.unit(1.73, "feet"),
  28648. name: "Maw",
  28649. image: {
  28650. source: "./media/characters/remmyzilla/maw.svg"
  28651. }
  28652. },
  28653. },
  28654. [
  28655. {
  28656. name: "Normal",
  28657. height: math.unit(6 + 4 / 12, "feet")
  28658. },
  28659. {
  28660. name: "Minimacro",
  28661. height: math.unit(12 + 8 / 12, "feet")
  28662. },
  28663. {
  28664. name: "Normal",
  28665. height: math.unit(640, "feet"),
  28666. default: true
  28667. },
  28668. {
  28669. name: "Megamacro",
  28670. height: math.unit(6400, "feet")
  28671. },
  28672. {
  28673. name: "Gigamacro",
  28674. height: math.unit(64000, "miles")
  28675. },
  28676. ]
  28677. ))
  28678. characterMakers.push(() => makeCharacter(
  28679. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28680. {
  28681. front: {
  28682. height: math.unit(2.5, "meters"),
  28683. weight: math.unit(300, "lb"),
  28684. name: "Front",
  28685. image: {
  28686. source: "./media/characters/lawrence/front.svg",
  28687. extra: 357 / 335,
  28688. bottom: 30 / 387
  28689. }
  28690. },
  28691. back: {
  28692. height: math.unit(2.5, "meters"),
  28693. weight: math.unit(300, "lb"),
  28694. name: "Back",
  28695. image: {
  28696. source: "./media/characters/lawrence/back.svg",
  28697. extra: 357 / 338,
  28698. bottom: 16 / 373
  28699. }
  28700. },
  28701. head: {
  28702. height: math.unit(0.9, "meter"),
  28703. name: "Head",
  28704. image: {
  28705. source: "./media/characters/lawrence/head.svg"
  28706. }
  28707. },
  28708. maw: {
  28709. height: math.unit(0.7, "meter"),
  28710. name: "Maw",
  28711. image: {
  28712. source: "./media/characters/lawrence/maw.svg"
  28713. }
  28714. },
  28715. footBottom: {
  28716. height: math.unit(0.5, "meter"),
  28717. name: "Foot (Bottom)",
  28718. image: {
  28719. source: "./media/characters/lawrence/foot-bottom.svg"
  28720. }
  28721. },
  28722. footTop: {
  28723. height: math.unit(0.5, "meter"),
  28724. name: "Foot (Top)",
  28725. image: {
  28726. source: "./media/characters/lawrence/foot-top.svg"
  28727. }
  28728. },
  28729. },
  28730. [
  28731. {
  28732. name: "Normal",
  28733. height: math.unit(2.5, "meters"),
  28734. default: true
  28735. },
  28736. {
  28737. name: "Macro",
  28738. height: math.unit(95, "meters")
  28739. },
  28740. {
  28741. name: "Megamacro",
  28742. height: math.unit(150, "km")
  28743. },
  28744. ]
  28745. ))
  28746. characterMakers.push(() => makeCharacter(
  28747. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28748. {
  28749. front: {
  28750. height: math.unit(4.2, "meters"),
  28751. name: "Front",
  28752. image: {
  28753. source: "./media/characters/sydney/front.svg",
  28754. extra: 1323 / 1277,
  28755. bottom: 111 / 1434
  28756. }
  28757. },
  28758. },
  28759. [
  28760. {
  28761. name: "Normal",
  28762. height: math.unit(4.2, "meters"),
  28763. default: true
  28764. },
  28765. ]
  28766. ))
  28767. characterMakers.push(() => makeCharacter(
  28768. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28769. {
  28770. back: {
  28771. height: math.unit(201, "feet"),
  28772. name: "Back",
  28773. image: {
  28774. source: "./media/characters/jessica/back.svg",
  28775. extra: 273 / 259,
  28776. bottom: 7 / 280
  28777. }
  28778. },
  28779. },
  28780. [
  28781. {
  28782. name: "Normal",
  28783. height: math.unit(201, "feet"),
  28784. default: true
  28785. },
  28786. {
  28787. name: "Megamacro",
  28788. height: math.unit(8, "miles")
  28789. },
  28790. ]
  28791. ))
  28792. characterMakers.push(() => makeCharacter(
  28793. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28794. {
  28795. side: {
  28796. height: math.unit(320, "cm"),
  28797. name: "Side",
  28798. image: {
  28799. source: "./media/characters/victoria/side.svg",
  28800. extra: 778 / 346,
  28801. bottom: 56 / 834
  28802. }
  28803. },
  28804. maw: {
  28805. height: math.unit(5.9, "feet"),
  28806. name: "Maw",
  28807. image: {
  28808. source: "./media/characters/victoria/maw.svg"
  28809. }
  28810. },
  28811. },
  28812. [
  28813. {
  28814. name: "Normal",
  28815. height: math.unit(320, "cm"),
  28816. default: true
  28817. },
  28818. ]
  28819. ))
  28820. characterMakers.push(() => makeCharacter(
  28821. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28822. {
  28823. front: {
  28824. height: math.unit(5 + 6 / 12, "feet"),
  28825. name: "Front",
  28826. image: {
  28827. source: "./media/characters/cat/front.svg",
  28828. extra: 1449/1295,
  28829. bottom: 34/1483
  28830. }
  28831. },
  28832. back: {
  28833. height: math.unit(5 + 6 / 12, "feet"),
  28834. name: "Back",
  28835. image: {
  28836. source: "./media/characters/cat/back.svg",
  28837. extra: 1466/1301,
  28838. bottom: 19/1485
  28839. }
  28840. },
  28841. taur: {
  28842. height: math.unit(7, "feet"),
  28843. name: "Taur",
  28844. image: {
  28845. source: "./media/characters/cat/taur.svg",
  28846. extra: 1389/1233,
  28847. bottom: 83/1472
  28848. }
  28849. },
  28850. lucarioFront: {
  28851. height: math.unit(4, "feet"),
  28852. name: "Lucario (Front)",
  28853. image: {
  28854. source: "./media/characters/cat/lucario-front.svg",
  28855. extra: 1149/1019,
  28856. bottom: 84/1233
  28857. }
  28858. },
  28859. lucarioBack: {
  28860. height: math.unit(4, "feet"),
  28861. name: "Lucario (Back)",
  28862. image: {
  28863. source: "./media/characters/cat/lucario-back.svg",
  28864. extra: 1190/1059,
  28865. bottom: 33/1223
  28866. }
  28867. },
  28868. megaLucario: {
  28869. height: math.unit(4, "feet"),
  28870. name: "Mega Lucario",
  28871. image: {
  28872. source: "./media/characters/cat/mega-lucario.svg",
  28873. extra: 1515 / 1319,
  28874. bottom: 63 / 1578
  28875. }
  28876. },
  28877. nickit: {
  28878. height: math.unit(2, "feet"),
  28879. name: "Nickit",
  28880. image: {
  28881. source: "./media/characters/cat/nickit.svg",
  28882. extra: 1980 / 1585,
  28883. bottom: 102 / 2082
  28884. }
  28885. },
  28886. lopunnyFront: {
  28887. height: math.unit(5, "feet"),
  28888. name: "Lopunny (Front)",
  28889. image: {
  28890. source: "./media/characters/cat/lopunny-front.svg",
  28891. extra: 1782 / 1469,
  28892. bottom: 38 / 1820
  28893. }
  28894. },
  28895. lopunnyBack: {
  28896. height: math.unit(5, "feet"),
  28897. name: "Lopunny (Back)",
  28898. image: {
  28899. source: "./media/characters/cat/lopunny-back.svg",
  28900. extra: 1660 / 1490,
  28901. bottom: 25 / 1685
  28902. }
  28903. },
  28904. },
  28905. [
  28906. {
  28907. name: "Really small",
  28908. height: math.unit(1, "nm")
  28909. },
  28910. {
  28911. name: "Micro",
  28912. height: math.unit(5, "inches")
  28913. },
  28914. {
  28915. name: "Normal",
  28916. height: math.unit(5 + 6 / 12, "feet"),
  28917. default: true
  28918. },
  28919. {
  28920. name: "Macro",
  28921. height: math.unit(50, "feet")
  28922. },
  28923. {
  28924. name: "Macro+",
  28925. height: math.unit(150, "feet")
  28926. },
  28927. {
  28928. name: "Megamacro",
  28929. height: math.unit(100, "miles")
  28930. },
  28931. ]
  28932. ))
  28933. characterMakers.push(() => makeCharacter(
  28934. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28935. {
  28936. front: {
  28937. height: math.unit(63.4, "meters"),
  28938. weight: math.unit(3.28349e+6, "kilograms"),
  28939. name: "Front",
  28940. image: {
  28941. source: "./media/characters/kirina-violet/front.svg",
  28942. extra: 2812 / 2725,
  28943. bottom: 0 / 2812
  28944. }
  28945. },
  28946. back: {
  28947. height: math.unit(63.4, "meters"),
  28948. weight: math.unit(3.28349e+6, "kilograms"),
  28949. name: "Back",
  28950. image: {
  28951. source: "./media/characters/kirina-violet/back.svg",
  28952. extra: 2812 / 2725,
  28953. bottom: 0 / 2812
  28954. }
  28955. },
  28956. mouth: {
  28957. height: math.unit(4.35, "meters"),
  28958. name: "Mouth",
  28959. image: {
  28960. source: "./media/characters/kirina-violet/mouth.svg"
  28961. }
  28962. },
  28963. paw: {
  28964. height: math.unit(5.6, "meters"),
  28965. name: "Paw",
  28966. image: {
  28967. source: "./media/characters/kirina-violet/paw.svg"
  28968. }
  28969. },
  28970. tail: {
  28971. height: math.unit(18, "meters"),
  28972. name: "Tail",
  28973. image: {
  28974. source: "./media/characters/kirina-violet/tail.svg"
  28975. }
  28976. },
  28977. },
  28978. [
  28979. {
  28980. name: "Macro",
  28981. height: math.unit(63.4, "meters"),
  28982. default: true
  28983. },
  28984. ]
  28985. ))
  28986. characterMakers.push(() => makeCharacter(
  28987. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28988. {
  28989. front: {
  28990. height: math.unit(75, "feet"),
  28991. name: "Front",
  28992. image: {
  28993. source: "./media/characters/cat-gigachu/front.svg",
  28994. extra: 1239/1027,
  28995. bottom: 32/1271
  28996. }
  28997. },
  28998. back: {
  28999. height: math.unit(75, "feet"),
  29000. name: "Back",
  29001. image: {
  29002. source: "./media/characters/cat-gigachu/back.svg",
  29003. extra: 1229/1030,
  29004. bottom: 9/1238
  29005. }
  29006. },
  29007. },
  29008. [
  29009. {
  29010. name: "Dynamax",
  29011. height: math.unit(75, "feet"),
  29012. default: true
  29013. },
  29014. ]
  29015. ))
  29016. characterMakers.push(() => makeCharacter(
  29017. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29018. {
  29019. front: {
  29020. height: math.unit(6, "feet"),
  29021. weight: math.unit(150, "lb"),
  29022. name: "Front",
  29023. image: {
  29024. source: "./media/characters/sfaiyan/front.svg",
  29025. extra: 999 / 978,
  29026. bottom: 5 / 1004
  29027. }
  29028. },
  29029. },
  29030. [
  29031. {
  29032. name: "Normal",
  29033. height: math.unit(1.82, "meters")
  29034. },
  29035. {
  29036. name: "Giant",
  29037. height: math.unit(2.27, "km"),
  29038. default: true
  29039. },
  29040. ]
  29041. ))
  29042. characterMakers.push(() => makeCharacter(
  29043. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29044. {
  29045. front: {
  29046. height: math.unit(179, "cm"),
  29047. weight: math.unit(100, "kg"),
  29048. name: "Front",
  29049. image: {
  29050. source: "./media/characters/raunehkeli/front.svg",
  29051. extra: 1934 / 1926,
  29052. bottom: 0 / 1934
  29053. }
  29054. },
  29055. },
  29056. [
  29057. {
  29058. name: "Normal",
  29059. height: math.unit(179, "cm")
  29060. },
  29061. {
  29062. name: "Maximum",
  29063. height: math.unit(575, "meters"),
  29064. default: true
  29065. },
  29066. ]
  29067. ))
  29068. characterMakers.push(() => makeCharacter(
  29069. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29070. {
  29071. front: {
  29072. height: math.unit(6, "feet"),
  29073. weight: math.unit(150, "lb"),
  29074. name: "Front",
  29075. image: {
  29076. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29077. extra: 2625 / 2518,
  29078. bottom: 60 / 2685
  29079. }
  29080. },
  29081. },
  29082. [
  29083. {
  29084. name: "Normal",
  29085. height: math.unit(6 + 2 / 12, "feet")
  29086. },
  29087. {
  29088. name: "Macro",
  29089. height: math.unit(1180, "feet"),
  29090. default: true
  29091. },
  29092. ]
  29093. ))
  29094. characterMakers.push(() => makeCharacter(
  29095. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29096. {
  29097. front: {
  29098. height: math.unit(5 + 6 / 12, "feet"),
  29099. weight: math.unit(108, "lb"),
  29100. name: "Front",
  29101. image: {
  29102. source: "./media/characters/lilith-zott/front.svg",
  29103. extra: 2510 / 2238,
  29104. bottom: 100 / 2610
  29105. }
  29106. },
  29107. frontDressed: {
  29108. height: math.unit(5 + 6 / 12, "feet"),
  29109. weight: math.unit(108, "lb"),
  29110. name: "Front (Dressed)",
  29111. image: {
  29112. source: "./media/characters/lilith-zott/front-dressed.svg",
  29113. extra: 2510 / 2238,
  29114. bottom: 100 / 2610
  29115. }
  29116. },
  29117. },
  29118. [
  29119. {
  29120. name: "Normal",
  29121. height: math.unit(5 + 6 / 12, "feet")
  29122. },
  29123. {
  29124. name: "Macro",
  29125. height: math.unit(1030, "feet"),
  29126. default: true
  29127. },
  29128. ]
  29129. ))
  29130. characterMakers.push(() => makeCharacter(
  29131. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29132. {
  29133. front: {
  29134. height: math.unit(6, "feet"),
  29135. weight: math.unit(150, "lb"),
  29136. name: "Front",
  29137. image: {
  29138. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29139. extra: 2567 / 2435,
  29140. bottom: 39 / 2606
  29141. }
  29142. },
  29143. frontSuper: {
  29144. height: math.unit(6, "feet"),
  29145. name: "Front (Super)",
  29146. image: {
  29147. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29148. extra: 2567 / 2435,
  29149. bottom: 39 / 2606
  29150. }
  29151. },
  29152. },
  29153. [
  29154. {
  29155. name: "Normal",
  29156. height: math.unit(5 + 10 / 12, "feet")
  29157. },
  29158. {
  29159. name: "Macro",
  29160. height: math.unit(1100, "feet"),
  29161. default: true
  29162. },
  29163. ]
  29164. ))
  29165. characterMakers.push(() => makeCharacter(
  29166. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29167. {
  29168. front: {
  29169. height: math.unit(100, "miles"),
  29170. name: "Front",
  29171. image: {
  29172. source: "./media/characters/sona/front.svg",
  29173. extra: 2433 / 2201,
  29174. bottom: 53 / 2486
  29175. }
  29176. },
  29177. foot: {
  29178. height: math.unit(16.1, "miles"),
  29179. name: "Foot",
  29180. image: {
  29181. source: "./media/characters/sona/foot.svg"
  29182. }
  29183. },
  29184. },
  29185. [
  29186. {
  29187. name: "Macro",
  29188. height: math.unit(100, "miles"),
  29189. default: true
  29190. },
  29191. ]
  29192. ))
  29193. characterMakers.push(() => makeCharacter(
  29194. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29195. {
  29196. front: {
  29197. height: math.unit(6, "feet"),
  29198. weight: math.unit(150, "lb"),
  29199. name: "Front",
  29200. image: {
  29201. source: "./media/characters/bailey/front.svg",
  29202. extra: 1778 / 1724,
  29203. bottom: 30 / 1808
  29204. }
  29205. },
  29206. },
  29207. [
  29208. {
  29209. name: "Micro",
  29210. height: math.unit(4, "inches")
  29211. },
  29212. {
  29213. name: "Normal",
  29214. height: math.unit(5 + 5 / 12, "feet"),
  29215. default: true
  29216. },
  29217. {
  29218. name: "Macro",
  29219. height: math.unit(250, "feet")
  29220. },
  29221. {
  29222. name: "Megamacro",
  29223. height: math.unit(100, "miles")
  29224. },
  29225. ]
  29226. ))
  29227. characterMakers.push(() => makeCharacter(
  29228. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29229. {
  29230. front: {
  29231. height: math.unit(5 + 2 / 12, "feet"),
  29232. weight: math.unit(120, "lb"),
  29233. name: "Front",
  29234. image: {
  29235. source: "./media/characters/snaps/front.svg",
  29236. extra: 2370 / 2177,
  29237. bottom: 48 / 2418
  29238. }
  29239. },
  29240. back: {
  29241. height: math.unit(5 + 2 / 12, "feet"),
  29242. weight: math.unit(120, "lb"),
  29243. name: "Back",
  29244. image: {
  29245. source: "./media/characters/snaps/back.svg",
  29246. extra: 2408 / 2258,
  29247. bottom: 15 / 2423
  29248. }
  29249. },
  29250. },
  29251. [
  29252. {
  29253. name: "Micro",
  29254. height: math.unit(9, "inches")
  29255. },
  29256. {
  29257. name: "Normal",
  29258. height: math.unit(5 + 2 / 12, "feet"),
  29259. default: true
  29260. },
  29261. {
  29262. name: "Mini Macro",
  29263. height: math.unit(10, "feet")
  29264. },
  29265. ]
  29266. ))
  29267. characterMakers.push(() => makeCharacter(
  29268. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29269. {
  29270. front: {
  29271. height: math.unit(1.8, "meters"),
  29272. weight: math.unit(85, "kg"),
  29273. name: "Front",
  29274. image: {
  29275. source: "./media/characters/azteck/front.svg",
  29276. extra: 2815 / 2625,
  29277. bottom: 89 / 2904
  29278. }
  29279. },
  29280. back: {
  29281. height: math.unit(1.8, "meters"),
  29282. weight: math.unit(85, "kg"),
  29283. name: "Back",
  29284. image: {
  29285. source: "./media/characters/azteck/back.svg",
  29286. extra: 2856 / 2648,
  29287. bottom: 85 / 2941
  29288. }
  29289. },
  29290. frontDressed: {
  29291. height: math.unit(1.8, "meters"),
  29292. weight: math.unit(85, "kg"),
  29293. name: "Front (Dressed)",
  29294. image: {
  29295. source: "./media/characters/azteck/front-dressed.svg",
  29296. extra: 2147 / 2003,
  29297. bottom: 68 / 2215
  29298. }
  29299. },
  29300. head: {
  29301. height: math.unit(0.47, "meters"),
  29302. weight: math.unit(85, "kg"),
  29303. name: "Head",
  29304. image: {
  29305. source: "./media/characters/azteck/head.svg"
  29306. }
  29307. },
  29308. },
  29309. [
  29310. {
  29311. name: "Bite sized",
  29312. height: math.unit(16, "cm")
  29313. },
  29314. {
  29315. name: "Normal",
  29316. height: math.unit(1.8, "meters"),
  29317. default: true
  29318. },
  29319. ]
  29320. ))
  29321. characterMakers.push(() => makeCharacter(
  29322. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29323. {
  29324. front: {
  29325. height: math.unit(6, "feet"),
  29326. weight: math.unit(150, "lb"),
  29327. name: "Front",
  29328. image: {
  29329. source: "./media/characters/pidge/front.svg",
  29330. extra: 620 / 588,
  29331. bottom: 9 / 629
  29332. }
  29333. },
  29334. back: {
  29335. height: math.unit(6, "feet"),
  29336. weight: math.unit(150, "lb"),
  29337. name: "Back",
  29338. image: {
  29339. source: "./media/characters/pidge/back.svg",
  29340. extra: 620 / 588,
  29341. bottom: 9 / 629
  29342. }
  29343. },
  29344. },
  29345. [
  29346. {
  29347. name: "Macro",
  29348. height: math.unit(1, "mile"),
  29349. default: true
  29350. },
  29351. ]
  29352. ))
  29353. characterMakers.push(() => makeCharacter(
  29354. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29355. {
  29356. front: {
  29357. height: math.unit(6, "feet"),
  29358. weight: math.unit(150, "lb"),
  29359. name: "Front",
  29360. image: {
  29361. source: "./media/characters/en/front.svg",
  29362. extra: 1697 / 1563,
  29363. bottom: 103 / 1800
  29364. }
  29365. },
  29366. back: {
  29367. height: math.unit(6, "feet"),
  29368. weight: math.unit(150, "lb"),
  29369. name: "Back",
  29370. image: {
  29371. source: "./media/characters/en/back.svg",
  29372. extra: 1700 / 1570,
  29373. bottom: 51 / 1751
  29374. }
  29375. },
  29376. frontDressed: {
  29377. height: math.unit(6, "feet"),
  29378. weight: math.unit(150, "lb"),
  29379. name: "Front (Dressed)",
  29380. image: {
  29381. source: "./media/characters/en/front-dressed.svg",
  29382. extra: 1697 / 1563,
  29383. bottom: 103 / 1800
  29384. }
  29385. },
  29386. backDressed: {
  29387. height: math.unit(6, "feet"),
  29388. weight: math.unit(150, "lb"),
  29389. name: "Back (Dressed)",
  29390. image: {
  29391. source: "./media/characters/en/back-dressed.svg",
  29392. extra: 1700 / 1570,
  29393. bottom: 51 / 1751
  29394. }
  29395. },
  29396. },
  29397. [
  29398. {
  29399. name: "Macro",
  29400. height: math.unit(210, "feet"),
  29401. default: true
  29402. },
  29403. ]
  29404. ))
  29405. characterMakers.push(() => makeCharacter(
  29406. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29407. {
  29408. front: {
  29409. height: math.unit(6, "feet"),
  29410. weight: math.unit(150, "lb"),
  29411. name: "Front",
  29412. image: {
  29413. source: "./media/characters/haze-orris/front.svg",
  29414. extra: 3975 / 3525,
  29415. bottom: 137 / 4112
  29416. }
  29417. },
  29418. },
  29419. [
  29420. {
  29421. name: "Micro",
  29422. height: math.unit(150, "mm"),
  29423. default: true
  29424. },
  29425. ]
  29426. ))
  29427. characterMakers.push(() => makeCharacter(
  29428. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29429. {
  29430. front: {
  29431. height: math.unit(6, "feet"),
  29432. weight: math.unit(150, "lb"),
  29433. name: "Front",
  29434. image: {
  29435. source: "./media/characters/casselene-yaro/front.svg",
  29436. extra: 4721 / 4541,
  29437. bottom: 82 / 4803
  29438. }
  29439. },
  29440. back: {
  29441. height: math.unit(6, "feet"),
  29442. weight: math.unit(150, "lb"),
  29443. name: "Back",
  29444. image: {
  29445. source: "./media/characters/casselene-yaro/back.svg",
  29446. extra: 4569 / 4377,
  29447. bottom: 69 / 4638
  29448. }
  29449. },
  29450. frontDressed: {
  29451. height: math.unit(6, "feet"),
  29452. weight: math.unit(150, "lb"),
  29453. name: "Front-dressed",
  29454. image: {
  29455. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29456. extra: 4721 / 4541,
  29457. bottom: 82 / 4803
  29458. }
  29459. },
  29460. },
  29461. [
  29462. {
  29463. name: "Macro",
  29464. height: math.unit(190, "feet"),
  29465. default: true
  29466. },
  29467. ]
  29468. ))
  29469. characterMakers.push(() => makeCharacter(
  29470. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29471. {
  29472. front: {
  29473. height: math.unit(6, "feet"),
  29474. weight: math.unit(150, "lb"),
  29475. name: "Front",
  29476. image: {
  29477. source: "./media/characters/myra-rue-delore/front.svg",
  29478. extra: 1340 / 1308,
  29479. bottom: 67 / 1407
  29480. }
  29481. },
  29482. back: {
  29483. height: math.unit(6, "feet"),
  29484. weight: math.unit(150, "lb"),
  29485. name: "Back",
  29486. image: {
  29487. source: "./media/characters/myra-rue-delore/back.svg",
  29488. extra: 1341 / 1310,
  29489. bottom: 40 / 1381
  29490. }
  29491. },
  29492. frontDressed: {
  29493. height: math.unit(6, "feet"),
  29494. weight: math.unit(150, "lb"),
  29495. name: "Front (Dressed)",
  29496. image: {
  29497. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29498. extra: 1340 / 1308,
  29499. bottom: 67 / 1407
  29500. }
  29501. },
  29502. },
  29503. [
  29504. {
  29505. name: "Macro",
  29506. height: math.unit(150, "feet"),
  29507. default: true
  29508. },
  29509. ]
  29510. ))
  29511. characterMakers.push(() => makeCharacter(
  29512. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29513. {
  29514. front: {
  29515. height: math.unit(10, "feet"),
  29516. weight: math.unit(15015, "lb"),
  29517. name: "Front",
  29518. image: {
  29519. source: "./media/characters/fem!plat/front.svg",
  29520. extra: 2799 / 2604,
  29521. bottom: 149 / 2948
  29522. }
  29523. },
  29524. },
  29525. [
  29526. {
  29527. name: "Normal",
  29528. height: math.unit(10, "feet"),
  29529. default: true
  29530. },
  29531. {
  29532. name: "Macro",
  29533. height: math.unit(100, "feet")
  29534. },
  29535. {
  29536. name: "Megamacro",
  29537. height: math.unit(1000, "feet")
  29538. },
  29539. ]
  29540. ))
  29541. characterMakers.push(() => makeCharacter(
  29542. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29543. {
  29544. front: {
  29545. height: math.unit(15 + 5 / 12, "feet"),
  29546. weight: math.unit(4600, "lb"),
  29547. name: "Front",
  29548. image: {
  29549. source: "./media/characters/neapolitan-ananassa/front.svg",
  29550. extra: 2903 / 2736,
  29551. bottom: 0 / 2903
  29552. }
  29553. },
  29554. side: {
  29555. height: math.unit(15 + 5 / 12, "feet"),
  29556. weight: math.unit(4600, "lb"),
  29557. name: "Side",
  29558. image: {
  29559. source: "./media/characters/neapolitan-ananassa/side.svg",
  29560. extra: 2925 / 2719,
  29561. bottom: 0 / 2925
  29562. }
  29563. },
  29564. back: {
  29565. height: math.unit(15 + 5 / 12, "feet"),
  29566. weight: math.unit(4600, "lb"),
  29567. name: "Back",
  29568. image: {
  29569. source: "./media/characters/neapolitan-ananassa/back.svg",
  29570. extra: 2903 / 2736,
  29571. bottom: 0 / 2903
  29572. }
  29573. },
  29574. },
  29575. [
  29576. {
  29577. name: "Normal",
  29578. height: math.unit(15 + 5 / 12, "feet"),
  29579. default: true
  29580. },
  29581. {
  29582. name: "Post-Millenium",
  29583. height: math.unit(35 + 5 / 12, "feet")
  29584. },
  29585. {
  29586. name: "Post-Era",
  29587. height: math.unit(450 + 5 / 12, "feet")
  29588. },
  29589. ]
  29590. ))
  29591. characterMakers.push(() => makeCharacter(
  29592. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29593. {
  29594. front: {
  29595. height: math.unit(300, "meters"),
  29596. weight: math.unit(125000, "tonnes"),
  29597. name: "Front",
  29598. image: {
  29599. source: "./media/characters/pazuzu/front.svg",
  29600. extra: 877 / 794,
  29601. bottom: 47 / 924
  29602. }
  29603. },
  29604. },
  29605. [
  29606. {
  29607. name: "Macro",
  29608. height: math.unit(300, "meters"),
  29609. default: true
  29610. },
  29611. ]
  29612. ))
  29613. characterMakers.push(() => makeCharacter(
  29614. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29615. {
  29616. side: {
  29617. height: math.unit(10 + 7 / 12, "feet"),
  29618. weight: math.unit(2.5, "tons"),
  29619. name: "Side",
  29620. image: {
  29621. source: "./media/characters/aasha/side.svg",
  29622. extra: 1345 / 1245,
  29623. bottom: 111 / 1456
  29624. }
  29625. },
  29626. back: {
  29627. height: math.unit(10 + 7 / 12, "feet"),
  29628. weight: math.unit(2.5, "tons"),
  29629. name: "Back",
  29630. image: {
  29631. source: "./media/characters/aasha/back.svg",
  29632. extra: 1133 / 1057,
  29633. bottom: 257 / 1390
  29634. }
  29635. },
  29636. },
  29637. [
  29638. {
  29639. name: "Normal",
  29640. height: math.unit(10 + 7 / 12, "feet"),
  29641. default: true
  29642. },
  29643. ]
  29644. ))
  29645. characterMakers.push(() => makeCharacter(
  29646. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29647. {
  29648. front: {
  29649. height: math.unit(6 + 3 / 12, "feet"),
  29650. name: "Front",
  29651. image: {
  29652. source: "./media/characters/nevan/front.svg",
  29653. extra: 704 / 704,
  29654. bottom: 28 / 732
  29655. }
  29656. },
  29657. back: {
  29658. height: math.unit(6 + 3 / 12, "feet"),
  29659. name: "Back",
  29660. image: {
  29661. source: "./media/characters/nevan/back.svg",
  29662. extra: 714 / 714,
  29663. bottom: 21 / 735
  29664. }
  29665. },
  29666. frontFlaccid: {
  29667. height: math.unit(6 + 3 / 12, "feet"),
  29668. name: "Front (Flaccid)",
  29669. image: {
  29670. source: "./media/characters/nevan/front-flaccid.svg",
  29671. extra: 704 / 704,
  29672. bottom: 28 / 732
  29673. }
  29674. },
  29675. frontErect: {
  29676. height: math.unit(6 + 3 / 12, "feet"),
  29677. name: "Front (Erect)",
  29678. image: {
  29679. source: "./media/characters/nevan/front-erect.svg",
  29680. extra: 704 / 704,
  29681. bottom: 28 / 732
  29682. }
  29683. },
  29684. backFlaccid: {
  29685. height: math.unit(6 + 3 / 12, "feet"),
  29686. name: "Back (Flaccid)",
  29687. image: {
  29688. source: "./media/characters/nevan/back-flaccid.svg",
  29689. extra: 714 / 714,
  29690. bottom: 21 / 735
  29691. }
  29692. },
  29693. },
  29694. [
  29695. {
  29696. name: "Normal",
  29697. height: math.unit(6 + 3 / 12, "feet"),
  29698. default: true
  29699. },
  29700. ]
  29701. ))
  29702. characterMakers.push(() => makeCharacter(
  29703. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29704. {
  29705. front: {
  29706. height: math.unit(4, "feet"),
  29707. name: "Front",
  29708. image: {
  29709. source: "./media/characters/arhan/front.svg",
  29710. extra: 3368 / 3133,
  29711. bottom: 0 / 3368
  29712. }
  29713. },
  29714. side: {
  29715. height: math.unit(4, "feet"),
  29716. name: "Side",
  29717. image: {
  29718. source: "./media/characters/arhan/side.svg",
  29719. extra: 3347 / 3105,
  29720. bottom: 0 / 3347
  29721. }
  29722. },
  29723. tongue: {
  29724. height: math.unit(1.42, "feet"),
  29725. name: "Tongue",
  29726. image: {
  29727. source: "./media/characters/arhan/tongue.svg"
  29728. }
  29729. },
  29730. head: {
  29731. height: math.unit(0.85, "feet"),
  29732. name: "Head",
  29733. image: {
  29734. source: "./media/characters/arhan/head.svg"
  29735. }
  29736. },
  29737. },
  29738. [
  29739. {
  29740. name: "Normal",
  29741. height: math.unit(4, "feet"),
  29742. default: true
  29743. },
  29744. ]
  29745. ))
  29746. characterMakers.push(() => makeCharacter(
  29747. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29748. {
  29749. front: {
  29750. height: math.unit(5 + 7.5 / 12, "feet"),
  29751. weight: math.unit(120, "lb"),
  29752. name: "Front",
  29753. image: {
  29754. source: "./media/characters/digi-duncan/front.svg",
  29755. extra: 330 / 326,
  29756. bottom: 16 / 346
  29757. }
  29758. },
  29759. side: {
  29760. height: math.unit(5 + 7.5 / 12, "feet"),
  29761. weight: math.unit(120, "lb"),
  29762. name: "Side",
  29763. image: {
  29764. source: "./media/characters/digi-duncan/side.svg",
  29765. extra: 341 / 337,
  29766. bottom: 1 / 342
  29767. }
  29768. },
  29769. back: {
  29770. height: math.unit(5 + 7.5 / 12, "feet"),
  29771. weight: math.unit(120, "lb"),
  29772. name: "Back",
  29773. image: {
  29774. source: "./media/characters/digi-duncan/back.svg",
  29775. extra: 330 / 326,
  29776. bottom: 12 / 342
  29777. }
  29778. },
  29779. },
  29780. [
  29781. {
  29782. name: "Speck",
  29783. height: math.unit(0.25, "mm")
  29784. },
  29785. {
  29786. name: "Micro",
  29787. height: math.unit(5, "mm")
  29788. },
  29789. {
  29790. name: "Tiny",
  29791. height: math.unit(0.5, "inches"),
  29792. default: true
  29793. },
  29794. {
  29795. name: "Human",
  29796. height: math.unit(5 + 7.5 / 12, "feet")
  29797. },
  29798. {
  29799. name: "Minigiant",
  29800. height: math.unit(8 + 5.25, "feet")
  29801. },
  29802. {
  29803. name: "Giant",
  29804. height: math.unit(2000, "feet")
  29805. },
  29806. {
  29807. name: "Mega",
  29808. height: math.unit(371.1, "miles")
  29809. },
  29810. ]
  29811. ))
  29812. characterMakers.push(() => makeCharacter(
  29813. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29814. {
  29815. front: {
  29816. height: math.unit(2, "meters"),
  29817. weight: math.unit(350, "kg"),
  29818. name: "Front",
  29819. image: {
  29820. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29821. extra: 898 / 838,
  29822. bottom: 9 / 907
  29823. }
  29824. },
  29825. },
  29826. [
  29827. {
  29828. name: "Micro",
  29829. height: math.unit(8, "meters")
  29830. },
  29831. {
  29832. name: "Normal",
  29833. height: math.unit(50, "meters"),
  29834. default: true
  29835. },
  29836. {
  29837. name: "Macro",
  29838. height: math.unit(500, "meters")
  29839. },
  29840. ]
  29841. ))
  29842. characterMakers.push(() => makeCharacter(
  29843. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29844. {
  29845. front: {
  29846. height: math.unit(6 + 6 / 12, "feet"),
  29847. name: "Front",
  29848. image: {
  29849. source: "./media/characters/khardesh/front.svg",
  29850. extra: 888 / 797,
  29851. bottom: 25 / 913
  29852. }
  29853. },
  29854. },
  29855. [
  29856. {
  29857. name: "Normal",
  29858. height: math.unit(6 + 6 / 12, "feet"),
  29859. default: true
  29860. },
  29861. {
  29862. name: "Normal+",
  29863. height: math.unit(4, "meters")
  29864. },
  29865. {
  29866. name: "Macro",
  29867. height: math.unit(50, "meters")
  29868. },
  29869. {
  29870. name: "Macro+",
  29871. height: math.unit(100, "meters")
  29872. },
  29873. {
  29874. name: "Megamacro",
  29875. height: math.unit(20, "km")
  29876. },
  29877. ]
  29878. ))
  29879. characterMakers.push(() => makeCharacter(
  29880. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29881. {
  29882. front: {
  29883. height: math.unit(6, "feet"),
  29884. weight: math.unit(150, "lb"),
  29885. name: "Front",
  29886. image: {
  29887. source: "./media/characters/kosho/front.svg",
  29888. extra: 1847 / 1847,
  29889. bottom: 86 / 1933
  29890. }
  29891. },
  29892. },
  29893. [
  29894. {
  29895. name: "Second-stage micro",
  29896. height: math.unit(0.5, "inches")
  29897. },
  29898. {
  29899. name: "First-stage micro",
  29900. height: math.unit(6, "inches")
  29901. },
  29902. {
  29903. name: "Normal",
  29904. height: math.unit(6, "feet"),
  29905. default: true
  29906. },
  29907. {
  29908. name: "First-stage macro",
  29909. height: math.unit(72, "feet")
  29910. },
  29911. {
  29912. name: "Second-stage macro",
  29913. height: math.unit(864, "feet")
  29914. },
  29915. ]
  29916. ))
  29917. characterMakers.push(() => makeCharacter(
  29918. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29919. {
  29920. normal: {
  29921. height: math.unit(4 + 6 / 12, "feet"),
  29922. name: "Normal",
  29923. image: {
  29924. source: "./media/characters/hydra/normal.svg",
  29925. extra: 2833 / 2634,
  29926. bottom: 68 / 2901
  29927. }
  29928. },
  29929. smol: {
  29930. height: math.unit(0.705, "inches"),
  29931. name: "Smol",
  29932. image: {
  29933. source: "./media/characters/hydra/smol.svg",
  29934. extra: 2715 / 2540,
  29935. bottom: 0 / 2715
  29936. }
  29937. },
  29938. },
  29939. [
  29940. {
  29941. name: "Normal",
  29942. height: math.unit(4 + 6 / 12, "feet"),
  29943. default: true
  29944. }
  29945. ]
  29946. ))
  29947. characterMakers.push(() => makeCharacter(
  29948. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29949. {
  29950. front: {
  29951. height: math.unit(0.6, "cm"),
  29952. name: "Front",
  29953. image: {
  29954. source: "./media/characters/daz/front.svg",
  29955. extra: 1682 / 1164,
  29956. bottom: 42 / 1724
  29957. }
  29958. },
  29959. },
  29960. [
  29961. {
  29962. name: "Normal",
  29963. height: math.unit(0.6, "cm"),
  29964. default: true
  29965. },
  29966. ]
  29967. ))
  29968. characterMakers.push(() => makeCharacter(
  29969. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29970. {
  29971. front: {
  29972. height: math.unit(6, "feet"),
  29973. weight: math.unit(235, "lb"),
  29974. name: "Front",
  29975. image: {
  29976. source: "./media/characters/theo-pangolin/front.svg",
  29977. extra: 1996 / 1969,
  29978. bottom: 115 / 2111
  29979. }
  29980. },
  29981. back: {
  29982. height: math.unit(6, "feet"),
  29983. weight: math.unit(235, "lb"),
  29984. name: "Back",
  29985. image: {
  29986. source: "./media/characters/theo-pangolin/back.svg",
  29987. extra: 1979 / 1979,
  29988. bottom: 40 / 2019
  29989. }
  29990. },
  29991. feral: {
  29992. height: math.unit(2, "feet"),
  29993. weight: math.unit(30, "lb"),
  29994. name: "Feral",
  29995. image: {
  29996. source: "./media/characters/theo-pangolin/feral.svg",
  29997. extra: 803 / 791,
  29998. bottom: 181 / 984
  29999. }
  30000. },
  30001. footFive: {
  30002. height: math.unit(1.43, "feet"),
  30003. name: "Foot (Five Toes)",
  30004. image: {
  30005. source: "./media/characters/theo-pangolin/foot-five.svg"
  30006. }
  30007. },
  30008. footFour: {
  30009. height: math.unit(1.43, "feet"),
  30010. name: "Foot (Four Toes)",
  30011. image: {
  30012. source: "./media/characters/theo-pangolin/foot-four.svg"
  30013. }
  30014. },
  30015. handFour: {
  30016. height: math.unit(0.81, "feet"),
  30017. name: "Hand (Four Fingers)",
  30018. image: {
  30019. source: "./media/characters/theo-pangolin/hand-four.svg"
  30020. }
  30021. },
  30022. handThree: {
  30023. height: math.unit(0.81, "feet"),
  30024. name: "Hand (Three Fingers)",
  30025. image: {
  30026. source: "./media/characters/theo-pangolin/hand-three.svg"
  30027. }
  30028. },
  30029. headFront: {
  30030. height: math.unit(1.37, "feet"),
  30031. name: "Head (Front)",
  30032. image: {
  30033. source: "./media/characters/theo-pangolin/head-front.svg"
  30034. }
  30035. },
  30036. headSide: {
  30037. height: math.unit(1.43, "feet"),
  30038. name: "Head (Side)",
  30039. image: {
  30040. source: "./media/characters/theo-pangolin/head-side.svg"
  30041. }
  30042. },
  30043. tongue: {
  30044. height: math.unit(2.29, "feet"),
  30045. name: "Tongue",
  30046. image: {
  30047. source: "./media/characters/theo-pangolin/tongue.svg"
  30048. }
  30049. },
  30050. },
  30051. [
  30052. {
  30053. name: "Normal",
  30054. height: math.unit(6, "feet")
  30055. },
  30056. {
  30057. name: "Macro",
  30058. height: math.unit(400, "feet"),
  30059. default: true
  30060. },
  30061. ]
  30062. ))
  30063. characterMakers.push(() => makeCharacter(
  30064. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30065. {
  30066. front: {
  30067. height: math.unit(6, "inches"),
  30068. weight: math.unit(0.036, "kg"),
  30069. name: "Front",
  30070. image: {
  30071. source: "./media/characters/renée/front.svg",
  30072. extra: 900 / 886,
  30073. bottom: 8 / 908
  30074. }
  30075. },
  30076. },
  30077. [
  30078. {
  30079. name: "Nano",
  30080. height: math.unit(1, "nm")
  30081. },
  30082. {
  30083. name: "Micro",
  30084. height: math.unit(1, "mm")
  30085. },
  30086. {
  30087. name: "Normal",
  30088. height: math.unit(6, "inches")
  30089. },
  30090. {
  30091. name: "Macro",
  30092. height: math.unit(2000, "feet"),
  30093. default: true
  30094. },
  30095. {
  30096. name: "Megamacro",
  30097. height: math.unit(2, "km")
  30098. },
  30099. {
  30100. name: "Gigamacro",
  30101. height: math.unit(2000, "km")
  30102. },
  30103. {
  30104. name: "Teramacro",
  30105. height: math.unit(250000, "km")
  30106. },
  30107. ]
  30108. ))
  30109. characterMakers.push(() => makeCharacter(
  30110. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30111. {
  30112. front: {
  30113. height: math.unit(4, "meters"),
  30114. weight: math.unit(150, "kg"),
  30115. name: "Front",
  30116. image: {
  30117. source: "./media/characters/caledvwlch/front.svg",
  30118. extra: 1760 / 1551,
  30119. bottom: 28 / 1788
  30120. }
  30121. },
  30122. side: {
  30123. height: math.unit(4, "meters"),
  30124. weight: math.unit(150, "kg"),
  30125. name: "Side",
  30126. image: {
  30127. source: "./media/characters/caledvwlch/side.svg",
  30128. extra: 1605 / 1536,
  30129. bottom: 31 / 1636
  30130. }
  30131. },
  30132. back: {
  30133. height: math.unit(4, "meters"),
  30134. weight: math.unit(150, "kg"),
  30135. name: "Back",
  30136. image: {
  30137. source: "./media/characters/caledvwlch/back.svg",
  30138. extra: 1635 / 1565,
  30139. bottom: 27 / 1662
  30140. }
  30141. },
  30142. },
  30143. [
  30144. {
  30145. name: "\"Incognito\"",
  30146. height: math.unit(4, "meters")
  30147. },
  30148. {
  30149. name: "Small rampage",
  30150. height: math.unit(600, "meters")
  30151. },
  30152. {
  30153. name: "Mega",
  30154. height: math.unit(30, "km")
  30155. },
  30156. {
  30157. name: "Home-size",
  30158. height: math.unit(50, "km"),
  30159. default: true
  30160. },
  30161. {
  30162. name: "Giga",
  30163. height: math.unit(300, "km")
  30164. },
  30165. {
  30166. name: "Lounging",
  30167. height: math.unit(11000, "km")
  30168. },
  30169. {
  30170. name: "Planet snacking",
  30171. height: math.unit(2000000, "km")
  30172. },
  30173. ]
  30174. ))
  30175. characterMakers.push(() => makeCharacter(
  30176. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30177. {
  30178. front: {
  30179. height: math.unit(6, "feet"),
  30180. weight: math.unit(215, "lb"),
  30181. name: "Front",
  30182. image: {
  30183. source: "./media/characters/sapphire-svell/front.svg",
  30184. extra: 495 / 455,
  30185. bottom: 20 / 515
  30186. }
  30187. },
  30188. back: {
  30189. height: math.unit(6, "feet"),
  30190. weight: math.unit(216, "lb"),
  30191. name: "Back",
  30192. image: {
  30193. source: "./media/characters/sapphire-svell/back.svg",
  30194. extra: 497 / 477,
  30195. bottom: 7 / 504
  30196. }
  30197. },
  30198. maw: {
  30199. height: math.unit(1.57, "feet"),
  30200. name: "Maw",
  30201. image: {
  30202. source: "./media/characters/sapphire-svell/maw.svg"
  30203. }
  30204. },
  30205. foot: {
  30206. height: math.unit(1.07, "feet"),
  30207. name: "Foot",
  30208. image: {
  30209. source: "./media/characters/sapphire-svell/foot.svg"
  30210. }
  30211. },
  30212. toering: {
  30213. height: math.unit(1.7, "inch"),
  30214. name: "Toering",
  30215. image: {
  30216. source: "./media/characters/sapphire-svell/toering.svg"
  30217. }
  30218. },
  30219. },
  30220. [
  30221. {
  30222. name: "Normal",
  30223. height: math.unit(300, "feet"),
  30224. default: true
  30225. },
  30226. {
  30227. name: "Augmented",
  30228. height: math.unit(1250, "feet")
  30229. },
  30230. {
  30231. name: "Unleashed",
  30232. height: math.unit(3000, "feet")
  30233. },
  30234. ]
  30235. ))
  30236. characterMakers.push(() => makeCharacter(
  30237. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30238. {
  30239. side: {
  30240. height: math.unit(2 + 3 / 12, "feet"),
  30241. weight: math.unit(110, "lb"),
  30242. name: "Side",
  30243. image: {
  30244. source: "./media/characters/glitch-flux/side.svg",
  30245. extra: 997 / 805,
  30246. bottom: 20 / 1017
  30247. }
  30248. },
  30249. },
  30250. [
  30251. {
  30252. name: "Normal",
  30253. height: math.unit(2 + 3 / 12, "feet"),
  30254. default: true
  30255. },
  30256. ]
  30257. ))
  30258. characterMakers.push(() => makeCharacter(
  30259. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30260. {
  30261. front: {
  30262. height: math.unit(4, "meters"),
  30263. name: "Front",
  30264. image: {
  30265. source: "./media/characters/mid/front.svg",
  30266. extra: 507 / 476,
  30267. bottom: 17 / 524
  30268. }
  30269. },
  30270. back: {
  30271. height: math.unit(4, "meters"),
  30272. name: "Back",
  30273. image: {
  30274. source: "./media/characters/mid/back.svg",
  30275. extra: 519 / 487,
  30276. bottom: 7 / 526
  30277. }
  30278. },
  30279. stuck: {
  30280. height: math.unit(2.2, "meters"),
  30281. name: "Stuck",
  30282. image: {
  30283. source: "./media/characters/mid/stuck.svg",
  30284. extra: 1951 / 1869,
  30285. bottom: 88 / 2039
  30286. }
  30287. }
  30288. },
  30289. [
  30290. {
  30291. name: "Normal",
  30292. height: math.unit(4, "meters"),
  30293. default: true
  30294. },
  30295. {
  30296. name: "Big",
  30297. height: math.unit(10, "meters")
  30298. },
  30299. {
  30300. name: "Macro",
  30301. height: math.unit(800, "meters")
  30302. },
  30303. {
  30304. name: "Megamacro",
  30305. height: math.unit(100, "km")
  30306. },
  30307. {
  30308. name: "Overgrown",
  30309. height: math.unit(1, "parsec")
  30310. },
  30311. ]
  30312. ))
  30313. characterMakers.push(() => makeCharacter(
  30314. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30315. {
  30316. front: {
  30317. height: math.unit(2.5, "meters"),
  30318. weight: math.unit(225, "kg"),
  30319. name: "Front",
  30320. image: {
  30321. source: "./media/characters/iris/front.svg",
  30322. extra: 3348 / 3251,
  30323. bottom: 205 / 3553
  30324. }
  30325. },
  30326. maw: {
  30327. height: math.unit(0.56, "meter"),
  30328. name: "Maw",
  30329. image: {
  30330. source: "./media/characters/iris/maw.svg"
  30331. }
  30332. },
  30333. },
  30334. [
  30335. {
  30336. name: "Mewter cat",
  30337. height: math.unit(1.2, "meters")
  30338. },
  30339. {
  30340. name: "Minimacro",
  30341. height: math.unit(2.5, "meters"),
  30342. default: true
  30343. },
  30344. {
  30345. name: "Macro",
  30346. height: math.unit(180, "meters")
  30347. },
  30348. {
  30349. name: "Megamacro",
  30350. height: math.unit(2746, "meters")
  30351. },
  30352. ]
  30353. ))
  30354. characterMakers.push(() => makeCharacter(
  30355. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30356. {
  30357. front: {
  30358. height: math.unit(6, "feet"),
  30359. weight: math.unit(135, "lb"),
  30360. name: "Front",
  30361. image: {
  30362. source: "./media/characters/axel/front.svg",
  30363. extra: 908 / 908,
  30364. bottom: 58 / 966
  30365. }
  30366. },
  30367. side: {
  30368. height: math.unit(6, "feet"),
  30369. weight: math.unit(135, "lb"),
  30370. name: "Side",
  30371. image: {
  30372. source: "./media/characters/axel/side.svg",
  30373. extra: 958 / 958,
  30374. bottom: 11 / 969
  30375. }
  30376. },
  30377. back: {
  30378. height: math.unit(6, "feet"),
  30379. weight: math.unit(135, "lb"),
  30380. name: "Back",
  30381. image: {
  30382. source: "./media/characters/axel/back.svg",
  30383. extra: 887 / 887,
  30384. bottom: 34 / 921
  30385. }
  30386. },
  30387. head: {
  30388. height: math.unit(1.07, "feet"),
  30389. name: "Head",
  30390. image: {
  30391. source: "./media/characters/axel/head.svg"
  30392. }
  30393. },
  30394. beak: {
  30395. height: math.unit(1.4, "feet"),
  30396. name: "Beak",
  30397. image: {
  30398. source: "./media/characters/axel/beak.svg"
  30399. }
  30400. },
  30401. beakSide: {
  30402. height: math.unit(1.4, "feet"),
  30403. name: "Beak Side",
  30404. image: {
  30405. source: "./media/characters/axel/beak-side.svg"
  30406. }
  30407. },
  30408. sheath: {
  30409. height: math.unit(0.5, "feet"),
  30410. name: "Sheath",
  30411. image: {
  30412. source: "./media/characters/axel/sheath.svg"
  30413. }
  30414. },
  30415. dick: {
  30416. height: math.unit(0.98, "feet"),
  30417. name: "Dick",
  30418. image: {
  30419. source: "./media/characters/axel/dick.svg"
  30420. }
  30421. },
  30422. },
  30423. [
  30424. {
  30425. name: "Macro",
  30426. height: math.unit(68, "meters"),
  30427. default: true
  30428. },
  30429. ]
  30430. ))
  30431. characterMakers.push(() => makeCharacter(
  30432. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30433. {
  30434. front: {
  30435. height: math.unit(3.5, "meters"),
  30436. weight: math.unit(1200, "kg"),
  30437. name: "Front",
  30438. image: {
  30439. source: "./media/characters/joanna/front.svg",
  30440. extra: 1596 / 1488,
  30441. bottom: 29 / 1625
  30442. }
  30443. },
  30444. back: {
  30445. height: math.unit(3.5, "meters"),
  30446. weight: math.unit(1200, "kg"),
  30447. name: "Back",
  30448. image: {
  30449. source: "./media/characters/joanna/back.svg",
  30450. extra: 1594 / 1495,
  30451. bottom: 26 / 1620
  30452. }
  30453. },
  30454. frontShorts: {
  30455. height: math.unit(3.5, "meters"),
  30456. weight: math.unit(1200, "kg"),
  30457. name: "Front (Shorts)",
  30458. image: {
  30459. source: "./media/characters/joanna/front-shorts.svg",
  30460. extra: 1596 / 1488,
  30461. bottom: 29 / 1625
  30462. }
  30463. },
  30464. frontBiker: {
  30465. height: math.unit(3.5, "meters"),
  30466. weight: math.unit(1200, "kg"),
  30467. name: "Front (Biker)",
  30468. image: {
  30469. source: "./media/characters/joanna/front-biker.svg",
  30470. extra: 1596 / 1488,
  30471. bottom: 29 / 1625
  30472. }
  30473. },
  30474. backBiker: {
  30475. height: math.unit(3.5, "meters"),
  30476. weight: math.unit(1200, "kg"),
  30477. name: "Back (Biker)",
  30478. image: {
  30479. source: "./media/characters/joanna/back-biker.svg",
  30480. extra: 1594 / 1495,
  30481. bottom: 88 / 1682
  30482. }
  30483. },
  30484. bikeLeft: {
  30485. height: math.unit(2.4, "meters"),
  30486. weight: math.unit(1600, "kg"),
  30487. name: "Bike (Left)",
  30488. image: {
  30489. source: "./media/characters/joanna/bike-left.svg",
  30490. extra: 720 / 720,
  30491. bottom: 8 / 728
  30492. }
  30493. },
  30494. bikeRight: {
  30495. height: math.unit(2.4, "meters"),
  30496. weight: math.unit(1600, "kg"),
  30497. name: "Bike (Right)",
  30498. image: {
  30499. source: "./media/characters/joanna/bike-right.svg",
  30500. extra: 720 / 720,
  30501. bottom: 8 / 728
  30502. }
  30503. },
  30504. },
  30505. [
  30506. {
  30507. name: "Incognito",
  30508. height: math.unit(3.5, "meters")
  30509. },
  30510. {
  30511. name: "Casual Big",
  30512. height: math.unit(200, "meters")
  30513. },
  30514. {
  30515. name: "Macro",
  30516. height: math.unit(600, "meters")
  30517. },
  30518. {
  30519. name: "Original",
  30520. height: math.unit(20, "km"),
  30521. default: true
  30522. },
  30523. {
  30524. name: "Giga",
  30525. height: math.unit(400, "km")
  30526. },
  30527. {
  30528. name: "Lounging",
  30529. height: math.unit(1500, "km")
  30530. },
  30531. {
  30532. name: "Planetary",
  30533. height: math.unit(200000, "km")
  30534. },
  30535. ]
  30536. ))
  30537. characterMakers.push(() => makeCharacter(
  30538. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30539. {
  30540. front: {
  30541. height: math.unit(6, "feet"),
  30542. weight: math.unit(150, "lb"),
  30543. name: "Front",
  30544. image: {
  30545. source: "./media/characters/hugo-sigil/front.svg",
  30546. extra: 522 / 500,
  30547. bottom: 2 / 524
  30548. }
  30549. },
  30550. back: {
  30551. height: math.unit(6, "feet"),
  30552. weight: math.unit(150, "lb"),
  30553. name: "Back",
  30554. image: {
  30555. source: "./media/characters/hugo-sigil/back.svg",
  30556. extra: 519 / 495,
  30557. bottom: 5 / 524
  30558. }
  30559. },
  30560. maw: {
  30561. height: math.unit(1.4, "feet"),
  30562. weight: math.unit(150, "lb"),
  30563. name: "Maw",
  30564. image: {
  30565. source: "./media/characters/hugo-sigil/maw.svg"
  30566. }
  30567. },
  30568. feet: {
  30569. height: math.unit(1.56, "feet"),
  30570. weight: math.unit(150, "lb"),
  30571. name: "Feet",
  30572. image: {
  30573. source: "./media/characters/hugo-sigil/feet.svg",
  30574. extra: 177 / 177,
  30575. bottom: 12 / 189
  30576. }
  30577. },
  30578. },
  30579. [
  30580. {
  30581. name: "Normal",
  30582. height: math.unit(6, "feet")
  30583. },
  30584. {
  30585. name: "Macro",
  30586. height: math.unit(200, "feet"),
  30587. default: true
  30588. },
  30589. ]
  30590. ))
  30591. characterMakers.push(() => makeCharacter(
  30592. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30593. {
  30594. front: {
  30595. height: math.unit(6, "feet"),
  30596. weight: math.unit(150, "lb"),
  30597. name: "Front",
  30598. image: {
  30599. source: "./media/characters/peri/front.svg",
  30600. extra: 2354 / 2233,
  30601. bottom: 49 / 2403
  30602. }
  30603. },
  30604. },
  30605. [
  30606. {
  30607. name: "Really Small",
  30608. height: math.unit(1, "nm")
  30609. },
  30610. {
  30611. name: "Micro",
  30612. height: math.unit(4, "inches")
  30613. },
  30614. {
  30615. name: "Normal",
  30616. height: math.unit(7, "inches"),
  30617. default: true
  30618. },
  30619. {
  30620. name: "Macro",
  30621. height: math.unit(400, "feet")
  30622. },
  30623. {
  30624. name: "Megamacro",
  30625. height: math.unit(100, "miles")
  30626. },
  30627. ]
  30628. ))
  30629. characterMakers.push(() => makeCharacter(
  30630. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30631. {
  30632. frontSlim: {
  30633. height: math.unit(7, "feet"),
  30634. name: "Front (Slim)",
  30635. image: {
  30636. source: "./media/characters/issilora/front-slim.svg",
  30637. extra: 529 / 449,
  30638. bottom: 53 / 582
  30639. }
  30640. },
  30641. sideSlim: {
  30642. height: math.unit(7, "feet"),
  30643. name: "Side (Slim)",
  30644. image: {
  30645. source: "./media/characters/issilora/side-slim.svg",
  30646. extra: 570 / 480,
  30647. bottom: 30 / 600
  30648. }
  30649. },
  30650. backSlim: {
  30651. height: math.unit(7, "feet"),
  30652. name: "Back (Slim)",
  30653. image: {
  30654. source: "./media/characters/issilora/back-slim.svg",
  30655. extra: 537 / 455,
  30656. bottom: 46 / 583
  30657. }
  30658. },
  30659. frontBuff: {
  30660. height: math.unit(7, "feet"),
  30661. name: "Front (Buff)",
  30662. image: {
  30663. source: "./media/characters/issilora/front-buff.svg",
  30664. extra: 2310 / 2035,
  30665. bottom: 335 / 2645
  30666. }
  30667. },
  30668. head: {
  30669. height: math.unit(1.94, "feet"),
  30670. name: "Head",
  30671. image: {
  30672. source: "./media/characters/issilora/head.svg"
  30673. }
  30674. },
  30675. },
  30676. [
  30677. {
  30678. name: "Minimum",
  30679. height: math.unit(7, "feet")
  30680. },
  30681. {
  30682. name: "Comfortable",
  30683. height: math.unit(17, "feet")
  30684. },
  30685. {
  30686. name: "Fun Size",
  30687. height: math.unit(47, "feet")
  30688. },
  30689. {
  30690. name: "Natural Macro",
  30691. height: math.unit(137, "feet"),
  30692. default: true
  30693. },
  30694. {
  30695. name: "Maximum Kaiju",
  30696. height: math.unit(397, "feet")
  30697. },
  30698. ]
  30699. ))
  30700. characterMakers.push(() => makeCharacter(
  30701. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30702. {
  30703. front: {
  30704. height: math.unit(50 + 9/12, "feet"),
  30705. weight: math.unit(32.8, "tons"),
  30706. name: "Front",
  30707. image: {
  30708. source: "./media/characters/irb'iiritaahn/front.svg",
  30709. extra: 1878/1826,
  30710. bottom: 326/2204
  30711. }
  30712. },
  30713. back: {
  30714. height: math.unit(50 + 9/12, "feet"),
  30715. weight: math.unit(32.8, "tons"),
  30716. name: "Back",
  30717. image: {
  30718. source: "./media/characters/irb'iiritaahn/back.svg",
  30719. extra: 2052/2018,
  30720. bottom: 152/2204
  30721. }
  30722. },
  30723. head: {
  30724. height: math.unit(12.86, "feet"),
  30725. name: "Head",
  30726. image: {
  30727. source: "./media/characters/irb'iiritaahn/head.svg"
  30728. }
  30729. },
  30730. maw: {
  30731. height: math.unit(9.66, "feet"),
  30732. name: "Maw",
  30733. image: {
  30734. source: "./media/characters/irb'iiritaahn/maw.svg"
  30735. }
  30736. },
  30737. frontDick: {
  30738. height: math.unit(8.78461, "feet"),
  30739. name: "Front Dick",
  30740. image: {
  30741. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30742. }
  30743. },
  30744. rearDick: {
  30745. height: math.unit(8.78461, "feet"),
  30746. name: "Rear Dick",
  30747. image: {
  30748. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30749. }
  30750. },
  30751. rearDickUnfolded: {
  30752. height: math.unit(8.78, "feet"),
  30753. name: "Rear Dick (Unfolded)",
  30754. image: {
  30755. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30756. }
  30757. },
  30758. wings: {
  30759. height: math.unit(43, "feet"),
  30760. name: "Wings",
  30761. image: {
  30762. source: "./media/characters/irb'iiritaahn/wings.svg"
  30763. }
  30764. },
  30765. },
  30766. [
  30767. {
  30768. name: "Macro",
  30769. height: math.unit(50 + 9/12, "feet"),
  30770. default: true
  30771. },
  30772. ]
  30773. ))
  30774. characterMakers.push(() => makeCharacter(
  30775. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30776. {
  30777. front: {
  30778. height: math.unit(205, "cm"),
  30779. weight: math.unit(102, "kg"),
  30780. name: "Front",
  30781. image: {
  30782. source: "./media/characters/irbisgreif/front.svg",
  30783. extra: 785/706,
  30784. bottom: 13/798
  30785. }
  30786. },
  30787. back: {
  30788. height: math.unit(205, "cm"),
  30789. weight: math.unit(102, "kg"),
  30790. name: "Back",
  30791. image: {
  30792. source: "./media/characters/irbisgreif/back.svg",
  30793. extra: 713/701,
  30794. bottom: 26/739
  30795. }
  30796. },
  30797. frontDressed: {
  30798. height: math.unit(216, "cm"),
  30799. weight: math.unit(102, "kg"),
  30800. name: "Front-dressed",
  30801. image: {
  30802. source: "./media/characters/irbisgreif/front-dressed.svg",
  30803. extra: 902/776,
  30804. bottom: 14/916
  30805. }
  30806. },
  30807. sideDressed: {
  30808. height: math.unit(195, "cm"),
  30809. weight: math.unit(102, "kg"),
  30810. name: "Side-dressed",
  30811. image: {
  30812. source: "./media/characters/irbisgreif/side-dressed.svg",
  30813. extra: 788/688,
  30814. bottom: 21/809
  30815. }
  30816. },
  30817. backDressed: {
  30818. height: math.unit(216, "cm"),
  30819. weight: math.unit(102, "kg"),
  30820. name: "Back-dressed",
  30821. image: {
  30822. source: "./media/characters/irbisgreif/back-dressed.svg",
  30823. extra: 901/783,
  30824. bottom: 10/911
  30825. }
  30826. },
  30827. dick: {
  30828. height: math.unit(0.49, "feet"),
  30829. name: "Dick",
  30830. image: {
  30831. source: "./media/characters/irbisgreif/dick.svg"
  30832. }
  30833. },
  30834. wingTop: {
  30835. height: math.unit(1.93 , "feet"),
  30836. name: "Wing-top",
  30837. image: {
  30838. source: "./media/characters/irbisgreif/wing-top.svg"
  30839. }
  30840. },
  30841. wingBottom: {
  30842. height: math.unit(1.93 , "feet"),
  30843. name: "Wing-bottom",
  30844. image: {
  30845. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30846. }
  30847. },
  30848. },
  30849. [
  30850. {
  30851. name: "Normal",
  30852. height: math.unit(216, "cm"),
  30853. default: true
  30854. },
  30855. ]
  30856. ))
  30857. characterMakers.push(() => makeCharacter(
  30858. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30859. {
  30860. front: {
  30861. height: math.unit(6, "feet"),
  30862. weight: math.unit(150, "lb"),
  30863. name: "Front",
  30864. image: {
  30865. source: "./media/characters/pride/front.svg",
  30866. extra: 1299/1230,
  30867. bottom: 18/1317
  30868. }
  30869. },
  30870. },
  30871. [
  30872. {
  30873. name: "Normal",
  30874. height: math.unit(7, "feet")
  30875. },
  30876. {
  30877. name: "Mini-macro",
  30878. height: math.unit(11, "feet")
  30879. },
  30880. {
  30881. name: "Macro",
  30882. height: math.unit(15, "meters"),
  30883. default: true
  30884. },
  30885. {
  30886. name: "Macro+",
  30887. height: math.unit(40, "meters")
  30888. },
  30889. ]
  30890. ))
  30891. characterMakers.push(() => makeCharacter(
  30892. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30893. {
  30894. front: {
  30895. height: math.unit(4 + 2 / 12, "feet"),
  30896. weight: math.unit(95, "lb"),
  30897. name: "Front",
  30898. image: {
  30899. source: "./media/characters/vaelophis-nyx/front.svg",
  30900. extra: 2532/2330,
  30901. bottom: 0/2532
  30902. }
  30903. },
  30904. back: {
  30905. height: math.unit(4 + 2 / 12, "feet"),
  30906. weight: math.unit(95, "lb"),
  30907. name: "Back",
  30908. image: {
  30909. source: "./media/characters/vaelophis-nyx/back.svg",
  30910. extra: 2484/2361,
  30911. bottom: 0/2484
  30912. }
  30913. },
  30914. feralSide: {
  30915. height: math.unit(2 + 1/12, "feet"),
  30916. weight: math.unit(20, "lb"),
  30917. name: "Feral (Side)",
  30918. image: {
  30919. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30920. extra: 1721/1581,
  30921. bottom: 70/1791
  30922. }
  30923. },
  30924. feralLazing: {
  30925. height: math.unit(1.08, "feet"),
  30926. weight: math.unit(20, "lb"),
  30927. name: "Feral (Lazing)",
  30928. image: {
  30929. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30930. extra: 822/822,
  30931. bottom: 248/1070
  30932. }
  30933. },
  30934. ear: {
  30935. height: math.unit(0.416, "feet"),
  30936. name: "Ear",
  30937. image: {
  30938. source: "./media/characters/vaelophis-nyx/ear.svg"
  30939. }
  30940. },
  30941. eye: {
  30942. height: math.unit(0.0748, "feet"),
  30943. name: "Eye",
  30944. image: {
  30945. source: "./media/characters/vaelophis-nyx/eye.svg"
  30946. }
  30947. },
  30948. mouth: {
  30949. height: math.unit(0.378, "feet"),
  30950. name: "Mouth",
  30951. image: {
  30952. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30953. }
  30954. },
  30955. spade: {
  30956. height: math.unit(0.55, "feet"),
  30957. name: "Spade",
  30958. image: {
  30959. source: "./media/characters/vaelophis-nyx/spade.svg"
  30960. }
  30961. },
  30962. },
  30963. [
  30964. {
  30965. name: "Normal",
  30966. height: math.unit(4 + 2/12, "feet"),
  30967. default: true
  30968. },
  30969. ]
  30970. ))
  30971. characterMakers.push(() => makeCharacter(
  30972. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30973. {
  30974. front: {
  30975. height: math.unit(7, "feet"),
  30976. weight: math.unit(231, "lb"),
  30977. name: "Front",
  30978. image: {
  30979. source: "./media/characters/flux/front.svg",
  30980. extra: 919/871,
  30981. bottom: 0/919
  30982. }
  30983. },
  30984. back: {
  30985. height: math.unit(7, "feet"),
  30986. weight: math.unit(231, "lb"),
  30987. name: "Back",
  30988. image: {
  30989. source: "./media/characters/flux/back.svg",
  30990. extra: 1040/992,
  30991. bottom: 0/1040
  30992. }
  30993. },
  30994. frontDressed: {
  30995. height: math.unit(7, "feet"),
  30996. weight: math.unit(231, "lb"),
  30997. name: "Front (Dressed)",
  30998. image: {
  30999. source: "./media/characters/flux/front-dressed.svg",
  31000. extra: 919/871,
  31001. bottom: 0/919
  31002. }
  31003. },
  31004. feralSide: {
  31005. height: math.unit(5, "feet"),
  31006. weight: math.unit(150, "lb"),
  31007. name: "Feral (Side)",
  31008. image: {
  31009. source: "./media/characters/flux/feral-side.svg",
  31010. extra: 598/528,
  31011. bottom: 28/626
  31012. }
  31013. },
  31014. head: {
  31015. height: math.unit(1.585, "feet"),
  31016. name: "Head",
  31017. image: {
  31018. source: "./media/characters/flux/head.svg"
  31019. }
  31020. },
  31021. headSide: {
  31022. height: math.unit(1.74, "feet"),
  31023. name: "Head (Side)",
  31024. image: {
  31025. source: "./media/characters/flux/head-side.svg"
  31026. }
  31027. },
  31028. headSideFire: {
  31029. height: math.unit(1.76, "feet"),
  31030. name: "Head (Side, Fire)",
  31031. image: {
  31032. source: "./media/characters/flux/head-side-fire.svg"
  31033. }
  31034. },
  31035. },
  31036. [
  31037. {
  31038. name: "Normal",
  31039. height: math.unit(7, "feet"),
  31040. default: true
  31041. },
  31042. ]
  31043. ))
  31044. characterMakers.push(() => makeCharacter(
  31045. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31046. {
  31047. front: {
  31048. height: math.unit(9, "feet"),
  31049. weight: math.unit(1012, "lb"),
  31050. name: "Front",
  31051. image: {
  31052. source: "./media/characters/ulfra-lupae/front.svg",
  31053. extra: 1083/1011,
  31054. bottom: 67/1150
  31055. }
  31056. },
  31057. },
  31058. [
  31059. {
  31060. name: "Micro",
  31061. height: math.unit(6, "inches")
  31062. },
  31063. {
  31064. name: "Socializing",
  31065. height: math.unit(6 + 5/12, "feet")
  31066. },
  31067. {
  31068. name: "Normal",
  31069. height: math.unit(9, "feet"),
  31070. default: true
  31071. },
  31072. {
  31073. name: "Macro",
  31074. height: math.unit(150, "feet")
  31075. },
  31076. ]
  31077. ))
  31078. characterMakers.push(() => makeCharacter(
  31079. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31080. {
  31081. front: {
  31082. height: math.unit(5 + 2/12, "feet"),
  31083. weight: math.unit(120, "lb"),
  31084. name: "Front",
  31085. image: {
  31086. source: "./media/characters/timber/front.svg",
  31087. extra: 2814/2705,
  31088. bottom: 181/2995
  31089. }
  31090. },
  31091. },
  31092. [
  31093. {
  31094. name: "Normal",
  31095. height: math.unit(5 + 2/12, "feet"),
  31096. default: true
  31097. },
  31098. ]
  31099. ))
  31100. characterMakers.push(() => makeCharacter(
  31101. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31102. {
  31103. front: {
  31104. height: math.unit(5 + 7/12, "feet"),
  31105. weight: math.unit(220, "lb"),
  31106. name: "Front",
  31107. image: {
  31108. source: "./media/characters/nicki/front.svg",
  31109. extra: 453/419,
  31110. bottom: 7/460
  31111. }
  31112. },
  31113. frontAlt: {
  31114. height: math.unit(5 + 7/12, "feet"),
  31115. weight: math.unit(220, "lb"),
  31116. name: "Front-alt",
  31117. image: {
  31118. source: "./media/characters/nicki/front-alt.svg",
  31119. extra: 435/411,
  31120. bottom: 12/447
  31121. }
  31122. },
  31123. back: {
  31124. height: math.unit(5 + 7/12, "feet"),
  31125. weight: math.unit(220, "lb"),
  31126. name: "Back",
  31127. image: {
  31128. source: "./media/characters/nicki/back.svg",
  31129. extra: 440/413,
  31130. bottom: 19/459
  31131. }
  31132. },
  31133. taur: {
  31134. height: math.unit(7 + 6/12, "feet"),
  31135. weight: math.unit(700, "lb"),
  31136. name: "Taur",
  31137. image: {
  31138. source: "./media/characters/nicki/taur.svg",
  31139. extra: 975/773,
  31140. bottom: 0/975
  31141. }
  31142. },
  31143. frontNsfw: {
  31144. height: math.unit(5 + 7/12, "feet"),
  31145. weight: math.unit(220, "lb"),
  31146. name: "Front (NSFW)",
  31147. image: {
  31148. source: "./media/characters/nicki/front-nsfw.svg",
  31149. extra: 453/419,
  31150. bottom: 7/460
  31151. }
  31152. },
  31153. frontNsfwAlt: {
  31154. height: math.unit(5 + 7/12, "feet"),
  31155. weight: math.unit(220, "lb"),
  31156. name: "Front (Alt, NSFW)",
  31157. image: {
  31158. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31159. extra: 435/411,
  31160. bottom: 12/447
  31161. }
  31162. },
  31163. backNsfw: {
  31164. height: math.unit(5 + 7/12, "feet"),
  31165. weight: math.unit(220, "lb"),
  31166. name: "Back (NSFW)",
  31167. image: {
  31168. source: "./media/characters/nicki/back-nsfw.svg",
  31169. extra: 440/413,
  31170. bottom: 19/459
  31171. }
  31172. },
  31173. head: {
  31174. height: math.unit(2.1, "feet"),
  31175. name: "Head",
  31176. image: {
  31177. source: "./media/characters/nicki/head.svg"
  31178. }
  31179. },
  31180. paw: {
  31181. height: math.unit(1.88, "feet"),
  31182. name: "Paw",
  31183. image: {
  31184. source: "./media/characters/nicki/paw.svg"
  31185. }
  31186. },
  31187. },
  31188. [
  31189. {
  31190. name: "Normal",
  31191. height: math.unit(5 + 7/12, "feet"),
  31192. default: true
  31193. },
  31194. ]
  31195. ))
  31196. characterMakers.push(() => makeCharacter(
  31197. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31198. {
  31199. front: {
  31200. height: math.unit(7 + 10/12, "feet"),
  31201. weight: math.unit(3.5, "tons"),
  31202. name: "Front",
  31203. image: {
  31204. source: "./media/characters/lee/front.svg",
  31205. extra: 1773/1615,
  31206. bottom: 86/1859
  31207. }
  31208. },
  31209. hand: {
  31210. height: math.unit(1.78, "feet"),
  31211. name: "Hand",
  31212. image: {
  31213. source: "./media/characters/lee/hand.svg"
  31214. }
  31215. },
  31216. maw: {
  31217. height: math.unit(1.18, "feet"),
  31218. name: "Maw",
  31219. image: {
  31220. source: "./media/characters/lee/maw.svg"
  31221. }
  31222. },
  31223. },
  31224. [
  31225. {
  31226. name: "Normal",
  31227. height: math.unit(7 + 10/12, "feet"),
  31228. default: true
  31229. },
  31230. ]
  31231. ))
  31232. characterMakers.push(() => makeCharacter(
  31233. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31234. {
  31235. front: {
  31236. height: math.unit(9, "feet"),
  31237. name: "Front",
  31238. image: {
  31239. source: "./media/characters/guti/front.svg",
  31240. extra: 4551/4355,
  31241. bottom: 123/4674
  31242. }
  31243. },
  31244. tongue: {
  31245. height: math.unit(1, "feet"),
  31246. name: "Tongue",
  31247. image: {
  31248. source: "./media/characters/guti/tongue.svg"
  31249. }
  31250. },
  31251. paw: {
  31252. height: math.unit(1.18, "feet"),
  31253. name: "Paw",
  31254. image: {
  31255. source: "./media/characters/guti/paw.svg"
  31256. }
  31257. },
  31258. },
  31259. [
  31260. {
  31261. name: "Normal",
  31262. height: math.unit(9, "feet"),
  31263. default: true
  31264. },
  31265. ]
  31266. ))
  31267. characterMakers.push(() => makeCharacter(
  31268. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31269. {
  31270. side: {
  31271. height: math.unit(5, "meters"),
  31272. name: "Side",
  31273. image: {
  31274. source: "./media/characters/vesper/side.svg",
  31275. extra: 1605/1518,
  31276. bottom: 0/1605
  31277. }
  31278. },
  31279. },
  31280. [
  31281. {
  31282. name: "Small",
  31283. height: math.unit(5, "meters")
  31284. },
  31285. {
  31286. name: "Sage",
  31287. height: math.unit(100, "meters"),
  31288. default: true
  31289. },
  31290. {
  31291. name: "Fun Size",
  31292. height: math.unit(600, "meters")
  31293. },
  31294. {
  31295. name: "Goddess",
  31296. height: math.unit(20000, "km")
  31297. },
  31298. {
  31299. name: "Maximum",
  31300. height: math.unit(5, "galaxies")
  31301. },
  31302. ]
  31303. ))
  31304. characterMakers.push(() => makeCharacter(
  31305. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31306. {
  31307. front: {
  31308. height: math.unit(6 + 3/12, "feet"),
  31309. weight: math.unit(190, "lb"),
  31310. name: "Front",
  31311. image: {
  31312. source: "./media/characters/gawain/front.svg",
  31313. extra: 2222/2139,
  31314. bottom: 90/2312
  31315. }
  31316. },
  31317. back: {
  31318. height: math.unit(6 + 3/12, "feet"),
  31319. weight: math.unit(190, "lb"),
  31320. name: "Back",
  31321. image: {
  31322. source: "./media/characters/gawain/back.svg",
  31323. extra: 2199/2111,
  31324. bottom: 73/2272
  31325. }
  31326. },
  31327. },
  31328. [
  31329. {
  31330. name: "Normal",
  31331. height: math.unit(6 + 3/12, "feet"),
  31332. default: true
  31333. },
  31334. ]
  31335. ))
  31336. characterMakers.push(() => makeCharacter(
  31337. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31338. {
  31339. side: {
  31340. height: math.unit(3.5, "meters"),
  31341. weight: math.unit(16000, "lb"),
  31342. name: "Side",
  31343. image: {
  31344. source: "./media/characters/dascalti/side.svg",
  31345. extra: 392/273,
  31346. bottom: 47/439
  31347. }
  31348. },
  31349. breath: {
  31350. height: math.unit(7.4, "feet"),
  31351. name: "Breath",
  31352. image: {
  31353. source: "./media/characters/dascalti/breath.svg"
  31354. }
  31355. },
  31356. fed: {
  31357. height: math.unit(3.6, "meters"),
  31358. weight: math.unit(16000, "lb"),
  31359. name: "Fed",
  31360. image: {
  31361. source: "./media/characters/dascalti/fed.svg",
  31362. extra: 1419/820,
  31363. bottom: 95/1514
  31364. }
  31365. },
  31366. },
  31367. [
  31368. {
  31369. name: "Normal",
  31370. height: math.unit(3.5, "meters"),
  31371. default: true
  31372. },
  31373. ]
  31374. ))
  31375. characterMakers.push(() => makeCharacter(
  31376. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31377. {
  31378. front: {
  31379. height: math.unit(3 + 5/12, "feet"),
  31380. name: "Front",
  31381. image: {
  31382. source: "./media/characters/mauve/front.svg",
  31383. extra: 1126/1033,
  31384. bottom: 65/1191
  31385. }
  31386. },
  31387. side: {
  31388. height: math.unit(3 + 5/12, "feet"),
  31389. name: "Side",
  31390. image: {
  31391. source: "./media/characters/mauve/side.svg",
  31392. extra: 1089/1001,
  31393. bottom: 29/1118
  31394. }
  31395. },
  31396. back: {
  31397. height: math.unit(3 + 5/12, "feet"),
  31398. name: "Back",
  31399. image: {
  31400. source: "./media/characters/mauve/back.svg",
  31401. extra: 1173/1053,
  31402. bottom: 109/1282
  31403. }
  31404. },
  31405. },
  31406. [
  31407. {
  31408. name: "Normal",
  31409. height: math.unit(3 + 5/12, "feet"),
  31410. default: true
  31411. },
  31412. ]
  31413. ))
  31414. characterMakers.push(() => makeCharacter(
  31415. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31416. {
  31417. front: {
  31418. height: math.unit(6 + 3/12, "feet"),
  31419. weight: math.unit(430, "lb"),
  31420. name: "Front",
  31421. image: {
  31422. source: "./media/characters/carlos/front.svg",
  31423. extra: 1964/1913,
  31424. bottom: 70/2034
  31425. }
  31426. },
  31427. },
  31428. [
  31429. {
  31430. name: "Normal",
  31431. height: math.unit(6 + 3/12, "feet"),
  31432. default: true
  31433. },
  31434. ]
  31435. ))
  31436. characterMakers.push(() => makeCharacter(
  31437. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31438. {
  31439. back: {
  31440. height: math.unit(5 + 10/12, "feet"),
  31441. weight: math.unit(200, "lb"),
  31442. name: "Back",
  31443. image: {
  31444. source: "./media/characters/jax/back.svg",
  31445. extra: 764/739,
  31446. bottom: 25/789
  31447. }
  31448. },
  31449. },
  31450. [
  31451. {
  31452. name: "Normal",
  31453. height: math.unit(5 + 10/12, "feet"),
  31454. default: true
  31455. },
  31456. ]
  31457. ))
  31458. characterMakers.push(() => makeCharacter(
  31459. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31460. {
  31461. front: {
  31462. height: math.unit(8, "feet"),
  31463. weight: math.unit(250, "lb"),
  31464. name: "Front",
  31465. image: {
  31466. source: "./media/characters/eikthynir/front.svg",
  31467. extra: 1332/1166,
  31468. bottom: 82/1414
  31469. }
  31470. },
  31471. back: {
  31472. height: math.unit(8, "feet"),
  31473. weight: math.unit(250, "lb"),
  31474. name: "Back",
  31475. image: {
  31476. source: "./media/characters/eikthynir/back.svg",
  31477. extra: 1342/1190,
  31478. bottom: 19/1361
  31479. }
  31480. },
  31481. dick: {
  31482. height: math.unit(2.35, "feet"),
  31483. name: "Dick",
  31484. image: {
  31485. source: "./media/characters/eikthynir/dick.svg"
  31486. }
  31487. },
  31488. },
  31489. [
  31490. {
  31491. name: "Normal",
  31492. height: math.unit(8, "feet"),
  31493. default: true
  31494. },
  31495. ]
  31496. ))
  31497. characterMakers.push(() => makeCharacter(
  31498. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31499. {
  31500. front: {
  31501. height: math.unit(99, "meters"),
  31502. weight: math.unit(13000, "tons"),
  31503. name: "Front",
  31504. image: {
  31505. source: "./media/characters/zlmos/front.svg",
  31506. extra: 2202/1992,
  31507. bottom: 315/2517
  31508. }
  31509. },
  31510. },
  31511. [
  31512. {
  31513. name: "Macro",
  31514. height: math.unit(99, "meters"),
  31515. default: true
  31516. },
  31517. ]
  31518. ))
  31519. characterMakers.push(() => makeCharacter(
  31520. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31521. {
  31522. front: {
  31523. height: math.unit(6 + 5/12, "feet"),
  31524. name: "Front",
  31525. image: {
  31526. source: "./media/characters/purri/front.svg",
  31527. extra: 1698/1610,
  31528. bottom: 32/1730
  31529. }
  31530. },
  31531. frontAlt: {
  31532. height: math.unit(6 + 5/12, "feet"),
  31533. name: "Front (Alt)",
  31534. image: {
  31535. source: "./media/characters/purri/front-alt.svg",
  31536. extra: 450/420,
  31537. bottom: 26/476
  31538. }
  31539. },
  31540. boots: {
  31541. height: math.unit(5.5, "feet"),
  31542. name: "Boots",
  31543. image: {
  31544. source: "./media/characters/purri/boots.svg",
  31545. extra: 905/853,
  31546. bottom: 18/923
  31547. }
  31548. },
  31549. lying: {
  31550. height: math.unit(2, "feet"),
  31551. name: "Lying",
  31552. image: {
  31553. source: "./media/characters/purri/lying.svg",
  31554. extra: 940/843,
  31555. bottom: 146/1086
  31556. }
  31557. },
  31558. devious: {
  31559. height: math.unit(1.77, "feet"),
  31560. name: "Devious",
  31561. image: {
  31562. source: "./media/characters/purri/devious.svg",
  31563. extra: 1440/1155,
  31564. bottom: 147/1587
  31565. }
  31566. },
  31567. bean: {
  31568. height: math.unit(1.94, "feet"),
  31569. name: "Bean",
  31570. image: {
  31571. source: "./media/characters/purri/bean.svg"
  31572. }
  31573. },
  31574. },
  31575. [
  31576. {
  31577. name: "Micro",
  31578. height: math.unit(1, "mm")
  31579. },
  31580. {
  31581. name: "Normal",
  31582. height: math.unit(6 + 5/12, "feet"),
  31583. default: true
  31584. },
  31585. {
  31586. name: "Macro :3c",
  31587. height: math.unit(2, "miles")
  31588. },
  31589. ]
  31590. ))
  31591. characterMakers.push(() => makeCharacter(
  31592. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31593. {
  31594. front: {
  31595. height: math.unit(6 + 2/12, "feet"),
  31596. weight: math.unit(250, "lb"),
  31597. name: "Front",
  31598. image: {
  31599. source: "./media/characters/moonlight/front.svg",
  31600. extra: 1044/908,
  31601. bottom: 56/1100
  31602. }
  31603. },
  31604. feral: {
  31605. height: math.unit(3 + 1/12, "feet"),
  31606. weight: math.unit(50, "kg"),
  31607. name: "Feral",
  31608. image: {
  31609. source: "./media/characters/moonlight/feral.svg",
  31610. extra: 3705/2791,
  31611. bottom: 145/3850
  31612. }
  31613. },
  31614. paw: {
  31615. height: math.unit(1, "feet"),
  31616. name: "Paw",
  31617. image: {
  31618. source: "./media/characters/moonlight/paw.svg"
  31619. }
  31620. },
  31621. paws: {
  31622. height: math.unit(0.98, "feet"),
  31623. name: "Paws",
  31624. image: {
  31625. source: "./media/characters/moonlight/paws.svg",
  31626. extra: 939/939,
  31627. bottom: 50/989
  31628. }
  31629. },
  31630. mouth: {
  31631. height: math.unit(0.48, "feet"),
  31632. name: "Mouth",
  31633. image: {
  31634. source: "./media/characters/moonlight/mouth.svg"
  31635. }
  31636. },
  31637. dick: {
  31638. height: math.unit(1.46, "feet"),
  31639. name: "Dick",
  31640. image: {
  31641. source: "./media/characters/moonlight/dick.svg"
  31642. }
  31643. },
  31644. },
  31645. [
  31646. {
  31647. name: "Normal",
  31648. height: math.unit(6 + 2/12, "feet"),
  31649. default: true
  31650. },
  31651. {
  31652. name: "Macro",
  31653. height: math.unit(300, "feet")
  31654. },
  31655. {
  31656. name: "Macro+",
  31657. height: math.unit(1, "mile")
  31658. },
  31659. {
  31660. name: "Mt. Moon",
  31661. height: math.unit(5, "miles")
  31662. },
  31663. {
  31664. name: "Megamacro",
  31665. height: math.unit(15, "miles")
  31666. },
  31667. ]
  31668. ))
  31669. characterMakers.push(() => makeCharacter(
  31670. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31671. {
  31672. back: {
  31673. height: math.unit(6, "feet"),
  31674. weight: math.unit(150, "lb"),
  31675. name: "Back",
  31676. image: {
  31677. source: "./media/characters/sylen/back.svg",
  31678. extra: 1335/1273,
  31679. bottom: 107/1442
  31680. }
  31681. },
  31682. },
  31683. [
  31684. {
  31685. name: "Normal",
  31686. height: math.unit(5 + 5/12, "feet")
  31687. },
  31688. {
  31689. name: "Megamacro",
  31690. height: math.unit(3, "miles"),
  31691. default: true
  31692. },
  31693. ]
  31694. ))
  31695. characterMakers.push(() => makeCharacter(
  31696. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31697. {
  31698. front: {
  31699. height: math.unit(6, "feet"),
  31700. weight: math.unit(190, "lb"),
  31701. name: "Front",
  31702. image: {
  31703. source: "./media/characters/huttser/front.svg",
  31704. extra: 1152/1058,
  31705. bottom: 23/1175
  31706. }
  31707. },
  31708. side: {
  31709. height: math.unit(6, "feet"),
  31710. weight: math.unit(190, "lb"),
  31711. name: "Side",
  31712. image: {
  31713. source: "./media/characters/huttser/side.svg",
  31714. extra: 1174/1065,
  31715. bottom: 18/1192
  31716. }
  31717. },
  31718. back: {
  31719. height: math.unit(6, "feet"),
  31720. weight: math.unit(190, "lb"),
  31721. name: "Back",
  31722. image: {
  31723. source: "./media/characters/huttser/back.svg",
  31724. extra: 1158/1056,
  31725. bottom: 12/1170
  31726. }
  31727. },
  31728. },
  31729. [
  31730. ]
  31731. ))
  31732. characterMakers.push(() => makeCharacter(
  31733. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31734. {
  31735. side: {
  31736. height: math.unit(12 + 9/12, "feet"),
  31737. weight: math.unit(15000, "lb"),
  31738. name: "Side",
  31739. image: {
  31740. source: "./media/characters/faan/side.svg",
  31741. extra: 2747/2697,
  31742. bottom: 0/2747
  31743. }
  31744. },
  31745. front: {
  31746. height: math.unit(12 + 9/12, "feet"),
  31747. weight: math.unit(15000, "lb"),
  31748. name: "Front",
  31749. image: {
  31750. source: "./media/characters/faan/front.svg",
  31751. extra: 607/571,
  31752. bottom: 24/631
  31753. }
  31754. },
  31755. head: {
  31756. height: math.unit(2.85, "feet"),
  31757. name: "Head",
  31758. image: {
  31759. source: "./media/characters/faan/head.svg"
  31760. }
  31761. },
  31762. headAlt: {
  31763. height: math.unit(3.13, "feet"),
  31764. name: "Head-alt",
  31765. image: {
  31766. source: "./media/characters/faan/head-alt.svg"
  31767. }
  31768. },
  31769. },
  31770. [
  31771. {
  31772. name: "Normal",
  31773. height: math.unit(12 + 9/12, "feet"),
  31774. default: true
  31775. },
  31776. ]
  31777. ))
  31778. characterMakers.push(() => makeCharacter(
  31779. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31780. {
  31781. front: {
  31782. height: math.unit(6, "feet"),
  31783. weight: math.unit(300, "lb"),
  31784. name: "Front",
  31785. image: {
  31786. source: "./media/characters/tanio/front.svg",
  31787. extra: 711/673,
  31788. bottom: 25/736
  31789. }
  31790. },
  31791. },
  31792. [
  31793. {
  31794. name: "Normal",
  31795. height: math.unit(6, "feet"),
  31796. default: true
  31797. },
  31798. ]
  31799. ))
  31800. characterMakers.push(() => makeCharacter(
  31801. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31802. {
  31803. front: {
  31804. height: math.unit(3, "inches"),
  31805. name: "Front",
  31806. image: {
  31807. source: "./media/characters/noboru/front.svg",
  31808. extra: 1039/932,
  31809. bottom: 18/1057
  31810. }
  31811. },
  31812. },
  31813. [
  31814. {
  31815. name: "Micro",
  31816. height: math.unit(3, "inches"),
  31817. default: true
  31818. },
  31819. ]
  31820. ))
  31821. characterMakers.push(() => makeCharacter(
  31822. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31823. {
  31824. front: {
  31825. height: math.unit(1.85, "meters"),
  31826. weight: math.unit(80, "kg"),
  31827. name: "Front",
  31828. image: {
  31829. source: "./media/characters/daniel-barrett/front.svg",
  31830. extra: 355/337,
  31831. bottom: 9/364
  31832. }
  31833. },
  31834. },
  31835. [
  31836. {
  31837. name: "Pico",
  31838. height: math.unit(0.0433, "mm")
  31839. },
  31840. {
  31841. name: "Nano",
  31842. height: math.unit(1.5, "mm")
  31843. },
  31844. {
  31845. name: "Micro",
  31846. height: math.unit(5.3, "cm"),
  31847. default: true
  31848. },
  31849. {
  31850. name: "Normal",
  31851. height: math.unit(1.85, "meters")
  31852. },
  31853. {
  31854. name: "Macro",
  31855. height: math.unit(64.7, "meters")
  31856. },
  31857. {
  31858. name: "Megamacro",
  31859. height: math.unit(2.26, "km")
  31860. },
  31861. {
  31862. name: "Gigamacro",
  31863. height: math.unit(79, "km")
  31864. },
  31865. {
  31866. name: "Teramacro",
  31867. height: math.unit(2765, "km")
  31868. },
  31869. {
  31870. name: "Petamacro",
  31871. height: math.unit(96678, "km")
  31872. },
  31873. ]
  31874. ))
  31875. characterMakers.push(() => makeCharacter(
  31876. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31877. {
  31878. front: {
  31879. height: math.unit(30, "meters"),
  31880. weight: math.unit(400, "tons"),
  31881. name: "Front",
  31882. image: {
  31883. source: "./media/characters/zeel/front.svg",
  31884. extra: 2599/2599,
  31885. bottom: 226/2825
  31886. }
  31887. },
  31888. },
  31889. [
  31890. {
  31891. name: "Macro",
  31892. height: math.unit(30, "meters"),
  31893. default: true
  31894. },
  31895. ]
  31896. ))
  31897. characterMakers.push(() => makeCharacter(
  31898. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31899. {
  31900. front: {
  31901. height: math.unit(6 + 7/12, "feet"),
  31902. weight: math.unit(210, "lb"),
  31903. name: "Front",
  31904. image: {
  31905. source: "./media/characters/tarn/front.svg",
  31906. extra: 3517/3220,
  31907. bottom: 91/3608
  31908. }
  31909. },
  31910. back: {
  31911. height: math.unit(6 + 7/12, "feet"),
  31912. weight: math.unit(210, "lb"),
  31913. name: "Back",
  31914. image: {
  31915. source: "./media/characters/tarn/back.svg",
  31916. extra: 3566/3241,
  31917. bottom: 34/3600
  31918. }
  31919. },
  31920. dick: {
  31921. height: math.unit(1.65, "feet"),
  31922. name: "Dick",
  31923. image: {
  31924. source: "./media/characters/tarn/dick.svg"
  31925. }
  31926. },
  31927. paw: {
  31928. height: math.unit(1.80, "feet"),
  31929. name: "Paw",
  31930. image: {
  31931. source: "./media/characters/tarn/paw.svg"
  31932. }
  31933. },
  31934. tongue: {
  31935. height: math.unit(0.97, "feet"),
  31936. name: "Tongue",
  31937. image: {
  31938. source: "./media/characters/tarn/tongue.svg"
  31939. }
  31940. },
  31941. },
  31942. [
  31943. {
  31944. name: "Micro",
  31945. height: math.unit(4, "inches")
  31946. },
  31947. {
  31948. name: "Normal",
  31949. height: math.unit(6 + 7/12, "feet"),
  31950. default: true
  31951. },
  31952. {
  31953. name: "Macro",
  31954. height: math.unit(300, "feet")
  31955. },
  31956. ]
  31957. ))
  31958. characterMakers.push(() => makeCharacter(
  31959. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31960. {
  31961. front: {
  31962. height: math.unit(5 + 7/12, "feet"),
  31963. weight: math.unit(80, "kg"),
  31964. name: "Front",
  31965. image: {
  31966. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31967. extra: 3023/2865,
  31968. bottom: 33/3056
  31969. }
  31970. },
  31971. back: {
  31972. height: math.unit(5 + 7/12, "feet"),
  31973. weight: math.unit(80, "kg"),
  31974. name: "Back",
  31975. image: {
  31976. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31977. extra: 3020/2886,
  31978. bottom: 30/3050
  31979. }
  31980. },
  31981. dick: {
  31982. height: math.unit(0.98, "feet"),
  31983. name: "Dick",
  31984. image: {
  31985. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31986. }
  31987. },
  31988. anatomy: {
  31989. height: math.unit(2.86, "feet"),
  31990. name: "Anatomy",
  31991. image: {
  31992. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31993. }
  31994. },
  31995. },
  31996. [
  31997. {
  31998. name: "Really Small",
  31999. height: math.unit(2, "inches")
  32000. },
  32001. {
  32002. name: "Micro",
  32003. height: math.unit(5.583, "inches")
  32004. },
  32005. {
  32006. name: "Normal",
  32007. height: math.unit(5 + 7/12, "feet"),
  32008. default: true
  32009. },
  32010. {
  32011. name: "Macro",
  32012. height: math.unit(67, "feet")
  32013. },
  32014. {
  32015. name: "Megamacro",
  32016. height: math.unit(134, "feet")
  32017. },
  32018. ]
  32019. ))
  32020. characterMakers.push(() => makeCharacter(
  32021. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32022. {
  32023. front: {
  32024. height: math.unit(9, "feet"),
  32025. weight: math.unit(120, "lb"),
  32026. name: "Front",
  32027. image: {
  32028. source: "./media/characters/sally/front.svg",
  32029. extra: 1506/1349,
  32030. bottom: 66/1572
  32031. }
  32032. },
  32033. },
  32034. [
  32035. {
  32036. name: "Normal",
  32037. height: math.unit(9, "feet"),
  32038. default: true
  32039. },
  32040. ]
  32041. ))
  32042. characterMakers.push(() => makeCharacter(
  32043. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32044. {
  32045. front: {
  32046. height: math.unit(8, "feet"),
  32047. weight: math.unit(900, "lb"),
  32048. name: "Front",
  32049. image: {
  32050. source: "./media/characters/owen/front.svg",
  32051. extra: 1761/1657,
  32052. bottom: 74/1835
  32053. }
  32054. },
  32055. side: {
  32056. height: math.unit(8, "feet"),
  32057. weight: math.unit(900, "lb"),
  32058. name: "Side",
  32059. image: {
  32060. source: "./media/characters/owen/side.svg",
  32061. extra: 1797/1734,
  32062. bottom: 30/1827
  32063. }
  32064. },
  32065. back: {
  32066. height: math.unit(8, "feet"),
  32067. weight: math.unit(900, "lb"),
  32068. name: "Back",
  32069. image: {
  32070. source: "./media/characters/owen/back.svg",
  32071. extra: 1796/1706,
  32072. bottom: 59/1855
  32073. }
  32074. },
  32075. maw: {
  32076. height: math.unit(1.76, "feet"),
  32077. name: "Maw",
  32078. image: {
  32079. source: "./media/characters/owen/maw.svg"
  32080. }
  32081. },
  32082. },
  32083. [
  32084. {
  32085. name: "Normal",
  32086. height: math.unit(8, "feet"),
  32087. default: true
  32088. },
  32089. ]
  32090. ))
  32091. characterMakers.push(() => makeCharacter(
  32092. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32093. {
  32094. front: {
  32095. height: math.unit(4, "feet"),
  32096. weight: math.unit(400, "lb"),
  32097. name: "Front",
  32098. image: {
  32099. source: "./media/characters/ryth/front.svg",
  32100. extra: 1920/1748,
  32101. bottom: 42/1962
  32102. }
  32103. },
  32104. back: {
  32105. height: math.unit(4, "feet"),
  32106. weight: math.unit(400, "lb"),
  32107. name: "Back",
  32108. image: {
  32109. source: "./media/characters/ryth/back.svg",
  32110. extra: 1897/1690,
  32111. bottom: 89/1986
  32112. }
  32113. },
  32114. mouth: {
  32115. height: math.unit(1.39, "feet"),
  32116. name: "Mouth",
  32117. image: {
  32118. source: "./media/characters/ryth/mouth.svg"
  32119. }
  32120. },
  32121. tailmaw: {
  32122. height: math.unit(1.23, "feet"),
  32123. name: "Tailmaw",
  32124. image: {
  32125. source: "./media/characters/ryth/tailmaw.svg"
  32126. }
  32127. },
  32128. goia: {
  32129. height: math.unit(4, "meters"),
  32130. weight: math.unit(10800, "lb"),
  32131. name: "Goia",
  32132. image: {
  32133. source: "./media/characters/ryth/goia.svg",
  32134. extra: 745/640,
  32135. bottom: 107/852
  32136. }
  32137. },
  32138. goiaFront: {
  32139. height: math.unit(4, "meters"),
  32140. weight: math.unit(10800, "lb"),
  32141. name: "Goia (Front)",
  32142. image: {
  32143. source: "./media/characters/ryth/goia-front.svg",
  32144. extra: 750/586,
  32145. bottom: 114/864
  32146. }
  32147. },
  32148. goiaMaw: {
  32149. height: math.unit(5.55, "feet"),
  32150. name: "Goia Maw",
  32151. image: {
  32152. source: "./media/characters/ryth/goia-maw.svg"
  32153. }
  32154. },
  32155. goiaForepaw: {
  32156. height: math.unit(3.5, "feet"),
  32157. name: "Goia Forepaw",
  32158. image: {
  32159. source: "./media/characters/ryth/goia-forepaw.svg"
  32160. }
  32161. },
  32162. goiaHindpaw: {
  32163. height: math.unit(5.55, "feet"),
  32164. name: "Goia Hindpaw",
  32165. image: {
  32166. source: "./media/characters/ryth/goia-hindpaw.svg"
  32167. }
  32168. },
  32169. },
  32170. [
  32171. {
  32172. name: "Normal",
  32173. height: math.unit(4, "feet"),
  32174. default: true
  32175. },
  32176. ]
  32177. ))
  32178. characterMakers.push(() => makeCharacter(
  32179. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32180. {
  32181. front: {
  32182. height: math.unit(7, "feet"),
  32183. weight: math.unit(180, "lb"),
  32184. name: "Front",
  32185. image: {
  32186. source: "./media/characters/necrolance/front.svg",
  32187. extra: 1062/947,
  32188. bottom: 41/1103
  32189. }
  32190. },
  32191. back: {
  32192. height: math.unit(7, "feet"),
  32193. weight: math.unit(180, "lb"),
  32194. name: "Back",
  32195. image: {
  32196. source: "./media/characters/necrolance/back.svg",
  32197. extra: 1045/984,
  32198. bottom: 14/1059
  32199. }
  32200. },
  32201. wing: {
  32202. height: math.unit(2.67, "feet"),
  32203. name: "Wing",
  32204. image: {
  32205. source: "./media/characters/necrolance/wing.svg"
  32206. }
  32207. },
  32208. },
  32209. [
  32210. {
  32211. name: "Normal",
  32212. height: math.unit(7, "feet"),
  32213. default: true
  32214. },
  32215. ]
  32216. ))
  32217. characterMakers.push(() => makeCharacter(
  32218. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32219. {
  32220. front: {
  32221. height: math.unit(76, "meters"),
  32222. weight: math.unit(30000, "tons"),
  32223. name: "Front",
  32224. image: {
  32225. source: "./media/characters/tyler/front.svg",
  32226. extra: 1640/1640,
  32227. bottom: 114/1754
  32228. }
  32229. },
  32230. },
  32231. [
  32232. {
  32233. name: "Macro",
  32234. height: math.unit(76, "meters"),
  32235. default: true
  32236. },
  32237. ]
  32238. ))
  32239. characterMakers.push(() => makeCharacter(
  32240. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32241. {
  32242. front: {
  32243. height: math.unit(4 + 11/12, "feet"),
  32244. weight: math.unit(132, "lb"),
  32245. name: "Front",
  32246. image: {
  32247. source: "./media/characters/icey/front.svg",
  32248. extra: 2750/2550,
  32249. bottom: 33/2783
  32250. }
  32251. },
  32252. back: {
  32253. height: math.unit(4 + 11/12, "feet"),
  32254. weight: math.unit(132, "lb"),
  32255. name: "Back",
  32256. image: {
  32257. source: "./media/characters/icey/back.svg",
  32258. extra: 2624/2481,
  32259. bottom: 35/2659
  32260. }
  32261. },
  32262. },
  32263. [
  32264. {
  32265. name: "Normal",
  32266. height: math.unit(4 + 11/12, "feet"),
  32267. default: true
  32268. },
  32269. ]
  32270. ))
  32271. characterMakers.push(() => makeCharacter(
  32272. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32273. {
  32274. front: {
  32275. height: math.unit(100, "feet"),
  32276. weight: math.unit(0, "lb"),
  32277. name: "Front",
  32278. image: {
  32279. source: "./media/characters/smile/front.svg",
  32280. extra: 2983/2912,
  32281. bottom: 162/3145
  32282. }
  32283. },
  32284. back: {
  32285. height: math.unit(100, "feet"),
  32286. weight: math.unit(0, "lb"),
  32287. name: "Back",
  32288. image: {
  32289. source: "./media/characters/smile/back.svg",
  32290. extra: 3143/3031,
  32291. bottom: 91/3234
  32292. }
  32293. },
  32294. head: {
  32295. height: math.unit(26.3, "feet"),
  32296. weight: math.unit(0, "lb"),
  32297. name: "Head",
  32298. image: {
  32299. source: "./media/characters/smile/head.svg"
  32300. }
  32301. },
  32302. collar: {
  32303. height: math.unit(5.3, "feet"),
  32304. weight: math.unit(0, "lb"),
  32305. name: "Collar",
  32306. image: {
  32307. source: "./media/characters/smile/collar.svg"
  32308. }
  32309. },
  32310. },
  32311. [
  32312. {
  32313. name: "Macro",
  32314. height: math.unit(100, "feet"),
  32315. default: true
  32316. },
  32317. ]
  32318. ))
  32319. characterMakers.push(() => makeCharacter(
  32320. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32321. {
  32322. dragon: {
  32323. height: math.unit(26, "feet"),
  32324. weight: math.unit(36, "tons"),
  32325. name: "Dragon",
  32326. image: {
  32327. source: "./media/characters/arimphae/dragon.svg",
  32328. extra: 1574/983,
  32329. bottom: 357/1931
  32330. }
  32331. },
  32332. drake: {
  32333. height: math.unit(9, "feet"),
  32334. weight: math.unit(1.5, "tons"),
  32335. name: "Drake",
  32336. image: {
  32337. source: "./media/characters/arimphae/drake.svg",
  32338. extra: 1120/925,
  32339. bottom: 435/1555
  32340. }
  32341. },
  32342. },
  32343. [
  32344. {
  32345. name: "Small",
  32346. height: math.unit(26*5/9, "feet")
  32347. },
  32348. {
  32349. name: "Normal",
  32350. height: math.unit(26, "feet"),
  32351. default: true
  32352. },
  32353. ]
  32354. ))
  32355. characterMakers.push(() => makeCharacter(
  32356. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32357. {
  32358. front: {
  32359. height: math.unit(8 + 9/12, "feet"),
  32360. name: "Front",
  32361. image: {
  32362. source: "./media/characters/xander/front.svg",
  32363. extra: 1237/974,
  32364. bottom: 94/1331
  32365. }
  32366. },
  32367. },
  32368. [
  32369. {
  32370. name: "Normal",
  32371. height: math.unit(8 + 9/12, "feet"),
  32372. default: true
  32373. },
  32374. {
  32375. name: "Gaze Grabber",
  32376. height: math.unit(13 + 8/12, "feet")
  32377. },
  32378. {
  32379. name: "Jaw Dropper",
  32380. height: math.unit(27, "feet")
  32381. },
  32382. {
  32383. name: "Show Stopper",
  32384. height: math.unit(136, "feet")
  32385. },
  32386. {
  32387. name: "Superstar",
  32388. height: math.unit(1.9e6, "miles")
  32389. },
  32390. ]
  32391. ))
  32392. characterMakers.push(() => makeCharacter(
  32393. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32394. {
  32395. side: {
  32396. height: math.unit(2100, "feet"),
  32397. name: "Side",
  32398. image: {
  32399. source: "./media/characters/osiris/side.svg",
  32400. extra: 1105/939,
  32401. bottom: 167/1272
  32402. }
  32403. },
  32404. },
  32405. [
  32406. {
  32407. name: "Macro",
  32408. height: math.unit(2100, "feet"),
  32409. default: true
  32410. },
  32411. ]
  32412. ))
  32413. characterMakers.push(() => makeCharacter(
  32414. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32415. {
  32416. front: {
  32417. height: math.unit(6 + 8/12, "feet"),
  32418. weight: math.unit(225, "lb"),
  32419. name: "Front",
  32420. image: {
  32421. source: "./media/characters/rhys-londe/front.svg",
  32422. extra: 2258/2141,
  32423. bottom: 188/2446
  32424. }
  32425. },
  32426. back: {
  32427. height: math.unit(6 + 8/12, "feet"),
  32428. weight: math.unit(225, "lb"),
  32429. name: "Back",
  32430. image: {
  32431. source: "./media/characters/rhys-londe/back.svg",
  32432. extra: 2237/2137,
  32433. bottom: 63/2300
  32434. }
  32435. },
  32436. frontNsfw: {
  32437. height: math.unit(6 + 8/12, "feet"),
  32438. weight: math.unit(225, "lb"),
  32439. name: "Front (NSFW)",
  32440. image: {
  32441. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32442. extra: 2258/2141,
  32443. bottom: 188/2446
  32444. }
  32445. },
  32446. backNsfw: {
  32447. height: math.unit(6 + 8/12, "feet"),
  32448. weight: math.unit(225, "lb"),
  32449. name: "Back (NSFW)",
  32450. image: {
  32451. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32452. extra: 2237/2137,
  32453. bottom: 63/2300
  32454. }
  32455. },
  32456. dick: {
  32457. height: math.unit(30, "inches"),
  32458. name: "Dick",
  32459. image: {
  32460. source: "./media/characters/rhys-londe/dick.svg"
  32461. }
  32462. },
  32463. maw: {
  32464. height: math.unit(1.6, "feet"),
  32465. name: "Maw",
  32466. image: {
  32467. source: "./media/characters/rhys-londe/maw.svg"
  32468. }
  32469. },
  32470. },
  32471. [
  32472. {
  32473. name: "Normal",
  32474. height: math.unit(6 + 8/12, "feet"),
  32475. default: true
  32476. },
  32477. ]
  32478. ))
  32479. characterMakers.push(() => makeCharacter(
  32480. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32481. {
  32482. front: {
  32483. height: math.unit(3 + 10/12, "feet"),
  32484. weight: math.unit(90, "lb"),
  32485. name: "Front",
  32486. image: {
  32487. source: "./media/characters/taivas-ensim/front.svg",
  32488. extra: 1327/1216,
  32489. bottom: 96/1423
  32490. }
  32491. },
  32492. back: {
  32493. height: math.unit(3 + 10/12, "feet"),
  32494. weight: math.unit(90, "lb"),
  32495. name: "Back",
  32496. image: {
  32497. source: "./media/characters/taivas-ensim/back.svg",
  32498. extra: 1355/1247,
  32499. bottom: 11/1366
  32500. }
  32501. },
  32502. frontNsfw: {
  32503. height: math.unit(3 + 10/12, "feet"),
  32504. weight: math.unit(90, "lb"),
  32505. name: "Front (NSFW)",
  32506. image: {
  32507. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32508. extra: 1327/1216,
  32509. bottom: 96/1423
  32510. }
  32511. },
  32512. backNsfw: {
  32513. height: math.unit(3 + 10/12, "feet"),
  32514. weight: math.unit(90, "lb"),
  32515. name: "Back (NSFW)",
  32516. image: {
  32517. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32518. extra: 1355/1247,
  32519. bottom: 11/1366
  32520. }
  32521. },
  32522. },
  32523. [
  32524. {
  32525. name: "Normal",
  32526. height: math.unit(3 + 10/12, "feet"),
  32527. default: true
  32528. },
  32529. ]
  32530. ))
  32531. characterMakers.push(() => makeCharacter(
  32532. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32533. {
  32534. front: {
  32535. height: math.unit(9 + 6/12, "feet"),
  32536. weight: math.unit(940, "lb"),
  32537. name: "Front",
  32538. image: {
  32539. source: "./media/characters/byliss/front.svg",
  32540. extra: 1327/1290,
  32541. bottom: 82/1409
  32542. }
  32543. },
  32544. back: {
  32545. height: math.unit(9 + 6/12, "feet"),
  32546. weight: math.unit(940, "lb"),
  32547. name: "Back",
  32548. image: {
  32549. source: "./media/characters/byliss/back.svg",
  32550. extra: 1376/1349,
  32551. bottom: 9/1385
  32552. }
  32553. },
  32554. frontNsfw: {
  32555. height: math.unit(9 + 6/12, "feet"),
  32556. weight: math.unit(940, "lb"),
  32557. name: "Front (NSFW)",
  32558. image: {
  32559. source: "./media/characters/byliss/front-nsfw.svg",
  32560. extra: 1327/1290,
  32561. bottom: 82/1409
  32562. }
  32563. },
  32564. backNsfw: {
  32565. height: math.unit(9 + 6/12, "feet"),
  32566. weight: math.unit(940, "lb"),
  32567. name: "Back (NSFW)",
  32568. image: {
  32569. source: "./media/characters/byliss/back-nsfw.svg",
  32570. extra: 1376/1349,
  32571. bottom: 9/1385
  32572. }
  32573. },
  32574. },
  32575. [
  32576. {
  32577. name: "Normal",
  32578. height: math.unit(9 + 6/12, "feet"),
  32579. default: true
  32580. },
  32581. ]
  32582. ))
  32583. characterMakers.push(() => makeCharacter(
  32584. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32585. {
  32586. front: {
  32587. height: math.unit(5 + 2/12, "feet"),
  32588. weight: math.unit(200, "lb"),
  32589. name: "Front",
  32590. image: {
  32591. source: "./media/characters/noraly/front.svg",
  32592. extra: 4985/4773,
  32593. bottom: 150/5135
  32594. }
  32595. },
  32596. full: {
  32597. height: math.unit(5 + 2/12, "feet"),
  32598. weight: math.unit(164, "lb"),
  32599. name: "Full",
  32600. image: {
  32601. source: "./media/characters/noraly/full.svg",
  32602. extra: 1114/1059,
  32603. bottom: 35/1149
  32604. }
  32605. },
  32606. fuller: {
  32607. height: math.unit(5 + 2/12, "feet"),
  32608. weight: math.unit(230, "lb"),
  32609. name: "Fuller",
  32610. image: {
  32611. source: "./media/characters/noraly/fuller.svg",
  32612. extra: 1114/1059,
  32613. bottom: 35/1149
  32614. }
  32615. },
  32616. fullest: {
  32617. height: math.unit(5 + 2/12, "feet"),
  32618. weight: math.unit(300, "lb"),
  32619. name: "Fullest",
  32620. image: {
  32621. source: "./media/characters/noraly/fullest.svg",
  32622. extra: 1114/1059,
  32623. bottom: 35/1149
  32624. }
  32625. },
  32626. },
  32627. [
  32628. {
  32629. name: "Normal",
  32630. height: math.unit(5 + 2/12, "feet"),
  32631. default: true
  32632. },
  32633. ]
  32634. ))
  32635. characterMakers.push(() => makeCharacter(
  32636. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32637. {
  32638. front: {
  32639. height: math.unit(5 + 2/12, "feet"),
  32640. weight: math.unit(210, "lb"),
  32641. name: "Front",
  32642. image: {
  32643. source: "./media/characters/pera/front.svg",
  32644. extra: 1560/1531,
  32645. bottom: 165/1725
  32646. }
  32647. },
  32648. back: {
  32649. height: math.unit(5 + 2/12, "feet"),
  32650. weight: math.unit(210, "lb"),
  32651. name: "Back",
  32652. image: {
  32653. source: "./media/characters/pera/back.svg",
  32654. extra: 1523/1493,
  32655. bottom: 152/1675
  32656. }
  32657. },
  32658. dick: {
  32659. height: math.unit(2.4, "feet"),
  32660. name: "Dick",
  32661. image: {
  32662. source: "./media/characters/pera/dick.svg"
  32663. }
  32664. },
  32665. },
  32666. [
  32667. {
  32668. name: "Normal",
  32669. height: math.unit(5 + 2/12, "feet"),
  32670. default: true
  32671. },
  32672. ]
  32673. ))
  32674. characterMakers.push(() => makeCharacter(
  32675. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32676. {
  32677. front: {
  32678. height: math.unit(12, "feet"),
  32679. weight: math.unit(3200, "lb"),
  32680. name: "Front",
  32681. image: {
  32682. source: "./media/characters/julian/front.svg",
  32683. extra: 2962/2701,
  32684. bottom: 184/3146
  32685. }
  32686. },
  32687. maw: {
  32688. height: math.unit(5.35, "feet"),
  32689. name: "Maw",
  32690. image: {
  32691. source: "./media/characters/julian/maw.svg"
  32692. }
  32693. },
  32694. paw: {
  32695. height: math.unit(3.07, "feet"),
  32696. name: "Paw",
  32697. image: {
  32698. source: "./media/characters/julian/paw.svg"
  32699. }
  32700. },
  32701. },
  32702. [
  32703. {
  32704. name: "Default",
  32705. height: math.unit(12, "feet"),
  32706. default: true
  32707. },
  32708. {
  32709. name: "Big",
  32710. height: math.unit(50, "feet")
  32711. },
  32712. {
  32713. name: "Really Big",
  32714. height: math.unit(1, "mile")
  32715. },
  32716. {
  32717. name: "Extremely Big",
  32718. height: math.unit(100, "miles")
  32719. },
  32720. {
  32721. name: "Planet Hugger",
  32722. height: math.unit(200, "megameters")
  32723. },
  32724. {
  32725. name: "Unreasonably Big",
  32726. height: math.unit(1e300, "meters")
  32727. },
  32728. ]
  32729. ))
  32730. characterMakers.push(() => makeCharacter(
  32731. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32732. {
  32733. solgooleo: {
  32734. height: math.unit(4, "meters"),
  32735. weight: math.unit(6000*1.5, "kg"),
  32736. volume: math.unit(6000, "liters"),
  32737. name: "Solgooleo",
  32738. image: {
  32739. source: "./media/characters/pi/solgooleo.svg",
  32740. extra: 388/331,
  32741. bottom: 29/417
  32742. }
  32743. },
  32744. },
  32745. [
  32746. {
  32747. name: "Normal",
  32748. height: math.unit(4, "meters"),
  32749. default: true
  32750. },
  32751. ]
  32752. ))
  32753. characterMakers.push(() => makeCharacter(
  32754. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32755. {
  32756. front: {
  32757. height: math.unit(8, "feet"),
  32758. weight: math.unit(4, "tons"),
  32759. name: "Front",
  32760. image: {
  32761. source: "./media/characters/shaun/front.svg",
  32762. extra: 503/495,
  32763. bottom: 20/523
  32764. }
  32765. },
  32766. back: {
  32767. height: math.unit(8, "feet"),
  32768. weight: math.unit(4, "tons"),
  32769. name: "Back",
  32770. image: {
  32771. source: "./media/characters/shaun/back.svg",
  32772. extra: 487/480,
  32773. bottom: 20/507
  32774. }
  32775. },
  32776. },
  32777. [
  32778. {
  32779. name: "Lorg",
  32780. height: math.unit(8, "feet"),
  32781. default: true
  32782. },
  32783. ]
  32784. ))
  32785. characterMakers.push(() => makeCharacter(
  32786. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32787. {
  32788. front: {
  32789. height: math.unit(7, "feet"),
  32790. name: "Front",
  32791. image: {
  32792. source: "./media/characters/sini/front.svg",
  32793. extra: 726/678,
  32794. bottom: 35/761
  32795. }
  32796. },
  32797. back: {
  32798. height: math.unit(7, "feet"),
  32799. name: "Back",
  32800. image: {
  32801. source: "./media/characters/sini/back.svg",
  32802. extra: 743/701,
  32803. bottom: 12/755
  32804. }
  32805. },
  32806. mawAnthro: {
  32807. height: math.unit(2.14, "feet"),
  32808. name: "Maw (Anthro)",
  32809. image: {
  32810. source: "./media/characters/sini/maw-anthro.svg"
  32811. }
  32812. },
  32813. dick: {
  32814. height: math.unit(1.45, "feet"),
  32815. name: "Dick (Anthro)",
  32816. image: {
  32817. source: "./media/characters/sini/dick-anthro.svg"
  32818. }
  32819. },
  32820. feral: {
  32821. height: math.unit(16, "feet"),
  32822. name: "Feral",
  32823. image: {
  32824. source: "./media/characters/sini/feral.svg",
  32825. extra: 814/605,
  32826. bottom: 11/825
  32827. }
  32828. },
  32829. mawFeral: {
  32830. height: math.unit(5.66, "feet"),
  32831. name: "Maw-feral",
  32832. image: {
  32833. source: "./media/characters/sini/maw-feral.svg"
  32834. }
  32835. },
  32836. footFeral: {
  32837. height: math.unit(5.17, "feet"),
  32838. name: "Foot-feral",
  32839. image: {
  32840. source: "./media/characters/sini/foot-feral.svg"
  32841. }
  32842. },
  32843. },
  32844. [
  32845. {
  32846. name: "Normal",
  32847. height: math.unit(7, "feet"),
  32848. default: true
  32849. },
  32850. ]
  32851. ))
  32852. characterMakers.push(() => makeCharacter(
  32853. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32854. {
  32855. side: {
  32856. height: math.unit(13, "meters"),
  32857. weight: math.unit(9072, "kg"),
  32858. name: "Side",
  32859. image: {
  32860. source: "./media/characters/raylldo/side.svg",
  32861. extra: 403/344,
  32862. bottom: 42/445
  32863. }
  32864. },
  32865. leaping: {
  32866. height: math.unit(12.3, "meters"),
  32867. weight: math.unit(9072, "kg"),
  32868. name: "Leaping",
  32869. image: {
  32870. source: "./media/characters/raylldo/leaping.svg",
  32871. extra: 470/249,
  32872. bottom: 13/483
  32873. }
  32874. },
  32875. flying: {
  32876. height: math.unit(18, "meters"),
  32877. weight: math.unit(9072, "kg"),
  32878. name: "Flying",
  32879. image: {
  32880. source: "./media/characters/raylldo/flying.svg"
  32881. }
  32882. },
  32883. head: {
  32884. height: math.unit(5.85, "meters"),
  32885. name: "Head",
  32886. image: {
  32887. source: "./media/characters/raylldo/head.svg"
  32888. }
  32889. },
  32890. maw: {
  32891. height: math.unit(5.32, "meters"),
  32892. name: "Maw",
  32893. image: {
  32894. source: "./media/characters/raylldo/maw.svg"
  32895. }
  32896. },
  32897. eye: {
  32898. height: math.unit(0.54, "meters"),
  32899. name: "Eye",
  32900. image: {
  32901. source: "./media/characters/raylldo/eye.svg"
  32902. }
  32903. },
  32904. },
  32905. [
  32906. {
  32907. name: "Normal",
  32908. height: math.unit(13, "meters"),
  32909. default: true
  32910. },
  32911. ]
  32912. ))
  32913. characterMakers.push(() => makeCharacter(
  32914. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32915. {
  32916. anthroFront: {
  32917. height: math.unit(9, "feet"),
  32918. weight: math.unit(600, "lb"),
  32919. name: "Anthro (Front)",
  32920. image: {
  32921. source: "./media/characters/glint/anthro-front.svg",
  32922. extra: 1097/1018,
  32923. bottom: 28/1125
  32924. }
  32925. },
  32926. anthroBack: {
  32927. height: math.unit(9, "feet"),
  32928. weight: math.unit(600, "lb"),
  32929. name: "Anthro (Back)",
  32930. image: {
  32931. source: "./media/characters/glint/anthro-back.svg",
  32932. extra: 1154/997,
  32933. bottom: 36/1190
  32934. }
  32935. },
  32936. feral: {
  32937. height: math.unit(11, "feet"),
  32938. weight: math.unit(50000, "lb"),
  32939. name: "Feral",
  32940. image: {
  32941. source: "./media/characters/glint/feral.svg",
  32942. extra: 3035/1585,
  32943. bottom: 1169/4204
  32944. }
  32945. },
  32946. dickAnthro: {
  32947. height: math.unit(0.7, "meters"),
  32948. name: "Dick (Anthro)",
  32949. image: {
  32950. source: "./media/characters/glint/dick-anthro.svg"
  32951. }
  32952. },
  32953. dickFeral: {
  32954. height: math.unit(2.65, "meters"),
  32955. name: "Dick (Feral)",
  32956. image: {
  32957. source: "./media/characters/glint/dick-feral.svg"
  32958. }
  32959. },
  32960. slitHidden: {
  32961. height: math.unit(5.85, "meters"),
  32962. name: "Slit (Hidden)",
  32963. image: {
  32964. source: "./media/characters/glint/slit-hidden.svg"
  32965. }
  32966. },
  32967. slitErect: {
  32968. height: math.unit(5.85, "meters"),
  32969. name: "Slit (Erect)",
  32970. image: {
  32971. source: "./media/characters/glint/slit-erect.svg"
  32972. }
  32973. },
  32974. mawAnthro: {
  32975. height: math.unit(0.63, "meters"),
  32976. name: "Maw (Anthro)",
  32977. image: {
  32978. source: "./media/characters/glint/maw.svg"
  32979. }
  32980. },
  32981. mawFeral: {
  32982. height: math.unit(2.89, "meters"),
  32983. name: "Maw (Feral)",
  32984. image: {
  32985. source: "./media/characters/glint/maw.svg"
  32986. }
  32987. },
  32988. },
  32989. [
  32990. {
  32991. name: "Normal",
  32992. height: math.unit(9, "feet"),
  32993. default: true
  32994. },
  32995. ]
  32996. ))
  32997. characterMakers.push(() => makeCharacter(
  32998. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32999. {
  33000. side: {
  33001. height: math.unit(15, "feet"),
  33002. weight: math.unit(5000, "kg"),
  33003. name: "Side",
  33004. image: {
  33005. source: "./media/characters/kairne/side.svg",
  33006. extra: 979/811,
  33007. bottom: 13/992
  33008. }
  33009. },
  33010. front: {
  33011. height: math.unit(15, "feet"),
  33012. weight: math.unit(5000, "kg"),
  33013. name: "Front",
  33014. image: {
  33015. source: "./media/characters/kairne/front.svg",
  33016. extra: 908/814,
  33017. bottom: 26/934
  33018. }
  33019. },
  33020. sideNsfw: {
  33021. height: math.unit(15, "feet"),
  33022. weight: math.unit(5000, "kg"),
  33023. name: "Side (NSFW)",
  33024. image: {
  33025. source: "./media/characters/kairne/side-nsfw.svg",
  33026. extra: 979/811,
  33027. bottom: 13/992
  33028. }
  33029. },
  33030. frontNsfw: {
  33031. height: math.unit(15, "feet"),
  33032. weight: math.unit(5000, "kg"),
  33033. name: "Front (NSFW)",
  33034. image: {
  33035. source: "./media/characters/kairne/front-nsfw.svg",
  33036. extra: 908/814,
  33037. bottom: 26/934
  33038. }
  33039. },
  33040. dickCaged: {
  33041. height: math.unit(0.65, "meters"),
  33042. name: "Dick-caged",
  33043. image: {
  33044. source: "./media/characters/kairne/dick-caged.svg"
  33045. }
  33046. },
  33047. dick: {
  33048. height: math.unit(0.79, "meters"),
  33049. name: "Dick",
  33050. image: {
  33051. source: "./media/characters/kairne/dick.svg"
  33052. }
  33053. },
  33054. genitals: {
  33055. height: math.unit(1.29, "meters"),
  33056. name: "Genitals",
  33057. image: {
  33058. source: "./media/characters/kairne/genitals.svg"
  33059. }
  33060. },
  33061. maw: {
  33062. height: math.unit(1.73, "meters"),
  33063. name: "Maw",
  33064. image: {
  33065. source: "./media/characters/kairne/maw.svg"
  33066. }
  33067. },
  33068. },
  33069. [
  33070. {
  33071. name: "Normal",
  33072. height: math.unit(15, "feet"),
  33073. default: true
  33074. },
  33075. ]
  33076. ))
  33077. characterMakers.push(() => makeCharacter(
  33078. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33079. {
  33080. front: {
  33081. height: math.unit(5 + 8/12, "feet"),
  33082. weight: math.unit(139, "lb"),
  33083. name: "Front",
  33084. image: {
  33085. source: "./media/characters/biscuit-jackal/front.svg",
  33086. extra: 2106/1961,
  33087. bottom: 58/2164
  33088. }
  33089. },
  33090. back: {
  33091. height: math.unit(5 + 8/12, "feet"),
  33092. weight: math.unit(139, "lb"),
  33093. name: "Back",
  33094. image: {
  33095. source: "./media/characters/biscuit-jackal/back.svg",
  33096. extra: 2132/1976,
  33097. bottom: 57/2189
  33098. }
  33099. },
  33100. werejackal: {
  33101. height: math.unit(6 + 3/12, "feet"),
  33102. weight: math.unit(188, "lb"),
  33103. name: "Werejackal",
  33104. image: {
  33105. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33106. extra: 2373/2178,
  33107. bottom: 53/2426
  33108. }
  33109. },
  33110. },
  33111. [
  33112. {
  33113. name: "Normal",
  33114. height: math.unit(5 + 8/12, "feet"),
  33115. default: true
  33116. },
  33117. ]
  33118. ))
  33119. characterMakers.push(() => makeCharacter(
  33120. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33121. {
  33122. front: {
  33123. height: math.unit(140, "cm"),
  33124. weight: math.unit(45, "kg"),
  33125. name: "Front",
  33126. image: {
  33127. source: "./media/characters/tayra-white/front.svg",
  33128. extra: 2229/2192,
  33129. bottom: 75/2304
  33130. }
  33131. },
  33132. },
  33133. [
  33134. {
  33135. name: "Normal",
  33136. height: math.unit(140, "cm"),
  33137. default: true
  33138. },
  33139. ]
  33140. ))
  33141. characterMakers.push(() => makeCharacter(
  33142. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33143. {
  33144. front: {
  33145. height: math.unit(4 + 5/12, "feet"),
  33146. name: "Front",
  33147. image: {
  33148. source: "./media/characters/scoop/front.svg",
  33149. extra: 1257/1136,
  33150. bottom: 69/1326
  33151. }
  33152. },
  33153. back: {
  33154. height: math.unit(4 + 5/12, "feet"),
  33155. name: "Back",
  33156. image: {
  33157. source: "./media/characters/scoop/back.svg",
  33158. extra: 1321/1152,
  33159. bottom: 32/1353
  33160. }
  33161. },
  33162. maw: {
  33163. height: math.unit(0.68, "feet"),
  33164. name: "Maw",
  33165. image: {
  33166. source: "./media/characters/scoop/maw.svg"
  33167. }
  33168. },
  33169. },
  33170. [
  33171. {
  33172. name: "Really Small",
  33173. height: math.unit(1, "mm")
  33174. },
  33175. {
  33176. name: "Micro",
  33177. height: math.unit(1, "inch")
  33178. },
  33179. {
  33180. name: "Normal",
  33181. height: math.unit(4 + 5/12, "feet"),
  33182. default: true
  33183. },
  33184. {
  33185. name: "Macro",
  33186. height: math.unit(200, "feet")
  33187. },
  33188. {
  33189. name: "Megamacro",
  33190. height: math.unit(3240, "feet")
  33191. },
  33192. {
  33193. name: "Teramacro",
  33194. height: math.unit(2500, "miles")
  33195. },
  33196. ]
  33197. ))
  33198. characterMakers.push(() => makeCharacter(
  33199. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33200. {
  33201. front: {
  33202. height: math.unit(15 + 7/12, "feet"),
  33203. name: "Front",
  33204. image: {
  33205. source: "./media/characters/saphinara/front.svg",
  33206. extra: 604/546,
  33207. bottom: 19/623
  33208. }
  33209. },
  33210. side: {
  33211. height: math.unit(15 + 7/12, "feet"),
  33212. name: "Side",
  33213. image: {
  33214. source: "./media/characters/saphinara/side.svg",
  33215. extra: 605/547,
  33216. bottom: 6/611
  33217. }
  33218. },
  33219. back: {
  33220. height: math.unit(15 + 7/12, "feet"),
  33221. name: "Back",
  33222. image: {
  33223. source: "./media/characters/saphinara/back.svg",
  33224. extra: 591/531,
  33225. bottom: 13/604
  33226. }
  33227. },
  33228. frontTail: {
  33229. height: math.unit(15 + 7/12, "feet"),
  33230. name: "Front (Full Tail)",
  33231. image: {
  33232. source: "./media/characters/saphinara/front-tail.svg",
  33233. extra: 748/547,
  33234. bottom: 66/814
  33235. }
  33236. },
  33237. },
  33238. [
  33239. {
  33240. name: "Normal",
  33241. height: math.unit(15 + 7/12, "feet"),
  33242. default: true
  33243. },
  33244. {
  33245. name: "Angry",
  33246. height: math.unit(30 + 6/12, "feet")
  33247. },
  33248. {
  33249. name: "Enraged",
  33250. height: math.unit(102 + 1/12, "feet")
  33251. },
  33252. ]
  33253. ))
  33254. characterMakers.push(() => makeCharacter(
  33255. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33256. {
  33257. front: {
  33258. height: math.unit(6 + 8/12, "feet"),
  33259. weight: math.unit(300, "lb"),
  33260. name: "Front",
  33261. image: {
  33262. source: "./media/characters/jrain/front.svg",
  33263. extra: 3039/2865,
  33264. bottom: 399/3438
  33265. }
  33266. },
  33267. back: {
  33268. height: math.unit(6 + 8/12, "feet"),
  33269. weight: math.unit(300, "lb"),
  33270. name: "Back",
  33271. image: {
  33272. source: "./media/characters/jrain/back.svg",
  33273. extra: 3089/2938,
  33274. bottom: 172/3261
  33275. }
  33276. },
  33277. head: {
  33278. height: math.unit(2.14, "feet"),
  33279. name: "Head",
  33280. image: {
  33281. source: "./media/characters/jrain/head.svg"
  33282. }
  33283. },
  33284. maw: {
  33285. height: math.unit(1.77, "feet"),
  33286. name: "Maw",
  33287. image: {
  33288. source: "./media/characters/jrain/maw.svg"
  33289. }
  33290. },
  33291. leftHand: {
  33292. height: math.unit(1.1, "feet"),
  33293. name: "Left Hand",
  33294. image: {
  33295. source: "./media/characters/jrain/left-hand.svg"
  33296. }
  33297. },
  33298. rightHand: {
  33299. height: math.unit(1.1, "feet"),
  33300. name: "Right Hand",
  33301. image: {
  33302. source: "./media/characters/jrain/right-hand.svg"
  33303. }
  33304. },
  33305. eye: {
  33306. height: math.unit(0.35, "feet"),
  33307. name: "Eye",
  33308. image: {
  33309. source: "./media/characters/jrain/eye.svg"
  33310. }
  33311. },
  33312. },
  33313. [
  33314. {
  33315. name: "Normal",
  33316. height: math.unit(6 + 8/12, "feet"),
  33317. default: true
  33318. },
  33319. {
  33320. name: "Casually Large",
  33321. height: math.unit(25, "feet")
  33322. },
  33323. {
  33324. name: "Giant",
  33325. height: math.unit(100, "feet")
  33326. },
  33327. {
  33328. name: "Kaiju",
  33329. height: math.unit(300, "feet")
  33330. },
  33331. ]
  33332. ))
  33333. characterMakers.push(() => makeCharacter(
  33334. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33335. {
  33336. dragon: {
  33337. height: math.unit(5, "meters"),
  33338. name: "Dragon",
  33339. image: {
  33340. source: "./media/characters/sabrina/dragon.svg",
  33341. extra: 3670 / 2365,
  33342. bottom: 333 / 4003
  33343. }
  33344. },
  33345. gryphon: {
  33346. height: math.unit(3, "meters"),
  33347. name: "Gryphon",
  33348. image: {
  33349. source: "./media/characters/sabrina/gryphon.svg",
  33350. extra: 1576 / 945,
  33351. bottom: 71 / 1647
  33352. }
  33353. },
  33354. snake: {
  33355. height: math.unit(12, "meters"),
  33356. name: "Snake",
  33357. image: {
  33358. source: "./media/characters/sabrina/snake.svg",
  33359. extra: 1758 / 1320,
  33360. bottom: 186 / 1944
  33361. }
  33362. },
  33363. collar: {
  33364. height: math.unit(1.86, "meters"),
  33365. name: "Collar",
  33366. image: {
  33367. source: "./media/characters/sabrina/collar.svg"
  33368. }
  33369. },
  33370. eye: {
  33371. height: math.unit(0.53, "meters"),
  33372. name: "Eye",
  33373. image: {
  33374. source: "./media/characters/sabrina/eye.svg"
  33375. }
  33376. },
  33377. foot: {
  33378. height: math.unit(1.86, "meters"),
  33379. name: "Foot",
  33380. image: {
  33381. source: "./media/characters/sabrina/foot.svg"
  33382. }
  33383. },
  33384. hand: {
  33385. height: math.unit(1.32, "meters"),
  33386. name: "Hand",
  33387. image: {
  33388. source: "./media/characters/sabrina/hand.svg"
  33389. }
  33390. },
  33391. head: {
  33392. height: math.unit(2.44, "meters"),
  33393. name: "Head",
  33394. image: {
  33395. source: "./media/characters/sabrina/head.svg"
  33396. }
  33397. },
  33398. headAngry: {
  33399. height: math.unit(2.44, "meters"),
  33400. name: "Head (Angry))",
  33401. image: {
  33402. source: "./media/characters/sabrina/head-angry.svg"
  33403. }
  33404. },
  33405. maw: {
  33406. height: math.unit(1.65, "meters"),
  33407. name: "Maw",
  33408. image: {
  33409. source: "./media/characters/sabrina/maw.svg"
  33410. }
  33411. },
  33412. spikes: {
  33413. height: math.unit(1.69, "meters"),
  33414. name: "Spikes",
  33415. image: {
  33416. source: "./media/characters/sabrina/spikes.svg"
  33417. }
  33418. },
  33419. stomach: {
  33420. height: math.unit(1.15, "meters"),
  33421. name: "Stomach",
  33422. image: {
  33423. source: "./media/characters/sabrina/stomach.svg"
  33424. }
  33425. },
  33426. tongue: {
  33427. height: math.unit(1.27, "meters"),
  33428. name: "Tongue",
  33429. image: {
  33430. source: "./media/characters/sabrina/tongue.svg"
  33431. }
  33432. },
  33433. wingDorsal: {
  33434. height: math.unit(4.85, "meters"),
  33435. name: "Wing (Dorsal)",
  33436. image: {
  33437. source: "./media/characters/sabrina/wing-dorsal.svg"
  33438. }
  33439. },
  33440. wingVentral: {
  33441. height: math.unit(4.85, "meters"),
  33442. name: "Wing (Ventral)",
  33443. image: {
  33444. source: "./media/characters/sabrina/wing-ventral.svg"
  33445. }
  33446. },
  33447. },
  33448. [
  33449. {
  33450. name: "Normal",
  33451. height: math.unit(5, "meters"),
  33452. default: true
  33453. },
  33454. ]
  33455. ))
  33456. characterMakers.push(() => makeCharacter(
  33457. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33458. {
  33459. frontMaid: {
  33460. height: math.unit(5 + 5/12, "feet"),
  33461. weight: math.unit(130, "lb"),
  33462. name: "Front (Maid)",
  33463. image: {
  33464. source: "./media/characters/midnight-tales/front-maid.svg",
  33465. extra: 489/454,
  33466. bottom: 61/550
  33467. }
  33468. },
  33469. frontFormal: {
  33470. height: math.unit(5 + 5/12, "feet"),
  33471. weight: math.unit(130, "lb"),
  33472. name: "Front (Formal)",
  33473. image: {
  33474. source: "./media/characters/midnight-tales/front-formal.svg",
  33475. extra: 489/454,
  33476. bottom: 61/550
  33477. }
  33478. },
  33479. back: {
  33480. height: math.unit(5 + 5/12, "feet"),
  33481. weight: math.unit(130, "lb"),
  33482. name: "Back",
  33483. image: {
  33484. source: "./media/characters/midnight-tales/back.svg",
  33485. extra: 498/456,
  33486. bottom: 33/531
  33487. }
  33488. },
  33489. frontBeast: {
  33490. height: math.unit(40, "feet"),
  33491. weight: math.unit(64000, "lb"),
  33492. name: "Front (Beast)",
  33493. image: {
  33494. source: "./media/characters/midnight-tales/front-beast.svg",
  33495. extra: 927/860,
  33496. bottom: 53/980
  33497. }
  33498. },
  33499. backBeast: {
  33500. height: math.unit(40, "feet"),
  33501. weight: math.unit(64000, "lb"),
  33502. name: "Back (Beast)",
  33503. image: {
  33504. source: "./media/characters/midnight-tales/back-beast.svg",
  33505. extra: 929/855,
  33506. bottom: 16/945
  33507. }
  33508. },
  33509. footBeast: {
  33510. height: math.unit(6.7, "feet"),
  33511. name: "Foot (Beast)",
  33512. image: {
  33513. source: "./media/characters/midnight-tales/foot-beast.svg"
  33514. }
  33515. },
  33516. headBeast: {
  33517. height: math.unit(8, "feet"),
  33518. name: "Head (Beast)",
  33519. image: {
  33520. source: "./media/characters/midnight-tales/head-beast.svg"
  33521. }
  33522. },
  33523. },
  33524. [
  33525. {
  33526. name: "Normal",
  33527. height: math.unit(5 + 5 / 12, "feet"),
  33528. default: true
  33529. },
  33530. {
  33531. name: "Macro",
  33532. height: math.unit(25, "feet")
  33533. },
  33534. ]
  33535. ))
  33536. characterMakers.push(() => makeCharacter(
  33537. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33538. {
  33539. front: {
  33540. height: math.unit(5 + 10/12, "feet"),
  33541. name: "Front",
  33542. image: {
  33543. source: "./media/characters/argon/front.svg",
  33544. extra: 2009/1935,
  33545. bottom: 118/2127
  33546. }
  33547. },
  33548. back: {
  33549. height: math.unit(5 + 10/12, "feet"),
  33550. name: "Back",
  33551. image: {
  33552. source: "./media/characters/argon/back.svg",
  33553. extra: 2047/1992,
  33554. bottom: 20/2067
  33555. }
  33556. },
  33557. frontDressed: {
  33558. height: math.unit(5 + 10/12, "feet"),
  33559. name: "Front (Dressed)",
  33560. image: {
  33561. source: "./media/characters/argon/front-dressed.svg",
  33562. extra: 2009/1935,
  33563. bottom: 118/2127
  33564. }
  33565. },
  33566. },
  33567. [
  33568. {
  33569. name: "Normal",
  33570. height: math.unit(5 + 10/12, "feet"),
  33571. default: true
  33572. },
  33573. ]
  33574. ))
  33575. characterMakers.push(() => makeCharacter(
  33576. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33577. {
  33578. front: {
  33579. height: math.unit(8 + 6/12, "feet"),
  33580. weight: math.unit(1150, "lb"),
  33581. name: "Front",
  33582. image: {
  33583. source: "./media/characters/kichi/front.svg",
  33584. extra: 1267/1164,
  33585. bottom: 61/1328
  33586. }
  33587. },
  33588. back: {
  33589. height: math.unit(8 + 6/12, "feet"),
  33590. weight: math.unit(1150, "lb"),
  33591. name: "Back",
  33592. image: {
  33593. source: "./media/characters/kichi/back.svg",
  33594. extra: 1273/1166,
  33595. bottom: 33/1306
  33596. }
  33597. },
  33598. },
  33599. [
  33600. {
  33601. name: "Normal",
  33602. height: math.unit(8 + 6/12, "feet"),
  33603. default: true
  33604. },
  33605. ]
  33606. ))
  33607. characterMakers.push(() => makeCharacter(
  33608. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33609. {
  33610. front: {
  33611. height: math.unit(6, "feet"),
  33612. weight: math.unit(210, "lb"),
  33613. name: "Front",
  33614. image: {
  33615. source: "./media/characters/manetel-greyscale/front.svg",
  33616. extra: 350/312,
  33617. bottom: 8/358
  33618. }
  33619. },
  33620. },
  33621. [
  33622. {
  33623. name: "Micro",
  33624. height: math.unit(2, "inches")
  33625. },
  33626. {
  33627. name: "Normal",
  33628. height: math.unit(6, "feet"),
  33629. default: true
  33630. },
  33631. {
  33632. name: "Minimacro",
  33633. height: math.unit(17, "feet")
  33634. },
  33635. {
  33636. name: "Macro",
  33637. height: math.unit(117, "feet")
  33638. },
  33639. ]
  33640. ))
  33641. characterMakers.push(() => makeCharacter(
  33642. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33643. {
  33644. side: {
  33645. height: math.unit(5 + 1/12, "feet"),
  33646. weight: math.unit(418, "lb"),
  33647. name: "Side",
  33648. image: {
  33649. source: "./media/characters/softpurr/side.svg",
  33650. extra: 1993/1945,
  33651. bottom: 134/2127
  33652. }
  33653. },
  33654. front: {
  33655. height: math.unit(5 + 1/12, "feet"),
  33656. weight: math.unit(418, "lb"),
  33657. name: "Front",
  33658. image: {
  33659. source: "./media/characters/softpurr/front.svg",
  33660. extra: 1950/1856,
  33661. bottom: 174/2124
  33662. }
  33663. },
  33664. paw: {
  33665. height: math.unit(1, "feet"),
  33666. name: "Paw",
  33667. image: {
  33668. source: "./media/characters/softpurr/paw.svg"
  33669. }
  33670. },
  33671. },
  33672. [
  33673. {
  33674. name: "Normal",
  33675. height: math.unit(5 + 1/12, "feet"),
  33676. default: true
  33677. },
  33678. ]
  33679. ))
  33680. characterMakers.push(() => makeCharacter(
  33681. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33682. {
  33683. front: {
  33684. height: math.unit(260, "meters"),
  33685. name: "Front",
  33686. image: {
  33687. source: "./media/characters/anahita/front.svg",
  33688. extra: 665/635,
  33689. bottom: 89/754
  33690. }
  33691. },
  33692. },
  33693. [
  33694. {
  33695. name: "Macro",
  33696. height: math.unit(260, "meters"),
  33697. default: true
  33698. },
  33699. ]
  33700. ))
  33701. characterMakers.push(() => makeCharacter(
  33702. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33703. {
  33704. front: {
  33705. height: math.unit(4 + 10/12, "feet"),
  33706. weight: math.unit(160, "lb"),
  33707. name: "Front",
  33708. image: {
  33709. source: "./media/characters/chip-mouse/front.svg",
  33710. extra: 3528/3408,
  33711. bottom: 0/3528
  33712. }
  33713. },
  33714. frontNsfw: {
  33715. height: math.unit(4 + 10/12, "feet"),
  33716. weight: math.unit(160, "lb"),
  33717. name: "Front (NSFW)",
  33718. image: {
  33719. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33720. extra: 3528/3408,
  33721. bottom: 0/3528
  33722. }
  33723. },
  33724. },
  33725. [
  33726. {
  33727. name: "Normal",
  33728. height: math.unit(4 + 10/12, "feet"),
  33729. default: true
  33730. },
  33731. ]
  33732. ))
  33733. characterMakers.push(() => makeCharacter(
  33734. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33735. {
  33736. side: {
  33737. height: math.unit(10, "feet"),
  33738. weight: math.unit(14000, "lb"),
  33739. name: "Side",
  33740. image: {
  33741. source: "./media/characters/kremm/side.svg",
  33742. extra: 1390/1053,
  33743. bottom: 90/1480
  33744. }
  33745. },
  33746. gut: {
  33747. height: math.unit(5.8, "feet"),
  33748. name: "Gut",
  33749. image: {
  33750. source: "./media/characters/kremm/gut.svg"
  33751. }
  33752. },
  33753. ass: {
  33754. height: math.unit(6.1, "feet"),
  33755. name: "Ass",
  33756. image: {
  33757. source: "./media/characters/kremm/ass.svg"
  33758. }
  33759. },
  33760. jaws: {
  33761. height: math.unit(2.2, "feet"),
  33762. name: "Jaws",
  33763. image: {
  33764. source: "./media/characters/kremm/jaws.svg"
  33765. }
  33766. },
  33767. dick: {
  33768. height: math.unit(4.26, "feet"),
  33769. name: "Dick",
  33770. image: {
  33771. source: "./media/characters/kremm/dick.svg"
  33772. }
  33773. },
  33774. },
  33775. [
  33776. {
  33777. name: "Normal",
  33778. height: math.unit(10, "feet"),
  33779. default: true
  33780. },
  33781. ]
  33782. ))
  33783. characterMakers.push(() => makeCharacter(
  33784. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33785. {
  33786. front: {
  33787. height: math.unit(30, "stories"),
  33788. name: "Front",
  33789. image: {
  33790. source: "./media/characters/kai/front.svg",
  33791. extra: 1892/1718,
  33792. bottom: 162/2054
  33793. }
  33794. },
  33795. },
  33796. [
  33797. {
  33798. name: "Macro",
  33799. height: math.unit(30, "stories"),
  33800. default: true
  33801. },
  33802. ]
  33803. ))
  33804. characterMakers.push(() => makeCharacter(
  33805. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33806. {
  33807. front: {
  33808. height: math.unit(6 + 4/12, "feet"),
  33809. weight: math.unit(145, "lb"),
  33810. name: "Front",
  33811. image: {
  33812. source: "./media/characters/sykes/front.svg",
  33813. extra: 1321 / 1187,
  33814. bottom: 66 / 1387
  33815. }
  33816. },
  33817. back: {
  33818. height: math.unit(6 + 4/12, "feet"),
  33819. weight: math.unit(145, "lb"),
  33820. name: "Back",
  33821. image: {
  33822. source: "./media/characters/sykes/back.svg",
  33823. extra: 1326/1181,
  33824. bottom: 31/1357
  33825. }
  33826. },
  33827. handBack: {
  33828. height: math.unit(0.9, "feet"),
  33829. name: "Hand (Back)",
  33830. image: {
  33831. source: "./media/characters/sykes/hand-back.svg"
  33832. }
  33833. },
  33834. handFront: {
  33835. height: math.unit(0.839, "feet"),
  33836. name: "Hand (Front)",
  33837. image: {
  33838. source: "./media/characters/sykes/hand-front.svg"
  33839. }
  33840. },
  33841. leftFoot: {
  33842. height: math.unit(1.2, "feet"),
  33843. name: "Foot (Left)",
  33844. image: {
  33845. source: "./media/characters/sykes/foot-left.svg"
  33846. }
  33847. },
  33848. rightFoot: {
  33849. height: math.unit(1.2, "feet"),
  33850. name: "Foot (Right)",
  33851. image: {
  33852. source: "./media/characters/sykes/foot-right.svg"
  33853. }
  33854. },
  33855. maw: {
  33856. height: math.unit(1.93, "feet"),
  33857. name: "Maw",
  33858. image: {
  33859. source: "./media/characters/sykes/maw.svg"
  33860. }
  33861. },
  33862. teeth: {
  33863. height: math.unit(0.51, "feet"),
  33864. name: "Teeth",
  33865. image: {
  33866. source: "./media/characters/sykes/teeth.svg"
  33867. }
  33868. },
  33869. tongue: {
  33870. height: math.unit(2.13, "feet"),
  33871. name: "Tongue",
  33872. image: {
  33873. source: "./media/characters/sykes/tongue.svg"
  33874. }
  33875. },
  33876. uvula: {
  33877. height: math.unit(0.16, "feet"),
  33878. name: "Uvula",
  33879. image: {
  33880. source: "./media/characters/sykes/uvula.svg"
  33881. }
  33882. },
  33883. collar: {
  33884. height: math.unit(0.287, "feet"),
  33885. name: "Collar",
  33886. image: {
  33887. source: "./media/characters/sykes/collar.svg"
  33888. }
  33889. },
  33890. },
  33891. [
  33892. {
  33893. name: "Shrunken",
  33894. height: math.unit(5, "inches")
  33895. },
  33896. {
  33897. name: "Normal",
  33898. height: math.unit(6 + 4 / 12, "feet"),
  33899. default: true
  33900. },
  33901. {
  33902. name: "Big",
  33903. height: math.unit(15, "feet")
  33904. },
  33905. ]
  33906. ))
  33907. characterMakers.push(() => makeCharacter(
  33908. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33909. {
  33910. front: {
  33911. height: math.unit(5 + 8/12, "feet"),
  33912. weight: math.unit(190, "lb"),
  33913. name: "Front",
  33914. image: {
  33915. source: "./media/characters/oven-otter/front.svg",
  33916. extra: 1809/1740,
  33917. bottom: 181/1990
  33918. }
  33919. },
  33920. back: {
  33921. height: math.unit(5 + 8/12, "feet"),
  33922. weight: math.unit(190, "lb"),
  33923. name: "Back",
  33924. image: {
  33925. source: "./media/characters/oven-otter/back.svg",
  33926. extra: 1709/1635,
  33927. bottom: 118/1827
  33928. }
  33929. },
  33930. hand: {
  33931. height: math.unit(1.07, "feet"),
  33932. name: "Hand",
  33933. image: {
  33934. source: "./media/characters/oven-otter/hand.svg"
  33935. }
  33936. },
  33937. beans: {
  33938. height: math.unit(1.74, "feet"),
  33939. name: "Beans",
  33940. image: {
  33941. source: "./media/characters/oven-otter/beans.svg"
  33942. }
  33943. },
  33944. },
  33945. [
  33946. {
  33947. name: "Micro",
  33948. height: math.unit(0.5, "inches")
  33949. },
  33950. {
  33951. name: "Normal",
  33952. height: math.unit(5 + 8/12, "feet"),
  33953. default: true
  33954. },
  33955. {
  33956. name: "Macro",
  33957. height: math.unit(250, "feet")
  33958. },
  33959. {
  33960. name: "Really High",
  33961. height: math.unit(420, "feet")
  33962. },
  33963. ]
  33964. ))
  33965. characterMakers.push(() => makeCharacter(
  33966. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33967. {
  33968. front: {
  33969. height: math.unit(5, "meters"),
  33970. weight: math.unit(292000000000000, "kg"),
  33971. name: "Front",
  33972. image: {
  33973. source: "./media/characters/devourer/front.svg",
  33974. extra: 1800/1733,
  33975. bottom: 211/2011
  33976. }
  33977. },
  33978. maw: {
  33979. height: math.unit(1.1, "meter"),
  33980. name: "Maw",
  33981. image: {
  33982. source: "./media/characters/devourer/maw.svg"
  33983. }
  33984. },
  33985. },
  33986. [
  33987. {
  33988. name: "Small",
  33989. height: math.unit(3, "meters")
  33990. },
  33991. {
  33992. name: "Large",
  33993. height: math.unit(5, "meters"),
  33994. default: true
  33995. },
  33996. ]
  33997. ))
  33998. characterMakers.push(() => makeCharacter(
  33999. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34000. {
  34001. front: {
  34002. height: math.unit(6, "feet"),
  34003. weight: math.unit(400, "lb"),
  34004. name: "Front",
  34005. image: {
  34006. source: "./media/characters/ellarby/front.svg",
  34007. extra: 1909/1763,
  34008. bottom: 80/1989
  34009. }
  34010. },
  34011. back: {
  34012. height: math.unit(6, "feet"),
  34013. weight: math.unit(400, "lb"),
  34014. name: "Back",
  34015. image: {
  34016. source: "./media/characters/ellarby/back.svg",
  34017. extra: 1914/1784,
  34018. bottom: 172/2086
  34019. }
  34020. },
  34021. },
  34022. [
  34023. {
  34024. name: "Mischief",
  34025. height: math.unit(18, "inches")
  34026. },
  34027. {
  34028. name: "Trouble",
  34029. height: math.unit(12, "feet")
  34030. },
  34031. {
  34032. name: "Havoc",
  34033. height: math.unit(200, "feet"),
  34034. default: true
  34035. },
  34036. {
  34037. name: "Pandemonium",
  34038. height: math.unit(1, "mile")
  34039. },
  34040. {
  34041. name: "Catastrophe",
  34042. height: math.unit(100, "miles")
  34043. },
  34044. ]
  34045. ))
  34046. characterMakers.push(() => makeCharacter(
  34047. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34048. {
  34049. front: {
  34050. height: math.unit(4.7, "meters"),
  34051. weight: math.unit(6500, "kg"),
  34052. name: "Front",
  34053. image: {
  34054. source: "./media/characters/vex/front.svg",
  34055. extra: 1288/1140,
  34056. bottom: 100/1388
  34057. }
  34058. },
  34059. },
  34060. [
  34061. {
  34062. name: "Normal",
  34063. height: math.unit(4.7, "meters"),
  34064. default: true
  34065. },
  34066. ]
  34067. ))
  34068. characterMakers.push(() => makeCharacter(
  34069. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34070. {
  34071. normal: {
  34072. height: math.unit(6, "feet"),
  34073. weight: math.unit(350, "lb"),
  34074. name: "Normal",
  34075. image: {
  34076. source: "./media/characters/teshy/normal.svg",
  34077. extra: 1795/1735,
  34078. bottom: 16/1811
  34079. }
  34080. },
  34081. monsterFront: {
  34082. height: math.unit(12, "feet"),
  34083. weight: math.unit(4700, "lb"),
  34084. name: "Monster (Front)",
  34085. image: {
  34086. source: "./media/characters/teshy/monster-front.svg",
  34087. extra: 2042/2034,
  34088. bottom: 128/2170
  34089. }
  34090. },
  34091. monsterSide: {
  34092. height: math.unit(12, "feet"),
  34093. weight: math.unit(4700, "lb"),
  34094. name: "Monster (Side)",
  34095. image: {
  34096. source: "./media/characters/teshy/monster-side.svg",
  34097. extra: 2067/2056,
  34098. bottom: 70/2137
  34099. }
  34100. },
  34101. monsterBack: {
  34102. height: math.unit(12, "feet"),
  34103. weight: math.unit(4700, "lb"),
  34104. name: "Monster (Back)",
  34105. image: {
  34106. source: "./media/characters/teshy/monster-back.svg",
  34107. extra: 1921/1914,
  34108. bottom: 171/2092
  34109. }
  34110. },
  34111. },
  34112. [
  34113. {
  34114. name: "Normal",
  34115. height: math.unit(6, "feet"),
  34116. default: true
  34117. },
  34118. ]
  34119. ))
  34120. characterMakers.push(() => makeCharacter(
  34121. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34122. {
  34123. front: {
  34124. height: math.unit(6, "feet"),
  34125. name: "Front",
  34126. image: {
  34127. source: "./media/characters/ramey/front.svg",
  34128. extra: 790/787,
  34129. bottom: 27/817
  34130. }
  34131. },
  34132. },
  34133. [
  34134. {
  34135. name: "Normal",
  34136. height: math.unit(6, "feet"),
  34137. default: true
  34138. },
  34139. ]
  34140. ))
  34141. characterMakers.push(() => makeCharacter(
  34142. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34143. {
  34144. front: {
  34145. height: math.unit(5 + 5/12, "feet"),
  34146. weight: math.unit(120, "lb"),
  34147. name: "Front",
  34148. image: {
  34149. source: "./media/characters/phirae/front.svg",
  34150. extra: 2491/2436,
  34151. bottom: 38/2529
  34152. }
  34153. },
  34154. },
  34155. [
  34156. {
  34157. name: "Normal",
  34158. height: math.unit(5 + 5/12, "feet"),
  34159. default: true
  34160. },
  34161. ]
  34162. ))
  34163. characterMakers.push(() => makeCharacter(
  34164. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34165. {
  34166. front: {
  34167. height: math.unit(5 + 3/12, "feet"),
  34168. name: "Front",
  34169. image: {
  34170. source: "./media/characters/stagglas/front.svg",
  34171. extra: 962/882,
  34172. bottom: 53/1015
  34173. }
  34174. },
  34175. feral: {
  34176. height: math.unit(335, "cm"),
  34177. name: "Feral",
  34178. image: {
  34179. source: "./media/characters/stagglas/feral.svg",
  34180. extra: 1732/1090,
  34181. bottom: 48/1780
  34182. }
  34183. },
  34184. },
  34185. [
  34186. {
  34187. name: "Normal",
  34188. height: math.unit(5 + 3/12, "feet"),
  34189. default: true
  34190. },
  34191. ]
  34192. ))
  34193. characterMakers.push(() => makeCharacter(
  34194. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34195. {
  34196. front: {
  34197. height: math.unit(5 + 4/12, "feet"),
  34198. weight: math.unit(145, "lb"),
  34199. name: "Front",
  34200. image: {
  34201. source: "./media/characters/starra/front.svg",
  34202. extra: 1790/1691,
  34203. bottom: 91/1881
  34204. }
  34205. },
  34206. },
  34207. [
  34208. {
  34209. name: "Normal",
  34210. height: math.unit(5 + 4/12, "feet"),
  34211. default: true
  34212. },
  34213. ]
  34214. ))
  34215. characterMakers.push(() => makeCharacter(
  34216. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34217. {
  34218. front: {
  34219. height: math.unit(2.2, "meters"),
  34220. name: "Front",
  34221. image: {
  34222. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34223. extra: 1194/1005,
  34224. bottom: 25/1219
  34225. }
  34226. },
  34227. },
  34228. [
  34229. {
  34230. name: "Normal",
  34231. height: math.unit(2.2, "meters"),
  34232. default: true
  34233. },
  34234. ]
  34235. ))
  34236. characterMakers.push(() => makeCharacter(
  34237. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34238. {
  34239. side: {
  34240. height: math.unit(8 + 2/12, "feet"),
  34241. weight: math.unit(1240, "lb"),
  34242. name: "Side",
  34243. image: {
  34244. source: "./media/characters/mika-valentine/side.svg",
  34245. extra: 2670/2501,
  34246. bottom: 250/2920
  34247. }
  34248. },
  34249. },
  34250. [
  34251. {
  34252. name: "Normal",
  34253. height: math.unit(8 + 2/12, "feet"),
  34254. default: true
  34255. },
  34256. ]
  34257. ))
  34258. characterMakers.push(() => makeCharacter(
  34259. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34260. {
  34261. front: {
  34262. height: math.unit(7 + 2/12, "feet"),
  34263. name: "Front",
  34264. image: {
  34265. source: "./media/characters/xoltol/front.svg",
  34266. extra: 2212/2124,
  34267. bottom: 84/2296
  34268. }
  34269. },
  34270. side: {
  34271. height: math.unit(7 + 2/12, "feet"),
  34272. name: "Side",
  34273. image: {
  34274. source: "./media/characters/xoltol/side.svg",
  34275. extra: 2273/2197,
  34276. bottom: 26/2299
  34277. }
  34278. },
  34279. hand: {
  34280. height: math.unit(2.5, "feet"),
  34281. name: "Hand",
  34282. image: {
  34283. source: "./media/characters/xoltol/hand.svg"
  34284. }
  34285. },
  34286. },
  34287. [
  34288. {
  34289. name: "Small-ish",
  34290. height: math.unit(5 + 11/12, "feet")
  34291. },
  34292. {
  34293. name: "Normal",
  34294. height: math.unit(7 + 2/12, "feet")
  34295. },
  34296. {
  34297. name: "\"Macro\"",
  34298. height: math.unit(14 + 9/12, "feet"),
  34299. default: true
  34300. },
  34301. {
  34302. name: "Alternate Height",
  34303. height: math.unit(20, "feet")
  34304. },
  34305. {
  34306. name: "Actually Macro",
  34307. height: math.unit(100, "feet")
  34308. },
  34309. ]
  34310. ))
  34311. characterMakers.push(() => makeCharacter(
  34312. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34313. {
  34314. front: {
  34315. height: math.unit(5 + 2/12, "feet"),
  34316. name: "Front",
  34317. image: {
  34318. source: "./media/characters/kotetsu-redwood/front.svg",
  34319. extra: 1053/942,
  34320. bottom: 60/1113
  34321. }
  34322. },
  34323. },
  34324. [
  34325. {
  34326. name: "Normal",
  34327. height: math.unit(5 + 2/12, "feet"),
  34328. default: true
  34329. },
  34330. ]
  34331. ))
  34332. characterMakers.push(() => makeCharacter(
  34333. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34334. {
  34335. front: {
  34336. height: math.unit(2.4, "meters"),
  34337. weight: math.unit(125, "kg"),
  34338. name: "Front",
  34339. image: {
  34340. source: "./media/characters/lilith/front.svg",
  34341. extra: 1590/1513,
  34342. bottom: 203/1793
  34343. }
  34344. },
  34345. },
  34346. [
  34347. {
  34348. name: "Humanoid",
  34349. height: math.unit(2.4, "meters")
  34350. },
  34351. {
  34352. name: "Normal",
  34353. height: math.unit(6, "meters"),
  34354. default: true
  34355. },
  34356. {
  34357. name: "Largest",
  34358. height: math.unit(55, "meters")
  34359. },
  34360. ]
  34361. ))
  34362. characterMakers.push(() => makeCharacter(
  34363. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34364. {
  34365. front: {
  34366. height: math.unit(8 + 4/12, "feet"),
  34367. weight: math.unit(535, "lb"),
  34368. name: "Front",
  34369. image: {
  34370. source: "./media/characters/beh'kah-bolger/front.svg",
  34371. extra: 1660/1603,
  34372. bottom: 37/1697
  34373. }
  34374. },
  34375. },
  34376. [
  34377. {
  34378. name: "Normal",
  34379. height: math.unit(8 + 4/12, "feet"),
  34380. default: true
  34381. },
  34382. {
  34383. name: "Kaiju",
  34384. height: math.unit(250, "feet")
  34385. },
  34386. {
  34387. name: "Still Growing",
  34388. height: math.unit(10, "miles")
  34389. },
  34390. {
  34391. name: "Continental",
  34392. height: math.unit(5000, "miles")
  34393. },
  34394. {
  34395. name: "Final Form",
  34396. height: math.unit(2500000, "miles")
  34397. },
  34398. ]
  34399. ))
  34400. characterMakers.push(() => makeCharacter(
  34401. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34402. {
  34403. front: {
  34404. height: math.unit(7 + 2/12, "feet"),
  34405. weight: math.unit(230, "kg"),
  34406. name: "Front",
  34407. image: {
  34408. source: "./media/characters/tatyana-milewska/front.svg",
  34409. extra: 1199/1150,
  34410. bottom: 86/1285
  34411. }
  34412. },
  34413. },
  34414. [
  34415. {
  34416. name: "Normal",
  34417. height: math.unit(7 + 2/12, "feet"),
  34418. default: true
  34419. },
  34420. {
  34421. name: "Big",
  34422. height: math.unit(12, "feet")
  34423. },
  34424. {
  34425. name: "Minimacro",
  34426. height: math.unit(20, "feet")
  34427. },
  34428. {
  34429. name: "Macro",
  34430. height: math.unit(120, "feet")
  34431. },
  34432. ]
  34433. ))
  34434. characterMakers.push(() => makeCharacter(
  34435. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34436. {
  34437. front: {
  34438. height: math.unit(7 + 8/12, "feet"),
  34439. weight: math.unit(152, "kg"),
  34440. name: "Front",
  34441. image: {
  34442. source: "./media/characters/helen-arri/front.svg",
  34443. extra: 440/423,
  34444. bottom: 14/454
  34445. }
  34446. },
  34447. back: {
  34448. height: math.unit(7 + 8/12, "feet"),
  34449. weight: math.unit(152, "kg"),
  34450. name: "Back",
  34451. image: {
  34452. source: "./media/characters/helen-arri/back.svg",
  34453. extra: 443/426,
  34454. bottom: 8/451
  34455. }
  34456. },
  34457. },
  34458. [
  34459. {
  34460. name: "Normal",
  34461. height: math.unit(7 + 8/12, "feet"),
  34462. default: true
  34463. },
  34464. {
  34465. name: "Big",
  34466. height: math.unit(14, "feet")
  34467. },
  34468. {
  34469. name: "Minimacro",
  34470. height: math.unit(24, "feet")
  34471. },
  34472. {
  34473. name: "Macro",
  34474. height: math.unit(140, "feet")
  34475. },
  34476. ]
  34477. ))
  34478. characterMakers.push(() => makeCharacter(
  34479. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34480. {
  34481. front: {
  34482. height: math.unit(6, "meters"),
  34483. name: "Front",
  34484. image: {
  34485. source: "./media/characters/ehanu-rehu/front.svg",
  34486. extra: 1800/1800,
  34487. bottom: 59/1859
  34488. }
  34489. },
  34490. },
  34491. [
  34492. {
  34493. name: "Normal",
  34494. height: math.unit(6, "meters"),
  34495. default: true
  34496. },
  34497. ]
  34498. ))
  34499. characterMakers.push(() => makeCharacter(
  34500. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34501. {
  34502. front: {
  34503. height: math.unit(7 + 3/12, "feet"),
  34504. name: "Front",
  34505. image: {
  34506. source: "./media/characters/renholder/front.svg",
  34507. extra: 3096/2960,
  34508. bottom: 250/3346
  34509. }
  34510. },
  34511. },
  34512. [
  34513. {
  34514. name: "Normal Bat",
  34515. height: math.unit(7 + 3/12, "feet"),
  34516. default: true
  34517. },
  34518. {
  34519. name: "Slightly Tall Bat",
  34520. height: math.unit(100, "feet")
  34521. },
  34522. {
  34523. name: "Big Bat",
  34524. height: math.unit(1000, "feet")
  34525. },
  34526. {
  34527. name: "City-Sized Bat",
  34528. height: math.unit(200000, "feet")
  34529. },
  34530. {
  34531. name: "Bigger Bat",
  34532. height: math.unit(10000, "miles")
  34533. },
  34534. {
  34535. name: "Solar Sized Bat",
  34536. height: math.unit(100, "AU")
  34537. },
  34538. {
  34539. name: "Galactic Bat",
  34540. height: math.unit(200000, "lightyears")
  34541. },
  34542. {
  34543. name: "Universally Known Bat",
  34544. height: math.unit(1, "universe")
  34545. },
  34546. ]
  34547. ))
  34548. characterMakers.push(() => makeCharacter(
  34549. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34550. {
  34551. front: {
  34552. height: math.unit(6 + 11/12, "feet"),
  34553. weight: math.unit(250, "lb"),
  34554. name: "Front",
  34555. image: {
  34556. source: "./media/characters/cookiecat/front.svg",
  34557. extra: 893/827,
  34558. bottom: 14/907
  34559. }
  34560. },
  34561. },
  34562. [
  34563. {
  34564. name: "Micro",
  34565. height: math.unit(3, "inches")
  34566. },
  34567. {
  34568. name: "Normal",
  34569. height: math.unit(6 + 11/12, "feet"),
  34570. default: true
  34571. },
  34572. {
  34573. name: "Macro",
  34574. height: math.unit(100, "feet")
  34575. },
  34576. {
  34577. name: "Macro+",
  34578. height: math.unit(404, "feet")
  34579. },
  34580. {
  34581. name: "Megamacro",
  34582. height: math.unit(165, "miles")
  34583. },
  34584. {
  34585. name: "Planetary",
  34586. height: math.unit(4600, "miles")
  34587. },
  34588. ]
  34589. ))
  34590. characterMakers.push(() => makeCharacter(
  34591. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34592. {
  34593. front: {
  34594. height: math.unit(10 + 3/12, "feet"),
  34595. weight: math.unit(1500, "lb"),
  34596. name: "Front",
  34597. image: {
  34598. source: "./media/characters/tux-kusanagi/front.svg",
  34599. extra: 944/840,
  34600. bottom: 39/983
  34601. }
  34602. },
  34603. back: {
  34604. height: math.unit(10 + 3/12, "feet"),
  34605. weight: math.unit(1500, "lb"),
  34606. name: "Back",
  34607. image: {
  34608. source: "./media/characters/tux-kusanagi/back.svg",
  34609. extra: 941/842,
  34610. bottom: 28/969
  34611. }
  34612. },
  34613. rump: {
  34614. height: math.unit(5.25, "feet"),
  34615. name: "Rump",
  34616. image: {
  34617. source: "./media/characters/tux-kusanagi/rump.svg"
  34618. }
  34619. },
  34620. beak: {
  34621. height: math.unit(1.54, "feet"),
  34622. name: "Beak",
  34623. image: {
  34624. source: "./media/characters/tux-kusanagi/beak.svg"
  34625. }
  34626. },
  34627. },
  34628. [
  34629. {
  34630. name: "Normal",
  34631. height: math.unit(10 + 3/12, "feet"),
  34632. default: true
  34633. },
  34634. ]
  34635. ))
  34636. characterMakers.push(() => makeCharacter(
  34637. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34638. {
  34639. front: {
  34640. height: math.unit(58, "feet"),
  34641. weight: math.unit(200, "tons"),
  34642. name: "Front",
  34643. image: {
  34644. source: "./media/characters/uzarmazari/front.svg",
  34645. extra: 1575/1455,
  34646. bottom: 152/1727
  34647. }
  34648. },
  34649. back: {
  34650. height: math.unit(58, "feet"),
  34651. weight: math.unit(200, "tons"),
  34652. name: "Back",
  34653. image: {
  34654. source: "./media/characters/uzarmazari/back.svg",
  34655. extra: 1585/1510,
  34656. bottom: 157/1742
  34657. }
  34658. },
  34659. head: {
  34660. height: math.unit(26, "feet"),
  34661. name: "Head",
  34662. image: {
  34663. source: "./media/characters/uzarmazari/head.svg"
  34664. }
  34665. },
  34666. },
  34667. [
  34668. {
  34669. name: "Normal",
  34670. height: math.unit(58, "feet"),
  34671. default: true
  34672. },
  34673. ]
  34674. ))
  34675. characterMakers.push(() => makeCharacter(
  34676. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34677. {
  34678. side: {
  34679. height: math.unit(15, "feet"),
  34680. name: "Side",
  34681. image: {
  34682. source: "./media/characters/akitu/side.svg",
  34683. extra: 1421/1321,
  34684. bottom: 157/1578
  34685. }
  34686. },
  34687. front: {
  34688. height: math.unit(15, "feet"),
  34689. name: "Front",
  34690. image: {
  34691. source: "./media/characters/akitu/front.svg",
  34692. extra: 1435/1326,
  34693. bottom: 232/1667
  34694. }
  34695. },
  34696. },
  34697. [
  34698. {
  34699. name: "Normal",
  34700. height: math.unit(15, "feet"),
  34701. default: true
  34702. },
  34703. ]
  34704. ))
  34705. characterMakers.push(() => makeCharacter(
  34706. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34707. {
  34708. front: {
  34709. height: math.unit(10 + 8/12, "feet"),
  34710. name: "Front",
  34711. image: {
  34712. source: "./media/characters/azalie-croixland/front.svg",
  34713. extra: 1972/1856,
  34714. bottom: 31/2003
  34715. }
  34716. },
  34717. },
  34718. [
  34719. {
  34720. name: "Original Height",
  34721. height: math.unit(5 + 4/12, "feet")
  34722. },
  34723. {
  34724. name: "Normal Height",
  34725. height: math.unit(10 + 8/12, "feet"),
  34726. default: true
  34727. },
  34728. ]
  34729. ))
  34730. characterMakers.push(() => makeCharacter(
  34731. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34732. {
  34733. side: {
  34734. height: math.unit(7 + 1/12, "feet"),
  34735. weight: math.unit(245, "lb"),
  34736. name: "Side",
  34737. image: {
  34738. source: "./media/characters/kavus-kazian/side.svg",
  34739. extra: 349/342,
  34740. bottom: 15/364
  34741. }
  34742. },
  34743. },
  34744. [
  34745. {
  34746. name: "Normal",
  34747. height: math.unit(7 + 1/12, "feet"),
  34748. default: true
  34749. },
  34750. ]
  34751. ))
  34752. characterMakers.push(() => makeCharacter(
  34753. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34754. {
  34755. normal: {
  34756. height: math.unit(5 + 11/12, "feet"),
  34757. name: "Normal",
  34758. image: {
  34759. source: "./media/characters/moonlight-rose/normal.svg",
  34760. extra: 1979/1835,
  34761. bottom: 14/1993
  34762. }
  34763. },
  34764. demon: {
  34765. height: math.unit(5, "km"),
  34766. name: "Demon",
  34767. image: {
  34768. source: "./media/characters/moonlight-rose/demon.svg",
  34769. extra: 986/916,
  34770. bottom: 28/1014
  34771. }
  34772. },
  34773. },
  34774. [
  34775. {
  34776. name: "\"Natural\" height",
  34777. height: math.unit(5 + 11/12, "feet")
  34778. },
  34779. {
  34780. name: "Comfortable Size",
  34781. height: math.unit(40, "meters")
  34782. },
  34783. {
  34784. name: "Common Size",
  34785. height: math.unit(50, "km"),
  34786. default: true
  34787. },
  34788. {
  34789. name: "Demonic",
  34790. height: math.unit(1.24415e+21, "meters")
  34791. },
  34792. ]
  34793. ))
  34794. characterMakers.push(() => makeCharacter(
  34795. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34796. {
  34797. front: {
  34798. height: math.unit(16, "feet"),
  34799. weight: math.unit(610, "kg"),
  34800. name: "Front",
  34801. image: {
  34802. source: "./media/characters/huckle/front.svg",
  34803. extra: 1731/1625,
  34804. bottom: 33/1764
  34805. }
  34806. },
  34807. back: {
  34808. height: math.unit(16, "feet"),
  34809. weight: math.unit(610, "kg"),
  34810. name: "Back",
  34811. image: {
  34812. source: "./media/characters/huckle/back.svg",
  34813. extra: 1738/1651,
  34814. bottom: 37/1775
  34815. }
  34816. },
  34817. laughing: {
  34818. height: math.unit(3.75, "feet"),
  34819. name: "Laughing",
  34820. image: {
  34821. source: "./media/characters/huckle/laughing.svg"
  34822. }
  34823. },
  34824. angry: {
  34825. height: math.unit(4.15, "feet"),
  34826. name: "Angry",
  34827. image: {
  34828. source: "./media/characters/huckle/angry.svg"
  34829. }
  34830. },
  34831. },
  34832. [
  34833. {
  34834. name: "Normal",
  34835. height: math.unit(16, "feet"),
  34836. default: true
  34837. },
  34838. {
  34839. name: "Mini Macro",
  34840. height: math.unit(463, "feet")
  34841. },
  34842. {
  34843. name: "Macro",
  34844. height: math.unit(1680, "meters")
  34845. },
  34846. {
  34847. name: "Mega Macro",
  34848. height: math.unit(175, "km")
  34849. },
  34850. {
  34851. name: "Terra Macro",
  34852. height: math.unit(32, "gigameters")
  34853. },
  34854. {
  34855. name: "Multiverse+",
  34856. height: math.unit(2.56e23, "yottameters")
  34857. },
  34858. ]
  34859. ))
  34860. characterMakers.push(() => makeCharacter(
  34861. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34862. {
  34863. front: {
  34864. height: math.unit(6 + 9/12, "feet"),
  34865. weight: math.unit(280, "lb"),
  34866. name: "Front",
  34867. image: {
  34868. source: "./media/characters/candy/front.svg",
  34869. extra: 234/217,
  34870. bottom: 11/245
  34871. }
  34872. },
  34873. },
  34874. [
  34875. {
  34876. name: "Really Small",
  34877. height: math.unit(0.1, "nm")
  34878. },
  34879. {
  34880. name: "Micro",
  34881. height: math.unit(2, "inches")
  34882. },
  34883. {
  34884. name: "Normal",
  34885. height: math.unit(6 + 9/12, "feet"),
  34886. default: true
  34887. },
  34888. {
  34889. name: "Small Macro",
  34890. height: math.unit(69, "feet")
  34891. },
  34892. {
  34893. name: "Macro",
  34894. height: math.unit(160, "feet")
  34895. },
  34896. {
  34897. name: "Megamacro",
  34898. height: math.unit(22000, "miles")
  34899. },
  34900. {
  34901. name: "Gigamacro",
  34902. height: math.unit(50000, "miles")
  34903. },
  34904. ]
  34905. ))
  34906. characterMakers.push(() => makeCharacter(
  34907. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34908. {
  34909. front: {
  34910. height: math.unit(4, "feet"),
  34911. weight: math.unit(90, "lb"),
  34912. name: "Front",
  34913. image: {
  34914. source: "./media/characters/joey-mcdonald/front.svg",
  34915. extra: 1059/852,
  34916. bottom: 33/1092
  34917. }
  34918. },
  34919. back: {
  34920. height: math.unit(4, "feet"),
  34921. weight: math.unit(90, "lb"),
  34922. name: "Back",
  34923. image: {
  34924. source: "./media/characters/joey-mcdonald/back.svg",
  34925. extra: 1077/879,
  34926. bottom: 5/1082
  34927. }
  34928. },
  34929. frontKobold: {
  34930. height: math.unit(4, "feet"),
  34931. weight: math.unit(100, "lb"),
  34932. name: "Front-kobold",
  34933. image: {
  34934. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34935. extra: 1480/1367,
  34936. bottom: 0/1480
  34937. }
  34938. },
  34939. backKobold: {
  34940. height: math.unit(4, "feet"),
  34941. weight: math.unit(100, "lb"),
  34942. name: "Back-kobold",
  34943. image: {
  34944. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34945. extra: 1449/1361,
  34946. bottom: 0/1449
  34947. }
  34948. },
  34949. },
  34950. [
  34951. {
  34952. name: "Normal",
  34953. height: math.unit(4, "feet"),
  34954. default: true
  34955. },
  34956. ]
  34957. ))
  34958. characterMakers.push(() => makeCharacter(
  34959. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34960. {
  34961. front: {
  34962. height: math.unit(12 + 6/12, "feet"),
  34963. name: "Front",
  34964. image: {
  34965. source: "./media/characters/kass-lockheed/front.svg",
  34966. extra: 354/343,
  34967. bottom: 9/363
  34968. }
  34969. },
  34970. back: {
  34971. height: math.unit(12 + 6/12, "feet"),
  34972. name: "Back",
  34973. image: {
  34974. source: "./media/characters/kass-lockheed/back.svg",
  34975. extra: 364/352,
  34976. bottom: 3/367
  34977. }
  34978. },
  34979. dick: {
  34980. height: math.unit(3.12, "feet"),
  34981. name: "Dick",
  34982. image: {
  34983. source: "./media/characters/kass-lockheed/dick.svg"
  34984. }
  34985. },
  34986. head: {
  34987. height: math.unit(2.6, "feet"),
  34988. name: "Head",
  34989. image: {
  34990. source: "./media/characters/kass-lockheed/head.svg"
  34991. }
  34992. },
  34993. bleh: {
  34994. height: math.unit(2.85, "feet"),
  34995. name: "Bleh",
  34996. image: {
  34997. source: "./media/characters/kass-lockheed/bleh.svg"
  34998. }
  34999. },
  35000. smug: {
  35001. height: math.unit(2.85, "feet"),
  35002. name: "Smug",
  35003. image: {
  35004. source: "./media/characters/kass-lockheed/smug.svg"
  35005. }
  35006. },
  35007. },
  35008. [
  35009. {
  35010. name: "Normal",
  35011. height: math.unit(12 + 6/12, "feet"),
  35012. default: true
  35013. },
  35014. ]
  35015. ))
  35016. characterMakers.push(() => makeCharacter(
  35017. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35018. {
  35019. front: {
  35020. height: math.unit(6 + 2/12, "feet"),
  35021. name: "Front",
  35022. image: {
  35023. source: "./media/characters/taylor/front.svg",
  35024. extra: 639/495,
  35025. bottom: 12/651
  35026. }
  35027. },
  35028. },
  35029. [
  35030. {
  35031. name: "Normal",
  35032. height: math.unit(6 + 2/12, "feet"),
  35033. default: true
  35034. },
  35035. {
  35036. name: "Big",
  35037. height: math.unit(15, "feet")
  35038. },
  35039. {
  35040. name: "Lorg",
  35041. height: math.unit(80, "feet")
  35042. },
  35043. {
  35044. name: "Too Lorg",
  35045. height: math.unit(120, "feet")
  35046. },
  35047. ]
  35048. ))
  35049. characterMakers.push(() => makeCharacter(
  35050. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35051. {
  35052. front: {
  35053. height: math.unit(15, "feet"),
  35054. name: "Front",
  35055. image: {
  35056. source: "./media/characters/kaizer/front.svg",
  35057. extra: 1612/1436,
  35058. bottom: 43/1655
  35059. }
  35060. },
  35061. },
  35062. [
  35063. {
  35064. name: "Normal",
  35065. height: math.unit(15, "feet"),
  35066. default: true
  35067. },
  35068. ]
  35069. ))
  35070. characterMakers.push(() => makeCharacter(
  35071. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35072. {
  35073. front: {
  35074. height: math.unit(2, "feet"),
  35075. weight: math.unit(30, "lb"),
  35076. name: "Front",
  35077. image: {
  35078. source: "./media/characters/sandy/front.svg",
  35079. extra: 1439/1307,
  35080. bottom: 194/1633
  35081. }
  35082. },
  35083. },
  35084. [
  35085. {
  35086. name: "Normal",
  35087. height: math.unit(2, "feet"),
  35088. default: true
  35089. },
  35090. ]
  35091. ))
  35092. characterMakers.push(() => makeCharacter(
  35093. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35094. {
  35095. front: {
  35096. height: math.unit(3, "feet"),
  35097. name: "Front",
  35098. image: {
  35099. source: "./media/characters/mellvi/front.svg",
  35100. extra: 1831/1630,
  35101. bottom: 58/1889
  35102. }
  35103. },
  35104. },
  35105. [
  35106. {
  35107. name: "Normal",
  35108. height: math.unit(3, "feet"),
  35109. default: true
  35110. },
  35111. ]
  35112. ))
  35113. characterMakers.push(() => makeCharacter(
  35114. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35115. {
  35116. front: {
  35117. height: math.unit(5 + 11/12, "feet"),
  35118. weight: math.unit(200, "lb"),
  35119. name: "Front",
  35120. image: {
  35121. source: "./media/characters/shirou/front.svg",
  35122. extra: 2491/2383,
  35123. bottom: 189/2680
  35124. }
  35125. },
  35126. back: {
  35127. height: math.unit(5 + 11/12, "feet"),
  35128. weight: math.unit(200, "lb"),
  35129. name: "Back",
  35130. image: {
  35131. source: "./media/characters/shirou/back.svg",
  35132. extra: 2554/2450,
  35133. bottom: 76/2630
  35134. }
  35135. },
  35136. },
  35137. [
  35138. {
  35139. name: "Normal",
  35140. height: math.unit(5 + 11/12, "feet"),
  35141. default: true
  35142. },
  35143. ]
  35144. ))
  35145. characterMakers.push(() => makeCharacter(
  35146. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35147. {
  35148. front: {
  35149. height: math.unit(6 + 3/12, "feet"),
  35150. weight: math.unit(177, "lb"),
  35151. name: "Front",
  35152. image: {
  35153. source: "./media/characters/noryu/front.svg",
  35154. extra: 973/885,
  35155. bottom: 10/983
  35156. }
  35157. },
  35158. },
  35159. [
  35160. {
  35161. name: "Normal",
  35162. height: math.unit(6 + 3/12, "feet"),
  35163. default: true
  35164. },
  35165. ]
  35166. ))
  35167. characterMakers.push(() => makeCharacter(
  35168. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35169. {
  35170. front: {
  35171. height: math.unit(5 + 6/12, "feet"),
  35172. weight: math.unit(170, "lb"),
  35173. name: "Front",
  35174. image: {
  35175. source: "./media/characters/mevolas-rubenido/front.svg",
  35176. extra: 2109/1901,
  35177. bottom: 96/2205
  35178. }
  35179. },
  35180. },
  35181. [
  35182. {
  35183. name: "Normal",
  35184. height: math.unit(5 + 6/12, "feet"),
  35185. default: true
  35186. },
  35187. ]
  35188. ))
  35189. characterMakers.push(() => makeCharacter(
  35190. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35191. {
  35192. front: {
  35193. height: math.unit(100, "feet"),
  35194. name: "Front",
  35195. image: {
  35196. source: "./media/characters/dee/front.svg",
  35197. extra: 2153/2036,
  35198. bottom: 59/2212
  35199. }
  35200. },
  35201. back: {
  35202. height: math.unit(100, "feet"),
  35203. name: "Back",
  35204. image: {
  35205. source: "./media/characters/dee/back.svg",
  35206. extra: 2183/2058,
  35207. bottom: 75/2258
  35208. }
  35209. },
  35210. foot: {
  35211. height: math.unit(19.43, "feet"),
  35212. name: "Foot",
  35213. image: {
  35214. source: "./media/characters/dee/foot.svg"
  35215. }
  35216. },
  35217. hoof: {
  35218. height: math.unit(20.6, "feet"),
  35219. name: "Hoof",
  35220. image: {
  35221. source: "./media/characters/dee/hoof.svg"
  35222. }
  35223. },
  35224. },
  35225. [
  35226. {
  35227. name: "Macro",
  35228. height: math.unit(100, "feet"),
  35229. default: true
  35230. },
  35231. ]
  35232. ))
  35233. characterMakers.push(() => makeCharacter(
  35234. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35235. {
  35236. front: {
  35237. height: math.unit(5 + 6/12, "feet"),
  35238. name: "Front",
  35239. image: {
  35240. source: "./media/characters/teh/front.svg",
  35241. extra: 1002/847,
  35242. bottom: 62/1064
  35243. }
  35244. },
  35245. },
  35246. [
  35247. {
  35248. name: "Normal",
  35249. height: math.unit(5 + 6/12, "feet"),
  35250. default: true
  35251. },
  35252. ]
  35253. ))
  35254. characterMakers.push(() => makeCharacter(
  35255. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35256. {
  35257. side: {
  35258. height: math.unit(6 + 1/12, "feet"),
  35259. weight: math.unit(204, "lb"),
  35260. name: "Side",
  35261. image: {
  35262. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35263. extra: 974/775,
  35264. bottom: 169/1143
  35265. }
  35266. },
  35267. sitting: {
  35268. height: math.unit(6 + 2/12, "feet"),
  35269. weight: math.unit(204, "lb"),
  35270. name: "Sitting",
  35271. image: {
  35272. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35273. extra: 1175/964,
  35274. bottom: 378/1553
  35275. }
  35276. },
  35277. },
  35278. [
  35279. {
  35280. name: "Normal",
  35281. height: math.unit(6 + 1/12, "feet"),
  35282. default: true
  35283. },
  35284. ]
  35285. ))
  35286. characterMakers.push(() => makeCharacter(
  35287. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35288. {
  35289. front: {
  35290. height: math.unit(6, "inches"),
  35291. name: "Front",
  35292. image: {
  35293. source: "./media/characters/tululi/front.svg",
  35294. extra: 1997/1876,
  35295. bottom: 20/2017
  35296. }
  35297. },
  35298. },
  35299. [
  35300. {
  35301. name: "Normal",
  35302. height: math.unit(6, "inches"),
  35303. default: true
  35304. },
  35305. ]
  35306. ))
  35307. characterMakers.push(() => makeCharacter(
  35308. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35309. {
  35310. front: {
  35311. height: math.unit(4 + 1/12, "feet"),
  35312. name: "Front",
  35313. image: {
  35314. source: "./media/characters/star/front.svg",
  35315. extra: 1493/1189,
  35316. bottom: 48/1541
  35317. }
  35318. },
  35319. },
  35320. [
  35321. {
  35322. name: "Normal",
  35323. height: math.unit(4 + 1/12, "feet"),
  35324. default: true
  35325. },
  35326. ]
  35327. ))
  35328. characterMakers.push(() => makeCharacter(
  35329. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35330. {
  35331. front: {
  35332. height: math.unit(6 + 3/12, "feet"),
  35333. name: "Front",
  35334. image: {
  35335. source: "./media/characters/comet/front.svg",
  35336. extra: 1681/1462,
  35337. bottom: 26/1707
  35338. }
  35339. },
  35340. },
  35341. [
  35342. {
  35343. name: "Normal",
  35344. height: math.unit(6 + 3/12, "feet"),
  35345. default: true
  35346. },
  35347. ]
  35348. ))
  35349. characterMakers.push(() => makeCharacter(
  35350. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35351. {
  35352. front: {
  35353. height: math.unit(950, "feet"),
  35354. name: "Front",
  35355. image: {
  35356. source: "./media/characters/vortex/front.svg",
  35357. extra: 1497/1434,
  35358. bottom: 56/1553
  35359. }
  35360. },
  35361. maw: {
  35362. height: math.unit(285, "feet"),
  35363. name: "Maw",
  35364. image: {
  35365. source: "./media/characters/vortex/maw.svg"
  35366. }
  35367. },
  35368. },
  35369. [
  35370. {
  35371. name: "Macro",
  35372. height: math.unit(950, "feet"),
  35373. default: true
  35374. },
  35375. ]
  35376. ))
  35377. characterMakers.push(() => makeCharacter(
  35378. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35379. {
  35380. front: {
  35381. height: math.unit(600, "feet"),
  35382. weight: math.unit(0.02, "grams"),
  35383. name: "Front",
  35384. image: {
  35385. source: "./media/characters/doodle/front.svg",
  35386. extra: 1578/1413,
  35387. bottom: 37/1615
  35388. }
  35389. },
  35390. },
  35391. [
  35392. {
  35393. name: "Macro",
  35394. height: math.unit(600, "feet"),
  35395. default: true
  35396. },
  35397. ]
  35398. ))
  35399. characterMakers.push(() => makeCharacter(
  35400. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35401. {
  35402. front: {
  35403. height: math.unit(6 + 6/12, "feet"),
  35404. name: "Front",
  35405. image: {
  35406. source: "./media/characters/jai/front.svg",
  35407. extra: 1645/1534,
  35408. bottom: 115/1760
  35409. }
  35410. },
  35411. },
  35412. [
  35413. {
  35414. name: "Normal",
  35415. height: math.unit(6 + 6/12, "feet"),
  35416. default: true
  35417. },
  35418. ]
  35419. ))
  35420. characterMakers.push(() => makeCharacter(
  35421. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35422. {
  35423. front: {
  35424. height: math.unit(6 + 8/12, "feet"),
  35425. name: "Front",
  35426. image: {
  35427. source: "./media/characters/pixel/front.svg",
  35428. extra: 1900/1735,
  35429. bottom: 63/1963
  35430. }
  35431. },
  35432. },
  35433. [
  35434. {
  35435. name: "Normal",
  35436. height: math.unit(6 + 8/12, "feet"),
  35437. default: true
  35438. },
  35439. ]
  35440. ))
  35441. characterMakers.push(() => makeCharacter(
  35442. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35443. {
  35444. front: {
  35445. height: math.unit(4 + 11/12, "feet"),
  35446. weight: math.unit(111, "lb"),
  35447. name: "Front",
  35448. image: {
  35449. source: "./media/characters/rhett/front.svg",
  35450. extra: 1682/1586,
  35451. bottom: 92/1774
  35452. }
  35453. },
  35454. },
  35455. [
  35456. {
  35457. name: "Mini",
  35458. height: math.unit(1 + 1/12, "feet")
  35459. },
  35460. {
  35461. name: "Normal",
  35462. height: math.unit(4 + 11/12, "feet"),
  35463. default: true
  35464. },
  35465. ]
  35466. ))
  35467. characterMakers.push(() => makeCharacter(
  35468. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35469. {
  35470. front: {
  35471. height: math.unit(3 + 3/12, "feet"),
  35472. name: "Front",
  35473. image: {
  35474. source: "./media/characters/penny/front.svg",
  35475. extra: 1406/1311,
  35476. bottom: 26/1432
  35477. }
  35478. },
  35479. },
  35480. [
  35481. {
  35482. name: "Normal",
  35483. height: math.unit(3 + 3/12, "feet"),
  35484. default: true
  35485. },
  35486. ]
  35487. ))
  35488. characterMakers.push(() => makeCharacter(
  35489. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35490. {
  35491. front: {
  35492. height: math.unit(4 + 11/12, "feet"),
  35493. name: "Front",
  35494. image: {
  35495. source: "./media/characters/monty/front.svg",
  35496. extra: 1479/1209,
  35497. bottom: 0/1479
  35498. }
  35499. },
  35500. },
  35501. [
  35502. {
  35503. name: "Normal",
  35504. height: math.unit(4 + 11/12, "feet"),
  35505. default: true
  35506. },
  35507. ]
  35508. ))
  35509. characterMakers.push(() => makeCharacter(
  35510. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35511. {
  35512. front: {
  35513. height: math.unit(8 + 4/12, "feet"),
  35514. name: "Front",
  35515. image: {
  35516. source: "./media/characters/sterling/front.svg",
  35517. extra: 1420/1236,
  35518. bottom: 27/1447
  35519. }
  35520. },
  35521. },
  35522. [
  35523. {
  35524. name: "Normal",
  35525. height: math.unit(8 + 4/12, "feet"),
  35526. default: true
  35527. },
  35528. ]
  35529. ))
  35530. characterMakers.push(() => makeCharacter(
  35531. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35532. {
  35533. front: {
  35534. height: math.unit(15, "feet"),
  35535. name: "Front",
  35536. image: {
  35537. source: "./media/characters/marble/front.svg",
  35538. extra: 973/937,
  35539. bottom: 32/1005
  35540. }
  35541. },
  35542. },
  35543. [
  35544. {
  35545. name: "Normal",
  35546. height: math.unit(15, "feet"),
  35547. default: true
  35548. },
  35549. ]
  35550. ))
  35551. characterMakers.push(() => makeCharacter(
  35552. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35553. {
  35554. front: {
  35555. height: math.unit(3, "inches"),
  35556. name: "Front",
  35557. image: {
  35558. source: "./media/characters/powder/front.svg",
  35559. extra: 1504/1334,
  35560. bottom: 518/2022
  35561. }
  35562. },
  35563. },
  35564. [
  35565. {
  35566. name: "Normal",
  35567. height: math.unit(3, "inches"),
  35568. default: true
  35569. },
  35570. ]
  35571. ))
  35572. characterMakers.push(() => makeCharacter(
  35573. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35574. {
  35575. front: {
  35576. height: math.unit(4 + 5/12, "feet"),
  35577. name: "Front",
  35578. image: {
  35579. source: "./media/characters/joey-raccoon/front.svg",
  35580. extra: 1273/1197,
  35581. bottom: 0/1273
  35582. }
  35583. },
  35584. },
  35585. [
  35586. {
  35587. name: "Normal",
  35588. height: math.unit(4 + 5/12, "feet"),
  35589. default: true
  35590. },
  35591. ]
  35592. ))
  35593. characterMakers.push(() => makeCharacter(
  35594. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35595. {
  35596. front: {
  35597. height: math.unit(8 + 4/12, "feet"),
  35598. name: "Front",
  35599. image: {
  35600. source: "./media/characters/vick/front.svg",
  35601. extra: 2187/2118,
  35602. bottom: 47/2234
  35603. }
  35604. },
  35605. },
  35606. [
  35607. {
  35608. name: "Normal",
  35609. height: math.unit(8 + 4/12, "feet"),
  35610. default: true
  35611. },
  35612. ]
  35613. ))
  35614. characterMakers.push(() => makeCharacter(
  35615. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35616. {
  35617. front: {
  35618. height: math.unit(5 + 5/12, "feet"),
  35619. name: "Front",
  35620. image: {
  35621. source: "./media/characters/mitsy/front.svg",
  35622. extra: 1842/1695,
  35623. bottom: 0/1842
  35624. }
  35625. },
  35626. },
  35627. [
  35628. {
  35629. name: "Normal",
  35630. height: math.unit(5 + 5/12, "feet"),
  35631. default: true
  35632. },
  35633. ]
  35634. ))
  35635. characterMakers.push(() => makeCharacter(
  35636. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35637. {
  35638. front: {
  35639. height: math.unit(6 + 3/12, "feet"),
  35640. name: "Front",
  35641. image: {
  35642. source: "./media/characters/silvy/front.svg",
  35643. extra: 1995/1836,
  35644. bottom: 225/2220
  35645. }
  35646. },
  35647. },
  35648. [
  35649. {
  35650. name: "Normal",
  35651. height: math.unit(6 + 3/12, "feet"),
  35652. default: true
  35653. },
  35654. ]
  35655. ))
  35656. characterMakers.push(() => makeCharacter(
  35657. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35658. {
  35659. front: {
  35660. height: math.unit(3 + 8/12, "feet"),
  35661. name: "Front",
  35662. image: {
  35663. source: "./media/characters/rodney/front.svg",
  35664. extra: 1956/1747,
  35665. bottom: 31/1987
  35666. }
  35667. },
  35668. frontDressed: {
  35669. height: math.unit(2.9, "feet"),
  35670. name: "Front (Dressed)",
  35671. image: {
  35672. source: "./media/characters/rodney/front-dressed.svg",
  35673. extra: 1382/1241,
  35674. bottom: 385/1767
  35675. }
  35676. },
  35677. },
  35678. [
  35679. {
  35680. name: "Normal",
  35681. height: math.unit(3 + 8/12, "feet"),
  35682. default: true
  35683. },
  35684. ]
  35685. ))
  35686. characterMakers.push(() => makeCharacter(
  35687. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35688. {
  35689. front: {
  35690. height: math.unit(5 + 9/12, "feet"),
  35691. weight: math.unit(194, "lbs"),
  35692. name: "Front",
  35693. image: {
  35694. source: "./media/characters/zakail-sudekai/front.svg",
  35695. extra: 2696/2533,
  35696. bottom: 248/2944
  35697. }
  35698. },
  35699. maw: {
  35700. height: math.unit(1.35, "feet"),
  35701. name: "Maw",
  35702. image: {
  35703. source: "./media/characters/zakail-sudekai/maw.svg"
  35704. }
  35705. },
  35706. },
  35707. [
  35708. {
  35709. name: "Normal",
  35710. height: math.unit(5 + 9/12, "feet"),
  35711. default: true
  35712. },
  35713. ]
  35714. ))
  35715. characterMakers.push(() => makeCharacter(
  35716. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35717. {
  35718. front: {
  35719. height: math.unit(8 + 4/12, "feet"),
  35720. weight: math.unit(1200, "lb"),
  35721. name: "Front",
  35722. image: {
  35723. source: "./media/characters/eleanor/front.svg",
  35724. extra: 1226/1192,
  35725. bottom: 52/1278
  35726. }
  35727. },
  35728. back: {
  35729. height: math.unit(8 + 4/12, "feet"),
  35730. weight: math.unit(1200, "lb"),
  35731. name: "Back",
  35732. image: {
  35733. source: "./media/characters/eleanor/back.svg",
  35734. extra: 1242/1184,
  35735. bottom: 60/1302
  35736. }
  35737. },
  35738. head: {
  35739. height: math.unit(2.62, "feet"),
  35740. name: "Head",
  35741. image: {
  35742. source: "./media/characters/eleanor/head.svg"
  35743. }
  35744. },
  35745. },
  35746. [
  35747. {
  35748. name: "Normal",
  35749. height: math.unit(8 + 4/12, "feet"),
  35750. default: true
  35751. },
  35752. ]
  35753. ))
  35754. characterMakers.push(() => makeCharacter(
  35755. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35756. {
  35757. front: {
  35758. height: math.unit(8 + 4/12, "feet"),
  35759. weight: math.unit(750, "lb"),
  35760. name: "Front",
  35761. image: {
  35762. source: "./media/characters/tanya/front.svg",
  35763. extra: 1749/1615,
  35764. bottom: 33/1782
  35765. }
  35766. },
  35767. },
  35768. [
  35769. {
  35770. name: "Normal",
  35771. height: math.unit(8 + 4/12, "feet"),
  35772. default: true
  35773. },
  35774. ]
  35775. ))
  35776. characterMakers.push(() => makeCharacter(
  35777. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35778. {
  35779. front: {
  35780. height: math.unit(5, "feet"),
  35781. weight: math.unit(225, "lb"),
  35782. name: "Front",
  35783. image: {
  35784. source: "./media/characters/cindy/front.svg",
  35785. extra: 1320/1250,
  35786. bottom: 42/1362
  35787. }
  35788. },
  35789. frontDressed: {
  35790. height: math.unit(5, "feet"),
  35791. weight: math.unit(225, "lb"),
  35792. name: "Front (Dressed)",
  35793. image: {
  35794. source: "./media/characters/cindy/front-dressed.svg",
  35795. extra: 1320/1250,
  35796. bottom: 42/1362
  35797. }
  35798. },
  35799. back: {
  35800. height: math.unit(5, "feet"),
  35801. weight: math.unit(225, "lb"),
  35802. name: "Back",
  35803. image: {
  35804. source: "./media/characters/cindy/back.svg",
  35805. extra: 1384/1346,
  35806. bottom: 14/1398
  35807. }
  35808. },
  35809. },
  35810. [
  35811. {
  35812. name: "Normal",
  35813. height: math.unit(5, "feet"),
  35814. default: true
  35815. },
  35816. ]
  35817. ))
  35818. characterMakers.push(() => makeCharacter(
  35819. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35820. {
  35821. front: {
  35822. height: math.unit(6 + 9/12, "feet"),
  35823. weight: math.unit(440, "lb"),
  35824. name: "Front",
  35825. image: {
  35826. source: "./media/characters/wilbur-owen/front.svg",
  35827. extra: 1575/1448,
  35828. bottom: 72/1647
  35829. }
  35830. },
  35831. back: {
  35832. height: math.unit(6 + 9/12, "feet"),
  35833. weight: math.unit(440, "lb"),
  35834. name: "Back",
  35835. image: {
  35836. source: "./media/characters/wilbur-owen/back.svg",
  35837. extra: 1578/1445,
  35838. bottom: 36/1614
  35839. }
  35840. },
  35841. },
  35842. [
  35843. {
  35844. name: "Normal",
  35845. height: math.unit(6 + 9/12, "feet"),
  35846. default: true
  35847. },
  35848. ]
  35849. ))
  35850. characterMakers.push(() => makeCharacter(
  35851. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35852. {
  35853. front: {
  35854. height: math.unit(6 + 5/12, "feet"),
  35855. weight: math.unit(650, "lb"),
  35856. name: "Front",
  35857. image: {
  35858. source: "./media/characters/keegan/front.svg",
  35859. extra: 2387/2198,
  35860. bottom: 33/2420
  35861. }
  35862. },
  35863. side: {
  35864. height: math.unit(6 + 5/12, "feet"),
  35865. weight: math.unit(650, "lb"),
  35866. name: "Side",
  35867. image: {
  35868. source: "./media/characters/keegan/side.svg",
  35869. extra: 2390/2202,
  35870. bottom: 47/2437
  35871. }
  35872. },
  35873. back: {
  35874. height: math.unit(6 + 5/12, "feet"),
  35875. weight: math.unit(650, "lb"),
  35876. name: "Back",
  35877. image: {
  35878. source: "./media/characters/keegan/back.svg",
  35879. extra: 2418/2268,
  35880. bottom: 15/2433
  35881. }
  35882. },
  35883. frontSfw: {
  35884. height: math.unit(6 + 5/12, "feet"),
  35885. weight: math.unit(650, "lb"),
  35886. name: "Front (SFW)",
  35887. image: {
  35888. source: "./media/characters/keegan/front-sfw.svg",
  35889. extra: 2387/2198,
  35890. bottom: 33/2420
  35891. }
  35892. },
  35893. beans: {
  35894. height: math.unit(1.85, "feet"),
  35895. name: "Beans",
  35896. image: {
  35897. source: "./media/characters/keegan/beans.svg"
  35898. }
  35899. },
  35900. },
  35901. [
  35902. {
  35903. name: "Normal",
  35904. height: math.unit(6 + 5/12, "feet"),
  35905. default: true
  35906. },
  35907. ]
  35908. ))
  35909. characterMakers.push(() => makeCharacter(
  35910. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35911. {
  35912. front: {
  35913. height: math.unit(9, "feet"),
  35914. name: "Front",
  35915. image: {
  35916. source: "./media/characters/colton/front.svg",
  35917. extra: 1589/1326,
  35918. bottom: 139/1728
  35919. }
  35920. },
  35921. },
  35922. [
  35923. {
  35924. name: "Normal",
  35925. height: math.unit(9, "feet"),
  35926. default: true
  35927. },
  35928. ]
  35929. ))
  35930. characterMakers.push(() => makeCharacter(
  35931. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35932. {
  35933. front: {
  35934. height: math.unit(2 + 9/12, "feet"),
  35935. name: "Front",
  35936. image: {
  35937. source: "./media/characters/bora/front.svg",
  35938. extra: 1265/1250,
  35939. bottom: 24/1289
  35940. }
  35941. },
  35942. },
  35943. [
  35944. {
  35945. name: "Normal",
  35946. height: math.unit(2 + 9/12, "feet"),
  35947. default: true
  35948. },
  35949. ]
  35950. ))
  35951. characterMakers.push(() => makeCharacter(
  35952. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35953. {
  35954. front: {
  35955. height: math.unit(8, "feet"),
  35956. name: "Front",
  35957. image: {
  35958. source: "./media/characters/myu-myu/front.svg",
  35959. extra: 1949/1857,
  35960. bottom: 90/2039
  35961. }
  35962. },
  35963. },
  35964. [
  35965. {
  35966. name: "Normal",
  35967. height: math.unit(8, "feet"),
  35968. default: true
  35969. },
  35970. {
  35971. name: "Big",
  35972. height: math.unit(15, "feet")
  35973. },
  35974. {
  35975. name: "BIG",
  35976. height: math.unit(25, "feet")
  35977. },
  35978. ]
  35979. ))
  35980. characterMakers.push(() => makeCharacter(
  35981. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35982. {
  35983. side: {
  35984. height: math.unit(7 + 5/12, "feet"),
  35985. weight: math.unit(2800, "lb"),
  35986. name: "Side",
  35987. image: {
  35988. source: "./media/characters/haloren/side.svg",
  35989. extra: 1793/409,
  35990. bottom: 59/1852
  35991. }
  35992. },
  35993. frontPaw: {
  35994. height: math.unit(2.36, "feet"),
  35995. name: "Front paw",
  35996. image: {
  35997. source: "./media/characters/haloren/front-paw.svg"
  35998. }
  35999. },
  36000. hindPaw: {
  36001. height: math.unit(3.18, "feet"),
  36002. name: "Hind paw",
  36003. image: {
  36004. source: "./media/characters/haloren/hind-paw.svg"
  36005. }
  36006. },
  36007. maw: {
  36008. height: math.unit(5.05, "feet"),
  36009. name: "Maw",
  36010. image: {
  36011. source: "./media/characters/haloren/maw.svg"
  36012. }
  36013. },
  36014. dick: {
  36015. height: math.unit(2.90, "feet"),
  36016. name: "Dick",
  36017. image: {
  36018. source: "./media/characters/haloren/dick.svg"
  36019. }
  36020. },
  36021. },
  36022. [
  36023. {
  36024. name: "Normal",
  36025. height: math.unit(7 + 5/12, "feet"),
  36026. default: true
  36027. },
  36028. {
  36029. name: "Enhanced",
  36030. height: math.unit(14 + 3/12, "feet")
  36031. },
  36032. ]
  36033. ))
  36034. characterMakers.push(() => makeCharacter(
  36035. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36036. {
  36037. front: {
  36038. height: math.unit(171, "cm"),
  36039. name: "Front",
  36040. image: {
  36041. source: "./media/characters/kimmy/front.svg",
  36042. extra: 1491/1435,
  36043. bottom: 53/1544
  36044. }
  36045. },
  36046. },
  36047. [
  36048. {
  36049. name: "Small",
  36050. height: math.unit(9, "cm")
  36051. },
  36052. {
  36053. name: "Normal",
  36054. height: math.unit(171, "cm"),
  36055. default: true
  36056. },
  36057. ]
  36058. ))
  36059. characterMakers.push(() => makeCharacter(
  36060. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36061. {
  36062. front: {
  36063. height: math.unit(8, "feet"),
  36064. weight: math.unit(300, "lb"),
  36065. name: "Front",
  36066. image: {
  36067. source: "./media/characters/galeboomer/front.svg",
  36068. extra: 4651/4415,
  36069. bottom: 162/4813
  36070. }
  36071. },
  36072. back: {
  36073. height: math.unit(8, "feet"),
  36074. weight: math.unit(300, "lb"),
  36075. name: "Back",
  36076. image: {
  36077. source: "./media/characters/galeboomer/back.svg",
  36078. extra: 4544/4314,
  36079. bottom: 16/4560
  36080. }
  36081. },
  36082. frontAlt: {
  36083. height: math.unit(8, "feet"),
  36084. weight: math.unit(300, "lb"),
  36085. name: "Front (Alt)",
  36086. image: {
  36087. source: "./media/characters/galeboomer/front-alt.svg",
  36088. extra: 4458/4228,
  36089. bottom: 68/4526
  36090. }
  36091. },
  36092. maw: {
  36093. height: math.unit(1.2, "feet"),
  36094. name: "Maw",
  36095. image: {
  36096. source: "./media/characters/galeboomer/maw.svg"
  36097. }
  36098. },
  36099. },
  36100. [
  36101. {
  36102. name: "Normal",
  36103. height: math.unit(8, "feet"),
  36104. default: true
  36105. },
  36106. ]
  36107. ))
  36108. characterMakers.push(() => makeCharacter(
  36109. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36110. {
  36111. front: {
  36112. height: math.unit(5 + 9/12, "feet"),
  36113. weight: math.unit(120, "lb"),
  36114. name: "Front",
  36115. image: {
  36116. source: "./media/characters/chyr/front.svg",
  36117. extra: 1323/1254,
  36118. bottom: 63/1386
  36119. }
  36120. },
  36121. back: {
  36122. height: math.unit(5 + 9/12, "feet"),
  36123. weight: math.unit(120, "lb"),
  36124. name: "Back",
  36125. image: {
  36126. source: "./media/characters/chyr/back.svg",
  36127. extra: 1323/1252,
  36128. bottom: 48/1371
  36129. }
  36130. },
  36131. },
  36132. [
  36133. {
  36134. name: "Normal",
  36135. height: math.unit(5 + 9/12, "feet"),
  36136. default: true
  36137. },
  36138. ]
  36139. ))
  36140. characterMakers.push(() => makeCharacter(
  36141. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36142. {
  36143. front: {
  36144. height: math.unit(7, "feet"),
  36145. weight: math.unit(310, "lb"),
  36146. name: "Front",
  36147. image: {
  36148. source: "./media/characters/solarus/front.svg",
  36149. extra: 2415/2021,
  36150. bottom: 103/2518
  36151. }
  36152. },
  36153. back: {
  36154. height: math.unit(7, "feet"),
  36155. weight: math.unit(310, "lb"),
  36156. name: "Back",
  36157. image: {
  36158. source: "./media/characters/solarus/back.svg",
  36159. extra: 2463/2089,
  36160. bottom: 79/2542
  36161. }
  36162. },
  36163. },
  36164. [
  36165. {
  36166. name: "Normal",
  36167. height: math.unit(7, "feet"),
  36168. default: true
  36169. },
  36170. ]
  36171. ))
  36172. characterMakers.push(() => makeCharacter(
  36173. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36174. {
  36175. front: {
  36176. height: math.unit(16, "feet"),
  36177. name: "Front",
  36178. image: {
  36179. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36180. extra: 1844/1780,
  36181. bottom: 58/1902
  36182. }
  36183. },
  36184. winterCoat: {
  36185. height: math.unit(16, "feet"),
  36186. name: "Winter Coat",
  36187. image: {
  36188. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36189. extra: 1807/1775,
  36190. bottom: 69/1876
  36191. }
  36192. },
  36193. },
  36194. [
  36195. {
  36196. name: "Normal",
  36197. height: math.unit(16, "feet"),
  36198. default: true
  36199. },
  36200. {
  36201. name: "Chicago Size",
  36202. height: math.unit(560, "feet")
  36203. },
  36204. ]
  36205. ))
  36206. characterMakers.push(() => makeCharacter(
  36207. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36208. {
  36209. front: {
  36210. height: math.unit(11 + 6/12, "feet"),
  36211. weight: math.unit(1366, "lb"),
  36212. name: "Front",
  36213. image: {
  36214. source: "./media/characters/lexor/front.svg",
  36215. extra: 1560/1481,
  36216. bottom: 211/1771
  36217. }
  36218. },
  36219. back: {
  36220. height: math.unit(11 + 6/12, "feet"),
  36221. weight: math.unit(1366, "lb"),
  36222. name: "Back",
  36223. image: {
  36224. source: "./media/characters/lexor/back.svg",
  36225. extra: 1614/1533,
  36226. bottom: 76/1690
  36227. }
  36228. },
  36229. maw: {
  36230. height: math.unit(3, "feet"),
  36231. name: "Maw",
  36232. image: {
  36233. source: "./media/characters/lexor/maw.svg"
  36234. }
  36235. },
  36236. dick: {
  36237. height: math.unit(2.59, "feet"),
  36238. name: "Dick",
  36239. image: {
  36240. source: "./media/characters/lexor/dick.svg"
  36241. }
  36242. },
  36243. },
  36244. [
  36245. {
  36246. name: "Normal",
  36247. height: math.unit(11 + 6/12, "feet"),
  36248. default: true
  36249. },
  36250. ]
  36251. ))
  36252. characterMakers.push(() => makeCharacter(
  36253. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36254. {
  36255. front: {
  36256. height: math.unit(5 + 8/12, "feet"),
  36257. name: "Front",
  36258. image: {
  36259. source: "./media/characters/magnum/front.svg",
  36260. extra: 942/855,
  36261. bottom: 26/968
  36262. }
  36263. },
  36264. },
  36265. [
  36266. {
  36267. name: "Normal",
  36268. height: math.unit(5 + 8/12, "feet"),
  36269. default: true
  36270. },
  36271. ]
  36272. ))
  36273. characterMakers.push(() => makeCharacter(
  36274. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36275. {
  36276. front: {
  36277. height: math.unit(18 + 4/12, "feet"),
  36278. weight: math.unit(1500, "kg"),
  36279. name: "Front",
  36280. image: {
  36281. source: "./media/characters/solas-sharpsman/front.svg",
  36282. extra: 1698/1589,
  36283. bottom: 0/1698
  36284. }
  36285. },
  36286. },
  36287. [
  36288. {
  36289. name: "Normal",
  36290. height: math.unit(18 + 4/12, "feet"),
  36291. default: true
  36292. },
  36293. ]
  36294. ))
  36295. characterMakers.push(() => makeCharacter(
  36296. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36297. {
  36298. front: {
  36299. height: math.unit(5 + 5/12, "feet"),
  36300. weight: math.unit(180, "lb"),
  36301. name: "Front",
  36302. image: {
  36303. source: "./media/characters/october/front.svg",
  36304. extra: 1800/1650,
  36305. bottom: 0/1800
  36306. }
  36307. },
  36308. frontNsfw: {
  36309. height: math.unit(5 + 5/12, "feet"),
  36310. weight: math.unit(180, "lb"),
  36311. name: "Front (NSFW)",
  36312. image: {
  36313. source: "./media/characters/october/front-nsfw.svg",
  36314. extra: 1392/1307,
  36315. bottom: 42/1434
  36316. }
  36317. },
  36318. },
  36319. [
  36320. {
  36321. name: "Normal",
  36322. height: math.unit(5 + 5/12, "feet"),
  36323. default: true
  36324. },
  36325. ]
  36326. ))
  36327. characterMakers.push(() => makeCharacter(
  36328. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36329. {
  36330. front: {
  36331. height: math.unit(8 + 6/12, "feet"),
  36332. name: "Front",
  36333. image: {
  36334. source: "./media/characters/essynkardi/front.svg",
  36335. extra: 1914/1846,
  36336. bottom: 22/1936
  36337. }
  36338. },
  36339. },
  36340. [
  36341. {
  36342. name: "Normal",
  36343. height: math.unit(8 + 6/12, "feet"),
  36344. default: true
  36345. },
  36346. ]
  36347. ))
  36348. characterMakers.push(() => makeCharacter(
  36349. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36350. {
  36351. front: {
  36352. height: math.unit(6 + 6/12, "feet"),
  36353. weight: math.unit(7, "lb"),
  36354. name: "Front",
  36355. image: {
  36356. source: "./media/characters/icky/front.svg",
  36357. extra: 813/782,
  36358. bottom: 66/879
  36359. }
  36360. },
  36361. back: {
  36362. height: math.unit(6 + 6/12, "feet"),
  36363. weight: math.unit(7, "lb"),
  36364. name: "Back",
  36365. image: {
  36366. source: "./media/characters/icky/back.svg",
  36367. extra: 754/735,
  36368. bottom: 56/810
  36369. }
  36370. },
  36371. },
  36372. [
  36373. {
  36374. name: "Normal",
  36375. height: math.unit(6 + 6/12, "feet"),
  36376. default: true
  36377. },
  36378. ]
  36379. ))
  36380. characterMakers.push(() => makeCharacter(
  36381. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36382. {
  36383. front: {
  36384. height: math.unit(15, "feet"),
  36385. name: "Front",
  36386. image: {
  36387. source: "./media/characters/rojas/front.svg",
  36388. extra: 1462/1408,
  36389. bottom: 95/1557
  36390. }
  36391. },
  36392. back: {
  36393. height: math.unit(15, "feet"),
  36394. name: "Back",
  36395. image: {
  36396. source: "./media/characters/rojas/back.svg",
  36397. extra: 1023/954,
  36398. bottom: 28/1051
  36399. }
  36400. },
  36401. },
  36402. [
  36403. {
  36404. name: "Normal",
  36405. height: math.unit(15, "feet"),
  36406. default: true
  36407. },
  36408. ]
  36409. ))
  36410. characterMakers.push(() => makeCharacter(
  36411. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36412. {
  36413. frontHuman: {
  36414. height: math.unit(5 + 7/12, "feet"),
  36415. name: "Front (Human)",
  36416. image: {
  36417. source: "./media/characters/alek-dryagan/front-human.svg",
  36418. extra: 1687/1667,
  36419. bottom: 69/1756
  36420. }
  36421. },
  36422. backHuman: {
  36423. height: math.unit(5 + 7/12, "feet"),
  36424. name: "Back (Human)",
  36425. image: {
  36426. source: "./media/characters/alek-dryagan/back-human.svg",
  36427. extra: 1670/1649,
  36428. bottom: 65/1735
  36429. }
  36430. },
  36431. frontDemi: {
  36432. height: math.unit(65, "feet"),
  36433. name: "Front (Demi)",
  36434. image: {
  36435. source: "./media/characters/alek-dryagan/front-demi.svg",
  36436. extra: 1669/1642,
  36437. bottom: 49/1718
  36438. }
  36439. },
  36440. backDemi: {
  36441. height: math.unit(65, "feet"),
  36442. name: "Back (Demi)",
  36443. image: {
  36444. source: "./media/characters/alek-dryagan/back-demi.svg",
  36445. extra: 1658/1637,
  36446. bottom: 40/1698
  36447. }
  36448. },
  36449. mawHuman: {
  36450. height: math.unit(0.3, "feet"),
  36451. name: "Maw (Human)",
  36452. image: {
  36453. source: "./media/characters/alek-dryagan/maw-human.svg"
  36454. }
  36455. },
  36456. mawDemi: {
  36457. height: math.unit(3.8, "feet"),
  36458. name: "Maw (Demi)",
  36459. image: {
  36460. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36461. }
  36462. },
  36463. },
  36464. [
  36465. {
  36466. name: "Normal",
  36467. height: math.unit(5 + 7/12, "feet"),
  36468. default: true
  36469. },
  36470. ]
  36471. ))
  36472. characterMakers.push(() => makeCharacter(
  36473. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36474. {
  36475. frontHuman: {
  36476. height: math.unit(5 + 2/12, "feet"),
  36477. name: "Front (Human)",
  36478. image: {
  36479. source: "./media/characters/gen/front-human.svg",
  36480. extra: 1627/1538,
  36481. bottom: 71/1698
  36482. }
  36483. },
  36484. backHuman: {
  36485. height: math.unit(5 + 2/12, "feet"),
  36486. name: "Back (Human)",
  36487. image: {
  36488. source: "./media/characters/gen/back-human.svg",
  36489. extra: 1638/1548,
  36490. bottom: 69/1707
  36491. }
  36492. },
  36493. frontDemi: {
  36494. height: math.unit(5 + 2/12, "feet"),
  36495. name: "Front (Demi)",
  36496. image: {
  36497. source: "./media/characters/gen/front-demi.svg",
  36498. extra: 1627/1538,
  36499. bottom: 71/1698
  36500. }
  36501. },
  36502. backDemi: {
  36503. height: math.unit(5 + 2/12, "feet"),
  36504. name: "Back (Demi)",
  36505. image: {
  36506. source: "./media/characters/gen/back-demi.svg",
  36507. extra: 1638/1548,
  36508. bottom: 69/1707
  36509. }
  36510. },
  36511. },
  36512. [
  36513. {
  36514. name: "Normal",
  36515. height: math.unit(5 + 2/12, "feet"),
  36516. default: true
  36517. },
  36518. ]
  36519. ))
  36520. characterMakers.push(() => makeCharacter(
  36521. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36522. {
  36523. frontImp: {
  36524. height: math.unit(1 + 11/12, "feet"),
  36525. name: "Front (Imp)",
  36526. image: {
  36527. source: "./media/characters/max-kobold/front-imp.svg",
  36528. extra: 1238/1134,
  36529. bottom: 81/1319
  36530. }
  36531. },
  36532. backImp: {
  36533. height: math.unit(1 + 11/12, "feet"),
  36534. name: "Back (Imp)",
  36535. image: {
  36536. source: "./media/characters/max-kobold/back-imp.svg",
  36537. extra: 1334/1175,
  36538. bottom: 34/1368
  36539. }
  36540. },
  36541. frontDemi: {
  36542. height: math.unit(5 + 9/12, "feet"),
  36543. name: "Front (Demi)",
  36544. image: {
  36545. source: "./media/characters/max-kobold/front-demi.svg",
  36546. extra: 1715/1685,
  36547. bottom: 54/1769
  36548. }
  36549. },
  36550. backDemi: {
  36551. height: math.unit(5 + 9/12, "feet"),
  36552. name: "Back (Demi)",
  36553. image: {
  36554. source: "./media/characters/max-kobold/back-demi.svg",
  36555. extra: 1752/1729,
  36556. bottom: 41/1793
  36557. }
  36558. },
  36559. handImp: {
  36560. height: math.unit(0.45, "feet"),
  36561. name: "Hand (Imp)",
  36562. image: {
  36563. source: "./media/characters/max-kobold/hand.svg"
  36564. }
  36565. },
  36566. pawImp: {
  36567. height: math.unit(0.46, "feet"),
  36568. name: "Paw (Imp)",
  36569. image: {
  36570. source: "./media/characters/max-kobold/paw.svg"
  36571. }
  36572. },
  36573. handDemi: {
  36574. height: math.unit(0.80, "feet"),
  36575. name: "Hand (Demi)",
  36576. image: {
  36577. source: "./media/characters/max-kobold/hand.svg"
  36578. }
  36579. },
  36580. pawDemi: {
  36581. height: math.unit(1.1, "feet"),
  36582. name: "Paw (Demi)",
  36583. image: {
  36584. source: "./media/characters/max-kobold/paw.svg"
  36585. }
  36586. },
  36587. headImp: {
  36588. height: math.unit(1.33, "feet"),
  36589. name: "Head (Imp)",
  36590. image: {
  36591. source: "./media/characters/max-kobold/head-imp.svg"
  36592. }
  36593. },
  36594. mawImp: {
  36595. height: math.unit(0.75, "feet"),
  36596. name: "Maw (Imp)",
  36597. image: {
  36598. source: "./media/characters/max-kobold/maw-imp.svg"
  36599. }
  36600. },
  36601. mawDemi: {
  36602. height: math.unit(0.42, "feet"),
  36603. name: "Maw (Demi)",
  36604. image: {
  36605. source: "./media/characters/max-kobold/maw-demi.svg"
  36606. }
  36607. },
  36608. },
  36609. [
  36610. {
  36611. name: "Normal",
  36612. height: math.unit(1 + 11/12, "feet"),
  36613. default: true
  36614. },
  36615. ]
  36616. ))
  36617. characterMakers.push(() => makeCharacter(
  36618. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36619. {
  36620. front: {
  36621. height: math.unit(7 + 5/12, "feet"),
  36622. name: "Front",
  36623. image: {
  36624. source: "./media/characters/carbon/front.svg",
  36625. extra: 1754/1689,
  36626. bottom: 65/1819
  36627. }
  36628. },
  36629. back: {
  36630. height: math.unit(7 + 5/12, "feet"),
  36631. name: "Back",
  36632. image: {
  36633. source: "./media/characters/carbon/back.svg",
  36634. extra: 1762/1695,
  36635. bottom: 24/1786
  36636. }
  36637. },
  36638. frontGigantamax: {
  36639. height: math.unit(150, "feet"),
  36640. name: "Front (Gigantamax)",
  36641. image: {
  36642. source: "./media/characters/carbon/front-gigantamax.svg",
  36643. extra: 1826/1669,
  36644. bottom: 59/1885
  36645. }
  36646. },
  36647. backGigantamax: {
  36648. height: math.unit(150, "feet"),
  36649. name: "Back (Gigantamax)",
  36650. image: {
  36651. source: "./media/characters/carbon/back-gigantamax.svg",
  36652. extra: 1796/1653,
  36653. bottom: 53/1849
  36654. }
  36655. },
  36656. maw: {
  36657. height: math.unit(0.48, "feet"),
  36658. name: "Maw",
  36659. image: {
  36660. source: "./media/characters/carbon/maw.svg"
  36661. }
  36662. },
  36663. mawGigantamax: {
  36664. height: math.unit(7.5, "feet"),
  36665. name: "Maw (Gigantamax)",
  36666. image: {
  36667. source: "./media/characters/carbon/maw-gigantamax.svg"
  36668. }
  36669. },
  36670. },
  36671. [
  36672. {
  36673. name: "Normal",
  36674. height: math.unit(7 + 5/12, "feet"),
  36675. default: true
  36676. },
  36677. ]
  36678. ))
  36679. characterMakers.push(() => makeCharacter(
  36680. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36681. {
  36682. front: {
  36683. height: math.unit(6, "feet"),
  36684. name: "Front",
  36685. image: {
  36686. source: "./media/characters/maverick/front.svg",
  36687. extra: 1672/1661,
  36688. bottom: 85/1757
  36689. }
  36690. },
  36691. back: {
  36692. height: math.unit(6, "feet"),
  36693. name: "Back",
  36694. image: {
  36695. source: "./media/characters/maverick/back.svg",
  36696. extra: 1642/1631,
  36697. bottom: 38/1680
  36698. }
  36699. },
  36700. },
  36701. [
  36702. {
  36703. name: "Normal",
  36704. height: math.unit(6, "feet"),
  36705. default: true
  36706. },
  36707. ]
  36708. ))
  36709. characterMakers.push(() => makeCharacter(
  36710. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36711. {
  36712. front: {
  36713. height: math.unit(15, "feet"),
  36714. weight: math.unit(615, "lb"),
  36715. name: "Front",
  36716. image: {
  36717. source: "./media/characters/grockle/front.svg",
  36718. extra: 1535/1427,
  36719. bottom: 56/1591
  36720. }
  36721. },
  36722. },
  36723. [
  36724. {
  36725. name: "Normal",
  36726. height: math.unit(15, "feet"),
  36727. default: true
  36728. },
  36729. {
  36730. name: "Large",
  36731. height: math.unit(150, "feet")
  36732. },
  36733. {
  36734. name: "Macro",
  36735. height: math.unit(1876, "feet")
  36736. },
  36737. {
  36738. name: "Mega Macro",
  36739. height: math.unit(121940, "feet")
  36740. },
  36741. {
  36742. name: "Giga Macro",
  36743. height: math.unit(750, "km")
  36744. },
  36745. {
  36746. name: "Tera Macro",
  36747. height: math.unit(750000, "km")
  36748. },
  36749. {
  36750. name: "Galactic",
  36751. height: math.unit(1.4e5, "km")
  36752. },
  36753. {
  36754. name: "Godlike",
  36755. height: math.unit(9.8e280, "galaxies")
  36756. },
  36757. ]
  36758. ))
  36759. characterMakers.push(() => makeCharacter(
  36760. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36761. {
  36762. front: {
  36763. height: math.unit(11, "meters"),
  36764. weight: math.unit(20, "tonnes"),
  36765. name: "Front",
  36766. image: {
  36767. source: "./media/characters/alistair/front.svg",
  36768. extra: 1265/1009,
  36769. bottom: 93/1358
  36770. }
  36771. },
  36772. },
  36773. [
  36774. {
  36775. name: "Normal",
  36776. height: math.unit(11, "meters"),
  36777. default: true
  36778. },
  36779. ]
  36780. ))
  36781. characterMakers.push(() => makeCharacter(
  36782. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36783. {
  36784. front: {
  36785. height: math.unit(5 + 8/12, "feet"),
  36786. name: "Front",
  36787. image: {
  36788. source: "./media/characters/haruka/front.svg",
  36789. extra: 2012/1952,
  36790. bottom: 0/2012
  36791. }
  36792. },
  36793. },
  36794. [
  36795. {
  36796. name: "Normal",
  36797. height: math.unit(5 + 8/12, "feet"),
  36798. default: true
  36799. },
  36800. ]
  36801. ))
  36802. characterMakers.push(() => makeCharacter(
  36803. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36804. {
  36805. back: {
  36806. height: math.unit(9, "feet"),
  36807. name: "Back",
  36808. image: {
  36809. source: "./media/characters/vivian-sylveon/back.svg",
  36810. extra: 1853/1714,
  36811. bottom: 0/1853
  36812. }
  36813. },
  36814. },
  36815. [
  36816. {
  36817. name: "Normal",
  36818. height: math.unit(9, "feet"),
  36819. default: true
  36820. },
  36821. {
  36822. name: "Macro",
  36823. height: math.unit(500, "feet")
  36824. },
  36825. {
  36826. name: "Megamacro",
  36827. height: math.unit(600, "miles")
  36828. },
  36829. {
  36830. name: "Gigamacro",
  36831. height: math.unit(30000, "miles")
  36832. },
  36833. ]
  36834. ))
  36835. characterMakers.push(() => makeCharacter(
  36836. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36837. {
  36838. anthro: {
  36839. height: math.unit(5 + 10/12, "feet"),
  36840. weight: math.unit(100, "lb"),
  36841. name: "Anthro",
  36842. image: {
  36843. source: "./media/characters/daiki/anthro.svg",
  36844. extra: 1115/1027,
  36845. bottom: 69/1184
  36846. }
  36847. },
  36848. feral: {
  36849. height: math.unit(200, "feet"),
  36850. name: "Feral",
  36851. image: {
  36852. source: "./media/characters/daiki/feral.svg",
  36853. extra: 1256/313,
  36854. bottom: 39/1295
  36855. }
  36856. },
  36857. feralHead: {
  36858. height: math.unit(171, "feet"),
  36859. name: "Feral Head",
  36860. image: {
  36861. source: "./media/characters/daiki/feral-head.svg"
  36862. }
  36863. },
  36864. manaDragon: {
  36865. height: math.unit(170, "meters"),
  36866. name: "Mana-dragon",
  36867. image: {
  36868. source: "./media/characters/daiki/mana-dragon.svg",
  36869. extra: 763/420,
  36870. bottom: 97/860
  36871. }
  36872. },
  36873. },
  36874. [
  36875. {
  36876. name: "Normal",
  36877. height: math.unit(5 + 10/12, "feet"),
  36878. default: true
  36879. },
  36880. ]
  36881. ))
  36882. characterMakers.push(() => makeCharacter(
  36883. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36884. {
  36885. fullyEquippedFront: {
  36886. height: math.unit(3 + 1/12, "feet"),
  36887. weight: math.unit(24, "lb"),
  36888. name: "Fully Equipped (Front)",
  36889. image: {
  36890. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36891. extra: 687/605,
  36892. bottom: 18/705
  36893. }
  36894. },
  36895. fullyEquippedBack: {
  36896. height: math.unit(3 + 1/12, "feet"),
  36897. weight: math.unit(24, "lb"),
  36898. name: "Fully Equipped (Back)",
  36899. image: {
  36900. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36901. extra: 689/590,
  36902. bottom: 18/707
  36903. }
  36904. },
  36905. dailyWear: {
  36906. height: math.unit(3 + 1/12, "feet"),
  36907. weight: math.unit(24, "lb"),
  36908. name: "Daily Wear",
  36909. image: {
  36910. source: "./media/characters/tea-spot/daily-wear.svg",
  36911. extra: 701/620,
  36912. bottom: 21/722
  36913. }
  36914. },
  36915. maidWork: {
  36916. height: math.unit(3 + 1/12, "feet"),
  36917. weight: math.unit(24, "lb"),
  36918. name: "Maid Work",
  36919. image: {
  36920. source: "./media/characters/tea-spot/maid-work.svg",
  36921. extra: 693/609,
  36922. bottom: 15/708
  36923. }
  36924. },
  36925. },
  36926. [
  36927. {
  36928. name: "Normal",
  36929. height: math.unit(3 + 1/12, "feet"),
  36930. default: true
  36931. },
  36932. ]
  36933. ))
  36934. characterMakers.push(() => makeCharacter(
  36935. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36936. {
  36937. front: {
  36938. height: math.unit(175, "cm"),
  36939. weight: math.unit(75, "kg"),
  36940. name: "Front",
  36941. image: {
  36942. source: "./media/characters/chee/front.svg",
  36943. extra: 1796/1740,
  36944. bottom: 40/1836
  36945. }
  36946. },
  36947. },
  36948. [
  36949. {
  36950. name: "Micro-Micro",
  36951. height: math.unit(1, "nm")
  36952. },
  36953. {
  36954. name: "Micro-erst",
  36955. height: math.unit(1, "micrometer")
  36956. },
  36957. {
  36958. name: "Micro-er",
  36959. height: math.unit(1, "cm")
  36960. },
  36961. {
  36962. name: "Normal",
  36963. height: math.unit(175, "cm"),
  36964. default: true
  36965. },
  36966. {
  36967. name: "Macro",
  36968. height: math.unit(100, "m")
  36969. },
  36970. {
  36971. name: "Macro-er",
  36972. height: math.unit(1, "km")
  36973. },
  36974. {
  36975. name: "Macro-erst",
  36976. height: math.unit(10, "km")
  36977. },
  36978. {
  36979. name: "Macro-Macro",
  36980. height: math.unit(100, "km")
  36981. },
  36982. ]
  36983. ))
  36984. characterMakers.push(() => makeCharacter(
  36985. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36986. {
  36987. front: {
  36988. height: math.unit(11 + 9/12, "feet"),
  36989. weight: math.unit(935, "lb"),
  36990. name: "Front",
  36991. image: {
  36992. source: "./media/characters/kingsley/front.svg",
  36993. extra: 1803/1674,
  36994. bottom: 127/1930
  36995. }
  36996. },
  36997. frontNude: {
  36998. height: math.unit(11 + 9/12, "feet"),
  36999. weight: math.unit(935, "lb"),
  37000. name: "Front (Nude)",
  37001. image: {
  37002. source: "./media/characters/kingsley/front-nude.svg",
  37003. extra: 1803/1674,
  37004. bottom: 127/1930
  37005. }
  37006. },
  37007. },
  37008. [
  37009. {
  37010. name: "Normal",
  37011. height: math.unit(11 + 9/12, "feet"),
  37012. default: true
  37013. },
  37014. ]
  37015. ))
  37016. characterMakers.push(() => makeCharacter(
  37017. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37018. {
  37019. side: {
  37020. height: math.unit(9, "feet"),
  37021. name: "Side",
  37022. image: {
  37023. source: "./media/characters/rymel/side.svg",
  37024. extra: 792/469,
  37025. bottom: 121/913
  37026. }
  37027. },
  37028. maw: {
  37029. height: math.unit(2.4, "meters"),
  37030. name: "Maw",
  37031. image: {
  37032. source: "./media/characters/rymel/maw.svg"
  37033. }
  37034. },
  37035. },
  37036. [
  37037. {
  37038. name: "House Drake",
  37039. height: math.unit(2, "feet")
  37040. },
  37041. {
  37042. name: "Reduced",
  37043. height: math.unit(4.5, "feet")
  37044. },
  37045. {
  37046. name: "Normal",
  37047. height: math.unit(9, "feet"),
  37048. default: true
  37049. },
  37050. ]
  37051. ))
  37052. characterMakers.push(() => makeCharacter(
  37053. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37054. {
  37055. front: {
  37056. height: math.unit(1.74, "meters"),
  37057. weight: math.unit(55, "kg"),
  37058. name: "Front",
  37059. image: {
  37060. source: "./media/characters/rubus/front.svg",
  37061. extra: 1894/1742,
  37062. bottom: 44/1938
  37063. }
  37064. },
  37065. },
  37066. [
  37067. {
  37068. name: "Normal",
  37069. height: math.unit(1.74, "meters"),
  37070. default: true
  37071. },
  37072. ]
  37073. ))
  37074. characterMakers.push(() => makeCharacter(
  37075. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37076. {
  37077. front: {
  37078. height: math.unit(5 + 2/12, "feet"),
  37079. weight: math.unit(112, "lb"),
  37080. name: "Front",
  37081. image: {
  37082. source: "./media/characters/cassie-kingston/front.svg",
  37083. extra: 1438/1390,
  37084. bottom: 47/1485
  37085. }
  37086. },
  37087. },
  37088. [
  37089. {
  37090. name: "Normal",
  37091. height: math.unit(5 + 2/12, "feet"),
  37092. default: true
  37093. },
  37094. {
  37095. name: "Macro",
  37096. height: math.unit(128, "feet")
  37097. },
  37098. {
  37099. name: "Megamacro",
  37100. height: math.unit(2.56, "miles")
  37101. },
  37102. ]
  37103. ))
  37104. characterMakers.push(() => makeCharacter(
  37105. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37106. {
  37107. front: {
  37108. height: math.unit(7, "feet"),
  37109. name: "Front",
  37110. image: {
  37111. source: "./media/characters/fox/front.svg",
  37112. extra: 1798/1703,
  37113. bottom: 55/1853
  37114. }
  37115. },
  37116. back: {
  37117. height: math.unit(7, "feet"),
  37118. name: "Back",
  37119. image: {
  37120. source: "./media/characters/fox/back.svg",
  37121. extra: 1748/1649,
  37122. bottom: 32/1780
  37123. }
  37124. },
  37125. head: {
  37126. height: math.unit(1.95, "feet"),
  37127. name: "Head",
  37128. image: {
  37129. source: "./media/characters/fox/head.svg"
  37130. }
  37131. },
  37132. dick: {
  37133. height: math.unit(1.33, "feet"),
  37134. name: "Dick",
  37135. image: {
  37136. source: "./media/characters/fox/dick.svg"
  37137. }
  37138. },
  37139. foot: {
  37140. height: math.unit(1, "feet"),
  37141. name: "Foot",
  37142. image: {
  37143. source: "./media/characters/fox/foot.svg"
  37144. }
  37145. },
  37146. paw: {
  37147. height: math.unit(0.92, "feet"),
  37148. name: "Paw",
  37149. image: {
  37150. source: "./media/characters/fox/paw.svg"
  37151. }
  37152. },
  37153. },
  37154. [
  37155. {
  37156. name: "Small",
  37157. height: math.unit(3, "inches")
  37158. },
  37159. {
  37160. name: "\"Realistic\"",
  37161. height: math.unit(7, "feet")
  37162. },
  37163. {
  37164. name: "Normal",
  37165. height: math.unit(150, "feet"),
  37166. default: true
  37167. },
  37168. {
  37169. name: "BIG",
  37170. height: math.unit(1200, "feet")
  37171. },
  37172. {
  37173. name: "👀",
  37174. height: math.unit(5, "miles")
  37175. },
  37176. {
  37177. name: "👀👀👀",
  37178. height: math.unit(64, "miles")
  37179. },
  37180. ]
  37181. ))
  37182. characterMakers.push(() => makeCharacter(
  37183. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37184. {
  37185. front: {
  37186. height: math.unit(625, "feet"),
  37187. name: "Front",
  37188. image: {
  37189. source: "./media/characters/asonja-rossa/front.svg",
  37190. extra: 1833/1686,
  37191. bottom: 24/1857
  37192. }
  37193. },
  37194. back: {
  37195. height: math.unit(625, "feet"),
  37196. name: "Back",
  37197. image: {
  37198. source: "./media/characters/asonja-rossa/back.svg",
  37199. extra: 1852/1753,
  37200. bottom: 26/1878
  37201. }
  37202. },
  37203. },
  37204. [
  37205. {
  37206. name: "Macro",
  37207. height: math.unit(625, "feet"),
  37208. default: true
  37209. },
  37210. ]
  37211. ))
  37212. characterMakers.push(() => makeCharacter(
  37213. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37214. {
  37215. side: {
  37216. height: math.unit(8, "feet"),
  37217. name: "Side",
  37218. image: {
  37219. source: "./media/characters/rezukii/side.svg",
  37220. extra: 979/542,
  37221. bottom: 87/1066
  37222. }
  37223. },
  37224. sitting: {
  37225. height: math.unit(14.6, "feet"),
  37226. name: "Sitting",
  37227. image: {
  37228. source: "./media/characters/rezukii/sitting.svg",
  37229. extra: 1023/813,
  37230. bottom: 45/1068
  37231. }
  37232. },
  37233. },
  37234. [
  37235. {
  37236. name: "Tiny",
  37237. height: math.unit(2, "feet")
  37238. },
  37239. {
  37240. name: "Smol",
  37241. height: math.unit(4, "feet")
  37242. },
  37243. {
  37244. name: "Normal",
  37245. height: math.unit(8, "feet"),
  37246. default: true
  37247. },
  37248. {
  37249. name: "Big",
  37250. height: math.unit(12, "feet")
  37251. },
  37252. {
  37253. name: "Macro",
  37254. height: math.unit(30, "feet")
  37255. },
  37256. ]
  37257. ))
  37258. characterMakers.push(() => makeCharacter(
  37259. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37260. {
  37261. front: {
  37262. height: math.unit(14, "feet"),
  37263. weight: math.unit(9.5, "tonnes"),
  37264. name: "Front",
  37265. image: {
  37266. source: "./media/characters/dawnheart/front.svg",
  37267. extra: 2792/2675,
  37268. bottom: 64/2856
  37269. }
  37270. },
  37271. },
  37272. [
  37273. {
  37274. name: "Normal",
  37275. height: math.unit(14, "feet"),
  37276. default: true
  37277. },
  37278. ]
  37279. ))
  37280. characterMakers.push(() => makeCharacter(
  37281. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37282. {
  37283. front: {
  37284. height: math.unit(1.7, "m"),
  37285. name: "Front",
  37286. image: {
  37287. source: "./media/characters/gladi/front.svg",
  37288. extra: 1460/1362,
  37289. bottom: 19/1479
  37290. }
  37291. },
  37292. back: {
  37293. height: math.unit(1.7, "m"),
  37294. name: "Back",
  37295. image: {
  37296. source: "./media/characters/gladi/back.svg",
  37297. extra: 1459/1357,
  37298. bottom: 12/1471
  37299. }
  37300. },
  37301. feral: {
  37302. height: math.unit(2.05, "m"),
  37303. name: "Feral",
  37304. image: {
  37305. source: "./media/characters/gladi/feral.svg",
  37306. extra: 821/557,
  37307. bottom: 91/912
  37308. }
  37309. },
  37310. },
  37311. [
  37312. {
  37313. name: "Shortest",
  37314. height: math.unit(70, "cm")
  37315. },
  37316. {
  37317. name: "Normal",
  37318. height: math.unit(1.7, "m")
  37319. },
  37320. {
  37321. name: "Macro",
  37322. height: math.unit(10, "m"),
  37323. default: true
  37324. },
  37325. {
  37326. name: "Tallest",
  37327. height: math.unit(200, "m")
  37328. },
  37329. ]
  37330. ))
  37331. characterMakers.push(() => makeCharacter(
  37332. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37333. {
  37334. front: {
  37335. height: math.unit(5 + 7/12, "feet"),
  37336. weight: math.unit(2, "tons"),
  37337. name: "Front",
  37338. image: {
  37339. source: "./media/characters/erdno/front.svg",
  37340. extra: 1234/1129,
  37341. bottom: 35/1269
  37342. }
  37343. },
  37344. angled: {
  37345. height: math.unit(5 + 7/12, "feet"),
  37346. weight: math.unit(2, "tons"),
  37347. name: "Angled",
  37348. image: {
  37349. source: "./media/characters/erdno/angled.svg",
  37350. extra: 1185/1139,
  37351. bottom: 36/1221
  37352. }
  37353. },
  37354. side: {
  37355. height: math.unit(5 + 7/12, "feet"),
  37356. weight: math.unit(2, "tons"),
  37357. name: "Side",
  37358. image: {
  37359. source: "./media/characters/erdno/side.svg",
  37360. extra: 1191/1144,
  37361. bottom: 40/1231
  37362. }
  37363. },
  37364. back: {
  37365. height: math.unit(5 + 7/12, "feet"),
  37366. weight: math.unit(2, "tons"),
  37367. name: "Back",
  37368. image: {
  37369. source: "./media/characters/erdno/back.svg",
  37370. extra: 1202/1146,
  37371. bottom: 17/1219
  37372. }
  37373. },
  37374. frontNsfw: {
  37375. height: math.unit(5 + 7/12, "feet"),
  37376. weight: math.unit(2, "tons"),
  37377. name: "Front (NSFW)",
  37378. image: {
  37379. source: "./media/characters/erdno/front-nsfw.svg",
  37380. extra: 1234/1129,
  37381. bottom: 35/1269
  37382. }
  37383. },
  37384. angledNsfw: {
  37385. height: math.unit(5 + 7/12, "feet"),
  37386. weight: math.unit(2, "tons"),
  37387. name: "Angled (NSFW)",
  37388. image: {
  37389. source: "./media/characters/erdno/angled-nsfw.svg",
  37390. extra: 1185/1139,
  37391. bottom: 36/1221
  37392. }
  37393. },
  37394. sideNsfw: {
  37395. height: math.unit(5 + 7/12, "feet"),
  37396. weight: math.unit(2, "tons"),
  37397. name: "Side (NSFW)",
  37398. image: {
  37399. source: "./media/characters/erdno/side-nsfw.svg",
  37400. extra: 1191/1144,
  37401. bottom: 40/1231
  37402. }
  37403. },
  37404. backNsfw: {
  37405. height: math.unit(5 + 7/12, "feet"),
  37406. weight: math.unit(2, "tons"),
  37407. name: "Back (NSFW)",
  37408. image: {
  37409. source: "./media/characters/erdno/back-nsfw.svg",
  37410. extra: 1202/1146,
  37411. bottom: 17/1219
  37412. }
  37413. },
  37414. frontHyper: {
  37415. height: math.unit(5 + 7/12, "feet"),
  37416. weight: math.unit(2, "tons"),
  37417. name: "Front (Hyper)",
  37418. image: {
  37419. source: "./media/characters/erdno/front-hyper.svg",
  37420. extra: 1298/1136,
  37421. bottom: 35/1333
  37422. }
  37423. },
  37424. },
  37425. [
  37426. {
  37427. name: "Normal",
  37428. height: math.unit(5 + 7/12, "feet"),
  37429. default: true
  37430. },
  37431. {
  37432. name: "Big",
  37433. height: math.unit(5.7, "meters")
  37434. },
  37435. {
  37436. name: "Macro",
  37437. height: math.unit(5.7, "kilometers")
  37438. },
  37439. {
  37440. name: "Megamacro",
  37441. height: math.unit(5.7, "earths")
  37442. },
  37443. ]
  37444. ))
  37445. characterMakers.push(() => makeCharacter(
  37446. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37447. {
  37448. front: {
  37449. height: math.unit(5 + 10/12, "feet"),
  37450. weight: math.unit(150, "lb"),
  37451. name: "Front",
  37452. image: {
  37453. source: "./media/characters/jamie/front.svg",
  37454. extra: 1908/1768,
  37455. bottom: 19/1927
  37456. }
  37457. },
  37458. },
  37459. [
  37460. {
  37461. name: "Minimum",
  37462. height: math.unit(2, "cm")
  37463. },
  37464. {
  37465. name: "Micro",
  37466. height: math.unit(3, "inches")
  37467. },
  37468. {
  37469. name: "Normal",
  37470. height: math.unit(5 + 10/12, "feet"),
  37471. default: true
  37472. },
  37473. {
  37474. name: "Macro",
  37475. height: math.unit(150, "feet")
  37476. },
  37477. {
  37478. name: "Megamacro",
  37479. height: math.unit(10000, "m")
  37480. },
  37481. ]
  37482. ))
  37483. characterMakers.push(() => makeCharacter(
  37484. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37485. {
  37486. front: {
  37487. height: math.unit(2, "meters"),
  37488. weight: math.unit(100, "kg"),
  37489. name: "Front",
  37490. image: {
  37491. source: "./media/characters/shiron/front.svg",
  37492. extra: 2103/1985,
  37493. bottom: 98/2201
  37494. }
  37495. },
  37496. back: {
  37497. height: math.unit(2, "meters"),
  37498. weight: math.unit(100, "kg"),
  37499. name: "Back",
  37500. image: {
  37501. source: "./media/characters/shiron/back.svg",
  37502. extra: 2110/2015,
  37503. bottom: 89/2199
  37504. }
  37505. },
  37506. hand: {
  37507. height: math.unit(0.96, "feet"),
  37508. name: "Hand",
  37509. image: {
  37510. source: "./media/characters/shiron/hand.svg"
  37511. }
  37512. },
  37513. foot: {
  37514. height: math.unit(1.464, "feet"),
  37515. name: "Foot",
  37516. image: {
  37517. source: "./media/characters/shiron/foot.svg"
  37518. }
  37519. },
  37520. },
  37521. [
  37522. {
  37523. name: "Normal",
  37524. height: math.unit(2, "meters")
  37525. },
  37526. {
  37527. name: "Macro",
  37528. height: math.unit(500, "meters"),
  37529. default: true
  37530. },
  37531. {
  37532. name: "Megamacro",
  37533. height: math.unit(20, "km")
  37534. },
  37535. ]
  37536. ))
  37537. characterMakers.push(() => makeCharacter(
  37538. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37539. {
  37540. front: {
  37541. height: math.unit(6, "feet"),
  37542. name: "Front",
  37543. image: {
  37544. source: "./media/characters/sam/front.svg",
  37545. extra: 849/826,
  37546. bottom: 19/868
  37547. }
  37548. },
  37549. },
  37550. [
  37551. {
  37552. name: "Normal",
  37553. height: math.unit(6, "feet"),
  37554. default: true
  37555. },
  37556. ]
  37557. ))
  37558. characterMakers.push(() => makeCharacter(
  37559. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37560. {
  37561. front: {
  37562. height: math.unit(8 + 4/12, "feet"),
  37563. weight: math.unit(122, "kg"),
  37564. name: "Front",
  37565. image: {
  37566. source: "./media/characters/namori-kurogawa/front.svg",
  37567. extra: 1894/1576,
  37568. bottom: 34/1928
  37569. }
  37570. },
  37571. },
  37572. [
  37573. {
  37574. name: "Normal",
  37575. height: math.unit(8 + 4/12, "feet"),
  37576. default: true
  37577. },
  37578. ]
  37579. ))
  37580. characterMakers.push(() => makeCharacter(
  37581. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37582. {
  37583. front: {
  37584. height: math.unit(9, "feet"),
  37585. weight: math.unit(621, "lb"),
  37586. name: "Front",
  37587. image: {
  37588. source: "./media/characters/unmru/front.svg",
  37589. extra: 1853/1747,
  37590. bottom: 73/1926
  37591. }
  37592. },
  37593. side: {
  37594. height: math.unit(9, "feet"),
  37595. weight: math.unit(621, "lb"),
  37596. name: "Side",
  37597. image: {
  37598. source: "./media/characters/unmru/side.svg",
  37599. extra: 1781/1671,
  37600. bottom: 127/1908
  37601. }
  37602. },
  37603. back: {
  37604. height: math.unit(9, "feet"),
  37605. weight: math.unit(621, "lb"),
  37606. name: "Back",
  37607. image: {
  37608. source: "./media/characters/unmru/back.svg",
  37609. extra: 1894/1765,
  37610. bottom: 75/1969
  37611. }
  37612. },
  37613. dick: {
  37614. height: math.unit(3, "feet"),
  37615. weight: math.unit(35, "lb"),
  37616. name: "Dick",
  37617. image: {
  37618. source: "./media/characters/unmru/dick.svg"
  37619. }
  37620. },
  37621. },
  37622. [
  37623. {
  37624. name: "Normal",
  37625. height: math.unit(9, "feet")
  37626. },
  37627. {
  37628. name: "Natural",
  37629. height: math.unit(27, "feet"),
  37630. default: true
  37631. },
  37632. {
  37633. name: "Giant",
  37634. height: math.unit(90, "feet")
  37635. },
  37636. {
  37637. name: "Kaiju",
  37638. height: math.unit(270, "feet")
  37639. },
  37640. {
  37641. name: "Macro",
  37642. height: math.unit(900, "feet")
  37643. },
  37644. {
  37645. name: "Macro+",
  37646. height: math.unit(2700, "feet")
  37647. },
  37648. {
  37649. name: "Megamacro",
  37650. height: math.unit(9000, "feet")
  37651. },
  37652. {
  37653. name: "City-Crushing",
  37654. height: math.unit(27000, "feet")
  37655. },
  37656. {
  37657. name: "Mountain-Mashing",
  37658. height: math.unit(90000, "feet")
  37659. },
  37660. {
  37661. name: "Earth-Eclipsing",
  37662. height: math.unit(2.7e8, "feet")
  37663. },
  37664. {
  37665. name: "Sol-Swallowing",
  37666. height: math.unit(9e10, "feet")
  37667. },
  37668. {
  37669. name: "Majoris-Munching",
  37670. height: math.unit(2.7e13, "feet")
  37671. },
  37672. ]
  37673. ))
  37674. characterMakers.push(() => makeCharacter(
  37675. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37676. {
  37677. front: {
  37678. height: math.unit(1, "inch"),
  37679. name: "Front",
  37680. image: {
  37681. source: "./media/characters/squeaks-mouse/front.svg",
  37682. extra: 352/308,
  37683. bottom: 25/377
  37684. }
  37685. },
  37686. },
  37687. [
  37688. {
  37689. name: "Micro",
  37690. height: math.unit(1, "inch"),
  37691. default: true
  37692. },
  37693. ]
  37694. ))
  37695. characterMakers.push(() => makeCharacter(
  37696. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37697. {
  37698. side: {
  37699. height: math.unit(35, "feet"),
  37700. name: "Side",
  37701. image: {
  37702. source: "./media/characters/sayko/side.svg",
  37703. extra: 1697/1021,
  37704. bottom: 82/1779
  37705. }
  37706. },
  37707. head: {
  37708. height: math.unit(16, "feet"),
  37709. name: "Head",
  37710. image: {
  37711. source: "./media/characters/sayko/head.svg"
  37712. }
  37713. },
  37714. forepaw: {
  37715. height: math.unit(7.85, "feet"),
  37716. name: "Forepaw",
  37717. image: {
  37718. source: "./media/characters/sayko/forepaw.svg"
  37719. }
  37720. },
  37721. hindpaw: {
  37722. height: math.unit(8.8, "feet"),
  37723. name: "Hindpaw",
  37724. image: {
  37725. source: "./media/characters/sayko/hindpaw.svg"
  37726. }
  37727. },
  37728. },
  37729. [
  37730. {
  37731. name: "Normal",
  37732. height: math.unit(35, "feet"),
  37733. default: true
  37734. },
  37735. {
  37736. name: "Colossus",
  37737. height: math.unit(100, "meters")
  37738. },
  37739. {
  37740. name: "\"Small\" Deity",
  37741. height: math.unit(1, "km")
  37742. },
  37743. {
  37744. name: "\"Large\" Deity",
  37745. height: math.unit(15, "km")
  37746. },
  37747. ]
  37748. ))
  37749. characterMakers.push(() => makeCharacter(
  37750. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37751. {
  37752. front: {
  37753. height: math.unit(6, "feet"),
  37754. weight: math.unit(250, "lb"),
  37755. name: "Front",
  37756. image: {
  37757. source: "./media/characters/mukiro/front.svg",
  37758. extra: 1368/1310,
  37759. bottom: 34/1402
  37760. }
  37761. },
  37762. },
  37763. [
  37764. {
  37765. name: "Normal",
  37766. height: math.unit(6, "feet"),
  37767. default: true
  37768. },
  37769. ]
  37770. ))
  37771. characterMakers.push(() => makeCharacter(
  37772. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37773. {
  37774. front: {
  37775. height: math.unit(12 + 4/12, "feet"),
  37776. name: "Front",
  37777. image: {
  37778. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37779. extra: 1346/1311,
  37780. bottom: 65/1411
  37781. }
  37782. },
  37783. },
  37784. [
  37785. {
  37786. name: "Base",
  37787. height: math.unit(12 + 4/12, "feet"),
  37788. default: true
  37789. },
  37790. {
  37791. name: "Macro",
  37792. height: math.unit(150, "feet")
  37793. },
  37794. {
  37795. name: "Mega",
  37796. height: math.unit(2, "miles")
  37797. },
  37798. {
  37799. name: "Demi God",
  37800. height: math.unit(4, "AU")
  37801. },
  37802. {
  37803. name: "God Size",
  37804. height: math.unit(1, "universe")
  37805. },
  37806. ]
  37807. ))
  37808. characterMakers.push(() => makeCharacter(
  37809. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37810. {
  37811. front: {
  37812. height: math.unit(3 + 3/12, "feet"),
  37813. weight: math.unit(88, "lb"),
  37814. name: "Front",
  37815. image: {
  37816. source: "./media/characters/trey/front.svg",
  37817. extra: 1815/1509,
  37818. bottom: 60/1875
  37819. }
  37820. },
  37821. },
  37822. [
  37823. {
  37824. name: "Normal",
  37825. height: math.unit(3 + 3/12, "feet"),
  37826. default: true
  37827. },
  37828. ]
  37829. ))
  37830. characterMakers.push(() => makeCharacter(
  37831. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37832. {
  37833. front: {
  37834. height: math.unit(4, "meters"),
  37835. name: "Front",
  37836. image: {
  37837. source: "./media/characters/adelonda/front.svg",
  37838. extra: 1077/982,
  37839. bottom: 39/1116
  37840. }
  37841. },
  37842. back: {
  37843. height: math.unit(4, "meters"),
  37844. name: "Back",
  37845. image: {
  37846. source: "./media/characters/adelonda/back.svg",
  37847. extra: 1105/1003,
  37848. bottom: 25/1130
  37849. }
  37850. },
  37851. },
  37852. [
  37853. {
  37854. name: "Normal",
  37855. height: math.unit(4, "meters"),
  37856. default: true
  37857. },
  37858. ]
  37859. ))
  37860. characterMakers.push(() => makeCharacter(
  37861. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37862. {
  37863. front: {
  37864. height: math.unit(8 + 4/12, "feet"),
  37865. weight: math.unit(670, "lb"),
  37866. name: "Front",
  37867. image: {
  37868. source: "./media/characters/acadiel/front.svg",
  37869. extra: 1901/1595,
  37870. bottom: 142/2043
  37871. }
  37872. },
  37873. },
  37874. [
  37875. {
  37876. name: "Normal",
  37877. height: math.unit(8 + 4/12, "feet"),
  37878. default: true
  37879. },
  37880. {
  37881. name: "Macro",
  37882. height: math.unit(200, "feet")
  37883. },
  37884. ]
  37885. ))
  37886. characterMakers.push(() => makeCharacter(
  37887. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37888. {
  37889. front: {
  37890. height: math.unit(6 + 2/12, "feet"),
  37891. weight: math.unit(185, "lb"),
  37892. name: "Front",
  37893. image: {
  37894. source: "./media/characters/kayne-ein/front.svg",
  37895. extra: 1780/1560,
  37896. bottom: 81/1861
  37897. }
  37898. },
  37899. },
  37900. [
  37901. {
  37902. name: "Normal",
  37903. height: math.unit(6 + 2/12, "feet"),
  37904. default: true
  37905. },
  37906. {
  37907. name: "Transformation Stage",
  37908. height: math.unit(15, "feet")
  37909. },
  37910. {
  37911. name: "Macro",
  37912. height: math.unit(150, "feet")
  37913. },
  37914. {
  37915. name: "Earth's Shadow",
  37916. height: math.unit(6200, "miles")
  37917. },
  37918. {
  37919. name: "Universal Demon",
  37920. height: math.unit(28e9, "parsecs")
  37921. },
  37922. {
  37923. name: "Multiverse God",
  37924. height: math.unit(3, "multiverses")
  37925. },
  37926. ]
  37927. ))
  37928. characterMakers.push(() => makeCharacter(
  37929. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37930. {
  37931. front: {
  37932. height: math.unit(5 + 5/12, "feet"),
  37933. name: "Front",
  37934. image: {
  37935. source: "./media/characters/fawn/front.svg",
  37936. extra: 1873/1731,
  37937. bottom: 95/1968
  37938. }
  37939. },
  37940. back: {
  37941. height: math.unit(5 + 5/12, "feet"),
  37942. name: "Back",
  37943. image: {
  37944. source: "./media/characters/fawn/back.svg",
  37945. extra: 1813/1700,
  37946. bottom: 14/1827
  37947. }
  37948. },
  37949. hoof: {
  37950. height: math.unit(1.45, "feet"),
  37951. name: "Hoof",
  37952. image: {
  37953. source: "./media/characters/fawn/hoof.svg"
  37954. }
  37955. },
  37956. },
  37957. [
  37958. {
  37959. name: "Normal",
  37960. height: math.unit(5 + 5/12, "feet"),
  37961. default: true
  37962. },
  37963. ]
  37964. ))
  37965. characterMakers.push(() => makeCharacter(
  37966. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37967. {
  37968. front: {
  37969. height: math.unit(2 + 5/12, "feet"),
  37970. name: "Front",
  37971. image: {
  37972. source: "./media/characters/orion/front.svg",
  37973. extra: 1366/1304,
  37974. bottom: 43/1409
  37975. }
  37976. },
  37977. paw: {
  37978. height: math.unit(0.52, "feet"),
  37979. name: "Paw",
  37980. image: {
  37981. source: "./media/characters/orion/paw.svg"
  37982. }
  37983. },
  37984. },
  37985. [
  37986. {
  37987. name: "Normal",
  37988. height: math.unit(2 + 5/12, "feet"),
  37989. default: true
  37990. },
  37991. ]
  37992. ))
  37993. characterMakers.push(() => makeCharacter(
  37994. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37995. {
  37996. front: {
  37997. height: math.unit(5 + 10/12, "feet"),
  37998. name: "Front",
  37999. image: {
  38000. source: "./media/characters/vera/front.svg",
  38001. extra: 1680/1575,
  38002. bottom: 49/1729
  38003. }
  38004. },
  38005. back: {
  38006. height: math.unit(5 + 10/12, "feet"),
  38007. name: "Back",
  38008. image: {
  38009. source: "./media/characters/vera/back.svg",
  38010. extra: 1700/1588,
  38011. bottom: 18/1718
  38012. }
  38013. },
  38014. arcanine: {
  38015. height: math.unit(6 + 8/12, "feet"),
  38016. name: "Arcanine",
  38017. image: {
  38018. source: "./media/characters/vera/arcanine.svg",
  38019. extra: 1590/1511,
  38020. bottom: 71/1661
  38021. }
  38022. },
  38023. maw: {
  38024. height: math.unit(0.82, "feet"),
  38025. name: "Maw",
  38026. image: {
  38027. source: "./media/characters/vera/maw.svg"
  38028. }
  38029. },
  38030. mawArcanine: {
  38031. height: math.unit(0.97, "feet"),
  38032. name: "Maw (Arcanine)",
  38033. image: {
  38034. source: "./media/characters/vera/maw-arcanine.svg"
  38035. }
  38036. },
  38037. paw: {
  38038. height: math.unit(0.75, "feet"),
  38039. name: "Paw",
  38040. image: {
  38041. source: "./media/characters/vera/paw.svg"
  38042. }
  38043. },
  38044. pawprint: {
  38045. height: math.unit(0.52, "feet"),
  38046. name: "Pawprint",
  38047. image: {
  38048. source: "./media/characters/vera/pawprint.svg"
  38049. }
  38050. },
  38051. },
  38052. [
  38053. {
  38054. name: "Normal",
  38055. height: math.unit(5 + 10/12, "feet"),
  38056. default: true
  38057. },
  38058. {
  38059. name: "Macro",
  38060. height: math.unit(75, "feet")
  38061. },
  38062. ]
  38063. ))
  38064. characterMakers.push(() => makeCharacter(
  38065. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38066. {
  38067. front: {
  38068. height: math.unit(4, "feet"),
  38069. weight: math.unit(40, "lb"),
  38070. name: "Front",
  38071. image: {
  38072. source: "./media/characters/orvan-rabbit/front.svg",
  38073. extra: 1896/1642,
  38074. bottom: 29/1925
  38075. }
  38076. },
  38077. },
  38078. [
  38079. {
  38080. name: "Normal",
  38081. height: math.unit(4, "feet"),
  38082. default: true
  38083. },
  38084. ]
  38085. ))
  38086. characterMakers.push(() => makeCharacter(
  38087. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38088. {
  38089. front: {
  38090. height: math.unit(6, "feet"),
  38091. weight: math.unit(168, "lb"),
  38092. name: "Front",
  38093. image: {
  38094. source: "./media/characters/lisa/front.svg",
  38095. extra: 2065/1867,
  38096. bottom: 46/2111
  38097. }
  38098. },
  38099. back: {
  38100. height: math.unit(6, "feet"),
  38101. weight: math.unit(168, "lb"),
  38102. name: "Back",
  38103. image: {
  38104. source: "./media/characters/lisa/back.svg",
  38105. extra: 1982/1838,
  38106. bottom: 29/2011
  38107. }
  38108. },
  38109. maw: {
  38110. height: math.unit(0.81, "feet"),
  38111. name: "Maw",
  38112. image: {
  38113. source: "./media/characters/lisa/maw.svg"
  38114. }
  38115. },
  38116. paw: {
  38117. height: math.unit(0.9, "feet"),
  38118. name: "Paw",
  38119. image: {
  38120. source: "./media/characters/lisa/paw.svg"
  38121. }
  38122. },
  38123. caribousune: {
  38124. height: math.unit(7 + 2/12, "feet"),
  38125. weight: math.unit(268, "lb"),
  38126. name: "Caribousune",
  38127. image: {
  38128. source: "./media/characters/lisa/caribousune.svg",
  38129. extra: 1843/1633,
  38130. bottom: 29/1872
  38131. }
  38132. },
  38133. frontCaribousune: {
  38134. height: math.unit(7 + 2/12, "feet"),
  38135. weight: math.unit(268, "lb"),
  38136. name: "Front (Caribousune)",
  38137. image: {
  38138. source: "./media/characters/lisa/front-caribousune.svg",
  38139. extra: 1818/1638,
  38140. bottom: 52/1870
  38141. }
  38142. },
  38143. sideCaribousune: {
  38144. height: math.unit(7 + 2/12, "feet"),
  38145. weight: math.unit(268, "lb"),
  38146. name: "Side (Caribousune)",
  38147. image: {
  38148. source: "./media/characters/lisa/side-caribousune.svg",
  38149. extra: 1851/1635,
  38150. bottom: 16/1867
  38151. }
  38152. },
  38153. backCaribousune: {
  38154. height: math.unit(7 + 2/12, "feet"),
  38155. weight: math.unit(268, "lb"),
  38156. name: "Back (Caribousune)",
  38157. image: {
  38158. source: "./media/characters/lisa/back-caribousune.svg",
  38159. extra: 1801/1604,
  38160. bottom: 44/1845
  38161. }
  38162. },
  38163. caribou: {
  38164. height: math.unit(7 + 2/12, "feet"),
  38165. weight: math.unit(268, "lb"),
  38166. name: "Caribou",
  38167. image: {
  38168. source: "./media/characters/lisa/caribou.svg",
  38169. extra: 1843/1633,
  38170. bottom: 29/1872
  38171. }
  38172. },
  38173. frontCaribou: {
  38174. height: math.unit(7 + 2/12, "feet"),
  38175. weight: math.unit(268, "lb"),
  38176. name: "Front (Caribou)",
  38177. image: {
  38178. source: "./media/characters/lisa/front-caribou.svg",
  38179. extra: 1818/1638,
  38180. bottom: 52/1870
  38181. }
  38182. },
  38183. sideCaribou: {
  38184. height: math.unit(7 + 2/12, "feet"),
  38185. weight: math.unit(268, "lb"),
  38186. name: "Side (Caribou)",
  38187. image: {
  38188. source: "./media/characters/lisa/side-caribou.svg",
  38189. extra: 1851/1635,
  38190. bottom: 16/1867
  38191. }
  38192. },
  38193. backCaribou: {
  38194. height: math.unit(7 + 2/12, "feet"),
  38195. weight: math.unit(268, "lb"),
  38196. name: "Back (Caribou)",
  38197. image: {
  38198. source: "./media/characters/lisa/back-caribou.svg",
  38199. extra: 1801/1604,
  38200. bottom: 44/1845
  38201. }
  38202. },
  38203. mawCaribou: {
  38204. height: math.unit(1.45, "feet"),
  38205. name: "Maw (Caribou)",
  38206. image: {
  38207. source: "./media/characters/lisa/maw-caribou.svg"
  38208. }
  38209. },
  38210. mawCaribousune: {
  38211. height: math.unit(1.45, "feet"),
  38212. name: "Maw (Caribousune)",
  38213. image: {
  38214. source: "./media/characters/lisa/maw-caribousune.svg"
  38215. }
  38216. },
  38217. pawCaribousune: {
  38218. height: math.unit(1.61, "feet"),
  38219. name: "Paw (Caribou)",
  38220. image: {
  38221. source: "./media/characters/lisa/paw-caribousune.svg"
  38222. }
  38223. },
  38224. },
  38225. [
  38226. {
  38227. name: "Normal",
  38228. height: math.unit(6, "feet")
  38229. },
  38230. {
  38231. name: "God Size",
  38232. height: math.unit(72, "feet"),
  38233. default: true
  38234. },
  38235. {
  38236. name: "Towering",
  38237. height: math.unit(288, "feet")
  38238. },
  38239. {
  38240. name: "City Size",
  38241. height: math.unit(48384, "feet")
  38242. },
  38243. {
  38244. name: "Continental",
  38245. height: math.unit(4200, "miles")
  38246. },
  38247. {
  38248. name: "Planet Eater",
  38249. height: math.unit(42, "earths")
  38250. },
  38251. {
  38252. name: "Star Swallower",
  38253. height: math.unit(42, "solarradii")
  38254. },
  38255. {
  38256. name: "System Swallower",
  38257. height: math.unit(84000, "AU")
  38258. },
  38259. {
  38260. name: "Galaxy Gobbler",
  38261. height: math.unit(42, "galaxies")
  38262. },
  38263. {
  38264. name: "Universe Devourer",
  38265. height: math.unit(42, "universes")
  38266. },
  38267. {
  38268. name: "Multiverse Muncher",
  38269. height: math.unit(42, "multiverses")
  38270. },
  38271. ]
  38272. ))
  38273. characterMakers.push(() => makeCharacter(
  38274. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38275. {
  38276. front: {
  38277. height: math.unit(36, "feet"),
  38278. name: "Front",
  38279. image: {
  38280. source: "./media/characters/shadow-rat/front.svg",
  38281. extra: 1845/1758,
  38282. bottom: 83/1928
  38283. }
  38284. },
  38285. },
  38286. [
  38287. {
  38288. name: "Macro",
  38289. height: math.unit(36, "feet"),
  38290. default: true
  38291. },
  38292. ]
  38293. ))
  38294. characterMakers.push(() => makeCharacter(
  38295. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38296. {
  38297. side: {
  38298. height: math.unit(8, "feet"),
  38299. weight: math.unit(2630, "lb"),
  38300. name: "Side",
  38301. image: {
  38302. source: "./media/characters/torallia/side.svg",
  38303. extra: 2164/2021,
  38304. bottom: 371/2535
  38305. }
  38306. },
  38307. },
  38308. [
  38309. {
  38310. name: "Mortal Interaction",
  38311. height: math.unit(8, "feet")
  38312. },
  38313. {
  38314. name: "Natural",
  38315. height: math.unit(24, "feet"),
  38316. default: true
  38317. },
  38318. {
  38319. name: "Giant",
  38320. height: math.unit(80, "feet")
  38321. },
  38322. {
  38323. name: "Kaiju",
  38324. height: math.unit(240, "feet")
  38325. },
  38326. {
  38327. name: "Macro",
  38328. height: math.unit(800, "feet")
  38329. },
  38330. {
  38331. name: "Macro+",
  38332. height: math.unit(2400, "feet")
  38333. },
  38334. {
  38335. name: "Macro++",
  38336. height: math.unit(8000, "feet")
  38337. },
  38338. {
  38339. name: "City-Crushing",
  38340. height: math.unit(24000, "feet")
  38341. },
  38342. {
  38343. name: "Mountain-Mashing",
  38344. height: math.unit(80000, "feet")
  38345. },
  38346. {
  38347. name: "District Demolisher",
  38348. height: math.unit(240000, "feet")
  38349. },
  38350. {
  38351. name: "Tri-County Terror",
  38352. height: math.unit(800000, "feet")
  38353. },
  38354. {
  38355. name: "State Smasher",
  38356. height: math.unit(2.4e6, "feet")
  38357. },
  38358. {
  38359. name: "Nation Nemesis",
  38360. height: math.unit(8e6, "feet")
  38361. },
  38362. {
  38363. name: "Continent Cracker",
  38364. height: math.unit(2.4e7, "feet")
  38365. },
  38366. {
  38367. name: "Planet-Pillaging",
  38368. height: math.unit(8e7, "feet")
  38369. },
  38370. {
  38371. name: "Earth-Eclipsing",
  38372. height: math.unit(2.4e8, "feet")
  38373. },
  38374. {
  38375. name: "Jovian-Jostling",
  38376. height: math.unit(8e8, "feet")
  38377. },
  38378. {
  38379. name: "Gas Giant Gulper",
  38380. height: math.unit(2.4e9, "feet")
  38381. },
  38382. {
  38383. name: "Astral Annihilator",
  38384. height: math.unit(8e9, "feet")
  38385. },
  38386. {
  38387. name: "Celestial Conqueror",
  38388. height: math.unit(2.4e10, "feet")
  38389. },
  38390. {
  38391. name: "Sol-Swallowing",
  38392. height: math.unit(8e10, "feet")
  38393. },
  38394. {
  38395. name: "Hunter of the Heavens",
  38396. height: math.unit(2.4e13, "feet")
  38397. },
  38398. ]
  38399. ))
  38400. characterMakers.push(() => makeCharacter(
  38401. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38402. {
  38403. front: {
  38404. height: math.unit(6 + 8/12, "feet"),
  38405. name: "Front",
  38406. image: {
  38407. source: "./media/characters/rebecca-pawlson/front.svg",
  38408. extra: 1737/1596,
  38409. bottom: 107/1844
  38410. }
  38411. },
  38412. back: {
  38413. height: math.unit(6 + 8/12, "feet"),
  38414. name: "Back",
  38415. image: {
  38416. source: "./media/characters/rebecca-pawlson/back.svg",
  38417. extra: 1702/1523,
  38418. bottom: 86/1788
  38419. }
  38420. },
  38421. },
  38422. [
  38423. {
  38424. name: "Normal",
  38425. height: math.unit(6 + 8/12, "feet")
  38426. },
  38427. {
  38428. name: "Mini Macro",
  38429. height: math.unit(10, "feet"),
  38430. default: true
  38431. },
  38432. {
  38433. name: "Macro",
  38434. height: math.unit(100, "feet")
  38435. },
  38436. {
  38437. name: "Mega Macro",
  38438. height: math.unit(2500, "feet")
  38439. },
  38440. {
  38441. name: "Giga Macro",
  38442. height: math.unit(50, "miles")
  38443. },
  38444. ]
  38445. ))
  38446. characterMakers.push(() => makeCharacter(
  38447. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38448. {
  38449. front: {
  38450. height: math.unit(7 + 6/12, "feet"),
  38451. weight: math.unit(600, "lb"),
  38452. name: "Front",
  38453. image: {
  38454. source: "./media/characters/moxie-nova/front.svg",
  38455. extra: 1734/1652,
  38456. bottom: 41/1775
  38457. }
  38458. },
  38459. },
  38460. [
  38461. {
  38462. name: "Normal",
  38463. height: math.unit(7 + 6/12, "feet"),
  38464. default: true
  38465. },
  38466. ]
  38467. ))
  38468. characterMakers.push(() => makeCharacter(
  38469. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38470. {
  38471. goat: {
  38472. height: math.unit(4, "feet"),
  38473. weight: math.unit(180, "lb"),
  38474. name: "Goat",
  38475. image: {
  38476. source: "./media/characters/tiffany/goat.svg",
  38477. extra: 1845/1595,
  38478. bottom: 106/1951
  38479. }
  38480. },
  38481. front: {
  38482. height: math.unit(5, "feet"),
  38483. weight: math.unit(150, "lb"),
  38484. name: "Foxcoon",
  38485. image: {
  38486. source: "./media/characters/tiffany/foxcoon.svg",
  38487. extra: 1941/1845,
  38488. bottom: 58/1999
  38489. }
  38490. },
  38491. },
  38492. [
  38493. {
  38494. name: "Normal",
  38495. height: math.unit(5, "feet"),
  38496. default: true
  38497. },
  38498. ]
  38499. ))
  38500. characterMakers.push(() => makeCharacter(
  38501. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38502. {
  38503. front: {
  38504. height: math.unit(8, "feet"),
  38505. weight: math.unit(300, "lb"),
  38506. name: "Front",
  38507. image: {
  38508. source: "./media/characters/raxinath/front.svg",
  38509. extra: 1407/1309,
  38510. bottom: 39/1446
  38511. }
  38512. },
  38513. back: {
  38514. height: math.unit(8, "feet"),
  38515. weight: math.unit(300, "lb"),
  38516. name: "Back",
  38517. image: {
  38518. source: "./media/characters/raxinath/back.svg",
  38519. extra: 1405/1315,
  38520. bottom: 9/1414
  38521. }
  38522. },
  38523. },
  38524. [
  38525. {
  38526. name: "Speck",
  38527. height: math.unit(0.5, "nm")
  38528. },
  38529. {
  38530. name: "Micro",
  38531. height: math.unit(3, "inches")
  38532. },
  38533. {
  38534. name: "Kobold",
  38535. height: math.unit(3, "feet")
  38536. },
  38537. {
  38538. name: "Normal",
  38539. height: math.unit(8, "feet"),
  38540. default: true
  38541. },
  38542. {
  38543. name: "Giant",
  38544. height: math.unit(50, "feet")
  38545. },
  38546. {
  38547. name: "Macro",
  38548. height: math.unit(1000, "feet")
  38549. },
  38550. {
  38551. name: "Megamacro",
  38552. height: math.unit(1, "mile")
  38553. },
  38554. ]
  38555. ))
  38556. characterMakers.push(() => makeCharacter(
  38557. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38558. {
  38559. front: {
  38560. height: math.unit(10, "feet"),
  38561. weight: math.unit(1442, "lb"),
  38562. name: "Front",
  38563. image: {
  38564. source: "./media/characters/mal-dragon/front.svg",
  38565. extra: 1515/1444,
  38566. bottom: 113/1628
  38567. }
  38568. },
  38569. back: {
  38570. height: math.unit(10, "feet"),
  38571. weight: math.unit(1442, "lb"),
  38572. name: "Back",
  38573. image: {
  38574. source: "./media/characters/mal-dragon/back.svg",
  38575. extra: 1527/1434,
  38576. bottom: 25/1552
  38577. }
  38578. },
  38579. },
  38580. [
  38581. {
  38582. name: "Mortal Interaction",
  38583. height: math.unit(10, "feet"),
  38584. default: true
  38585. },
  38586. {
  38587. name: "Large",
  38588. height: math.unit(30, "feet")
  38589. },
  38590. {
  38591. name: "Kaiju",
  38592. height: math.unit(300, "feet")
  38593. },
  38594. {
  38595. name: "Megamacro",
  38596. height: math.unit(10000, "feet")
  38597. },
  38598. {
  38599. name: "Continent Cracker",
  38600. height: math.unit(30000000, "feet")
  38601. },
  38602. {
  38603. name: "Sol-Swallowing",
  38604. height: math.unit(1e11, "feet")
  38605. },
  38606. {
  38607. name: "Light Universal",
  38608. height: math.unit(5, "universes")
  38609. },
  38610. {
  38611. name: "Universe Atoms",
  38612. height: math.unit(1.829e9, "universes")
  38613. },
  38614. {
  38615. name: "Light Multiversal",
  38616. height: math.unit(5, "multiverses")
  38617. },
  38618. {
  38619. name: "Multiverse Atoms",
  38620. height: math.unit(1.829e9, "multiverses")
  38621. },
  38622. {
  38623. name: "Fabric of Time",
  38624. height: math.unit(1e262, "multiverses")
  38625. },
  38626. ]
  38627. ))
  38628. characterMakers.push(() => makeCharacter(
  38629. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38630. {
  38631. front: {
  38632. height: math.unit(9, "feet"),
  38633. weight: math.unit(1050, "lb"),
  38634. name: "Front",
  38635. image: {
  38636. source: "./media/characters/tabitha/front.svg",
  38637. extra: 2083/1994,
  38638. bottom: 68/2151
  38639. }
  38640. },
  38641. },
  38642. [
  38643. {
  38644. name: "Baseline",
  38645. height: math.unit(9, "feet"),
  38646. default: true
  38647. },
  38648. {
  38649. name: "Giant",
  38650. height: math.unit(90, "feet")
  38651. },
  38652. {
  38653. name: "Macro",
  38654. height: math.unit(900, "feet")
  38655. },
  38656. {
  38657. name: "Megamacro",
  38658. height: math.unit(9000, "feet")
  38659. },
  38660. {
  38661. name: "City-Crushing",
  38662. height: math.unit(27000, "feet")
  38663. },
  38664. {
  38665. name: "Mountain-Mashing",
  38666. height: math.unit(90000, "feet")
  38667. },
  38668. {
  38669. name: "Nation Nemesis",
  38670. height: math.unit(9e6, "feet")
  38671. },
  38672. {
  38673. name: "Continent Cracker",
  38674. height: math.unit(27e6, "feet")
  38675. },
  38676. {
  38677. name: "Earth-Eclipsing",
  38678. height: math.unit(2.7e8, "feet")
  38679. },
  38680. {
  38681. name: "Gas Giant Gulper",
  38682. height: math.unit(2.7e9, "feet")
  38683. },
  38684. {
  38685. name: "Sol-Swallowing",
  38686. height: math.unit(9e10, "feet")
  38687. },
  38688. {
  38689. name: "Galaxy Gulper",
  38690. height: math.unit(9, "galaxies")
  38691. },
  38692. {
  38693. name: "Cosmos Churner",
  38694. height: math.unit(9, "universes")
  38695. },
  38696. ]
  38697. ))
  38698. characterMakers.push(() => makeCharacter(
  38699. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38700. {
  38701. front: {
  38702. height: math.unit(160, "cm"),
  38703. weight: math.unit(55, "kg"),
  38704. name: "Front",
  38705. image: {
  38706. source: "./media/characters/tow/front.svg",
  38707. extra: 1751/1722,
  38708. bottom: 74/1825
  38709. }
  38710. },
  38711. },
  38712. [
  38713. {
  38714. name: "Norm",
  38715. height: math.unit(160, "cm")
  38716. },
  38717. {
  38718. name: "Casual",
  38719. height: math.unit(3200, "m"),
  38720. default: true
  38721. },
  38722. {
  38723. name: "Show-Off",
  38724. height: math.unit(160, "km")
  38725. },
  38726. ]
  38727. ))
  38728. characterMakers.push(() => makeCharacter(
  38729. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38730. {
  38731. front: {
  38732. height: math.unit(7 + 11/12, "feet"),
  38733. weight: math.unit(342.8, "lb"),
  38734. name: "Front",
  38735. image: {
  38736. source: "./media/characters/vivian-orca-dragon/front.svg",
  38737. extra: 1890/1865,
  38738. bottom: 28/1918
  38739. }
  38740. },
  38741. },
  38742. [
  38743. {
  38744. name: "Micro",
  38745. height: math.unit(5, "inches")
  38746. },
  38747. {
  38748. name: "Normal",
  38749. height: math.unit(7 + 11/12, "feet"),
  38750. default: true
  38751. },
  38752. {
  38753. name: "Macro",
  38754. height: math.unit(395 + 7/12, "feet")
  38755. },
  38756. ]
  38757. ))
  38758. characterMakers.push(() => makeCharacter(
  38759. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38760. {
  38761. side: {
  38762. height: math.unit(10, "feet"),
  38763. weight: math.unit(1442, "lb"),
  38764. name: "Side",
  38765. image: {
  38766. source: "./media/characters/lotherakon/side.svg",
  38767. extra: 1604/1497,
  38768. bottom: 89/1693
  38769. }
  38770. },
  38771. },
  38772. [
  38773. {
  38774. name: "Mortal Interaction",
  38775. height: math.unit(10, "feet")
  38776. },
  38777. {
  38778. name: "Large",
  38779. height: math.unit(30, "feet"),
  38780. default: true
  38781. },
  38782. {
  38783. name: "Giant",
  38784. height: math.unit(100, "feet")
  38785. },
  38786. {
  38787. name: "Kaiju",
  38788. height: math.unit(300, "feet")
  38789. },
  38790. {
  38791. name: "Macro",
  38792. height: math.unit(1000, "feet")
  38793. },
  38794. {
  38795. name: "Macro+",
  38796. height: math.unit(3000, "feet")
  38797. },
  38798. {
  38799. name: "Megamacro",
  38800. height: math.unit(10000, "feet")
  38801. },
  38802. {
  38803. name: "City-Crushing",
  38804. height: math.unit(30000, "feet")
  38805. },
  38806. {
  38807. name: "Continent Cracker",
  38808. height: math.unit(30e6, "feet")
  38809. },
  38810. {
  38811. name: "Earth Eclipsing",
  38812. height: math.unit(3e8, "feet")
  38813. },
  38814. {
  38815. name: "Gas Giant Gulper",
  38816. height: math.unit(3e9, "feet")
  38817. },
  38818. {
  38819. name: "Sol-Swallowing",
  38820. height: math.unit(1e11, "feet")
  38821. },
  38822. {
  38823. name: "System Swallower",
  38824. height: math.unit(3e14, "feet")
  38825. },
  38826. {
  38827. name: "Galaxy Gulper",
  38828. height: math.unit(10, "galaxies")
  38829. },
  38830. {
  38831. name: "Light Universal",
  38832. height: math.unit(5, "universes")
  38833. },
  38834. {
  38835. name: "Universe Palm",
  38836. height: math.unit(20, "universes")
  38837. },
  38838. {
  38839. name: "Light Multiversal",
  38840. height: math.unit(5, "multiverses")
  38841. },
  38842. {
  38843. name: "Multiverse Palm",
  38844. height: math.unit(20, "multiverses")
  38845. },
  38846. {
  38847. name: "Inferno Incarnate",
  38848. height: math.unit(1e7, "multiverses")
  38849. },
  38850. ]
  38851. ))
  38852. characterMakers.push(() => makeCharacter(
  38853. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38854. {
  38855. front: {
  38856. height: math.unit(8, "feet"),
  38857. weight: math.unit(1200, "lb"),
  38858. name: "Front",
  38859. image: {
  38860. source: "./media/characters/malithee/front.svg",
  38861. extra: 1675/1640,
  38862. bottom: 162/1837
  38863. }
  38864. },
  38865. },
  38866. [
  38867. {
  38868. name: "Mortal Interaction",
  38869. height: math.unit(8, "feet"),
  38870. default: true
  38871. },
  38872. {
  38873. name: "Large",
  38874. height: math.unit(24, "feet")
  38875. },
  38876. {
  38877. name: "Kaiju",
  38878. height: math.unit(240, "feet")
  38879. },
  38880. {
  38881. name: "Megamacro",
  38882. height: math.unit(8000, "feet")
  38883. },
  38884. {
  38885. name: "Continent Cracker",
  38886. height: math.unit(24e6, "feet")
  38887. },
  38888. {
  38889. name: "Earth-Eclipsing",
  38890. height: math.unit(2.4e8, "feet")
  38891. },
  38892. {
  38893. name: "Sol-Swallowing",
  38894. height: math.unit(8e10, "feet")
  38895. },
  38896. {
  38897. name: "Galaxy Gulper",
  38898. height: math.unit(8, "galaxies")
  38899. },
  38900. {
  38901. name: "Light Universal",
  38902. height: math.unit(4, "universes")
  38903. },
  38904. {
  38905. name: "Universe Atoms",
  38906. height: math.unit(1.829e9, "universes")
  38907. },
  38908. {
  38909. name: "Light Multiversal",
  38910. height: math.unit(4, "multiverses")
  38911. },
  38912. {
  38913. name: "Multiverse Atoms",
  38914. height: math.unit(1.829e9, "multiverses")
  38915. },
  38916. {
  38917. name: "Nigh-Omnipresence",
  38918. height: math.unit(8e261, "multiverses")
  38919. },
  38920. ]
  38921. ))
  38922. characterMakers.push(() => makeCharacter(
  38923. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38924. {
  38925. front: {
  38926. height: math.unit(10, "feet"),
  38927. weight: math.unit(1500, "lb"),
  38928. name: "Front",
  38929. image: {
  38930. source: "./media/characters/miles-thestia/front.svg",
  38931. extra: 1812/1727,
  38932. bottom: 86/1898
  38933. }
  38934. },
  38935. back: {
  38936. height: math.unit(10, "feet"),
  38937. weight: math.unit(1500, "lb"),
  38938. name: "Back",
  38939. image: {
  38940. source: "./media/characters/miles-thestia/back.svg",
  38941. extra: 1799/1690,
  38942. bottom: 47/1846
  38943. }
  38944. },
  38945. frontNsfw: {
  38946. height: math.unit(10, "feet"),
  38947. weight: math.unit(1500, "lb"),
  38948. name: "Front (NSFW)",
  38949. image: {
  38950. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38951. extra: 1812/1727,
  38952. bottom: 86/1898
  38953. }
  38954. },
  38955. },
  38956. [
  38957. {
  38958. name: "Mini-Macro",
  38959. height: math.unit(10, "feet"),
  38960. default: true
  38961. },
  38962. ]
  38963. ))
  38964. characterMakers.push(() => makeCharacter(
  38965. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38966. {
  38967. front: {
  38968. height: math.unit(25, "feet"),
  38969. name: "Front",
  38970. image: {
  38971. source: "./media/characters/titan-s-wulf/front.svg",
  38972. extra: 1560/1484,
  38973. bottom: 76/1636
  38974. }
  38975. },
  38976. },
  38977. [
  38978. {
  38979. name: "Smallest",
  38980. height: math.unit(25, "feet"),
  38981. default: true
  38982. },
  38983. {
  38984. name: "Normal",
  38985. height: math.unit(200, "feet")
  38986. },
  38987. {
  38988. name: "Macro",
  38989. height: math.unit(200000, "feet")
  38990. },
  38991. {
  38992. name: "Multiversal Original",
  38993. height: math.unit(10000, "multiverses")
  38994. },
  38995. ]
  38996. ))
  38997. characterMakers.push(() => makeCharacter(
  38998. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38999. {
  39000. front: {
  39001. height: math.unit(8, "feet"),
  39002. weight: math.unit(553, "lb"),
  39003. name: "Front",
  39004. image: {
  39005. source: "./media/characters/tawendeh/front.svg",
  39006. extra: 2365/2268,
  39007. bottom: 83/2448
  39008. }
  39009. },
  39010. frontClothed: {
  39011. height: math.unit(8, "feet"),
  39012. weight: math.unit(553, "lb"),
  39013. name: "Front (Clothed)",
  39014. image: {
  39015. source: "./media/characters/tawendeh/front-clothed.svg",
  39016. extra: 2365/2268,
  39017. bottom: 83/2448
  39018. }
  39019. },
  39020. back: {
  39021. height: math.unit(8, "feet"),
  39022. weight: math.unit(553, "lb"),
  39023. name: "Back",
  39024. image: {
  39025. source: "./media/characters/tawendeh/back.svg",
  39026. extra: 2397/2294,
  39027. bottom: 42/2439
  39028. }
  39029. },
  39030. },
  39031. [
  39032. {
  39033. name: "Mortal Interaction",
  39034. height: math.unit(8, "feet"),
  39035. default: true
  39036. },
  39037. {
  39038. name: "Giant",
  39039. height: math.unit(80, "feet")
  39040. },
  39041. {
  39042. name: "Macro",
  39043. height: math.unit(800, "feet")
  39044. },
  39045. {
  39046. name: "Megamacro",
  39047. height: math.unit(8000, "feet")
  39048. },
  39049. {
  39050. name: "City-Crushing",
  39051. height: math.unit(24000, "feet")
  39052. },
  39053. {
  39054. name: "Mountain-Mashing",
  39055. height: math.unit(80000, "feet")
  39056. },
  39057. {
  39058. name: "Nation Nemesis",
  39059. height: math.unit(8e6, "feet")
  39060. },
  39061. {
  39062. name: "Continent Cracker",
  39063. height: math.unit(24e6, "feet")
  39064. },
  39065. {
  39066. name: "Earth-Eclipsing",
  39067. height: math.unit(2.4e8, "feet")
  39068. },
  39069. {
  39070. name: "Gas Giant Gulper",
  39071. height: math.unit(2.4e9, "feet")
  39072. },
  39073. {
  39074. name: "Sol-Swallowing",
  39075. height: math.unit(8e10, "feet")
  39076. },
  39077. {
  39078. name: "Galaxy Gulper",
  39079. height: math.unit(8, "galaxies")
  39080. },
  39081. {
  39082. name: "Cosmos Churner",
  39083. height: math.unit(8, "universes")
  39084. },
  39085. {
  39086. name: "Omnipotent Otter",
  39087. height: math.unit(80, "universes")
  39088. },
  39089. ]
  39090. ))
  39091. characterMakers.push(() => makeCharacter(
  39092. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39093. {
  39094. front: {
  39095. height: math.unit(2.6, "meters"),
  39096. weight: math.unit(900, "kg"),
  39097. name: "Front",
  39098. image: {
  39099. source: "./media/characters/neesha/front.svg",
  39100. extra: 1803/1653,
  39101. bottom: 128/1931
  39102. }
  39103. },
  39104. },
  39105. [
  39106. {
  39107. name: "Normal",
  39108. height: math.unit(2.6, "meters"),
  39109. default: true
  39110. },
  39111. {
  39112. name: "Macro",
  39113. height: math.unit(50, "meters")
  39114. },
  39115. ]
  39116. ))
  39117. characterMakers.push(() => makeCharacter(
  39118. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39119. {
  39120. front: {
  39121. height: math.unit(5, "feet"),
  39122. weight: math.unit(185, "lb"),
  39123. name: "Front",
  39124. image: {
  39125. source: "./media/characters/kyera/front.svg",
  39126. extra: 1875/1790,
  39127. bottom: 96/1971
  39128. }
  39129. },
  39130. },
  39131. [
  39132. {
  39133. name: "Normal",
  39134. height: math.unit(5, "feet"),
  39135. default: true
  39136. },
  39137. ]
  39138. ))
  39139. characterMakers.push(() => makeCharacter(
  39140. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39141. {
  39142. front: {
  39143. height: math.unit(7 + 6/12, "feet"),
  39144. weight: math.unit(540, "lb"),
  39145. name: "Front",
  39146. image: {
  39147. source: "./media/characters/yuko/front.svg",
  39148. extra: 1282/1222,
  39149. bottom: 101/1383
  39150. }
  39151. },
  39152. frontClothed: {
  39153. height: math.unit(7 + 6/12, "feet"),
  39154. weight: math.unit(540, "lb"),
  39155. name: "Front (Clothed)",
  39156. image: {
  39157. source: "./media/characters/yuko/front-clothed.svg",
  39158. extra: 1282/1222,
  39159. bottom: 101/1383
  39160. }
  39161. },
  39162. },
  39163. [
  39164. {
  39165. name: "Normal",
  39166. height: math.unit(7 + 6/12, "feet"),
  39167. default: true
  39168. },
  39169. {
  39170. name: "Macro",
  39171. height: math.unit(26 + 9/12, "feet")
  39172. },
  39173. {
  39174. name: "Megamacro",
  39175. height: math.unit(300, "feet")
  39176. },
  39177. {
  39178. name: "Gigamacro",
  39179. height: math.unit(5000, "feet")
  39180. },
  39181. {
  39182. name: "Planetary",
  39183. height: math.unit(10000, "miles")
  39184. },
  39185. ]
  39186. ))
  39187. characterMakers.push(() => makeCharacter(
  39188. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39189. {
  39190. front: {
  39191. height: math.unit(8 + 2/12, "feet"),
  39192. weight: math.unit(600, "lb"),
  39193. name: "Front",
  39194. image: {
  39195. source: "./media/characters/deam-nitrel/front.svg",
  39196. extra: 1308/1234,
  39197. bottom: 125/1433
  39198. }
  39199. },
  39200. },
  39201. [
  39202. {
  39203. name: "Normal",
  39204. height: math.unit(8 + 2/12, "feet"),
  39205. default: true
  39206. },
  39207. ]
  39208. ))
  39209. characterMakers.push(() => makeCharacter(
  39210. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39211. {
  39212. front: {
  39213. height: math.unit(6.1, "feet"),
  39214. weight: math.unit(180, "lb"),
  39215. name: "Front",
  39216. image: {
  39217. source: "./media/characters/skyress/front.svg",
  39218. extra: 1045/915,
  39219. bottom: 28/1073
  39220. }
  39221. },
  39222. maw: {
  39223. height: math.unit(1, "feet"),
  39224. name: "Maw",
  39225. image: {
  39226. source: "./media/characters/skyress/maw.svg"
  39227. }
  39228. },
  39229. },
  39230. [
  39231. {
  39232. name: "Normal",
  39233. height: math.unit(6.1, "feet"),
  39234. default: true
  39235. },
  39236. {
  39237. name: "Macro",
  39238. height: math.unit(200, "feet")
  39239. },
  39240. ]
  39241. ))
  39242. characterMakers.push(() => makeCharacter(
  39243. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39244. {
  39245. front: {
  39246. height: math.unit(4 + 2/12, "feet"),
  39247. weight: math.unit(40, "kg"),
  39248. name: "Front",
  39249. image: {
  39250. source: "./media/characters/amethyst-jones/front.svg",
  39251. extra: 1220/1150,
  39252. bottom: 101/1321
  39253. }
  39254. },
  39255. },
  39256. [
  39257. {
  39258. name: "Normal",
  39259. height: math.unit(4 + 2/12, "feet"),
  39260. default: true
  39261. },
  39262. ]
  39263. ))
  39264. characterMakers.push(() => makeCharacter(
  39265. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39266. {
  39267. front: {
  39268. height: math.unit(1.7, "m"),
  39269. weight: math.unit(135, "lb"),
  39270. name: "Front",
  39271. image: {
  39272. source: "./media/characters/jade/front.svg",
  39273. extra: 1818/1767,
  39274. bottom: 32/1850
  39275. }
  39276. },
  39277. back: {
  39278. height: math.unit(1.7, "m"),
  39279. weight: math.unit(135, "lb"),
  39280. name: "Back",
  39281. image: {
  39282. source: "./media/characters/jade/back.svg",
  39283. extra: 1869/1809,
  39284. bottom: 35/1904
  39285. }
  39286. },
  39287. hand: {
  39288. height: math.unit(0.24, "m"),
  39289. name: "Hand",
  39290. image: {
  39291. source: "./media/characters/jade/hand.svg"
  39292. }
  39293. },
  39294. foot: {
  39295. height: math.unit(0.263, "m"),
  39296. name: "Foot",
  39297. image: {
  39298. source: "./media/characters/jade/foot.svg"
  39299. }
  39300. },
  39301. dick: {
  39302. height: math.unit(0.47, "m"),
  39303. name: "Dick",
  39304. image: {
  39305. source: "./media/characters/jade/dick.svg"
  39306. }
  39307. },
  39308. },
  39309. [
  39310. {
  39311. name: "Micro",
  39312. height: math.unit(22, "cm")
  39313. },
  39314. {
  39315. name: "Normal",
  39316. height: math.unit(1.7, "m"),
  39317. default: true
  39318. },
  39319. {
  39320. name: "Macro",
  39321. height: math.unit(152, "m")
  39322. },
  39323. ]
  39324. ))
  39325. characterMakers.push(() => makeCharacter(
  39326. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39327. {
  39328. front: {
  39329. height: math.unit(100, "miles"),
  39330. weight: math.unit(20000, "tons"),
  39331. name: "Front",
  39332. image: {
  39333. source: "./media/characters/cookie/front.svg",
  39334. extra: 1125/1070,
  39335. bottom: 30/1155
  39336. }
  39337. },
  39338. },
  39339. [
  39340. {
  39341. name: "Big",
  39342. height: math.unit(50, "feet")
  39343. },
  39344. {
  39345. name: "Macro",
  39346. height: math.unit(100, "miles"),
  39347. default: true
  39348. },
  39349. {
  39350. name: "Megamacro",
  39351. height: math.unit(90000, "miles")
  39352. },
  39353. ]
  39354. ))
  39355. characterMakers.push(() => makeCharacter(
  39356. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39357. {
  39358. front: {
  39359. height: math.unit(6, "feet"),
  39360. weight: math.unit(145, "lb"),
  39361. name: "Front",
  39362. image: {
  39363. source: "./media/characters/farzian/front.svg",
  39364. extra: 1902/1693,
  39365. bottom: 108/2010
  39366. }
  39367. },
  39368. },
  39369. [
  39370. {
  39371. name: "Macro",
  39372. height: math.unit(500, "feet"),
  39373. default: true
  39374. },
  39375. ]
  39376. ))
  39377. characterMakers.push(() => makeCharacter(
  39378. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39379. {
  39380. front: {
  39381. height: math.unit(3 + 6/12, "feet"),
  39382. weight: math.unit(50, "lb"),
  39383. name: "Front",
  39384. image: {
  39385. source: "./media/characters/kimberly-tilson/front.svg",
  39386. extra: 1400/1322,
  39387. bottom: 36/1436
  39388. }
  39389. },
  39390. back: {
  39391. height: math.unit(3 + 6/12, "feet"),
  39392. weight: math.unit(50, "lb"),
  39393. name: "Back",
  39394. image: {
  39395. source: "./media/characters/kimberly-tilson/back.svg",
  39396. extra: 1370/1307,
  39397. bottom: 20/1390
  39398. }
  39399. },
  39400. },
  39401. [
  39402. {
  39403. name: "Normal",
  39404. height: math.unit(3 + 6/12, "feet"),
  39405. default: true
  39406. },
  39407. ]
  39408. ))
  39409. characterMakers.push(() => makeCharacter(
  39410. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39411. {
  39412. front: {
  39413. height: math.unit(1148, "feet"),
  39414. weight: math.unit(34057, "lb"),
  39415. name: "Front",
  39416. image: {
  39417. source: "./media/characters/harthos/front.svg",
  39418. extra: 1391/1339,
  39419. bottom: 13/1404
  39420. }
  39421. },
  39422. },
  39423. [
  39424. {
  39425. name: "Macro",
  39426. height: math.unit(1148, "feet"),
  39427. default: true
  39428. },
  39429. ]
  39430. ))
  39431. characterMakers.push(() => makeCharacter(
  39432. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39433. {
  39434. front: {
  39435. height: math.unit(15, "feet"),
  39436. name: "Front",
  39437. image: {
  39438. source: "./media/characters/hypatia/front.svg",
  39439. extra: 1653/1591,
  39440. bottom: 79/1732
  39441. }
  39442. },
  39443. },
  39444. [
  39445. {
  39446. name: "Normal",
  39447. height: math.unit(15, "feet")
  39448. },
  39449. {
  39450. name: "Small",
  39451. height: math.unit(300, "feet")
  39452. },
  39453. {
  39454. name: "Macro",
  39455. height: math.unit(2500, "feet"),
  39456. default: true
  39457. },
  39458. {
  39459. name: "Mega Macro",
  39460. height: math.unit(1500, "miles")
  39461. },
  39462. {
  39463. name: "Giga Macro",
  39464. height: math.unit(1.5e6, "miles")
  39465. },
  39466. ]
  39467. ))
  39468. characterMakers.push(() => makeCharacter(
  39469. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39470. {
  39471. front: {
  39472. height: math.unit(6, "feet"),
  39473. weight: math.unit(200, "lb"),
  39474. name: "Front",
  39475. image: {
  39476. source: "./media/characters/wulver/front.svg",
  39477. extra: 1724/1632,
  39478. bottom: 130/1854
  39479. }
  39480. },
  39481. frontNsfw: {
  39482. height: math.unit(6, "feet"),
  39483. weight: math.unit(200, "lb"),
  39484. name: "Front (NSFW)",
  39485. image: {
  39486. source: "./media/characters/wulver/front-nsfw.svg",
  39487. extra: 1724/1632,
  39488. bottom: 130/1854
  39489. }
  39490. },
  39491. },
  39492. [
  39493. {
  39494. name: "Human-Sized",
  39495. height: math.unit(6, "feet")
  39496. },
  39497. {
  39498. name: "Normal",
  39499. height: math.unit(4, "meters"),
  39500. default: true
  39501. },
  39502. {
  39503. name: "Large",
  39504. height: math.unit(6, "m")
  39505. },
  39506. ]
  39507. ))
  39508. characterMakers.push(() => makeCharacter(
  39509. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39510. {
  39511. front: {
  39512. height: math.unit(7, "feet"),
  39513. name: "Front",
  39514. image: {
  39515. source: "./media/characters/maru/front.svg",
  39516. extra: 1595/1570,
  39517. bottom: 0/1595
  39518. }
  39519. },
  39520. },
  39521. [
  39522. {
  39523. name: "Normal",
  39524. height: math.unit(7, "feet"),
  39525. default: true
  39526. },
  39527. {
  39528. name: "Macro",
  39529. height: math.unit(700, "feet")
  39530. },
  39531. {
  39532. name: "Mega Macro",
  39533. height: math.unit(25, "miles")
  39534. },
  39535. ]
  39536. ))
  39537. characterMakers.push(() => makeCharacter(
  39538. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39539. {
  39540. front: {
  39541. height: math.unit(6, "feet"),
  39542. weight: math.unit(170, "lb"),
  39543. name: "Front",
  39544. image: {
  39545. source: "./media/characters/xenon/front.svg",
  39546. extra: 1376/1305,
  39547. bottom: 56/1432
  39548. }
  39549. },
  39550. back: {
  39551. height: math.unit(6, "feet"),
  39552. weight: math.unit(170, "lb"),
  39553. name: "Back",
  39554. image: {
  39555. source: "./media/characters/xenon/back.svg",
  39556. extra: 1328/1259,
  39557. bottom: 95/1423
  39558. }
  39559. },
  39560. maw: {
  39561. height: math.unit(0.52, "feet"),
  39562. name: "Maw",
  39563. image: {
  39564. source: "./media/characters/xenon/maw.svg"
  39565. }
  39566. },
  39567. hand: {
  39568. height: math.unit(0.82, "feet"),
  39569. name: "Hand",
  39570. image: {
  39571. source: "./media/characters/xenon/hand.svg"
  39572. }
  39573. },
  39574. foot: {
  39575. height: math.unit(1.13, "feet"),
  39576. name: "Foot",
  39577. image: {
  39578. source: "./media/characters/xenon/foot.svg"
  39579. }
  39580. },
  39581. },
  39582. [
  39583. {
  39584. name: "Micro",
  39585. height: math.unit(0.8, "inches")
  39586. },
  39587. {
  39588. name: "Normal",
  39589. height: math.unit(6, "feet")
  39590. },
  39591. {
  39592. name: "Macro",
  39593. height: math.unit(50, "feet"),
  39594. default: true
  39595. },
  39596. {
  39597. name: "Macro+",
  39598. height: math.unit(250, "feet")
  39599. },
  39600. {
  39601. name: "Megamacro",
  39602. height: math.unit(1500, "feet")
  39603. },
  39604. ]
  39605. ))
  39606. characterMakers.push(() => makeCharacter(
  39607. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39608. {
  39609. front: {
  39610. height: math.unit(7 + 5/12, "feet"),
  39611. name: "Front",
  39612. image: {
  39613. source: "./media/characters/zane/front.svg",
  39614. extra: 1260/1203,
  39615. bottom: 94/1354
  39616. }
  39617. },
  39618. back: {
  39619. height: math.unit(5.05, "feet"),
  39620. name: "Back",
  39621. image: {
  39622. source: "./media/characters/zane/back.svg",
  39623. extra: 893/829,
  39624. bottom: 30/923
  39625. }
  39626. },
  39627. werewolf: {
  39628. height: math.unit(11, "feet"),
  39629. name: "Werewolf",
  39630. image: {
  39631. source: "./media/characters/zane/werewolf.svg",
  39632. extra: 1383/1323,
  39633. bottom: 89/1472
  39634. }
  39635. },
  39636. foot: {
  39637. height: math.unit(1.46, "feet"),
  39638. name: "Foot",
  39639. image: {
  39640. source: "./media/characters/zane/foot.svg"
  39641. }
  39642. },
  39643. footFront: {
  39644. height: math.unit(0.784, "feet"),
  39645. name: "Foot (Front)",
  39646. image: {
  39647. source: "./media/characters/zane/foot-front.svg"
  39648. }
  39649. },
  39650. dick: {
  39651. height: math.unit(1.95, "feet"),
  39652. name: "Dick",
  39653. image: {
  39654. source: "./media/characters/zane/dick.svg"
  39655. }
  39656. },
  39657. dickWerewolf: {
  39658. height: math.unit(3.77, "feet"),
  39659. name: "Dick (Werewolf)",
  39660. image: {
  39661. source: "./media/characters/zane/dick.svg"
  39662. }
  39663. },
  39664. },
  39665. [
  39666. {
  39667. name: "Normal",
  39668. height: math.unit(7 + 5/12, "feet"),
  39669. default: true
  39670. },
  39671. ]
  39672. ))
  39673. characterMakers.push(() => makeCharacter(
  39674. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39675. {
  39676. front: {
  39677. height: math.unit(6 + 2/12, "feet"),
  39678. weight: math.unit(284, "lb"),
  39679. name: "Front",
  39680. image: {
  39681. source: "./media/characters/benni-desparque/front.svg",
  39682. extra: 1353/1126,
  39683. bottom: 69/1422
  39684. }
  39685. },
  39686. },
  39687. [
  39688. {
  39689. name: "Civilian",
  39690. height: math.unit(6 + 2/12, "feet")
  39691. },
  39692. {
  39693. name: "Normal",
  39694. height: math.unit(98, "feet"),
  39695. default: true
  39696. },
  39697. {
  39698. name: "Kaiju Fighter",
  39699. height: math.unit(268, "feet")
  39700. },
  39701. ]
  39702. ))
  39703. characterMakers.push(() => makeCharacter(
  39704. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39705. {
  39706. front: {
  39707. height: math.unit(5, "feet"),
  39708. weight: math.unit(105, "lb"),
  39709. name: "Front",
  39710. image: {
  39711. source: "./media/characters/maxine/front.svg",
  39712. extra: 1386/1250,
  39713. bottom: 71/1457
  39714. }
  39715. },
  39716. },
  39717. [
  39718. {
  39719. name: "Normal",
  39720. height: math.unit(5, "feet"),
  39721. default: true
  39722. },
  39723. ]
  39724. ))
  39725. characterMakers.push(() => makeCharacter(
  39726. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39727. {
  39728. front: {
  39729. height: math.unit(11 + 7/12, "feet"),
  39730. weight: math.unit(9576, "lb"),
  39731. name: "Front",
  39732. image: {
  39733. source: "./media/characters/scaly/front.svg",
  39734. extra: 888/867,
  39735. bottom: 36/924
  39736. }
  39737. },
  39738. },
  39739. [
  39740. {
  39741. name: "Normal",
  39742. height: math.unit(11 + 7/12, "feet"),
  39743. default: true
  39744. },
  39745. ]
  39746. ))
  39747. characterMakers.push(() => makeCharacter(
  39748. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39749. {
  39750. front: {
  39751. height: math.unit(9, "inches"),
  39752. name: "Front",
  39753. image: {
  39754. source: "./media/characters/saelria/front.svg",
  39755. extra: 662/621,
  39756. bottom: 12/674
  39757. }
  39758. },
  39759. },
  39760. [
  39761. {
  39762. name: "Tiny",
  39763. height: math.unit(9, "inches"),
  39764. default: true
  39765. },
  39766. ]
  39767. ))
  39768. characterMakers.push(() => makeCharacter(
  39769. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39770. {
  39771. front: {
  39772. height: math.unit(80, "meters"),
  39773. weight: math.unit(7000, "tonnes"),
  39774. name: "Front",
  39775. image: {
  39776. source: "./media/characters/tef/front.svg",
  39777. extra: 2036/1991,
  39778. bottom: 54/2090
  39779. }
  39780. },
  39781. back: {
  39782. height: math.unit(80, "meters"),
  39783. weight: math.unit(7000, "tonnes"),
  39784. name: "Back",
  39785. image: {
  39786. source: "./media/characters/tef/back.svg",
  39787. extra: 2036/1991,
  39788. bottom: 54/2090
  39789. }
  39790. },
  39791. },
  39792. [
  39793. {
  39794. name: "Macro",
  39795. height: math.unit(80, "meters"),
  39796. default: true
  39797. },
  39798. ]
  39799. ))
  39800. characterMakers.push(() => makeCharacter(
  39801. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39802. {
  39803. front: {
  39804. height: math.unit(13, "feet"),
  39805. weight: math.unit(6, "tons"),
  39806. name: "Front",
  39807. image: {
  39808. source: "./media/characters/rover/front.svg",
  39809. extra: 1233/1156,
  39810. bottom: 50/1283
  39811. }
  39812. },
  39813. back: {
  39814. height: math.unit(13, "feet"),
  39815. weight: math.unit(6, "tons"),
  39816. name: "Back",
  39817. image: {
  39818. source: "./media/characters/rover/back.svg",
  39819. extra: 1327/1258,
  39820. bottom: 39/1366
  39821. }
  39822. },
  39823. },
  39824. [
  39825. {
  39826. name: "Normal",
  39827. height: math.unit(13, "feet"),
  39828. default: true
  39829. },
  39830. {
  39831. name: "Macro",
  39832. height: math.unit(1300, "feet")
  39833. },
  39834. {
  39835. name: "Megamacro",
  39836. height: math.unit(1300, "miles")
  39837. },
  39838. {
  39839. name: "Gigamacro",
  39840. height: math.unit(1300000, "miles")
  39841. },
  39842. ]
  39843. ))
  39844. characterMakers.push(() => makeCharacter(
  39845. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39846. {
  39847. front: {
  39848. height: math.unit(6, "feet"),
  39849. weight: math.unit(150, "lb"),
  39850. name: "Front",
  39851. image: {
  39852. source: "./media/characters/ariz/front.svg",
  39853. extra: 1401/1346,
  39854. bottom: 5/1406
  39855. }
  39856. },
  39857. },
  39858. [
  39859. {
  39860. name: "Normal",
  39861. height: math.unit(10, "feet"),
  39862. default: true
  39863. },
  39864. ]
  39865. ))
  39866. characterMakers.push(() => makeCharacter(
  39867. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39868. {
  39869. front: {
  39870. height: math.unit(6, "feet"),
  39871. weight: math.unit(140, "lb"),
  39872. name: "Front",
  39873. image: {
  39874. source: "./media/characters/sigrun/front.svg",
  39875. extra: 1418/1359,
  39876. bottom: 27/1445
  39877. }
  39878. },
  39879. },
  39880. [
  39881. {
  39882. name: "Macro",
  39883. height: math.unit(35, "feet"),
  39884. default: true
  39885. },
  39886. ]
  39887. ))
  39888. characterMakers.push(() => makeCharacter(
  39889. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39890. {
  39891. front: {
  39892. height: math.unit(6, "feet"),
  39893. weight: math.unit(150, "lb"),
  39894. name: "Front",
  39895. image: {
  39896. source: "./media/characters/numin/front.svg",
  39897. extra: 1433/1388,
  39898. bottom: 12/1445
  39899. }
  39900. },
  39901. },
  39902. [
  39903. {
  39904. name: "Macro",
  39905. height: math.unit(21.5, "km"),
  39906. default: true
  39907. },
  39908. ]
  39909. ))
  39910. characterMakers.push(() => makeCharacter(
  39911. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39912. {
  39913. front: {
  39914. height: math.unit(6, "feet"),
  39915. weight: math.unit(463, "lb"),
  39916. name: "Front",
  39917. image: {
  39918. source: "./media/characters/melwa/front.svg",
  39919. extra: 1307/1248,
  39920. bottom: 93/1400
  39921. }
  39922. },
  39923. },
  39924. [
  39925. {
  39926. name: "Macro",
  39927. height: math.unit(50, "meters"),
  39928. default: true
  39929. },
  39930. ]
  39931. ))
  39932. characterMakers.push(() => makeCharacter(
  39933. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39934. {
  39935. front: {
  39936. height: math.unit(325, "feet"),
  39937. name: "Front",
  39938. image: {
  39939. source: "./media/characters/zorkaiju/front.svg",
  39940. extra: 1955/1814,
  39941. bottom: 40/1995
  39942. }
  39943. },
  39944. frontExtended: {
  39945. height: math.unit(325, "feet"),
  39946. name: "Front (Extended)",
  39947. image: {
  39948. source: "./media/characters/zorkaiju/front-extended.svg",
  39949. extra: 1955/1814,
  39950. bottom: 40/1995
  39951. }
  39952. },
  39953. side: {
  39954. height: math.unit(325, "feet"),
  39955. name: "Side",
  39956. image: {
  39957. source: "./media/characters/zorkaiju/side.svg",
  39958. extra: 1495/1396,
  39959. bottom: 17/1512
  39960. }
  39961. },
  39962. sideExtended: {
  39963. height: math.unit(325, "feet"),
  39964. name: "Side (Extended)",
  39965. image: {
  39966. source: "./media/characters/zorkaiju/side-extended.svg",
  39967. extra: 1495/1396,
  39968. bottom: 17/1512
  39969. }
  39970. },
  39971. back: {
  39972. height: math.unit(325, "feet"),
  39973. name: "Back",
  39974. image: {
  39975. source: "./media/characters/zorkaiju/back.svg",
  39976. extra: 1959/1821,
  39977. bottom: 31/1990
  39978. }
  39979. },
  39980. backExtended: {
  39981. height: math.unit(325, "feet"),
  39982. name: "Back (Extended)",
  39983. image: {
  39984. source: "./media/characters/zorkaiju/back-extended.svg",
  39985. extra: 1959/1821,
  39986. bottom: 31/1990
  39987. }
  39988. },
  39989. hand: {
  39990. height: math.unit(58.4, "feet"),
  39991. name: "Hand",
  39992. image: {
  39993. source: "./media/characters/zorkaiju/hand.svg"
  39994. }
  39995. },
  39996. handExtended: {
  39997. height: math.unit(61.4, "feet"),
  39998. name: "Hand (Extended)",
  39999. image: {
  40000. source: "./media/characters/zorkaiju/hand-extended.svg"
  40001. }
  40002. },
  40003. foot: {
  40004. height: math.unit(95, "feet"),
  40005. name: "Foot",
  40006. image: {
  40007. source: "./media/characters/zorkaiju/foot.svg"
  40008. }
  40009. },
  40010. leftArm: {
  40011. height: math.unit(59, "feet"),
  40012. name: "Left Arm",
  40013. image: {
  40014. source: "./media/characters/zorkaiju/left-arm.svg"
  40015. }
  40016. },
  40017. rightArm: {
  40018. height: math.unit(59, "feet"),
  40019. name: "Right Arm",
  40020. image: {
  40021. source: "./media/characters/zorkaiju/right-arm.svg"
  40022. }
  40023. },
  40024. tail: {
  40025. height: math.unit(104, "feet"),
  40026. name: "Tail",
  40027. image: {
  40028. source: "./media/characters/zorkaiju/tail.svg"
  40029. }
  40030. },
  40031. tailExtended: {
  40032. height: math.unit(104, "feet"),
  40033. name: "Tail (Extended)",
  40034. image: {
  40035. source: "./media/characters/zorkaiju/tail-extended.svg"
  40036. }
  40037. },
  40038. tailBottom: {
  40039. height: math.unit(104, "feet"),
  40040. name: "Tail Bottom",
  40041. image: {
  40042. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40043. }
  40044. },
  40045. crystal: {
  40046. height: math.unit(27.54, "feet"),
  40047. name: "Crystal",
  40048. image: {
  40049. source: "./media/characters/zorkaiju/crystal.svg"
  40050. }
  40051. },
  40052. },
  40053. [
  40054. {
  40055. name: "Kaiju",
  40056. height: math.unit(325, "feet"),
  40057. default: true
  40058. },
  40059. ]
  40060. ))
  40061. characterMakers.push(() => makeCharacter(
  40062. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40063. {
  40064. front: {
  40065. height: math.unit(6 + 1/12, "feet"),
  40066. weight: math.unit(115, "lb"),
  40067. name: "Front",
  40068. image: {
  40069. source: "./media/characters/bailey-belfry/front.svg",
  40070. extra: 1240/1121,
  40071. bottom: 101/1341
  40072. }
  40073. },
  40074. },
  40075. [
  40076. {
  40077. name: "Normal",
  40078. height: math.unit(6 + 1/12, "feet"),
  40079. default: true
  40080. },
  40081. ]
  40082. ))
  40083. characterMakers.push(() => makeCharacter(
  40084. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40085. {
  40086. side: {
  40087. height: math.unit(4, "meters"),
  40088. weight: math.unit(250, "kg"),
  40089. name: "Side",
  40090. image: {
  40091. source: "./media/characters/blacky/side.svg",
  40092. extra: 1027/919,
  40093. bottom: 43/1070
  40094. }
  40095. },
  40096. maw: {
  40097. height: math.unit(1, "meters"),
  40098. name: "Maw",
  40099. image: {
  40100. source: "./media/characters/blacky/maw.svg"
  40101. }
  40102. },
  40103. paw: {
  40104. height: math.unit(1, "meters"),
  40105. name: "Paw",
  40106. image: {
  40107. source: "./media/characters/blacky/paw.svg"
  40108. }
  40109. },
  40110. },
  40111. [
  40112. {
  40113. name: "Normal",
  40114. height: math.unit(4, "meters"),
  40115. default: true
  40116. },
  40117. ]
  40118. ))
  40119. characterMakers.push(() => makeCharacter(
  40120. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40121. {
  40122. front: {
  40123. height: math.unit(170, "cm"),
  40124. weight: math.unit(66, "kg"),
  40125. name: "Front",
  40126. image: {
  40127. source: "./media/characters/thux-ei/front.svg",
  40128. extra: 1109/1011,
  40129. bottom: 8/1117
  40130. }
  40131. },
  40132. },
  40133. [
  40134. {
  40135. name: "Normal",
  40136. height: math.unit(170, "cm"),
  40137. default: true
  40138. },
  40139. ]
  40140. ))
  40141. characterMakers.push(() => makeCharacter(
  40142. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40143. {
  40144. front: {
  40145. height: math.unit(5, "feet"),
  40146. weight: math.unit(120, "lb"),
  40147. name: "Front",
  40148. image: {
  40149. source: "./media/characters/roxanne-voltaire/front.svg",
  40150. extra: 1901/1779,
  40151. bottom: 53/1954
  40152. }
  40153. },
  40154. },
  40155. [
  40156. {
  40157. name: "Normal",
  40158. height: math.unit(5, "feet"),
  40159. default: true
  40160. },
  40161. {
  40162. name: "Giant",
  40163. height: math.unit(50, "feet")
  40164. },
  40165. {
  40166. name: "Titan",
  40167. height: math.unit(500, "feet")
  40168. },
  40169. {
  40170. name: "Macro",
  40171. height: math.unit(5000, "feet")
  40172. },
  40173. {
  40174. name: "Megamacro",
  40175. height: math.unit(50000, "feet")
  40176. },
  40177. {
  40178. name: "Gigamacro",
  40179. height: math.unit(500000, "feet")
  40180. },
  40181. {
  40182. name: "Teramacro",
  40183. height: math.unit(5e6, "feet")
  40184. },
  40185. ]
  40186. ))
  40187. characterMakers.push(() => makeCharacter(
  40188. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40189. {
  40190. front: {
  40191. height: math.unit(6 + 2/12, "feet"),
  40192. name: "Front",
  40193. image: {
  40194. source: "./media/characters/squeaks/front.svg",
  40195. extra: 1823/1768,
  40196. bottom: 138/1961
  40197. }
  40198. },
  40199. },
  40200. [
  40201. {
  40202. name: "Micro",
  40203. height: math.unit(0.5, "inches")
  40204. },
  40205. {
  40206. name: "Normal",
  40207. height: math.unit(6 + 2/12, "feet"),
  40208. default: true
  40209. },
  40210. {
  40211. name: "Macro",
  40212. height: math.unit(600, "feet")
  40213. },
  40214. ]
  40215. ))
  40216. characterMakers.push(() => makeCharacter(
  40217. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40218. {
  40219. front: {
  40220. height: math.unit(1.72, "meters"),
  40221. name: "Front",
  40222. image: {
  40223. source: "./media/characters/archinger/front.svg",
  40224. extra: 1861/1675,
  40225. bottom: 125/1986
  40226. }
  40227. },
  40228. back: {
  40229. height: math.unit(1.72, "meters"),
  40230. name: "Back",
  40231. image: {
  40232. source: "./media/characters/archinger/back.svg",
  40233. extra: 1844/1701,
  40234. bottom: 104/1948
  40235. }
  40236. },
  40237. cock: {
  40238. height: math.unit(0.59, "feet"),
  40239. name: "Cock",
  40240. image: {
  40241. source: "./media/characters/archinger/cock.svg"
  40242. }
  40243. },
  40244. },
  40245. [
  40246. {
  40247. name: "Normal",
  40248. height: math.unit(1.72, "meters"),
  40249. default: true
  40250. },
  40251. {
  40252. name: "Macro",
  40253. height: math.unit(84, "meters")
  40254. },
  40255. {
  40256. name: "Macro+",
  40257. height: math.unit(112, "meters")
  40258. },
  40259. {
  40260. name: "Macro++",
  40261. height: math.unit(960, "meters")
  40262. },
  40263. {
  40264. name: "Macro+++",
  40265. height: math.unit(4, "km")
  40266. },
  40267. {
  40268. name: "Macro++++",
  40269. height: math.unit(48, "km")
  40270. },
  40271. {
  40272. name: "Macro+++++",
  40273. height: math.unit(4500, "km")
  40274. },
  40275. ]
  40276. ))
  40277. characterMakers.push(() => makeCharacter(
  40278. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40279. {
  40280. front: {
  40281. height: math.unit(5 + 5/12, "feet"),
  40282. name: "Front",
  40283. image: {
  40284. source: "./media/characters/alsnapz/front.svg",
  40285. extra: 1157/1065,
  40286. bottom: 42/1199
  40287. }
  40288. },
  40289. },
  40290. [
  40291. {
  40292. name: "Normal",
  40293. height: math.unit(5 + 5/12, "feet"),
  40294. default: true
  40295. },
  40296. ]
  40297. ))
  40298. characterMakers.push(() => makeCharacter(
  40299. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40300. {
  40301. side: {
  40302. height: math.unit(3.2, "earths"),
  40303. name: "Side",
  40304. image: {
  40305. source: "./media/characters/mag/side.svg",
  40306. extra: 1331/1008,
  40307. bottom: 52/1383
  40308. }
  40309. },
  40310. wing: {
  40311. height: math.unit(1.94, "earths"),
  40312. name: "Wing",
  40313. image: {
  40314. source: "./media/characters/mag/wing.svg"
  40315. }
  40316. },
  40317. dick: {
  40318. height: math.unit(1.8, "earths"),
  40319. name: "Dick",
  40320. image: {
  40321. source: "./media/characters/mag/dick.svg"
  40322. }
  40323. },
  40324. ass: {
  40325. height: math.unit(1.33, "earths"),
  40326. name: "Ass",
  40327. image: {
  40328. source: "./media/characters/mag/ass.svg"
  40329. }
  40330. },
  40331. head: {
  40332. height: math.unit(1.1, "earths"),
  40333. name: "Head",
  40334. image: {
  40335. source: "./media/characters/mag/head.svg"
  40336. }
  40337. },
  40338. maw: {
  40339. height: math.unit(1.62, "earths"),
  40340. name: "Maw",
  40341. image: {
  40342. source: "./media/characters/mag/maw.svg"
  40343. }
  40344. },
  40345. },
  40346. [
  40347. {
  40348. name: "Small",
  40349. height: math.unit(162, "feet")
  40350. },
  40351. {
  40352. name: "Normal",
  40353. height: math.unit(3.2, "earths"),
  40354. default: true
  40355. },
  40356. ]
  40357. ))
  40358. characterMakers.push(() => makeCharacter(
  40359. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40360. {
  40361. front: {
  40362. height: math.unit(512, "feet"),
  40363. weight: math.unit(63509, "tonnes"),
  40364. name: "Front",
  40365. image: {
  40366. source: "./media/characters/vorrel-harroc/front.svg",
  40367. extra: 1075/1063,
  40368. bottom: 62/1137
  40369. }
  40370. },
  40371. },
  40372. [
  40373. {
  40374. name: "Normal",
  40375. height: math.unit(10, "feet")
  40376. },
  40377. {
  40378. name: "Macro",
  40379. height: math.unit(512, "feet"),
  40380. default: true
  40381. },
  40382. {
  40383. name: "Megamacro",
  40384. height: math.unit(256, "miles")
  40385. },
  40386. {
  40387. name: "Gigamacro",
  40388. height: math.unit(4096, "miles")
  40389. },
  40390. ]
  40391. ))
  40392. characterMakers.push(() => makeCharacter(
  40393. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40394. {
  40395. side: {
  40396. height: math.unit(50, "feet"),
  40397. name: "Side",
  40398. image: {
  40399. source: "./media/characters/froimar/side.svg",
  40400. extra: 855/638,
  40401. bottom: 99/954
  40402. }
  40403. },
  40404. },
  40405. [
  40406. {
  40407. name: "Macro",
  40408. height: math.unit(50, "feet"),
  40409. default: true
  40410. },
  40411. ]
  40412. ))
  40413. characterMakers.push(() => makeCharacter(
  40414. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40415. {
  40416. front: {
  40417. height: math.unit(210, "miles"),
  40418. name: "Front",
  40419. image: {
  40420. source: "./media/characters/timothy/front.svg",
  40421. extra: 1007/943,
  40422. bottom: 62/1069
  40423. }
  40424. },
  40425. frontSkirt: {
  40426. height: math.unit(210, "miles"),
  40427. name: "Front (Skirt)",
  40428. image: {
  40429. source: "./media/characters/timothy/front-skirt.svg",
  40430. extra: 1007/943,
  40431. bottom: 62/1069
  40432. }
  40433. },
  40434. frontCoat: {
  40435. height: math.unit(210, "miles"),
  40436. name: "Front (Coat)",
  40437. image: {
  40438. source: "./media/characters/timothy/front-coat.svg",
  40439. extra: 1007/943,
  40440. bottom: 62/1069
  40441. }
  40442. },
  40443. },
  40444. [
  40445. {
  40446. name: "Macro",
  40447. height: math.unit(210, "miles"),
  40448. default: true
  40449. },
  40450. {
  40451. name: "Megamacro",
  40452. height: math.unit(210000, "miles")
  40453. },
  40454. ]
  40455. ))
  40456. characterMakers.push(() => makeCharacter(
  40457. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40458. {
  40459. front: {
  40460. height: math.unit(188, "feet"),
  40461. name: "Front",
  40462. image: {
  40463. source: "./media/characters/pyotr/front.svg",
  40464. extra: 1912/1826,
  40465. bottom: 18/1930
  40466. }
  40467. },
  40468. },
  40469. [
  40470. {
  40471. name: "Macro",
  40472. height: math.unit(188, "feet"),
  40473. default: true
  40474. },
  40475. {
  40476. name: "Megamacro",
  40477. height: math.unit(8, "miles")
  40478. },
  40479. ]
  40480. ))
  40481. characterMakers.push(() => makeCharacter(
  40482. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40483. {
  40484. side: {
  40485. height: math.unit(10, "feet"),
  40486. weight: math.unit(4500, "lb"),
  40487. name: "Side",
  40488. image: {
  40489. source: "./media/characters/ackart/side.svg",
  40490. extra: 1776/1668,
  40491. bottom: 116/1892
  40492. }
  40493. },
  40494. },
  40495. [
  40496. {
  40497. name: "Normal",
  40498. height: math.unit(10, "feet"),
  40499. default: true
  40500. },
  40501. ]
  40502. ))
  40503. characterMakers.push(() => makeCharacter(
  40504. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40505. {
  40506. side: {
  40507. height: math.unit(21, "feet"),
  40508. name: "Side",
  40509. image: {
  40510. source: "./media/characters/nolow/side.svg",
  40511. extra: 1484/1434,
  40512. bottom: 85/1569
  40513. }
  40514. },
  40515. sideErect: {
  40516. height: math.unit(21, "feet"),
  40517. name: "Side-erect",
  40518. image: {
  40519. source: "./media/characters/nolow/side-erect.svg",
  40520. extra: 1484/1434,
  40521. bottom: 85/1569
  40522. }
  40523. },
  40524. },
  40525. [
  40526. {
  40527. name: "Regular",
  40528. height: math.unit(12, "feet")
  40529. },
  40530. {
  40531. name: "Big Chee",
  40532. height: math.unit(21, "feet"),
  40533. default: true
  40534. },
  40535. ]
  40536. ))
  40537. characterMakers.push(() => makeCharacter(
  40538. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40539. {
  40540. front: {
  40541. height: math.unit(7, "feet"),
  40542. weight: math.unit(250, "lb"),
  40543. name: "Front",
  40544. image: {
  40545. source: "./media/characters/nines/front.svg",
  40546. extra: 1741/1607,
  40547. bottom: 41/1782
  40548. }
  40549. },
  40550. side: {
  40551. height: math.unit(7, "feet"),
  40552. weight: math.unit(250, "lb"),
  40553. name: "Side",
  40554. image: {
  40555. source: "./media/characters/nines/side.svg",
  40556. extra: 1854/1735,
  40557. bottom: 93/1947
  40558. }
  40559. },
  40560. back: {
  40561. height: math.unit(7, "feet"),
  40562. weight: math.unit(250, "lb"),
  40563. name: "Back",
  40564. image: {
  40565. source: "./media/characters/nines/back.svg",
  40566. extra: 1748/1615,
  40567. bottom: 20/1768
  40568. }
  40569. },
  40570. },
  40571. [
  40572. {
  40573. name: "Megamacro",
  40574. height: math.unit(99, "km"),
  40575. default: true
  40576. },
  40577. ]
  40578. ))
  40579. characterMakers.push(() => makeCharacter(
  40580. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40581. {
  40582. front: {
  40583. height: math.unit(5 + 10/12, "feet"),
  40584. weight: math.unit(210, "lb"),
  40585. name: "Front",
  40586. image: {
  40587. source: "./media/characters/zenith/front.svg",
  40588. extra: 1531/1452,
  40589. bottom: 198/1729
  40590. }
  40591. },
  40592. back: {
  40593. height: math.unit(5 + 10/12, "feet"),
  40594. weight: math.unit(210, "lb"),
  40595. name: "Back",
  40596. image: {
  40597. source: "./media/characters/zenith/back.svg",
  40598. extra: 1571/1487,
  40599. bottom: 75/1646
  40600. }
  40601. },
  40602. },
  40603. [
  40604. {
  40605. name: "Normal",
  40606. height: math.unit(5 + 10/12, "feet"),
  40607. default: true
  40608. }
  40609. ]
  40610. ))
  40611. characterMakers.push(() => makeCharacter(
  40612. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40613. {
  40614. front: {
  40615. height: math.unit(4, "feet"),
  40616. weight: math.unit(60, "lb"),
  40617. name: "Front",
  40618. image: {
  40619. source: "./media/characters/jasper/front.svg",
  40620. extra: 1450/1379,
  40621. bottom: 19/1469
  40622. }
  40623. },
  40624. },
  40625. [
  40626. {
  40627. name: "Normal",
  40628. height: math.unit(4, "feet"),
  40629. default: true
  40630. },
  40631. ]
  40632. ))
  40633. characterMakers.push(() => makeCharacter(
  40634. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40635. {
  40636. front: {
  40637. height: math.unit(6 + 5/12, "feet"),
  40638. weight: math.unit(290, "lb"),
  40639. name: "Front",
  40640. image: {
  40641. source: "./media/characters/tiberius-thyben/front.svg",
  40642. extra: 757/739,
  40643. bottom: 39/796
  40644. }
  40645. },
  40646. },
  40647. [
  40648. {
  40649. name: "Micro",
  40650. height: math.unit(1.5, "inches")
  40651. },
  40652. {
  40653. name: "Normal",
  40654. height: math.unit(6 + 5/12, "feet"),
  40655. default: true
  40656. },
  40657. {
  40658. name: "Macro",
  40659. height: math.unit(300, "feet")
  40660. },
  40661. ]
  40662. ))
  40663. characterMakers.push(() => makeCharacter(
  40664. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40665. {
  40666. front: {
  40667. height: math.unit(5 + 6/12, "feet"),
  40668. weight: math.unit(60, "kg"),
  40669. name: "Front",
  40670. image: {
  40671. source: "./media/characters/sabre/front.svg",
  40672. extra: 738/671,
  40673. bottom: 27/765
  40674. }
  40675. },
  40676. },
  40677. [
  40678. {
  40679. name: "Teeny",
  40680. height: math.unit(2, "inches")
  40681. },
  40682. {
  40683. name: "Smol",
  40684. height: math.unit(8, "inches")
  40685. },
  40686. {
  40687. name: "Normal",
  40688. height: math.unit(5 + 6/12, "feet"),
  40689. default: true
  40690. },
  40691. {
  40692. name: "Mini-Macro",
  40693. height: math.unit(15, "feet")
  40694. },
  40695. {
  40696. name: "Macro",
  40697. height: math.unit(50, "feet")
  40698. },
  40699. ]
  40700. ))
  40701. characterMakers.push(() => makeCharacter(
  40702. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40703. {
  40704. front: {
  40705. height: math.unit(6 + 4/12, "feet"),
  40706. weight: math.unit(170, "lb"),
  40707. name: "Front",
  40708. image: {
  40709. source: "./media/characters/charlie/front.svg",
  40710. extra: 1348/1228,
  40711. bottom: 15/1363
  40712. }
  40713. },
  40714. },
  40715. [
  40716. {
  40717. name: "Macro",
  40718. height: math.unit(1700, "meters"),
  40719. default: true
  40720. },
  40721. {
  40722. name: "MegaMacro",
  40723. height: math.unit(20400, "meters")
  40724. },
  40725. ]
  40726. ))
  40727. characterMakers.push(() => makeCharacter(
  40728. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40729. {
  40730. front: {
  40731. height: math.unit(6 + 3/12, "feet"),
  40732. weight: math.unit(185, "lb"),
  40733. name: "Front",
  40734. image: {
  40735. source: "./media/characters/susan-grant/front.svg",
  40736. extra: 1351/1327,
  40737. bottom: 26/1377
  40738. }
  40739. },
  40740. },
  40741. [
  40742. {
  40743. name: "Normal",
  40744. height: math.unit(6 + 3/12, "feet"),
  40745. default: true
  40746. },
  40747. {
  40748. name: "Macro",
  40749. height: math.unit(225, "feet")
  40750. },
  40751. {
  40752. name: "Macro+",
  40753. height: math.unit(900, "feet")
  40754. },
  40755. {
  40756. name: "MegaMacro",
  40757. height: math.unit(14400, "feet")
  40758. },
  40759. ]
  40760. ))
  40761. characterMakers.push(() => makeCharacter(
  40762. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40763. {
  40764. front: {
  40765. height: math.unit(5 + 4/12, "feet"),
  40766. weight: math.unit(110, "lb"),
  40767. name: "Front",
  40768. image: {
  40769. source: "./media/characters/axel-isanov/front.svg",
  40770. extra: 1096/1065,
  40771. bottom: 13/1109
  40772. }
  40773. },
  40774. },
  40775. [
  40776. {
  40777. name: "Normal",
  40778. height: math.unit(5 + 4/12, "feet"),
  40779. default: true
  40780. },
  40781. ]
  40782. ))
  40783. characterMakers.push(() => makeCharacter(
  40784. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40785. {
  40786. front: {
  40787. height: math.unit(9, "feet"),
  40788. weight: math.unit(467, "lb"),
  40789. name: "Front",
  40790. image: {
  40791. source: "./media/characters/necahual/front.svg",
  40792. extra: 920/873,
  40793. bottom: 26/946
  40794. }
  40795. },
  40796. back: {
  40797. height: math.unit(9, "feet"),
  40798. weight: math.unit(467, "lb"),
  40799. name: "Back",
  40800. image: {
  40801. source: "./media/characters/necahual/back.svg",
  40802. extra: 930/884,
  40803. bottom: 16/946
  40804. }
  40805. },
  40806. frontUnderwear: {
  40807. height: math.unit(9, "feet"),
  40808. weight: math.unit(467, "lb"),
  40809. name: "Front (Underwear)",
  40810. image: {
  40811. source: "./media/characters/necahual/front-underwear.svg",
  40812. extra: 920/873,
  40813. bottom: 26/946
  40814. }
  40815. },
  40816. frontDressed: {
  40817. height: math.unit(9, "feet"),
  40818. weight: math.unit(467, "lb"),
  40819. name: "Front (Dressed)",
  40820. image: {
  40821. source: "./media/characters/necahual/front-dressed.svg",
  40822. extra: 920/873,
  40823. bottom: 26/946
  40824. }
  40825. },
  40826. },
  40827. [
  40828. {
  40829. name: "Comprsesed",
  40830. height: math.unit(9, "feet")
  40831. },
  40832. {
  40833. name: "Natural",
  40834. height: math.unit(15, "feet"),
  40835. default: true
  40836. },
  40837. {
  40838. name: "Boosted",
  40839. height: math.unit(50, "feet")
  40840. },
  40841. {
  40842. name: "Boosted+",
  40843. height: math.unit(150, "feet")
  40844. },
  40845. {
  40846. name: "Max",
  40847. height: math.unit(500, "feet")
  40848. },
  40849. ]
  40850. ))
  40851. characterMakers.push(() => makeCharacter(
  40852. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40853. {
  40854. front: {
  40855. height: math.unit(22 + 1/12, "feet"),
  40856. weight: math.unit(3200, "lb"),
  40857. name: "Front",
  40858. image: {
  40859. source: "./media/characters/theo-acacia/front.svg",
  40860. extra: 1796/1741,
  40861. bottom: 83/1879
  40862. }
  40863. },
  40864. frontUnderwear: {
  40865. height: math.unit(22 + 1/12, "feet"),
  40866. weight: math.unit(3200, "lb"),
  40867. name: "Front (Underwear)",
  40868. image: {
  40869. source: "./media/characters/theo-acacia/front-underwear.svg",
  40870. extra: 1796/1741,
  40871. bottom: 83/1879
  40872. }
  40873. },
  40874. frontNude: {
  40875. height: math.unit(22 + 1/12, "feet"),
  40876. weight: math.unit(3200, "lb"),
  40877. name: "Front (Nude)",
  40878. image: {
  40879. source: "./media/characters/theo-acacia/front-nude.svg",
  40880. extra: 1796/1741,
  40881. bottom: 83/1879
  40882. }
  40883. },
  40884. },
  40885. [
  40886. {
  40887. name: "Normal",
  40888. height: math.unit(22 + 1/12, "feet"),
  40889. default: true
  40890. },
  40891. ]
  40892. ))
  40893. characterMakers.push(() => makeCharacter(
  40894. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40895. {
  40896. front: {
  40897. height: math.unit(20, "feet"),
  40898. name: "Front",
  40899. image: {
  40900. source: "./media/characters/astra/front.svg",
  40901. extra: 1850/1714,
  40902. bottom: 106/1956
  40903. }
  40904. },
  40905. frontUndressed: {
  40906. height: math.unit(20, "feet"),
  40907. name: "Front (Undressed)",
  40908. image: {
  40909. source: "./media/characters/astra/front-undressed.svg",
  40910. extra: 1926/1749,
  40911. bottom: 0/1926
  40912. }
  40913. },
  40914. hand: {
  40915. height: math.unit(1.53, "feet"),
  40916. name: "Hand",
  40917. image: {
  40918. source: "./media/characters/astra/hand.svg"
  40919. }
  40920. },
  40921. paw: {
  40922. height: math.unit(1.53, "feet"),
  40923. name: "Paw",
  40924. image: {
  40925. source: "./media/characters/astra/paw.svg"
  40926. }
  40927. },
  40928. },
  40929. [
  40930. {
  40931. name: "Smallest",
  40932. height: math.unit(20, "feet")
  40933. },
  40934. {
  40935. name: "Normal",
  40936. height: math.unit(1e9, "miles"),
  40937. default: true
  40938. },
  40939. {
  40940. name: "Larger",
  40941. height: math.unit(5, "multiverses")
  40942. },
  40943. {
  40944. name: "Largest",
  40945. height: math.unit(1e9, "multiverses")
  40946. },
  40947. ]
  40948. ))
  40949. characterMakers.push(() => makeCharacter(
  40950. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40951. {
  40952. front: {
  40953. height: math.unit(8, "feet"),
  40954. name: "Front",
  40955. image: {
  40956. source: "./media/characters/breanna/front.svg",
  40957. extra: 1912/1632,
  40958. bottom: 33/1945
  40959. }
  40960. },
  40961. },
  40962. [
  40963. {
  40964. name: "Smallest",
  40965. height: math.unit(8, "feet")
  40966. },
  40967. {
  40968. name: "Normal",
  40969. height: math.unit(1, "mile"),
  40970. default: true
  40971. },
  40972. {
  40973. name: "Maximum",
  40974. height: math.unit(1500000000000, "lightyears")
  40975. },
  40976. ]
  40977. ))
  40978. characterMakers.push(() => makeCharacter(
  40979. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40980. {
  40981. front: {
  40982. height: math.unit(5 + 11/12, "feet"),
  40983. weight: math.unit(155, "lb"),
  40984. name: "Front",
  40985. image: {
  40986. source: "./media/characters/cai/front.svg",
  40987. extra: 1823/1702,
  40988. bottom: 32/1855
  40989. }
  40990. },
  40991. back: {
  40992. height: math.unit(5 + 11/12, "feet"),
  40993. weight: math.unit(155, "lb"),
  40994. name: "Back",
  40995. image: {
  40996. source: "./media/characters/cai/back.svg",
  40997. extra: 1809/1708,
  40998. bottom: 31/1840
  40999. }
  41000. },
  41001. },
  41002. [
  41003. {
  41004. name: "Normal",
  41005. height: math.unit(5 + 11/12, "feet"),
  41006. default: true
  41007. },
  41008. {
  41009. name: "Big",
  41010. height: math.unit(15, "feet")
  41011. },
  41012. {
  41013. name: "Macro",
  41014. height: math.unit(200, "feet")
  41015. },
  41016. ]
  41017. ))
  41018. characterMakers.push(() => makeCharacter(
  41019. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41020. {
  41021. front: {
  41022. height: math.unit(5 + 6/12, "feet"),
  41023. weight: math.unit(160, "lb"),
  41024. name: "Front",
  41025. image: {
  41026. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41027. extra: 1227/1174,
  41028. bottom: 37/1264
  41029. }
  41030. },
  41031. },
  41032. [
  41033. {
  41034. name: "Macro",
  41035. height: math.unit(444, "meters"),
  41036. default: true
  41037. },
  41038. ]
  41039. ))
  41040. characterMakers.push(() => makeCharacter(
  41041. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41042. {
  41043. front: {
  41044. height: math.unit(18 + 7/12, "feet"),
  41045. name: "Front",
  41046. image: {
  41047. source: "./media/characters/rex/front.svg",
  41048. extra: 1941/1807,
  41049. bottom: 66/2007
  41050. }
  41051. },
  41052. back: {
  41053. height: math.unit(18 + 7/12, "feet"),
  41054. name: "Back",
  41055. image: {
  41056. source: "./media/characters/rex/back.svg",
  41057. extra: 1937/1822,
  41058. bottom: 42/1979
  41059. }
  41060. },
  41061. boot: {
  41062. height: math.unit(3.45, "feet"),
  41063. name: "Boot",
  41064. image: {
  41065. source: "./media/characters/rex/boot.svg"
  41066. }
  41067. },
  41068. paw: {
  41069. height: math.unit(4.17, "feet"),
  41070. name: "Paw",
  41071. image: {
  41072. source: "./media/characters/rex/paw.svg"
  41073. }
  41074. },
  41075. head: {
  41076. height: math.unit(6.728, "feet"),
  41077. name: "Head",
  41078. image: {
  41079. source: "./media/characters/rex/head.svg"
  41080. }
  41081. },
  41082. },
  41083. [
  41084. {
  41085. name: "Nano",
  41086. height: math.unit(18 + 7/12, "feet")
  41087. },
  41088. {
  41089. name: "Micro",
  41090. height: math.unit(1.5, "megameters")
  41091. },
  41092. {
  41093. name: "Normal",
  41094. height: math.unit(440, "megameters"),
  41095. default: true
  41096. },
  41097. {
  41098. name: "Macro",
  41099. height: math.unit(2.5, "gigameters")
  41100. },
  41101. {
  41102. name: "Gigamacro",
  41103. height: math.unit(2, "galaxies")
  41104. },
  41105. ]
  41106. ))
  41107. characterMakers.push(() => makeCharacter(
  41108. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41109. {
  41110. side: {
  41111. height: math.unit(32, "feet"),
  41112. weight: math.unit(250000, "lb"),
  41113. name: "Side",
  41114. image: {
  41115. source: "./media/characters/silverwing/side.svg",
  41116. extra: 1100/1019,
  41117. bottom: 204/1304
  41118. }
  41119. },
  41120. },
  41121. [
  41122. {
  41123. name: "Normal",
  41124. height: math.unit(32, "feet"),
  41125. default: true
  41126. },
  41127. ]
  41128. ))
  41129. characterMakers.push(() => makeCharacter(
  41130. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41131. {
  41132. front: {
  41133. height: math.unit(6 + 6/12, "feet"),
  41134. weight: math.unit(350, "lb"),
  41135. name: "Front",
  41136. image: {
  41137. source: "./media/characters/tristan-hawthorne/front.svg",
  41138. extra: 1159/1124,
  41139. bottom: 37/1196
  41140. }
  41141. },
  41142. },
  41143. [
  41144. {
  41145. name: "Normal",
  41146. height: math.unit(6 + 6/12, "feet"),
  41147. default: true
  41148. },
  41149. ]
  41150. ))
  41151. characterMakers.push(() => makeCharacter(
  41152. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41153. {
  41154. front: {
  41155. height: math.unit(5 + 11/12, "feet"),
  41156. weight: math.unit(190, "lb"),
  41157. name: "Front",
  41158. image: {
  41159. source: "./media/characters/mizu/front.svg",
  41160. extra: 1988/1788,
  41161. bottom: 14/2002
  41162. }
  41163. },
  41164. },
  41165. [
  41166. {
  41167. name: "Normal",
  41168. height: math.unit(5 + 11/12, "feet"),
  41169. default: true
  41170. },
  41171. ]
  41172. ))
  41173. characterMakers.push(() => makeCharacter(
  41174. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41175. {
  41176. front: {
  41177. height: math.unit(6, "feet"),
  41178. name: "Front",
  41179. image: {
  41180. source: "./media/characters/moonlight-rose-terra/front.svg",
  41181. extra: 1434/1252,
  41182. bottom: 48/1482
  41183. }
  41184. },
  41185. },
  41186. [
  41187. {
  41188. name: "TRAPPIST-1D",
  41189. height: math.unit(4992*2, "km")
  41190. },
  41191. {
  41192. name: "Earth",
  41193. height: math.unit(6367*2, "km"),
  41194. default: true
  41195. },
  41196. {
  41197. name: "Kepler-22b",
  41198. height: math.unit(15282*2, "km")
  41199. },
  41200. ]
  41201. ))
  41202. characterMakers.push(() => makeCharacter(
  41203. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41204. {
  41205. front: {
  41206. height: math.unit(6, "feet"),
  41207. name: "Front",
  41208. image: {
  41209. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41210. extra: 1851/1712,
  41211. bottom: 0/1851
  41212. }
  41213. },
  41214. },
  41215. [
  41216. {
  41217. name: "Enceladus",
  41218. height: math.unit(513*2, "km")
  41219. },
  41220. {
  41221. name: "Europe",
  41222. height: math.unit(1560*2, "km")
  41223. },
  41224. {
  41225. name: "Neptune",
  41226. height: math.unit(24622*2, "km"),
  41227. default: true
  41228. },
  41229. {
  41230. name: "CoRoT-9b",
  41231. height: math.unit(75067*2, "km")
  41232. },
  41233. ]
  41234. ))
  41235. characterMakers.push(() => makeCharacter(
  41236. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41237. {
  41238. front: {
  41239. height: math.unit(6, "feet"),
  41240. name: "Front",
  41241. image: {
  41242. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41243. extra: 1367/1286,
  41244. bottom: 55/1422
  41245. }
  41246. },
  41247. },
  41248. [
  41249. {
  41250. name: "Saturn",
  41251. height: math.unit(58232*2, "km")
  41252. },
  41253. {
  41254. name: "Jupiter",
  41255. height: math.unit(69911*2, "km"),
  41256. default: true
  41257. },
  41258. {
  41259. name: "HD 100546 b",
  41260. height: math.unit(482938, "km")
  41261. },
  41262. ]
  41263. ))
  41264. characterMakers.push(() => makeCharacter(
  41265. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41266. {
  41267. front: {
  41268. height: math.unit(1.7, "feet"),
  41269. weight: math.unit(50, "lb"),
  41270. name: "Front",
  41271. image: {
  41272. source: "./media/characters/dechroma/front.svg",
  41273. extra: 1095/859,
  41274. bottom: 64/1159
  41275. }
  41276. },
  41277. },
  41278. [
  41279. {
  41280. name: "Normal",
  41281. height: math.unit(1.7, "feet"),
  41282. default: true
  41283. },
  41284. ]
  41285. ))
  41286. characterMakers.push(() => makeCharacter(
  41287. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41288. {
  41289. side: {
  41290. height: math.unit(30, "feet"),
  41291. name: "Side",
  41292. image: {
  41293. source: "./media/characters/veluren-thanazel/side.svg",
  41294. extra: 1611/633,
  41295. bottom: 118/1729
  41296. }
  41297. },
  41298. front: {
  41299. height: math.unit(30, "feet"),
  41300. name: "Front",
  41301. image: {
  41302. source: "./media/characters/veluren-thanazel/front.svg",
  41303. extra: 1486/636,
  41304. bottom: 238/1724
  41305. }
  41306. },
  41307. head: {
  41308. height: math.unit(21.4, "feet"),
  41309. name: "Head",
  41310. image: {
  41311. source: "./media/characters/veluren-thanazel/head.svg"
  41312. }
  41313. },
  41314. genitals: {
  41315. height: math.unit(19.4, "feet"),
  41316. name: "Genitals",
  41317. image: {
  41318. source: "./media/characters/veluren-thanazel/genitals.svg"
  41319. }
  41320. },
  41321. },
  41322. [
  41323. {
  41324. name: "Social",
  41325. height: math.unit(6, "feet")
  41326. },
  41327. {
  41328. name: "Play",
  41329. height: math.unit(12, "feet")
  41330. },
  41331. {
  41332. name: "True",
  41333. height: math.unit(30, "feet"),
  41334. default: true
  41335. },
  41336. ]
  41337. ))
  41338. characterMakers.push(() => makeCharacter(
  41339. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41340. {
  41341. front: {
  41342. height: math.unit(7 + 6/12, "feet"),
  41343. weight: math.unit(500, "kg"),
  41344. name: "Front",
  41345. image: {
  41346. source: "./media/characters/arcturas/front.svg",
  41347. extra: 1700/1500,
  41348. bottom: 145/1845
  41349. }
  41350. },
  41351. },
  41352. [
  41353. {
  41354. name: "Normal",
  41355. height: math.unit(7 + 6/12, "feet"),
  41356. default: true
  41357. },
  41358. ]
  41359. ))
  41360. characterMakers.push(() => makeCharacter(
  41361. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41362. {
  41363. side: {
  41364. height: math.unit(6, "feet"),
  41365. weight: math.unit(2, "tons"),
  41366. name: "Side",
  41367. image: {
  41368. source: "./media/characters/vitaen/side.svg",
  41369. extra: 1157/617,
  41370. bottom: 122/1279
  41371. }
  41372. },
  41373. },
  41374. [
  41375. {
  41376. name: "Normal",
  41377. height: math.unit(6, "feet"),
  41378. default: true
  41379. },
  41380. ]
  41381. ))
  41382. characterMakers.push(() => makeCharacter(
  41383. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41384. {
  41385. front: {
  41386. height: math.unit(19, "feet"),
  41387. name: "Front",
  41388. image: {
  41389. source: "./media/characters/fia-dreamweaver/front.svg",
  41390. extra: 1630/1504,
  41391. bottom: 25/1655
  41392. }
  41393. },
  41394. },
  41395. [
  41396. {
  41397. name: "Normal",
  41398. height: math.unit(19, "feet"),
  41399. default: true
  41400. },
  41401. ]
  41402. ))
  41403. characterMakers.push(() => makeCharacter(
  41404. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41405. {
  41406. front: {
  41407. height: math.unit(5 + 4/12, "feet"),
  41408. name: "Front",
  41409. image: {
  41410. source: "./media/characters/artan/front.svg",
  41411. extra: 1618/1535,
  41412. bottom: 46/1664
  41413. }
  41414. },
  41415. back: {
  41416. height: math.unit(5 + 4/12, "feet"),
  41417. name: "Back",
  41418. image: {
  41419. source: "./media/characters/artan/back.svg",
  41420. extra: 1618/1543,
  41421. bottom: 31/1649
  41422. }
  41423. },
  41424. },
  41425. [
  41426. {
  41427. name: "Normal",
  41428. height: math.unit(5 + 4/12, "feet"),
  41429. default: true
  41430. },
  41431. ]
  41432. ))
  41433. characterMakers.push(() => makeCharacter(
  41434. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41435. {
  41436. side: {
  41437. height: math.unit(182, "cm"),
  41438. weight: math.unit(1000, "lb"),
  41439. name: "Side",
  41440. image: {
  41441. source: "./media/characters/silver-dragon/side.svg",
  41442. extra: 710/287,
  41443. bottom: 88/798
  41444. }
  41445. },
  41446. },
  41447. [
  41448. {
  41449. name: "Normal",
  41450. height: math.unit(182, "cm"),
  41451. default: true
  41452. },
  41453. ]
  41454. ))
  41455. characterMakers.push(() => makeCharacter(
  41456. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41457. {
  41458. side: {
  41459. height: math.unit(6 + 6/12, "feet"),
  41460. weight: math.unit(1.5, "tons"),
  41461. name: "Side",
  41462. image: {
  41463. source: "./media/characters/zephyr/side.svg",
  41464. extra: 1433/586,
  41465. bottom: 109/1542
  41466. }
  41467. },
  41468. },
  41469. [
  41470. {
  41471. name: "Normal",
  41472. height: math.unit(6 + 6/12, "feet"),
  41473. default: true
  41474. },
  41475. ]
  41476. ))
  41477. characterMakers.push(() => makeCharacter(
  41478. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41479. {
  41480. side: {
  41481. height: math.unit(1, "feet"),
  41482. name: "Side",
  41483. image: {
  41484. source: "./media/characters/vixye/side.svg",
  41485. extra: 632/541,
  41486. bottom: 0/632
  41487. }
  41488. },
  41489. },
  41490. [
  41491. {
  41492. name: "Normal",
  41493. height: math.unit(1, "feet"),
  41494. default: true
  41495. },
  41496. {
  41497. name: "True",
  41498. height: math.unit(1e15, "multiverses")
  41499. },
  41500. ]
  41501. ))
  41502. characterMakers.push(() => makeCharacter(
  41503. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41504. {
  41505. front: {
  41506. height: math.unit(8 + 2/12, "feet"),
  41507. weight: math.unit(650, "lb"),
  41508. name: "Front",
  41509. image: {
  41510. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41511. extra: 1174/1137,
  41512. bottom: 82/1256
  41513. }
  41514. },
  41515. back: {
  41516. height: math.unit(8 + 2/12, "feet"),
  41517. weight: math.unit(650, "lb"),
  41518. name: "Back",
  41519. image: {
  41520. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41521. extra: 1204/1157,
  41522. bottom: 46/1250
  41523. }
  41524. },
  41525. },
  41526. [
  41527. {
  41528. name: "Wildform",
  41529. height: math.unit(8 + 2/12, "feet"),
  41530. default: true
  41531. },
  41532. ]
  41533. ))
  41534. characterMakers.push(() => makeCharacter(
  41535. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41536. {
  41537. front: {
  41538. height: math.unit(18, "feet"),
  41539. name: "Front",
  41540. image: {
  41541. source: "./media/characters/cyphin/front.svg",
  41542. extra: 970/886,
  41543. bottom: 42/1012
  41544. }
  41545. },
  41546. back: {
  41547. height: math.unit(18, "feet"),
  41548. name: "Back",
  41549. image: {
  41550. source: "./media/characters/cyphin/back.svg",
  41551. extra: 1009/894,
  41552. bottom: 24/1033
  41553. }
  41554. },
  41555. head: {
  41556. height: math.unit(5.05, "feet"),
  41557. name: "Head",
  41558. image: {
  41559. source: "./media/characters/cyphin/head.svg"
  41560. }
  41561. },
  41562. tailbud: {
  41563. height: math.unit(5, "feet"),
  41564. name: "Tailbud",
  41565. image: {
  41566. source: "./media/characters/cyphin/tailbud.svg"
  41567. }
  41568. },
  41569. },
  41570. [
  41571. ]
  41572. ))
  41573. characterMakers.push(() => makeCharacter(
  41574. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41575. {
  41576. side: {
  41577. height: math.unit(10, "feet"),
  41578. weight: math.unit(6, "tons"),
  41579. name: "Side",
  41580. image: {
  41581. source: "./media/characters/raijin/side.svg",
  41582. extra: 1529/613,
  41583. bottom: 337/1866
  41584. }
  41585. },
  41586. },
  41587. [
  41588. {
  41589. name: "Normal",
  41590. height: math.unit(10, "feet"),
  41591. default: true
  41592. },
  41593. ]
  41594. ))
  41595. characterMakers.push(() => makeCharacter(
  41596. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41597. {
  41598. side: {
  41599. height: math.unit(9, "feet"),
  41600. name: "Side",
  41601. image: {
  41602. source: "./media/characters/nilghais/side.svg",
  41603. extra: 1047/744,
  41604. bottom: 91/1138
  41605. }
  41606. },
  41607. head: {
  41608. height: math.unit(3.14, "feet"),
  41609. name: "Head",
  41610. image: {
  41611. source: "./media/characters/nilghais/head.svg"
  41612. }
  41613. },
  41614. mouth: {
  41615. height: math.unit(4.6, "feet"),
  41616. name: "Mouth",
  41617. image: {
  41618. source: "./media/characters/nilghais/mouth.svg"
  41619. }
  41620. },
  41621. wings: {
  41622. height: math.unit(24, "feet"),
  41623. name: "Wings",
  41624. image: {
  41625. source: "./media/characters/nilghais/wings.svg"
  41626. }
  41627. },
  41628. ass: {
  41629. height: math.unit(6.12, "feet"),
  41630. name: "Ass",
  41631. image: {
  41632. source: "./media/characters/nilghais/ass.svg"
  41633. }
  41634. },
  41635. },
  41636. [
  41637. {
  41638. name: "Normal",
  41639. height: math.unit(9, "feet"),
  41640. default: true
  41641. },
  41642. ]
  41643. ))
  41644. characterMakers.push(() => makeCharacter(
  41645. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41646. {
  41647. regular: {
  41648. height: math.unit(16 + 2/12, "feet"),
  41649. weight: math.unit(2300, "lb"),
  41650. name: "Regular",
  41651. image: {
  41652. source: "./media/characters/zolgar/regular.svg",
  41653. extra: 1246/1004,
  41654. bottom: 124/1370
  41655. }
  41656. },
  41657. boxers: {
  41658. height: math.unit(16 + 2/12, "feet"),
  41659. weight: math.unit(2300, "lb"),
  41660. name: "Boxers",
  41661. image: {
  41662. source: "./media/characters/zolgar/boxers.svg",
  41663. extra: 1246/1004,
  41664. bottom: 124/1370
  41665. }
  41666. },
  41667. armored: {
  41668. height: math.unit(16 + 2/12, "feet"),
  41669. weight: math.unit(2300, "lb"),
  41670. name: "Armored",
  41671. image: {
  41672. source: "./media/characters/zolgar/armored.svg",
  41673. extra: 1246/1004,
  41674. bottom: 124/1370
  41675. }
  41676. },
  41677. goth: {
  41678. height: math.unit(16 + 2/12, "feet"),
  41679. weight: math.unit(2300, "lb"),
  41680. name: "Goth",
  41681. image: {
  41682. source: "./media/characters/zolgar/goth.svg",
  41683. extra: 1246/1004,
  41684. bottom: 124/1370
  41685. }
  41686. },
  41687. },
  41688. [
  41689. {
  41690. name: "Shrunken Down",
  41691. height: math.unit(9 + 2/12, "feet")
  41692. },
  41693. {
  41694. name: "Normal",
  41695. height: math.unit(16 + 2/12, "feet"),
  41696. default: true
  41697. },
  41698. ]
  41699. ))
  41700. characterMakers.push(() => makeCharacter(
  41701. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41702. {
  41703. front: {
  41704. height: math.unit(6, "feet"),
  41705. weight: math.unit(168, "lb"),
  41706. name: "Front",
  41707. image: {
  41708. source: "./media/characters/luca/front.svg",
  41709. extra: 841/667,
  41710. bottom: 102/943
  41711. }
  41712. },
  41713. },
  41714. [
  41715. {
  41716. name: "Normal",
  41717. height: math.unit(6, "feet"),
  41718. default: true
  41719. },
  41720. ]
  41721. ))
  41722. characterMakers.push(() => makeCharacter(
  41723. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41724. {
  41725. side: {
  41726. height: math.unit(7 + 3/12, "feet"),
  41727. weight: math.unit(312, "lb"),
  41728. name: "Side",
  41729. image: {
  41730. source: "./media/characters/zezo/side.svg",
  41731. extra: 1192/1067,
  41732. bottom: 63/1255
  41733. }
  41734. },
  41735. },
  41736. [
  41737. {
  41738. name: "Normal",
  41739. height: math.unit(7 + 3/12, "feet"),
  41740. default: true
  41741. },
  41742. ]
  41743. ))
  41744. characterMakers.push(() => makeCharacter(
  41745. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41746. {
  41747. front: {
  41748. height: math.unit(5 + 5/12, "feet"),
  41749. weight: math.unit(170, "lb"),
  41750. name: "Front",
  41751. image: {
  41752. source: "./media/characters/mayso/front.svg",
  41753. extra: 1215/1108,
  41754. bottom: 16/1231
  41755. }
  41756. },
  41757. },
  41758. [
  41759. {
  41760. name: "Normal",
  41761. height: math.unit(5 + 5/12, "feet"),
  41762. default: true
  41763. },
  41764. ]
  41765. ))
  41766. characterMakers.push(() => makeCharacter(
  41767. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41768. {
  41769. front: {
  41770. height: math.unit(4 + 3/12, "feet"),
  41771. weight: math.unit(80, "lb"),
  41772. name: "Front",
  41773. image: {
  41774. source: "./media/characters/hess/front.svg",
  41775. extra: 1200/1123,
  41776. bottom: 16/1216
  41777. }
  41778. },
  41779. },
  41780. [
  41781. {
  41782. name: "Normal",
  41783. height: math.unit(4 + 3/12, "feet"),
  41784. default: true
  41785. },
  41786. ]
  41787. ))
  41788. characterMakers.push(() => makeCharacter(
  41789. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41790. {
  41791. front: {
  41792. height: math.unit(1.9, "meters"),
  41793. name: "Front",
  41794. image: {
  41795. source: "./media/characters/ashgar/front.svg",
  41796. extra: 1177/1146,
  41797. bottom: 99/1276
  41798. }
  41799. },
  41800. back: {
  41801. height: math.unit(1.9, "meters"),
  41802. name: "Back",
  41803. image: {
  41804. source: "./media/characters/ashgar/back.svg",
  41805. extra: 1201/1183,
  41806. bottom: 53/1254
  41807. }
  41808. },
  41809. feral: {
  41810. height: math.unit(1.4, "meters"),
  41811. name: "Feral",
  41812. image: {
  41813. source: "./media/characters/ashgar/feral.svg",
  41814. extra: 370/345,
  41815. bottom: 45/415
  41816. }
  41817. },
  41818. },
  41819. [
  41820. {
  41821. name: "Normal",
  41822. height: math.unit(1.9, "meters"),
  41823. default: true
  41824. },
  41825. ]
  41826. ))
  41827. characterMakers.push(() => makeCharacter(
  41828. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41829. {
  41830. regular: {
  41831. height: math.unit(6, "feet"),
  41832. weight: math.unit(220, "lb"),
  41833. name: "Regular",
  41834. image: {
  41835. source: "./media/characters/phillip/regular.svg",
  41836. extra: 1373/1277,
  41837. bottom: 75/1448
  41838. }
  41839. },
  41840. dressed: {
  41841. height: math.unit(6, "feet"),
  41842. weight: math.unit(220, "lb"),
  41843. name: "Dressed",
  41844. image: {
  41845. source: "./media/characters/phillip/dressed.svg",
  41846. extra: 1373/1277,
  41847. bottom: 75/1448
  41848. }
  41849. },
  41850. paw: {
  41851. height: math.unit(1.44, "feet"),
  41852. name: "Paw",
  41853. image: {
  41854. source: "./media/characters/phillip/paw.svg"
  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: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41868. {
  41869. side: {
  41870. height: math.unit(42, "feet"),
  41871. name: "Side",
  41872. image: {
  41873. source: "./media/characters/uvula/side.svg",
  41874. extra: 683/586,
  41875. bottom: 60/743
  41876. }
  41877. },
  41878. front: {
  41879. height: math.unit(42, "feet"),
  41880. name: "Front",
  41881. image: {
  41882. source: "./media/characters/uvula/front.svg",
  41883. extra: 705/613,
  41884. bottom: 54/759
  41885. }
  41886. },
  41887. maw: {
  41888. height: math.unit(23.5, "feet"),
  41889. name: "Maw",
  41890. image: {
  41891. source: "./media/characters/uvula/maw.svg"
  41892. }
  41893. },
  41894. },
  41895. [
  41896. {
  41897. name: "Original Size",
  41898. height: math.unit(14, "inches")
  41899. },
  41900. {
  41901. name: "Human Size",
  41902. height: math.unit(6, "feet")
  41903. },
  41904. {
  41905. name: "Big",
  41906. height: math.unit(42, "feet"),
  41907. default: true
  41908. },
  41909. {
  41910. name: "Bigger",
  41911. height: math.unit(100, "feet")
  41912. },
  41913. ]
  41914. ))
  41915. characterMakers.push(() => makeCharacter(
  41916. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41917. {
  41918. front: {
  41919. height: math.unit(5 + 11/12, "feet"),
  41920. name: "Front",
  41921. image: {
  41922. source: "./media/characters/lannah/front.svg",
  41923. extra: 1208/1113,
  41924. bottom: 97/1305
  41925. }
  41926. },
  41927. },
  41928. [
  41929. {
  41930. name: "Normal",
  41931. height: math.unit(5 + 11/12, "feet"),
  41932. default: true
  41933. },
  41934. ]
  41935. ))
  41936. characterMakers.push(() => makeCharacter(
  41937. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41938. {
  41939. front: {
  41940. height: math.unit(6 + 3/12, "feet"),
  41941. weight: math.unit(3.5, "tons"),
  41942. name: "Front",
  41943. image: {
  41944. source: "./media/characters/emberflame/front.svg",
  41945. extra: 1198/672,
  41946. bottom: 82/1280
  41947. }
  41948. },
  41949. side: {
  41950. height: math.unit(6 + 3/12, "feet"),
  41951. weight: math.unit(3.5, "tons"),
  41952. name: "Side",
  41953. image: {
  41954. source: "./media/characters/emberflame/side.svg",
  41955. extra: 938/527,
  41956. bottom: 56/994
  41957. }
  41958. },
  41959. },
  41960. [
  41961. {
  41962. name: "Normal",
  41963. height: math.unit(6 + 3/12, "feet"),
  41964. default: true
  41965. },
  41966. ]
  41967. ))
  41968. characterMakers.push(() => makeCharacter(
  41969. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41970. {
  41971. side: {
  41972. height: math.unit(17.5, "feet"),
  41973. weight: math.unit(35, "tons"),
  41974. name: "Side",
  41975. image: {
  41976. source: "./media/characters/sophie-ambrose/side.svg",
  41977. extra: 1573/1242,
  41978. bottom: 71/1644
  41979. }
  41980. },
  41981. maw: {
  41982. height: math.unit(7.4, "feet"),
  41983. name: "Maw",
  41984. image: {
  41985. source: "./media/characters/sophie-ambrose/maw.svg"
  41986. }
  41987. },
  41988. },
  41989. [
  41990. {
  41991. name: "Normal",
  41992. height: math.unit(17.5, "feet"),
  41993. default: true
  41994. },
  41995. ]
  41996. ))
  41997. characterMakers.push(() => makeCharacter(
  41998. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41999. {
  42000. front: {
  42001. height: math.unit(280, "feet"),
  42002. weight: math.unit(550, "tons"),
  42003. name: "Front",
  42004. image: {
  42005. source: "./media/characters/king-mugi/front.svg",
  42006. extra: 1102/947,
  42007. bottom: 104/1206
  42008. }
  42009. },
  42010. },
  42011. [
  42012. {
  42013. name: "King Mugi",
  42014. height: math.unit(280, "feet"),
  42015. default: true
  42016. },
  42017. ]
  42018. ))
  42019. characterMakers.push(() => makeCharacter(
  42020. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42021. {
  42022. front: {
  42023. height: math.unit(64, "meters"),
  42024. name: "Front",
  42025. image: {
  42026. source: "./media/characters/nova-fox/front.svg",
  42027. extra: 1310/1246,
  42028. bottom: 65/1375
  42029. }
  42030. },
  42031. },
  42032. [
  42033. {
  42034. name: "Macro",
  42035. height: math.unit(64, "meters"),
  42036. default: true
  42037. },
  42038. ]
  42039. ))
  42040. characterMakers.push(() => makeCharacter(
  42041. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42042. {
  42043. front: {
  42044. height: math.unit(6 + 3/12, "feet"),
  42045. weight: math.unit(170, "lb"),
  42046. name: "Front",
  42047. image: {
  42048. source: "./media/characters/sam-bat/front.svg",
  42049. extra: 1601/1411,
  42050. bottom: 125/1726
  42051. }
  42052. },
  42053. back: {
  42054. height: math.unit(6 + 3/12, "feet"),
  42055. weight: math.unit(170, "lb"),
  42056. name: "Back",
  42057. image: {
  42058. source: "./media/characters/sam-bat/back.svg",
  42059. extra: 1577/1405,
  42060. bottom: 58/1635
  42061. }
  42062. },
  42063. },
  42064. [
  42065. {
  42066. name: "Normal",
  42067. height: math.unit(6 + 3/12, "feet"),
  42068. default: true
  42069. },
  42070. ]
  42071. ))
  42072. characterMakers.push(() => makeCharacter(
  42073. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42074. {
  42075. front: {
  42076. height: math.unit(59, "feet"),
  42077. weight: math.unit(40000, "lb"),
  42078. name: "Front",
  42079. image: {
  42080. source: "./media/characters/inari/front.svg",
  42081. extra: 1884/1350,
  42082. bottom: 95/1979
  42083. }
  42084. },
  42085. },
  42086. [
  42087. {
  42088. name: "Gigantamax",
  42089. height: math.unit(59, "feet"),
  42090. default: true
  42091. },
  42092. ]
  42093. ))
  42094. characterMakers.push(() => makeCharacter(
  42095. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42096. {
  42097. front: {
  42098. height: math.unit(5 + 8/12, "feet"),
  42099. name: "Front",
  42100. image: {
  42101. source: "./media/characters/elizabeth/front.svg",
  42102. extra: 1395/1298,
  42103. bottom: 54/1449
  42104. }
  42105. },
  42106. mouth: {
  42107. height: math.unit(1.97, "feet"),
  42108. name: "Mouth",
  42109. image: {
  42110. source: "./media/characters/elizabeth/mouth.svg"
  42111. }
  42112. },
  42113. foot: {
  42114. height: math.unit(1.17, "feet"),
  42115. name: "Foot",
  42116. image: {
  42117. source: "./media/characters/elizabeth/foot.svg"
  42118. }
  42119. },
  42120. },
  42121. [
  42122. {
  42123. name: "Normal",
  42124. height: math.unit(5 + 8/12, "feet"),
  42125. default: true
  42126. },
  42127. {
  42128. name: "Minimacro",
  42129. height: math.unit(18, "feet")
  42130. },
  42131. {
  42132. name: "Macro",
  42133. height: math.unit(180, "feet")
  42134. },
  42135. ]
  42136. ))
  42137. characterMakers.push(() => makeCharacter(
  42138. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42139. {
  42140. front: {
  42141. height: math.unit(5 + 2/12, "feet"),
  42142. name: "Front",
  42143. image: {
  42144. source: "./media/characters/october-gossamer/front.svg",
  42145. extra: 505/454,
  42146. bottom: 7/512
  42147. }
  42148. },
  42149. back: {
  42150. height: math.unit(5 + 2/12, "feet"),
  42151. name: "Back",
  42152. image: {
  42153. source: "./media/characters/october-gossamer/back.svg",
  42154. extra: 501/454,
  42155. bottom: 11/512
  42156. }
  42157. },
  42158. },
  42159. [
  42160. {
  42161. name: "Normal",
  42162. height: math.unit(5 + 2/12, "feet"),
  42163. default: true
  42164. },
  42165. ]
  42166. ))
  42167. characterMakers.push(() => makeCharacter(
  42168. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42169. {
  42170. front: {
  42171. height: math.unit(5, "feet"),
  42172. name: "Front",
  42173. image: {
  42174. source: "./media/characters/epiglottis/front.svg",
  42175. extra: 923/849,
  42176. bottom: 17/940
  42177. }
  42178. },
  42179. },
  42180. [
  42181. {
  42182. name: "Original Size",
  42183. height: math.unit(10, "inches")
  42184. },
  42185. {
  42186. name: "Human Size",
  42187. height: math.unit(5, "feet"),
  42188. default: true
  42189. },
  42190. {
  42191. name: "Big",
  42192. height: math.unit(25, "feet")
  42193. },
  42194. {
  42195. name: "Bigger",
  42196. height: math.unit(50, "feet")
  42197. },
  42198. {
  42199. name: "oh lawd",
  42200. height: math.unit(75, "feet")
  42201. },
  42202. ]
  42203. ))
  42204. characterMakers.push(() => makeCharacter(
  42205. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42206. {
  42207. front: {
  42208. height: math.unit(2 + 4/12, "feet"),
  42209. weight: math.unit(60, "lb"),
  42210. name: "Front",
  42211. image: {
  42212. source: "./media/characters/lerm/front.svg",
  42213. extra: 796/790,
  42214. bottom: 79/875
  42215. }
  42216. },
  42217. },
  42218. [
  42219. {
  42220. name: "Normal",
  42221. height: math.unit(2 + 4/12, "feet"),
  42222. default: true
  42223. },
  42224. ]
  42225. ))
  42226. characterMakers.push(() => makeCharacter(
  42227. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42228. {
  42229. front: {
  42230. height: math.unit(5.5, "feet"),
  42231. weight: math.unit(130, "lb"),
  42232. name: "Front",
  42233. image: {
  42234. source: "./media/characters/xena-nebadon/front.svg",
  42235. extra: 1828/1730,
  42236. bottom: 79/1907
  42237. }
  42238. },
  42239. },
  42240. [
  42241. {
  42242. name: "Tiny Puppy",
  42243. height: math.unit(3, "inches")
  42244. },
  42245. {
  42246. name: "Normal",
  42247. height: math.unit(5.5, "feet"),
  42248. default: true
  42249. },
  42250. {
  42251. name: "Lotta Lady",
  42252. height: math.unit(12, "feet")
  42253. },
  42254. {
  42255. name: "Pretty Big",
  42256. height: math.unit(100, "feet")
  42257. },
  42258. {
  42259. name: "Big",
  42260. height: math.unit(500, "feet")
  42261. },
  42262. {
  42263. name: "Skyscraper Toys",
  42264. height: math.unit(2500, "feet")
  42265. },
  42266. {
  42267. name: "Plane Catcher",
  42268. height: math.unit(8, "miles")
  42269. },
  42270. {
  42271. name: "Planet Toys",
  42272. height: math.unit(15, "earths")
  42273. },
  42274. {
  42275. name: "Stardust",
  42276. height: math.unit(0.25, "galaxies")
  42277. },
  42278. {
  42279. name: "Snacks",
  42280. height: math.unit(70, "universes")
  42281. },
  42282. ]
  42283. ))
  42284. characterMakers.push(() => makeCharacter(
  42285. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42286. {
  42287. front: {
  42288. height: math.unit(1.6, "meters"),
  42289. weight: math.unit(60, "kg"),
  42290. name: "Front",
  42291. image: {
  42292. source: "./media/characters/bounty/front.svg",
  42293. extra: 1426/1308,
  42294. bottom: 15/1441
  42295. }
  42296. },
  42297. back: {
  42298. height: math.unit(1.6, "meters"),
  42299. weight: math.unit(60, "kg"),
  42300. name: "Back",
  42301. image: {
  42302. source: "./media/characters/bounty/back.svg",
  42303. extra: 1417/1307,
  42304. bottom: 8/1425
  42305. }
  42306. },
  42307. },
  42308. [
  42309. {
  42310. name: "Normal",
  42311. height: math.unit(1.6, "meters"),
  42312. default: true
  42313. },
  42314. {
  42315. name: "Macro",
  42316. height: math.unit(300, "meters")
  42317. },
  42318. ]
  42319. ))
  42320. characterMakers.push(() => makeCharacter(
  42321. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42322. {
  42323. front: {
  42324. height: math.unit(2 + 8/12, "feet"),
  42325. weight: math.unit(15, "lb"),
  42326. name: "Front",
  42327. image: {
  42328. source: "./media/characters/mochi/front.svg",
  42329. extra: 1022/852,
  42330. bottom: 435/1457
  42331. }
  42332. },
  42333. back: {
  42334. height: math.unit(2 + 8/12, "feet"),
  42335. weight: math.unit(15, "lb"),
  42336. name: "Back",
  42337. image: {
  42338. source: "./media/characters/mochi/back.svg",
  42339. extra: 1335/1119,
  42340. bottom: 39/1374
  42341. }
  42342. },
  42343. bird: {
  42344. height: math.unit(2 + 8/12, "feet"),
  42345. weight: math.unit(15, "lb"),
  42346. name: "Bird",
  42347. image: {
  42348. source: "./media/characters/mochi/bird.svg",
  42349. extra: 1251/1113,
  42350. bottom: 178/1429
  42351. }
  42352. },
  42353. kaiju: {
  42354. height: math.unit(154, "feet"),
  42355. weight: math.unit(1e7, "lb"),
  42356. name: "Kaiju",
  42357. image: {
  42358. source: "./media/characters/mochi/kaiju.svg",
  42359. extra: 460/324,
  42360. bottom: 40/500
  42361. }
  42362. },
  42363. head: {
  42364. height: math.unit(1.21, "feet"),
  42365. name: "Head",
  42366. image: {
  42367. source: "./media/characters/mochi/head.svg"
  42368. }
  42369. },
  42370. alternateTail: {
  42371. height: math.unit(2 + 8/12, "feet"),
  42372. weight: math.unit(45, "lb"),
  42373. name: "Alternate Tail",
  42374. image: {
  42375. source: "./media/characters/mochi/alternate-tail.svg",
  42376. extra: 139/76,
  42377. bottom: 45/184
  42378. }
  42379. },
  42380. },
  42381. [
  42382. {
  42383. name: "Micro",
  42384. height: math.unit(2, "inches")
  42385. },
  42386. {
  42387. name: "Normal",
  42388. height: math.unit(2 + 8/12, "feet"),
  42389. default: true
  42390. },
  42391. {
  42392. name: "Macro",
  42393. height: math.unit(106, "feet")
  42394. },
  42395. ]
  42396. ))
  42397. characterMakers.push(() => makeCharacter(
  42398. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42399. {
  42400. front: {
  42401. height: math.unit(5.67, "feet"),
  42402. weight: math.unit(135, "lb"),
  42403. name: "Front",
  42404. image: {
  42405. source: "./media/characters/sarel/front.svg",
  42406. extra: 865/788,
  42407. bottom: 97/962
  42408. }
  42409. },
  42410. back: {
  42411. height: math.unit(5.67, "feet"),
  42412. weight: math.unit(135, "lb"),
  42413. name: "Back",
  42414. image: {
  42415. source: "./media/characters/sarel/back.svg",
  42416. extra: 857/777,
  42417. bottom: 32/889
  42418. }
  42419. },
  42420. chozoan: {
  42421. height: math.unit(5.67, "feet"),
  42422. weight: math.unit(135, "lb"),
  42423. name: "Chozoan",
  42424. image: {
  42425. source: "./media/characters/sarel/chozoan.svg",
  42426. extra: 865/788,
  42427. bottom: 97/962
  42428. }
  42429. },
  42430. current: {
  42431. height: math.unit(5.67, "feet"),
  42432. weight: math.unit(135, "lb"),
  42433. name: "Current",
  42434. image: {
  42435. source: "./media/characters/sarel/current.svg",
  42436. extra: 865/788,
  42437. bottom: 97/962
  42438. }
  42439. },
  42440. head: {
  42441. height: math.unit(1.77, "feet"),
  42442. name: "Head",
  42443. image: {
  42444. source: "./media/characters/sarel/head.svg"
  42445. }
  42446. },
  42447. claws: {
  42448. height: math.unit(1.8, "feet"),
  42449. name: "Claws",
  42450. image: {
  42451. source: "./media/characters/sarel/claws.svg"
  42452. }
  42453. },
  42454. clawsAlt: {
  42455. height: math.unit(1.8, "feet"),
  42456. name: "Claws-alt",
  42457. image: {
  42458. source: "./media/characters/sarel/claws-alt.svg"
  42459. }
  42460. },
  42461. },
  42462. [
  42463. {
  42464. name: "Normal",
  42465. height: math.unit(5.67, "feet"),
  42466. default: true
  42467. },
  42468. ]
  42469. ))
  42470. characterMakers.push(() => makeCharacter(
  42471. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42472. {
  42473. front: {
  42474. height: math.unit(5500, "feet"),
  42475. name: "Front",
  42476. image: {
  42477. source: "./media/characters/alyonia/front.svg",
  42478. extra: 1200/1135,
  42479. bottom: 29/1229
  42480. }
  42481. },
  42482. back: {
  42483. height: math.unit(5500, "feet"),
  42484. name: "Back",
  42485. image: {
  42486. source: "./media/characters/alyonia/back.svg",
  42487. extra: 1205/1138,
  42488. bottom: 10/1215
  42489. }
  42490. },
  42491. },
  42492. [
  42493. {
  42494. name: "Small",
  42495. height: math.unit(10, "feet")
  42496. },
  42497. {
  42498. name: "Macro",
  42499. height: math.unit(500, "feet")
  42500. },
  42501. {
  42502. name: "Mega Macro",
  42503. height: math.unit(5500, "feet"),
  42504. default: true
  42505. },
  42506. {
  42507. name: "Mega Macro+",
  42508. height: math.unit(500000, "feet")
  42509. },
  42510. {
  42511. name: "Giga Macro",
  42512. height: math.unit(3000, "miles")
  42513. },
  42514. {
  42515. name: "Tera Macro",
  42516. height: math.unit(2.8e6, "miles")
  42517. },
  42518. {
  42519. name: "Galactic",
  42520. height: math.unit(120000, "lightyears")
  42521. },
  42522. ]
  42523. ))
  42524. characterMakers.push(() => makeCharacter(
  42525. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42526. {
  42527. werewolf: {
  42528. height: math.unit(8, "feet"),
  42529. weight: math.unit(425, "lb"),
  42530. name: "Werewolf",
  42531. image: {
  42532. source: "./media/characters/autumn/werewolf.svg",
  42533. extra: 2154/2031,
  42534. bottom: 160/2314
  42535. }
  42536. },
  42537. human: {
  42538. height: math.unit(5 + 8/12, "feet"),
  42539. weight: math.unit(150, "lb"),
  42540. name: "Human",
  42541. image: {
  42542. source: "./media/characters/autumn/human.svg",
  42543. extra: 1200/1149,
  42544. bottom: 30/1230
  42545. }
  42546. },
  42547. },
  42548. [
  42549. {
  42550. name: "Normal",
  42551. height: math.unit(8, "feet"),
  42552. default: true
  42553. },
  42554. ]
  42555. ))
  42556. characterMakers.push(() => makeCharacter(
  42557. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42558. {
  42559. front: {
  42560. height: math.unit(8 + 5/12, "feet"),
  42561. weight: math.unit(825, "lb"),
  42562. name: "Front",
  42563. image: {
  42564. source: "./media/characters/cobalt-charizard/front.svg",
  42565. extra: 1268/1155,
  42566. bottom: 122/1390
  42567. }
  42568. },
  42569. side: {
  42570. height: math.unit(8 + 5/12, "feet"),
  42571. weight: math.unit(825, "lb"),
  42572. name: "Side",
  42573. image: {
  42574. source: "./media/characters/cobalt-charizard/side.svg",
  42575. extra: 1348/1257,
  42576. bottom: 58/1406
  42577. }
  42578. },
  42579. gMax: {
  42580. height: math.unit(134 + 11/12, "feet"),
  42581. name: "G-Max",
  42582. image: {
  42583. source: "./media/characters/cobalt-charizard/g-max.svg",
  42584. extra: 1835/1541,
  42585. bottom: 151/1986
  42586. }
  42587. },
  42588. },
  42589. [
  42590. {
  42591. name: "Normal",
  42592. height: math.unit(8 + 5/12, "feet"),
  42593. default: true
  42594. },
  42595. ]
  42596. ))
  42597. characterMakers.push(() => makeCharacter(
  42598. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42599. {
  42600. front: {
  42601. height: math.unit(6 + 3/12, "feet"),
  42602. weight: math.unit(210, "lb"),
  42603. name: "Front",
  42604. image: {
  42605. source: "./media/characters/stella/front.svg",
  42606. extra: 3549/3335,
  42607. bottom: 51/3600
  42608. }
  42609. },
  42610. },
  42611. [
  42612. {
  42613. name: "Normal",
  42614. height: math.unit(6 + 3/12, "feet"),
  42615. default: true
  42616. },
  42617. ]
  42618. ))
  42619. characterMakers.push(() => makeCharacter(
  42620. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42621. {
  42622. front: {
  42623. height: math.unit(5, "feet"),
  42624. weight: math.unit(90, "lb"),
  42625. name: "Front",
  42626. image: {
  42627. source: "./media/characters/riley-bishop/front.svg",
  42628. extra: 1450/1428,
  42629. bottom: 152/1602
  42630. }
  42631. },
  42632. },
  42633. [
  42634. {
  42635. name: "Normal",
  42636. height: math.unit(5, "feet"),
  42637. default: true
  42638. },
  42639. ]
  42640. ))
  42641. characterMakers.push(() => makeCharacter(
  42642. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42643. {
  42644. side: {
  42645. height: math.unit(8 + 2/12, "feet"),
  42646. weight: math.unit(500, "kg"),
  42647. name: "Side",
  42648. image: {
  42649. source: "./media/characters/theo-arcanine/side.svg",
  42650. extra: 1342/1074,
  42651. bottom: 111/1453
  42652. }
  42653. },
  42654. },
  42655. [
  42656. {
  42657. name: "Normal",
  42658. height: math.unit(8 + 2/12, "feet"),
  42659. default: true
  42660. },
  42661. ]
  42662. ))
  42663. characterMakers.push(() => makeCharacter(
  42664. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42665. {
  42666. front: {
  42667. height: math.unit(4, "feet"),
  42668. name: "Front",
  42669. image: {
  42670. source: "./media/characters/kali/front.svg",
  42671. extra: 1921/1357,
  42672. bottom: 70/1991
  42673. }
  42674. },
  42675. },
  42676. [
  42677. {
  42678. name: "Normal",
  42679. height: math.unit(4, "feet"),
  42680. default: true
  42681. },
  42682. {
  42683. name: "Macro",
  42684. height: math.unit(32, "meters")
  42685. },
  42686. {
  42687. name: "Macro+",
  42688. height: math.unit(150, "meters")
  42689. },
  42690. {
  42691. name: "Megamacro",
  42692. height: math.unit(7500, "meters")
  42693. },
  42694. {
  42695. name: "Megamacro+",
  42696. height: math.unit(80, "kilometers")
  42697. },
  42698. ]
  42699. ))
  42700. characterMakers.push(() => makeCharacter(
  42701. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42702. {
  42703. side: {
  42704. height: math.unit(5 + 11/12, "feet"),
  42705. weight: math.unit(236, "lb"),
  42706. name: "Side",
  42707. image: {
  42708. source: "./media/characters/gapp/side.svg",
  42709. extra: 775/340,
  42710. bottom: 58/833
  42711. }
  42712. },
  42713. mouth: {
  42714. height: math.unit(2.98, "feet"),
  42715. name: "Mouth",
  42716. image: {
  42717. source: "./media/characters/gapp/mouth.svg"
  42718. }
  42719. },
  42720. },
  42721. [
  42722. {
  42723. name: "Normal",
  42724. height: math.unit(5 + 1/12, "feet"),
  42725. default: true
  42726. },
  42727. ]
  42728. ))
  42729. characterMakers.push(() => makeCharacter(
  42730. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42731. {
  42732. front: {
  42733. height: math.unit(6, "feet"),
  42734. name: "Front",
  42735. image: {
  42736. source: "./media/characters/persephone/front.svg",
  42737. extra: 1895/1717,
  42738. bottom: 96/1991
  42739. }
  42740. },
  42741. back: {
  42742. height: math.unit(6, "feet"),
  42743. name: "Back",
  42744. image: {
  42745. source: "./media/characters/persephone/back.svg",
  42746. extra: 1868/1679,
  42747. bottom: 26/1894
  42748. }
  42749. },
  42750. casual: {
  42751. height: math.unit(6, "feet"),
  42752. name: "Casual",
  42753. image: {
  42754. source: "./media/characters/persephone/casual.svg",
  42755. extra: 1713/1541,
  42756. bottom: 76/1789
  42757. }
  42758. },
  42759. },
  42760. [
  42761. {
  42762. name: "Human Size",
  42763. height: math.unit(6, "feet")
  42764. },
  42765. {
  42766. name: "Big Steppy",
  42767. height: math.unit(600, "meters"),
  42768. default: true
  42769. },
  42770. {
  42771. name: "Galaxy Brain",
  42772. height: math.unit(1, "zettameter")
  42773. },
  42774. ]
  42775. ))
  42776. characterMakers.push(() => makeCharacter(
  42777. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42778. {
  42779. front: {
  42780. height: math.unit(1.85, "meters"),
  42781. name: "Front",
  42782. image: {
  42783. source: "./media/characters/riley-foxthing/front.svg",
  42784. extra: 1495/1354,
  42785. bottom: 122/1617
  42786. }
  42787. },
  42788. frontAlt: {
  42789. height: math.unit(1.85, "meters"),
  42790. name: "Front (Alt)",
  42791. image: {
  42792. source: "./media/characters/riley-foxthing/front-alt.svg",
  42793. extra: 1572/1389,
  42794. bottom: 116/1688
  42795. }
  42796. },
  42797. },
  42798. [
  42799. {
  42800. name: "Normal Sized",
  42801. height: math.unit(1.85, "meters"),
  42802. default: true
  42803. },
  42804. {
  42805. name: "Quite Sizable",
  42806. height: math.unit(5, "meters")
  42807. },
  42808. {
  42809. name: "Rather Large",
  42810. height: math.unit(20, "meters")
  42811. },
  42812. {
  42813. name: "Macro",
  42814. height: math.unit(450, "meters")
  42815. },
  42816. {
  42817. name: "Giga",
  42818. height: math.unit(5, "km")
  42819. },
  42820. ]
  42821. ))
  42822. characterMakers.push(() => makeCharacter(
  42823. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42824. {
  42825. front: {
  42826. height: math.unit(6, "feet"),
  42827. weight: math.unit(200, "lb"),
  42828. name: "Front",
  42829. image: {
  42830. source: "./media/characters/blizzard/front.svg",
  42831. extra: 1136/990,
  42832. bottom: 136/1272
  42833. }
  42834. },
  42835. back: {
  42836. height: math.unit(6, "feet"),
  42837. weight: math.unit(200, "lb"),
  42838. name: "Back",
  42839. image: {
  42840. source: "./media/characters/blizzard/back.svg",
  42841. extra: 1175/1034,
  42842. bottom: 97/1272
  42843. }
  42844. },
  42845. sitting: {
  42846. height: math.unit(3.725, "feet"),
  42847. weight: math.unit(200, "lb"),
  42848. name: "Sitting",
  42849. image: {
  42850. source: "./media/characters/blizzard/sitting.svg",
  42851. extra: 581/485,
  42852. bottom: 90/671
  42853. }
  42854. },
  42855. frontWizard: {
  42856. height: math.unit(7.9, "feet"),
  42857. weight: math.unit(200, "lb"),
  42858. name: "Front (Wizard)",
  42859. image: {
  42860. source: "./media/characters/blizzard/front-wizard.svg"
  42861. }
  42862. },
  42863. backWizard: {
  42864. height: math.unit(7.9, "feet"),
  42865. weight: math.unit(200, "lb"),
  42866. name: "Back (Wizard)",
  42867. image: {
  42868. source: "./media/characters/blizzard/back-wizard.svg"
  42869. }
  42870. },
  42871. frontNsfw: {
  42872. height: math.unit(6, "feet"),
  42873. weight: math.unit(200, "lb"),
  42874. name: "Front (NSFW)",
  42875. image: {
  42876. source: "./media/characters/blizzard/front-nsfw.svg",
  42877. extra: 1136/990,
  42878. bottom: 136/1272
  42879. }
  42880. },
  42881. backNsfw: {
  42882. height: math.unit(6, "feet"),
  42883. weight: math.unit(200, "lb"),
  42884. name: "Back (NSFW)",
  42885. image: {
  42886. source: "./media/characters/blizzard/back-nsfw.svg",
  42887. extra: 1175/1034,
  42888. bottom: 97/1272
  42889. }
  42890. },
  42891. sittingNsfw: {
  42892. height: math.unit(3.725, "feet"),
  42893. weight: math.unit(200, "lb"),
  42894. name: "Sitting (NSFW)",
  42895. image: {
  42896. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42897. extra: 581/485,
  42898. bottom: 90/671
  42899. }
  42900. },
  42901. wizardFrontNsfw: {
  42902. height: math.unit(7.9, "feet"),
  42903. weight: math.unit(200, "lb"),
  42904. name: "Wizard (Front, NSFW)",
  42905. image: {
  42906. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42907. }
  42908. },
  42909. },
  42910. [
  42911. {
  42912. name: "Normal",
  42913. height: math.unit(6, "feet"),
  42914. default: true
  42915. },
  42916. ]
  42917. ))
  42918. characterMakers.push(() => makeCharacter(
  42919. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42920. {
  42921. front: {
  42922. height: math.unit(5 + 2/12, "feet"),
  42923. name: "Front",
  42924. image: {
  42925. source: "./media/characters/lumi/front.svg",
  42926. extra: 1328/1268,
  42927. bottom: 103/1431
  42928. }
  42929. },
  42930. back: {
  42931. height: math.unit(5 + 2/12, "feet"),
  42932. name: "Back",
  42933. image: {
  42934. source: "./media/characters/lumi/back.svg",
  42935. extra: 1381/1327,
  42936. bottom: 43/1424
  42937. }
  42938. },
  42939. },
  42940. [
  42941. {
  42942. name: "Normal",
  42943. height: math.unit(5 + 2/12, "feet"),
  42944. default: true
  42945. },
  42946. ]
  42947. ))
  42948. characterMakers.push(() => makeCharacter(
  42949. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42950. {
  42951. front: {
  42952. height: math.unit(5 + 9/12, "feet"),
  42953. name: "Front",
  42954. image: {
  42955. source: "./media/characters/aliya-cotton/front.svg",
  42956. extra: 577/564,
  42957. bottom: 29/606
  42958. }
  42959. },
  42960. },
  42961. [
  42962. {
  42963. name: "Normal",
  42964. height: math.unit(5 + 9/12, "feet"),
  42965. default: true
  42966. },
  42967. ]
  42968. ))
  42969. characterMakers.push(() => makeCharacter(
  42970. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  42971. {
  42972. front: {
  42973. height: math.unit(2.7, "meters"),
  42974. weight: math.unit(25000, "lb"),
  42975. name: "Front",
  42976. image: {
  42977. source: "./media/characters/noah-luxray/front.svg",
  42978. extra: 1644/825,
  42979. bottom: 339/1983
  42980. }
  42981. },
  42982. side: {
  42983. height: math.unit(2.97, "meters"),
  42984. weight: math.unit(25000, "lb"),
  42985. name: "Side",
  42986. image: {
  42987. source: "./media/characters/noah-luxray/side.svg",
  42988. extra: 1319/650,
  42989. bottom: 163/1482
  42990. }
  42991. },
  42992. dick: {
  42993. height: math.unit(7.4, "feet"),
  42994. weight: math.unit(2500, "lb"),
  42995. name: "Dick",
  42996. image: {
  42997. source: "./media/characters/noah-luxray/dick.svg"
  42998. }
  42999. },
  43000. dickAlt: {
  43001. height: math.unit(10.83, "feet"),
  43002. weight: math.unit(2500, "lb"),
  43003. name: "Dick-alt",
  43004. image: {
  43005. source: "./media/characters/noah-luxray/dick-alt.svg"
  43006. }
  43007. },
  43008. },
  43009. [
  43010. {
  43011. name: "BIG",
  43012. height: math.unit(2.7, "meters"),
  43013. default: true
  43014. },
  43015. ]
  43016. ))
  43017. characterMakers.push(() => makeCharacter(
  43018. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43019. {
  43020. standing: {
  43021. height: math.unit(183, "cm"),
  43022. weight: math.unit(68, "kg"),
  43023. name: "Standing",
  43024. image: {
  43025. source: "./media/characters/arion/standing.svg",
  43026. extra: 1869/1807,
  43027. bottom: 93/1962
  43028. }
  43029. },
  43030. reclining: {
  43031. height: math.unit(70.5, "cm"),
  43032. weight: math.unit(68, "lb"),
  43033. name: "Reclining",
  43034. image: {
  43035. source: "./media/characters/arion/reclining.svg",
  43036. extra: 937/870,
  43037. bottom: 63/1000
  43038. }
  43039. },
  43040. },
  43041. [
  43042. {
  43043. name: "Colossus Size, Low",
  43044. height: math.unit(33, "meters"),
  43045. default: true
  43046. },
  43047. {
  43048. name: "Colossus Size, Mid",
  43049. height: math.unit(52, "meters")
  43050. },
  43051. {
  43052. name: "Colossus Size, High",
  43053. height: math.unit(60, "meters")
  43054. },
  43055. {
  43056. name: "Titan Size, Low",
  43057. height: math.unit(91, "meters"),
  43058. },
  43059. {
  43060. name: "Titan Size, Mid",
  43061. height: math.unit(122, "meters")
  43062. },
  43063. {
  43064. name: "Titan Size, High",
  43065. height: math.unit(162, "meters")
  43066. },
  43067. ]
  43068. ))
  43069. characterMakers.push(() => makeCharacter(
  43070. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43071. {
  43072. front: {
  43073. height: math.unit(53, "meters"),
  43074. name: "Front",
  43075. image: {
  43076. source: "./media/characters/stellar-marbey/front.svg",
  43077. extra: 1913/1805,
  43078. bottom: 92/2005
  43079. }
  43080. },
  43081. back: {
  43082. height: math.unit(53, "meters"),
  43083. name: "Back",
  43084. image: {
  43085. source: "./media/characters/stellar-marbey/back.svg",
  43086. extra: 1960/1851,
  43087. bottom: 28/1988
  43088. }
  43089. },
  43090. mouth: {
  43091. height: math.unit(3.5, "meters"),
  43092. name: "Mouth",
  43093. image: {
  43094. source: "./media/characters/stellar-marbey/mouth.svg"
  43095. }
  43096. },
  43097. },
  43098. [
  43099. {
  43100. name: "Macro",
  43101. height: math.unit(53, "meters"),
  43102. default: true
  43103. },
  43104. ]
  43105. ))
  43106. characterMakers.push(() => makeCharacter(
  43107. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43108. {
  43109. front: {
  43110. height: math.unit(8 + 1/12, "feet"),
  43111. weight: math.unit(233, "lb"),
  43112. name: "Front",
  43113. image: {
  43114. source: "./media/characters/matsu/front.svg",
  43115. extra: 832/772,
  43116. bottom: 40/872
  43117. }
  43118. },
  43119. back: {
  43120. height: math.unit(8 + 1/12, "feet"),
  43121. weight: math.unit(233, "lb"),
  43122. name: "Back",
  43123. image: {
  43124. source: "./media/characters/matsu/back.svg",
  43125. extra: 839/780,
  43126. bottom: 47/886
  43127. }
  43128. },
  43129. },
  43130. [
  43131. {
  43132. name: "Normal",
  43133. height: math.unit(8 + 1/12, "feet"),
  43134. default: true
  43135. },
  43136. ]
  43137. ))
  43138. characterMakers.push(() => makeCharacter(
  43139. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43140. {
  43141. front: {
  43142. height: math.unit(4, "feet"),
  43143. weight: math.unit(148, "lb"),
  43144. name: "Front",
  43145. image: {
  43146. source: "./media/characters/thiz/front.svg",
  43147. extra: 1913/1748,
  43148. bottom: 62/1975
  43149. }
  43150. },
  43151. },
  43152. [
  43153. {
  43154. name: "Normal",
  43155. height: math.unit(4, "feet"),
  43156. default: true
  43157. },
  43158. ]
  43159. ))
  43160. characterMakers.push(() => makeCharacter(
  43161. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43162. {
  43163. front: {
  43164. height: math.unit(7 + 6/12, "feet"),
  43165. weight: math.unit(267, "lb"),
  43166. name: "Front",
  43167. image: {
  43168. source: "./media/characters/marcel/front.svg",
  43169. extra: 1221/1096,
  43170. bottom: 76/1297
  43171. }
  43172. },
  43173. },
  43174. [
  43175. {
  43176. name: "Normal",
  43177. height: math.unit(7 + 6/12, "feet"),
  43178. default: true
  43179. },
  43180. ]
  43181. ))
  43182. characterMakers.push(() => makeCharacter(
  43183. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43184. {
  43185. side: {
  43186. height: math.unit(42, "meters"),
  43187. name: "Side",
  43188. image: {
  43189. source: "./media/characters/flake/side.svg",
  43190. extra: 1525/1306,
  43191. bottom: 209/1734
  43192. }
  43193. },
  43194. },
  43195. [
  43196. {
  43197. name: "Normal",
  43198. height: math.unit(42, "meters"),
  43199. default: true
  43200. },
  43201. ]
  43202. ))
  43203. characterMakers.push(() => makeCharacter(
  43204. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43205. {
  43206. dressed: {
  43207. height: math.unit(6 + 4/12, "feet"),
  43208. weight: math.unit(520, "lb"),
  43209. name: "Dressed",
  43210. image: {
  43211. source: "./media/characters/someonne/dressed.svg",
  43212. extra: 1020/1010,
  43213. bottom: 178/1198
  43214. }
  43215. },
  43216. undressed: {
  43217. height: math.unit(6 + 4/12, "feet"),
  43218. weight: math.unit(520, "lb"),
  43219. name: "Undressed",
  43220. image: {
  43221. source: "./media/characters/someonne/undressed.svg",
  43222. extra: 1019/1014,
  43223. bottom: 169/1188
  43224. }
  43225. },
  43226. },
  43227. [
  43228. {
  43229. name: "Normal",
  43230. height: math.unit(6 + 4/12, "feet"),
  43231. default: true
  43232. },
  43233. ]
  43234. ))
  43235. characterMakers.push(() => makeCharacter(
  43236. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43237. {
  43238. front: {
  43239. height: math.unit(3, "feet"),
  43240. weight: math.unit(30, "lb"),
  43241. name: "Front",
  43242. image: {
  43243. source: "./media/characters/till/front.svg",
  43244. extra: 892/823,
  43245. bottom: 55/947
  43246. }
  43247. },
  43248. },
  43249. [
  43250. {
  43251. name: "Normal",
  43252. height: math.unit(3, "feet"),
  43253. default: true
  43254. },
  43255. ]
  43256. ))
  43257. characterMakers.push(() => makeCharacter(
  43258. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43259. {
  43260. front: {
  43261. height: math.unit(9 + 8/12, "feet"),
  43262. weight: math.unit(800, "lb"),
  43263. name: "Front",
  43264. image: {
  43265. source: "./media/characters/sydney-heki/front.svg",
  43266. extra: 1360/1300,
  43267. bottom: 22/1382
  43268. }
  43269. },
  43270. back: {
  43271. height: math.unit(9 + 8/12, "feet"),
  43272. weight: math.unit(800, "lb"),
  43273. name: "Back",
  43274. image: {
  43275. source: "./media/characters/sydney-heki/back.svg",
  43276. extra: 1356/1293,
  43277. bottom: 12/1368
  43278. }
  43279. },
  43280. frontDressed: {
  43281. height: math.unit(9 + 8/12, "feet"),
  43282. weight: math.unit(800, "lb"),
  43283. name: "Front-dressed",
  43284. image: {
  43285. source: "./media/characters/sydney-heki/front-dressed.svg",
  43286. extra: 1360/1300,
  43287. bottom: 22/1382
  43288. }
  43289. },
  43290. },
  43291. [
  43292. {
  43293. name: "Normal",
  43294. height: math.unit(9 + 8/12, "feet"),
  43295. default: true
  43296. },
  43297. {
  43298. name: "Macro",
  43299. height: math.unit(500, "feet")
  43300. },
  43301. {
  43302. name: "Megamacro",
  43303. height: math.unit(3.6, "miles")
  43304. },
  43305. ]
  43306. ))
  43307. characterMakers.push(() => makeCharacter(
  43308. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43309. {
  43310. front: {
  43311. height: math.unit(200, "cm"),
  43312. weight: math.unit(250, "lb"),
  43313. name: "Front",
  43314. image: {
  43315. source: "./media/characters/fowler-karlsson/front.svg",
  43316. extra: 897/845,
  43317. bottom: 123/1020
  43318. }
  43319. },
  43320. back: {
  43321. height: math.unit(200, "cm"),
  43322. weight: math.unit(250, "lb"),
  43323. name: "Back",
  43324. image: {
  43325. source: "./media/characters/fowler-karlsson/back.svg",
  43326. extra: 999/944,
  43327. bottom: 26/1025
  43328. }
  43329. },
  43330. dick: {
  43331. height: math.unit(1.92, "feet"),
  43332. weight: math.unit(150, "lb"),
  43333. name: "Dick",
  43334. image: {
  43335. source: "./media/characters/fowler-karlsson/dick.svg"
  43336. }
  43337. },
  43338. },
  43339. [
  43340. {
  43341. name: "Normal",
  43342. height: math.unit(200, "cm"),
  43343. default: true
  43344. },
  43345. {
  43346. name: "Smaller Macro",
  43347. height: math.unit(90, "m")
  43348. },
  43349. {
  43350. name: "Macro",
  43351. height: math.unit(150, "m")
  43352. },
  43353. {
  43354. name: "Bigger Macro",
  43355. height: math.unit(300, "m")
  43356. },
  43357. ]
  43358. ))
  43359. characterMakers.push(() => makeCharacter(
  43360. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43361. {
  43362. side: {
  43363. height: math.unit(8 + 2/12, "feet"),
  43364. weight: math.unit(1, "tonne"),
  43365. name: "Side",
  43366. image: {
  43367. source: "./media/characters/rylide/side.svg",
  43368. extra: 1318/1034,
  43369. bottom: 106/1424
  43370. }
  43371. },
  43372. sitting: {
  43373. height: math.unit(303, "cm"),
  43374. weight: math.unit(1, "tonne"),
  43375. name: "Sitting",
  43376. image: {
  43377. source: "./media/characters/rylide/sitting.svg",
  43378. extra: 1303/1103,
  43379. bottom: 36/1339
  43380. }
  43381. },
  43382. },
  43383. [
  43384. {
  43385. name: "Normal",
  43386. height: math.unit(8 + 2/12, "feet"),
  43387. default: true
  43388. },
  43389. ]
  43390. ))
  43391. characterMakers.push(() => makeCharacter(
  43392. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43393. {
  43394. front: {
  43395. height: math.unit(5 + 10/12, "feet"),
  43396. weight: math.unit(160, "lb"),
  43397. name: "Front",
  43398. image: {
  43399. source: "./media/characters/pudask/front.svg",
  43400. extra: 1616/1590,
  43401. bottom: 161/1777
  43402. }
  43403. },
  43404. },
  43405. [
  43406. {
  43407. name: "Ferret Height",
  43408. height: math.unit(2 + 5/12, "feet")
  43409. },
  43410. {
  43411. name: "Canon Height",
  43412. height: math.unit(5 + 10/12, "feet"),
  43413. default: true
  43414. },
  43415. ]
  43416. ))
  43417. characterMakers.push(() => makeCharacter(
  43418. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43419. {
  43420. front: {
  43421. height: math.unit(3 + 6/12, "feet"),
  43422. weight: math.unit(60, "lb"),
  43423. name: "Front",
  43424. image: {
  43425. source: "./media/characters/ramita/front.svg",
  43426. extra: 1402/1232,
  43427. bottom: 62/1464
  43428. }
  43429. },
  43430. dressed: {
  43431. height: math.unit(3 + 6/12, "feet"),
  43432. weight: math.unit(60, "lb"),
  43433. name: "Dressed",
  43434. image: {
  43435. source: "./media/characters/ramita/dressed.svg",
  43436. extra: 1534/1249,
  43437. bottom: 50/1584
  43438. }
  43439. },
  43440. },
  43441. [
  43442. {
  43443. name: "Normal",
  43444. height: math.unit(3 + 6/12, "feet"),
  43445. default: true
  43446. },
  43447. ]
  43448. ))
  43449. characterMakers.push(() => makeCharacter(
  43450. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43451. {
  43452. front: {
  43453. height: math.unit(8, "feet"),
  43454. name: "Front",
  43455. image: {
  43456. source: "./media/characters/ark/front.svg",
  43457. extra: 772/693,
  43458. bottom: 45/817
  43459. }
  43460. },
  43461. },
  43462. [
  43463. {
  43464. name: "Normal",
  43465. height: math.unit(8, "feet"),
  43466. default: true
  43467. },
  43468. ]
  43469. ))
  43470. characterMakers.push(() => makeCharacter(
  43471. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43472. {
  43473. front: {
  43474. height: math.unit(6, "feet"),
  43475. weight: math.unit(250, "lb"),
  43476. volume: math.unit(5/8, "gallons"),
  43477. name: "Front",
  43478. image: {
  43479. source: "./media/characters/ludwig-horn/front.svg",
  43480. extra: 1782/1635,
  43481. bottom: 96/1878
  43482. }
  43483. },
  43484. back: {
  43485. height: math.unit(6, "feet"),
  43486. weight: math.unit(250, "lb"),
  43487. volume: math.unit(5/8, "gallons"),
  43488. name: "Back",
  43489. image: {
  43490. source: "./media/characters/ludwig-horn/back.svg",
  43491. extra: 1874/1729,
  43492. bottom: 27/1901
  43493. }
  43494. },
  43495. dick: {
  43496. height: math.unit(1.05, "feet"),
  43497. weight: math.unit(15, "lb"),
  43498. volume: math.unit(5/8, "gallons"),
  43499. name: "Dick",
  43500. image: {
  43501. source: "./media/characters/ludwig-horn/dick.svg"
  43502. }
  43503. },
  43504. },
  43505. [
  43506. {
  43507. name: "Small",
  43508. height: math.unit(6, "feet")
  43509. },
  43510. {
  43511. name: "Typical",
  43512. height: math.unit(12, "feet"),
  43513. default: true
  43514. },
  43515. {
  43516. name: "Building",
  43517. height: math.unit(80, "feet")
  43518. },
  43519. {
  43520. name: "Town",
  43521. height: math.unit(800, "feet")
  43522. },
  43523. {
  43524. name: "Kingdom",
  43525. height: math.unit(80000, "feet")
  43526. },
  43527. {
  43528. name: "Planet",
  43529. height: math.unit(8000000, "feet")
  43530. },
  43531. {
  43532. name: "Universe",
  43533. height: math.unit(8000000000, "feet")
  43534. },
  43535. {
  43536. name: "Transcended",
  43537. height: math.unit(8e27, "feet")
  43538. },
  43539. ]
  43540. ))
  43541. characterMakers.push(() => makeCharacter(
  43542. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43543. {
  43544. front: {
  43545. height: math.unit(5, "feet"),
  43546. weight: math.unit(50, "kg"),
  43547. name: "Front",
  43548. image: {
  43549. source: "./media/characters/biot-avery/front.svg",
  43550. extra: 1295/1232,
  43551. bottom: 86/1381
  43552. }
  43553. },
  43554. },
  43555. [
  43556. {
  43557. name: "Normal",
  43558. height: math.unit(5, "feet"),
  43559. default: true
  43560. },
  43561. ]
  43562. ))
  43563. characterMakers.push(() => makeCharacter(
  43564. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43565. {
  43566. front: {
  43567. height: math.unit(6, "feet"),
  43568. name: "Front",
  43569. image: {
  43570. source: "./media/characters/kitsune-kiro/front.svg",
  43571. extra: 1270/1158,
  43572. bottom: 42/1312
  43573. }
  43574. },
  43575. frontAlt: {
  43576. height: math.unit(6, "feet"),
  43577. name: "Front-alt",
  43578. image: {
  43579. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43580. extra: 1130/1081,
  43581. bottom: 36/1166
  43582. }
  43583. },
  43584. },
  43585. [
  43586. {
  43587. name: "Smol",
  43588. height: math.unit(3, "feet")
  43589. },
  43590. {
  43591. name: "Normal",
  43592. height: math.unit(6, "feet"),
  43593. default: true
  43594. },
  43595. ]
  43596. ))
  43597. characterMakers.push(() => makeCharacter(
  43598. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43599. {
  43600. front: {
  43601. height: math.unit(6, "feet"),
  43602. weight: math.unit(125, "lb"),
  43603. name: "Front",
  43604. image: {
  43605. source: "./media/characters/jack-thatcher/front.svg",
  43606. extra: 1474/1370,
  43607. bottom: 26/1500
  43608. }
  43609. },
  43610. back: {
  43611. height: math.unit(6, "feet"),
  43612. weight: math.unit(125, "lb"),
  43613. name: "Back",
  43614. image: {
  43615. source: "./media/characters/jack-thatcher/back.svg",
  43616. extra: 1489/1384,
  43617. bottom: 18/1507
  43618. }
  43619. },
  43620. },
  43621. [
  43622. {
  43623. name: "Normal",
  43624. height: math.unit(6, "feet"),
  43625. default: true
  43626. },
  43627. {
  43628. name: "Macro",
  43629. height: math.unit(75, "feet")
  43630. },
  43631. {
  43632. name: "Macro-er",
  43633. height: math.unit(250, "feet")
  43634. },
  43635. ]
  43636. ))
  43637. characterMakers.push(() => makeCharacter(
  43638. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43639. {
  43640. front: {
  43641. height: math.unit(7, "feet"),
  43642. weight: math.unit(110, "kg"),
  43643. name: "Front",
  43644. image: {
  43645. source: "./media/characters/max-hyper/front.svg",
  43646. extra: 1969/1881,
  43647. bottom: 49/2018
  43648. }
  43649. },
  43650. },
  43651. [
  43652. {
  43653. name: "Normal",
  43654. height: math.unit(7, "feet"),
  43655. default: true
  43656. },
  43657. ]
  43658. ))
  43659. characterMakers.push(() => makeCharacter(
  43660. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43661. {
  43662. front: {
  43663. height: math.unit(5 + 5/12, "feet"),
  43664. weight: math.unit(160, "lb"),
  43665. name: "Front",
  43666. image: {
  43667. source: "./media/characters/spook/front.svg",
  43668. extra: 794/791,
  43669. bottom: 54/848
  43670. }
  43671. },
  43672. back: {
  43673. height: math.unit(5 + 5/12, "feet"),
  43674. weight: math.unit(160, "lb"),
  43675. name: "Back",
  43676. image: {
  43677. source: "./media/characters/spook/back.svg",
  43678. extra: 812/798,
  43679. bottom: 32/844
  43680. }
  43681. },
  43682. },
  43683. [
  43684. {
  43685. name: "Normal",
  43686. height: math.unit(5 + 5/12, "feet"),
  43687. default: true
  43688. },
  43689. ]
  43690. ))
  43691. characterMakers.push(() => makeCharacter(
  43692. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43693. {
  43694. front: {
  43695. height: math.unit(18, "feet"),
  43696. name: "Front",
  43697. image: {
  43698. source: "./media/characters/xeaduulix/front.svg",
  43699. extra: 1380/1166,
  43700. bottom: 110/1490
  43701. }
  43702. },
  43703. back: {
  43704. height: math.unit(18, "feet"),
  43705. name: "Back",
  43706. image: {
  43707. source: "./media/characters/xeaduulix/back.svg",
  43708. extra: 1592/1170,
  43709. bottom: 128/1720
  43710. }
  43711. },
  43712. frontNsfw: {
  43713. height: math.unit(18, "feet"),
  43714. name: "Front (NSFW)",
  43715. image: {
  43716. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43717. extra: 1380/1166,
  43718. bottom: 110/1490
  43719. }
  43720. },
  43721. backNsfw: {
  43722. height: math.unit(18, "feet"),
  43723. name: "Back (NSFW)",
  43724. image: {
  43725. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43726. extra: 1592/1170,
  43727. bottom: 128/1720
  43728. }
  43729. },
  43730. },
  43731. [
  43732. {
  43733. name: "Normal",
  43734. height: math.unit(18, "feet"),
  43735. default: true
  43736. },
  43737. ]
  43738. ))
  43739. characterMakers.push(() => makeCharacter(
  43740. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43741. {
  43742. spreadWings: {
  43743. height: math.unit(20, "feet"),
  43744. name: "Spread Wings",
  43745. image: {
  43746. source: "./media/characters/fledge/spread-wings.svg",
  43747. extra: 693/635,
  43748. bottom: 26/719
  43749. }
  43750. },
  43751. front: {
  43752. height: math.unit(20, "feet"),
  43753. name: "Front",
  43754. image: {
  43755. source: "./media/characters/fledge/front.svg",
  43756. extra: 684/637,
  43757. bottom: 18/702
  43758. }
  43759. },
  43760. frontAlt: {
  43761. height: math.unit(20, "feet"),
  43762. name: "Front (Alt)",
  43763. image: {
  43764. source: "./media/characters/fledge/front-alt.svg",
  43765. extra: 708/664,
  43766. bottom: 13/721
  43767. }
  43768. },
  43769. back: {
  43770. height: math.unit(20, "feet"),
  43771. name: "Back",
  43772. image: {
  43773. source: "./media/characters/fledge/back.svg",
  43774. extra: 718/634,
  43775. bottom: 22/740
  43776. }
  43777. },
  43778. head: {
  43779. height: math.unit(5.55, "feet"),
  43780. name: "Head",
  43781. image: {
  43782. source: "./media/characters/fledge/head.svg"
  43783. }
  43784. },
  43785. headAlt: {
  43786. height: math.unit(5.1, "feet"),
  43787. name: "Head (Alt)",
  43788. image: {
  43789. source: "./media/characters/fledge/head-alt.svg"
  43790. }
  43791. },
  43792. },
  43793. [
  43794. {
  43795. name: "Small",
  43796. height: math.unit(6 + 2/12, "feet")
  43797. },
  43798. {
  43799. name: "Big",
  43800. height: math.unit(20, "feet"),
  43801. default: true
  43802. },
  43803. {
  43804. name: "Giant",
  43805. height: math.unit(100, "feet")
  43806. },
  43807. {
  43808. name: "Macro",
  43809. height: math.unit(200, "feet")
  43810. },
  43811. ]
  43812. ))
  43813. characterMakers.push(() => makeCharacter(
  43814. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43815. {
  43816. front: {
  43817. height: math.unit(1, "meter"),
  43818. name: "Front",
  43819. image: {
  43820. source: "./media/characters/atlas-morenai/front.svg",
  43821. extra: 1275/1043,
  43822. bottom: 19/1294
  43823. }
  43824. },
  43825. back: {
  43826. height: math.unit(1, "meter"),
  43827. name: "Back",
  43828. image: {
  43829. source: "./media/characters/atlas-morenai/back.svg",
  43830. extra: 1141/1001,
  43831. bottom: 25/1166
  43832. }
  43833. },
  43834. },
  43835. [
  43836. {
  43837. name: "Normal",
  43838. height: math.unit(1, "meter"),
  43839. default: true
  43840. },
  43841. {
  43842. name: "Magic-Infused",
  43843. height: math.unit(5, "meters")
  43844. },
  43845. ]
  43846. ))
  43847. characterMakers.push(() => makeCharacter(
  43848. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43849. {
  43850. front: {
  43851. height: math.unit(5, "meters"),
  43852. name: "Front",
  43853. image: {
  43854. source: "./media/characters/cintia/front.svg",
  43855. extra: 1312/1228,
  43856. bottom: 38/1350
  43857. }
  43858. },
  43859. back: {
  43860. height: math.unit(5, "meters"),
  43861. name: "Back",
  43862. image: {
  43863. source: "./media/characters/cintia/back.svg",
  43864. extra: 1260/1166,
  43865. bottom: 98/1358
  43866. }
  43867. },
  43868. frontDick: {
  43869. height: math.unit(5, "meters"),
  43870. name: "Front (Dick)",
  43871. image: {
  43872. source: "./media/characters/cintia/front-dick.svg",
  43873. extra: 1312/1228,
  43874. bottom: 38/1350
  43875. }
  43876. },
  43877. backDick: {
  43878. height: math.unit(5, "meters"),
  43879. name: "Back (Dick)",
  43880. image: {
  43881. source: "./media/characters/cintia/back-dick.svg",
  43882. extra: 1260/1166,
  43883. bottom: 98/1358
  43884. }
  43885. },
  43886. bust: {
  43887. height: math.unit(1.97, "meters"),
  43888. name: "Bust",
  43889. image: {
  43890. source: "./media/characters/cintia/bust.svg",
  43891. extra: 617/565,
  43892. bottom: 0/617
  43893. }
  43894. },
  43895. },
  43896. [
  43897. {
  43898. name: "Normal",
  43899. height: math.unit(5, "meters"),
  43900. default: true
  43901. },
  43902. ]
  43903. ))
  43904. characterMakers.push(() => makeCharacter(
  43905. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  43906. {
  43907. side: {
  43908. height: math.unit(100, "feet"),
  43909. name: "Side",
  43910. image: {
  43911. source: "./media/characters/denora/side.svg",
  43912. extra: 875/803,
  43913. bottom: 9/884
  43914. }
  43915. },
  43916. },
  43917. [
  43918. {
  43919. name: "Standard",
  43920. height: math.unit(100, "feet"),
  43921. default: true
  43922. },
  43923. {
  43924. name: "Grand",
  43925. height: math.unit(1000, "feet")
  43926. },
  43927. {
  43928. name: "Conquering",
  43929. height: math.unit(10000, "feet")
  43930. },
  43931. ]
  43932. ))
  43933. characterMakers.push(() => makeCharacter(
  43934. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  43935. {
  43936. dressed: {
  43937. height: math.unit(8 + 5/12, "feet"),
  43938. weight: math.unit(700, "lb"),
  43939. name: "Dressed",
  43940. image: {
  43941. source: "./media/characters/kiva/dressed.svg",
  43942. extra: 1102/1055,
  43943. bottom: 60/1162
  43944. }
  43945. },
  43946. nude: {
  43947. height: math.unit(8 + 5/12, "feet"),
  43948. weight: math.unit(700, "lb"),
  43949. name: "Nude",
  43950. image: {
  43951. source: "./media/characters/kiva/nude.svg",
  43952. extra: 1102/1055,
  43953. bottom: 60/1162
  43954. }
  43955. },
  43956. },
  43957. [
  43958. {
  43959. name: "Base Height",
  43960. height: math.unit(8 + 5/12, "feet"),
  43961. default: true
  43962. },
  43963. {
  43964. name: "Macro",
  43965. height: math.unit(100, "feet")
  43966. },
  43967. {
  43968. name: "Max",
  43969. height: math.unit(3280, "feet")
  43970. },
  43971. ]
  43972. ))
  43973. characterMakers.push(() => makeCharacter(
  43974. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  43975. {
  43976. front: {
  43977. height: math.unit(6 + 8/12, "feet"),
  43978. weight: math.unit(250, "lb"),
  43979. name: "Front",
  43980. image: {
  43981. source: "./media/characters/ztragon/front.svg",
  43982. extra: 1825/1684,
  43983. bottom: 98/1923
  43984. }
  43985. },
  43986. },
  43987. [
  43988. {
  43989. name: "Normal",
  43990. height: math.unit(6 + 8/12, "feet"),
  43991. default: true
  43992. },
  43993. {
  43994. name: "Macro",
  43995. height: math.unit(80, "feet")
  43996. },
  43997. ]
  43998. ))
  43999. characterMakers.push(() => makeCharacter(
  44000. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44001. {
  44002. front: {
  44003. height: math.unit(10.4, "feet"),
  44004. weight: math.unit(2, "tons"),
  44005. name: "Front",
  44006. image: {
  44007. source: "./media/characters/yesenia/front.svg",
  44008. extra: 1479/1474,
  44009. bottom: 233/1712
  44010. }
  44011. },
  44012. },
  44013. [
  44014. {
  44015. name: "Normal",
  44016. height: math.unit(10.4, "feet"),
  44017. default: true
  44018. },
  44019. ]
  44020. ))
  44021. characterMakers.push(() => makeCharacter(
  44022. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44023. {
  44024. normal: {
  44025. height: math.unit(6 + 1/12, "feet"),
  44026. weight: math.unit(180, "lb"),
  44027. name: "Normal",
  44028. image: {
  44029. source: "./media/characters/leanne-lycheborne/normal.svg",
  44030. extra: 1748/1660,
  44031. bottom: 98/1846
  44032. }
  44033. },
  44034. were: {
  44035. height: math.unit(12, "feet"),
  44036. weight: math.unit(1600, "lb"),
  44037. name: "Were",
  44038. image: {
  44039. source: "./media/characters/leanne-lycheborne/were.svg",
  44040. extra: 1485/1432,
  44041. bottom: 66/1551
  44042. }
  44043. },
  44044. },
  44045. [
  44046. {
  44047. name: "Normal",
  44048. height: math.unit(6 + 1/12, "feet"),
  44049. default: true
  44050. },
  44051. ]
  44052. ))
  44053. characterMakers.push(() => makeCharacter(
  44054. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44055. {
  44056. side: {
  44057. height: math.unit(13, "feet"),
  44058. name: "Side",
  44059. image: {
  44060. source: "./media/characters/kira-tyler/side.svg",
  44061. extra: 693/393,
  44062. bottom: 58/751
  44063. }
  44064. },
  44065. },
  44066. [
  44067. {
  44068. name: "Normal",
  44069. height: math.unit(13, "feet"),
  44070. default: true
  44071. },
  44072. ]
  44073. ))
  44074. characterMakers.push(() => makeCharacter(
  44075. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44076. {
  44077. front: {
  44078. height: math.unit(10.3, "feet"),
  44079. weight: math.unit(150, "lb"),
  44080. name: "Front",
  44081. image: {
  44082. source: "./media/characters/blaze/front.svg",
  44083. extra: 1378/1286,
  44084. bottom: 172/1550
  44085. }
  44086. },
  44087. },
  44088. [
  44089. {
  44090. name: "Normal",
  44091. height: math.unit(10.3, "feet"),
  44092. default: true
  44093. },
  44094. ]
  44095. ))
  44096. characterMakers.push(() => makeCharacter(
  44097. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44098. {
  44099. side: {
  44100. height: math.unit(2, "meters"),
  44101. weight: math.unit(400, "kg"),
  44102. name: "Side",
  44103. image: {
  44104. source: "./media/characters/anu/side.svg",
  44105. extra: 506/394,
  44106. bottom: 18/524
  44107. }
  44108. },
  44109. },
  44110. [
  44111. {
  44112. name: "Humanoid",
  44113. height: math.unit(2, "meters")
  44114. },
  44115. {
  44116. name: "Normal",
  44117. height: math.unit(5, "meters"),
  44118. default: true
  44119. },
  44120. ]
  44121. ))
  44122. characterMakers.push(() => makeCharacter(
  44123. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44124. {
  44125. front: {
  44126. height: math.unit(5 + 5/12, "feet"),
  44127. weight: math.unit(170, "lb"),
  44128. name: "Front",
  44129. image: {
  44130. source: "./media/characters/synx-the-lynx/front.svg",
  44131. extra: 1893/1745,
  44132. bottom: 17/1910
  44133. }
  44134. },
  44135. side: {
  44136. height: math.unit(5 + 5/12, "feet"),
  44137. weight: math.unit(170, "lb"),
  44138. name: "Side",
  44139. image: {
  44140. source: "./media/characters/synx-the-lynx/side.svg",
  44141. extra: 1884/1740,
  44142. bottom: 39/1923
  44143. }
  44144. },
  44145. back: {
  44146. height: math.unit(5 + 5/12, "feet"),
  44147. weight: math.unit(170, "lb"),
  44148. name: "Back",
  44149. image: {
  44150. source: "./media/characters/synx-the-lynx/back.svg",
  44151. extra: 1903/1755,
  44152. bottom: 14/1917
  44153. }
  44154. },
  44155. },
  44156. [
  44157. {
  44158. name: "Normal",
  44159. height: math.unit(5 + 5/12, "feet"),
  44160. default: true
  44161. },
  44162. ]
  44163. ))
  44164. characterMakers.push(() => makeCharacter(
  44165. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44166. {
  44167. back: {
  44168. height: math.unit(15, "feet"),
  44169. name: "Back",
  44170. image: {
  44171. source: "./media/characters/nadezda-fex/back.svg",
  44172. extra: 1695/1481,
  44173. bottom: 25/1720
  44174. }
  44175. },
  44176. },
  44177. [
  44178. {
  44179. name: "Normal",
  44180. height: math.unit(15, "feet"),
  44181. default: true
  44182. },
  44183. {
  44184. name: "Macro",
  44185. height: math.unit(2.5, "miles")
  44186. },
  44187. {
  44188. name: "Goddess",
  44189. height: math.unit(2, "multiverses")
  44190. },
  44191. ]
  44192. ))
  44193. characterMakers.push(() => makeCharacter(
  44194. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44195. {
  44196. front: {
  44197. height: math.unit(216, "cm"),
  44198. name: "Front",
  44199. image: {
  44200. source: "./media/characters/lev/front.svg",
  44201. extra: 1728/1670,
  44202. bottom: 82/1810
  44203. }
  44204. },
  44205. back: {
  44206. height: math.unit(216, "cm"),
  44207. name: "Back",
  44208. image: {
  44209. source: "./media/characters/lev/back.svg",
  44210. extra: 1738/1675,
  44211. bottom: 24/1762
  44212. }
  44213. },
  44214. dressed: {
  44215. height: math.unit(216, "cm"),
  44216. name: "Dressed",
  44217. image: {
  44218. source: "./media/characters/lev/dressed.svg",
  44219. extra: 1397/1351,
  44220. bottom: 73/1470
  44221. }
  44222. },
  44223. head: {
  44224. height: math.unit(0.51, "meter"),
  44225. name: "Head",
  44226. image: {
  44227. source: "./media/characters/lev/head.svg"
  44228. }
  44229. },
  44230. },
  44231. [
  44232. {
  44233. name: "Normal",
  44234. height: math.unit(216, "cm"),
  44235. default: true
  44236. },
  44237. {
  44238. name: "Relatively Macro",
  44239. height: math.unit(80, "meters")
  44240. },
  44241. {
  44242. name: "Megamacro",
  44243. height: math.unit(21600, "meters")
  44244. },
  44245. {
  44246. name: "Megamacro+",
  44247. height: math.unit(64800, "meters")
  44248. },
  44249. ]
  44250. ))
  44251. characterMakers.push(() => makeCharacter(
  44252. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44253. {
  44254. front: {
  44255. height: math.unit(2, "meters"),
  44256. weight: math.unit(80, "kg"),
  44257. name: "Front",
  44258. image: {
  44259. source: "./media/characters/moka/front.svg",
  44260. extra: 1337/1255,
  44261. bottom: 58/1395
  44262. }
  44263. },
  44264. },
  44265. [
  44266. {
  44267. name: "Micro",
  44268. height: math.unit(15, "cm")
  44269. },
  44270. {
  44271. name: "Normal",
  44272. height: math.unit(2, "meters"),
  44273. default: true
  44274. },
  44275. {
  44276. name: "Macro",
  44277. height: math.unit(20, "meters"),
  44278. },
  44279. ]
  44280. ))
  44281. characterMakers.push(() => makeCharacter(
  44282. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44283. {
  44284. front: {
  44285. height: math.unit(9, "feet"),
  44286. weight: math.unit(240, "lb"),
  44287. name: "Front",
  44288. image: {
  44289. source: "./media/characters/kuzco/front.svg",
  44290. extra: 1593/1487,
  44291. bottom: 32/1625
  44292. }
  44293. },
  44294. side: {
  44295. height: math.unit(9, "feet"),
  44296. weight: math.unit(240, "lb"),
  44297. name: "Side",
  44298. image: {
  44299. source: "./media/characters/kuzco/side.svg",
  44300. extra: 1575/1485,
  44301. bottom: 30/1605
  44302. }
  44303. },
  44304. back: {
  44305. height: math.unit(9, "feet"),
  44306. weight: math.unit(240, "lb"),
  44307. name: "Back",
  44308. image: {
  44309. source: "./media/characters/kuzco/back.svg",
  44310. extra: 1603/1514,
  44311. bottom: 14/1617
  44312. }
  44313. },
  44314. },
  44315. [
  44316. {
  44317. name: "Normal",
  44318. height: math.unit(9, "feet"),
  44319. default: true
  44320. },
  44321. ]
  44322. ))
  44323. characterMakers.push(() => makeCharacter(
  44324. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44325. {
  44326. side: {
  44327. height: math.unit(2, "meters"),
  44328. weight: math.unit(300, "kg"),
  44329. name: "Side",
  44330. image: {
  44331. source: "./media/characters/ceruleus/side.svg",
  44332. extra: 1068/974,
  44333. bottom: 126/1194
  44334. }
  44335. },
  44336. },
  44337. [
  44338. {
  44339. name: "Normal",
  44340. height: math.unit(16, "meters"),
  44341. default: true
  44342. },
  44343. ]
  44344. ))
  44345. //characters
  44346. function makeCharacters() {
  44347. const results = [];
  44348. characterMakers.forEach(character => {
  44349. results.push(character());
  44350. });
  44351. return results;
  44352. }