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

44851 строка
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. back: {
  1829. height: math.unit(2.2428, "meter"),
  1830. weight: math.unit(124.738, "kg"),
  1831. name: "Back",
  1832. image: {
  1833. source: "./media/characters/fen/back.svg",
  1834. },
  1835. info: {
  1836. description: {
  1837. mode: "append",
  1838. text: "\n\nHe is not currently looking at you."
  1839. }
  1840. }
  1841. },
  1842. full: {
  1843. height: math.unit(0.91, "meter"),
  1844. weight: math.unit(225, "kg"),
  1845. name: "Full",
  1846. image: {
  1847. source: "./media/characters/fen/full.svg",
  1848. extra: 1133/859,
  1849. bottom: 145/1278
  1850. },
  1851. info: {
  1852. description: {
  1853. mode: "append",
  1854. text: "\n\nMunch."
  1855. }
  1856. }
  1857. },
  1858. kneeling: {
  1859. height: math.unit(5.4, "feet"),
  1860. weight: math.unit(124.738, "kg"),
  1861. name: "Kneeling",
  1862. image: {
  1863. source: "./media/characters/fen/kneeling.svg",
  1864. extra: 563 / 507
  1865. }
  1866. },
  1867. goo: {
  1868. height: math.unit(2.8, "feet"),
  1869. weight: math.unit(125, "kg"),
  1870. capacity: math.unit(1, "people"),
  1871. name: "Goo",
  1872. image: {
  1873. source: "./media/characters/fen/goo.svg",
  1874. bottom: 116 / 613
  1875. }
  1876. },
  1877. lounging: {
  1878. height: math.unit(6.5, "feet"),
  1879. weight: math.unit(125, "kg"),
  1880. name: "Lounging",
  1881. image: {
  1882. source: "./media/characters/fen/lounging.svg"
  1883. }
  1884. },
  1885. },
  1886. [
  1887. {
  1888. name: "Normal",
  1889. height: math.unit(2.2428, "meter")
  1890. },
  1891. {
  1892. name: "Big",
  1893. height: math.unit(12, "feet")
  1894. },
  1895. {
  1896. name: "Minimacro",
  1897. height: math.unit(40, "feet"),
  1898. default: true,
  1899. info: {
  1900. description: {
  1901. mode: "append",
  1902. text: "\n\nTOO DAMN BIG"
  1903. }
  1904. }
  1905. },
  1906. {
  1907. name: "Macro",
  1908. height: math.unit(100, "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(300, "feet")
  1919. },
  1920. {
  1921. name: "Megamacro",
  1922. height: math.unit(2, "miles")
  1923. }
  1924. ]
  1925. ))
  1926. characterMakers.push(() => makeCharacter(
  1927. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1928. {
  1929. front: {
  1930. height: math.unit(183, "cm"),
  1931. weight: math.unit(80, "kg"),
  1932. name: "Front",
  1933. image: {
  1934. source: "./media/characters/sofia-fluttertail/front.svg",
  1935. bottom: 0.01,
  1936. extra: 2154 / 2081
  1937. }
  1938. },
  1939. frontAlt: {
  1940. height: math.unit(183, "cm"),
  1941. weight: math.unit(80, "kg"),
  1942. name: "Front (alt)",
  1943. image: {
  1944. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1945. }
  1946. },
  1947. back: {
  1948. height: math.unit(183, "cm"),
  1949. weight: math.unit(80, "kg"),
  1950. name: "Back",
  1951. image: {
  1952. source: "./media/characters/sofia-fluttertail/back.svg"
  1953. }
  1954. },
  1955. kneeling: {
  1956. height: math.unit(125, "cm"),
  1957. weight: math.unit(80, "kg"),
  1958. name: "Kneeling",
  1959. image: {
  1960. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1961. extra: 1033 / 977,
  1962. bottom: 23.7 / 1057
  1963. }
  1964. },
  1965. maw: {
  1966. height: math.unit(183 / 5, "cm"),
  1967. name: "Maw",
  1968. image: {
  1969. source: "./media/characters/sofia-fluttertail/maw.svg"
  1970. }
  1971. },
  1972. mawcloseup: {
  1973. height: math.unit(183 / 5 * 0.41, "cm"),
  1974. name: "Maw (Closeup)",
  1975. image: {
  1976. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1977. }
  1978. },
  1979. paws: {
  1980. height: math.unit(1.17, "feet"),
  1981. name: "Paws",
  1982. image: {
  1983. source: "./media/characters/sofia-fluttertail/paws.svg",
  1984. extra: 851 / 851,
  1985. bottom: 17 / 868
  1986. }
  1987. },
  1988. },
  1989. [
  1990. {
  1991. name: "Normal",
  1992. height: math.unit(1.83, "meter")
  1993. },
  1994. {
  1995. name: "Size Thief",
  1996. height: math.unit(18, "feet")
  1997. },
  1998. {
  1999. name: "50 Foot Collie",
  2000. height: math.unit(50, "feet")
  2001. },
  2002. {
  2003. name: "Macro",
  2004. height: math.unit(96, "feet"),
  2005. default: true
  2006. },
  2007. {
  2008. name: "Megamerger",
  2009. height: math.unit(650, "feet")
  2010. },
  2011. ]
  2012. ))
  2013. characterMakers.push(() => makeCharacter(
  2014. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2015. {
  2016. front: {
  2017. height: math.unit(7, "feet"),
  2018. weight: math.unit(100, "kg"),
  2019. name: "Front",
  2020. image: {
  2021. source: "./media/characters/march/front.svg",
  2022. extra: 1992/1851,
  2023. bottom: 39/2031
  2024. }
  2025. },
  2026. foot: {
  2027. height: math.unit(0.9, "feet"),
  2028. name: "Foot",
  2029. image: {
  2030. source: "./media/characters/march/foot.svg"
  2031. }
  2032. },
  2033. },
  2034. [
  2035. {
  2036. name: "Normal",
  2037. height: math.unit(7.9, "feet")
  2038. },
  2039. {
  2040. name: "Macro",
  2041. height: math.unit(220, "meters")
  2042. },
  2043. {
  2044. name: "Megamacro",
  2045. height: math.unit(2.98, "km"),
  2046. default: true
  2047. },
  2048. {
  2049. name: "Gigamacro",
  2050. height: math.unit(15963, "km")
  2051. },
  2052. {
  2053. name: "Teramacro",
  2054. height: math.unit(2980000000, "km")
  2055. },
  2056. {
  2057. name: "Examacro",
  2058. height: math.unit(250, "parsecs")
  2059. },
  2060. ]
  2061. ))
  2062. characterMakers.push(() => makeCharacter(
  2063. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2064. {
  2065. front: {
  2066. height: math.unit(6, "feet"),
  2067. weight: math.unit(60, "kg"),
  2068. name: "Front",
  2069. image: {
  2070. source: "./media/characters/noir/front.svg",
  2071. extra: 1,
  2072. bottom: 0.032
  2073. }
  2074. },
  2075. },
  2076. [
  2077. {
  2078. name: "Normal",
  2079. height: math.unit(6.6, "feet")
  2080. },
  2081. {
  2082. name: "Macro",
  2083. height: math.unit(500, "feet")
  2084. },
  2085. {
  2086. name: "Megamacro",
  2087. height: math.unit(2.5, "km"),
  2088. default: true
  2089. },
  2090. {
  2091. name: "Gigamacro",
  2092. height: math.unit(22500, "km")
  2093. },
  2094. {
  2095. name: "Teramacro",
  2096. height: math.unit(2500000000, "km")
  2097. },
  2098. {
  2099. name: "Examacro",
  2100. height: math.unit(200, "parsecs")
  2101. },
  2102. ]
  2103. ))
  2104. characterMakers.push(() => makeCharacter(
  2105. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2106. {
  2107. front: {
  2108. height: math.unit(7, "feet"),
  2109. weight: math.unit(100, "kg"),
  2110. name: "Front",
  2111. image: {
  2112. source: "./media/characters/okuri/front.svg",
  2113. extra: 1,
  2114. bottom: 0.037
  2115. }
  2116. },
  2117. back: {
  2118. height: math.unit(7, "feet"),
  2119. weight: math.unit(100, "kg"),
  2120. name: "Back",
  2121. image: {
  2122. source: "./media/characters/okuri/back.svg",
  2123. extra: 1,
  2124. bottom: 0.007
  2125. }
  2126. },
  2127. },
  2128. [
  2129. {
  2130. name: "Megamacro",
  2131. height: math.unit(100, "miles"),
  2132. default: true
  2133. },
  2134. ]
  2135. ))
  2136. characterMakers.push(() => makeCharacter(
  2137. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2138. {
  2139. front: {
  2140. height: math.unit(7, "feet"),
  2141. weight: math.unit(100, "kg"),
  2142. name: "Front",
  2143. image: {
  2144. source: "./media/characters/manny/front.svg",
  2145. extra: 1,
  2146. bottom: 0.06
  2147. }
  2148. },
  2149. back: {
  2150. height: math.unit(7, "feet"),
  2151. weight: math.unit(100, "kg"),
  2152. name: "Back",
  2153. image: {
  2154. source: "./media/characters/manny/back.svg",
  2155. extra: 1,
  2156. bottom: 0.014
  2157. }
  2158. },
  2159. },
  2160. [
  2161. {
  2162. name: "Normal",
  2163. height: math.unit(7, "feet"),
  2164. },
  2165. {
  2166. name: "Macro",
  2167. height: math.unit(78, "feet"),
  2168. default: true
  2169. },
  2170. {
  2171. name: "Macro+",
  2172. height: math.unit(300, "meters")
  2173. },
  2174. {
  2175. name: "Macro++",
  2176. height: math.unit(2400, "meters")
  2177. },
  2178. {
  2179. name: "Megamacro",
  2180. height: math.unit(5167, "meters")
  2181. },
  2182. {
  2183. name: "Gigamacro",
  2184. height: math.unit(41769, "miles")
  2185. },
  2186. ]
  2187. ))
  2188. characterMakers.push(() => makeCharacter(
  2189. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2190. {
  2191. front: {
  2192. height: math.unit(7, "feet"),
  2193. weight: math.unit(100, "kg"),
  2194. name: "Front",
  2195. image: {
  2196. source: "./media/characters/adake/front-1.svg"
  2197. }
  2198. },
  2199. frontAlt: {
  2200. height: math.unit(7, "feet"),
  2201. weight: math.unit(100, "kg"),
  2202. name: "Front (Alt)",
  2203. image: {
  2204. source: "./media/characters/adake/front-2.svg",
  2205. extra: 1,
  2206. bottom: 0.01
  2207. }
  2208. },
  2209. back: {
  2210. height: math.unit(7, "feet"),
  2211. weight: math.unit(100, "kg"),
  2212. name: "Back",
  2213. image: {
  2214. source: "./media/characters/adake/back.svg",
  2215. }
  2216. },
  2217. kneel: {
  2218. height: math.unit(5.385, "feet"),
  2219. weight: math.unit(100, "kg"),
  2220. name: "Kneeling",
  2221. image: {
  2222. source: "./media/characters/adake/kneel.svg",
  2223. bottom: 0.052
  2224. }
  2225. },
  2226. },
  2227. [
  2228. {
  2229. name: "Normal",
  2230. height: math.unit(7, "feet"),
  2231. },
  2232. {
  2233. name: "Macro",
  2234. height: math.unit(78, "feet"),
  2235. default: true
  2236. },
  2237. {
  2238. name: "Macro+",
  2239. height: math.unit(300, "meters")
  2240. },
  2241. {
  2242. name: "Macro++",
  2243. height: math.unit(2400, "meters")
  2244. },
  2245. {
  2246. name: "Megamacro",
  2247. height: math.unit(5167, "meters")
  2248. },
  2249. {
  2250. name: "Gigamacro",
  2251. height: math.unit(41769, "miles")
  2252. },
  2253. ]
  2254. ))
  2255. characterMakers.push(() => makeCharacter(
  2256. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2257. {
  2258. front: {
  2259. height: math.unit(1.65, "meters"),
  2260. weight: math.unit(50, "kg"),
  2261. name: "Front",
  2262. image: {
  2263. source: "./media/characters/elijah/front.svg",
  2264. extra: 858 / 830,
  2265. bottom: 95.5 / 953.8559
  2266. }
  2267. },
  2268. back: {
  2269. height: math.unit(1.65, "meters"),
  2270. weight: math.unit(50, "kg"),
  2271. name: "Back",
  2272. image: {
  2273. source: "./media/characters/elijah/back.svg",
  2274. extra: 895 / 850,
  2275. bottom: 5.3 / 897.956
  2276. }
  2277. },
  2278. frontNsfw: {
  2279. height: math.unit(1.65, "meters"),
  2280. weight: math.unit(50, "kg"),
  2281. name: "Front (NSFW)",
  2282. image: {
  2283. source: "./media/characters/elijah/front-nsfw.svg",
  2284. extra: 858 / 830,
  2285. bottom: 95.5 / 953.8559
  2286. }
  2287. },
  2288. backNsfw: {
  2289. height: math.unit(1.65, "meters"),
  2290. weight: math.unit(50, "kg"),
  2291. name: "Back (NSFW)",
  2292. image: {
  2293. source: "./media/characters/elijah/back-nsfw.svg",
  2294. extra: 895 / 850,
  2295. bottom: 5.3 / 897.956
  2296. }
  2297. },
  2298. dick: {
  2299. height: math.unit(1, "feet"),
  2300. name: "Dick",
  2301. image: {
  2302. source: "./media/characters/elijah/dick.svg"
  2303. }
  2304. },
  2305. beakOpen: {
  2306. height: math.unit(1.25, "feet"),
  2307. name: "Beak (Open)",
  2308. image: {
  2309. source: "./media/characters/elijah/beak-open.svg"
  2310. }
  2311. },
  2312. beakShut: {
  2313. height: math.unit(1.25, "feet"),
  2314. name: "Beak (Shut)",
  2315. image: {
  2316. source: "./media/characters/elijah/beak-shut.svg"
  2317. }
  2318. },
  2319. footFlexing: {
  2320. height: math.unit(1.61, "feet"),
  2321. name: "Foot (Flexing)",
  2322. image: {
  2323. source: "./media/characters/elijah/foot-flexing.svg"
  2324. }
  2325. },
  2326. footStepping: {
  2327. height: math.unit(1.44, "feet"),
  2328. name: "Foot (Stepping)",
  2329. image: {
  2330. source: "./media/characters/elijah/foot-stepping.svg"
  2331. }
  2332. },
  2333. plantigradeLeg: {
  2334. height: math.unit(2.34, "feet"),
  2335. name: "Plantigrade Leg",
  2336. image: {
  2337. source: "./media/characters/elijah/plantigrade-leg.svg"
  2338. }
  2339. },
  2340. plantigradeFootLeft: {
  2341. height: math.unit(0.9, "feet"),
  2342. name: "Plantigrade Foot (Left)",
  2343. image: {
  2344. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2345. }
  2346. },
  2347. plantigradeFootRight: {
  2348. height: math.unit(0.9, "feet"),
  2349. name: "Plantigrade Foot (Right)",
  2350. image: {
  2351. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2352. }
  2353. },
  2354. },
  2355. [
  2356. {
  2357. name: "Normal",
  2358. height: math.unit(1.65, "meters")
  2359. },
  2360. {
  2361. name: "Macro",
  2362. height: math.unit(55, "meters"),
  2363. default: true
  2364. },
  2365. {
  2366. name: "Macro+",
  2367. height: math.unit(105, "meters")
  2368. },
  2369. ]
  2370. ))
  2371. characterMakers.push(() => makeCharacter(
  2372. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2373. {
  2374. front: {
  2375. height: math.unit(7 + 2/12, "feet"),
  2376. weight: math.unit(320, "kg"),
  2377. name: "Front",
  2378. image: {
  2379. source: "./media/characters/rai/front.svg",
  2380. extra: 1802/1696,
  2381. bottom: 68/1870
  2382. }
  2383. },
  2384. frontDressed: {
  2385. height: math.unit(7 + 2/12, "feet"),
  2386. weight: math.unit(320, "kg"),
  2387. name: "Front (Dressed)",
  2388. image: {
  2389. source: "./media/characters/rai/front-dressed.svg",
  2390. extra: 1802/1696,
  2391. bottom: 68/1870
  2392. }
  2393. },
  2394. side: {
  2395. height: math.unit(7 + 2/12, "feet"),
  2396. weight: math.unit(320, "kg"),
  2397. name: "Side",
  2398. image: {
  2399. source: "./media/characters/rai/side.svg",
  2400. extra: 1789/1710,
  2401. bottom: 115/1904
  2402. }
  2403. },
  2404. back: {
  2405. height: math.unit(7 + 2/12, "feet"),
  2406. weight: math.unit(320, "kg"),
  2407. name: "Back",
  2408. image: {
  2409. source: "./media/characters/rai/back.svg",
  2410. extra: 1770/1707,
  2411. bottom: 28/1798
  2412. }
  2413. },
  2414. feral: {
  2415. height: math.unit(9.5, "feet"),
  2416. weight: math.unit(640, "kg"),
  2417. name: "Feral",
  2418. image: {
  2419. source: "./media/characters/rai/feral.svg",
  2420. extra: 945/553,
  2421. bottom: 176/1121
  2422. }
  2423. },
  2424. dragon: {
  2425. height: math.unit(23, "feet"),
  2426. weight: math.unit(50000, "lb"),
  2427. name: "Dragon",
  2428. image: {
  2429. source: "./media/characters/rai/dragon.svg",
  2430. extra: 2498 / 2030,
  2431. bottom: 85.2 / 2584
  2432. }
  2433. },
  2434. maw: {
  2435. height: math.unit(1.69, "feet"),
  2436. name: "Maw",
  2437. image: {
  2438. source: "./media/characters/rai/maw.svg"
  2439. }
  2440. },
  2441. },
  2442. [
  2443. {
  2444. name: "Normal",
  2445. height: math.unit(7 + 2/12, "feet")
  2446. },
  2447. {
  2448. name: "Big",
  2449. height: math.unit(11, "feet")
  2450. },
  2451. {
  2452. name: "Macro",
  2453. height: math.unit(302, "feet"),
  2454. default: true
  2455. },
  2456. ]
  2457. ))
  2458. characterMakers.push(() => makeCharacter(
  2459. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2460. {
  2461. frontDressed: {
  2462. height: math.unit(216, "feet"),
  2463. weight: math.unit(7000000, "lb"),
  2464. name: "Front (Dressed)",
  2465. image: {
  2466. source: "./media/characters/jazzy/front-dressed.svg",
  2467. extra: 2738 / 2651,
  2468. bottom: 41.8 / 2786
  2469. }
  2470. },
  2471. backDressed: {
  2472. height: math.unit(216, "feet"),
  2473. weight: math.unit(7000000, "lb"),
  2474. name: "Back (Dressed)",
  2475. image: {
  2476. source: "./media/characters/jazzy/back-dressed.svg",
  2477. extra: 2775 / 2673,
  2478. bottom: 36.8 / 2817
  2479. }
  2480. },
  2481. front: {
  2482. height: math.unit(216, "feet"),
  2483. weight: math.unit(7000000, "lb"),
  2484. name: "Front",
  2485. image: {
  2486. source: "./media/characters/jazzy/front.svg",
  2487. extra: 2738 / 2651,
  2488. bottom: 41.8 / 2786
  2489. }
  2490. },
  2491. back: {
  2492. height: math.unit(216, "feet"),
  2493. weight: math.unit(7000000, "lb"),
  2494. name: "Back",
  2495. image: {
  2496. source: "./media/characters/jazzy/back.svg",
  2497. extra: 2775 / 2673,
  2498. bottom: 36.8 / 2817
  2499. }
  2500. },
  2501. maw: {
  2502. height: math.unit(20, "feet"),
  2503. name: "Maw",
  2504. image: {
  2505. source: "./media/characters/jazzy/maw.svg"
  2506. }
  2507. },
  2508. paws: {
  2509. height: math.unit(27.5, "feet"),
  2510. name: "Paws",
  2511. image: {
  2512. source: "./media/characters/jazzy/paws.svg"
  2513. }
  2514. },
  2515. eye: {
  2516. height: math.unit(4.4, "feet"),
  2517. name: "Eye",
  2518. image: {
  2519. source: "./media/characters/jazzy/eye.svg"
  2520. }
  2521. },
  2522. droneOffense: {
  2523. height: math.unit(9.5, "inches"),
  2524. name: "Drone (Offense)",
  2525. image: {
  2526. source: "./media/characters/jazzy/drone-offense.svg"
  2527. }
  2528. },
  2529. droneRecon: {
  2530. height: math.unit(9.5, "inches"),
  2531. name: "Drone (Recon)",
  2532. image: {
  2533. source: "./media/characters/jazzy/drone-recon.svg"
  2534. }
  2535. },
  2536. droneDefense: {
  2537. height: math.unit(9.5, "inches"),
  2538. name: "Drone (Defense)",
  2539. image: {
  2540. source: "./media/characters/jazzy/drone-defense.svg"
  2541. }
  2542. },
  2543. },
  2544. [
  2545. {
  2546. name: "Macro",
  2547. height: math.unit(216, "feet"),
  2548. default: true
  2549. },
  2550. ]
  2551. ))
  2552. characterMakers.push(() => makeCharacter(
  2553. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2554. {
  2555. front: {
  2556. height: math.unit(9 + 6/12, "feet"),
  2557. weight: math.unit(700, "lb"),
  2558. name: "Front",
  2559. image: {
  2560. source: "./media/characters/flamm/front.svg",
  2561. extra: 1751/1632,
  2562. bottom: 46/1797
  2563. }
  2564. },
  2565. buff: {
  2566. height: math.unit(9 + 6/12, "feet"),
  2567. weight: math.unit(950, "lb"),
  2568. name: "Buff",
  2569. image: {
  2570. source: "./media/characters/flamm/buff.svg",
  2571. extra: 3018/2874,
  2572. bottom: 221/3239
  2573. }
  2574. },
  2575. },
  2576. [
  2577. {
  2578. name: "Normal",
  2579. height: math.unit(9.5, "feet")
  2580. },
  2581. {
  2582. name: "Macro",
  2583. height: math.unit(200, "feet"),
  2584. default: true
  2585. },
  2586. ]
  2587. ))
  2588. characterMakers.push(() => makeCharacter(
  2589. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2590. {
  2591. front: {
  2592. height: math.unit(5 + 3/12, "feet"),
  2593. weight: math.unit(60, "kg"),
  2594. name: "Front",
  2595. image: {
  2596. source: "./media/characters/zephiro/front.svg",
  2597. extra: 2309 / 2162,
  2598. bottom: 0.069
  2599. }
  2600. },
  2601. side: {
  2602. height: math.unit(5 + 3/12, "feet"),
  2603. weight: math.unit(60, "kg"),
  2604. name: "Side",
  2605. image: {
  2606. source: "./media/characters/zephiro/side.svg",
  2607. extra: 2403 / 2279,
  2608. bottom: 0.015
  2609. }
  2610. },
  2611. back: {
  2612. height: math.unit(5 + 3/12, "feet"),
  2613. weight: math.unit(60, "kg"),
  2614. name: "Back",
  2615. image: {
  2616. source: "./media/characters/zephiro/back.svg",
  2617. extra: 2373 / 2244,
  2618. bottom: 0.013
  2619. }
  2620. },
  2621. hand: {
  2622. height: math.unit(0.68, "feet"),
  2623. name: "Hand",
  2624. image: {
  2625. source: "./media/characters/zephiro/hand.svg"
  2626. }
  2627. },
  2628. paw: {
  2629. height: math.unit(1, "feet"),
  2630. name: "Paw",
  2631. image: {
  2632. source: "./media/characters/zephiro/paw.svg"
  2633. }
  2634. },
  2635. beans: {
  2636. height: math.unit(0.93, "feet"),
  2637. name: "Beans",
  2638. image: {
  2639. source: "./media/characters/zephiro/beans.svg"
  2640. }
  2641. },
  2642. },
  2643. [
  2644. {
  2645. name: "Micro",
  2646. height: math.unit(3, "inches")
  2647. },
  2648. {
  2649. name: "Normal",
  2650. height: math.unit(5 + 3 / 12, "feet"),
  2651. default: true
  2652. },
  2653. {
  2654. name: "Macro",
  2655. height: math.unit(118, "feet")
  2656. },
  2657. ]
  2658. ))
  2659. characterMakers.push(() => makeCharacter(
  2660. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2661. {
  2662. front: {
  2663. height: math.unit(5, "feet"),
  2664. weight: math.unit(90, "kg"),
  2665. name: "Front",
  2666. image: {
  2667. source: "./media/characters/fory/front.svg",
  2668. extra: 2862 / 2674,
  2669. bottom: 180 / 3043.8
  2670. }
  2671. },
  2672. back: {
  2673. height: math.unit(5, "feet"),
  2674. weight: math.unit(90, "kg"),
  2675. name: "Back",
  2676. image: {
  2677. source: "./media/characters/fory/back.svg",
  2678. extra: 2962 / 2791,
  2679. bottom: 106 / 3071.8
  2680. }
  2681. },
  2682. foot: {
  2683. height: math.unit(2.14, "feet"),
  2684. name: "Foot",
  2685. image: {
  2686. source: "./media/characters/fory/foot.svg"
  2687. }
  2688. },
  2689. },
  2690. [
  2691. {
  2692. name: "Normal",
  2693. height: math.unit(5, "feet")
  2694. },
  2695. {
  2696. name: "Macro",
  2697. height: math.unit(50, "feet"),
  2698. default: true
  2699. },
  2700. {
  2701. name: "Megamacro",
  2702. height: math.unit(10, "miles")
  2703. },
  2704. {
  2705. name: "Gigamacro",
  2706. height: math.unit(5, "earths")
  2707. },
  2708. ]
  2709. ))
  2710. characterMakers.push(() => makeCharacter(
  2711. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2712. {
  2713. front: {
  2714. height: math.unit(7, "feet"),
  2715. weight: math.unit(90, "kg"),
  2716. name: "Front",
  2717. image: {
  2718. source: "./media/characters/kurrikage/front.svg",
  2719. extra: 1,
  2720. bottom: 0.035
  2721. }
  2722. },
  2723. back: {
  2724. height: math.unit(7, "feet"),
  2725. weight: math.unit(90, "lb"),
  2726. name: "Back",
  2727. image: {
  2728. source: "./media/characters/kurrikage/back.svg"
  2729. }
  2730. },
  2731. paw: {
  2732. height: math.unit(1.5, "feet"),
  2733. name: "Paw",
  2734. image: {
  2735. source: "./media/characters/kurrikage/paw.svg"
  2736. }
  2737. },
  2738. staff: {
  2739. height: math.unit(6.7, "feet"),
  2740. name: "Staff",
  2741. image: {
  2742. source: "./media/characters/kurrikage/staff.svg"
  2743. }
  2744. },
  2745. peek: {
  2746. height: math.unit(1.05, "feet"),
  2747. name: "Peeking",
  2748. image: {
  2749. source: "./media/characters/kurrikage/peek.svg",
  2750. bottom: 0.08
  2751. }
  2752. },
  2753. },
  2754. [
  2755. {
  2756. name: "Normal",
  2757. height: math.unit(12, "feet"),
  2758. default: true
  2759. },
  2760. {
  2761. name: "Big",
  2762. height: math.unit(20, "feet")
  2763. },
  2764. {
  2765. name: "Macro",
  2766. height: math.unit(500, "feet")
  2767. },
  2768. {
  2769. name: "Megamacro",
  2770. height: math.unit(20, "miles")
  2771. },
  2772. ]
  2773. ))
  2774. characterMakers.push(() => makeCharacter(
  2775. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2776. {
  2777. front: {
  2778. height: math.unit(6, "feet"),
  2779. weight: math.unit(75, "kg"),
  2780. name: "Front",
  2781. image: {
  2782. source: "./media/characters/shingo/front.svg",
  2783. extra: 1900/1825,
  2784. bottom: 82/1982
  2785. }
  2786. },
  2787. side: {
  2788. height: math.unit(6, "feet"),
  2789. weight: math.unit(75, "kg"),
  2790. name: "Side",
  2791. image: {
  2792. source: "./media/characters/shingo/side.svg",
  2793. extra: 1930/1865,
  2794. bottom: 16/1946
  2795. }
  2796. },
  2797. back: {
  2798. height: math.unit(6, "feet"),
  2799. weight: math.unit(75, "kg"),
  2800. name: "Back",
  2801. image: {
  2802. source: "./media/characters/shingo/back.svg",
  2803. extra: 1922/1852,
  2804. bottom: 16/1938
  2805. }
  2806. },
  2807. frontDressed: {
  2808. height: math.unit(6, "feet"),
  2809. weight: math.unit(150, "lb"),
  2810. name: "Front-dressed",
  2811. image: {
  2812. source: "./media/characters/shingo/front-dressed.svg",
  2813. extra: 1900/1825,
  2814. bottom: 82/1982
  2815. }
  2816. },
  2817. paw: {
  2818. height: math.unit(1.29, "feet"),
  2819. name: "Paw",
  2820. image: {
  2821. source: "./media/characters/shingo/paw.svg"
  2822. }
  2823. },
  2824. hand: {
  2825. height: math.unit(1.07, "feet"),
  2826. name: "Hand",
  2827. image: {
  2828. source: "./media/characters/shingo/hand.svg"
  2829. }
  2830. },
  2831. frontAlt: {
  2832. height: math.unit(6, "feet"),
  2833. weight: math.unit(75, "kg"),
  2834. name: "Front (Alt)",
  2835. image: {
  2836. source: "./media/characters/shingo/front-alt.svg",
  2837. extra: 3511 / 3338,
  2838. bottom: 0.005
  2839. }
  2840. },
  2841. frontAlt2: {
  2842. height: math.unit(6, "feet"),
  2843. weight: math.unit(75, "kg"),
  2844. name: "Front (Alt 2)",
  2845. image: {
  2846. source: "./media/characters/shingo/front-alt-2.svg",
  2847. extra: 706/681,
  2848. bottom: 11/717
  2849. }
  2850. },
  2851. pawAlt: {
  2852. height: math.unit(1, "feet"),
  2853. name: "Paw (Alt)",
  2854. image: {
  2855. source: "./media/characters/shingo/paw-alt.svg"
  2856. }
  2857. },
  2858. },
  2859. [
  2860. {
  2861. name: "Micro",
  2862. height: math.unit(4, "inches")
  2863. },
  2864. {
  2865. name: "Normal",
  2866. height: math.unit(6, "feet"),
  2867. default: true
  2868. },
  2869. {
  2870. name: "Macro",
  2871. height: math.unit(108, "feet")
  2872. },
  2873. {
  2874. name: "Macro+",
  2875. height: math.unit(1500, "feet")
  2876. },
  2877. ]
  2878. ))
  2879. characterMakers.push(() => makeCharacter(
  2880. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2881. {
  2882. side: {
  2883. height: math.unit(6, "feet"),
  2884. weight: math.unit(75, "kg"),
  2885. name: "Side",
  2886. image: {
  2887. source: "./media/characters/aigey/side.svg"
  2888. }
  2889. },
  2890. },
  2891. [
  2892. {
  2893. name: "Macro",
  2894. height: math.unit(200, "feet"),
  2895. default: true
  2896. },
  2897. {
  2898. name: "Megamacro",
  2899. height: math.unit(100, "miles")
  2900. },
  2901. ]
  2902. )
  2903. )
  2904. characterMakers.push(() => makeCharacter(
  2905. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2906. {
  2907. front: {
  2908. height: math.unit(5 + 5 / 12, "feet"),
  2909. weight: math.unit(75, "kg"),
  2910. name: "Front",
  2911. image: {
  2912. source: "./media/characters/natasha/front.svg",
  2913. extra: 859 / 824,
  2914. bottom: 23 / 879.6
  2915. }
  2916. },
  2917. frontNsfw: {
  2918. height: math.unit(5 + 5 / 12, "feet"),
  2919. weight: math.unit(75, "kg"),
  2920. name: "Front (NSFW)",
  2921. image: {
  2922. source: "./media/characters/natasha/front-nsfw.svg",
  2923. extra: 859 / 824,
  2924. bottom: 23 / 879.6
  2925. }
  2926. },
  2927. frontErect: {
  2928. height: math.unit(5 + 5 / 12, "feet"),
  2929. weight: math.unit(75, "kg"),
  2930. name: "Front (Erect)",
  2931. image: {
  2932. source: "./media/characters/natasha/front-erect.svg",
  2933. extra: 859 / 824,
  2934. bottom: 23 / 879.6
  2935. }
  2936. },
  2937. back: {
  2938. height: math.unit(5 + 5 / 12, "feet"),
  2939. weight: math.unit(75, "kg"),
  2940. name: "Back",
  2941. image: {
  2942. source: "./media/characters/natasha/back.svg",
  2943. extra: 887.9 / 852.6,
  2944. bottom: 9.7 / 896.4
  2945. }
  2946. },
  2947. backAlt: {
  2948. height: math.unit(5 + 5 / 12, "feet"),
  2949. weight: math.unit(75, "kg"),
  2950. name: "Back (Alt)",
  2951. image: {
  2952. source: "./media/characters/natasha/back-alt.svg",
  2953. extra: 1236.7 / 1192,
  2954. bottom: 22.3 / 1258.2
  2955. }
  2956. },
  2957. dick: {
  2958. height: math.unit(1.772, "feet"),
  2959. name: "Dick",
  2960. image: {
  2961. source: "./media/characters/natasha/dick.svg"
  2962. }
  2963. },
  2964. paw: {
  2965. height: math.unit(0.250, "meters"),
  2966. name: "Paw",
  2967. image: {
  2968. source: "./media/characters/natasha/paw.svg"
  2969. }
  2970. },
  2971. },
  2972. [
  2973. {
  2974. name: "Normal",
  2975. height: math.unit(5 + 5 / 12, "feet")
  2976. },
  2977. {
  2978. name: "Large",
  2979. height: math.unit(12, "feet")
  2980. },
  2981. {
  2982. name: "Macro",
  2983. height: math.unit(100, "feet"),
  2984. default: true
  2985. },
  2986. {
  2987. name: "Macro+",
  2988. height: math.unit(260, "feet")
  2989. },
  2990. {
  2991. name: "Macro++",
  2992. height: math.unit(1, "mile")
  2993. },
  2994. ]
  2995. ))
  2996. characterMakers.push(() => makeCharacter(
  2997. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2998. {
  2999. front: {
  3000. height: math.unit(6, "feet"),
  3001. weight: math.unit(75, "kg"),
  3002. name: "Front",
  3003. image: {
  3004. source: "./media/characters/malik/front.svg"
  3005. }
  3006. },
  3007. side: {
  3008. height: math.unit(6, "feet"),
  3009. weight: math.unit(75, "kg"),
  3010. name: "Side",
  3011. image: {
  3012. source: "./media/characters/malik/side.svg",
  3013. extra: 1.1539
  3014. }
  3015. },
  3016. back: {
  3017. height: math.unit(6, "feet"),
  3018. weight: math.unit(75, "kg"),
  3019. name: "Back",
  3020. image: {
  3021. source: "./media/characters/malik/back.svg"
  3022. }
  3023. },
  3024. },
  3025. [
  3026. {
  3027. name: "Macro",
  3028. height: math.unit(156, "feet"),
  3029. default: true
  3030. },
  3031. {
  3032. name: "Macro+",
  3033. height: math.unit(1188, "feet")
  3034. },
  3035. ]
  3036. ))
  3037. characterMakers.push(() => makeCharacter(
  3038. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3039. {
  3040. front: {
  3041. height: math.unit(6, "feet"),
  3042. weight: math.unit(75, "kg"),
  3043. name: "Front",
  3044. image: {
  3045. source: "./media/characters/sefer/front.svg",
  3046. extra: 848 / 659,
  3047. bottom: 28.3 / 876.442
  3048. }
  3049. },
  3050. back: {
  3051. height: math.unit(6, "feet"),
  3052. weight: math.unit(75, "kg"),
  3053. name: "Back",
  3054. image: {
  3055. source: "./media/characters/sefer/back.svg",
  3056. extra: 864 / 695,
  3057. bottom: 10 / 871
  3058. }
  3059. },
  3060. frontDressed: {
  3061. height: math.unit(6, "feet"),
  3062. weight: math.unit(75, "kg"),
  3063. name: "Front (Dressed)",
  3064. image: {
  3065. source: "./media/characters/sefer/front-dressed.svg",
  3066. extra: 839 / 653,
  3067. bottom: 37.6 / 878
  3068. }
  3069. },
  3070. },
  3071. [
  3072. {
  3073. name: "Normal",
  3074. height: math.unit(6, "feet"),
  3075. default: true
  3076. },
  3077. ]
  3078. ))
  3079. characterMakers.push(() => makeCharacter(
  3080. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3081. {
  3082. body: {
  3083. height: math.unit(2.2428, "meter"),
  3084. weight: math.unit(124.738, "kg"),
  3085. name: "Body",
  3086. image: {
  3087. extra: 1225 / 1050,
  3088. source: "./media/characters/north/front.svg"
  3089. }
  3090. }
  3091. },
  3092. [
  3093. {
  3094. name: "Micro",
  3095. height: math.unit(4, "inches")
  3096. },
  3097. {
  3098. name: "Macro",
  3099. height: math.unit(63, "meters")
  3100. },
  3101. {
  3102. name: "Megamacro",
  3103. height: math.unit(101, "miles"),
  3104. default: true
  3105. }
  3106. ]
  3107. ))
  3108. characterMakers.push(() => makeCharacter(
  3109. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3110. {
  3111. angled: {
  3112. height: math.unit(4, "meter"),
  3113. weight: math.unit(150, "kg"),
  3114. name: "Angled",
  3115. image: {
  3116. source: "./media/characters/talan/angled-sfw.svg",
  3117. bottom: 29 / 3734
  3118. }
  3119. },
  3120. angledNsfw: {
  3121. height: math.unit(4, "meter"),
  3122. weight: math.unit(150, "kg"),
  3123. name: "Angled (NSFW)",
  3124. image: {
  3125. source: "./media/characters/talan/angled-nsfw.svg",
  3126. bottom: 29 / 3734
  3127. }
  3128. },
  3129. frontNsfw: {
  3130. height: math.unit(4, "meter"),
  3131. weight: math.unit(150, "kg"),
  3132. name: "Front (NSFW)",
  3133. image: {
  3134. source: "./media/characters/talan/front-nsfw.svg",
  3135. bottom: 29 / 3734
  3136. }
  3137. },
  3138. sideNsfw: {
  3139. height: math.unit(4, "meter"),
  3140. weight: math.unit(150, "kg"),
  3141. name: "Side (NSFW)",
  3142. image: {
  3143. source: "./media/characters/talan/side-nsfw.svg",
  3144. bottom: 29 / 3734
  3145. }
  3146. },
  3147. back: {
  3148. height: math.unit(4, "meter"),
  3149. weight: math.unit(150, "kg"),
  3150. name: "Back",
  3151. image: {
  3152. source: "./media/characters/talan/back.svg"
  3153. }
  3154. },
  3155. dickBottom: {
  3156. height: math.unit(0.621, "meter"),
  3157. name: "Dick (Bottom)",
  3158. image: {
  3159. source: "./media/characters/talan/dick-bottom.svg"
  3160. }
  3161. },
  3162. dickTop: {
  3163. height: math.unit(0.621, "meter"),
  3164. name: "Dick (Top)",
  3165. image: {
  3166. source: "./media/characters/talan/dick-top.svg"
  3167. }
  3168. },
  3169. dickSide: {
  3170. height: math.unit(0.305, "meter"),
  3171. name: "Dick (Side)",
  3172. image: {
  3173. source: "./media/characters/talan/dick-side.svg"
  3174. }
  3175. },
  3176. dickFront: {
  3177. height: math.unit(0.305, "meter"),
  3178. name: "Dick (Front)",
  3179. image: {
  3180. source: "./media/characters/talan/dick-front.svg"
  3181. }
  3182. },
  3183. },
  3184. [
  3185. {
  3186. name: "Normal",
  3187. height: math.unit(4, "meters")
  3188. },
  3189. {
  3190. name: "Macro",
  3191. height: math.unit(100, "meters")
  3192. },
  3193. {
  3194. name: "Megamacro",
  3195. height: math.unit(2, "miles"),
  3196. default: true
  3197. },
  3198. {
  3199. name: "Gigamacro",
  3200. height: math.unit(5000, "miles")
  3201. },
  3202. {
  3203. name: "Teramacro",
  3204. height: math.unit(100, "parsecs")
  3205. }
  3206. ]
  3207. ))
  3208. characterMakers.push(() => makeCharacter(
  3209. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3210. {
  3211. front: {
  3212. height: math.unit(2, "meter"),
  3213. weight: math.unit(90, "kg"),
  3214. name: "Front",
  3215. image: {
  3216. source: "./media/characters/gael'rathus/front.svg"
  3217. }
  3218. },
  3219. frontAlt: {
  3220. height: math.unit(2, "meter"),
  3221. weight: math.unit(90, "kg"),
  3222. name: "Front (alt)",
  3223. image: {
  3224. source: "./media/characters/gael'rathus/front-alt.svg"
  3225. }
  3226. },
  3227. frontAlt2: {
  3228. height: math.unit(2, "meter"),
  3229. weight: math.unit(90, "kg"),
  3230. name: "Front (alt 2)",
  3231. image: {
  3232. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3233. }
  3234. }
  3235. },
  3236. [
  3237. {
  3238. name: "Normal",
  3239. height: math.unit(9, "feet"),
  3240. default: true
  3241. },
  3242. {
  3243. name: "Large",
  3244. height: math.unit(25, "feet")
  3245. },
  3246. {
  3247. name: "Macro",
  3248. height: math.unit(0.25, "miles")
  3249. },
  3250. {
  3251. name: "Megamacro",
  3252. height: math.unit(10, "miles")
  3253. }
  3254. ]
  3255. ))
  3256. characterMakers.push(() => makeCharacter(
  3257. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3258. {
  3259. side: {
  3260. height: math.unit(2, "meter"),
  3261. weight: math.unit(140, "kg"),
  3262. name: "Side",
  3263. image: {
  3264. source: "./media/characters/sosha/side.svg",
  3265. bottom: 0.042
  3266. }
  3267. },
  3268. },
  3269. [
  3270. {
  3271. name: "Normal",
  3272. height: math.unit(12, "feet"),
  3273. default: true
  3274. }
  3275. ]
  3276. ))
  3277. characterMakers.push(() => makeCharacter(
  3278. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3279. {
  3280. side: {
  3281. height: math.unit(5 + 5 / 12, "feet"),
  3282. weight: math.unit(170, "kg"),
  3283. name: "Side",
  3284. image: {
  3285. source: "./media/characters/runnola/side.svg",
  3286. extra: 741 / 448,
  3287. bottom: 0.05
  3288. }
  3289. },
  3290. },
  3291. [
  3292. {
  3293. name: "Small",
  3294. height: math.unit(3, "feet")
  3295. },
  3296. {
  3297. name: "Normal",
  3298. height: math.unit(5 + 5 / 12, "feet"),
  3299. default: true
  3300. },
  3301. {
  3302. name: "Big",
  3303. height: math.unit(10, "feet")
  3304. },
  3305. ]
  3306. ))
  3307. characterMakers.push(() => makeCharacter(
  3308. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3309. {
  3310. front: {
  3311. height: math.unit(2, "meter"),
  3312. weight: math.unit(50, "kg"),
  3313. name: "Front",
  3314. image: {
  3315. source: "./media/characters/kurribird/front.svg",
  3316. bottom: 0.015
  3317. }
  3318. },
  3319. frontAlt: {
  3320. height: math.unit(1.5, "meter"),
  3321. weight: math.unit(50, "kg"),
  3322. name: "Front (Alt)",
  3323. image: {
  3324. source: "./media/characters/kurribird/front-alt.svg",
  3325. extra: 1.45
  3326. }
  3327. },
  3328. },
  3329. [
  3330. {
  3331. name: "Normal",
  3332. height: math.unit(7, "feet")
  3333. },
  3334. {
  3335. name: "Big",
  3336. height: math.unit(12, "feet"),
  3337. default: true
  3338. },
  3339. {
  3340. name: "Macro",
  3341. height: math.unit(1500, "feet")
  3342. },
  3343. {
  3344. name: "Megamacro",
  3345. height: math.unit(2, "miles")
  3346. }
  3347. ]
  3348. ))
  3349. characterMakers.push(() => makeCharacter(
  3350. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3351. {
  3352. front: {
  3353. height: math.unit(2, "meter"),
  3354. weight: math.unit(80, "kg"),
  3355. name: "Front",
  3356. image: {
  3357. source: "./media/characters/elbial/front.svg",
  3358. extra: 1643 / 1556,
  3359. bottom: 60.2 / 1696
  3360. }
  3361. },
  3362. side: {
  3363. height: math.unit(2, "meter"),
  3364. weight: math.unit(80, "kg"),
  3365. name: "Side",
  3366. image: {
  3367. source: "./media/characters/elbial/side.svg",
  3368. extra: 1630 / 1565,
  3369. bottom: 71.5 / 1697
  3370. }
  3371. },
  3372. back: {
  3373. height: math.unit(2, "meter"),
  3374. weight: math.unit(80, "kg"),
  3375. name: "Back",
  3376. image: {
  3377. source: "./media/characters/elbial/back.svg",
  3378. extra: 1668 / 1595,
  3379. bottom: 5.6 / 1672
  3380. }
  3381. },
  3382. frontDressed: {
  3383. height: math.unit(2, "meter"),
  3384. weight: math.unit(80, "kg"),
  3385. name: "Front (Dressed)",
  3386. image: {
  3387. source: "./media/characters/elbial/front-dressed.svg",
  3388. extra: 1653 / 1584,
  3389. bottom: 57 / 1708
  3390. }
  3391. },
  3392. genitals: {
  3393. height: math.unit(2 / 3.367, "meter"),
  3394. name: "Genitals",
  3395. image: {
  3396. source: "./media/characters/elbial/genitals.svg"
  3397. }
  3398. },
  3399. },
  3400. [
  3401. {
  3402. name: "Large",
  3403. height: math.unit(100, "feet")
  3404. },
  3405. {
  3406. name: "Macro",
  3407. height: math.unit(500, "feet"),
  3408. default: true
  3409. },
  3410. {
  3411. name: "Megamacro",
  3412. height: math.unit(10, "miles")
  3413. },
  3414. {
  3415. name: "Gigamacro",
  3416. height: math.unit(25000, "miles")
  3417. },
  3418. {
  3419. name: "Full-Size",
  3420. height: math.unit(8000000, "gigaparsecs")
  3421. }
  3422. ]
  3423. ))
  3424. characterMakers.push(() => makeCharacter(
  3425. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3426. {
  3427. front: {
  3428. height: math.unit(2, "meter"),
  3429. weight: math.unit(60, "kg"),
  3430. name: "Front",
  3431. image: {
  3432. source: "./media/characters/noah/front.svg"
  3433. }
  3434. },
  3435. talons: {
  3436. height: math.unit(0.315, "meter"),
  3437. name: "Talons",
  3438. image: {
  3439. source: "./media/characters/noah/talons.svg"
  3440. }
  3441. }
  3442. },
  3443. [
  3444. {
  3445. name: "Large",
  3446. height: math.unit(50, "feet")
  3447. },
  3448. {
  3449. name: "Macro",
  3450. height: math.unit(750, "feet"),
  3451. default: true
  3452. },
  3453. {
  3454. name: "Megamacro",
  3455. height: math.unit(50, "miles")
  3456. },
  3457. {
  3458. name: "Gigamacro",
  3459. height: math.unit(100000, "miles")
  3460. },
  3461. {
  3462. name: "Full-Size",
  3463. height: math.unit(3000000000, "miles")
  3464. }
  3465. ]
  3466. ))
  3467. characterMakers.push(() => makeCharacter(
  3468. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3469. {
  3470. front: {
  3471. height: math.unit(2, "meter"),
  3472. weight: math.unit(80, "kg"),
  3473. name: "Front",
  3474. image: {
  3475. source: "./media/characters/natalya/front.svg"
  3476. }
  3477. },
  3478. back: {
  3479. height: math.unit(2, "meter"),
  3480. weight: math.unit(80, "kg"),
  3481. name: "Back",
  3482. image: {
  3483. source: "./media/characters/natalya/back.svg"
  3484. }
  3485. }
  3486. },
  3487. [
  3488. {
  3489. name: "Normal",
  3490. height: math.unit(150, "feet"),
  3491. default: true
  3492. },
  3493. {
  3494. name: "Megamacro",
  3495. height: math.unit(5, "miles")
  3496. },
  3497. {
  3498. name: "Full-Size",
  3499. height: math.unit(600, "kiloparsecs")
  3500. }
  3501. ]
  3502. ))
  3503. characterMakers.push(() => makeCharacter(
  3504. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3505. {
  3506. front: {
  3507. height: math.unit(2, "meter"),
  3508. weight: math.unit(50, "kg"),
  3509. name: "Front",
  3510. image: {
  3511. source: "./media/characters/erestrebah/front.svg",
  3512. extra: 208 / 193,
  3513. bottom: 0.055
  3514. }
  3515. },
  3516. back: {
  3517. height: math.unit(2, "meter"),
  3518. weight: math.unit(50, "kg"),
  3519. name: "Back",
  3520. image: {
  3521. source: "./media/characters/erestrebah/back.svg",
  3522. extra: 1.3
  3523. }
  3524. }
  3525. },
  3526. [
  3527. {
  3528. name: "Normal",
  3529. height: math.unit(10, "feet")
  3530. },
  3531. {
  3532. name: "Large",
  3533. height: math.unit(50, "feet"),
  3534. default: true
  3535. },
  3536. {
  3537. name: "Macro",
  3538. height: math.unit(300, "feet")
  3539. },
  3540. {
  3541. name: "Macro+",
  3542. height: math.unit(750, "feet")
  3543. },
  3544. {
  3545. name: "Megamacro",
  3546. height: math.unit(3, "miles")
  3547. }
  3548. ]
  3549. ))
  3550. characterMakers.push(() => makeCharacter(
  3551. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3552. {
  3553. front: {
  3554. height: math.unit(2, "meter"),
  3555. weight: math.unit(80, "kg"),
  3556. name: "Front",
  3557. image: {
  3558. source: "./media/characters/jennifer/front.svg",
  3559. bottom: 0.11,
  3560. extra: 1.16
  3561. }
  3562. },
  3563. frontAlt: {
  3564. height: math.unit(2, "meter"),
  3565. weight: math.unit(80, "kg"),
  3566. name: "Front (Alt)",
  3567. image: {
  3568. source: "./media/characters/jennifer/front-alt.svg"
  3569. }
  3570. }
  3571. },
  3572. [
  3573. {
  3574. name: "Canon Height",
  3575. height: math.unit(120, "feet"),
  3576. default: true
  3577. },
  3578. {
  3579. name: "Macro+",
  3580. height: math.unit(300, "feet")
  3581. },
  3582. {
  3583. name: "Megamacro",
  3584. height: math.unit(20000, "feet")
  3585. }
  3586. ]
  3587. ))
  3588. characterMakers.push(() => makeCharacter(
  3589. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3590. {
  3591. front: {
  3592. height: math.unit(2, "meter"),
  3593. weight: math.unit(50, "kg"),
  3594. name: "Front",
  3595. image: {
  3596. source: "./media/characters/kalista/front.svg",
  3597. extra: 1947 / 1700,
  3598. bottom: 76.6 / 1412.98
  3599. }
  3600. },
  3601. back: {
  3602. height: math.unit(2, "meter"),
  3603. weight: math.unit(50, "kg"),
  3604. name: "Back",
  3605. image: {
  3606. source: "./media/characters/kalista/back.svg",
  3607. extra: 1366 / 1156,
  3608. bottom: 33.9 / 1362.78
  3609. }
  3610. }
  3611. },
  3612. [
  3613. {
  3614. name: "Uncomfortably Small",
  3615. height: math.unit(10, "feet")
  3616. },
  3617. {
  3618. name: "Small",
  3619. height: math.unit(30, "feet")
  3620. },
  3621. {
  3622. name: "Macro",
  3623. height: math.unit(100, "feet"),
  3624. default: true
  3625. },
  3626. {
  3627. name: "Macro+",
  3628. height: math.unit(2000, "feet")
  3629. },
  3630. {
  3631. name: "True Form",
  3632. height: math.unit(8924, "miles")
  3633. }
  3634. ]
  3635. ))
  3636. characterMakers.push(() => makeCharacter(
  3637. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3638. {
  3639. front: {
  3640. height: math.unit(2, "meter"),
  3641. weight: math.unit(120, "kg"),
  3642. name: "Front",
  3643. image: {
  3644. source: "./media/characters/ggv/front.svg"
  3645. }
  3646. },
  3647. side: {
  3648. height: math.unit(2, "meter"),
  3649. weight: math.unit(120, "kg"),
  3650. name: "Side",
  3651. image: {
  3652. source: "./media/characters/ggv/side.svg"
  3653. }
  3654. }
  3655. },
  3656. [
  3657. {
  3658. name: "Extremely Puny",
  3659. height: math.unit(9 + 5 / 12, "feet")
  3660. },
  3661. {
  3662. name: "Horribly Small",
  3663. height: math.unit(47.7, "miles"),
  3664. default: true
  3665. },
  3666. {
  3667. name: "Reasonably Sized",
  3668. height: math.unit(25000, "parsecs")
  3669. },
  3670. {
  3671. name: "Slightly Uncompressed",
  3672. height: math.unit(7.77e31, "parsecs")
  3673. },
  3674. {
  3675. name: "Omniversal",
  3676. height: math.unit(1e300, "meters")
  3677. },
  3678. ]
  3679. ))
  3680. characterMakers.push(() => makeCharacter(
  3681. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3682. {
  3683. front: {
  3684. height: math.unit(2, "meter"),
  3685. weight: math.unit(75, "lb"),
  3686. name: "Front",
  3687. image: {
  3688. source: "./media/characters/napalm/front.svg"
  3689. }
  3690. },
  3691. back: {
  3692. height: math.unit(2, "meter"),
  3693. weight: math.unit(75, "lb"),
  3694. name: "Back",
  3695. image: {
  3696. source: "./media/characters/napalm/back.svg"
  3697. }
  3698. }
  3699. },
  3700. [
  3701. {
  3702. name: "Standard",
  3703. height: math.unit(55, "feet"),
  3704. default: true
  3705. }
  3706. ]
  3707. ))
  3708. characterMakers.push(() => makeCharacter(
  3709. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3710. {
  3711. front: {
  3712. height: math.unit(7 + 5 / 6, "feet"),
  3713. weight: math.unit(325, "lb"),
  3714. name: "Front",
  3715. image: {
  3716. source: "./media/characters/asana/front.svg",
  3717. extra: 1133 / 1060,
  3718. bottom: 15.2 / 1148.6
  3719. }
  3720. },
  3721. back: {
  3722. height: math.unit(7 + 5 / 6, "feet"),
  3723. weight: math.unit(325, "lb"),
  3724. name: "Back",
  3725. image: {
  3726. source: "./media/characters/asana/back.svg",
  3727. extra: 1114 / 1043,
  3728. bottom: 5 / 1120
  3729. }
  3730. },
  3731. dressedDark: {
  3732. height: math.unit(7 + 5 / 6, "feet"),
  3733. weight: math.unit(325, "lb"),
  3734. name: "Dressed (Dark)",
  3735. image: {
  3736. source: "./media/characters/asana/dressed-dark.svg",
  3737. extra: 1133 / 1060,
  3738. bottom: 15.2 / 1148.6
  3739. }
  3740. },
  3741. dressedLight: {
  3742. height: math.unit(7 + 5 / 6, "feet"),
  3743. weight: math.unit(325, "lb"),
  3744. name: "Dressed (Light)",
  3745. image: {
  3746. source: "./media/characters/asana/dressed-light.svg",
  3747. extra: 1133 / 1060,
  3748. bottom: 15.2 / 1148.6
  3749. }
  3750. },
  3751. },
  3752. [
  3753. {
  3754. name: "Standard",
  3755. height: math.unit(7 + 5 / 6, "feet"),
  3756. default: true
  3757. },
  3758. {
  3759. name: "Large",
  3760. height: math.unit(10, "meters")
  3761. },
  3762. {
  3763. name: "Macro",
  3764. height: math.unit(2500, "meters")
  3765. },
  3766. {
  3767. name: "Megamacro",
  3768. height: math.unit(5e6, "meters")
  3769. },
  3770. {
  3771. name: "Examacro",
  3772. height: math.unit(5e12, "lightyears")
  3773. },
  3774. {
  3775. name: "Max Size",
  3776. height: math.unit(1e31, "lightyears")
  3777. }
  3778. ]
  3779. ))
  3780. characterMakers.push(() => makeCharacter(
  3781. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3782. {
  3783. front: {
  3784. height: math.unit(2, "meter"),
  3785. weight: math.unit(60, "kg"),
  3786. name: "Front",
  3787. image: {
  3788. source: "./media/characters/ebony/front.svg",
  3789. bottom: 0.03,
  3790. extra: 1045 / 810 + 0.03
  3791. }
  3792. },
  3793. side: {
  3794. height: math.unit(2, "meter"),
  3795. weight: math.unit(60, "kg"),
  3796. name: "Side",
  3797. image: {
  3798. source: "./media/characters/ebony/side.svg",
  3799. bottom: 0.03,
  3800. extra: 1045 / 810 + 0.03
  3801. }
  3802. },
  3803. back: {
  3804. height: math.unit(2, "meter"),
  3805. weight: math.unit(60, "kg"),
  3806. name: "Back",
  3807. image: {
  3808. source: "./media/characters/ebony/back.svg",
  3809. bottom: 0.01,
  3810. extra: 1045 / 810 + 0.01
  3811. }
  3812. },
  3813. },
  3814. [
  3815. // TODO check why I did this lol
  3816. {
  3817. name: "Standard",
  3818. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3819. default: true
  3820. },
  3821. {
  3822. name: "Macro",
  3823. height: math.unit(200, "feet")
  3824. },
  3825. {
  3826. name: "Gigamacro",
  3827. height: math.unit(13000, "km")
  3828. }
  3829. ]
  3830. ))
  3831. characterMakers.push(() => makeCharacter(
  3832. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3833. {
  3834. front: {
  3835. height: math.unit(6, "feet"),
  3836. weight: math.unit(175, "lb"),
  3837. name: "Front",
  3838. image: {
  3839. source: "./media/characters/mountain/front.svg",
  3840. extra: 972 / 955,
  3841. bottom: 64 / 1036.6
  3842. }
  3843. },
  3844. back: {
  3845. height: math.unit(6, "feet"),
  3846. weight: math.unit(175, "lb"),
  3847. name: "Back",
  3848. image: {
  3849. source: "./media/characters/mountain/back.svg",
  3850. extra: 970 / 950,
  3851. bottom: 28.25 / 999
  3852. }
  3853. },
  3854. },
  3855. [
  3856. {
  3857. name: "Large",
  3858. height: math.unit(20, "meters")
  3859. },
  3860. {
  3861. name: "Macro",
  3862. height: math.unit(300, "meters")
  3863. },
  3864. {
  3865. name: "Gigamacro",
  3866. height: math.unit(10000, "km"),
  3867. default: true
  3868. },
  3869. {
  3870. name: "Examacro",
  3871. height: math.unit(10e9, "lightyears")
  3872. }
  3873. ]
  3874. ))
  3875. characterMakers.push(() => makeCharacter(
  3876. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3877. {
  3878. front: {
  3879. height: math.unit(8, "feet"),
  3880. weight: math.unit(500, "lb"),
  3881. name: "Front",
  3882. image: {
  3883. source: "./media/characters/rick/front.svg"
  3884. }
  3885. }
  3886. },
  3887. [
  3888. {
  3889. name: "Normal",
  3890. height: math.unit(8, "feet"),
  3891. default: true
  3892. },
  3893. {
  3894. name: "Macro",
  3895. height: math.unit(5, "km")
  3896. }
  3897. ]
  3898. ))
  3899. characterMakers.push(() => makeCharacter(
  3900. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3901. {
  3902. front: {
  3903. height: math.unit(8, "feet"),
  3904. weight: math.unit(120, "lb"),
  3905. name: "Front",
  3906. image: {
  3907. source: "./media/characters/ona/front.svg"
  3908. }
  3909. },
  3910. frontAlt: {
  3911. height: math.unit(8, "feet"),
  3912. weight: math.unit(120, "lb"),
  3913. name: "Front (Alt)",
  3914. image: {
  3915. source: "./media/characters/ona/front-alt.svg"
  3916. }
  3917. },
  3918. back: {
  3919. height: math.unit(8, "feet"),
  3920. weight: math.unit(120, "lb"),
  3921. name: "Back",
  3922. image: {
  3923. source: "./media/characters/ona/back.svg"
  3924. }
  3925. },
  3926. foot: {
  3927. height: math.unit(1.1, "feet"),
  3928. name: "Foot",
  3929. image: {
  3930. source: "./media/characters/ona/foot.svg"
  3931. }
  3932. }
  3933. },
  3934. [
  3935. {
  3936. name: "Megamacro",
  3937. height: math.unit(70, "km"),
  3938. default: true
  3939. },
  3940. {
  3941. name: "Gigamacro",
  3942. height: math.unit(681818, "miles")
  3943. },
  3944. {
  3945. name: "Examacro",
  3946. height: math.unit(3800000, "lightyears")
  3947. },
  3948. ]
  3949. ))
  3950. characterMakers.push(() => makeCharacter(
  3951. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3952. {
  3953. front: {
  3954. height: math.unit(12, "feet"),
  3955. weight: math.unit(3000, "lb"),
  3956. name: "Front",
  3957. image: {
  3958. source: "./media/characters/mech/front.svg",
  3959. extra: 2900 / 2770,
  3960. bottom: 110 / 3010
  3961. }
  3962. },
  3963. back: {
  3964. height: math.unit(12, "feet"),
  3965. weight: math.unit(3000, "lb"),
  3966. name: "Back",
  3967. image: {
  3968. source: "./media/characters/mech/back.svg",
  3969. extra: 3011 / 2890,
  3970. bottom: 94 / 3105
  3971. }
  3972. },
  3973. maw: {
  3974. height: math.unit(3.07, "feet"),
  3975. name: "Maw",
  3976. image: {
  3977. source: "./media/characters/mech/maw.svg"
  3978. }
  3979. },
  3980. head: {
  3981. height: math.unit(2.82, "feet"),
  3982. name: "Head",
  3983. image: {
  3984. source: "./media/characters/mech/head.svg"
  3985. }
  3986. },
  3987. dick: {
  3988. height: math.unit(1.43, "feet"),
  3989. name: "Dick",
  3990. image: {
  3991. source: "./media/characters/mech/dick.svg"
  3992. }
  3993. },
  3994. },
  3995. [
  3996. {
  3997. name: "Normal",
  3998. height: math.unit(12, "feet")
  3999. },
  4000. {
  4001. name: "Macro",
  4002. height: math.unit(300, "feet"),
  4003. default: true
  4004. },
  4005. {
  4006. name: "Macro+",
  4007. height: math.unit(1500, "feet")
  4008. },
  4009. ]
  4010. ))
  4011. characterMakers.push(() => makeCharacter(
  4012. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4013. {
  4014. front: {
  4015. height: math.unit(1.3, "meter"),
  4016. weight: math.unit(30, "kg"),
  4017. name: "Front",
  4018. image: {
  4019. source: "./media/characters/gregory/front.svg",
  4020. }
  4021. }
  4022. },
  4023. [
  4024. {
  4025. name: "Normal",
  4026. height: math.unit(1.3, "meter"),
  4027. default: true
  4028. },
  4029. {
  4030. name: "Macro",
  4031. height: math.unit(20, "meter")
  4032. }
  4033. ]
  4034. ))
  4035. characterMakers.push(() => makeCharacter(
  4036. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4037. {
  4038. front: {
  4039. height: math.unit(2.8, "meter"),
  4040. weight: math.unit(200, "kg"),
  4041. name: "Front",
  4042. image: {
  4043. source: "./media/characters/elory/front.svg",
  4044. }
  4045. }
  4046. },
  4047. [
  4048. {
  4049. name: "Normal",
  4050. height: math.unit(2.8, "meter"),
  4051. default: true
  4052. },
  4053. {
  4054. name: "Macro",
  4055. height: math.unit(38, "meter")
  4056. }
  4057. ]
  4058. ))
  4059. characterMakers.push(() => makeCharacter(
  4060. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4061. {
  4062. front: {
  4063. height: math.unit(470, "feet"),
  4064. weight: math.unit(924, "tons"),
  4065. name: "Front",
  4066. image: {
  4067. source: "./media/characters/angelpatamon/front.svg",
  4068. }
  4069. }
  4070. },
  4071. [
  4072. {
  4073. name: "Normal",
  4074. height: math.unit(470, "feet"),
  4075. default: true
  4076. },
  4077. {
  4078. name: "Deity Size I",
  4079. height: math.unit(28651.2, "km")
  4080. },
  4081. {
  4082. name: "Deity Size II",
  4083. height: math.unit(171907.2, "km")
  4084. }
  4085. ]
  4086. ))
  4087. characterMakers.push(() => makeCharacter(
  4088. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4089. {
  4090. side: {
  4091. height: math.unit(7.2, "meter"),
  4092. weight: math.unit(8.2, "tons"),
  4093. name: "Side",
  4094. image: {
  4095. source: "./media/characters/cryae/side.svg",
  4096. extra: 3500 / 1500
  4097. }
  4098. }
  4099. },
  4100. [
  4101. {
  4102. name: "Normal",
  4103. height: math.unit(7.2, "meter"),
  4104. default: true
  4105. }
  4106. ]
  4107. ))
  4108. characterMakers.push(() => makeCharacter(
  4109. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4110. {
  4111. front: {
  4112. height: math.unit(6, "feet"),
  4113. weight: math.unit(175, "lb"),
  4114. name: "Front",
  4115. image: {
  4116. source: "./media/characters/xera/front.svg",
  4117. extra: 2377 / 1972,
  4118. bottom: 75.5 / 2452
  4119. }
  4120. },
  4121. side: {
  4122. height: math.unit(6, "feet"),
  4123. weight: math.unit(175, "lb"),
  4124. name: "Side",
  4125. image: {
  4126. source: "./media/characters/xera/side.svg",
  4127. extra: 2345 / 2019,
  4128. bottom: 39.7 / 2384
  4129. }
  4130. },
  4131. back: {
  4132. height: math.unit(6, "feet"),
  4133. weight: math.unit(175, "lb"),
  4134. name: "Back",
  4135. image: {
  4136. source: "./media/characters/xera/back.svg",
  4137. extra: 2095 / 1984,
  4138. bottom: 67 / 2166
  4139. }
  4140. },
  4141. },
  4142. [
  4143. {
  4144. name: "Small",
  4145. height: math.unit(10, "feet")
  4146. },
  4147. {
  4148. name: "Macro",
  4149. height: math.unit(500, "meters"),
  4150. default: true
  4151. },
  4152. {
  4153. name: "Macro+",
  4154. height: math.unit(10, "km")
  4155. },
  4156. {
  4157. name: "Gigamacro",
  4158. height: math.unit(25000, "km")
  4159. },
  4160. {
  4161. name: "Teramacro",
  4162. height: math.unit(3e6, "km")
  4163. }
  4164. ]
  4165. ))
  4166. characterMakers.push(() => makeCharacter(
  4167. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4168. {
  4169. front: {
  4170. height: math.unit(6, "feet"),
  4171. weight: math.unit(175, "lb"),
  4172. name: "Front",
  4173. image: {
  4174. source: "./media/characters/nebula/front.svg",
  4175. extra: 2566 / 2362,
  4176. bottom: 81 / 2644
  4177. }
  4178. }
  4179. },
  4180. [
  4181. {
  4182. name: "Small",
  4183. height: math.unit(4.5, "meters")
  4184. },
  4185. {
  4186. name: "Macro",
  4187. height: math.unit(1500, "meters"),
  4188. default: true
  4189. },
  4190. {
  4191. name: "Megamacro",
  4192. height: math.unit(150, "km")
  4193. },
  4194. {
  4195. name: "Gigamacro",
  4196. height: math.unit(27000, "km")
  4197. }
  4198. ]
  4199. ))
  4200. characterMakers.push(() => makeCharacter(
  4201. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4202. {
  4203. front: {
  4204. height: math.unit(6, "feet"),
  4205. weight: math.unit(225, "lb"),
  4206. name: "Front",
  4207. image: {
  4208. source: "./media/characters/abysgar/front.svg"
  4209. }
  4210. }
  4211. },
  4212. [
  4213. {
  4214. name: "Small",
  4215. height: math.unit(4.5, "meters")
  4216. },
  4217. {
  4218. name: "Macro",
  4219. height: math.unit(1250, "meters"),
  4220. default: true
  4221. },
  4222. {
  4223. name: "Megamacro",
  4224. height: math.unit(125, "km")
  4225. },
  4226. {
  4227. name: "Gigamacro",
  4228. height: math.unit(26000, "km")
  4229. }
  4230. ]
  4231. ))
  4232. characterMakers.push(() => makeCharacter(
  4233. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4234. {
  4235. front: {
  4236. height: math.unit(6, "feet"),
  4237. weight: math.unit(180, "lb"),
  4238. name: "Front",
  4239. image: {
  4240. source: "./media/characters/yakuz/front.svg"
  4241. }
  4242. }
  4243. },
  4244. [
  4245. {
  4246. name: "Small",
  4247. height: math.unit(5, "meters")
  4248. },
  4249. {
  4250. name: "Macro",
  4251. height: math.unit(1500, "meters"),
  4252. default: true
  4253. },
  4254. {
  4255. name: "Megamacro",
  4256. height: math.unit(200, "km")
  4257. },
  4258. {
  4259. name: "Gigamacro",
  4260. height: math.unit(100000, "km")
  4261. }
  4262. ]
  4263. ))
  4264. characterMakers.push(() => makeCharacter(
  4265. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4266. {
  4267. front: {
  4268. height: math.unit(6, "feet"),
  4269. weight: math.unit(175, "lb"),
  4270. name: "Front",
  4271. image: {
  4272. source: "./media/characters/mirova/front.svg",
  4273. extra: 3334 / 3071,
  4274. bottom: 42 / 3375.6
  4275. }
  4276. }
  4277. },
  4278. [
  4279. {
  4280. name: "Small",
  4281. height: math.unit(5, "meters")
  4282. },
  4283. {
  4284. name: "Macro",
  4285. height: math.unit(900, "meters"),
  4286. default: true
  4287. },
  4288. {
  4289. name: "Megamacro",
  4290. height: math.unit(135, "km")
  4291. },
  4292. {
  4293. name: "Gigamacro",
  4294. height: math.unit(20000, "km")
  4295. }
  4296. ]
  4297. ))
  4298. characterMakers.push(() => makeCharacter(
  4299. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4300. {
  4301. side: {
  4302. height: math.unit(28.35, "feet"),
  4303. weight: math.unit(99.75, "tons"),
  4304. name: "Side",
  4305. image: {
  4306. source: "./media/characters/asana-mech/side.svg",
  4307. extra: 923 / 699,
  4308. bottom: 50 / 975
  4309. }
  4310. },
  4311. chaingun: {
  4312. height: math.unit(7, "feet"),
  4313. weight: math.unit(2400, "lb"),
  4314. name: "Chaingun",
  4315. image: {
  4316. source: "./media/characters/asana-mech/chaingun.svg"
  4317. }
  4318. },
  4319. laser: {
  4320. height: math.unit(7.12, "feet"),
  4321. weight: math.unit(2000, "lb"),
  4322. name: "Laser",
  4323. image: {
  4324. source: "./media/characters/asana-mech/laser.svg"
  4325. }
  4326. },
  4327. },
  4328. [
  4329. {
  4330. name: "Normal",
  4331. height: math.unit(28.35, "feet"),
  4332. default: true
  4333. },
  4334. {
  4335. name: "Macro",
  4336. height: math.unit(2500, "feet")
  4337. },
  4338. {
  4339. name: "Megamacro",
  4340. height: math.unit(25, "miles")
  4341. },
  4342. {
  4343. name: "Examacro",
  4344. height: math.unit(6e8, "lightyears")
  4345. },
  4346. ]
  4347. ))
  4348. characterMakers.push(() => makeCharacter(
  4349. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4350. {
  4351. front: {
  4352. height: math.unit(5, "meters"),
  4353. weight: math.unit(1000, "kg"),
  4354. name: "Front",
  4355. image: {
  4356. source: "./media/characters/asche/front.svg",
  4357. extra: 1258 / 1190,
  4358. bottom: 47 / 1305
  4359. }
  4360. },
  4361. frontUnderwear: {
  4362. height: math.unit(5, "meters"),
  4363. weight: math.unit(1000, "kg"),
  4364. name: "Front (Underwear)",
  4365. image: {
  4366. source: "./media/characters/asche/front-underwear.svg",
  4367. extra: 1258 / 1190,
  4368. bottom: 47 / 1305
  4369. }
  4370. },
  4371. frontDressed: {
  4372. height: math.unit(5, "meters"),
  4373. weight: math.unit(1000, "kg"),
  4374. name: "Front (Dressed)",
  4375. image: {
  4376. source: "./media/characters/asche/front-dressed.svg",
  4377. extra: 1258 / 1190,
  4378. bottom: 47 / 1305
  4379. }
  4380. },
  4381. frontArmor: {
  4382. height: math.unit(5, "meters"),
  4383. weight: math.unit(1000, "kg"),
  4384. name: "Front (Armored)",
  4385. image: {
  4386. source: "./media/characters/asche/front-armored.svg",
  4387. extra: 1374 / 1308,
  4388. bottom: 23 / 1397
  4389. }
  4390. },
  4391. mp724: {
  4392. height: math.unit(0.96, "meters"),
  4393. weight: math.unit(38, "kg"),
  4394. name: "H&K MP724",
  4395. image: {
  4396. source: "./media/characters/asche/h&k-mp724.svg"
  4397. }
  4398. },
  4399. side: {
  4400. height: math.unit(5, "meters"),
  4401. weight: math.unit(1000, "kg"),
  4402. name: "Side",
  4403. image: {
  4404. source: "./media/characters/asche/side.svg",
  4405. extra: 1717 / 1609,
  4406. bottom: 0.005
  4407. }
  4408. },
  4409. back: {
  4410. height: math.unit(5, "meters"),
  4411. weight: math.unit(1000, "kg"),
  4412. name: "Back",
  4413. image: {
  4414. source: "./media/characters/asche/back.svg",
  4415. extra: 1570 / 1501
  4416. }
  4417. },
  4418. },
  4419. [
  4420. {
  4421. name: "DEFCON 5",
  4422. height: math.unit(5, "meters")
  4423. },
  4424. {
  4425. name: "DEFCON 4",
  4426. height: math.unit(500, "meters"),
  4427. default: true
  4428. },
  4429. {
  4430. name: "DEFCON 3",
  4431. height: math.unit(5, "km")
  4432. },
  4433. {
  4434. name: "DEFCON 2",
  4435. height: math.unit(500, "km")
  4436. },
  4437. {
  4438. name: "DEFCON 1",
  4439. height: math.unit(500000, "km")
  4440. },
  4441. {
  4442. name: "DEFCON 0",
  4443. height: math.unit(3, "gigaparsecs")
  4444. },
  4445. ]
  4446. ))
  4447. characterMakers.push(() => makeCharacter(
  4448. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4449. {
  4450. front: {
  4451. height: math.unit(2, "meters"),
  4452. weight: math.unit(76, "kg"),
  4453. name: "Front",
  4454. image: {
  4455. source: "./media/characters/gale/front.svg"
  4456. }
  4457. },
  4458. frontAlt1: {
  4459. height: math.unit(2, "meters"),
  4460. weight: math.unit(76, "kg"),
  4461. name: "Front (Alt 1)",
  4462. image: {
  4463. source: "./media/characters/gale/front-alt-1.svg"
  4464. }
  4465. },
  4466. frontAlt2: {
  4467. height: math.unit(2, "meters"),
  4468. weight: math.unit(76, "kg"),
  4469. name: "Front (Alt 2)",
  4470. image: {
  4471. source: "./media/characters/gale/front-alt-2.svg"
  4472. }
  4473. },
  4474. },
  4475. [
  4476. {
  4477. name: "Normal",
  4478. height: math.unit(7, "feet")
  4479. },
  4480. {
  4481. name: "Macro",
  4482. height: math.unit(150, "feet"),
  4483. default: true
  4484. },
  4485. {
  4486. name: "Macro+",
  4487. height: math.unit(300, "feet")
  4488. },
  4489. ]
  4490. ))
  4491. characterMakers.push(() => makeCharacter(
  4492. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4493. {
  4494. front: {
  4495. height: math.unit(5 + 10/12, "feet"),
  4496. weight: math.unit(67, "kg"),
  4497. name: "Front",
  4498. image: {
  4499. source: "./media/characters/draylen/front.svg",
  4500. extra: 832/777,
  4501. bottom: 85/917
  4502. }
  4503. }
  4504. },
  4505. [
  4506. {
  4507. name: "Normal",
  4508. height: math.unit(5 + 10/12, "feet")
  4509. },
  4510. {
  4511. name: "Macro",
  4512. height: math.unit(150, "feet"),
  4513. default: true
  4514. }
  4515. ]
  4516. ))
  4517. characterMakers.push(() => makeCharacter(
  4518. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4519. {
  4520. front: {
  4521. height: math.unit(7 + 9 / 12, "feet"),
  4522. weight: math.unit(379, "lbs"),
  4523. name: "Front",
  4524. image: {
  4525. source: "./media/characters/chez/front.svg"
  4526. }
  4527. },
  4528. side: {
  4529. height: math.unit(7 + 9 / 12, "feet"),
  4530. weight: math.unit(379, "lbs"),
  4531. name: "Side",
  4532. image: {
  4533. source: "./media/characters/chez/side.svg"
  4534. }
  4535. }
  4536. },
  4537. [
  4538. {
  4539. name: "Normal",
  4540. height: math.unit(7 + 9 / 12, "feet"),
  4541. default: true
  4542. },
  4543. {
  4544. name: "God King",
  4545. height: math.unit(9750000, "meters")
  4546. }
  4547. ]
  4548. ))
  4549. characterMakers.push(() => makeCharacter(
  4550. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4551. {
  4552. front: {
  4553. height: math.unit(6, "feet"),
  4554. weight: math.unit(275, "lbs"),
  4555. name: "Front",
  4556. image: {
  4557. source: "./media/characters/kaylum/front.svg",
  4558. bottom: 0.01,
  4559. extra: 1166 / 1031
  4560. }
  4561. },
  4562. frontWingless: {
  4563. height: math.unit(6, "feet"),
  4564. weight: math.unit(275, "lbs"),
  4565. name: "Front (Wingless)",
  4566. image: {
  4567. source: "./media/characters/kaylum/front-wingless.svg",
  4568. bottom: 0.01,
  4569. extra: 1117 / 1031
  4570. }
  4571. }
  4572. },
  4573. [
  4574. {
  4575. name: "Normal",
  4576. height: math.unit(3.05, "meters")
  4577. },
  4578. {
  4579. name: "Master",
  4580. height: math.unit(5.5, "meters")
  4581. },
  4582. {
  4583. name: "Rampage",
  4584. height: math.unit(19, "meters")
  4585. },
  4586. {
  4587. name: "Macro Lite",
  4588. height: math.unit(37, "meters")
  4589. },
  4590. {
  4591. name: "Hyper Predator",
  4592. height: math.unit(61, "meters")
  4593. },
  4594. {
  4595. name: "Macro",
  4596. height: math.unit(138, "meters"),
  4597. default: true
  4598. }
  4599. ]
  4600. ))
  4601. characterMakers.push(() => makeCharacter(
  4602. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4603. {
  4604. front: {
  4605. height: math.unit(6, "feet"),
  4606. weight: math.unit(150, "lbs"),
  4607. name: "Front",
  4608. image: {
  4609. source: "./media/characters/geta/front.svg"
  4610. }
  4611. }
  4612. },
  4613. [
  4614. {
  4615. name: "Micro",
  4616. height: math.unit(3, "inches"),
  4617. default: true
  4618. },
  4619. {
  4620. name: "Normal",
  4621. height: math.unit(5 + 5 / 12, "feet")
  4622. }
  4623. ]
  4624. ))
  4625. characterMakers.push(() => makeCharacter(
  4626. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4627. {
  4628. front: {
  4629. height: math.unit(6, "feet"),
  4630. weight: math.unit(300, "lbs"),
  4631. name: "Front",
  4632. image: {
  4633. source: "./media/characters/tyrnn/front.svg"
  4634. }
  4635. }
  4636. },
  4637. [
  4638. {
  4639. name: "Main Height",
  4640. height: math.unit(355, "feet"),
  4641. default: true
  4642. },
  4643. {
  4644. name: "Fave. Height",
  4645. height: math.unit(2400, "feet")
  4646. }
  4647. ]
  4648. ))
  4649. characterMakers.push(() => makeCharacter(
  4650. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4651. {
  4652. front: {
  4653. height: math.unit(6, "feet"),
  4654. weight: math.unit(300, "lbs"),
  4655. name: "Front",
  4656. image: {
  4657. source: "./media/characters/appledectomy/front.svg"
  4658. }
  4659. }
  4660. },
  4661. [
  4662. {
  4663. name: "Macro",
  4664. height: math.unit(2500, "feet")
  4665. },
  4666. {
  4667. name: "Megamacro",
  4668. height: math.unit(50, "miles"),
  4669. default: true
  4670. },
  4671. {
  4672. name: "Gigamacro",
  4673. height: math.unit(5000, "miles")
  4674. },
  4675. {
  4676. name: "Teramacro",
  4677. height: math.unit(250000, "miles")
  4678. },
  4679. ]
  4680. ))
  4681. characterMakers.push(() => makeCharacter(
  4682. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4683. {
  4684. front: {
  4685. height: math.unit(6, "feet"),
  4686. weight: math.unit(200, "lbs"),
  4687. name: "Front",
  4688. image: {
  4689. source: "./media/characters/vulpes/front.svg",
  4690. extra: 573 / 543,
  4691. bottom: 0.033
  4692. }
  4693. },
  4694. side: {
  4695. height: math.unit(6, "feet"),
  4696. weight: math.unit(200, "lbs"),
  4697. name: "Side",
  4698. image: {
  4699. source: "./media/characters/vulpes/side.svg",
  4700. extra: 577 / 549,
  4701. bottom: 11 / 588
  4702. }
  4703. },
  4704. back: {
  4705. height: math.unit(6, "feet"),
  4706. weight: math.unit(200, "lbs"),
  4707. name: "Back",
  4708. image: {
  4709. source: "./media/characters/vulpes/back.svg",
  4710. extra: 573 / 549,
  4711. bottom: 20 / 593
  4712. }
  4713. },
  4714. feet: {
  4715. height: math.unit(1.276, "feet"),
  4716. name: "Feet",
  4717. image: {
  4718. source: "./media/characters/vulpes/feet.svg"
  4719. }
  4720. },
  4721. maw: {
  4722. height: math.unit(1.18, "feet"),
  4723. name: "Maw",
  4724. image: {
  4725. source: "./media/characters/vulpes/maw.svg"
  4726. }
  4727. },
  4728. },
  4729. [
  4730. {
  4731. name: "Micro",
  4732. height: math.unit(2, "inches")
  4733. },
  4734. {
  4735. name: "Normal",
  4736. height: math.unit(6.3, "feet")
  4737. },
  4738. {
  4739. name: "Macro",
  4740. height: math.unit(850, "feet")
  4741. },
  4742. {
  4743. name: "Megamacro",
  4744. height: math.unit(7500, "feet"),
  4745. default: true
  4746. },
  4747. {
  4748. name: "Gigamacro",
  4749. height: math.unit(570000, "miles")
  4750. }
  4751. ]
  4752. ))
  4753. characterMakers.push(() => makeCharacter(
  4754. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4755. {
  4756. front: {
  4757. height: math.unit(6, "feet"),
  4758. weight: math.unit(210, "lbs"),
  4759. name: "Front",
  4760. image: {
  4761. source: "./media/characters/rain-fallen/front.svg"
  4762. }
  4763. },
  4764. side: {
  4765. height: math.unit(6, "feet"),
  4766. weight: math.unit(210, "lbs"),
  4767. name: "Side",
  4768. image: {
  4769. source: "./media/characters/rain-fallen/side.svg"
  4770. }
  4771. },
  4772. back: {
  4773. height: math.unit(6, "feet"),
  4774. weight: math.unit(210, "lbs"),
  4775. name: "Back",
  4776. image: {
  4777. source: "./media/characters/rain-fallen/back.svg"
  4778. }
  4779. },
  4780. feral: {
  4781. height: math.unit(9, "feet"),
  4782. weight: math.unit(700, "lbs"),
  4783. name: "Feral",
  4784. image: {
  4785. source: "./media/characters/rain-fallen/feral.svg"
  4786. }
  4787. },
  4788. },
  4789. [
  4790. {
  4791. name: "Meddling with Mortals",
  4792. height: math.unit(8 + 8/12, "feet")
  4793. },
  4794. {
  4795. name: "Normal",
  4796. height: math.unit(5, "meter")
  4797. },
  4798. {
  4799. name: "Macro",
  4800. height: math.unit(150, "meter"),
  4801. default: true
  4802. },
  4803. {
  4804. name: "Megamacro",
  4805. height: math.unit(278e6, "meter")
  4806. },
  4807. {
  4808. name: "Gigamacro",
  4809. height: math.unit(2e9, "meter")
  4810. },
  4811. {
  4812. name: "Teramacro",
  4813. height: math.unit(8e12, "meter")
  4814. },
  4815. {
  4816. name: "Devourer",
  4817. height: math.unit(14, "zettameters")
  4818. },
  4819. {
  4820. name: "Scarlet King",
  4821. height: math.unit(18, "yottameters")
  4822. },
  4823. {
  4824. name: "Void",
  4825. height: math.unit(1e88, "yottameters")
  4826. }
  4827. ]
  4828. ))
  4829. characterMakers.push(() => makeCharacter(
  4830. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4831. {
  4832. standing: {
  4833. height: math.unit(6, "feet"),
  4834. weight: math.unit(180, "lbs"),
  4835. name: "Standing",
  4836. image: {
  4837. source: "./media/characters/zaakira/standing.svg",
  4838. extra: 1599/1504,
  4839. bottom: 39/1638
  4840. }
  4841. },
  4842. laying: {
  4843. height: math.unit(3, "feet"),
  4844. weight: math.unit(180, "lbs"),
  4845. name: "Laying",
  4846. image: {
  4847. source: "./media/characters/zaakira/laying.svg"
  4848. }
  4849. },
  4850. },
  4851. [
  4852. {
  4853. name: "Normal",
  4854. height: math.unit(12, "feet")
  4855. },
  4856. {
  4857. name: "Macro",
  4858. height: math.unit(279, "feet"),
  4859. default: true
  4860. }
  4861. ]
  4862. ))
  4863. characterMakers.push(() => makeCharacter(
  4864. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4865. {
  4866. femSfw: {
  4867. height: math.unit(8, "feet"),
  4868. weight: math.unit(350, "lb"),
  4869. name: "Fem",
  4870. image: {
  4871. source: "./media/characters/sigvald/fem-sfw.svg",
  4872. extra: 182 / 164,
  4873. bottom: 8.7 / 190.5
  4874. }
  4875. },
  4876. femNsfw: {
  4877. height: math.unit(8, "feet"),
  4878. weight: math.unit(350, "lb"),
  4879. name: "Fem (NSFW)",
  4880. image: {
  4881. source: "./media/characters/sigvald/fem-nsfw.svg",
  4882. extra: 182 / 164,
  4883. bottom: 8.7 / 190.5
  4884. }
  4885. },
  4886. maleNsfw: {
  4887. height: math.unit(8, "feet"),
  4888. weight: math.unit(350, "lb"),
  4889. name: "Male (NSFW)",
  4890. image: {
  4891. source: "./media/characters/sigvald/male-nsfw.svg",
  4892. extra: 182 / 164,
  4893. bottom: 8.7 / 190.5
  4894. }
  4895. },
  4896. hermNsfw: {
  4897. height: math.unit(8, "feet"),
  4898. weight: math.unit(350, "lb"),
  4899. name: "Herm (NSFW)",
  4900. image: {
  4901. source: "./media/characters/sigvald/herm-nsfw.svg",
  4902. extra: 182 / 164,
  4903. bottom: 8.7 / 190.5
  4904. }
  4905. },
  4906. dick: {
  4907. height: math.unit(2.36, "feet"),
  4908. name: "Dick",
  4909. image: {
  4910. source: "./media/characters/sigvald/dick.svg"
  4911. }
  4912. },
  4913. eye: {
  4914. height: math.unit(0.31, "feet"),
  4915. name: "Eye",
  4916. image: {
  4917. source: "./media/characters/sigvald/eye.svg"
  4918. }
  4919. },
  4920. mouth: {
  4921. height: math.unit(0.92, "feet"),
  4922. name: "Mouth",
  4923. image: {
  4924. source: "./media/characters/sigvald/mouth.svg"
  4925. }
  4926. },
  4927. paws: {
  4928. height: math.unit(2.2, "feet"),
  4929. name: "Paws",
  4930. image: {
  4931. source: "./media/characters/sigvald/paws.svg"
  4932. }
  4933. }
  4934. },
  4935. [
  4936. {
  4937. name: "Normal",
  4938. height: math.unit(8, "feet")
  4939. },
  4940. {
  4941. name: "Large",
  4942. height: math.unit(12, "feet")
  4943. },
  4944. {
  4945. name: "Larger",
  4946. height: math.unit(20, "feet")
  4947. },
  4948. {
  4949. name: "Macro",
  4950. height: math.unit(150, "feet")
  4951. },
  4952. {
  4953. name: "Macro+",
  4954. height: math.unit(200, "feet"),
  4955. default: true
  4956. },
  4957. ]
  4958. ))
  4959. characterMakers.push(() => makeCharacter(
  4960. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4961. {
  4962. side: {
  4963. height: math.unit(12, "feet"),
  4964. weight: math.unit(2000, "kg"),
  4965. name: "Side",
  4966. image: {
  4967. source: "./media/characters/scott/side.svg",
  4968. extra: 754 / 724,
  4969. bottom: 0.069
  4970. }
  4971. },
  4972. upright: {
  4973. height: math.unit(12, "feet"),
  4974. weight: math.unit(2000, "kg"),
  4975. name: "Upright",
  4976. image: {
  4977. source: "./media/characters/scott/upright.svg",
  4978. extra: 3881 / 3722,
  4979. bottom: 0.05
  4980. }
  4981. },
  4982. },
  4983. [
  4984. {
  4985. name: "Normal",
  4986. height: math.unit(12, "feet"),
  4987. default: true
  4988. },
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4993. {
  4994. side: {
  4995. height: math.unit(8, "meters"),
  4996. weight: math.unit(84755, "lbs"),
  4997. name: "Side",
  4998. image: {
  4999. source: "./media/characters/tobias/side.svg",
  5000. extra: 1474 / 1096,
  5001. bottom: 38.9 / 1513.1235
  5002. }
  5003. },
  5004. },
  5005. [
  5006. {
  5007. name: "Normal",
  5008. height: math.unit(8, "meters"),
  5009. default: true
  5010. },
  5011. ]
  5012. ))
  5013. characterMakers.push(() => makeCharacter(
  5014. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5015. {
  5016. front: {
  5017. height: math.unit(5.5, "feet"),
  5018. weight: math.unit(400, "lbs"),
  5019. name: "Front",
  5020. image: {
  5021. source: "./media/characters/kieran/front.svg",
  5022. extra: 2694 / 2364,
  5023. bottom: 217 / 2908
  5024. }
  5025. },
  5026. side: {
  5027. height: math.unit(5.5, "feet"),
  5028. weight: math.unit(400, "lbs"),
  5029. name: "Side",
  5030. image: {
  5031. source: "./media/characters/kieran/side.svg",
  5032. extra: 875 / 777,
  5033. bottom: 84.6 / 959
  5034. }
  5035. },
  5036. },
  5037. [
  5038. {
  5039. name: "Normal",
  5040. height: math.unit(5.5, "feet"),
  5041. default: true
  5042. },
  5043. ]
  5044. ))
  5045. characterMakers.push(() => makeCharacter(
  5046. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5047. {
  5048. side: {
  5049. height: math.unit(2, "meters"),
  5050. weight: math.unit(70, "kg"),
  5051. name: "Side",
  5052. image: {
  5053. source: "./media/characters/sanya/side.svg",
  5054. bottom: 0.02,
  5055. extra: 1.02
  5056. }
  5057. },
  5058. },
  5059. [
  5060. {
  5061. name: "Small",
  5062. height: math.unit(2, "meters")
  5063. },
  5064. {
  5065. name: "Normal",
  5066. height: math.unit(3, "meters")
  5067. },
  5068. {
  5069. name: "Macro",
  5070. height: math.unit(16, "meters"),
  5071. default: true
  5072. },
  5073. ]
  5074. ))
  5075. characterMakers.push(() => makeCharacter(
  5076. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5077. {
  5078. front: {
  5079. height: math.unit(2, "meters"),
  5080. weight: math.unit(120, "kg"),
  5081. name: "Front",
  5082. image: {
  5083. source: "./media/characters/miranda/front.svg",
  5084. extra: 195 / 185,
  5085. bottom: 10.9 / 206.5
  5086. }
  5087. },
  5088. back: {
  5089. height: math.unit(2, "meters"),
  5090. weight: math.unit(120, "kg"),
  5091. name: "Back",
  5092. image: {
  5093. source: "./media/characters/miranda/back.svg",
  5094. extra: 201 / 193,
  5095. bottom: 2.3 / 203.7
  5096. }
  5097. },
  5098. },
  5099. [
  5100. {
  5101. name: "Normal",
  5102. height: math.unit(10, "feet"),
  5103. default: true
  5104. }
  5105. ]
  5106. ))
  5107. characterMakers.push(() => makeCharacter(
  5108. { name: "James", species: ["deer"], tags: ["anthro"] },
  5109. {
  5110. side: {
  5111. height: math.unit(2, "meters"),
  5112. weight: math.unit(100, "kg"),
  5113. name: "Front",
  5114. image: {
  5115. source: "./media/characters/james/front.svg",
  5116. extra: 10 / 8.5
  5117. }
  5118. },
  5119. },
  5120. [
  5121. {
  5122. name: "Normal",
  5123. height: math.unit(8.5, "feet"),
  5124. default: true
  5125. }
  5126. ]
  5127. ))
  5128. characterMakers.push(() => makeCharacter(
  5129. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5130. {
  5131. side: {
  5132. height: math.unit(9.5, "feet"),
  5133. weight: math.unit(2500, "lbs"),
  5134. name: "Side",
  5135. image: {
  5136. source: "./media/characters/heather/side.svg"
  5137. }
  5138. },
  5139. },
  5140. [
  5141. {
  5142. name: "Normal",
  5143. height: math.unit(9.5, "feet"),
  5144. default: true
  5145. }
  5146. ]
  5147. ))
  5148. characterMakers.push(() => makeCharacter(
  5149. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5150. {
  5151. side: {
  5152. height: math.unit(6.5, "feet"),
  5153. weight: math.unit(400, "lbs"),
  5154. name: "Side",
  5155. image: {
  5156. source: "./media/characters/lukas/side.svg",
  5157. extra: 7.25 / 6.5
  5158. }
  5159. },
  5160. },
  5161. [
  5162. {
  5163. name: "Normal",
  5164. height: math.unit(6.5, "feet"),
  5165. default: true
  5166. }
  5167. ]
  5168. ))
  5169. characterMakers.push(() => makeCharacter(
  5170. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5171. {
  5172. side: {
  5173. height: math.unit(5, "feet"),
  5174. weight: math.unit(3000, "lbs"),
  5175. name: "Side",
  5176. image: {
  5177. source: "./media/characters/louise/side.svg"
  5178. }
  5179. },
  5180. },
  5181. [
  5182. {
  5183. name: "Normal",
  5184. height: math.unit(5, "feet"),
  5185. default: true
  5186. }
  5187. ]
  5188. ))
  5189. characterMakers.push(() => makeCharacter(
  5190. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5191. {
  5192. side: {
  5193. height: math.unit(6, "feet"),
  5194. weight: math.unit(150, "lbs"),
  5195. name: "Side",
  5196. image: {
  5197. source: "./media/characters/ramona/side.svg"
  5198. }
  5199. },
  5200. },
  5201. [
  5202. {
  5203. name: "Normal",
  5204. height: math.unit(5.3, "meters"),
  5205. default: true
  5206. },
  5207. {
  5208. name: "Macro",
  5209. height: math.unit(20, "stories")
  5210. },
  5211. {
  5212. name: "Macro+",
  5213. height: math.unit(50, "stories")
  5214. },
  5215. ]
  5216. ))
  5217. characterMakers.push(() => makeCharacter(
  5218. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5219. {
  5220. standing: {
  5221. height: math.unit(5.75, "feet"),
  5222. weight: math.unit(160, "lbs"),
  5223. name: "Standing",
  5224. image: {
  5225. source: "./media/characters/deerpuff/standing.svg",
  5226. extra: 682 / 624
  5227. }
  5228. },
  5229. sitting: {
  5230. height: math.unit(5.75 / 1.79, "feet"),
  5231. weight: math.unit(160, "lbs"),
  5232. name: "Sitting",
  5233. image: {
  5234. source: "./media/characters/deerpuff/sitting.svg",
  5235. bottom: 44 / 400,
  5236. extra: 1
  5237. }
  5238. },
  5239. taurLaying: {
  5240. height: math.unit(6, "feet"),
  5241. weight: math.unit(400, "lbs"),
  5242. name: "Taur (Laying)",
  5243. image: {
  5244. source: "./media/characters/deerpuff/taur-laying.svg"
  5245. }
  5246. },
  5247. },
  5248. [
  5249. {
  5250. name: "Puffball",
  5251. height: math.unit(6, "inches")
  5252. },
  5253. {
  5254. name: "Normalpuff",
  5255. height: math.unit(5.75, "feet")
  5256. },
  5257. {
  5258. name: "Macropuff",
  5259. height: math.unit(1500, "feet"),
  5260. default: true
  5261. },
  5262. {
  5263. name: "Megapuff",
  5264. height: math.unit(500, "miles")
  5265. },
  5266. {
  5267. name: "Gigapuff",
  5268. height: math.unit(250000, "miles")
  5269. },
  5270. {
  5271. name: "Omegapuff",
  5272. height: math.unit(1000, "lightyears")
  5273. },
  5274. ]
  5275. ))
  5276. characterMakers.push(() => makeCharacter(
  5277. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5278. {
  5279. stomping: {
  5280. height: math.unit(6, "feet"),
  5281. weight: math.unit(170, "lbs"),
  5282. name: "Stomping",
  5283. image: {
  5284. source: "./media/characters/vivian/stomping.svg"
  5285. }
  5286. },
  5287. sitting: {
  5288. height: math.unit(6 / 1.75, "feet"),
  5289. weight: math.unit(170, "lbs"),
  5290. name: "Sitting",
  5291. image: {
  5292. source: "./media/characters/vivian/sitting.svg",
  5293. bottom: 1 / 6.4,
  5294. extra: 1,
  5295. }
  5296. },
  5297. },
  5298. [
  5299. {
  5300. name: "Normal",
  5301. height: math.unit(7, "feet"),
  5302. default: true
  5303. },
  5304. {
  5305. name: "Macro",
  5306. height: math.unit(10, "stories")
  5307. },
  5308. {
  5309. name: "Macro+",
  5310. height: math.unit(30, "stories")
  5311. },
  5312. {
  5313. name: "Megamacro",
  5314. height: math.unit(10, "miles")
  5315. },
  5316. {
  5317. name: "Megamacro+",
  5318. height: math.unit(2750000, "meters")
  5319. },
  5320. ]
  5321. ))
  5322. characterMakers.push(() => makeCharacter(
  5323. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5324. {
  5325. front: {
  5326. height: math.unit(6, "feet"),
  5327. weight: math.unit(160, "lbs"),
  5328. name: "Front",
  5329. image: {
  5330. source: "./media/characters/prince/front.svg",
  5331. extra: 3400 / 3000
  5332. }
  5333. },
  5334. jumping: {
  5335. height: math.unit(6, "feet"),
  5336. weight: math.unit(160, "lbs"),
  5337. name: "Jumping",
  5338. image: {
  5339. source: "./media/characters/prince/jump.svg",
  5340. extra: 2555 / 2134
  5341. }
  5342. },
  5343. },
  5344. [
  5345. {
  5346. name: "Normal",
  5347. height: math.unit(7.75, "feet"),
  5348. default: true
  5349. },
  5350. {
  5351. name: "Not cute",
  5352. height: math.unit(17, "feet")
  5353. },
  5354. {
  5355. name: "I said NOT",
  5356. height: math.unit(91, "feet")
  5357. },
  5358. {
  5359. name: "Please stop",
  5360. height: math.unit(560, "feet")
  5361. },
  5362. {
  5363. name: "What have you done",
  5364. height: math.unit(2200, "feet")
  5365. },
  5366. {
  5367. name: "Deer God",
  5368. height: math.unit(3.6, "miles")
  5369. },
  5370. ]
  5371. ))
  5372. characterMakers.push(() => makeCharacter(
  5373. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5374. {
  5375. standing: {
  5376. height: math.unit(6, "feet"),
  5377. weight: math.unit(300, "lbs"),
  5378. name: "Standing",
  5379. image: {
  5380. source: "./media/characters/psymon/standing.svg",
  5381. extra: 1888 / 1810,
  5382. bottom: 0.05
  5383. }
  5384. },
  5385. slithering: {
  5386. height: math.unit(6, "feet"),
  5387. weight: math.unit(300, "lbs"),
  5388. name: "Slithering",
  5389. image: {
  5390. source: "./media/characters/psymon/slithering.svg",
  5391. extra: 1330 / 1224
  5392. }
  5393. },
  5394. slitheringAlt: {
  5395. height: math.unit(6, "feet"),
  5396. weight: math.unit(300, "lbs"),
  5397. name: "Slithering (Alt)",
  5398. image: {
  5399. source: "./media/characters/psymon/slithering-alt.svg",
  5400. extra: 1330 / 1224
  5401. }
  5402. },
  5403. },
  5404. [
  5405. {
  5406. name: "Normal",
  5407. height: math.unit(11.25, "feet"),
  5408. default: true
  5409. },
  5410. {
  5411. name: "Large",
  5412. height: math.unit(27, "feet")
  5413. },
  5414. {
  5415. name: "Giant",
  5416. height: math.unit(87, "feet")
  5417. },
  5418. {
  5419. name: "Macro",
  5420. height: math.unit(365, "feet")
  5421. },
  5422. {
  5423. name: "Megamacro",
  5424. height: math.unit(3, "miles")
  5425. },
  5426. {
  5427. name: "World Serpent",
  5428. height: math.unit(8000, "miles")
  5429. },
  5430. ]
  5431. ))
  5432. characterMakers.push(() => makeCharacter(
  5433. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5434. {
  5435. front: {
  5436. height: math.unit(6, "feet"),
  5437. weight: math.unit(180, "lbs"),
  5438. name: "Front",
  5439. image: {
  5440. source: "./media/characters/daimos/front.svg",
  5441. extra: 4160 / 3897,
  5442. bottom: 0.021
  5443. }
  5444. }
  5445. },
  5446. [
  5447. {
  5448. name: "Normal",
  5449. height: math.unit(8, "feet"),
  5450. default: true
  5451. },
  5452. {
  5453. name: "Big Dog",
  5454. height: math.unit(22, "feet")
  5455. },
  5456. {
  5457. name: "Macro",
  5458. height: math.unit(127, "feet")
  5459. },
  5460. {
  5461. name: "Megamacro",
  5462. height: math.unit(3600, "feet")
  5463. },
  5464. ]
  5465. ))
  5466. characterMakers.push(() => makeCharacter(
  5467. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5468. {
  5469. side: {
  5470. height: math.unit(6, "feet"),
  5471. weight: math.unit(180, "lbs"),
  5472. name: "Side",
  5473. image: {
  5474. source: "./media/characters/blake/side.svg",
  5475. extra: 1212 / 1120,
  5476. bottom: 0.05
  5477. }
  5478. },
  5479. crouched: {
  5480. height: math.unit(6 * 0.57, "feet"),
  5481. weight: math.unit(180, "lbs"),
  5482. name: "Crouched",
  5483. image: {
  5484. source: "./media/characters/blake/crouched.svg",
  5485. extra: 840 / 587,
  5486. bottom: 0.04
  5487. }
  5488. },
  5489. bent: {
  5490. height: math.unit(6 * 0.75, "feet"),
  5491. weight: math.unit(180, "lbs"),
  5492. name: "Bent",
  5493. image: {
  5494. source: "./media/characters/blake/bent.svg",
  5495. extra: 592 / 544,
  5496. bottom: 0.035
  5497. }
  5498. },
  5499. },
  5500. [
  5501. {
  5502. name: "Normal",
  5503. height: math.unit(8 + 1 / 6, "feet"),
  5504. default: true
  5505. },
  5506. {
  5507. name: "Big Backside",
  5508. height: math.unit(37, "feet")
  5509. },
  5510. {
  5511. name: "Subway Shredder",
  5512. height: math.unit(72, "feet")
  5513. },
  5514. {
  5515. name: "City Carver",
  5516. height: math.unit(1675, "feet")
  5517. },
  5518. {
  5519. name: "Tectonic Tweaker",
  5520. height: math.unit(2300, "miles")
  5521. },
  5522. ]
  5523. ))
  5524. characterMakers.push(() => makeCharacter(
  5525. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5526. {
  5527. front: {
  5528. height: math.unit(6, "feet"),
  5529. weight: math.unit(180, "lbs"),
  5530. name: "Front",
  5531. image: {
  5532. source: "./media/characters/guisetto/front.svg",
  5533. extra: 856 / 817,
  5534. bottom: 0.06
  5535. }
  5536. },
  5537. airborne: {
  5538. height: math.unit(6, "feet"),
  5539. weight: math.unit(180, "lbs"),
  5540. name: "Airborne",
  5541. image: {
  5542. source: "./media/characters/guisetto/airborne.svg",
  5543. extra: 584 / 525
  5544. }
  5545. },
  5546. },
  5547. [
  5548. {
  5549. name: "Normal",
  5550. height: math.unit(10 + 11 / 12, "feet"),
  5551. default: true
  5552. },
  5553. {
  5554. name: "Large",
  5555. height: math.unit(35, "feet")
  5556. },
  5557. {
  5558. name: "Macro",
  5559. height: math.unit(475, "feet")
  5560. },
  5561. ]
  5562. ))
  5563. characterMakers.push(() => makeCharacter(
  5564. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5565. {
  5566. front: {
  5567. height: math.unit(6, "feet"),
  5568. weight: math.unit(180, "lbs"),
  5569. name: "Front",
  5570. image: {
  5571. source: "./media/characters/luxor/front.svg",
  5572. extra: 2940 / 2152
  5573. }
  5574. },
  5575. back: {
  5576. height: math.unit(6, "feet"),
  5577. weight: math.unit(180, "lbs"),
  5578. name: "Back",
  5579. image: {
  5580. source: "./media/characters/luxor/back.svg",
  5581. extra: 1083 / 960
  5582. }
  5583. },
  5584. },
  5585. [
  5586. {
  5587. name: "Normal",
  5588. height: math.unit(5 + 5 / 6, "feet"),
  5589. default: true
  5590. },
  5591. {
  5592. name: "Lamp",
  5593. height: math.unit(50, "feet")
  5594. },
  5595. {
  5596. name: "Lämp",
  5597. height: math.unit(300, "feet")
  5598. },
  5599. {
  5600. name: "The sun is a lamp",
  5601. height: math.unit(250000, "miles")
  5602. },
  5603. ]
  5604. ))
  5605. characterMakers.push(() => makeCharacter(
  5606. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5607. {
  5608. front: {
  5609. height: math.unit(6, "feet"),
  5610. weight: math.unit(50, "lbs"),
  5611. name: "Front",
  5612. image: {
  5613. source: "./media/characters/huoyan/front.svg"
  5614. }
  5615. },
  5616. side: {
  5617. height: math.unit(6, "feet"),
  5618. weight: math.unit(180, "lbs"),
  5619. name: "Side",
  5620. image: {
  5621. source: "./media/characters/huoyan/side.svg"
  5622. }
  5623. },
  5624. },
  5625. [
  5626. {
  5627. name: "Chef",
  5628. height: math.unit(9, "feet")
  5629. },
  5630. {
  5631. name: "Normal",
  5632. height: math.unit(65, "feet"),
  5633. default: true
  5634. },
  5635. {
  5636. name: "Macro",
  5637. height: math.unit(780, "feet")
  5638. },
  5639. {
  5640. name: "Flaming Mountain",
  5641. height: math.unit(4.8, "miles")
  5642. },
  5643. {
  5644. name: "Celestial",
  5645. height: math.unit(765000, "miles")
  5646. },
  5647. ]
  5648. ))
  5649. characterMakers.push(() => makeCharacter(
  5650. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5651. {
  5652. front: {
  5653. height: math.unit(5 + 3 / 4, "feet"),
  5654. weight: math.unit(120, "lbs"),
  5655. name: "Front",
  5656. image: {
  5657. source: "./media/characters/tails/front.svg"
  5658. }
  5659. }
  5660. },
  5661. [
  5662. {
  5663. name: "Normal",
  5664. height: math.unit(5 + 3 / 4, "feet"),
  5665. default: true
  5666. }
  5667. ]
  5668. ))
  5669. characterMakers.push(() => makeCharacter(
  5670. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5671. {
  5672. front: {
  5673. height: math.unit(4, "feet"),
  5674. weight: math.unit(50, "lbs"),
  5675. name: "Front",
  5676. image: {
  5677. source: "./media/characters/rainy/front.svg"
  5678. }
  5679. }
  5680. },
  5681. [
  5682. {
  5683. name: "Macro",
  5684. height: math.unit(800, "feet"),
  5685. default: true
  5686. }
  5687. ]
  5688. ))
  5689. characterMakers.push(() => makeCharacter(
  5690. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5691. {
  5692. front: {
  5693. height: math.unit(6, "feet"),
  5694. weight: math.unit(150, "lbs"),
  5695. name: "Front",
  5696. image: {
  5697. source: "./media/characters/rainier/front.svg"
  5698. }
  5699. }
  5700. },
  5701. [
  5702. {
  5703. name: "Micro",
  5704. height: math.unit(2, "mm"),
  5705. default: true
  5706. }
  5707. ]
  5708. ))
  5709. characterMakers.push(() => makeCharacter(
  5710. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5711. {
  5712. front: {
  5713. height: math.unit(8 + 4/12, "feet"),
  5714. name: "Front",
  5715. image: {
  5716. source: "./media/characters/andy-renard/front.svg",
  5717. extra: 1839/1726,
  5718. bottom: 134/1973
  5719. }
  5720. },
  5721. back: {
  5722. height: math.unit(8 + 4/12, "feet"),
  5723. name: "Back",
  5724. image: {
  5725. source: "./media/characters/andy-renard/back.svg",
  5726. extra: 1838/1710,
  5727. bottom: 105/1943
  5728. }
  5729. },
  5730. },
  5731. [
  5732. {
  5733. name: "Tall",
  5734. height: math.unit(8 + 4/12, "feet")
  5735. },
  5736. {
  5737. name: "Mini Macro",
  5738. height: math.unit(15, "feet"),
  5739. default: true
  5740. },
  5741. {
  5742. name: "Macro",
  5743. height: math.unit(100, "feet")
  5744. },
  5745. {
  5746. name: "Mega Macro",
  5747. height: math.unit(1000, "feet")
  5748. },
  5749. {
  5750. name: "Giga Macro",
  5751. height: math.unit(10, "miles")
  5752. },
  5753. {
  5754. name: "God Macro",
  5755. height: math.unit(1, "multiverse")
  5756. },
  5757. ]
  5758. ))
  5759. characterMakers.push(() => makeCharacter(
  5760. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5761. {
  5762. front: {
  5763. height: math.unit(6, "feet"),
  5764. weight: math.unit(210, "lbs"),
  5765. name: "Front",
  5766. image: {
  5767. source: "./media/characters/cimmaron/front-sfw.svg",
  5768. extra: 701 / 676,
  5769. bottom: 0.046
  5770. }
  5771. },
  5772. back: {
  5773. height: math.unit(6, "feet"),
  5774. weight: math.unit(210, "lbs"),
  5775. name: "Back",
  5776. image: {
  5777. source: "./media/characters/cimmaron/back-sfw.svg",
  5778. extra: 701 / 676,
  5779. bottom: 0.046
  5780. }
  5781. },
  5782. frontNsfw: {
  5783. height: math.unit(6, "feet"),
  5784. weight: math.unit(210, "lbs"),
  5785. name: "Front (NSFW)",
  5786. image: {
  5787. source: "./media/characters/cimmaron/front-nsfw.svg",
  5788. extra: 701 / 676,
  5789. bottom: 0.046
  5790. }
  5791. },
  5792. backNsfw: {
  5793. height: math.unit(6, "feet"),
  5794. weight: math.unit(210, "lbs"),
  5795. name: "Back (NSFW)",
  5796. image: {
  5797. source: "./media/characters/cimmaron/back-nsfw.svg",
  5798. extra: 701 / 676,
  5799. bottom: 0.046
  5800. }
  5801. },
  5802. dick: {
  5803. height: math.unit(1.714, "feet"),
  5804. name: "Dick",
  5805. image: {
  5806. source: "./media/characters/cimmaron/dick.svg"
  5807. }
  5808. },
  5809. },
  5810. [
  5811. {
  5812. name: "Normal",
  5813. height: math.unit(6, "feet"),
  5814. default: true
  5815. },
  5816. {
  5817. name: "Macro Mayor",
  5818. height: math.unit(350, "meters")
  5819. },
  5820. ]
  5821. ))
  5822. characterMakers.push(() => makeCharacter(
  5823. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5824. {
  5825. front: {
  5826. height: math.unit(6, "feet"),
  5827. weight: math.unit(200, "lbs"),
  5828. name: "Front",
  5829. image: {
  5830. source: "./media/characters/akari/front.svg",
  5831. extra: 962 / 901,
  5832. bottom: 0.04
  5833. }
  5834. }
  5835. },
  5836. [
  5837. {
  5838. name: "Micro",
  5839. height: math.unit(5, "inches"),
  5840. default: true
  5841. },
  5842. {
  5843. name: "Normal",
  5844. height: math.unit(7, "feet")
  5845. },
  5846. ]
  5847. ))
  5848. characterMakers.push(() => makeCharacter(
  5849. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5850. {
  5851. front: {
  5852. height: math.unit(6, "feet"),
  5853. weight: math.unit(140, "lbs"),
  5854. name: "Front",
  5855. image: {
  5856. source: "./media/characters/cynosura/front.svg",
  5857. extra: 896 / 847
  5858. }
  5859. },
  5860. back: {
  5861. height: math.unit(6, "feet"),
  5862. weight: math.unit(140, "lbs"),
  5863. name: "Back",
  5864. image: {
  5865. source: "./media/characters/cynosura/back.svg",
  5866. extra: 1365 / 1250
  5867. }
  5868. },
  5869. },
  5870. [
  5871. {
  5872. name: "Micro",
  5873. height: math.unit(4, "inches")
  5874. },
  5875. {
  5876. name: "Normal",
  5877. height: math.unit(5.75, "feet"),
  5878. default: true
  5879. },
  5880. {
  5881. name: "Tall",
  5882. height: math.unit(10, "feet")
  5883. },
  5884. {
  5885. name: "Big",
  5886. height: math.unit(20, "feet")
  5887. },
  5888. {
  5889. name: "Macro",
  5890. height: math.unit(50, "feet")
  5891. },
  5892. ]
  5893. ))
  5894. characterMakers.push(() => makeCharacter(
  5895. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5896. {
  5897. front: {
  5898. height: math.unit(13 + 2/12, "feet"),
  5899. weight: math.unit(800, "kg"),
  5900. name: "Front",
  5901. image: {
  5902. source: "./media/characters/gin/front.svg",
  5903. extra: 1312/1191,
  5904. bottom: 45/1357
  5905. }
  5906. },
  5907. mouth: {
  5908. height: math.unit(2.39 * 1.8, "feet"),
  5909. name: "Mouth",
  5910. image: {
  5911. source: "./media/characters/gin/mouth.svg"
  5912. }
  5913. },
  5914. hand: {
  5915. height: math.unit(1.57 * 2.19, "feet"),
  5916. name: "Hand",
  5917. image: {
  5918. source: "./media/characters/gin/hand.svg"
  5919. }
  5920. },
  5921. foot: {
  5922. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5923. name: "Foot",
  5924. image: {
  5925. source: "./media/characters/gin/foot.svg"
  5926. }
  5927. },
  5928. sole: {
  5929. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5930. name: "Sole",
  5931. image: {
  5932. source: "./media/characters/gin/sole.svg"
  5933. }
  5934. },
  5935. },
  5936. [
  5937. {
  5938. name: "Very Small",
  5939. height: math.unit(13 + 2 / 12, "feet")
  5940. },
  5941. {
  5942. name: "Micro",
  5943. height: math.unit(600, "miles")
  5944. },
  5945. {
  5946. name: "Regular",
  5947. height: math.unit(20, "earths"),
  5948. default: true
  5949. },
  5950. {
  5951. name: "Macro",
  5952. height: math.unit(2.2, "solarradii")
  5953. },
  5954. {
  5955. name: "Teramacro",
  5956. height: math.unit(1.2, "galaxies")
  5957. },
  5958. {
  5959. name: "Omegamacro",
  5960. height: math.unit(200, "universes")
  5961. },
  5962. ]
  5963. ))
  5964. characterMakers.push(() => makeCharacter(
  5965. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5966. {
  5967. front: {
  5968. height: math.unit(6 + 1 / 6, "feet"),
  5969. weight: math.unit(178, "lbs"),
  5970. name: "Front",
  5971. image: {
  5972. source: "./media/characters/guy/front.svg"
  5973. }
  5974. }
  5975. },
  5976. [
  5977. {
  5978. name: "Normal",
  5979. height: math.unit(6 + 1 / 6, "feet"),
  5980. default: true
  5981. },
  5982. {
  5983. name: "Large",
  5984. height: math.unit(25 + 7 / 12, "feet")
  5985. },
  5986. {
  5987. name: "Macro",
  5988. height: math.unit(60 + 9 / 12, "feet")
  5989. },
  5990. {
  5991. name: "Macro+",
  5992. height: math.unit(246, "feet")
  5993. },
  5994. {
  5995. name: "Macro++",
  5996. height: math.unit(878, "feet")
  5997. }
  5998. ]
  5999. ))
  6000. characterMakers.push(() => makeCharacter(
  6001. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6002. {
  6003. front: {
  6004. height: math.unit(9, "feet"),
  6005. weight: math.unit(800, "lbs"),
  6006. name: "Front",
  6007. image: {
  6008. source: "./media/characters/tiberius/front.svg",
  6009. extra: 2295 / 2071
  6010. }
  6011. },
  6012. back: {
  6013. height: math.unit(9, "feet"),
  6014. weight: math.unit(800, "lbs"),
  6015. name: "Back",
  6016. image: {
  6017. source: "./media/characters/tiberius/back.svg",
  6018. extra: 2373 / 2160
  6019. }
  6020. },
  6021. },
  6022. [
  6023. {
  6024. name: "Normal",
  6025. height: math.unit(9, "feet"),
  6026. default: true
  6027. }
  6028. ]
  6029. ))
  6030. characterMakers.push(() => makeCharacter(
  6031. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6032. {
  6033. front: {
  6034. height: math.unit(6, "feet"),
  6035. weight: math.unit(600, "lbs"),
  6036. name: "Front",
  6037. image: {
  6038. source: "./media/characters/surgo/front.svg",
  6039. extra: 3591 / 2227
  6040. }
  6041. },
  6042. back: {
  6043. height: math.unit(6, "feet"),
  6044. weight: math.unit(600, "lbs"),
  6045. name: "Back",
  6046. image: {
  6047. source: "./media/characters/surgo/back.svg",
  6048. extra: 3557 / 2228
  6049. }
  6050. },
  6051. laying: {
  6052. height: math.unit(6 * 0.85, "feet"),
  6053. weight: math.unit(600, "lbs"),
  6054. name: "Laying",
  6055. image: {
  6056. source: "./media/characters/surgo/laying.svg"
  6057. }
  6058. },
  6059. },
  6060. [
  6061. {
  6062. name: "Normal",
  6063. height: math.unit(6, "feet"),
  6064. default: true
  6065. }
  6066. ]
  6067. ))
  6068. characterMakers.push(() => makeCharacter(
  6069. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6070. {
  6071. side: {
  6072. height: math.unit(6, "feet"),
  6073. weight: math.unit(150, "lbs"),
  6074. name: "Side",
  6075. image: {
  6076. source: "./media/characters/cibus/side.svg",
  6077. extra: 800 / 400
  6078. }
  6079. },
  6080. },
  6081. [
  6082. {
  6083. name: "Normal",
  6084. height: math.unit(6, "feet"),
  6085. default: true
  6086. }
  6087. ]
  6088. ))
  6089. characterMakers.push(() => makeCharacter(
  6090. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6091. {
  6092. front: {
  6093. height: math.unit(6, "feet"),
  6094. weight: math.unit(240, "lbs"),
  6095. name: "Front",
  6096. image: {
  6097. source: "./media/characters/nibbles/front.svg"
  6098. }
  6099. },
  6100. side: {
  6101. height: math.unit(6, "feet"),
  6102. weight: math.unit(240, "lbs"),
  6103. name: "Side",
  6104. image: {
  6105. source: "./media/characters/nibbles/side.svg"
  6106. }
  6107. },
  6108. },
  6109. [
  6110. {
  6111. name: "Normal",
  6112. height: math.unit(9, "feet"),
  6113. default: true
  6114. }
  6115. ]
  6116. ))
  6117. characterMakers.push(() => makeCharacter(
  6118. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6119. {
  6120. side: {
  6121. height: math.unit(5 + 1 / 6, "feet"),
  6122. weight: math.unit(130, "lbs"),
  6123. name: "Side",
  6124. image: {
  6125. source: "./media/characters/rikky/side.svg",
  6126. extra: 851 / 801
  6127. }
  6128. },
  6129. },
  6130. [
  6131. {
  6132. name: "Normal",
  6133. height: math.unit(5 + 1 / 6, "feet")
  6134. },
  6135. {
  6136. name: "Macro",
  6137. height: math.unit(152, "feet"),
  6138. default: true
  6139. },
  6140. {
  6141. name: "Megamacro",
  6142. height: math.unit(7, "miles")
  6143. }
  6144. ]
  6145. ))
  6146. characterMakers.push(() => makeCharacter(
  6147. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6148. {
  6149. side: {
  6150. height: math.unit(370, "cm"),
  6151. weight: math.unit(350, "lbs"),
  6152. name: "Side",
  6153. image: {
  6154. source: "./media/characters/malfressa/side.svg"
  6155. }
  6156. },
  6157. walking: {
  6158. height: math.unit(370, "cm"),
  6159. weight: math.unit(350, "lbs"),
  6160. name: "Walking",
  6161. image: {
  6162. source: "./media/characters/malfressa/walking.svg"
  6163. }
  6164. },
  6165. feral: {
  6166. height: math.unit(2500, "cm"),
  6167. weight: math.unit(100000, "lbs"),
  6168. name: "Feral",
  6169. image: {
  6170. source: "./media/characters/malfressa/feral.svg",
  6171. extra: 2108 / 837,
  6172. bottom: 0.02
  6173. }
  6174. },
  6175. },
  6176. [
  6177. {
  6178. name: "Normal",
  6179. height: math.unit(370, "cm")
  6180. },
  6181. {
  6182. name: "Macro",
  6183. height: math.unit(300, "meters"),
  6184. default: true
  6185. }
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6190. {
  6191. front: {
  6192. height: math.unit(6, "feet"),
  6193. weight: math.unit(60, "kg"),
  6194. name: "Front",
  6195. image: {
  6196. source: "./media/characters/jaro/front.svg"
  6197. }
  6198. },
  6199. back: {
  6200. height: math.unit(6, "feet"),
  6201. weight: math.unit(60, "kg"),
  6202. name: "Back",
  6203. image: {
  6204. source: "./media/characters/jaro/back.svg"
  6205. }
  6206. },
  6207. },
  6208. [
  6209. {
  6210. name: "Micro",
  6211. height: math.unit(7, "inches")
  6212. },
  6213. {
  6214. name: "Normal",
  6215. height: math.unit(5.5, "feet"),
  6216. default: true
  6217. },
  6218. {
  6219. name: "Minimacro",
  6220. height: math.unit(20, "feet")
  6221. },
  6222. {
  6223. name: "Macro",
  6224. height: math.unit(200, "meters")
  6225. }
  6226. ]
  6227. ))
  6228. characterMakers.push(() => makeCharacter(
  6229. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6230. {
  6231. front: {
  6232. height: math.unit(6, "feet"),
  6233. weight: math.unit(195, "lb"),
  6234. name: "Front",
  6235. image: {
  6236. source: "./media/characters/rogue/front.svg"
  6237. }
  6238. },
  6239. },
  6240. [
  6241. {
  6242. name: "Macro",
  6243. height: math.unit(90, "feet"),
  6244. default: true
  6245. },
  6246. ]
  6247. ))
  6248. characterMakers.push(() => makeCharacter(
  6249. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6250. {
  6251. front: {
  6252. height: math.unit(5 + 8 / 12, "feet"),
  6253. weight: math.unit(140, "lb"),
  6254. name: "Front",
  6255. image: {
  6256. source: "./media/characters/piper/front.svg",
  6257. extra: 3948/3655,
  6258. bottom: 0/3948
  6259. }
  6260. },
  6261. },
  6262. [
  6263. {
  6264. name: "Micro",
  6265. height: math.unit(2, "inches")
  6266. },
  6267. {
  6268. name: "Normal",
  6269. height: math.unit(5 + 8 / 12, "feet")
  6270. },
  6271. {
  6272. name: "Macro",
  6273. height: math.unit(250, "feet"),
  6274. default: true
  6275. },
  6276. {
  6277. name: "Megamacro",
  6278. height: math.unit(7, "miles")
  6279. },
  6280. ]
  6281. ))
  6282. characterMakers.push(() => makeCharacter(
  6283. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6284. {
  6285. front: {
  6286. height: math.unit(6, "feet"),
  6287. weight: math.unit(220, "lb"),
  6288. name: "Front",
  6289. image: {
  6290. source: "./media/characters/gemini/front.svg"
  6291. }
  6292. },
  6293. back: {
  6294. height: math.unit(6, "feet"),
  6295. weight: math.unit(220, "lb"),
  6296. name: "Back",
  6297. image: {
  6298. source: "./media/characters/gemini/back.svg"
  6299. }
  6300. },
  6301. kneeling: {
  6302. height: math.unit(6 / 1.5, "feet"),
  6303. weight: math.unit(220, "lb"),
  6304. name: "Kneeling",
  6305. image: {
  6306. source: "./media/characters/gemini/kneeling.svg",
  6307. bottom: 0.02
  6308. }
  6309. },
  6310. },
  6311. [
  6312. {
  6313. name: "Macro",
  6314. height: math.unit(300, "meters"),
  6315. default: true
  6316. },
  6317. {
  6318. name: "Megamacro",
  6319. height: math.unit(6900, "meters")
  6320. },
  6321. ]
  6322. ))
  6323. characterMakers.push(() => makeCharacter(
  6324. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6325. {
  6326. anthro: {
  6327. height: math.unit(2.35, "meters"),
  6328. weight: math.unit(73, "kg"),
  6329. name: "Anthro",
  6330. image: {
  6331. source: "./media/characters/alicia/anthro.svg",
  6332. extra: 2571 / 2385,
  6333. bottom: 75 / 2648
  6334. }
  6335. },
  6336. paw: {
  6337. height: math.unit(1.32, "feet"),
  6338. name: "Paw",
  6339. image: {
  6340. source: "./media/characters/alicia/paw.svg"
  6341. }
  6342. },
  6343. feral: {
  6344. height: math.unit(1.69, "meters"),
  6345. weight: math.unit(73, "kg"),
  6346. name: "Feral",
  6347. image: {
  6348. source: "./media/characters/alicia/feral.svg",
  6349. extra: 2123 / 1715,
  6350. bottom: 222 / 2349
  6351. }
  6352. },
  6353. },
  6354. [
  6355. {
  6356. name: "Normal",
  6357. height: math.unit(2.35, "meters")
  6358. },
  6359. {
  6360. name: "Macro",
  6361. height: math.unit(60, "meters"),
  6362. default: true
  6363. },
  6364. {
  6365. name: "Megamacro",
  6366. height: math.unit(10000, "kilometers")
  6367. },
  6368. ]
  6369. ))
  6370. characterMakers.push(() => makeCharacter(
  6371. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6372. {
  6373. front: {
  6374. height: math.unit(7, "feet"),
  6375. weight: math.unit(250, "lbs"),
  6376. name: "Front",
  6377. image: {
  6378. source: "./media/characters/archy/front.svg"
  6379. }
  6380. }
  6381. },
  6382. [
  6383. {
  6384. name: "Micro",
  6385. height: math.unit(1, "inch")
  6386. },
  6387. {
  6388. name: "Shorty",
  6389. height: math.unit(5, "feet")
  6390. },
  6391. {
  6392. name: "Normal",
  6393. height: math.unit(7, "feet")
  6394. },
  6395. {
  6396. name: "Macro",
  6397. height: math.unit(600, "meters"),
  6398. default: true
  6399. },
  6400. {
  6401. name: "Megamacro",
  6402. height: math.unit(1, "mile")
  6403. },
  6404. ]
  6405. ))
  6406. characterMakers.push(() => makeCharacter(
  6407. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6408. {
  6409. front: {
  6410. height: math.unit(1.65, "meters"),
  6411. weight: math.unit(74, "kg"),
  6412. name: "Front",
  6413. image: {
  6414. source: "./media/characters/berri/front.svg",
  6415. extra: 857 / 837,
  6416. bottom: 18 / 877
  6417. }
  6418. },
  6419. bum: {
  6420. height: math.unit(1.46, "feet"),
  6421. name: "Bum",
  6422. image: {
  6423. source: "./media/characters/berri/bum.svg"
  6424. }
  6425. },
  6426. mouth: {
  6427. height: math.unit(0.44, "feet"),
  6428. name: "Mouth",
  6429. image: {
  6430. source: "./media/characters/berri/mouth.svg"
  6431. }
  6432. },
  6433. paw: {
  6434. height: math.unit(0.826, "feet"),
  6435. name: "Paw",
  6436. image: {
  6437. source: "./media/characters/berri/paw.svg"
  6438. }
  6439. },
  6440. },
  6441. [
  6442. {
  6443. name: "Normal",
  6444. height: math.unit(1.65, "meters")
  6445. },
  6446. {
  6447. name: "Macro",
  6448. height: math.unit(60, "m"),
  6449. default: true
  6450. },
  6451. {
  6452. name: "Megamacro",
  6453. height: math.unit(9.213, "km")
  6454. },
  6455. {
  6456. name: "Planet Eater",
  6457. height: math.unit(489, "megameters")
  6458. },
  6459. {
  6460. name: "Teramacro",
  6461. height: math.unit(2471635000000, "meters")
  6462. },
  6463. {
  6464. name: "Examacro",
  6465. height: math.unit(8.0624e+26, "meters")
  6466. }
  6467. ]
  6468. ))
  6469. characterMakers.push(() => makeCharacter(
  6470. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6471. {
  6472. front: {
  6473. height: math.unit(1.72, "meters"),
  6474. weight: math.unit(68, "kg"),
  6475. name: "Front",
  6476. image: {
  6477. source: "./media/characters/lexi/front.svg"
  6478. }
  6479. }
  6480. },
  6481. [
  6482. {
  6483. name: "Very Smol",
  6484. height: math.unit(10, "mm")
  6485. },
  6486. {
  6487. name: "Micro",
  6488. height: math.unit(6.8, "cm"),
  6489. default: true
  6490. },
  6491. {
  6492. name: "Normal",
  6493. height: math.unit(1.72, "m")
  6494. }
  6495. ]
  6496. ))
  6497. characterMakers.push(() => makeCharacter(
  6498. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6499. {
  6500. front: {
  6501. height: math.unit(1.69, "meters"),
  6502. weight: math.unit(68, "kg"),
  6503. name: "Front",
  6504. image: {
  6505. source: "./media/characters/martin/front.svg",
  6506. extra: 596 / 581
  6507. }
  6508. }
  6509. },
  6510. [
  6511. {
  6512. name: "Micro",
  6513. height: math.unit(6.85, "cm"),
  6514. default: true
  6515. },
  6516. {
  6517. name: "Normal",
  6518. height: math.unit(1.69, "m")
  6519. }
  6520. ]
  6521. ))
  6522. characterMakers.push(() => makeCharacter(
  6523. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6524. {
  6525. front: {
  6526. height: math.unit(1.69, "meters"),
  6527. weight: math.unit(68, "kg"),
  6528. name: "Front",
  6529. image: {
  6530. source: "./media/characters/juno/front.svg"
  6531. }
  6532. }
  6533. },
  6534. [
  6535. {
  6536. name: "Micro",
  6537. height: math.unit(7, "cm")
  6538. },
  6539. {
  6540. name: "Normal",
  6541. height: math.unit(1.89, "m")
  6542. },
  6543. {
  6544. name: "Macro",
  6545. height: math.unit(353, "meters"),
  6546. default: true
  6547. }
  6548. ]
  6549. ))
  6550. characterMakers.push(() => makeCharacter(
  6551. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6552. {
  6553. front: {
  6554. height: math.unit(1.93, "meters"),
  6555. weight: math.unit(83, "kg"),
  6556. name: "Front",
  6557. image: {
  6558. source: "./media/characters/samantha/front.svg"
  6559. }
  6560. },
  6561. frontClothed: {
  6562. height: math.unit(1.93, "meters"),
  6563. weight: math.unit(83, "kg"),
  6564. name: "Front (Clothed)",
  6565. image: {
  6566. source: "./media/characters/samantha/front-clothed.svg"
  6567. }
  6568. },
  6569. back: {
  6570. height: math.unit(1.93, "meters"),
  6571. weight: math.unit(83, "kg"),
  6572. name: "Back",
  6573. image: {
  6574. source: "./media/characters/samantha/back.svg"
  6575. }
  6576. },
  6577. },
  6578. [
  6579. {
  6580. name: "Normal",
  6581. height: math.unit(1.93, "m")
  6582. },
  6583. {
  6584. name: "Macro",
  6585. height: math.unit(74, "meters"),
  6586. default: true
  6587. },
  6588. {
  6589. name: "Macro+",
  6590. height: math.unit(223, "meters"),
  6591. },
  6592. {
  6593. name: "Megamacro",
  6594. height: math.unit(8381, "meters"),
  6595. },
  6596. {
  6597. name: "Megamacro+",
  6598. height: math.unit(12000, "kilometers")
  6599. },
  6600. ]
  6601. ))
  6602. characterMakers.push(() => makeCharacter(
  6603. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6604. {
  6605. front: {
  6606. height: math.unit(1.92, "meters"),
  6607. weight: math.unit(80, "kg"),
  6608. name: "Front",
  6609. image: {
  6610. source: "./media/characters/dr-clay/front.svg"
  6611. }
  6612. },
  6613. frontClothed: {
  6614. height: math.unit(1.92, "meters"),
  6615. weight: math.unit(80, "kg"),
  6616. name: "Front (Clothed)",
  6617. image: {
  6618. source: "./media/characters/dr-clay/front-clothed.svg"
  6619. }
  6620. }
  6621. },
  6622. [
  6623. {
  6624. name: "Normal",
  6625. height: math.unit(1.92, "m")
  6626. },
  6627. {
  6628. name: "Macro",
  6629. height: math.unit(214, "meters"),
  6630. default: true
  6631. },
  6632. {
  6633. name: "Macro+",
  6634. height: math.unit(12.237, "meters"),
  6635. },
  6636. {
  6637. name: "Megamacro",
  6638. height: math.unit(557, "megameters"),
  6639. },
  6640. {
  6641. name: "Unimaginable",
  6642. height: math.unit(120e9, "lightyears")
  6643. },
  6644. ]
  6645. ))
  6646. characterMakers.push(() => makeCharacter(
  6647. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6648. {
  6649. front: {
  6650. height: math.unit(2, "meters"),
  6651. weight: math.unit(80, "kg"),
  6652. name: "Front",
  6653. image: {
  6654. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6655. }
  6656. }
  6657. },
  6658. [
  6659. {
  6660. name: "Teramacro",
  6661. height: math.unit(500000, "lightyears"),
  6662. default: true
  6663. },
  6664. ]
  6665. ))
  6666. characterMakers.push(() => makeCharacter(
  6667. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6668. {
  6669. crux: {
  6670. height: math.unit(2, "meters"),
  6671. weight: math.unit(150, "kg"),
  6672. name: "Crux",
  6673. image: {
  6674. source: "./media/characters/vemus/crux.svg",
  6675. extra: 1074/936,
  6676. bottom: 23/1097
  6677. }
  6678. },
  6679. skunkTanuki: {
  6680. height: math.unit(2, "meters"),
  6681. weight: math.unit(150, "kg"),
  6682. name: "Skunk-Tanuki",
  6683. image: {
  6684. source: "./media/characters/vemus/skunk-tanuki.svg",
  6685. extra: 926/893,
  6686. bottom: 20/946
  6687. }
  6688. },
  6689. },
  6690. [
  6691. {
  6692. name: "Normal",
  6693. height: math.unit(3.75, "meters"),
  6694. default: true
  6695. },
  6696. {
  6697. name: "Big",
  6698. height: math.unit(8, "meters")
  6699. },
  6700. {
  6701. name: "Macro",
  6702. height: math.unit(100, "meters")
  6703. },
  6704. {
  6705. name: "Macro+",
  6706. height: math.unit(1500, "meters")
  6707. },
  6708. {
  6709. name: "Stellar",
  6710. height: math.unit(14e8, "meters")
  6711. },
  6712. ]
  6713. ))
  6714. characterMakers.push(() => makeCharacter(
  6715. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6716. {
  6717. front: {
  6718. height: math.unit(2, "meters"),
  6719. weight: math.unit(70, "kg"),
  6720. name: "Front",
  6721. image: {
  6722. source: "./media/characters/beherit/front.svg",
  6723. extra: 1408 / 1242
  6724. }
  6725. }
  6726. },
  6727. [
  6728. {
  6729. name: "Normal",
  6730. height: math.unit(6, "feet")
  6731. },
  6732. {
  6733. name: "Lorg",
  6734. height: math.unit(25, "feet"),
  6735. default: true
  6736. },
  6737. {
  6738. name: "Lorger",
  6739. height: math.unit(75, "feet")
  6740. },
  6741. {
  6742. name: "Macro",
  6743. height: math.unit(200, "meters")
  6744. },
  6745. ]
  6746. ))
  6747. characterMakers.push(() => makeCharacter(
  6748. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6749. {
  6750. front: {
  6751. height: math.unit(2, "meters"),
  6752. weight: math.unit(150, "kg"),
  6753. name: "Front",
  6754. image: {
  6755. source: "./media/characters/everett/front.svg",
  6756. extra: 2038 / 1737,
  6757. bottom: 0.03
  6758. }
  6759. },
  6760. paw: {
  6761. height: math.unit(2 / 3.6, "meters"),
  6762. name: "Paw",
  6763. image: {
  6764. source: "./media/characters/everett/paw.svg"
  6765. }
  6766. },
  6767. },
  6768. [
  6769. {
  6770. name: "Normal",
  6771. height: math.unit(15, "feet"),
  6772. default: true
  6773. },
  6774. {
  6775. name: "Lorg",
  6776. height: math.unit(70, "feet"),
  6777. default: true
  6778. },
  6779. {
  6780. name: "Lorger",
  6781. height: math.unit(250, "feet")
  6782. },
  6783. {
  6784. name: "Macro",
  6785. height: math.unit(500, "meters")
  6786. },
  6787. ]
  6788. ))
  6789. characterMakers.push(() => makeCharacter(
  6790. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6791. {
  6792. front: {
  6793. height: math.unit(2, "meters"),
  6794. weight: math.unit(86, "kg"),
  6795. name: "Front",
  6796. image: {
  6797. source: "./media/characters/rose/front.svg",
  6798. extra: 1785/1636,
  6799. bottom: 30/1815
  6800. }
  6801. },
  6802. frontSporty: {
  6803. height: math.unit(2, "meters"),
  6804. weight: math.unit(86, "kg"),
  6805. name: "Front (Sporty)",
  6806. image: {
  6807. source: "./media/characters/rose/front-sporty.svg",
  6808. extra: 350/335,
  6809. bottom: 10/360
  6810. }
  6811. },
  6812. frontAlt: {
  6813. height: math.unit(1.6, "meters"),
  6814. weight: math.unit(86, "kg"),
  6815. name: "Front (Alt)",
  6816. image: {
  6817. source: "./media/characters/rose/front-alt.svg",
  6818. extra: 299/283,
  6819. bottom: 3/302
  6820. }
  6821. },
  6822. plush: {
  6823. height: math.unit(2, "meters"),
  6824. weight: math.unit(86/3, "kg"),
  6825. name: "Plush",
  6826. image: {
  6827. source: "./media/characters/rose/plush.svg",
  6828. extra: 361/337,
  6829. bottom: 11/372
  6830. }
  6831. },
  6832. },
  6833. [
  6834. {
  6835. name: "True Micro",
  6836. height: math.unit(9, "cm")
  6837. },
  6838. {
  6839. name: "Micro",
  6840. height: math.unit(16, "cm")
  6841. },
  6842. {
  6843. name: "Normal",
  6844. height: math.unit(1.85, "meters"),
  6845. default: true
  6846. },
  6847. {
  6848. name: "Mini-Macro",
  6849. height: math.unit(5, "meters")
  6850. },
  6851. {
  6852. name: "Macro",
  6853. height: math.unit(15, "meters")
  6854. },
  6855. {
  6856. name: "True Macro",
  6857. height: math.unit(40, "meters")
  6858. },
  6859. {
  6860. name: "City Scale",
  6861. height: math.unit(1, "km")
  6862. },
  6863. ]
  6864. ))
  6865. characterMakers.push(() => makeCharacter(
  6866. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6867. {
  6868. front: {
  6869. height: math.unit(2, "meters"),
  6870. weight: math.unit(350, "lbs"),
  6871. name: "Front",
  6872. image: {
  6873. source: "./media/characters/regal/front.svg"
  6874. }
  6875. },
  6876. back: {
  6877. height: math.unit(2, "meters"),
  6878. weight: math.unit(350, "lbs"),
  6879. name: "Back",
  6880. image: {
  6881. source: "./media/characters/regal/back.svg"
  6882. }
  6883. },
  6884. },
  6885. [
  6886. {
  6887. name: "Macro",
  6888. height: math.unit(350, "feet"),
  6889. default: true
  6890. }
  6891. ]
  6892. ))
  6893. characterMakers.push(() => makeCharacter(
  6894. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6895. {
  6896. front: {
  6897. height: math.unit(4 + 11 / 12, "feet"),
  6898. weight: math.unit(100, "lbs"),
  6899. name: "Front",
  6900. image: {
  6901. source: "./media/characters/opal/front.svg"
  6902. }
  6903. },
  6904. frontAlt: {
  6905. height: math.unit(4 + 11 / 12, "feet"),
  6906. weight: math.unit(100, "lbs"),
  6907. name: "Front (Alt)",
  6908. image: {
  6909. source: "./media/characters/opal/front-alt.svg"
  6910. }
  6911. },
  6912. },
  6913. [
  6914. {
  6915. name: "Small",
  6916. height: math.unit(4 + 11 / 12, "feet")
  6917. },
  6918. {
  6919. name: "Normal",
  6920. height: math.unit(20, "feet"),
  6921. default: true
  6922. },
  6923. {
  6924. name: "Macro",
  6925. height: math.unit(120, "feet")
  6926. },
  6927. {
  6928. name: "Megamacro",
  6929. height: math.unit(80, "miles")
  6930. },
  6931. {
  6932. name: "True Size",
  6933. height: math.unit(100000, "lightyears")
  6934. },
  6935. ]
  6936. ))
  6937. characterMakers.push(() => makeCharacter(
  6938. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6939. {
  6940. front: {
  6941. height: math.unit(6, "feet"),
  6942. weight: math.unit(200, "lbs"),
  6943. name: "Front",
  6944. image: {
  6945. source: "./media/characters/vector-wuff/front.svg"
  6946. }
  6947. }
  6948. },
  6949. [
  6950. {
  6951. name: "Normal",
  6952. height: math.unit(2.8, "meters")
  6953. },
  6954. {
  6955. name: "Macro",
  6956. height: math.unit(450, "meters"),
  6957. default: true
  6958. },
  6959. {
  6960. name: "Megamacro",
  6961. height: math.unit(15, "kilometers")
  6962. }
  6963. ]
  6964. ))
  6965. characterMakers.push(() => makeCharacter(
  6966. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6967. {
  6968. front: {
  6969. height: math.unit(6, "feet"),
  6970. weight: math.unit(256, "lbs"),
  6971. name: "Front",
  6972. image: {
  6973. source: "./media/characters/dannik/front.svg"
  6974. }
  6975. }
  6976. },
  6977. [
  6978. {
  6979. name: "Macro",
  6980. height: math.unit(69.57, "meters"),
  6981. default: true
  6982. },
  6983. ]
  6984. ))
  6985. characterMakers.push(() => makeCharacter(
  6986. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6987. {
  6988. front: {
  6989. height: math.unit(6, "feet"),
  6990. weight: math.unit(120, "lbs"),
  6991. name: "Front",
  6992. image: {
  6993. source: "./media/characters/azura-saharah/front.svg"
  6994. }
  6995. },
  6996. back: {
  6997. height: math.unit(6, "feet"),
  6998. weight: math.unit(120, "lbs"),
  6999. name: "Back",
  7000. image: {
  7001. source: "./media/characters/azura-saharah/back.svg"
  7002. }
  7003. },
  7004. },
  7005. [
  7006. {
  7007. name: "Macro",
  7008. height: math.unit(100, "feet"),
  7009. default: true
  7010. },
  7011. ]
  7012. ))
  7013. characterMakers.push(() => makeCharacter(
  7014. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7015. {
  7016. side: {
  7017. height: math.unit(5 + 4 / 12, "feet"),
  7018. weight: math.unit(163, "lbs"),
  7019. name: "Side",
  7020. image: {
  7021. source: "./media/characters/kennedy/side.svg"
  7022. }
  7023. }
  7024. },
  7025. [
  7026. {
  7027. name: "Standard Doggo",
  7028. height: math.unit(5 + 4 / 12, "feet")
  7029. },
  7030. {
  7031. name: "Big Doggo",
  7032. height: math.unit(25 + 3 / 12, "feet"),
  7033. default: true
  7034. },
  7035. ]
  7036. ))
  7037. characterMakers.push(() => makeCharacter(
  7038. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7039. {
  7040. front: {
  7041. height: math.unit(6, "feet"),
  7042. weight: math.unit(90, "lbs"),
  7043. name: "Front",
  7044. image: {
  7045. source: "./media/characters/odi-lunar/front.svg"
  7046. }
  7047. }
  7048. },
  7049. [
  7050. {
  7051. name: "Micro",
  7052. height: math.unit(3, "inches"),
  7053. default: true
  7054. },
  7055. {
  7056. name: "Normal",
  7057. height: math.unit(5.5, "feet")
  7058. }
  7059. ]
  7060. ))
  7061. characterMakers.push(() => makeCharacter(
  7062. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7063. {
  7064. back: {
  7065. height: math.unit(6, "feet"),
  7066. weight: math.unit(220, "lbs"),
  7067. name: "Back",
  7068. image: {
  7069. source: "./media/characters/mandake/back.svg"
  7070. }
  7071. }
  7072. },
  7073. [
  7074. {
  7075. name: "Normal",
  7076. height: math.unit(7, "feet"),
  7077. default: true
  7078. },
  7079. {
  7080. name: "Macro",
  7081. height: math.unit(78, "feet")
  7082. },
  7083. {
  7084. name: "Macro+",
  7085. height: math.unit(300, "meters")
  7086. },
  7087. {
  7088. name: "Macro++",
  7089. height: math.unit(2400, "feet")
  7090. },
  7091. {
  7092. name: "Megamacro",
  7093. height: math.unit(5167, "meters")
  7094. },
  7095. {
  7096. name: "Gigamacro",
  7097. height: math.unit(41769, "miles")
  7098. },
  7099. ]
  7100. ))
  7101. characterMakers.push(() => makeCharacter(
  7102. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7103. {
  7104. front: {
  7105. height: math.unit(6, "feet"),
  7106. weight: math.unit(120, "lbs"),
  7107. name: "Front",
  7108. image: {
  7109. source: "./media/characters/yozey/front.svg"
  7110. }
  7111. },
  7112. frontAlt: {
  7113. height: math.unit(6, "feet"),
  7114. weight: math.unit(120, "lbs"),
  7115. name: "Front (Alt)",
  7116. image: {
  7117. source: "./media/characters/yozey/front-alt.svg"
  7118. }
  7119. },
  7120. side: {
  7121. height: math.unit(6, "feet"),
  7122. weight: math.unit(120, "lbs"),
  7123. name: "Side",
  7124. image: {
  7125. source: "./media/characters/yozey/side.svg"
  7126. }
  7127. },
  7128. },
  7129. [
  7130. {
  7131. name: "Micro",
  7132. height: math.unit(3, "inches"),
  7133. default: true
  7134. },
  7135. {
  7136. name: "Normal",
  7137. height: math.unit(6, "feet")
  7138. }
  7139. ]
  7140. ))
  7141. characterMakers.push(() => makeCharacter(
  7142. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7143. {
  7144. front: {
  7145. height: math.unit(6, "feet"),
  7146. weight: math.unit(103, "lbs"),
  7147. name: "Front",
  7148. image: {
  7149. source: "./media/characters/valeska-voss/front.svg"
  7150. }
  7151. }
  7152. },
  7153. [
  7154. {
  7155. name: "Mini-Sized Sub",
  7156. height: math.unit(3.1, "inches")
  7157. },
  7158. {
  7159. name: "Mid-Sized Sub",
  7160. height: math.unit(6.2, "inches")
  7161. },
  7162. {
  7163. name: "Full-Sized Sub",
  7164. height: math.unit(9.3, "inches")
  7165. },
  7166. {
  7167. name: "Normal",
  7168. height: math.unit(5 + 2 / 12, "foot"),
  7169. default: true
  7170. },
  7171. ]
  7172. ))
  7173. characterMakers.push(() => makeCharacter(
  7174. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7175. {
  7176. front: {
  7177. height: math.unit(6, "feet"),
  7178. weight: math.unit(160, "lbs"),
  7179. name: "Front",
  7180. image: {
  7181. source: "./media/characters/gene-zeta/front.svg",
  7182. extra: 3006 / 2826,
  7183. bottom: 182 / 3188
  7184. }
  7185. }
  7186. },
  7187. [
  7188. {
  7189. name: "Micro",
  7190. height: math.unit(6, "inches")
  7191. },
  7192. {
  7193. name: "Normal",
  7194. height: math.unit(5 + 11 / 12, "foot"),
  7195. default: true
  7196. },
  7197. {
  7198. name: "Macro",
  7199. height: math.unit(140, "feet")
  7200. },
  7201. {
  7202. name: "Supercharged",
  7203. height: math.unit(2500, "feet")
  7204. },
  7205. ]
  7206. ))
  7207. characterMakers.push(() => makeCharacter(
  7208. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7209. {
  7210. front: {
  7211. height: math.unit(6, "feet"),
  7212. weight: math.unit(350, "lbs"),
  7213. name: "Front",
  7214. image: {
  7215. source: "./media/characters/razinox/front.svg",
  7216. extra: 1686 / 1548,
  7217. bottom: 28.2 / 1868
  7218. }
  7219. },
  7220. back: {
  7221. height: math.unit(6, "feet"),
  7222. weight: math.unit(350, "lbs"),
  7223. name: "Back",
  7224. image: {
  7225. source: "./media/characters/razinox/back.svg",
  7226. extra: 1660 / 1590,
  7227. bottom: 15 / 1665
  7228. }
  7229. },
  7230. },
  7231. [
  7232. {
  7233. name: "Normal",
  7234. height: math.unit(10 + 8 / 12, "foot")
  7235. },
  7236. {
  7237. name: "Minimacro",
  7238. height: math.unit(15, "foot")
  7239. },
  7240. {
  7241. name: "Macro",
  7242. height: math.unit(60, "foot"),
  7243. default: true
  7244. },
  7245. {
  7246. name: "Megamacro",
  7247. height: math.unit(5, "miles")
  7248. },
  7249. {
  7250. name: "Gigamacro",
  7251. height: math.unit(6000, "miles")
  7252. },
  7253. ]
  7254. ))
  7255. characterMakers.push(() => makeCharacter(
  7256. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7257. {
  7258. front: {
  7259. height: math.unit(6, "feet"),
  7260. weight: math.unit(150, "lbs"),
  7261. name: "Front",
  7262. image: {
  7263. source: "./media/characters/cobalt/front.svg"
  7264. }
  7265. }
  7266. },
  7267. [
  7268. {
  7269. name: "Normal",
  7270. height: math.unit(8 + 1 / 12, "foot")
  7271. },
  7272. {
  7273. name: "Macro",
  7274. height: math.unit(111, "foot"),
  7275. default: true
  7276. },
  7277. {
  7278. name: "Supracosmic",
  7279. height: math.unit(1e42, "feet")
  7280. },
  7281. ]
  7282. ))
  7283. characterMakers.push(() => makeCharacter(
  7284. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7285. {
  7286. front: {
  7287. height: math.unit(6, "feet"),
  7288. weight: math.unit(140, "lbs"),
  7289. name: "Front",
  7290. image: {
  7291. source: "./media/characters/amanda/front.svg"
  7292. }
  7293. }
  7294. },
  7295. [
  7296. {
  7297. name: "Micro",
  7298. height: math.unit(5, "inches"),
  7299. default: true
  7300. },
  7301. ]
  7302. ))
  7303. characterMakers.push(() => makeCharacter(
  7304. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7305. {
  7306. front: {
  7307. height: math.unit(2.75, "meters"),
  7308. weight: math.unit(1200, "lb"),
  7309. name: "Front",
  7310. image: {
  7311. source: "./media/characters/teal/front.svg",
  7312. extra: 2463 / 2320,
  7313. bottom: 166 / 2629
  7314. }
  7315. },
  7316. back: {
  7317. height: math.unit(2.75, "meters"),
  7318. weight: math.unit(1200, "lb"),
  7319. name: "Back",
  7320. image: {
  7321. source: "./media/characters/teal/back.svg",
  7322. extra: 2580 / 2489,
  7323. bottom: 151 / 2731
  7324. }
  7325. },
  7326. sitting: {
  7327. height: math.unit(1.9, "meters"),
  7328. weight: math.unit(1200, "lb"),
  7329. name: "Sitting",
  7330. image: {
  7331. source: "./media/characters/teal/sitting.svg",
  7332. extra: 623 / 590,
  7333. bottom: 121 / 744
  7334. }
  7335. },
  7336. standing: {
  7337. height: math.unit(2.75, "meters"),
  7338. weight: math.unit(1200, "lb"),
  7339. name: "Standing",
  7340. image: {
  7341. source: "./media/characters/teal/standing.svg",
  7342. extra: 923 / 893,
  7343. bottom: 60 / 983
  7344. }
  7345. },
  7346. stretching: {
  7347. height: math.unit(3.65, "meters"),
  7348. weight: math.unit(1200, "lb"),
  7349. name: "Stretching",
  7350. image: {
  7351. source: "./media/characters/teal/stretching.svg",
  7352. extra: 1276 / 1244,
  7353. bottom: 0 / 1276
  7354. }
  7355. },
  7356. legged: {
  7357. height: math.unit(1.3, "meters"),
  7358. weight: math.unit(100, "lb"),
  7359. name: "Legged",
  7360. image: {
  7361. source: "./media/characters/teal/legged.svg",
  7362. extra: 462 / 437,
  7363. bottom: 24 / 486
  7364. }
  7365. },
  7366. naga: {
  7367. height: math.unit(5.4, "meters"),
  7368. weight: math.unit(4000, "lb"),
  7369. name: "Naga",
  7370. image: {
  7371. source: "./media/characters/teal/naga.svg",
  7372. extra: 1902 / 1858,
  7373. bottom: 0 / 1902
  7374. }
  7375. },
  7376. hand: {
  7377. height: math.unit(0.52, "meters"),
  7378. name: "Hand",
  7379. image: {
  7380. source: "./media/characters/teal/hand.svg"
  7381. }
  7382. },
  7383. maw: {
  7384. height: math.unit(0.43, "meters"),
  7385. name: "Maw",
  7386. image: {
  7387. source: "./media/characters/teal/maw.svg"
  7388. }
  7389. },
  7390. slit: {
  7391. height: math.unit(0.25, "meters"),
  7392. name: "Slit",
  7393. image: {
  7394. source: "./media/characters/teal/slit.svg"
  7395. }
  7396. },
  7397. },
  7398. [
  7399. {
  7400. name: "Normal",
  7401. height: math.unit(2.75, "meters"),
  7402. default: true
  7403. },
  7404. {
  7405. name: "Macro",
  7406. height: math.unit(300, "feet")
  7407. },
  7408. {
  7409. name: "Macro+",
  7410. height: math.unit(2000, "feet")
  7411. },
  7412. ]
  7413. ))
  7414. characterMakers.push(() => makeCharacter(
  7415. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7416. {
  7417. frontCat: {
  7418. height: math.unit(6, "feet"),
  7419. weight: math.unit(180, "lbs"),
  7420. name: "Front (Cat)",
  7421. image: {
  7422. source: "./media/characters/ravin-amulet/front-cat.svg"
  7423. }
  7424. },
  7425. frontCatAlt: {
  7426. height: math.unit(6, "feet"),
  7427. weight: math.unit(180, "lbs"),
  7428. name: "Front (Alt, Cat)",
  7429. image: {
  7430. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7431. }
  7432. },
  7433. frontWerewolf: {
  7434. height: math.unit(6 * 1.2, "feet"),
  7435. weight: math.unit(225, "lbs"),
  7436. name: "Front (Werewolf)",
  7437. image: {
  7438. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7439. }
  7440. },
  7441. backWerewolf: {
  7442. height: math.unit(6 * 1.2, "feet"),
  7443. weight: math.unit(225, "lbs"),
  7444. name: "Back (Werewolf)",
  7445. image: {
  7446. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7447. }
  7448. },
  7449. },
  7450. [
  7451. {
  7452. name: "Nano",
  7453. height: math.unit(1, "micrometer")
  7454. },
  7455. {
  7456. name: "Micro",
  7457. height: math.unit(1, "inch")
  7458. },
  7459. {
  7460. name: "Normal",
  7461. height: math.unit(6, "feet"),
  7462. default: true
  7463. },
  7464. {
  7465. name: "Macro",
  7466. height: math.unit(60, "feet")
  7467. }
  7468. ]
  7469. ))
  7470. characterMakers.push(() => makeCharacter(
  7471. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7472. {
  7473. front: {
  7474. height: math.unit(6, "feet"),
  7475. weight: math.unit(165, "lbs"),
  7476. name: "Front",
  7477. image: {
  7478. source: "./media/characters/fluoresce/front.svg"
  7479. }
  7480. }
  7481. },
  7482. [
  7483. {
  7484. name: "Micro",
  7485. height: math.unit(6, "cm")
  7486. },
  7487. {
  7488. name: "Normal",
  7489. height: math.unit(5 + 7 / 12, "feet"),
  7490. default: true
  7491. },
  7492. {
  7493. name: "Macro",
  7494. height: math.unit(56, "feet")
  7495. },
  7496. {
  7497. name: "Megamacro",
  7498. height: math.unit(1.9, "miles")
  7499. },
  7500. ]
  7501. ))
  7502. characterMakers.push(() => makeCharacter(
  7503. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7504. {
  7505. front: {
  7506. height: math.unit(9 + 6 / 12, "feet"),
  7507. weight: math.unit(523, "lbs"),
  7508. name: "Side",
  7509. image: {
  7510. source: "./media/characters/aurora/side.svg"
  7511. }
  7512. }
  7513. },
  7514. [
  7515. {
  7516. name: "Normal",
  7517. height: math.unit(9 + 6 / 12, "feet")
  7518. },
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(96, "feet"),
  7522. default: true
  7523. },
  7524. {
  7525. name: "Macro+",
  7526. height: math.unit(243, "feet")
  7527. },
  7528. ]
  7529. ))
  7530. characterMakers.push(() => makeCharacter(
  7531. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7532. {
  7533. front: {
  7534. height: math.unit(194, "cm"),
  7535. weight: math.unit(90, "kg"),
  7536. name: "Front",
  7537. image: {
  7538. source: "./media/characters/ranek/front.svg"
  7539. }
  7540. },
  7541. side: {
  7542. height: math.unit(194, "cm"),
  7543. weight: math.unit(90, "kg"),
  7544. name: "Side",
  7545. image: {
  7546. source: "./media/characters/ranek/side.svg"
  7547. }
  7548. },
  7549. back: {
  7550. height: math.unit(194, "cm"),
  7551. weight: math.unit(90, "kg"),
  7552. name: "Back",
  7553. image: {
  7554. source: "./media/characters/ranek/back.svg"
  7555. }
  7556. },
  7557. feral: {
  7558. height: math.unit(30, "cm"),
  7559. weight: math.unit(1.6, "lbs"),
  7560. name: "Feral",
  7561. image: {
  7562. source: "./media/characters/ranek/feral.svg"
  7563. }
  7564. },
  7565. },
  7566. [
  7567. {
  7568. name: "Normal",
  7569. height: math.unit(194, "cm"),
  7570. default: true
  7571. },
  7572. {
  7573. name: "Macro",
  7574. height: math.unit(100, "meters")
  7575. },
  7576. ]
  7577. ))
  7578. characterMakers.push(() => makeCharacter(
  7579. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7580. {
  7581. front: {
  7582. height: math.unit(5 + 6 / 12, "feet"),
  7583. weight: math.unit(153, "lbs"),
  7584. name: "Front",
  7585. image: {
  7586. source: "./media/characters/andrew-cooper/front.svg"
  7587. }
  7588. },
  7589. },
  7590. [
  7591. {
  7592. name: "Nano",
  7593. height: math.unit(1, "mm")
  7594. },
  7595. {
  7596. name: "Micro",
  7597. height: math.unit(2, "inches")
  7598. },
  7599. {
  7600. name: "Normal",
  7601. height: math.unit(5 + 6 / 12, "feet"),
  7602. default: true
  7603. }
  7604. ]
  7605. ))
  7606. characterMakers.push(() => makeCharacter(
  7607. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7608. {
  7609. front: {
  7610. height: math.unit(6, "feet"),
  7611. weight: math.unit(180, "lbs"),
  7612. name: "Front",
  7613. image: {
  7614. source: "./media/characters/akane-sato/front.svg",
  7615. extra: 1219 / 1140
  7616. }
  7617. },
  7618. back: {
  7619. height: math.unit(6, "feet"),
  7620. weight: math.unit(180, "lbs"),
  7621. name: "Back",
  7622. image: {
  7623. source: "./media/characters/akane-sato/back.svg",
  7624. extra: 1219 / 1170
  7625. }
  7626. },
  7627. },
  7628. [
  7629. {
  7630. name: "Normal",
  7631. height: math.unit(2.5, "meters")
  7632. },
  7633. {
  7634. name: "Macro",
  7635. height: math.unit(250, "meters"),
  7636. default: true
  7637. },
  7638. {
  7639. name: "Megamacro",
  7640. height: math.unit(25, "km")
  7641. },
  7642. ]
  7643. ))
  7644. characterMakers.push(() => makeCharacter(
  7645. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7646. {
  7647. front: {
  7648. height: math.unit(6, "feet"),
  7649. weight: math.unit(65, "kg"),
  7650. name: "Front",
  7651. image: {
  7652. source: "./media/characters/rook/front.svg",
  7653. extra: 960 / 950
  7654. }
  7655. }
  7656. },
  7657. [
  7658. {
  7659. name: "Normal",
  7660. height: math.unit(8.8, "feet")
  7661. },
  7662. {
  7663. name: "Macro",
  7664. height: math.unit(88, "feet"),
  7665. default: true
  7666. },
  7667. {
  7668. name: "Megamacro",
  7669. height: math.unit(8, "miles")
  7670. },
  7671. ]
  7672. ))
  7673. characterMakers.push(() => makeCharacter(
  7674. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7675. {
  7676. front: {
  7677. height: math.unit(12 + 2 / 12, "feet"),
  7678. weight: math.unit(808, "lbs"),
  7679. name: "Front",
  7680. image: {
  7681. source: "./media/characters/prodigy/front.svg"
  7682. }
  7683. }
  7684. },
  7685. [
  7686. {
  7687. name: "Normal",
  7688. height: math.unit(12 + 2 / 12, "feet"),
  7689. default: true
  7690. },
  7691. {
  7692. name: "Macro",
  7693. height: math.unit(143, "feet")
  7694. },
  7695. {
  7696. name: "Macro+",
  7697. height: math.unit(400, "feet")
  7698. },
  7699. ]
  7700. ))
  7701. characterMakers.push(() => makeCharacter(
  7702. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7703. {
  7704. front: {
  7705. height: math.unit(6, "feet"),
  7706. weight: math.unit(225, "lbs"),
  7707. name: "Front",
  7708. image: {
  7709. source: "./media/characters/daniel/front.svg"
  7710. }
  7711. },
  7712. leaning: {
  7713. height: math.unit(6, "feet"),
  7714. weight: math.unit(225, "lbs"),
  7715. name: "Leaning",
  7716. image: {
  7717. source: "./media/characters/daniel/leaning.svg"
  7718. }
  7719. },
  7720. },
  7721. [
  7722. {
  7723. name: "Macro",
  7724. height: math.unit(1000, "feet"),
  7725. default: true
  7726. },
  7727. ]
  7728. ))
  7729. characterMakers.push(() => makeCharacter(
  7730. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7731. {
  7732. front: {
  7733. height: math.unit(6, "feet"),
  7734. weight: math.unit(88, "lbs"),
  7735. name: "Front",
  7736. image: {
  7737. source: "./media/characters/chiros/front.svg",
  7738. extra: 306 / 226
  7739. }
  7740. },
  7741. side: {
  7742. height: math.unit(6, "feet"),
  7743. weight: math.unit(88, "lbs"),
  7744. name: "Side",
  7745. image: {
  7746. source: "./media/characters/chiros/side.svg",
  7747. extra: 306 / 226
  7748. }
  7749. },
  7750. },
  7751. [
  7752. {
  7753. name: "Normal",
  7754. height: math.unit(6, "cm"),
  7755. default: true
  7756. },
  7757. ]
  7758. ))
  7759. characterMakers.push(() => makeCharacter(
  7760. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7761. {
  7762. front: {
  7763. height: math.unit(6, "feet"),
  7764. weight: math.unit(100, "lbs"),
  7765. name: "Front",
  7766. image: {
  7767. source: "./media/characters/selka/front.svg",
  7768. extra: 947 / 887
  7769. }
  7770. }
  7771. },
  7772. [
  7773. {
  7774. name: "Normal",
  7775. height: math.unit(5, "cm"),
  7776. default: true
  7777. },
  7778. ]
  7779. ))
  7780. characterMakers.push(() => makeCharacter(
  7781. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7782. {
  7783. front: {
  7784. height: math.unit(8 + 3 / 12, "feet"),
  7785. weight: math.unit(424, "lbs"),
  7786. name: "Front",
  7787. image: {
  7788. source: "./media/characters/verin/front.svg",
  7789. extra: 1845 / 1550
  7790. }
  7791. },
  7792. frontArmored: {
  7793. height: math.unit(8 + 3 / 12, "feet"),
  7794. weight: math.unit(424, "lbs"),
  7795. name: "Front (Armored)",
  7796. image: {
  7797. source: "./media/characters/verin/front-armor.svg",
  7798. extra: 1845 / 1550,
  7799. bottom: 0.01
  7800. }
  7801. },
  7802. back: {
  7803. height: math.unit(8 + 3 / 12, "feet"),
  7804. weight: math.unit(424, "lbs"),
  7805. name: "Back",
  7806. image: {
  7807. source: "./media/characters/verin/back.svg",
  7808. bottom: 0.1,
  7809. extra: 1
  7810. }
  7811. },
  7812. foot: {
  7813. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7814. name: "Foot",
  7815. image: {
  7816. source: "./media/characters/verin/foot.svg"
  7817. }
  7818. },
  7819. },
  7820. [
  7821. {
  7822. name: "Normal",
  7823. height: math.unit(8 + 3 / 12, "feet")
  7824. },
  7825. {
  7826. name: "Minimacro",
  7827. height: math.unit(21, "feet"),
  7828. default: true
  7829. },
  7830. {
  7831. name: "Macro",
  7832. height: math.unit(626, "feet")
  7833. },
  7834. ]
  7835. ))
  7836. characterMakers.push(() => makeCharacter(
  7837. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7838. {
  7839. front: {
  7840. height: math.unit(2.718, "meters"),
  7841. weight: math.unit(150, "lbs"),
  7842. name: "Front",
  7843. image: {
  7844. source: "./media/characters/sovrim-terraquian/front.svg"
  7845. }
  7846. },
  7847. back: {
  7848. height: math.unit(2.718, "meters"),
  7849. weight: math.unit(150, "lbs"),
  7850. name: "Back",
  7851. image: {
  7852. source: "./media/characters/sovrim-terraquian/back.svg"
  7853. }
  7854. }
  7855. },
  7856. [
  7857. {
  7858. name: "Micro",
  7859. height: math.unit(2, "inches")
  7860. },
  7861. {
  7862. name: "Small",
  7863. height: math.unit(1, "meter")
  7864. },
  7865. {
  7866. name: "Normal",
  7867. height: math.unit(Math.E, "meters"),
  7868. default: true
  7869. },
  7870. {
  7871. name: "Macro",
  7872. height: math.unit(20, "meters")
  7873. },
  7874. {
  7875. name: "Macro+",
  7876. height: math.unit(400, "meters")
  7877. },
  7878. ]
  7879. ))
  7880. characterMakers.push(() => makeCharacter(
  7881. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7882. {
  7883. front: {
  7884. height: math.unit(7, "feet"),
  7885. weight: math.unit(489, "lbs"),
  7886. name: "Front",
  7887. image: {
  7888. source: "./media/characters/reece-silvermane/front.svg",
  7889. bottom: 0.02,
  7890. extra: 1
  7891. }
  7892. },
  7893. },
  7894. [
  7895. {
  7896. name: "Macro",
  7897. height: math.unit(1.5, "miles"),
  7898. default: true
  7899. },
  7900. ]
  7901. ))
  7902. characterMakers.push(() => makeCharacter(
  7903. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7904. {
  7905. front: {
  7906. height: math.unit(6, "feet"),
  7907. weight: math.unit(78, "kg"),
  7908. name: "Front",
  7909. image: {
  7910. source: "./media/characters/kane/front.svg",
  7911. extra: 978 / 899
  7912. }
  7913. },
  7914. },
  7915. [
  7916. {
  7917. name: "Normal",
  7918. height: math.unit(2.1, "m"),
  7919. },
  7920. {
  7921. name: "Macro",
  7922. height: math.unit(1, "km"),
  7923. default: true
  7924. },
  7925. ]
  7926. ))
  7927. characterMakers.push(() => makeCharacter(
  7928. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7929. {
  7930. front: {
  7931. height: math.unit(6, "feet"),
  7932. weight: math.unit(200, "kg"),
  7933. name: "Front",
  7934. image: {
  7935. source: "./media/characters/tegon/front.svg",
  7936. bottom: 0.01,
  7937. extra: 1
  7938. }
  7939. },
  7940. },
  7941. [
  7942. {
  7943. name: "Micro",
  7944. height: math.unit(1, "inch")
  7945. },
  7946. {
  7947. name: "Normal",
  7948. height: math.unit(6 + 3 / 12, "feet"),
  7949. default: true
  7950. },
  7951. {
  7952. name: "Macro",
  7953. height: math.unit(300, "feet")
  7954. },
  7955. {
  7956. name: "Megamacro",
  7957. height: math.unit(69, "miles")
  7958. },
  7959. ]
  7960. ))
  7961. characterMakers.push(() => makeCharacter(
  7962. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7963. {
  7964. side: {
  7965. height: math.unit(6, "feet"),
  7966. weight: math.unit(2304, "lbs"),
  7967. name: "Side",
  7968. image: {
  7969. source: "./media/characters/arcturax/side.svg",
  7970. extra: 790 / 376,
  7971. bottom: 0.01
  7972. }
  7973. },
  7974. },
  7975. [
  7976. {
  7977. name: "Micro",
  7978. height: math.unit(2, "inch")
  7979. },
  7980. {
  7981. name: "Normal",
  7982. height: math.unit(6, "feet")
  7983. },
  7984. {
  7985. name: "Macro",
  7986. height: math.unit(39, "feet"),
  7987. default: true
  7988. },
  7989. {
  7990. name: "Megamacro",
  7991. height: math.unit(7, "miles")
  7992. },
  7993. ]
  7994. ))
  7995. characterMakers.push(() => makeCharacter(
  7996. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7997. {
  7998. front: {
  7999. height: math.unit(6, "feet"),
  8000. weight: math.unit(50, "lbs"),
  8001. name: "Front",
  8002. image: {
  8003. source: "./media/characters/sentri/front.svg",
  8004. extra: 1750 / 1570,
  8005. bottom: 0.025
  8006. }
  8007. },
  8008. frontAlt: {
  8009. height: math.unit(6, "feet"),
  8010. weight: math.unit(50, "lbs"),
  8011. name: "Front (Alt)",
  8012. image: {
  8013. source: "./media/characters/sentri/front-alt.svg",
  8014. extra: 1750 / 1570,
  8015. bottom: 0.025
  8016. }
  8017. },
  8018. },
  8019. [
  8020. {
  8021. name: "Normal",
  8022. height: math.unit(15, "feet"),
  8023. default: true
  8024. },
  8025. {
  8026. name: "Macro",
  8027. height: math.unit(2500, "feet")
  8028. }
  8029. ]
  8030. ))
  8031. characterMakers.push(() => makeCharacter(
  8032. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8033. {
  8034. front: {
  8035. height: math.unit(5 + 8 / 12, "feet"),
  8036. weight: math.unit(130, "lbs"),
  8037. name: "Front",
  8038. image: {
  8039. source: "./media/characters/corvin/front.svg",
  8040. extra: 1803 / 1629
  8041. }
  8042. },
  8043. frontShirt: {
  8044. height: math.unit(5 + 8 / 12, "feet"),
  8045. weight: math.unit(130, "lbs"),
  8046. name: "Front (Shirt)",
  8047. image: {
  8048. source: "./media/characters/corvin/front-shirt.svg",
  8049. extra: 1803 / 1629
  8050. }
  8051. },
  8052. frontPoncho: {
  8053. height: math.unit(5 + 8 / 12, "feet"),
  8054. weight: math.unit(130, "lbs"),
  8055. name: "Front (Poncho)",
  8056. image: {
  8057. source: "./media/characters/corvin/front-poncho.svg",
  8058. extra: 1803 / 1629
  8059. }
  8060. },
  8061. side: {
  8062. height: math.unit(5 + 8 / 12, "feet"),
  8063. weight: math.unit(130, "lbs"),
  8064. name: "Side",
  8065. image: {
  8066. source: "./media/characters/corvin/side.svg",
  8067. extra: 1012 / 945
  8068. }
  8069. },
  8070. back: {
  8071. height: math.unit(5 + 8 / 12, "feet"),
  8072. weight: math.unit(130, "lbs"),
  8073. name: "Back",
  8074. image: {
  8075. source: "./media/characters/corvin/back.svg",
  8076. extra: 1803 / 1629
  8077. }
  8078. },
  8079. },
  8080. [
  8081. {
  8082. name: "Micro",
  8083. height: math.unit(3, "inches")
  8084. },
  8085. {
  8086. name: "Normal",
  8087. height: math.unit(5 + 8 / 12, "feet")
  8088. },
  8089. {
  8090. name: "Macro",
  8091. height: math.unit(300, "feet"),
  8092. default: true
  8093. },
  8094. {
  8095. name: "Megamacro",
  8096. height: math.unit(500, "miles")
  8097. }
  8098. ]
  8099. ))
  8100. characterMakers.push(() => makeCharacter(
  8101. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8102. {
  8103. front: {
  8104. height: math.unit(6, "feet"),
  8105. weight: math.unit(135, "lbs"),
  8106. name: "Front",
  8107. image: {
  8108. source: "./media/characters/q/front.svg",
  8109. extra: 854 / 752,
  8110. bottom: 0.005
  8111. }
  8112. },
  8113. back: {
  8114. height: math.unit(6, "feet"),
  8115. weight: math.unit(130, "lbs"),
  8116. name: "Back",
  8117. image: {
  8118. source: "./media/characters/q/back.svg",
  8119. extra: 854 / 752
  8120. }
  8121. },
  8122. },
  8123. [
  8124. {
  8125. name: "Macro",
  8126. height: math.unit(90, "feet"),
  8127. default: true
  8128. },
  8129. {
  8130. name: "Extra Macro",
  8131. height: math.unit(300, "feet"),
  8132. },
  8133. {
  8134. name: "BIG WALF",
  8135. height: math.unit(750, "feet"),
  8136. },
  8137. ]
  8138. ))
  8139. characterMakers.push(() => makeCharacter(
  8140. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8141. {
  8142. front: {
  8143. height: math.unit(6, "feet"),
  8144. weight: math.unit(150, "lbs"),
  8145. name: "Front",
  8146. image: {
  8147. source: "./media/characters/carley/front.svg",
  8148. extra: 3927 / 3540,
  8149. bottom: 29.2 / 735
  8150. }
  8151. }
  8152. },
  8153. [
  8154. {
  8155. name: "Normal",
  8156. height: math.unit(6 + 3 / 12, "feet")
  8157. },
  8158. {
  8159. name: "Macro",
  8160. height: math.unit(185, "feet"),
  8161. default: true
  8162. },
  8163. {
  8164. name: "Megamacro",
  8165. height: math.unit(8, "miles"),
  8166. },
  8167. ]
  8168. ))
  8169. characterMakers.push(() => makeCharacter(
  8170. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8171. {
  8172. front: {
  8173. height: math.unit(3, "feet"),
  8174. weight: math.unit(28, "lbs"),
  8175. name: "Front",
  8176. image: {
  8177. source: "./media/characters/citrine/front.svg"
  8178. }
  8179. }
  8180. },
  8181. [
  8182. {
  8183. name: "Normal",
  8184. height: math.unit(3, "feet"),
  8185. default: true
  8186. }
  8187. ]
  8188. ))
  8189. characterMakers.push(() => makeCharacter(
  8190. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8191. {
  8192. front: {
  8193. height: math.unit(14, "feet"),
  8194. weight: math.unit(1450, "kg"),
  8195. capacity: math.unit(15, "people"),
  8196. name: "Front",
  8197. image: {
  8198. source: "./media/characters/aura-starwind/front.svg",
  8199. extra: 1440/1327,
  8200. bottom: 11/1451
  8201. }
  8202. },
  8203. side: {
  8204. height: math.unit(14, "feet"),
  8205. weight: math.unit(1450, "kg"),
  8206. capacity: math.unit(15, "people"),
  8207. name: "Side",
  8208. image: {
  8209. source: "./media/characters/aura-starwind/side.svg",
  8210. extra: 1654 / 1497
  8211. }
  8212. },
  8213. taur: {
  8214. height: math.unit(18, "feet"),
  8215. weight: math.unit(5500, "kg"),
  8216. capacity: math.unit(50, "people"),
  8217. name: "Taur",
  8218. image: {
  8219. source: "./media/characters/aura-starwind/taur.svg",
  8220. extra: 1760 / 1650
  8221. }
  8222. },
  8223. feral: {
  8224. height: math.unit(46, "feet"),
  8225. weight: math.unit(25000, "kg"),
  8226. capacity: math.unit(120, "people"),
  8227. name: "Feral",
  8228. image: {
  8229. source: "./media/characters/aura-starwind/feral.svg"
  8230. }
  8231. },
  8232. },
  8233. [
  8234. {
  8235. name: "Normal",
  8236. height: math.unit(14, "feet"),
  8237. default: true
  8238. },
  8239. {
  8240. name: "Macro",
  8241. height: math.unit(50, "meters")
  8242. },
  8243. {
  8244. name: "Megamacro",
  8245. height: math.unit(5000, "meters")
  8246. },
  8247. {
  8248. name: "Gigamacro",
  8249. height: math.unit(100000, "kilometers")
  8250. },
  8251. ]
  8252. ))
  8253. characterMakers.push(() => makeCharacter(
  8254. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8255. {
  8256. front: {
  8257. height: math.unit(2 + 7 / 12, "feet"),
  8258. weight: math.unit(32, "lbs"),
  8259. name: "Front",
  8260. image: {
  8261. source: "./media/characters/rivet/front.svg",
  8262. extra: 1716 / 1658,
  8263. bottom: 0.03
  8264. }
  8265. },
  8266. foot: {
  8267. height: math.unit(0.551, "feet"),
  8268. name: "Rivet's Foot",
  8269. image: {
  8270. source: "./media/characters/rivet/foot.svg"
  8271. },
  8272. rename: true
  8273. }
  8274. },
  8275. [
  8276. {
  8277. name: "Micro",
  8278. height: math.unit(1.5, "inches"),
  8279. },
  8280. {
  8281. name: "Normal",
  8282. height: math.unit(2 + 7 / 12, "feet"),
  8283. default: true
  8284. },
  8285. {
  8286. name: "Macro",
  8287. height: math.unit(85, "feet")
  8288. },
  8289. {
  8290. name: "Megamacro",
  8291. height: math.unit(2.2, "km")
  8292. }
  8293. ]
  8294. ))
  8295. characterMakers.push(() => makeCharacter(
  8296. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8297. {
  8298. front: {
  8299. height: math.unit(5 + 9 / 12, "feet"),
  8300. weight: math.unit(150, "lbs"),
  8301. name: "Front",
  8302. image: {
  8303. source: "./media/characters/coffee/front.svg",
  8304. extra: 3666 / 3032,
  8305. bottom: 0.04
  8306. }
  8307. },
  8308. foot: {
  8309. height: math.unit(1.29, "feet"),
  8310. name: "Foot",
  8311. image: {
  8312. source: "./media/characters/coffee/foot.svg"
  8313. }
  8314. },
  8315. },
  8316. [
  8317. {
  8318. name: "Micro",
  8319. height: math.unit(2, "inches"),
  8320. },
  8321. {
  8322. name: "Normal",
  8323. height: math.unit(5 + 9 / 12, "feet"),
  8324. default: true
  8325. },
  8326. {
  8327. name: "Macro",
  8328. height: math.unit(800, "feet")
  8329. },
  8330. {
  8331. name: "Megamacro",
  8332. height: math.unit(25, "miles")
  8333. }
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8338. {
  8339. front: {
  8340. height: math.unit(6, "feet"),
  8341. weight: math.unit(200, "lbs"),
  8342. name: "Front",
  8343. image: {
  8344. source: "./media/characters/chari-gal/front.svg",
  8345. extra: 1568 / 1385,
  8346. bottom: 0.047
  8347. }
  8348. },
  8349. gigantamax: {
  8350. height: math.unit(6 * 16, "feet"),
  8351. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8352. name: "Gigantamax",
  8353. image: {
  8354. source: "./media/characters/chari-gal/gigantamax.svg",
  8355. extra: 1124 / 888,
  8356. bottom: 0.03
  8357. }
  8358. },
  8359. },
  8360. [
  8361. {
  8362. name: "Normal",
  8363. height: math.unit(5 + 7 / 12, "feet")
  8364. },
  8365. {
  8366. name: "Macro",
  8367. height: math.unit(200, "feet"),
  8368. default: true
  8369. }
  8370. ]
  8371. ))
  8372. characterMakers.push(() => makeCharacter(
  8373. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8374. {
  8375. front: {
  8376. height: math.unit(6, "feet"),
  8377. weight: math.unit(150, "lbs"),
  8378. name: "Front",
  8379. image: {
  8380. source: "./media/characters/nova/front.svg",
  8381. extra: 5000 / 4722,
  8382. bottom: 0.02
  8383. }
  8384. }
  8385. },
  8386. [
  8387. {
  8388. name: "Micro-",
  8389. height: math.unit(0.8, "inches")
  8390. },
  8391. {
  8392. name: "Micro",
  8393. height: math.unit(2, "inches"),
  8394. default: true
  8395. },
  8396. ]
  8397. ))
  8398. characterMakers.push(() => makeCharacter(
  8399. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8400. {
  8401. front: {
  8402. height: math.unit(3 + 1 / 12, "feet"),
  8403. weight: math.unit(21.7, "lbs"),
  8404. name: "Front",
  8405. image: {
  8406. source: "./media/characters/argent/front.svg",
  8407. extra: 1471 / 1331,
  8408. bottom: 100.8 / 1575.5
  8409. }
  8410. }
  8411. },
  8412. [
  8413. {
  8414. name: "Micro",
  8415. height: math.unit(2, "inches")
  8416. },
  8417. {
  8418. name: "Normal",
  8419. height: math.unit(3 + 1 / 12, "feet"),
  8420. default: true
  8421. },
  8422. {
  8423. name: "Macro",
  8424. height: math.unit(120, "feet")
  8425. },
  8426. ]
  8427. ))
  8428. characterMakers.push(() => makeCharacter(
  8429. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8430. {
  8431. lamp: {
  8432. height: math.unit(7 * 1559 / 989, "feet"),
  8433. name: "Magic Lamp",
  8434. image: {
  8435. source: "./media/characters/mira-al-cul/lamp.svg",
  8436. extra: 1617 / 1559
  8437. }
  8438. },
  8439. front: {
  8440. height: math.unit(7, "feet"),
  8441. name: "Front",
  8442. image: {
  8443. source: "./media/characters/mira-al-cul/front.svg",
  8444. extra: 1044 / 990
  8445. }
  8446. },
  8447. },
  8448. [
  8449. {
  8450. name: "Heavily Restricted",
  8451. height: math.unit(7 * 1559 / 989, "feet")
  8452. },
  8453. {
  8454. name: "Freshly Freed",
  8455. height: math.unit(50 * 1559 / 989, "feet")
  8456. },
  8457. {
  8458. name: "World Encompassing",
  8459. height: math.unit(10000 * 1559 / 989, "miles")
  8460. },
  8461. {
  8462. name: "Galactic",
  8463. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8464. },
  8465. {
  8466. name: "Palmed Universe",
  8467. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8468. default: true
  8469. },
  8470. {
  8471. name: "Multiversal Matriarch",
  8472. height: math.unit(8.87e10, "yottameters")
  8473. },
  8474. {
  8475. name: "Void Mother",
  8476. height: math.unit(3.14e110, "yottaparsecs")
  8477. },
  8478. {
  8479. name: "Toying with Transcendence",
  8480. height: math.unit(1e307, "meters")
  8481. },
  8482. ]
  8483. ))
  8484. characterMakers.push(() => makeCharacter(
  8485. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8486. {
  8487. front: {
  8488. height: math.unit(17 + 1 / 12, "feet"),
  8489. weight: math.unit(476.2 * 5, "lbs"),
  8490. name: "Front",
  8491. image: {
  8492. source: "./media/characters/kuro-shi-uchū/front.svg",
  8493. extra: 2329 / 1835,
  8494. bottom: 0.02
  8495. }
  8496. },
  8497. },
  8498. [
  8499. {
  8500. name: "Micro",
  8501. height: math.unit(2, "inches")
  8502. },
  8503. {
  8504. name: "Normal",
  8505. height: math.unit(12, "meters")
  8506. },
  8507. {
  8508. name: "Planetary",
  8509. height: math.unit(0.00929, "AU"),
  8510. default: true
  8511. },
  8512. {
  8513. name: "Universal",
  8514. height: math.unit(20, "gigaparsecs")
  8515. },
  8516. ]
  8517. ))
  8518. characterMakers.push(() => makeCharacter(
  8519. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8520. {
  8521. front: {
  8522. height: math.unit(5 + 2 / 12, "feet"),
  8523. weight: math.unit(120, "lbs"),
  8524. name: "Front",
  8525. image: {
  8526. source: "./media/characters/katherine/front.svg",
  8527. extra: 2075 / 1969
  8528. }
  8529. },
  8530. dress: {
  8531. height: math.unit(5 + 2 / 12, "feet"),
  8532. weight: math.unit(120, "lbs"),
  8533. name: "Dress",
  8534. image: {
  8535. source: "./media/characters/katherine/dress.svg",
  8536. extra: 2258 / 2064
  8537. }
  8538. },
  8539. },
  8540. [
  8541. {
  8542. name: "Micro",
  8543. height: math.unit(1, "inches"),
  8544. default: true
  8545. },
  8546. {
  8547. name: "Normal",
  8548. height: math.unit(5 + 2 / 12, "feet")
  8549. },
  8550. {
  8551. name: "Macro",
  8552. height: math.unit(100, "meters")
  8553. },
  8554. {
  8555. name: "Megamacro",
  8556. height: math.unit(80, "miles")
  8557. },
  8558. ]
  8559. ))
  8560. characterMakers.push(() => makeCharacter(
  8561. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8562. {
  8563. front: {
  8564. height: math.unit(7 + 8 / 12, "feet"),
  8565. weight: math.unit(250, "lbs"),
  8566. name: "Front",
  8567. image: {
  8568. source: "./media/characters/yevis/front.svg",
  8569. extra: 1938 / 1755
  8570. }
  8571. }
  8572. },
  8573. [
  8574. {
  8575. name: "Mortal",
  8576. height: math.unit(7 + 8 / 12, "feet")
  8577. },
  8578. {
  8579. name: "Battle",
  8580. height: math.unit(25 + 11 / 12, "feet")
  8581. },
  8582. {
  8583. name: "Wrath",
  8584. height: math.unit(1654 + 11 / 12, "feet")
  8585. },
  8586. {
  8587. name: "Planet Destroyer",
  8588. height: math.unit(12000, "miles")
  8589. },
  8590. {
  8591. name: "Galaxy Conqueror",
  8592. height: math.unit(1.45, "zettameters"),
  8593. default: true
  8594. },
  8595. {
  8596. name: "Universal War",
  8597. height: math.unit(184, "gigaparsecs")
  8598. },
  8599. {
  8600. name: "Eternity War",
  8601. height: math.unit(1.98e55, "yottaparsecs")
  8602. },
  8603. ]
  8604. ))
  8605. characterMakers.push(() => makeCharacter(
  8606. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8607. {
  8608. front: {
  8609. height: math.unit(5 + 8 / 12, "feet"),
  8610. weight: math.unit(63, "kg"),
  8611. name: "Front",
  8612. image: {
  8613. source: "./media/characters/xavier/front.svg",
  8614. extra: 944 / 883
  8615. }
  8616. },
  8617. frontStretch: {
  8618. height: math.unit(5 + 8 / 12, "feet"),
  8619. weight: math.unit(63, "kg"),
  8620. name: "Stretching",
  8621. image: {
  8622. source: "./media/characters/xavier/front-stretch.svg",
  8623. extra: 962 / 820
  8624. }
  8625. },
  8626. },
  8627. [
  8628. {
  8629. name: "Normal",
  8630. height: math.unit(5 + 8 / 12, "feet")
  8631. },
  8632. {
  8633. name: "Macro",
  8634. height: math.unit(100, "meters"),
  8635. default: true
  8636. },
  8637. {
  8638. name: "McLargeHuge",
  8639. height: math.unit(10, "miles")
  8640. },
  8641. ]
  8642. ))
  8643. characterMakers.push(() => makeCharacter(
  8644. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8645. {
  8646. front: {
  8647. height: math.unit(5 + 5 / 12, "feet"),
  8648. weight: math.unit(150, "lb"),
  8649. name: "Front",
  8650. image: {
  8651. source: "./media/characters/joshii/front.svg",
  8652. extra: 765 / 653,
  8653. bottom: 51 / 816
  8654. }
  8655. },
  8656. foot: {
  8657. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8658. name: "Foot",
  8659. image: {
  8660. source: "./media/characters/joshii/foot.svg"
  8661. }
  8662. },
  8663. },
  8664. [
  8665. {
  8666. name: "Micro",
  8667. height: math.unit(2, "inches"),
  8668. default: true
  8669. },
  8670. {
  8671. name: "Normal",
  8672. height: math.unit(5 + 5 / 12, "feet")
  8673. },
  8674. {
  8675. name: "Macro",
  8676. height: math.unit(785, "feet")
  8677. },
  8678. {
  8679. name: "Megamacro",
  8680. height: math.unit(24.5, "miles")
  8681. },
  8682. ]
  8683. ))
  8684. characterMakers.push(() => makeCharacter(
  8685. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8686. {
  8687. front: {
  8688. height: math.unit(6, "feet"),
  8689. weight: math.unit(150, "lb"),
  8690. name: "Front",
  8691. image: {
  8692. source: "./media/characters/goddess-elizabeth/front.svg",
  8693. extra: 1800 / 1525,
  8694. bottom: 0.005
  8695. }
  8696. },
  8697. foot: {
  8698. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8699. name: "Foot",
  8700. image: {
  8701. source: "./media/characters/goddess-elizabeth/foot.svg"
  8702. }
  8703. },
  8704. mouth: {
  8705. height: math.unit(6, "feet"),
  8706. name: "Mouth",
  8707. image: {
  8708. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8709. }
  8710. },
  8711. },
  8712. [
  8713. {
  8714. name: "Micro",
  8715. height: math.unit(12, "feet")
  8716. },
  8717. {
  8718. name: "Normal",
  8719. height: math.unit(80, "miles"),
  8720. default: true
  8721. },
  8722. {
  8723. name: "Macro",
  8724. height: math.unit(15000, "parsecs")
  8725. },
  8726. ]
  8727. ))
  8728. characterMakers.push(() => makeCharacter(
  8729. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8730. {
  8731. front: {
  8732. height: math.unit(5 + 9 / 12, "feet"),
  8733. weight: math.unit(144, "lb"),
  8734. name: "Front",
  8735. image: {
  8736. source: "./media/characters/kara/front.svg"
  8737. }
  8738. },
  8739. feet: {
  8740. height: math.unit(6 / 6.765, "feet"),
  8741. name: "Kara's Feet",
  8742. rename: true,
  8743. image: {
  8744. source: "./media/characters/kara/feet.svg"
  8745. }
  8746. },
  8747. },
  8748. [
  8749. {
  8750. name: "Normal",
  8751. height: math.unit(5 + 9 / 12, "feet")
  8752. },
  8753. {
  8754. name: "Macro",
  8755. height: math.unit(174, "feet"),
  8756. default: true
  8757. },
  8758. ]
  8759. ))
  8760. characterMakers.push(() => makeCharacter(
  8761. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8762. {
  8763. front: {
  8764. height: math.unit(18, "feet"),
  8765. weight: math.unit(4050, "lb"),
  8766. name: "Front",
  8767. image: {
  8768. source: "./media/characters/tyrone/front.svg",
  8769. extra: 2405 / 2270,
  8770. bottom: 182 / 2587
  8771. }
  8772. },
  8773. },
  8774. [
  8775. {
  8776. name: "Normal",
  8777. height: math.unit(18, "feet"),
  8778. default: true
  8779. },
  8780. {
  8781. name: "Macro",
  8782. height: math.unit(300, "feet")
  8783. },
  8784. {
  8785. name: "Megamacro",
  8786. height: math.unit(15, "km")
  8787. },
  8788. {
  8789. name: "Gigamacro",
  8790. height: math.unit(500, "km")
  8791. },
  8792. {
  8793. name: "Teramacro",
  8794. height: math.unit(0.5, "gigameters")
  8795. },
  8796. {
  8797. name: "Omnimacro",
  8798. height: math.unit(1e252, "yottauniverse")
  8799. },
  8800. ]
  8801. ))
  8802. characterMakers.push(() => makeCharacter(
  8803. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8804. {
  8805. front: {
  8806. height: math.unit(7 + 8 / 12, "feet"),
  8807. weight: math.unit(120, "lb"),
  8808. name: "Front",
  8809. image: {
  8810. source: "./media/characters/danny/front.svg",
  8811. extra: 1490 / 1350
  8812. }
  8813. },
  8814. back: {
  8815. height: math.unit(7 + 8 / 12, "feet"),
  8816. weight: math.unit(120, "lb"),
  8817. name: "Back",
  8818. image: {
  8819. source: "./media/characters/danny/back.svg",
  8820. extra: 1490 / 1350
  8821. }
  8822. },
  8823. },
  8824. [
  8825. {
  8826. name: "Normal",
  8827. height: math.unit(7 + 8 / 12, "feet"),
  8828. default: true
  8829. },
  8830. ]
  8831. ))
  8832. characterMakers.push(() => makeCharacter(
  8833. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8834. {
  8835. front: {
  8836. height: math.unit(3.5, "inches"),
  8837. weight: math.unit(19, "grams"),
  8838. name: "Front",
  8839. image: {
  8840. source: "./media/characters/mallow/front.svg",
  8841. extra: 471 / 431
  8842. }
  8843. },
  8844. back: {
  8845. height: math.unit(3.5, "inches"),
  8846. weight: math.unit(19, "grams"),
  8847. name: "Back",
  8848. image: {
  8849. source: "./media/characters/mallow/back.svg",
  8850. extra: 471 / 431
  8851. }
  8852. },
  8853. },
  8854. [
  8855. {
  8856. name: "Normal",
  8857. height: math.unit(3.5, "inches"),
  8858. default: true
  8859. },
  8860. ]
  8861. ))
  8862. characterMakers.push(() => makeCharacter(
  8863. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8864. {
  8865. front: {
  8866. height: math.unit(9, "feet"),
  8867. weight: math.unit(230, "kg"),
  8868. name: "Front",
  8869. image: {
  8870. source: "./media/characters/starry-aqua/front.svg"
  8871. }
  8872. },
  8873. back: {
  8874. height: math.unit(9, "feet"),
  8875. weight: math.unit(230, "kg"),
  8876. name: "Back",
  8877. image: {
  8878. source: "./media/characters/starry-aqua/back.svg"
  8879. }
  8880. },
  8881. hand: {
  8882. height: math.unit(9 * 0.1168, "feet"),
  8883. name: "Hand",
  8884. image: {
  8885. source: "./media/characters/starry-aqua/hand.svg"
  8886. }
  8887. },
  8888. foot: {
  8889. height: math.unit(9 * 0.18, "feet"),
  8890. name: "Foot",
  8891. image: {
  8892. source: "./media/characters/starry-aqua/foot.svg"
  8893. }
  8894. }
  8895. },
  8896. [
  8897. {
  8898. name: "Micro",
  8899. height: math.unit(3, "inches")
  8900. },
  8901. {
  8902. name: "Normal",
  8903. height: math.unit(9, "feet")
  8904. },
  8905. {
  8906. name: "Macro",
  8907. height: math.unit(300, "feet"),
  8908. default: true
  8909. },
  8910. {
  8911. name: "Megamacro",
  8912. height: math.unit(3200, "feet")
  8913. }
  8914. ]
  8915. ))
  8916. characterMakers.push(() => makeCharacter(
  8917. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8918. {
  8919. front: {
  8920. height: math.unit(6, "feet"),
  8921. weight: math.unit(230, "lb"),
  8922. name: "Front",
  8923. image: {
  8924. source: "./media/characters/luka/front.svg",
  8925. extra: 1,
  8926. bottom: 0.025
  8927. }
  8928. },
  8929. },
  8930. [
  8931. {
  8932. name: "Normal",
  8933. height: math.unit(12 + 8 / 12, "feet"),
  8934. default: true
  8935. },
  8936. {
  8937. name: "Minimacro",
  8938. height: math.unit(20, "feet")
  8939. },
  8940. {
  8941. name: "Macro",
  8942. height: math.unit(250, "feet")
  8943. },
  8944. {
  8945. name: "Megamacro",
  8946. height: math.unit(5, "miles")
  8947. },
  8948. {
  8949. name: "Gigamacro",
  8950. height: math.unit(8000, "miles")
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(6, "feet"),
  8959. weight: math.unit(150, "lb"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/natalie-nightring/front.svg",
  8963. extra: 1,
  8964. bottom: 0.06
  8965. }
  8966. },
  8967. },
  8968. [
  8969. {
  8970. name: "Uh Oh",
  8971. height: math.unit(0.1, "mm")
  8972. },
  8973. {
  8974. name: "Small",
  8975. height: math.unit(3, "inches")
  8976. },
  8977. {
  8978. name: "Human Scale",
  8979. height: math.unit(6, "feet")
  8980. },
  8981. {
  8982. name: "Librarian",
  8983. height: math.unit(50, "feet"),
  8984. default: true
  8985. },
  8986. {
  8987. name: "Immense",
  8988. height: math.unit(200, "miles")
  8989. },
  8990. ]
  8991. ))
  8992. characterMakers.push(() => makeCharacter(
  8993. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8994. {
  8995. front: {
  8996. height: math.unit(6, "feet"),
  8997. weight: math.unit(180, "lbs"),
  8998. name: "Front",
  8999. image: {
  9000. source: "./media/characters/danni-rosie/front.svg",
  9001. extra: 1260 / 1128,
  9002. bottom: 0.022
  9003. }
  9004. },
  9005. },
  9006. [
  9007. {
  9008. name: "Micro",
  9009. height: math.unit(2, "inches"),
  9010. default: true
  9011. },
  9012. ]
  9013. ))
  9014. characterMakers.push(() => makeCharacter(
  9015. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9016. {
  9017. front: {
  9018. height: math.unit(5 + 9 / 12, "feet"),
  9019. weight: math.unit(220, "lb"),
  9020. name: "Front",
  9021. image: {
  9022. source: "./media/characters/samantha-kruse/front.svg",
  9023. extra: (985 / 935),
  9024. bottom: 0.03
  9025. }
  9026. },
  9027. frontUndressed: {
  9028. height: math.unit(5 + 9 / 12, "feet"),
  9029. weight: math.unit(220, "lb"),
  9030. name: "Front (Undressed)",
  9031. image: {
  9032. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9033. extra: (973 / 923),
  9034. bottom: 0.025
  9035. }
  9036. },
  9037. fat: {
  9038. height: math.unit(5 + 9 / 12, "feet"),
  9039. weight: math.unit(900, "lb"),
  9040. name: "Front (Fat)",
  9041. image: {
  9042. source: "./media/characters/samantha-kruse/fat.svg",
  9043. extra: 2688 / 2561
  9044. }
  9045. },
  9046. },
  9047. [
  9048. {
  9049. name: "Normal",
  9050. height: math.unit(5 + 9 / 12, "feet"),
  9051. default: true
  9052. }
  9053. ]
  9054. ))
  9055. characterMakers.push(() => makeCharacter(
  9056. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9057. {
  9058. back: {
  9059. height: math.unit(5 + 4 / 12, "feet"),
  9060. weight: math.unit(4963, "lb"),
  9061. name: "Back",
  9062. image: {
  9063. source: "./media/characters/amelia-rosie/back.svg",
  9064. extra: 1113 / 963,
  9065. bottom: 0.01
  9066. }
  9067. },
  9068. },
  9069. [
  9070. {
  9071. name: "Level 0",
  9072. height: math.unit(5 + 4 / 12, "feet")
  9073. },
  9074. {
  9075. name: "Level 1",
  9076. height: math.unit(164597, "feet"),
  9077. default: true
  9078. },
  9079. {
  9080. name: "Level 2",
  9081. height: math.unit(956243, "miles")
  9082. },
  9083. {
  9084. name: "Level 3",
  9085. height: math.unit(29421709423, "miles")
  9086. },
  9087. {
  9088. name: "Level 4",
  9089. height: math.unit(154, "lightyears")
  9090. },
  9091. {
  9092. name: "Level 5",
  9093. height: math.unit(4738272, "lightyears")
  9094. },
  9095. {
  9096. name: "Level 6",
  9097. height: math.unit(145787152896, "lightyears")
  9098. },
  9099. ]
  9100. ))
  9101. characterMakers.push(() => makeCharacter(
  9102. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9103. {
  9104. front: {
  9105. height: math.unit(5 + 11 / 12, "feet"),
  9106. weight: math.unit(65, "kg"),
  9107. name: "Front",
  9108. image: {
  9109. source: "./media/characters/rook-kitara/front.svg",
  9110. extra: 1347 / 1274,
  9111. bottom: 0.005
  9112. }
  9113. },
  9114. },
  9115. [
  9116. {
  9117. name: "Totally Unfair",
  9118. height: math.unit(1.8, "mm")
  9119. },
  9120. {
  9121. name: "Lap Rookie",
  9122. height: math.unit(1.4, "feet")
  9123. },
  9124. {
  9125. name: "Normal",
  9126. height: math.unit(5 + 11 / 12, "feet"),
  9127. default: true
  9128. },
  9129. {
  9130. name: "How Did This Happen",
  9131. height: math.unit(80, "miles")
  9132. }
  9133. ]
  9134. ))
  9135. characterMakers.push(() => makeCharacter(
  9136. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9137. {
  9138. front: {
  9139. height: math.unit(7, "feet"),
  9140. weight: math.unit(300, "lb"),
  9141. name: "Front",
  9142. image: {
  9143. source: "./media/characters/pisces/front.svg",
  9144. extra: 2255 / 2115,
  9145. bottom: 0.03
  9146. }
  9147. },
  9148. back: {
  9149. height: math.unit(7, "feet"),
  9150. weight: math.unit(300, "lb"),
  9151. name: "Back",
  9152. image: {
  9153. source: "./media/characters/pisces/back.svg",
  9154. extra: 2146 / 2055,
  9155. bottom: 0.04
  9156. }
  9157. },
  9158. },
  9159. [
  9160. {
  9161. name: "Normal",
  9162. height: math.unit(7, "feet"),
  9163. default: true
  9164. },
  9165. {
  9166. name: "Swimming Pool",
  9167. height: math.unit(12.2, "meters")
  9168. },
  9169. {
  9170. name: "Olympic Swimming Pool",
  9171. height: math.unit(56.3, "meters")
  9172. },
  9173. {
  9174. name: "Lake Superior",
  9175. height: math.unit(93900, "meters")
  9176. },
  9177. {
  9178. name: "Mediterranean Sea",
  9179. height: math.unit(644457, "meters")
  9180. },
  9181. {
  9182. name: "World's Oceans",
  9183. height: math.unit(4567491, "meters")
  9184. },
  9185. ]
  9186. ))
  9187. characterMakers.push(() => makeCharacter(
  9188. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9189. {
  9190. front: {
  9191. height: math.unit(2.3, "meters"),
  9192. weight: math.unit(120, "kg"),
  9193. name: "Front",
  9194. image: {
  9195. source: "./media/characters/zelas/front.svg"
  9196. }
  9197. },
  9198. side: {
  9199. height: math.unit(2.3, "meters"),
  9200. weight: math.unit(120, "kg"),
  9201. name: "Side",
  9202. image: {
  9203. source: "./media/characters/zelas/side.svg"
  9204. }
  9205. },
  9206. back: {
  9207. height: math.unit(2.3, "meters"),
  9208. weight: math.unit(120, "kg"),
  9209. name: "Back",
  9210. image: {
  9211. source: "./media/characters/zelas/back.svg"
  9212. }
  9213. },
  9214. foot: {
  9215. height: math.unit(1.116, "feet"),
  9216. name: "Foot",
  9217. image: {
  9218. source: "./media/characters/zelas/foot.svg"
  9219. }
  9220. },
  9221. },
  9222. [
  9223. {
  9224. name: "Normal",
  9225. height: math.unit(2.3, "meters")
  9226. },
  9227. {
  9228. name: "Macro",
  9229. height: math.unit(30, "meters"),
  9230. default: true
  9231. },
  9232. ]
  9233. ))
  9234. characterMakers.push(() => makeCharacter(
  9235. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9236. {
  9237. front: {
  9238. height: math.unit(1, "inch"),
  9239. weight: math.unit(0.21, "grams"),
  9240. name: "Front",
  9241. image: {
  9242. source: "./media/characters/talbot/front.svg",
  9243. extra: 594 / 544
  9244. }
  9245. },
  9246. },
  9247. [
  9248. {
  9249. name: "Micro",
  9250. height: math.unit(1, "inch"),
  9251. default: true
  9252. },
  9253. ]
  9254. ))
  9255. characterMakers.push(() => makeCharacter(
  9256. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9257. {
  9258. front: {
  9259. height: math.unit(3 + 3 / 12, "feet"),
  9260. weight: math.unit(51.8, "lb"),
  9261. name: "Front",
  9262. image: {
  9263. source: "./media/characters/fliss/front.svg",
  9264. extra: 840 / 640
  9265. }
  9266. },
  9267. },
  9268. [
  9269. {
  9270. name: "Teeny Tiny",
  9271. height: math.unit(1, "mm")
  9272. },
  9273. {
  9274. name: "Small",
  9275. height: math.unit(1, "inch"),
  9276. default: true
  9277. },
  9278. {
  9279. name: "Standard Sylveon",
  9280. height: math.unit(3 + 3 / 12, "feet")
  9281. },
  9282. {
  9283. name: "Large Nuisance",
  9284. height: math.unit(33, "feet")
  9285. },
  9286. {
  9287. name: "City Filler",
  9288. height: math.unit(3000, "feet")
  9289. },
  9290. {
  9291. name: "New Horizon",
  9292. height: math.unit(6000, "miles")
  9293. },
  9294. ]
  9295. ))
  9296. characterMakers.push(() => makeCharacter(
  9297. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9298. {
  9299. front: {
  9300. height: math.unit(5, "cm"),
  9301. weight: math.unit(1.94, "g"),
  9302. name: "Front",
  9303. image: {
  9304. source: "./media/characters/fleta/front.svg",
  9305. extra: 835 / 803
  9306. }
  9307. },
  9308. back: {
  9309. height: math.unit(5, "cm"),
  9310. weight: math.unit(1.94, "g"),
  9311. name: "Back",
  9312. image: {
  9313. source: "./media/characters/fleta/back.svg",
  9314. extra: 835 / 803
  9315. }
  9316. },
  9317. },
  9318. [
  9319. {
  9320. name: "Micro",
  9321. height: math.unit(5, "cm"),
  9322. default: true
  9323. },
  9324. ]
  9325. ))
  9326. characterMakers.push(() => makeCharacter(
  9327. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9328. {
  9329. front: {
  9330. height: math.unit(6, "feet"),
  9331. weight: math.unit(225, "lb"),
  9332. name: "Front",
  9333. image: {
  9334. source: "./media/characters/dominic/front.svg",
  9335. extra: 1770 / 1620,
  9336. bottom: 0.025
  9337. }
  9338. },
  9339. back: {
  9340. height: math.unit(6, "feet"),
  9341. weight: math.unit(225, "lb"),
  9342. name: "Back",
  9343. image: {
  9344. source: "./media/characters/dominic/back.svg",
  9345. extra: 1745 / 1620,
  9346. bottom: 0.065
  9347. }
  9348. },
  9349. },
  9350. [
  9351. {
  9352. name: "Nano",
  9353. height: math.unit(0.1, "mm")
  9354. },
  9355. {
  9356. name: "Micro-",
  9357. height: math.unit(1, "mm")
  9358. },
  9359. {
  9360. name: "Micro",
  9361. height: math.unit(4, "inches")
  9362. },
  9363. {
  9364. name: "Normal",
  9365. height: math.unit(6 + 4 / 12, "feet"),
  9366. default: true
  9367. },
  9368. {
  9369. name: "Macro",
  9370. height: math.unit(115, "feet")
  9371. },
  9372. {
  9373. name: "Macro+",
  9374. height: math.unit(955, "feet")
  9375. },
  9376. {
  9377. name: "Megamacro",
  9378. height: math.unit(8990, "feet")
  9379. },
  9380. {
  9381. name: "Gigmacro",
  9382. height: math.unit(9310, "miles")
  9383. },
  9384. {
  9385. name: "Teramacro",
  9386. height: math.unit(1567005010, "miles")
  9387. },
  9388. {
  9389. name: "Examacro",
  9390. height: math.unit(1425, "parsecs")
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9396. {
  9397. front: {
  9398. height: math.unit(400, "feet"),
  9399. weight: math.unit(44444444, "lb"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/major-colonel/front.svg"
  9403. }
  9404. },
  9405. back: {
  9406. height: math.unit(400, "feet"),
  9407. weight: math.unit(44444444, "lb"),
  9408. name: "Back",
  9409. image: {
  9410. source: "./media/characters/major-colonel/back.svg"
  9411. }
  9412. },
  9413. },
  9414. [
  9415. {
  9416. name: "Macro",
  9417. height: math.unit(400, "feet"),
  9418. default: true
  9419. },
  9420. ]
  9421. ))
  9422. characterMakers.push(() => makeCharacter(
  9423. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9424. {
  9425. catFront: {
  9426. height: math.unit(6, "feet"),
  9427. weight: math.unit(120, "lb"),
  9428. name: "Front (Cat Side)",
  9429. image: {
  9430. source: "./media/characters/axel-lycan/cat-front.svg",
  9431. extra: 430 / 402,
  9432. bottom: 43 / 472.35
  9433. }
  9434. },
  9435. catBack: {
  9436. height: math.unit(6, "feet"),
  9437. weight: math.unit(120, "lb"),
  9438. name: "Back (Cat Side)",
  9439. image: {
  9440. source: "./media/characters/axel-lycan/cat-back.svg",
  9441. extra: 447 / 419,
  9442. bottom: 23.3 / 469
  9443. }
  9444. },
  9445. wolfFront: {
  9446. height: math.unit(6, "feet"),
  9447. weight: math.unit(120, "lb"),
  9448. name: "Front (Wolf Side)",
  9449. image: {
  9450. source: "./media/characters/axel-lycan/wolf-front.svg",
  9451. extra: 485 / 456,
  9452. bottom: 19 / 504
  9453. }
  9454. },
  9455. wolfBack: {
  9456. height: math.unit(6, "feet"),
  9457. weight: math.unit(120, "lb"),
  9458. name: "Back (Wolf Side)",
  9459. image: {
  9460. source: "./media/characters/axel-lycan/wolf-back.svg",
  9461. extra: 475 / 438,
  9462. bottom: 39.2 / 514
  9463. }
  9464. },
  9465. },
  9466. [
  9467. {
  9468. name: "Macro",
  9469. height: math.unit(1, "km"),
  9470. default: true
  9471. },
  9472. ]
  9473. ))
  9474. characterMakers.push(() => makeCharacter(
  9475. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9476. {
  9477. front: {
  9478. height: math.unit(5 + 9 / 12, "feet"),
  9479. weight: math.unit(175, "lb"),
  9480. name: "Front",
  9481. image: {
  9482. source: "./media/characters/vanrel-hyena/front.svg",
  9483. extra: 1086 / 1010,
  9484. bottom: 0.04
  9485. }
  9486. },
  9487. },
  9488. [
  9489. {
  9490. name: "Normal",
  9491. height: math.unit(5 + 9 / 12, "feet"),
  9492. default: true
  9493. },
  9494. ]
  9495. ))
  9496. characterMakers.push(() => makeCharacter(
  9497. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9498. {
  9499. front: {
  9500. height: math.unit(6, "feet"),
  9501. weight: math.unit(103, "lb"),
  9502. name: "Front",
  9503. image: {
  9504. source: "./media/characters/abbott-absol/front.svg",
  9505. extra: 2010 / 1842
  9506. }
  9507. },
  9508. },
  9509. [
  9510. {
  9511. name: "Megamicro",
  9512. height: math.unit(0.1, "mm")
  9513. },
  9514. {
  9515. name: "Micro",
  9516. height: math.unit(1, "inch")
  9517. },
  9518. {
  9519. name: "Normal",
  9520. height: math.unit(6, "feet"),
  9521. default: true
  9522. },
  9523. ]
  9524. ))
  9525. characterMakers.push(() => makeCharacter(
  9526. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9527. {
  9528. front: {
  9529. height: math.unit(6, "feet"),
  9530. weight: math.unit(264, "lb"),
  9531. name: "Front",
  9532. image: {
  9533. source: "./media/characters/hector/front.svg",
  9534. extra: 2280 / 2130,
  9535. bottom: 0.07
  9536. }
  9537. },
  9538. },
  9539. [
  9540. {
  9541. name: "Normal",
  9542. height: math.unit(12.25, "foot"),
  9543. default: true
  9544. },
  9545. {
  9546. name: "Macro",
  9547. height: math.unit(160, "feet")
  9548. },
  9549. ]
  9550. ))
  9551. characterMakers.push(() => makeCharacter(
  9552. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9553. {
  9554. front: {
  9555. height: math.unit(6, "feet"),
  9556. weight: math.unit(150, "lb"),
  9557. name: "Front",
  9558. image: {
  9559. source: "./media/characters/sal/front.svg",
  9560. extra: 1846 / 1699,
  9561. bottom: 0.04
  9562. }
  9563. },
  9564. },
  9565. [
  9566. {
  9567. name: "Megamacro",
  9568. height: math.unit(10, "miles"),
  9569. default: true
  9570. },
  9571. ]
  9572. ))
  9573. characterMakers.push(() => makeCharacter(
  9574. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9575. {
  9576. front: {
  9577. height: math.unit(3, "meters"),
  9578. weight: math.unit(450, "kg"),
  9579. name: "front",
  9580. image: {
  9581. source: "./media/characters/ranger/front.svg",
  9582. extra: 2401 / 2243,
  9583. bottom: 0.05
  9584. }
  9585. },
  9586. },
  9587. [
  9588. {
  9589. name: "Normal",
  9590. height: math.unit(3, "meters"),
  9591. default: true
  9592. },
  9593. ]
  9594. ))
  9595. characterMakers.push(() => makeCharacter(
  9596. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9597. {
  9598. front: {
  9599. height: math.unit(14, "feet"),
  9600. weight: math.unit(800, "kg"),
  9601. name: "Front",
  9602. image: {
  9603. source: "./media/characters/theresa/front.svg",
  9604. extra: 3575 / 3346,
  9605. bottom: 0.03
  9606. }
  9607. },
  9608. },
  9609. [
  9610. {
  9611. name: "Normal",
  9612. height: math.unit(14, "feet"),
  9613. default: true
  9614. },
  9615. ]
  9616. ))
  9617. characterMakers.push(() => makeCharacter(
  9618. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9619. {
  9620. front: {
  9621. height: math.unit(6, "feet"),
  9622. weight: math.unit(3, "kg"),
  9623. name: "Front",
  9624. image: {
  9625. source: "./media/characters/ine/front.svg",
  9626. extra: 678 / 539,
  9627. bottom: 0.023
  9628. }
  9629. },
  9630. },
  9631. [
  9632. {
  9633. name: "Normal",
  9634. height: math.unit(2.265, "feet"),
  9635. default: true
  9636. },
  9637. ]
  9638. ))
  9639. characterMakers.push(() => makeCharacter(
  9640. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9641. {
  9642. front: {
  9643. height: math.unit(5, "feet"),
  9644. weight: math.unit(30, "kg"),
  9645. name: "Front",
  9646. image: {
  9647. source: "./media/characters/vial/front.svg",
  9648. extra: 1365 / 1277,
  9649. bottom: 0.04
  9650. }
  9651. },
  9652. },
  9653. [
  9654. {
  9655. name: "Normal",
  9656. height: math.unit(5, "feet"),
  9657. default: true
  9658. },
  9659. ]
  9660. ))
  9661. characterMakers.push(() => makeCharacter(
  9662. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9663. {
  9664. side: {
  9665. height: math.unit(3.4, "meters"),
  9666. weight: math.unit(1000, "lb"),
  9667. name: "Side",
  9668. image: {
  9669. source: "./media/characters/rovoska/side.svg",
  9670. extra: 4403 / 1515
  9671. }
  9672. },
  9673. },
  9674. [
  9675. {
  9676. name: "Normal",
  9677. height: math.unit(3.4, "meters"),
  9678. default: true
  9679. },
  9680. ]
  9681. ))
  9682. characterMakers.push(() => makeCharacter(
  9683. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9684. {
  9685. front: {
  9686. height: math.unit(8, "feet"),
  9687. weight: math.unit(315, "lb"),
  9688. name: "Front",
  9689. image: {
  9690. source: "./media/characters/gunner-rotthbauer/front.svg"
  9691. }
  9692. },
  9693. back: {
  9694. height: math.unit(8, "feet"),
  9695. weight: math.unit(315, "lb"),
  9696. name: "Back",
  9697. image: {
  9698. source: "./media/characters/gunner-rotthbauer/back.svg"
  9699. }
  9700. },
  9701. },
  9702. [
  9703. {
  9704. name: "Micro",
  9705. height: math.unit(3.5, "inches")
  9706. },
  9707. {
  9708. name: "Normal",
  9709. height: math.unit(8, "feet"),
  9710. default: true
  9711. },
  9712. {
  9713. name: "Macro",
  9714. height: math.unit(250, "feet")
  9715. },
  9716. {
  9717. name: "Megamacro",
  9718. height: math.unit(1, "AU")
  9719. },
  9720. ]
  9721. ))
  9722. characterMakers.push(() => makeCharacter(
  9723. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9724. {
  9725. front: {
  9726. height: math.unit(5 + 5 / 12, "feet"),
  9727. weight: math.unit(140, "lb"),
  9728. name: "Front",
  9729. image: {
  9730. source: "./media/characters/allatia/front.svg",
  9731. extra: 1227 / 1180,
  9732. bottom: 0.027
  9733. }
  9734. },
  9735. },
  9736. [
  9737. {
  9738. name: "Normal",
  9739. height: math.unit(5 + 5 / 12, "feet")
  9740. },
  9741. {
  9742. name: "Macro",
  9743. height: math.unit(250, "feet"),
  9744. default: true
  9745. },
  9746. {
  9747. name: "Megamacro",
  9748. height: math.unit(8, "miles")
  9749. }
  9750. ]
  9751. ))
  9752. characterMakers.push(() => makeCharacter(
  9753. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9754. {
  9755. front: {
  9756. height: math.unit(6, "feet"),
  9757. weight: math.unit(120, "lb"),
  9758. name: "Front",
  9759. image: {
  9760. source: "./media/characters/tene/front.svg",
  9761. extra: 1728 / 1578,
  9762. bottom: 0.022
  9763. }
  9764. },
  9765. stomping: {
  9766. height: math.unit(2.025, "meters"),
  9767. weight: math.unit(120, "lb"),
  9768. name: "Stomping",
  9769. image: {
  9770. source: "./media/characters/tene/stomping.svg",
  9771. extra: 938 / 873,
  9772. bottom: 0.01
  9773. }
  9774. },
  9775. sitting: {
  9776. height: math.unit(1, "meter"),
  9777. weight: math.unit(120, "lb"),
  9778. name: "Sitting",
  9779. image: {
  9780. source: "./media/characters/tene/sitting.svg",
  9781. extra: 437 / 415,
  9782. bottom: 0.1
  9783. }
  9784. },
  9785. feral: {
  9786. height: math.unit(3.9, "feet"),
  9787. weight: math.unit(250, "lb"),
  9788. name: "Feral",
  9789. image: {
  9790. source: "./media/characters/tene/feral.svg",
  9791. extra: 717 / 458,
  9792. bottom: 0.179
  9793. }
  9794. },
  9795. },
  9796. [
  9797. {
  9798. name: "Normal",
  9799. height: math.unit(6, "feet")
  9800. },
  9801. {
  9802. name: "Macro",
  9803. height: math.unit(300, "feet"),
  9804. default: true
  9805. },
  9806. {
  9807. name: "Megamacro",
  9808. height: math.unit(5, "miles")
  9809. },
  9810. ]
  9811. ))
  9812. characterMakers.push(() => makeCharacter(
  9813. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9814. {
  9815. side: {
  9816. height: math.unit(6, "feet"),
  9817. name: "Side",
  9818. image: {
  9819. source: "./media/characters/evander/side.svg",
  9820. extra: 877 / 477
  9821. }
  9822. },
  9823. },
  9824. [
  9825. {
  9826. name: "Normal",
  9827. height: math.unit(0.83, "meters"),
  9828. default: true
  9829. },
  9830. ]
  9831. ))
  9832. characterMakers.push(() => makeCharacter(
  9833. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9834. {
  9835. front: {
  9836. height: math.unit(12, "feet"),
  9837. weight: math.unit(1000, "lb"),
  9838. name: "Front",
  9839. image: {
  9840. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9841. extra: 1762 / 1611
  9842. }
  9843. },
  9844. back: {
  9845. height: math.unit(12, "feet"),
  9846. weight: math.unit(1000, "lb"),
  9847. name: "Back",
  9848. image: {
  9849. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9850. extra: 1762 / 1611
  9851. }
  9852. },
  9853. },
  9854. [
  9855. {
  9856. name: "Normal",
  9857. height: math.unit(12, "feet"),
  9858. default: true
  9859. },
  9860. {
  9861. name: "Kaiju",
  9862. height: math.unit(150, "feet")
  9863. },
  9864. ]
  9865. ))
  9866. characterMakers.push(() => makeCharacter(
  9867. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9868. {
  9869. front: {
  9870. height: math.unit(6, "feet"),
  9871. weight: math.unit(150, "lb"),
  9872. name: "Front",
  9873. image: {
  9874. source: "./media/characters/zero-alurus/front.svg"
  9875. }
  9876. },
  9877. back: {
  9878. height: math.unit(6, "feet"),
  9879. weight: math.unit(150, "lb"),
  9880. name: "Back",
  9881. image: {
  9882. source: "./media/characters/zero-alurus/back.svg"
  9883. }
  9884. },
  9885. },
  9886. [
  9887. {
  9888. name: "Normal",
  9889. height: math.unit(5 + 10 / 12, "feet")
  9890. },
  9891. {
  9892. name: "Macro",
  9893. height: math.unit(60, "feet"),
  9894. default: true
  9895. },
  9896. {
  9897. name: "Macro+",
  9898. height: math.unit(450, "feet")
  9899. },
  9900. ]
  9901. ))
  9902. characterMakers.push(() => makeCharacter(
  9903. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9904. {
  9905. front: {
  9906. height: math.unit(6, "feet"),
  9907. weight: math.unit(200, "lb"),
  9908. name: "Front",
  9909. image: {
  9910. source: "./media/characters/mega-shi/front.svg",
  9911. extra: 1279 / 1250,
  9912. bottom: 0.02
  9913. }
  9914. },
  9915. back: {
  9916. height: math.unit(6, "feet"),
  9917. weight: math.unit(200, "lb"),
  9918. name: "Back",
  9919. image: {
  9920. source: "./media/characters/mega-shi/back.svg",
  9921. extra: 1279 / 1250,
  9922. bottom: 0.02
  9923. }
  9924. },
  9925. },
  9926. [
  9927. {
  9928. name: "Micro",
  9929. height: math.unit(16 + 6 / 12, "feet")
  9930. },
  9931. {
  9932. name: "Third Dimension",
  9933. height: math.unit(40, "meters")
  9934. },
  9935. {
  9936. name: "Normal",
  9937. height: math.unit(660, "feet"),
  9938. default: true
  9939. },
  9940. {
  9941. name: "Megamacro",
  9942. height: math.unit(10, "miles")
  9943. },
  9944. {
  9945. name: "Planetary Launch",
  9946. height: math.unit(500, "miles")
  9947. },
  9948. {
  9949. name: "Interstellar",
  9950. height: math.unit(1e9, "miles")
  9951. },
  9952. {
  9953. name: "Leaving the Universe",
  9954. height: math.unit(1, "gigaparsec")
  9955. },
  9956. {
  9957. name: "Travelling Universes",
  9958. height: math.unit(30e15, "parsecs")
  9959. },
  9960. ]
  9961. ))
  9962. characterMakers.push(() => makeCharacter(
  9963. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9964. {
  9965. front: {
  9966. height: math.unit(6, "feet"),
  9967. weight: math.unit(150, "lb"),
  9968. name: "Front",
  9969. image: {
  9970. source: "./media/characters/odyssey/front.svg",
  9971. extra: 1782 / 1582,
  9972. bottom: 0.01
  9973. }
  9974. },
  9975. side: {
  9976. height: math.unit(5.7, "feet"),
  9977. weight: math.unit(140, "lb"),
  9978. name: "Side",
  9979. image: {
  9980. source: "./media/characters/odyssey/side.svg",
  9981. extra: 6462 / 5700
  9982. }
  9983. },
  9984. },
  9985. [
  9986. {
  9987. name: "Normal",
  9988. height: math.unit(5 + 4 / 12, "feet")
  9989. },
  9990. {
  9991. name: "Macro",
  9992. height: math.unit(1, "km")
  9993. },
  9994. {
  9995. name: "Megamacro",
  9996. height: math.unit(3000, "km")
  9997. },
  9998. {
  9999. name: "Gigamacro",
  10000. height: math.unit(1, "AU"),
  10001. default: true
  10002. },
  10003. {
  10004. name: "Omniversal",
  10005. height: math.unit(100e14, "lightyears")
  10006. },
  10007. ]
  10008. ))
  10009. characterMakers.push(() => makeCharacter(
  10010. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10011. {
  10012. front: {
  10013. height: math.unit(6, "feet"),
  10014. weight: math.unit(300, "lb"),
  10015. name: "Front",
  10016. image: {
  10017. source: "./media/characters/mekuto/front.svg",
  10018. extra: 921 / 832,
  10019. bottom: 0.03
  10020. }
  10021. },
  10022. hand: {
  10023. height: math.unit(6 / 10.24, "feet"),
  10024. name: "Hand",
  10025. image: {
  10026. source: "./media/characters/mekuto/hand.svg"
  10027. }
  10028. },
  10029. foot: {
  10030. height: math.unit(6 / 5.05, "feet"),
  10031. name: "Foot",
  10032. image: {
  10033. source: "./media/characters/mekuto/foot.svg"
  10034. }
  10035. },
  10036. },
  10037. [
  10038. {
  10039. name: "Minimicro",
  10040. height: math.unit(0.2, "inches")
  10041. },
  10042. {
  10043. name: "Micro",
  10044. height: math.unit(1.5, "inches")
  10045. },
  10046. {
  10047. name: "Normal",
  10048. height: math.unit(5 + 11 / 12, "feet"),
  10049. default: true
  10050. },
  10051. {
  10052. name: "Minimacro",
  10053. height: math.unit(17 + 9 / 12, "feet")
  10054. },
  10055. {
  10056. name: "Macro",
  10057. height: math.unit(177.5, "feet")
  10058. },
  10059. {
  10060. name: "Megamacro",
  10061. height: math.unit(152, "miles")
  10062. },
  10063. ]
  10064. ))
  10065. characterMakers.push(() => makeCharacter(
  10066. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10067. {
  10068. front: {
  10069. height: math.unit(6.5, "inches"),
  10070. weight: math.unit(13, "oz"),
  10071. name: "Front",
  10072. image: {
  10073. source: "./media/characters/dafydd-tomos/front.svg",
  10074. extra: 2990 / 2603,
  10075. bottom: 0.03
  10076. }
  10077. },
  10078. },
  10079. [
  10080. {
  10081. name: "Micro",
  10082. height: math.unit(6.5, "inches"),
  10083. default: true
  10084. },
  10085. ]
  10086. ))
  10087. characterMakers.push(() => makeCharacter(
  10088. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10089. {
  10090. front: {
  10091. height: math.unit(6, "feet"),
  10092. weight: math.unit(150, "lb"),
  10093. name: "Front",
  10094. image: {
  10095. source: "./media/characters/splinter/front.svg",
  10096. extra: 2990 / 2882,
  10097. bottom: 0.04
  10098. }
  10099. },
  10100. back: {
  10101. height: math.unit(6, "feet"),
  10102. weight: math.unit(150, "lb"),
  10103. name: "Back",
  10104. image: {
  10105. source: "./media/characters/splinter/back.svg",
  10106. extra: 2990 / 2882,
  10107. bottom: 0.04
  10108. }
  10109. },
  10110. },
  10111. [
  10112. {
  10113. name: "Normal",
  10114. height: math.unit(6, "feet")
  10115. },
  10116. {
  10117. name: "Macro",
  10118. height: math.unit(230, "meters"),
  10119. default: true
  10120. },
  10121. ]
  10122. ))
  10123. characterMakers.push(() => makeCharacter(
  10124. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10125. {
  10126. front: {
  10127. height: math.unit(4 + 10 / 12, "feet"),
  10128. weight: math.unit(480, "lb"),
  10129. name: "Front",
  10130. image: {
  10131. source: "./media/characters/snow-gabumon/front.svg",
  10132. extra: 1140 / 963,
  10133. bottom: 0.058
  10134. }
  10135. },
  10136. back: {
  10137. height: math.unit(4 + 10 / 12, "feet"),
  10138. weight: math.unit(480, "lb"),
  10139. name: "Back",
  10140. image: {
  10141. source: "./media/characters/snow-gabumon/back.svg",
  10142. extra: 1115 / 962,
  10143. bottom: 0.041
  10144. }
  10145. },
  10146. frontUndresed: {
  10147. height: math.unit(4 + 10 / 12, "feet"),
  10148. weight: math.unit(480, "lb"),
  10149. name: "Front (Undressed)",
  10150. image: {
  10151. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10152. extra: 1061 / 960,
  10153. bottom: 0.045
  10154. }
  10155. },
  10156. },
  10157. [
  10158. {
  10159. name: "Micro",
  10160. height: math.unit(1, "inch")
  10161. },
  10162. {
  10163. name: "Normal",
  10164. height: math.unit(4 + 10 / 12, "feet"),
  10165. default: true
  10166. },
  10167. {
  10168. name: "Macro",
  10169. height: math.unit(200, "feet")
  10170. },
  10171. {
  10172. name: "Megamacro",
  10173. height: math.unit(120, "miles")
  10174. },
  10175. {
  10176. name: "Gigamacro",
  10177. height: math.unit(9800, "miles")
  10178. },
  10179. ]
  10180. ))
  10181. characterMakers.push(() => makeCharacter(
  10182. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10183. {
  10184. front: {
  10185. height: math.unit(1.7, "meters"),
  10186. weight: math.unit(140, "lb"),
  10187. name: "Front",
  10188. image: {
  10189. source: "./media/characters/moody/front.svg",
  10190. extra: 3226 / 3007,
  10191. bottom: 0.087
  10192. }
  10193. },
  10194. },
  10195. [
  10196. {
  10197. name: "Micro",
  10198. height: math.unit(1, "mm")
  10199. },
  10200. {
  10201. name: "Normal",
  10202. height: math.unit(1.7, "meters"),
  10203. default: true
  10204. },
  10205. {
  10206. name: "Macro",
  10207. height: math.unit(80, "meters")
  10208. },
  10209. {
  10210. name: "Macro+",
  10211. height: math.unit(500, "meters")
  10212. },
  10213. ]
  10214. ))
  10215. characterMakers.push(() => makeCharacter(
  10216. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10217. {
  10218. front: {
  10219. height: math.unit(6, "feet"),
  10220. weight: math.unit(150, "lb"),
  10221. name: "Front",
  10222. image: {
  10223. source: "./media/characters/zyas/front.svg",
  10224. extra: 1180 / 1120,
  10225. bottom: 0.045
  10226. }
  10227. },
  10228. },
  10229. [
  10230. {
  10231. name: "Normal",
  10232. height: math.unit(10, "feet"),
  10233. default: true
  10234. },
  10235. {
  10236. name: "Macro",
  10237. height: math.unit(500, "feet")
  10238. },
  10239. {
  10240. name: "Megamacro",
  10241. height: math.unit(5, "miles")
  10242. },
  10243. {
  10244. name: "Teramacro",
  10245. height: math.unit(150000, "miles")
  10246. },
  10247. ]
  10248. ))
  10249. characterMakers.push(() => makeCharacter(
  10250. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10251. {
  10252. front: {
  10253. height: math.unit(6, "feet"),
  10254. weight: math.unit(150, "lb"),
  10255. name: "Front",
  10256. image: {
  10257. source: "./media/characters/cuon/front.svg",
  10258. extra: 1390 / 1320,
  10259. bottom: 0.008
  10260. }
  10261. },
  10262. },
  10263. [
  10264. {
  10265. name: "Micro",
  10266. height: math.unit(3, "inches")
  10267. },
  10268. {
  10269. name: "Normal",
  10270. height: math.unit(18 + 9 / 12, "feet"),
  10271. default: true
  10272. },
  10273. {
  10274. name: "Macro",
  10275. height: math.unit(360, "feet")
  10276. },
  10277. {
  10278. name: "Megamacro",
  10279. height: math.unit(360, "miles")
  10280. },
  10281. ]
  10282. ))
  10283. characterMakers.push(() => makeCharacter(
  10284. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10285. {
  10286. front: {
  10287. height: math.unit(2.4, "meters"),
  10288. weight: math.unit(70, "kg"),
  10289. name: "Front",
  10290. image: {
  10291. source: "./media/characters/nyanuxk/front.svg",
  10292. extra: 1172 / 1084,
  10293. bottom: 0.065
  10294. }
  10295. },
  10296. side: {
  10297. height: math.unit(2.4, "meters"),
  10298. weight: math.unit(70, "kg"),
  10299. name: "Side",
  10300. image: {
  10301. source: "./media/characters/nyanuxk/side.svg",
  10302. extra: 1190 / 1132,
  10303. bottom: 0.007
  10304. }
  10305. },
  10306. back: {
  10307. height: math.unit(2.4, "meters"),
  10308. weight: math.unit(70, "kg"),
  10309. name: "Back",
  10310. image: {
  10311. source: "./media/characters/nyanuxk/back.svg",
  10312. extra: 1200 / 1141,
  10313. bottom: 0.015
  10314. }
  10315. },
  10316. foot: {
  10317. height: math.unit(0.52, "meters"),
  10318. name: "Foot",
  10319. image: {
  10320. source: "./media/characters/nyanuxk/foot.svg"
  10321. }
  10322. },
  10323. },
  10324. [
  10325. {
  10326. name: "Micro",
  10327. height: math.unit(2, "cm")
  10328. },
  10329. {
  10330. name: "Normal",
  10331. height: math.unit(2.4, "meters"),
  10332. default: true
  10333. },
  10334. {
  10335. name: "Smaller Macro",
  10336. height: math.unit(120, "meters")
  10337. },
  10338. {
  10339. name: "Bigger Macro",
  10340. height: math.unit(1.2, "km")
  10341. },
  10342. {
  10343. name: "Megamacro",
  10344. height: math.unit(15, "kilometers")
  10345. },
  10346. {
  10347. name: "Gigamacro",
  10348. height: math.unit(2000, "km")
  10349. },
  10350. {
  10351. name: "Teramacro",
  10352. height: math.unit(500000, "km")
  10353. },
  10354. ]
  10355. ))
  10356. characterMakers.push(() => makeCharacter(
  10357. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10358. {
  10359. side: {
  10360. height: math.unit(6, "feet"),
  10361. name: "Side",
  10362. image: {
  10363. source: "./media/characters/ailbhe/side.svg",
  10364. extra: 757 / 464,
  10365. bottom: 0.041
  10366. }
  10367. },
  10368. },
  10369. [
  10370. {
  10371. name: "Normal",
  10372. height: math.unit(1.07, "meters"),
  10373. default: true
  10374. },
  10375. ]
  10376. ))
  10377. characterMakers.push(() => makeCharacter(
  10378. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10379. {
  10380. front: {
  10381. height: math.unit(6, "feet"),
  10382. weight: math.unit(120, "kg"),
  10383. name: "Front",
  10384. image: {
  10385. source: "./media/characters/zevulfius/front.svg",
  10386. extra: 965 / 903
  10387. }
  10388. },
  10389. side: {
  10390. height: math.unit(6, "feet"),
  10391. weight: math.unit(120, "kg"),
  10392. name: "Side",
  10393. image: {
  10394. source: "./media/characters/zevulfius/side.svg",
  10395. extra: 939 / 900
  10396. }
  10397. },
  10398. back: {
  10399. height: math.unit(6, "feet"),
  10400. weight: math.unit(120, "kg"),
  10401. name: "Back",
  10402. image: {
  10403. source: "./media/characters/zevulfius/back.svg",
  10404. extra: 918 / 854,
  10405. bottom: 0.005
  10406. }
  10407. },
  10408. foot: {
  10409. height: math.unit(6 / 3.72, "feet"),
  10410. name: "Foot",
  10411. image: {
  10412. source: "./media/characters/zevulfius/foot.svg"
  10413. }
  10414. },
  10415. },
  10416. [
  10417. {
  10418. name: "Macro",
  10419. height: math.unit(750, "meters")
  10420. },
  10421. {
  10422. name: "Megamacro",
  10423. height: math.unit(20, "km"),
  10424. default: true
  10425. },
  10426. {
  10427. name: "Gigamacro",
  10428. height: math.unit(2000, "km")
  10429. },
  10430. {
  10431. name: "Teramacro",
  10432. height: math.unit(250000, "km")
  10433. },
  10434. ]
  10435. ))
  10436. characterMakers.push(() => makeCharacter(
  10437. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10438. {
  10439. front: {
  10440. height: math.unit(100, "feet"),
  10441. weight: math.unit(350, "kg"),
  10442. name: "Front",
  10443. image: {
  10444. source: "./media/characters/rikes/front.svg",
  10445. extra: 1565 / 1483,
  10446. bottom: 0.017
  10447. }
  10448. },
  10449. },
  10450. [
  10451. {
  10452. name: "Macro",
  10453. height: math.unit(100, "feet"),
  10454. default: true
  10455. },
  10456. ]
  10457. ))
  10458. characterMakers.push(() => makeCharacter(
  10459. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10460. {
  10461. front: {
  10462. height: math.unit(8, "feet"),
  10463. weight: math.unit(356, "lb"),
  10464. name: "Front",
  10465. image: {
  10466. source: "./media/characters/adam-silver-mane/front.svg",
  10467. extra: 1036/937,
  10468. bottom: 63/1099
  10469. }
  10470. },
  10471. side: {
  10472. height: math.unit(8, "feet"),
  10473. weight: math.unit(356, "lb"),
  10474. name: "Side",
  10475. image: {
  10476. source: "./media/characters/adam-silver-mane/side.svg",
  10477. extra: 997/901,
  10478. bottom: 59/1056
  10479. }
  10480. },
  10481. frontNsfw: {
  10482. height: math.unit(8, "feet"),
  10483. weight: math.unit(356, "lb"),
  10484. name: "Front (NSFW)",
  10485. image: {
  10486. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10487. extra: 1036/937,
  10488. bottom: 63/1099
  10489. }
  10490. },
  10491. sideNsfw: {
  10492. height: math.unit(8, "feet"),
  10493. weight: math.unit(356, "lb"),
  10494. name: "Side (NSFW)",
  10495. image: {
  10496. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10497. extra: 997/901,
  10498. bottom: 59/1056
  10499. }
  10500. },
  10501. dick: {
  10502. height: math.unit(2.1, "feet"),
  10503. name: "Dick",
  10504. image: {
  10505. source: "./media/characters/adam-silver-mane/dick.svg"
  10506. }
  10507. },
  10508. taur: {
  10509. height: math.unit(16, "feet"),
  10510. weight: math.unit(1500, "kg"),
  10511. name: "Taur",
  10512. image: {
  10513. source: "./media/characters/adam-silver-mane/taur.svg",
  10514. extra: 1713 / 1571,
  10515. bottom: 0.01
  10516. }
  10517. },
  10518. },
  10519. [
  10520. {
  10521. name: "Normal",
  10522. height: math.unit(8, "feet")
  10523. },
  10524. {
  10525. name: "Minimacro",
  10526. height: math.unit(80, "feet")
  10527. },
  10528. {
  10529. name: "MDA",
  10530. height: math.unit(80, "meters")
  10531. },
  10532. {
  10533. name: "Macro",
  10534. height: math.unit(800, "feet"),
  10535. default: true
  10536. },
  10537. {
  10538. name: "Megamacro",
  10539. height: math.unit(8000, "feet")
  10540. },
  10541. {
  10542. name: "Gigamacro",
  10543. height: math.unit(800, "miles")
  10544. },
  10545. {
  10546. name: "Teramacro",
  10547. height: math.unit(80000, "miles")
  10548. },
  10549. {
  10550. name: "Celestial",
  10551. height: math.unit(8e6, "miles")
  10552. },
  10553. {
  10554. name: "Star Dragon",
  10555. height: math.unit(800000, "parsecs")
  10556. },
  10557. {
  10558. name: "Godly",
  10559. height: math.unit(800, "teraparsecs")
  10560. },
  10561. ]
  10562. ))
  10563. characterMakers.push(() => makeCharacter(
  10564. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10565. {
  10566. front: {
  10567. height: math.unit(6, "feet"),
  10568. weight: math.unit(150, "lb"),
  10569. name: "Front",
  10570. image: {
  10571. source: "./media/characters/ky'owin/front.svg",
  10572. extra: 3888 / 3068,
  10573. bottom: 0.015
  10574. }
  10575. },
  10576. },
  10577. [
  10578. {
  10579. name: "Normal",
  10580. height: math.unit(6 + 8 / 12, "feet")
  10581. },
  10582. {
  10583. name: "Large",
  10584. height: math.unit(68, "feet")
  10585. },
  10586. {
  10587. name: "Macro",
  10588. height: math.unit(132, "feet")
  10589. },
  10590. {
  10591. name: "Macro+",
  10592. height: math.unit(340, "feet")
  10593. },
  10594. {
  10595. name: "Macro++",
  10596. height: math.unit(680, "feet"),
  10597. default: true
  10598. },
  10599. {
  10600. name: "Megamacro",
  10601. height: math.unit(1, "mile")
  10602. },
  10603. {
  10604. name: "Megamacro+",
  10605. height: math.unit(10, "miles")
  10606. },
  10607. ]
  10608. ))
  10609. characterMakers.push(() => makeCharacter(
  10610. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10611. {
  10612. front: {
  10613. height: math.unit(4, "feet"),
  10614. weight: math.unit(50, "lb"),
  10615. name: "Front",
  10616. image: {
  10617. source: "./media/characters/mal/front.svg",
  10618. extra: 785 / 724,
  10619. bottom: 0.07
  10620. }
  10621. },
  10622. },
  10623. [
  10624. {
  10625. name: "Micro",
  10626. height: math.unit(4, "inches")
  10627. },
  10628. {
  10629. name: "Normal",
  10630. height: math.unit(4, "feet"),
  10631. default: true
  10632. },
  10633. {
  10634. name: "Macro",
  10635. height: math.unit(200, "feet")
  10636. },
  10637. ]
  10638. ))
  10639. characterMakers.push(() => makeCharacter(
  10640. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10641. {
  10642. front: {
  10643. height: math.unit(6, "feet"),
  10644. weight: math.unit(150, "lb"),
  10645. name: "Front",
  10646. image: {
  10647. source: "./media/characters/jordan-deware/front.svg",
  10648. extra: 1191 / 1012
  10649. }
  10650. },
  10651. },
  10652. [
  10653. {
  10654. name: "Nano",
  10655. height: math.unit(0.01, "mm")
  10656. },
  10657. {
  10658. name: "Minimicro",
  10659. height: math.unit(1, "mm")
  10660. },
  10661. {
  10662. name: "Micro",
  10663. height: math.unit(0.5, "inches")
  10664. },
  10665. {
  10666. name: "Normal",
  10667. height: math.unit(4, "feet"),
  10668. default: true
  10669. },
  10670. {
  10671. name: "Minimacro",
  10672. height: math.unit(40, "meters")
  10673. },
  10674. {
  10675. name: "Small Macro",
  10676. height: math.unit(400, "meters")
  10677. },
  10678. {
  10679. name: "Macro",
  10680. height: math.unit(4, "miles")
  10681. },
  10682. {
  10683. name: "Megamacro",
  10684. height: math.unit(40, "miles")
  10685. },
  10686. {
  10687. name: "Megamacro+",
  10688. height: math.unit(400, "miles")
  10689. },
  10690. {
  10691. name: "Gigamacro",
  10692. height: math.unit(400000, "miles")
  10693. },
  10694. ]
  10695. ))
  10696. characterMakers.push(() => makeCharacter(
  10697. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10698. {
  10699. side: {
  10700. height: math.unit(6, "feet"),
  10701. weight: math.unit(150, "lb"),
  10702. name: "Side",
  10703. image: {
  10704. source: "./media/characters/kimiko/side.svg",
  10705. extra: 600 / 358
  10706. }
  10707. },
  10708. },
  10709. [
  10710. {
  10711. name: "Normal",
  10712. height: math.unit(15, "feet"),
  10713. default: true
  10714. },
  10715. {
  10716. name: "Macro",
  10717. height: math.unit(220, "feet")
  10718. },
  10719. {
  10720. name: "Macro+",
  10721. height: math.unit(1450, "feet")
  10722. },
  10723. {
  10724. name: "Megamacro",
  10725. height: math.unit(11500, "feet")
  10726. },
  10727. {
  10728. name: "Gigamacro",
  10729. height: math.unit(9500, "miles")
  10730. },
  10731. {
  10732. name: "Teramacro",
  10733. height: math.unit(2208005005, "miles")
  10734. },
  10735. {
  10736. name: "Examacro",
  10737. height: math.unit(2750, "parsecs")
  10738. },
  10739. {
  10740. name: "Zettamacro",
  10741. height: math.unit(101500, "parsecs")
  10742. },
  10743. ]
  10744. ))
  10745. characterMakers.push(() => makeCharacter(
  10746. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10747. {
  10748. front: {
  10749. height: math.unit(6, "feet"),
  10750. weight: math.unit(70, "kg"),
  10751. name: "Front",
  10752. image: {
  10753. source: "./media/characters/andrew-sleepy/front.svg"
  10754. }
  10755. },
  10756. side: {
  10757. height: math.unit(6, "feet"),
  10758. weight: math.unit(70, "kg"),
  10759. name: "Side",
  10760. image: {
  10761. source: "./media/characters/andrew-sleepy/side.svg"
  10762. }
  10763. },
  10764. },
  10765. [
  10766. {
  10767. name: "Micro",
  10768. height: math.unit(1, "mm"),
  10769. default: true
  10770. },
  10771. ]
  10772. ))
  10773. characterMakers.push(() => makeCharacter(
  10774. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10775. {
  10776. front: {
  10777. height: math.unit(6, "feet"),
  10778. weight: math.unit(150, "lb"),
  10779. name: "Front",
  10780. image: {
  10781. source: "./media/characters/judio/front.svg",
  10782. extra: 1258 / 1110
  10783. }
  10784. },
  10785. },
  10786. [
  10787. {
  10788. name: "Normal",
  10789. height: math.unit(5 + 6 / 12, "feet")
  10790. },
  10791. {
  10792. name: "Macro",
  10793. height: math.unit(1000, "feet"),
  10794. default: true
  10795. },
  10796. {
  10797. name: "Megamacro",
  10798. height: math.unit(10, "miles")
  10799. },
  10800. ]
  10801. ))
  10802. characterMakers.push(() => makeCharacter(
  10803. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10804. {
  10805. front: {
  10806. height: math.unit(6, "feet"),
  10807. weight: math.unit(68, "kg"),
  10808. name: "Front",
  10809. image: {
  10810. source: "./media/characters/nomaxice/front.svg",
  10811. extra: 1498 / 1073,
  10812. bottom: 0.075
  10813. }
  10814. },
  10815. foot: {
  10816. height: math.unit(1.1, "feet"),
  10817. name: "Foot",
  10818. image: {
  10819. source: "./media/characters/nomaxice/foot.svg"
  10820. }
  10821. },
  10822. },
  10823. [
  10824. {
  10825. name: "Micro",
  10826. height: math.unit(8, "cm")
  10827. },
  10828. {
  10829. name: "Norm",
  10830. height: math.unit(1.82, "m")
  10831. },
  10832. {
  10833. name: "Norm+",
  10834. height: math.unit(8.8, "feet")
  10835. },
  10836. {
  10837. name: "Big",
  10838. height: math.unit(8, "meters"),
  10839. default: true
  10840. },
  10841. {
  10842. name: "Macro",
  10843. height: math.unit(18, "meters")
  10844. },
  10845. {
  10846. name: "Macro+",
  10847. height: math.unit(88, "meters")
  10848. },
  10849. ]
  10850. ))
  10851. characterMakers.push(() => makeCharacter(
  10852. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10853. {
  10854. front: {
  10855. height: math.unit(12, "feet"),
  10856. weight: math.unit(1.5, "tons"),
  10857. name: "Front",
  10858. image: {
  10859. source: "./media/characters/dydros/front.svg",
  10860. extra: 863 / 800,
  10861. bottom: 0.015
  10862. }
  10863. },
  10864. back: {
  10865. height: math.unit(12, "feet"),
  10866. weight: math.unit(1.5, "tons"),
  10867. name: "Back",
  10868. image: {
  10869. source: "./media/characters/dydros/back.svg",
  10870. extra: 900 / 843,
  10871. bottom: 0.005
  10872. }
  10873. },
  10874. },
  10875. [
  10876. {
  10877. name: "Normal",
  10878. height: math.unit(12, "feet"),
  10879. default: true
  10880. },
  10881. ]
  10882. ))
  10883. characterMakers.push(() => makeCharacter(
  10884. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10885. {
  10886. front: {
  10887. height: math.unit(6, "feet"),
  10888. weight: math.unit(100, "kg"),
  10889. name: "Front",
  10890. image: {
  10891. source: "./media/characters/riggi/front.svg",
  10892. extra: 5787 / 5303
  10893. }
  10894. },
  10895. hyper: {
  10896. height: math.unit(6 * 5 / 3, "feet"),
  10897. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10898. name: "Hyper",
  10899. image: {
  10900. source: "./media/characters/riggi/hyper.svg",
  10901. extra: 3595 / 3485
  10902. }
  10903. },
  10904. },
  10905. [
  10906. {
  10907. name: "Small Macro",
  10908. height: math.unit(50, "feet")
  10909. },
  10910. {
  10911. name: "Default",
  10912. height: math.unit(200, "feet"),
  10913. default: true
  10914. },
  10915. {
  10916. name: "Loom",
  10917. height: math.unit(10000, "feet")
  10918. },
  10919. {
  10920. name: "Cruising Altitude",
  10921. height: math.unit(30000, "feet")
  10922. },
  10923. {
  10924. name: "Megamacro",
  10925. height: math.unit(100, "miles")
  10926. },
  10927. {
  10928. name: "Continent Sized",
  10929. height: math.unit(2800, "miles")
  10930. },
  10931. {
  10932. name: "Earth Sized",
  10933. height: math.unit(8000, "miles")
  10934. },
  10935. ]
  10936. ))
  10937. characterMakers.push(() => makeCharacter(
  10938. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10939. {
  10940. front: {
  10941. height: math.unit(6, "feet"),
  10942. weight: math.unit(250, "lb"),
  10943. name: "Front",
  10944. image: {
  10945. source: "./media/characters/alexi/front.svg",
  10946. extra: 3483 / 3291,
  10947. bottom: 0.04
  10948. }
  10949. },
  10950. back: {
  10951. height: math.unit(6, "feet"),
  10952. weight: math.unit(250, "lb"),
  10953. name: "Back",
  10954. image: {
  10955. source: "./media/characters/alexi/back.svg",
  10956. extra: 3533 / 3356,
  10957. bottom: 0.021
  10958. }
  10959. },
  10960. frontTransforming: {
  10961. height: math.unit(8.58, "feet"),
  10962. weight: math.unit(1300, "lb"),
  10963. name: "Transforming",
  10964. image: {
  10965. source: "./media/characters/alexi/front-transforming.svg",
  10966. extra: 437 / 409,
  10967. bottom: 19 / 458.66
  10968. }
  10969. },
  10970. frontTransformed: {
  10971. height: math.unit(12.5, "feet"),
  10972. weight: math.unit(4000, "lb"),
  10973. name: "Transformed",
  10974. image: {
  10975. source: "./media/characters/alexi/front-transformed.svg",
  10976. extra: 639 / 614,
  10977. bottom: 30.55 / 671
  10978. }
  10979. },
  10980. },
  10981. [
  10982. {
  10983. name: "Normal",
  10984. height: math.unit(14, "feet"),
  10985. default: true
  10986. },
  10987. {
  10988. name: "Minimacro",
  10989. height: math.unit(30, "meters")
  10990. },
  10991. {
  10992. name: "Macro",
  10993. height: math.unit(500, "meters")
  10994. },
  10995. {
  10996. name: "Megamacro",
  10997. height: math.unit(9000, "km")
  10998. },
  10999. {
  11000. name: "Teramacro",
  11001. height: math.unit(384000, "km")
  11002. },
  11003. ]
  11004. ))
  11005. characterMakers.push(() => makeCharacter(
  11006. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11007. {
  11008. front: {
  11009. height: math.unit(6, "feet"),
  11010. weight: math.unit(150, "lb"),
  11011. name: "Front",
  11012. image: {
  11013. source: "./media/characters/kayroo/front.svg",
  11014. extra: 1153 / 1038,
  11015. bottom: 0.06
  11016. }
  11017. },
  11018. foot: {
  11019. height: math.unit(6, "feet"),
  11020. weight: math.unit(150, "lb"),
  11021. name: "Foot",
  11022. image: {
  11023. source: "./media/characters/kayroo/foot.svg"
  11024. }
  11025. },
  11026. },
  11027. [
  11028. {
  11029. name: "Normal",
  11030. height: math.unit(8, "feet"),
  11031. default: true
  11032. },
  11033. {
  11034. name: "Minimacro",
  11035. height: math.unit(250, "feet")
  11036. },
  11037. {
  11038. name: "Macro",
  11039. height: math.unit(2800, "feet")
  11040. },
  11041. {
  11042. name: "Megamacro",
  11043. height: math.unit(5200, "feet")
  11044. },
  11045. {
  11046. name: "Gigamacro",
  11047. height: math.unit(27000, "feet")
  11048. },
  11049. {
  11050. name: "Omega",
  11051. height: math.unit(45000, "feet")
  11052. },
  11053. ]
  11054. ))
  11055. characterMakers.push(() => makeCharacter(
  11056. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11057. {
  11058. front: {
  11059. height: math.unit(18, "feet"),
  11060. weight: math.unit(5800, "lb"),
  11061. name: "Front",
  11062. image: {
  11063. source: "./media/characters/rhys/front.svg",
  11064. extra: 3386 / 3090,
  11065. bottom: 0.07
  11066. }
  11067. },
  11068. },
  11069. [
  11070. {
  11071. name: "Normal",
  11072. height: math.unit(18, "feet"),
  11073. default: true
  11074. },
  11075. {
  11076. name: "Working Size",
  11077. height: math.unit(200, "feet")
  11078. },
  11079. {
  11080. name: "Demolition Size",
  11081. height: math.unit(2000, "feet")
  11082. },
  11083. {
  11084. name: "Maximum Licensed Size",
  11085. height: math.unit(5, "miles")
  11086. },
  11087. {
  11088. name: "Maximum Observed Size",
  11089. height: math.unit(10, "yottameters")
  11090. },
  11091. ]
  11092. ))
  11093. characterMakers.push(() => makeCharacter(
  11094. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11095. {
  11096. front: {
  11097. height: math.unit(6, "feet"),
  11098. weight: math.unit(250, "lb"),
  11099. name: "Front",
  11100. image: {
  11101. source: "./media/characters/toto/front.svg",
  11102. extra: 527 / 479,
  11103. bottom: 0.05
  11104. }
  11105. },
  11106. },
  11107. [
  11108. {
  11109. name: "Micro",
  11110. height: math.unit(3, "feet")
  11111. },
  11112. {
  11113. name: "Normal",
  11114. height: math.unit(10, "feet")
  11115. },
  11116. {
  11117. name: "Macro",
  11118. height: math.unit(150, "feet"),
  11119. default: true
  11120. },
  11121. {
  11122. name: "Megamacro",
  11123. height: math.unit(1200, "feet")
  11124. },
  11125. ]
  11126. ))
  11127. characterMakers.push(() => makeCharacter(
  11128. { name: "King", species: ["lion"], tags: ["anthro"] },
  11129. {
  11130. back: {
  11131. height: math.unit(6, "feet"),
  11132. weight: math.unit(150, "lb"),
  11133. name: "Back",
  11134. image: {
  11135. source: "./media/characters/king/back.svg"
  11136. }
  11137. },
  11138. },
  11139. [
  11140. {
  11141. name: "Micro",
  11142. height: math.unit(2, "inches")
  11143. },
  11144. {
  11145. name: "Normal",
  11146. height: math.unit(8, "feet")
  11147. },
  11148. {
  11149. name: "Macro",
  11150. height: math.unit(200, "feet"),
  11151. default: true
  11152. },
  11153. {
  11154. name: "Megamacro",
  11155. height: math.unit(50, "miles")
  11156. },
  11157. ]
  11158. ))
  11159. characterMakers.push(() => makeCharacter(
  11160. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11161. {
  11162. anthro: {
  11163. height: math.unit(6 + 5 / 12, "feet"),
  11164. weight: math.unit(280, "lb"),
  11165. name: "Anthro",
  11166. image: {
  11167. source: "./media/characters/cordite/anthro.svg",
  11168. extra: 1986 / 1905,
  11169. bottom: 0.025
  11170. }
  11171. },
  11172. feral: {
  11173. height: math.unit(2, "feet"),
  11174. weight: math.unit(90, "lb"),
  11175. name: "Feral",
  11176. image: {
  11177. source: "./media/characters/cordite/feral.svg",
  11178. extra: 1260 / 755,
  11179. bottom: 0.05
  11180. }
  11181. },
  11182. },
  11183. [
  11184. {
  11185. name: "Normal",
  11186. height: math.unit(6 + 5 / 12, "feet"),
  11187. default: true
  11188. },
  11189. ]
  11190. ))
  11191. characterMakers.push(() => makeCharacter(
  11192. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11193. {
  11194. front: {
  11195. height: math.unit(6, "feet"),
  11196. weight: math.unit(150, "lb"),
  11197. name: "Front",
  11198. image: {
  11199. source: "./media/characters/pianostrong/front.svg",
  11200. extra: 6577 / 6254,
  11201. bottom: 0.02
  11202. }
  11203. },
  11204. side: {
  11205. height: math.unit(6, "feet"),
  11206. weight: math.unit(150, "lb"),
  11207. name: "Side",
  11208. image: {
  11209. source: "./media/characters/pianostrong/side.svg",
  11210. extra: 6106 / 5730
  11211. }
  11212. },
  11213. back: {
  11214. height: math.unit(6, "feet"),
  11215. weight: math.unit(150, "lb"),
  11216. name: "Back",
  11217. image: {
  11218. source: "./media/characters/pianostrong/back.svg",
  11219. extra: 6085 / 5733,
  11220. bottom: 0.01
  11221. }
  11222. },
  11223. },
  11224. [
  11225. {
  11226. name: "Macro",
  11227. height: math.unit(100, "feet")
  11228. },
  11229. {
  11230. name: "Macro+",
  11231. height: math.unit(300, "feet"),
  11232. default: true
  11233. },
  11234. {
  11235. name: "Macro++",
  11236. height: math.unit(1000, "feet")
  11237. },
  11238. ]
  11239. ))
  11240. characterMakers.push(() => makeCharacter(
  11241. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11242. {
  11243. front: {
  11244. height: math.unit(6, "feet"),
  11245. weight: math.unit(150, "lb"),
  11246. name: "Front",
  11247. image: {
  11248. source: "./media/characters/kona/front.svg",
  11249. extra: 2960 / 2629,
  11250. bottom: 0.005
  11251. }
  11252. },
  11253. },
  11254. [
  11255. {
  11256. name: "Normal",
  11257. height: math.unit(11 + 8 / 12, "feet")
  11258. },
  11259. {
  11260. name: "Macro",
  11261. height: math.unit(850, "feet"),
  11262. default: true
  11263. },
  11264. {
  11265. name: "Macro+",
  11266. height: math.unit(1.5, "km"),
  11267. default: true
  11268. },
  11269. {
  11270. name: "Megamacro",
  11271. height: math.unit(80, "miles")
  11272. },
  11273. {
  11274. name: "Gigamacro",
  11275. height: math.unit(3500, "miles")
  11276. },
  11277. ]
  11278. ))
  11279. characterMakers.push(() => makeCharacter(
  11280. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11281. {
  11282. side: {
  11283. height: math.unit(1.9, "meters"),
  11284. weight: math.unit(326, "kg"),
  11285. name: "Side",
  11286. image: {
  11287. source: "./media/characters/levi/side.svg",
  11288. extra: 1704 / 1334,
  11289. bottom: 0.02
  11290. }
  11291. },
  11292. },
  11293. [
  11294. {
  11295. name: "Normal",
  11296. height: math.unit(1.9, "meters"),
  11297. default: true
  11298. },
  11299. {
  11300. name: "Macro",
  11301. height: math.unit(20, "meters")
  11302. },
  11303. {
  11304. name: "Macro+",
  11305. height: math.unit(200, "meters")
  11306. },
  11307. {
  11308. name: "Megamacro",
  11309. height: math.unit(2, "km")
  11310. },
  11311. {
  11312. name: "Megamacro+",
  11313. height: math.unit(20, "km")
  11314. },
  11315. {
  11316. name: "Gigamacro",
  11317. height: math.unit(2500, "km")
  11318. },
  11319. {
  11320. name: "Gigamacro+",
  11321. height: math.unit(120000, "km")
  11322. },
  11323. {
  11324. name: "Teramacro",
  11325. height: math.unit(7.77e6, "km")
  11326. },
  11327. ]
  11328. ))
  11329. characterMakers.push(() => makeCharacter(
  11330. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11331. {
  11332. front: {
  11333. height: math.unit(6 + 4/12, "feet"),
  11334. weight: math.unit(190, "lb"),
  11335. name: "Front",
  11336. image: {
  11337. source: "./media/characters/bmc/front.svg",
  11338. extra: 1626/1472,
  11339. bottom: 79/1705
  11340. }
  11341. },
  11342. back: {
  11343. height: math.unit(6 + 4/12, "feet"),
  11344. weight: math.unit(190, "lb"),
  11345. name: "Back",
  11346. image: {
  11347. source: "./media/characters/bmc/back.svg",
  11348. extra: 1640/1479,
  11349. bottom: 45/1685
  11350. }
  11351. },
  11352. frontArmor: {
  11353. height: math.unit(6 + 4/12, "feet"),
  11354. weight: math.unit(190, "lb"),
  11355. name: "Front-armor",
  11356. image: {
  11357. source: "./media/characters/bmc/front-armor.svg",
  11358. extra: 1538/1468,
  11359. bottom: 79/1617
  11360. }
  11361. },
  11362. },
  11363. [
  11364. {
  11365. name: "Human-sized",
  11366. height: math.unit(6 + 4 / 12, "feet")
  11367. },
  11368. {
  11369. name: "Interactive Size",
  11370. height: math.unit(25, "feet")
  11371. },
  11372. {
  11373. name: "Small",
  11374. height: math.unit(250, "feet")
  11375. },
  11376. {
  11377. name: "Normal",
  11378. height: math.unit(1250, "feet"),
  11379. default: true
  11380. },
  11381. {
  11382. name: "Good Day",
  11383. height: math.unit(88, "miles")
  11384. },
  11385. {
  11386. name: "Largest Measured Size",
  11387. height: math.unit(105.960, "galaxies")
  11388. },
  11389. ]
  11390. ))
  11391. characterMakers.push(() => makeCharacter(
  11392. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11393. {
  11394. front: {
  11395. height: math.unit(20, "feet"),
  11396. weight: math.unit(2016, "kg"),
  11397. name: "Front",
  11398. image: {
  11399. source: "./media/characters/sven-the-kaiju/front.svg",
  11400. extra: 1277/1250,
  11401. bottom: 35/1312
  11402. }
  11403. },
  11404. mouth: {
  11405. height: math.unit(1.85, "feet"),
  11406. name: "Mouth",
  11407. image: {
  11408. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11409. }
  11410. },
  11411. },
  11412. [
  11413. {
  11414. name: "Fairy",
  11415. height: math.unit(6, "inches")
  11416. },
  11417. {
  11418. name: "Normal",
  11419. height: math.unit(20, "feet"),
  11420. default: true
  11421. },
  11422. {
  11423. name: "Rampage",
  11424. height: math.unit(200, "feet")
  11425. },
  11426. {
  11427. name: "Archfey Forest Guardian",
  11428. height: math.unit(1, "mile")
  11429. },
  11430. ]
  11431. ))
  11432. characterMakers.push(() => makeCharacter(
  11433. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11434. {
  11435. front: {
  11436. height: math.unit(4, "meters"),
  11437. weight: math.unit(2, "tons"),
  11438. name: "Front",
  11439. image: {
  11440. source: "./media/characters/marik/front.svg",
  11441. extra: 1057 / 1003,
  11442. bottom: 0.08
  11443. }
  11444. },
  11445. },
  11446. [
  11447. {
  11448. name: "Normal",
  11449. height: math.unit(4, "meters"),
  11450. default: true
  11451. },
  11452. {
  11453. name: "Macro",
  11454. height: math.unit(20, "meters")
  11455. },
  11456. {
  11457. name: "Megamacro",
  11458. height: math.unit(50, "km")
  11459. },
  11460. {
  11461. name: "Gigamacro",
  11462. height: math.unit(100, "km")
  11463. },
  11464. {
  11465. name: "Alpha Macro",
  11466. height: math.unit(7.88e7, "yottameters")
  11467. },
  11468. ]
  11469. ))
  11470. characterMakers.push(() => makeCharacter(
  11471. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11472. {
  11473. front: {
  11474. height: math.unit(6, "feet"),
  11475. weight: math.unit(110, "lb"),
  11476. name: "Front",
  11477. image: {
  11478. source: "./media/characters/mel/front.svg",
  11479. extra: 736 / 617,
  11480. bottom: 0.017
  11481. }
  11482. },
  11483. },
  11484. [
  11485. {
  11486. name: "Pico",
  11487. height: math.unit(3, "pm")
  11488. },
  11489. {
  11490. name: "Nano",
  11491. height: math.unit(3, "nm")
  11492. },
  11493. {
  11494. name: "Micro",
  11495. height: math.unit(0.3, "mm"),
  11496. default: true
  11497. },
  11498. {
  11499. name: "Micro+",
  11500. height: math.unit(3, "mm")
  11501. },
  11502. {
  11503. name: "Normal",
  11504. height: math.unit(5 + 10.5 / 12, "feet")
  11505. },
  11506. ]
  11507. ))
  11508. characterMakers.push(() => makeCharacter(
  11509. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11510. {
  11511. kaiju: {
  11512. height: math.unit(1.75, "meters"),
  11513. weight: math.unit(55, "kg"),
  11514. name: "Kaiju",
  11515. image: {
  11516. source: "./media/characters/lykonous/kaiju.svg",
  11517. extra: 1055 / 946,
  11518. bottom: 0.135
  11519. }
  11520. },
  11521. },
  11522. [
  11523. {
  11524. name: "Normal",
  11525. height: math.unit(2.5, "meters"),
  11526. default: true
  11527. },
  11528. {
  11529. name: "Kaiju Dragon",
  11530. height: math.unit(60, "meters")
  11531. },
  11532. {
  11533. name: "Mega Kaiju",
  11534. height: math.unit(120, "km")
  11535. },
  11536. {
  11537. name: "Giga Kaiju",
  11538. height: math.unit(200, "megameters")
  11539. },
  11540. {
  11541. name: "Terra Kaiju",
  11542. height: math.unit(400, "gigameters")
  11543. },
  11544. {
  11545. name: "Kaiju Dragon God",
  11546. height: math.unit(13000, "exaparsecs")
  11547. },
  11548. ]
  11549. ))
  11550. characterMakers.push(() => makeCharacter(
  11551. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11552. {
  11553. front: {
  11554. height: math.unit(6, "feet"),
  11555. weight: math.unit(150, "lb"),
  11556. name: "Front",
  11557. image: {
  11558. source: "./media/characters/blü/front.svg",
  11559. extra: 1883 / 1564,
  11560. bottom: 0.031
  11561. }
  11562. },
  11563. },
  11564. [
  11565. {
  11566. name: "Normal",
  11567. height: math.unit(13, "feet"),
  11568. default: true
  11569. },
  11570. {
  11571. name: "Big Boi",
  11572. height: math.unit(150, "meters")
  11573. },
  11574. {
  11575. name: "Mini Stomper",
  11576. height: math.unit(300, "meters")
  11577. },
  11578. {
  11579. name: "Macro",
  11580. height: math.unit(1000, "meters")
  11581. },
  11582. {
  11583. name: "Megamacro",
  11584. height: math.unit(11000, "meters")
  11585. },
  11586. {
  11587. name: "Gigamacro",
  11588. height: math.unit(11000, "km")
  11589. },
  11590. {
  11591. name: "Teramacro",
  11592. height: math.unit(420000, "km")
  11593. },
  11594. {
  11595. name: "Examacro",
  11596. height: math.unit(120, "parsecs")
  11597. },
  11598. {
  11599. name: "God Tho",
  11600. height: math.unit(98000000000, "parsecs")
  11601. },
  11602. ]
  11603. ))
  11604. characterMakers.push(() => makeCharacter(
  11605. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11606. {
  11607. taurFront: {
  11608. height: math.unit(6, "feet"),
  11609. weight: math.unit(200, "lb"),
  11610. name: "Taur (Front)",
  11611. image: {
  11612. source: "./media/characters/scales/taur-front.svg",
  11613. extra: 1,
  11614. bottom: 0.05
  11615. }
  11616. },
  11617. taurBack: {
  11618. height: math.unit(6, "feet"),
  11619. weight: math.unit(200, "lb"),
  11620. name: "Taur (Back)",
  11621. image: {
  11622. source: "./media/characters/scales/taur-back.svg",
  11623. extra: 1,
  11624. bottom: 0.08
  11625. }
  11626. },
  11627. anthro: {
  11628. height: math.unit(6 * 7 / 12, "feet"),
  11629. weight: math.unit(100, "lb"),
  11630. name: "Anthro",
  11631. image: {
  11632. source: "./media/characters/scales/anthro.svg",
  11633. extra: 1,
  11634. bottom: 0.06
  11635. }
  11636. },
  11637. },
  11638. [
  11639. {
  11640. name: "Normal",
  11641. height: math.unit(12, "feet"),
  11642. default: true
  11643. },
  11644. ]
  11645. ))
  11646. characterMakers.push(() => makeCharacter(
  11647. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11648. {
  11649. front: {
  11650. height: math.unit(6, "feet"),
  11651. weight: math.unit(150, "lb"),
  11652. name: "Front",
  11653. image: {
  11654. source: "./media/characters/koragos/front.svg",
  11655. extra: 841 / 794,
  11656. bottom: 0.035
  11657. }
  11658. },
  11659. back: {
  11660. height: math.unit(6, "feet"),
  11661. weight: math.unit(150, "lb"),
  11662. name: "Back",
  11663. image: {
  11664. source: "./media/characters/koragos/back.svg",
  11665. extra: 841 / 810,
  11666. bottom: 0.022
  11667. }
  11668. },
  11669. },
  11670. [
  11671. {
  11672. name: "Normal",
  11673. height: math.unit(6 + 11 / 12, "feet"),
  11674. default: true
  11675. },
  11676. {
  11677. name: "Macro",
  11678. height: math.unit(490, "feet")
  11679. },
  11680. {
  11681. name: "Megamacro",
  11682. height: math.unit(10, "miles")
  11683. },
  11684. {
  11685. name: "Gigamacro",
  11686. height: math.unit(50, "miles")
  11687. },
  11688. ]
  11689. ))
  11690. characterMakers.push(() => makeCharacter(
  11691. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11692. {
  11693. front: {
  11694. height: math.unit(6, "feet"),
  11695. weight: math.unit(250, "lb"),
  11696. name: "Front",
  11697. image: {
  11698. source: "./media/characters/xylrem/front.svg",
  11699. extra: 3323 / 3050,
  11700. bottom: 0.065
  11701. }
  11702. },
  11703. },
  11704. [
  11705. {
  11706. name: "Micro",
  11707. height: math.unit(4, "feet")
  11708. },
  11709. {
  11710. name: "Normal",
  11711. height: math.unit(16, "feet"),
  11712. default: true
  11713. },
  11714. {
  11715. name: "Macro",
  11716. height: math.unit(2720, "feet")
  11717. },
  11718. {
  11719. name: "Megamacro",
  11720. height: math.unit(25000, "miles")
  11721. },
  11722. ]
  11723. ))
  11724. characterMakers.push(() => makeCharacter(
  11725. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11726. {
  11727. front: {
  11728. height: math.unit(8, "feet"),
  11729. weight: math.unit(250, "kg"),
  11730. name: "Front",
  11731. image: {
  11732. source: "./media/characters/ikideru/front.svg",
  11733. extra: 930 / 870,
  11734. bottom: 0.087
  11735. }
  11736. },
  11737. back: {
  11738. height: math.unit(8, "feet"),
  11739. weight: math.unit(250, "kg"),
  11740. name: "Back",
  11741. image: {
  11742. source: "./media/characters/ikideru/back.svg",
  11743. extra: 919 / 852,
  11744. bottom: 0.055
  11745. }
  11746. },
  11747. },
  11748. [
  11749. {
  11750. name: "Rare",
  11751. height: math.unit(8, "feet"),
  11752. default: true
  11753. },
  11754. {
  11755. name: "Playful Loom",
  11756. height: math.unit(80, "feet")
  11757. },
  11758. {
  11759. name: "City Leaner",
  11760. height: math.unit(230, "feet")
  11761. },
  11762. {
  11763. name: "Megamacro",
  11764. height: math.unit(2500, "feet")
  11765. },
  11766. {
  11767. name: "Gigamacro",
  11768. height: math.unit(26400, "feet")
  11769. },
  11770. {
  11771. name: "Tectonic Shifter",
  11772. height: math.unit(1.7, "megameters")
  11773. },
  11774. {
  11775. name: "Planet Carer",
  11776. height: math.unit(21, "megameters")
  11777. },
  11778. {
  11779. name: "God",
  11780. height: math.unit(11157.22, "parsecs")
  11781. },
  11782. ]
  11783. ))
  11784. characterMakers.push(() => makeCharacter(
  11785. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11786. {
  11787. front: {
  11788. height: math.unit(6, "feet"),
  11789. weight: math.unit(120, "lb"),
  11790. name: "Front",
  11791. image: {
  11792. source: "./media/characters/neo/front.svg"
  11793. }
  11794. },
  11795. },
  11796. [
  11797. {
  11798. name: "Micro",
  11799. height: math.unit(2, "inches"),
  11800. default: true
  11801. },
  11802. {
  11803. name: "Human Size",
  11804. height: math.unit(5 + 8 / 12, "feet")
  11805. },
  11806. ]
  11807. ))
  11808. characterMakers.push(() => makeCharacter(
  11809. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11810. {
  11811. front: {
  11812. height: math.unit(13 + 10 / 12, "feet"),
  11813. weight: math.unit(5320, "lb"),
  11814. name: "Front",
  11815. image: {
  11816. source: "./media/characters/chauncey-chantz/front.svg",
  11817. extra: 1587 / 1435,
  11818. bottom: 0.02
  11819. }
  11820. },
  11821. },
  11822. [
  11823. {
  11824. name: "Normal",
  11825. height: math.unit(13 + 10 / 12, "feet"),
  11826. default: true
  11827. },
  11828. {
  11829. name: "Macro",
  11830. height: math.unit(45, "feet")
  11831. },
  11832. {
  11833. name: "Megamacro",
  11834. height: math.unit(250, "miles")
  11835. },
  11836. {
  11837. name: "Planetary",
  11838. height: math.unit(10000, "miles")
  11839. },
  11840. {
  11841. name: "Galactic",
  11842. height: math.unit(40000, "parsecs")
  11843. },
  11844. {
  11845. name: "Universal",
  11846. height: math.unit(1, "yottameter")
  11847. },
  11848. ]
  11849. ))
  11850. characterMakers.push(() => makeCharacter(
  11851. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11852. {
  11853. front: {
  11854. height: math.unit(6, "feet"),
  11855. weight: math.unit(150, "lb"),
  11856. name: "Front",
  11857. image: {
  11858. source: "./media/characters/epifox/front.svg",
  11859. extra: 1,
  11860. bottom: 0.075
  11861. }
  11862. },
  11863. },
  11864. [
  11865. {
  11866. name: "Micro",
  11867. height: math.unit(6, "inches")
  11868. },
  11869. {
  11870. name: "Normal",
  11871. height: math.unit(12, "feet"),
  11872. default: true
  11873. },
  11874. {
  11875. name: "Macro",
  11876. height: math.unit(3810, "feet")
  11877. },
  11878. {
  11879. name: "Megamacro",
  11880. height: math.unit(500, "miles")
  11881. },
  11882. ]
  11883. ))
  11884. characterMakers.push(() => makeCharacter(
  11885. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11886. {
  11887. front: {
  11888. height: math.unit(1.8796, "m"),
  11889. weight: math.unit(230, "lb"),
  11890. name: "Front",
  11891. image: {
  11892. source: "./media/characters/colin-t/front.svg",
  11893. extra: 1272 / 1193,
  11894. bottom: 0.07
  11895. }
  11896. },
  11897. },
  11898. [
  11899. {
  11900. name: "Micro",
  11901. height: math.unit(0.571, "meters")
  11902. },
  11903. {
  11904. name: "Normal",
  11905. height: math.unit(1.8796, "meters"),
  11906. default: true
  11907. },
  11908. {
  11909. name: "Tall",
  11910. height: math.unit(4, "meters")
  11911. },
  11912. {
  11913. name: "Macro",
  11914. height: math.unit(67.241, "meters")
  11915. },
  11916. {
  11917. name: "Megamacro",
  11918. height: math.unit(371.856, "meters")
  11919. },
  11920. {
  11921. name: "Planetary",
  11922. height: math.unit(12631.5689, "km")
  11923. },
  11924. ]
  11925. ))
  11926. characterMakers.push(() => makeCharacter(
  11927. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11928. {
  11929. front: {
  11930. height: math.unit(1.85, "meters"),
  11931. weight: math.unit(80, "kg"),
  11932. name: "Front",
  11933. image: {
  11934. source: "./media/characters/matvei/front.svg",
  11935. extra: 614 / 594,
  11936. bottom: 0.01
  11937. }
  11938. },
  11939. },
  11940. [
  11941. {
  11942. name: "Normal",
  11943. height: math.unit(1.85, "meters"),
  11944. default: true
  11945. },
  11946. ]
  11947. ))
  11948. characterMakers.push(() => makeCharacter(
  11949. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11950. {
  11951. front: {
  11952. height: math.unit(5 + 9 / 12, "feet"),
  11953. weight: math.unit(70, "lb"),
  11954. name: "Front",
  11955. image: {
  11956. source: "./media/characters/quincy/front.svg",
  11957. extra: 3041 / 2751
  11958. }
  11959. },
  11960. back: {
  11961. height: math.unit(5 + 9 / 12, "feet"),
  11962. weight: math.unit(70, "lb"),
  11963. name: "Back",
  11964. image: {
  11965. source: "./media/characters/quincy/back.svg",
  11966. extra: 3041 / 2751
  11967. }
  11968. },
  11969. flying: {
  11970. height: math.unit(5 + 4 / 12, "feet"),
  11971. weight: math.unit(70, "lb"),
  11972. name: "Flying",
  11973. image: {
  11974. source: "./media/characters/quincy/flying.svg",
  11975. extra: 1044 / 930
  11976. }
  11977. },
  11978. },
  11979. [
  11980. {
  11981. name: "Micro",
  11982. height: math.unit(3, "cm")
  11983. },
  11984. {
  11985. name: "Normal",
  11986. height: math.unit(5 + 9 / 12, "feet")
  11987. },
  11988. {
  11989. name: "Macro",
  11990. height: math.unit(200, "meters"),
  11991. default: true
  11992. },
  11993. {
  11994. name: "Megamacro",
  11995. height: math.unit(1000, "meters")
  11996. },
  11997. ]
  11998. ))
  11999. characterMakers.push(() => makeCharacter(
  12000. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12001. {
  12002. front: {
  12003. height: math.unit(3 + 11/12, "feet"),
  12004. weight: math.unit(50, "lb"),
  12005. name: "Front",
  12006. image: {
  12007. source: "./media/characters/vanrel/front.svg",
  12008. extra: 1104/949,
  12009. bottom: 52/1156
  12010. }
  12011. },
  12012. back: {
  12013. height: math.unit(3 + 11/12, "feet"),
  12014. weight: math.unit(50, "lb"),
  12015. name: "Back",
  12016. image: {
  12017. source: "./media/characters/vanrel/back.svg",
  12018. extra: 1119/976,
  12019. bottom: 37/1156
  12020. }
  12021. },
  12022. tome: {
  12023. height: math.unit(1.35, "feet"),
  12024. weight: math.unit(10, "lb"),
  12025. name: "Vanrel's Tome",
  12026. rename: true,
  12027. image: {
  12028. source: "./media/characters/vanrel/tome.svg"
  12029. }
  12030. },
  12031. beans: {
  12032. height: math.unit(0.89, "feet"),
  12033. name: "Beans",
  12034. image: {
  12035. source: "./media/characters/vanrel/beans.svg"
  12036. }
  12037. },
  12038. },
  12039. [
  12040. {
  12041. name: "Normal",
  12042. height: math.unit(3 + 11/12, "feet"),
  12043. default: true
  12044. },
  12045. ]
  12046. ))
  12047. characterMakers.push(() => makeCharacter(
  12048. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12049. {
  12050. front: {
  12051. height: math.unit(7 + 5 / 12, "feet"),
  12052. name: "Front",
  12053. image: {
  12054. source: "./media/characters/kuiper-vanrel/front.svg",
  12055. extra: 1219/1169,
  12056. bottom: 69/1288
  12057. }
  12058. },
  12059. back: {
  12060. height: math.unit(7 + 5 / 12, "feet"),
  12061. name: "Back",
  12062. image: {
  12063. source: "./media/characters/kuiper-vanrel/back.svg",
  12064. extra: 1236/1193,
  12065. bottom: 27/1263
  12066. }
  12067. },
  12068. foot: {
  12069. height: math.unit(0.55, "meters"),
  12070. name: "Foot",
  12071. image: {
  12072. source: "./media/characters/kuiper-vanrel/foot.svg",
  12073. }
  12074. },
  12075. battle: {
  12076. height: math.unit(6.824, "feet"),
  12077. name: "Battle",
  12078. image: {
  12079. source: "./media/characters/kuiper-vanrel/battle.svg",
  12080. extra: 1466 / 1327,
  12081. bottom: 29 / 1492.5
  12082. }
  12083. },
  12084. meerkui: {
  12085. height: math.unit(18, "inches"),
  12086. name: "Meerkui",
  12087. image: {
  12088. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12089. extra: 1354/1289,
  12090. bottom: 69/1423
  12091. }
  12092. },
  12093. },
  12094. [
  12095. {
  12096. name: "Normal",
  12097. height: math.unit(7 + 5 / 12, "feet"),
  12098. default: true
  12099. },
  12100. ]
  12101. ))
  12102. characterMakers.push(() => makeCharacter(
  12103. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12104. {
  12105. front: {
  12106. height: math.unit(8 + 5 / 12, "feet"),
  12107. name: "Front",
  12108. image: {
  12109. source: "./media/characters/keset-vanrel/front.svg",
  12110. extra: 1231/1148,
  12111. bottom: 82/1313
  12112. }
  12113. },
  12114. back: {
  12115. height: math.unit(8 + 5 / 12, "feet"),
  12116. name: "Back",
  12117. image: {
  12118. source: "./media/characters/keset-vanrel/back.svg",
  12119. extra: 1240/1174,
  12120. bottom: 33/1273
  12121. }
  12122. },
  12123. hand: {
  12124. height: math.unit(0.6, "meters"),
  12125. name: "Hand",
  12126. image: {
  12127. source: "./media/characters/keset-vanrel/hand.svg"
  12128. }
  12129. },
  12130. foot: {
  12131. height: math.unit(0.94978, "meters"),
  12132. name: "Foot",
  12133. image: {
  12134. source: "./media/characters/keset-vanrel/foot.svg"
  12135. }
  12136. },
  12137. battle: {
  12138. height: math.unit(7.408, "feet"),
  12139. name: "Battle",
  12140. image: {
  12141. source: "./media/characters/keset-vanrel/battle.svg",
  12142. extra: 1890 / 1386,
  12143. bottom: 73.28 / 1970
  12144. }
  12145. },
  12146. },
  12147. [
  12148. {
  12149. name: "Normal",
  12150. height: math.unit(8 + 5 / 12, "feet"),
  12151. default: true
  12152. },
  12153. ]
  12154. ))
  12155. characterMakers.push(() => makeCharacter(
  12156. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12157. {
  12158. front: {
  12159. height: math.unit(6, "feet"),
  12160. weight: math.unit(150, "lb"),
  12161. name: "Front",
  12162. image: {
  12163. source: "./media/characters/neos/front.svg",
  12164. extra: 1696 / 992,
  12165. bottom: 0.14
  12166. }
  12167. },
  12168. },
  12169. [
  12170. {
  12171. name: "Normal",
  12172. height: math.unit(54, "cm"),
  12173. default: true
  12174. },
  12175. {
  12176. name: "Macro",
  12177. height: math.unit(100, "m")
  12178. },
  12179. {
  12180. name: "Megamacro",
  12181. height: math.unit(10, "km")
  12182. },
  12183. {
  12184. name: "Megamacro+",
  12185. height: math.unit(100, "km")
  12186. },
  12187. {
  12188. name: "Gigamacro",
  12189. height: math.unit(100, "Mm")
  12190. },
  12191. {
  12192. name: "Teramacro",
  12193. height: math.unit(100, "Gm")
  12194. },
  12195. {
  12196. name: "Examacro",
  12197. height: math.unit(100, "Em")
  12198. },
  12199. {
  12200. name: "Godly",
  12201. height: math.unit(10000, "Ym")
  12202. },
  12203. {
  12204. name: "Beyond Godly",
  12205. height: math.unit(25, "multiverses")
  12206. },
  12207. ]
  12208. ))
  12209. characterMakers.push(() => makeCharacter(
  12210. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12211. {
  12212. feminine: {
  12213. height: math.unit(5, "feet"),
  12214. weight: math.unit(100, "lb"),
  12215. name: "Feminine",
  12216. image: {
  12217. source: "./media/characters/sammy-mouse/feminine.svg",
  12218. extra: 2526 / 2425,
  12219. bottom: 0.123
  12220. }
  12221. },
  12222. masculine: {
  12223. height: math.unit(5, "feet"),
  12224. weight: math.unit(100, "lb"),
  12225. name: "Masculine",
  12226. image: {
  12227. source: "./media/characters/sammy-mouse/masculine.svg",
  12228. extra: 2526 / 2425,
  12229. bottom: 0.123
  12230. }
  12231. },
  12232. },
  12233. [
  12234. {
  12235. name: "Micro",
  12236. height: math.unit(5, "inches")
  12237. },
  12238. {
  12239. name: "Normal",
  12240. height: math.unit(5, "feet"),
  12241. default: true
  12242. },
  12243. {
  12244. name: "Macro",
  12245. height: math.unit(60, "feet")
  12246. },
  12247. ]
  12248. ))
  12249. characterMakers.push(() => makeCharacter(
  12250. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12251. {
  12252. front: {
  12253. height: math.unit(4, "feet"),
  12254. weight: math.unit(50, "lb"),
  12255. name: "Front",
  12256. image: {
  12257. source: "./media/characters/kole/front.svg",
  12258. extra: 1423 / 1303,
  12259. bottom: 0.025
  12260. }
  12261. },
  12262. back: {
  12263. height: math.unit(4, "feet"),
  12264. weight: math.unit(50, "lb"),
  12265. name: "Back",
  12266. image: {
  12267. source: "./media/characters/kole/back.svg",
  12268. extra: 1426 / 1280,
  12269. bottom: 0.02
  12270. }
  12271. },
  12272. },
  12273. [
  12274. {
  12275. name: "Normal",
  12276. height: math.unit(4, "feet"),
  12277. default: true
  12278. },
  12279. ]
  12280. ))
  12281. characterMakers.push(() => makeCharacter(
  12282. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12283. {
  12284. front: {
  12285. height: math.unit(2.5, "feet"),
  12286. weight: math.unit(32, "lb"),
  12287. name: "Front",
  12288. image: {
  12289. source: "./media/characters/rufran/front.svg",
  12290. extra: 1313/885,
  12291. bottom: 94/1407
  12292. }
  12293. },
  12294. side: {
  12295. height: math.unit(2.5, "feet"),
  12296. weight: math.unit(32, "lb"),
  12297. name: "Side",
  12298. image: {
  12299. source: "./media/characters/rufran/side.svg",
  12300. extra: 1109/852,
  12301. bottom: 118/1227
  12302. }
  12303. },
  12304. back: {
  12305. height: math.unit(2.5, "feet"),
  12306. weight: math.unit(32, "lb"),
  12307. name: "Back",
  12308. image: {
  12309. source: "./media/characters/rufran/back.svg",
  12310. extra: 1280/878,
  12311. bottom: 131/1411
  12312. }
  12313. },
  12314. mouth: {
  12315. height: math.unit(1.13, "feet"),
  12316. name: "Mouth",
  12317. image: {
  12318. source: "./media/characters/rufran/mouth.svg"
  12319. }
  12320. },
  12321. foot: {
  12322. height: math.unit(1.33, "feet"),
  12323. name: "Foot",
  12324. image: {
  12325. source: "./media/characters/rufran/foot.svg"
  12326. }
  12327. },
  12328. koboldFront: {
  12329. height: math.unit(2 + 6 / 12, "feet"),
  12330. weight: math.unit(20, "lb"),
  12331. name: "Front (Kobold)",
  12332. image: {
  12333. source: "./media/characters/rufran/kobold-front.svg",
  12334. extra: 2041 / 1839,
  12335. bottom: 0.055
  12336. }
  12337. },
  12338. koboldBack: {
  12339. height: math.unit(2 + 6 / 12, "feet"),
  12340. weight: math.unit(20, "lb"),
  12341. name: "Back (Kobold)",
  12342. image: {
  12343. source: "./media/characters/rufran/kobold-back.svg",
  12344. extra: 2054 / 1839,
  12345. bottom: 0.01
  12346. }
  12347. },
  12348. koboldHand: {
  12349. height: math.unit(0.2166, "meters"),
  12350. name: "Hand (Kobold)",
  12351. image: {
  12352. source: "./media/characters/rufran/kobold-hand.svg"
  12353. }
  12354. },
  12355. koboldFoot: {
  12356. height: math.unit(0.185, "meters"),
  12357. name: "Foot (Kobold)",
  12358. image: {
  12359. source: "./media/characters/rufran/kobold-foot.svg"
  12360. }
  12361. },
  12362. },
  12363. [
  12364. {
  12365. name: "Micro",
  12366. height: math.unit(1, "inch")
  12367. },
  12368. {
  12369. name: "Normal",
  12370. height: math.unit(2 + 6 / 12, "feet"),
  12371. default: true
  12372. },
  12373. {
  12374. name: "Big",
  12375. height: math.unit(60, "feet")
  12376. },
  12377. {
  12378. name: "Macro",
  12379. height: math.unit(325, "feet")
  12380. },
  12381. ]
  12382. ))
  12383. characterMakers.push(() => makeCharacter(
  12384. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12385. {
  12386. front: {
  12387. height: math.unit(0.3, "meters"),
  12388. weight: math.unit(3.5, "kg"),
  12389. name: "Front",
  12390. image: {
  12391. source: "./media/characters/chip/front.svg",
  12392. extra: 748 / 674
  12393. }
  12394. },
  12395. },
  12396. [
  12397. {
  12398. name: "Micro",
  12399. height: math.unit(1, "inch"),
  12400. default: true
  12401. },
  12402. ]
  12403. ))
  12404. characterMakers.push(() => makeCharacter(
  12405. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12406. {
  12407. side: {
  12408. height: math.unit(2.3, "meters"),
  12409. weight: math.unit(3500, "lb"),
  12410. name: "Side",
  12411. image: {
  12412. source: "./media/characters/torvid/side.svg",
  12413. extra: 1972 / 722,
  12414. bottom: 0.035
  12415. }
  12416. },
  12417. },
  12418. [
  12419. {
  12420. name: "Normal",
  12421. height: math.unit(2.3, "meters"),
  12422. default: true
  12423. },
  12424. ]
  12425. ))
  12426. characterMakers.push(() => makeCharacter(
  12427. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12428. {
  12429. front: {
  12430. height: math.unit(2, "meters"),
  12431. weight: math.unit(150.5, "kg"),
  12432. name: "Front",
  12433. image: {
  12434. source: "./media/characters/susan/front.svg",
  12435. extra: 693 / 635,
  12436. bottom: 0.05
  12437. }
  12438. },
  12439. },
  12440. [
  12441. {
  12442. name: "Megamacro",
  12443. height: math.unit(505, "miles"),
  12444. default: true
  12445. },
  12446. ]
  12447. ))
  12448. characterMakers.push(() => makeCharacter(
  12449. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12450. {
  12451. front: {
  12452. height: math.unit(6, "feet"),
  12453. weight: math.unit(150, "lb"),
  12454. name: "Front",
  12455. image: {
  12456. source: "./media/characters/raindrops/front.svg",
  12457. extra: 2655 / 2461,
  12458. bottom: 49 / 2705
  12459. }
  12460. },
  12461. back: {
  12462. height: math.unit(6, "feet"),
  12463. weight: math.unit(150, "lb"),
  12464. name: "Back",
  12465. image: {
  12466. source: "./media/characters/raindrops/back.svg",
  12467. extra: 2574 / 2400,
  12468. bottom: 65 / 2634
  12469. }
  12470. },
  12471. },
  12472. [
  12473. {
  12474. name: "Micro",
  12475. height: math.unit(6, "inches")
  12476. },
  12477. {
  12478. name: "Normal",
  12479. height: math.unit(6 + 2 / 12, "feet")
  12480. },
  12481. {
  12482. name: "Macro",
  12483. height: math.unit(131, "feet"),
  12484. default: true
  12485. },
  12486. {
  12487. name: "Megamacro",
  12488. height: math.unit(15, "miles")
  12489. },
  12490. {
  12491. name: "Gigamacro",
  12492. height: math.unit(4000, "miles")
  12493. },
  12494. {
  12495. name: "Teramacro",
  12496. height: math.unit(315000, "miles")
  12497. },
  12498. ]
  12499. ))
  12500. characterMakers.push(() => makeCharacter(
  12501. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12502. {
  12503. front: {
  12504. height: math.unit(2.794, "meters"),
  12505. weight: math.unit(325, "kg"),
  12506. name: "Front",
  12507. image: {
  12508. source: "./media/characters/tezwa/front.svg",
  12509. extra: 2083 / 1906,
  12510. bottom: 0.031
  12511. }
  12512. },
  12513. foot: {
  12514. height: math.unit(0.687, "meters"),
  12515. name: "Foot",
  12516. image: {
  12517. source: "./media/characters/tezwa/foot.svg"
  12518. }
  12519. },
  12520. },
  12521. [
  12522. {
  12523. name: "Normal",
  12524. height: math.unit(9 + 2 / 12, "feet"),
  12525. default: true
  12526. },
  12527. ]
  12528. ))
  12529. characterMakers.push(() => makeCharacter(
  12530. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12531. {
  12532. front: {
  12533. height: math.unit(58, "feet"),
  12534. weight: math.unit(89000, "lb"),
  12535. name: "Front",
  12536. image: {
  12537. source: "./media/characters/typhus/front.svg",
  12538. extra: 816 / 800,
  12539. bottom: 0.065
  12540. }
  12541. },
  12542. },
  12543. [
  12544. {
  12545. name: "Macro",
  12546. height: math.unit(58, "feet"),
  12547. default: true
  12548. },
  12549. ]
  12550. ))
  12551. characterMakers.push(() => makeCharacter(
  12552. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12553. {
  12554. front: {
  12555. height: math.unit(12, "feet"),
  12556. weight: math.unit(6, "tonnes"),
  12557. name: "Front",
  12558. image: {
  12559. source: "./media/characters/lyra-von-wulf/front.svg",
  12560. extra: 1,
  12561. bottom: 0.10
  12562. }
  12563. },
  12564. frontMecha: {
  12565. height: math.unit(12, "feet"),
  12566. weight: math.unit(12, "tonnes"),
  12567. name: "Front (Mecha)",
  12568. image: {
  12569. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12570. extra: 1,
  12571. bottom: 0.042
  12572. }
  12573. },
  12574. maw: {
  12575. height: math.unit(2.2, "feet"),
  12576. name: "Maw",
  12577. image: {
  12578. source: "./media/characters/lyra-von-wulf/maw.svg"
  12579. }
  12580. },
  12581. },
  12582. [
  12583. {
  12584. name: "Normal",
  12585. height: math.unit(12, "feet"),
  12586. default: true
  12587. },
  12588. {
  12589. name: "Classic",
  12590. height: math.unit(50, "feet")
  12591. },
  12592. {
  12593. name: "Macro",
  12594. height: math.unit(500, "feet")
  12595. },
  12596. {
  12597. name: "Megamacro",
  12598. height: math.unit(1, "mile")
  12599. },
  12600. {
  12601. name: "Gigamacro",
  12602. height: math.unit(400, "miles")
  12603. },
  12604. {
  12605. name: "Teramacro",
  12606. height: math.unit(22000, "miles")
  12607. },
  12608. {
  12609. name: "Solarmacro",
  12610. height: math.unit(8600000, "miles")
  12611. },
  12612. {
  12613. name: "Galactic",
  12614. height: math.unit(1057000, "lightyears")
  12615. },
  12616. ]
  12617. ))
  12618. characterMakers.push(() => makeCharacter(
  12619. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12620. {
  12621. front: {
  12622. height: math.unit(6 + 10 / 12, "feet"),
  12623. weight: math.unit(150, "lb"),
  12624. name: "Front",
  12625. image: {
  12626. source: "./media/characters/dixon/front.svg",
  12627. extra: 3361 / 3209,
  12628. bottom: 0.01
  12629. }
  12630. },
  12631. },
  12632. [
  12633. {
  12634. name: "Normal",
  12635. height: math.unit(6 + 10 / 12, "feet"),
  12636. default: true
  12637. },
  12638. {
  12639. name: "Big",
  12640. height: math.unit(12, "meters")
  12641. },
  12642. {
  12643. name: "Macro",
  12644. height: math.unit(500, "meters")
  12645. },
  12646. {
  12647. name: "Megamacro",
  12648. height: math.unit(2, "km")
  12649. },
  12650. ]
  12651. ))
  12652. characterMakers.push(() => makeCharacter(
  12653. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12654. {
  12655. front: {
  12656. height: math.unit(185, "cm"),
  12657. weight: math.unit(68, "kg"),
  12658. name: "Front",
  12659. image: {
  12660. source: "./media/characters/kauko/front.svg",
  12661. extra: 1455 / 1421,
  12662. bottom: 0.03
  12663. }
  12664. },
  12665. back: {
  12666. height: math.unit(185, "cm"),
  12667. weight: math.unit(68, "kg"),
  12668. name: "Back",
  12669. image: {
  12670. source: "./media/characters/kauko/back.svg",
  12671. extra: 1455 / 1421,
  12672. bottom: 0.004
  12673. }
  12674. },
  12675. },
  12676. [
  12677. {
  12678. name: "Normal",
  12679. height: math.unit(185, "cm"),
  12680. default: true
  12681. },
  12682. ]
  12683. ))
  12684. characterMakers.push(() => makeCharacter(
  12685. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12686. {
  12687. front: {
  12688. height: math.unit(6, "feet"),
  12689. weight: math.unit(150, "kg"),
  12690. name: "Front",
  12691. image: {
  12692. source: "./media/characters/varg/front.svg",
  12693. extra: 1108 / 1018,
  12694. bottom: 0.0375
  12695. }
  12696. },
  12697. },
  12698. [
  12699. {
  12700. name: "Normal",
  12701. height: math.unit(5, "meters")
  12702. },
  12703. {
  12704. name: "Macro",
  12705. height: math.unit(200, "meters")
  12706. },
  12707. {
  12708. name: "Megamacro",
  12709. height: math.unit(20, "kilometers")
  12710. },
  12711. {
  12712. name: "True Size",
  12713. height: math.unit(211, "km"),
  12714. default: true
  12715. },
  12716. {
  12717. name: "Gigamacro",
  12718. height: math.unit(1000, "km")
  12719. },
  12720. {
  12721. name: "Gigamacro+",
  12722. height: math.unit(8000, "km")
  12723. },
  12724. {
  12725. name: "Teramacro",
  12726. height: math.unit(1000000, "km")
  12727. },
  12728. ]
  12729. ))
  12730. characterMakers.push(() => makeCharacter(
  12731. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12732. {
  12733. front: {
  12734. height: math.unit(7 + 7 / 12, "feet"),
  12735. weight: math.unit(267, "lb"),
  12736. name: "Front",
  12737. image: {
  12738. source: "./media/characters/dayza/front.svg",
  12739. extra: 1262 / 1200,
  12740. bottom: 0.035
  12741. }
  12742. },
  12743. side: {
  12744. height: math.unit(7 + 7 / 12, "feet"),
  12745. weight: math.unit(267, "lb"),
  12746. name: "Side",
  12747. image: {
  12748. source: "./media/characters/dayza/side.svg",
  12749. extra: 1295 / 1245,
  12750. bottom: 0.05
  12751. }
  12752. },
  12753. back: {
  12754. height: math.unit(7 + 7 / 12, "feet"),
  12755. weight: math.unit(267, "lb"),
  12756. name: "Back",
  12757. image: {
  12758. source: "./media/characters/dayza/back.svg",
  12759. extra: 1241 / 1170
  12760. }
  12761. },
  12762. },
  12763. [
  12764. {
  12765. name: "Normal",
  12766. height: math.unit(7 + 7 / 12, "feet"),
  12767. default: true
  12768. },
  12769. {
  12770. name: "Macro",
  12771. height: math.unit(155, "feet")
  12772. },
  12773. ]
  12774. ))
  12775. characterMakers.push(() => makeCharacter(
  12776. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12777. {
  12778. front: {
  12779. height: math.unit(6 + 5 / 12, "feet"),
  12780. weight: math.unit(160, "lb"),
  12781. name: "Front",
  12782. image: {
  12783. source: "./media/characters/xanthos/front.svg",
  12784. extra: 1,
  12785. bottom: 0.04
  12786. }
  12787. },
  12788. back: {
  12789. height: math.unit(6 + 5 / 12, "feet"),
  12790. weight: math.unit(160, "lb"),
  12791. name: "Back",
  12792. image: {
  12793. source: "./media/characters/xanthos/back.svg",
  12794. extra: 1,
  12795. bottom: 0.03
  12796. }
  12797. },
  12798. hand: {
  12799. height: math.unit(0.928, "feet"),
  12800. name: "Hand",
  12801. image: {
  12802. source: "./media/characters/xanthos/hand.svg"
  12803. }
  12804. },
  12805. foot: {
  12806. height: math.unit(1.286, "feet"),
  12807. name: "Foot",
  12808. image: {
  12809. source: "./media/characters/xanthos/foot.svg"
  12810. }
  12811. },
  12812. },
  12813. [
  12814. {
  12815. name: "Normal",
  12816. height: math.unit(6 + 5 / 12, "feet"),
  12817. default: true
  12818. },
  12819. {
  12820. name: "Normal+",
  12821. height: math.unit(6, "meters")
  12822. },
  12823. {
  12824. name: "Macro",
  12825. height: math.unit(40, "feet")
  12826. },
  12827. {
  12828. name: "Macro+",
  12829. height: math.unit(200, "meters")
  12830. },
  12831. {
  12832. name: "Megamacro",
  12833. height: math.unit(20, "km")
  12834. },
  12835. {
  12836. name: "Megamacro+",
  12837. height: math.unit(100, "km")
  12838. },
  12839. {
  12840. name: "Gigamacro",
  12841. height: math.unit(200, "megameters")
  12842. },
  12843. {
  12844. name: "Gigamacro+",
  12845. height: math.unit(1.5, "gigameters")
  12846. },
  12847. ]
  12848. ))
  12849. characterMakers.push(() => makeCharacter(
  12850. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12851. {
  12852. front: {
  12853. height: math.unit(6 + 3 / 12, "feet"),
  12854. weight: math.unit(215, "lb"),
  12855. name: "Front",
  12856. image: {
  12857. source: "./media/characters/grynn/front.svg",
  12858. extra: 4627 / 4209,
  12859. bottom: 0.047
  12860. }
  12861. },
  12862. },
  12863. [
  12864. {
  12865. name: "Micro",
  12866. height: math.unit(6, "inches")
  12867. },
  12868. {
  12869. name: "Normal",
  12870. height: math.unit(6 + 3 / 12, "feet"),
  12871. default: true
  12872. },
  12873. {
  12874. name: "Big",
  12875. height: math.unit(104, "feet")
  12876. },
  12877. {
  12878. name: "Macro",
  12879. height: math.unit(944, "feet")
  12880. },
  12881. {
  12882. name: "Macro+",
  12883. height: math.unit(9480, "feet")
  12884. },
  12885. {
  12886. name: "Megamacro",
  12887. height: math.unit(78752, "feet")
  12888. },
  12889. {
  12890. name: "Megamacro+",
  12891. height: math.unit(630128, "feet")
  12892. },
  12893. {
  12894. name: "Megamacro++",
  12895. height: math.unit(3150695, "feet")
  12896. },
  12897. ]
  12898. ))
  12899. characterMakers.push(() => makeCharacter(
  12900. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12901. {
  12902. front: {
  12903. height: math.unit(7 + 5 / 12, "feet"),
  12904. weight: math.unit(450, "lb"),
  12905. name: "Front",
  12906. image: {
  12907. source: "./media/characters/mocha-aura/front.svg",
  12908. extra: 1907 / 1817,
  12909. bottom: 0.04
  12910. }
  12911. },
  12912. back: {
  12913. height: math.unit(7 + 5 / 12, "feet"),
  12914. weight: math.unit(450, "lb"),
  12915. name: "Back",
  12916. image: {
  12917. source: "./media/characters/mocha-aura/back.svg",
  12918. extra: 1900 / 1825,
  12919. bottom: 0.045
  12920. }
  12921. },
  12922. },
  12923. [
  12924. {
  12925. name: "Nano",
  12926. height: math.unit(1, "nm")
  12927. },
  12928. {
  12929. name: "Megamicro",
  12930. height: math.unit(1, "mm")
  12931. },
  12932. {
  12933. name: "Micro",
  12934. height: math.unit(3, "inches")
  12935. },
  12936. {
  12937. name: "Normal",
  12938. height: math.unit(7 + 5 / 12, "feet"),
  12939. default: true
  12940. },
  12941. {
  12942. name: "Macro",
  12943. height: math.unit(30, "feet")
  12944. },
  12945. {
  12946. name: "Megamacro",
  12947. height: math.unit(3500, "feet")
  12948. },
  12949. {
  12950. name: "Teramacro",
  12951. height: math.unit(500000, "miles")
  12952. },
  12953. {
  12954. name: "Petamacro",
  12955. height: math.unit(50000000000000000, "parsecs")
  12956. },
  12957. ]
  12958. ))
  12959. characterMakers.push(() => makeCharacter(
  12960. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12961. {
  12962. front: {
  12963. height: math.unit(6, "feet"),
  12964. weight: math.unit(150, "lb"),
  12965. name: "Front",
  12966. image: {
  12967. source: "./media/characters/ilisha-devya/front.svg",
  12968. extra: 1,
  12969. bottom: 0.175
  12970. }
  12971. },
  12972. back: {
  12973. height: math.unit(6, "feet"),
  12974. weight: math.unit(150, "lb"),
  12975. name: "Back",
  12976. image: {
  12977. source: "./media/characters/ilisha-devya/back.svg",
  12978. extra: 1,
  12979. bottom: 0.015
  12980. }
  12981. },
  12982. },
  12983. [
  12984. {
  12985. name: "Macro",
  12986. height: math.unit(500, "feet"),
  12987. default: true
  12988. },
  12989. {
  12990. name: "Megamacro",
  12991. height: math.unit(10, "miles")
  12992. },
  12993. {
  12994. name: "Gigamacro",
  12995. height: math.unit(100000, "miles")
  12996. },
  12997. {
  12998. name: "Examacro",
  12999. height: math.unit(1e9, "lightyears")
  13000. },
  13001. {
  13002. name: "Omniversal",
  13003. height: math.unit(1e33, "lightyears")
  13004. },
  13005. {
  13006. name: "Beyond Infinite",
  13007. height: math.unit(1e100, "lightyears")
  13008. },
  13009. ]
  13010. ))
  13011. characterMakers.push(() => makeCharacter(
  13012. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13013. {
  13014. Side: {
  13015. height: math.unit(6, "feet"),
  13016. weight: math.unit(150, "lb"),
  13017. name: "Side",
  13018. image: {
  13019. source: "./media/characters/mira/side.svg",
  13020. extra: 900 / 799,
  13021. bottom: 0.02
  13022. }
  13023. },
  13024. },
  13025. [
  13026. {
  13027. name: "Human Size",
  13028. height: math.unit(6, "feet")
  13029. },
  13030. {
  13031. name: "Macro",
  13032. height: math.unit(100, "feet"),
  13033. default: true
  13034. },
  13035. {
  13036. name: "Megamacro",
  13037. height: math.unit(10, "miles")
  13038. },
  13039. {
  13040. name: "Gigamacro",
  13041. height: math.unit(25000, "miles")
  13042. },
  13043. {
  13044. name: "Teramacro",
  13045. height: math.unit(300, "AU")
  13046. },
  13047. {
  13048. name: "Full Size",
  13049. height: math.unit(4.5e10, "lightyears")
  13050. },
  13051. ]
  13052. ))
  13053. characterMakers.push(() => makeCharacter(
  13054. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13055. {
  13056. front: {
  13057. height: math.unit(6, "feet"),
  13058. weight: math.unit(150, "lb"),
  13059. name: "Front",
  13060. image: {
  13061. source: "./media/characters/holly/front.svg",
  13062. extra: 639 / 606
  13063. }
  13064. },
  13065. back: {
  13066. height: math.unit(6, "feet"),
  13067. weight: math.unit(150, "lb"),
  13068. name: "Back",
  13069. image: {
  13070. source: "./media/characters/holly/back.svg",
  13071. extra: 623 / 598
  13072. }
  13073. },
  13074. frontWorking: {
  13075. height: math.unit(6, "feet"),
  13076. weight: math.unit(150, "lb"),
  13077. name: "Front (Working)",
  13078. image: {
  13079. source: "./media/characters/holly/front-working.svg",
  13080. extra: 607 / 577,
  13081. bottom: 0.048
  13082. }
  13083. },
  13084. },
  13085. [
  13086. {
  13087. name: "Normal",
  13088. height: math.unit(12 + 3 / 12, "feet"),
  13089. default: true
  13090. },
  13091. ]
  13092. ))
  13093. characterMakers.push(() => makeCharacter(
  13094. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13095. {
  13096. front: {
  13097. height: math.unit(6, "feet"),
  13098. weight: math.unit(150, "lb"),
  13099. name: "Front",
  13100. image: {
  13101. source: "./media/characters/porter/front.svg",
  13102. extra: 1,
  13103. bottom: 0.01
  13104. }
  13105. },
  13106. frontRobes: {
  13107. height: math.unit(6, "feet"),
  13108. weight: math.unit(150, "lb"),
  13109. name: "Front (Robes)",
  13110. image: {
  13111. source: "./media/characters/porter/front-robes.svg",
  13112. extra: 1.01,
  13113. bottom: 0.01
  13114. }
  13115. },
  13116. },
  13117. [
  13118. {
  13119. name: "Normal",
  13120. height: math.unit(11 + 9 / 12, "feet"),
  13121. default: true
  13122. },
  13123. ]
  13124. ))
  13125. characterMakers.push(() => makeCharacter(
  13126. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13127. {
  13128. legendary: {
  13129. height: math.unit(6, "feet"),
  13130. weight: math.unit(150, "lb"),
  13131. name: "Legendary",
  13132. image: {
  13133. source: "./media/characters/lucy/legendary.svg",
  13134. extra: 1355 / 1100,
  13135. bottom: 0.045
  13136. }
  13137. },
  13138. },
  13139. [
  13140. {
  13141. name: "Legendary",
  13142. height: math.unit(86882 * 2, "miles"),
  13143. default: true
  13144. },
  13145. ]
  13146. ))
  13147. characterMakers.push(() => makeCharacter(
  13148. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13149. {
  13150. front: {
  13151. height: math.unit(6, "feet"),
  13152. weight: math.unit(150, "lb"),
  13153. name: "Front",
  13154. image: {
  13155. source: "./media/characters/drusilla/front.svg",
  13156. extra: 678 / 635,
  13157. bottom: 0.03
  13158. }
  13159. },
  13160. back: {
  13161. height: math.unit(6, "feet"),
  13162. weight: math.unit(150, "lb"),
  13163. name: "Back",
  13164. image: {
  13165. source: "./media/characters/drusilla/back.svg",
  13166. extra: 678 / 635,
  13167. bottom: 0.005
  13168. }
  13169. },
  13170. },
  13171. [
  13172. {
  13173. name: "Macro",
  13174. height: math.unit(100, "feet")
  13175. },
  13176. {
  13177. name: "Canon Height",
  13178. height: math.unit(2000, "feet"),
  13179. default: true
  13180. },
  13181. ]
  13182. ))
  13183. characterMakers.push(() => makeCharacter(
  13184. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13185. {
  13186. front: {
  13187. height: math.unit(6, "feet"),
  13188. weight: math.unit(180, "lb"),
  13189. name: "Front",
  13190. image: {
  13191. source: "./media/characters/renard-thatch/front.svg",
  13192. extra: 2411 / 2275,
  13193. bottom: 0.01
  13194. }
  13195. },
  13196. frontPosing: {
  13197. height: math.unit(6, "feet"),
  13198. weight: math.unit(180, "lb"),
  13199. name: "Front (Posing)",
  13200. image: {
  13201. source: "./media/characters/renard-thatch/front-posing.svg",
  13202. extra: 2381 / 2261,
  13203. bottom: 0.01
  13204. }
  13205. },
  13206. back: {
  13207. height: math.unit(6, "feet"),
  13208. weight: math.unit(180, "lb"),
  13209. name: "Back",
  13210. image: {
  13211. source: "./media/characters/renard-thatch/back.svg",
  13212. extra: 2428 / 2288
  13213. }
  13214. },
  13215. },
  13216. [
  13217. {
  13218. name: "Micro",
  13219. height: math.unit(3, "inches")
  13220. },
  13221. {
  13222. name: "Default",
  13223. height: math.unit(6, "feet"),
  13224. default: true
  13225. },
  13226. {
  13227. name: "Macro",
  13228. height: math.unit(75, "feet")
  13229. },
  13230. ]
  13231. ))
  13232. characterMakers.push(() => makeCharacter(
  13233. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13234. {
  13235. front: {
  13236. height: math.unit(1450, "feet"),
  13237. weight: math.unit(1.21e6, "tons"),
  13238. name: "Front",
  13239. image: {
  13240. source: "./media/characters/sekvra/front.svg",
  13241. extra: 1,
  13242. bottom: 0.03
  13243. }
  13244. },
  13245. frontClothed: {
  13246. height: math.unit(1450, "feet"),
  13247. weight: math.unit(1.21e6, "tons"),
  13248. name: "Front (Clothed)",
  13249. image: {
  13250. source: "./media/characters/sekvra/front-clothed.svg",
  13251. extra: 1,
  13252. bottom: 0.03
  13253. }
  13254. },
  13255. side: {
  13256. height: math.unit(1450, "feet"),
  13257. weight: math.unit(1.21e6, "tons"),
  13258. name: "Side",
  13259. image: {
  13260. source: "./media/characters/sekvra/side.svg",
  13261. extra: 1,
  13262. bottom: 0.025
  13263. }
  13264. },
  13265. back: {
  13266. height: math.unit(1450, "feet"),
  13267. weight: math.unit(1.21e6, "tons"),
  13268. name: "Back",
  13269. image: {
  13270. source: "./media/characters/sekvra/back.svg",
  13271. extra: 1,
  13272. bottom: 0.005
  13273. }
  13274. },
  13275. },
  13276. [
  13277. {
  13278. name: "Macro",
  13279. height: math.unit(1450, "feet"),
  13280. default: true
  13281. },
  13282. {
  13283. name: "Megamacro",
  13284. height: math.unit(15000, "feet")
  13285. },
  13286. ]
  13287. ))
  13288. characterMakers.push(() => makeCharacter(
  13289. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13290. {
  13291. front: {
  13292. height: math.unit(6, "feet"),
  13293. weight: math.unit(150, "lb"),
  13294. name: "Front",
  13295. image: {
  13296. source: "./media/characters/carmine/front.svg",
  13297. extra: 1,
  13298. bottom: 0.035
  13299. }
  13300. },
  13301. frontArmor: {
  13302. height: math.unit(6, "feet"),
  13303. weight: math.unit(150, "lb"),
  13304. name: "Front (Armor)",
  13305. image: {
  13306. source: "./media/characters/carmine/front-armor.svg",
  13307. extra: 1,
  13308. bottom: 0.035
  13309. }
  13310. },
  13311. },
  13312. [
  13313. {
  13314. name: "Large",
  13315. height: math.unit(1, "mile")
  13316. },
  13317. {
  13318. name: "Huge",
  13319. height: math.unit(40, "miles"),
  13320. default: true
  13321. },
  13322. {
  13323. name: "Colossal",
  13324. height: math.unit(2500, "miles")
  13325. },
  13326. ]
  13327. ))
  13328. characterMakers.push(() => makeCharacter(
  13329. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13330. {
  13331. front: {
  13332. height: math.unit(6, "feet"),
  13333. weight: math.unit(150, "lb"),
  13334. name: "Front",
  13335. image: {
  13336. source: "./media/characters/elyssia/front.svg",
  13337. extra: 2201 / 2035,
  13338. bottom: 0.05
  13339. }
  13340. },
  13341. frontClothed: {
  13342. height: math.unit(6, "feet"),
  13343. weight: math.unit(150, "lb"),
  13344. name: "Front (Clothed)",
  13345. image: {
  13346. source: "./media/characters/elyssia/front-clothed.svg",
  13347. extra: 2201 / 2035,
  13348. bottom: 0.05
  13349. }
  13350. },
  13351. back: {
  13352. height: math.unit(6, "feet"),
  13353. weight: math.unit(150, "lb"),
  13354. name: "Back",
  13355. image: {
  13356. source: "./media/characters/elyssia/back.svg",
  13357. extra: 2201 / 2035,
  13358. bottom: 0.013
  13359. }
  13360. },
  13361. },
  13362. [
  13363. {
  13364. name: "Smaller",
  13365. height: math.unit(150, "feet")
  13366. },
  13367. {
  13368. name: "Standard",
  13369. height: math.unit(1400, "feet"),
  13370. default: true
  13371. },
  13372. {
  13373. name: "Distracted",
  13374. height: math.unit(15000, "feet")
  13375. },
  13376. ]
  13377. ))
  13378. characterMakers.push(() => makeCharacter(
  13379. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13380. {
  13381. front: {
  13382. height: math.unit(7 + 4 / 12, "feet"),
  13383. weight: math.unit(500, "lb"),
  13384. name: "Front",
  13385. image: {
  13386. source: "./media/characters/geno-maxwell/front.svg",
  13387. extra: 2207 / 2040,
  13388. bottom: 0.015
  13389. }
  13390. },
  13391. },
  13392. [
  13393. {
  13394. name: "Micro",
  13395. height: math.unit(3, "inches")
  13396. },
  13397. {
  13398. name: "Normal",
  13399. height: math.unit(7 + 4 / 12, "feet"),
  13400. default: true
  13401. },
  13402. {
  13403. name: "Macro",
  13404. height: math.unit(220, "feet")
  13405. },
  13406. {
  13407. name: "Megamacro",
  13408. height: math.unit(11, "miles")
  13409. },
  13410. ]
  13411. ))
  13412. characterMakers.push(() => makeCharacter(
  13413. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13414. {
  13415. front: {
  13416. height: math.unit(7 + 4 / 12, "feet"),
  13417. weight: math.unit(500, "lb"),
  13418. name: "Front",
  13419. image: {
  13420. source: "./media/characters/regena-maxwell/front.svg",
  13421. extra: 3115 / 2770,
  13422. bottom: 0.02
  13423. }
  13424. },
  13425. },
  13426. [
  13427. {
  13428. name: "Normal",
  13429. height: math.unit(7 + 4 / 12, "feet"),
  13430. default: true
  13431. },
  13432. {
  13433. name: "Macro",
  13434. height: math.unit(220, "feet")
  13435. },
  13436. {
  13437. name: "Megamacro",
  13438. height: math.unit(11, "miles")
  13439. },
  13440. ]
  13441. ))
  13442. characterMakers.push(() => makeCharacter(
  13443. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13444. {
  13445. front: {
  13446. height: math.unit(6, "feet"),
  13447. weight: math.unit(150, "lb"),
  13448. name: "Front",
  13449. image: {
  13450. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13451. extra: 860 / 690,
  13452. bottom: 0.03
  13453. }
  13454. },
  13455. },
  13456. [
  13457. {
  13458. name: "Normal",
  13459. height: math.unit(1.7, "meters"),
  13460. default: true
  13461. },
  13462. ]
  13463. ))
  13464. characterMakers.push(() => makeCharacter(
  13465. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13466. {
  13467. front: {
  13468. height: math.unit(6, "feet"),
  13469. weight: math.unit(150, "lb"),
  13470. name: "Front",
  13471. image: {
  13472. source: "./media/characters/quilly/front.svg",
  13473. extra: 890 / 776
  13474. }
  13475. },
  13476. },
  13477. [
  13478. {
  13479. name: "Gigamacro",
  13480. height: math.unit(404090, "miles"),
  13481. default: true
  13482. },
  13483. ]
  13484. ))
  13485. characterMakers.push(() => makeCharacter(
  13486. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13487. {
  13488. front: {
  13489. height: math.unit(7 + 8 / 12, "feet"),
  13490. weight: math.unit(350, "lb"),
  13491. name: "Front",
  13492. image: {
  13493. source: "./media/characters/tempest/front.svg",
  13494. extra: 1175 / 1086,
  13495. bottom: 0.02
  13496. }
  13497. },
  13498. },
  13499. [
  13500. {
  13501. name: "Normal",
  13502. height: math.unit(7 + 8 / 12, "feet"),
  13503. default: true
  13504. },
  13505. ]
  13506. ))
  13507. characterMakers.push(() => makeCharacter(
  13508. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13509. {
  13510. side: {
  13511. height: math.unit(4 + 5 / 12, "feet"),
  13512. weight: math.unit(80, "lb"),
  13513. name: "Side",
  13514. image: {
  13515. source: "./media/characters/rodger/side.svg",
  13516. extra: 1235 / 1118
  13517. }
  13518. },
  13519. },
  13520. [
  13521. {
  13522. name: "Micro",
  13523. height: math.unit(1, "inch")
  13524. },
  13525. {
  13526. name: "Normal",
  13527. height: math.unit(4 + 5 / 12, "feet"),
  13528. default: true
  13529. },
  13530. {
  13531. name: "Macro",
  13532. height: math.unit(120, "feet")
  13533. },
  13534. ]
  13535. ))
  13536. characterMakers.push(() => makeCharacter(
  13537. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13538. {
  13539. front: {
  13540. height: math.unit(6, "feet"),
  13541. weight: math.unit(150, "lb"),
  13542. name: "Front",
  13543. image: {
  13544. source: "./media/characters/danyel/front.svg",
  13545. extra: 1185 / 1123,
  13546. bottom: 0.05
  13547. }
  13548. },
  13549. },
  13550. [
  13551. {
  13552. name: "Shrunken",
  13553. height: math.unit(0.5, "mm")
  13554. },
  13555. {
  13556. name: "Micro",
  13557. height: math.unit(1, "mm"),
  13558. default: true
  13559. },
  13560. {
  13561. name: "Upsized",
  13562. height: math.unit(5 + 5 / 12, "feet")
  13563. },
  13564. ]
  13565. ))
  13566. characterMakers.push(() => makeCharacter(
  13567. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13568. {
  13569. front: {
  13570. height: math.unit(5 + 6 / 12, "feet"),
  13571. weight: math.unit(200, "lb"),
  13572. name: "Front",
  13573. image: {
  13574. source: "./media/characters/vivian-bijoux/front.svg",
  13575. extra: 1,
  13576. bottom: 0.072
  13577. }
  13578. },
  13579. },
  13580. [
  13581. {
  13582. name: "Normal",
  13583. height: math.unit(5 + 6 / 12, "feet"),
  13584. default: true
  13585. },
  13586. {
  13587. name: "Bad Dream",
  13588. height: math.unit(500, "feet")
  13589. },
  13590. {
  13591. name: "Nightmare",
  13592. height: math.unit(500, "miles")
  13593. },
  13594. ]
  13595. ))
  13596. characterMakers.push(() => makeCharacter(
  13597. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13598. {
  13599. front: {
  13600. height: math.unit(6 + 1 / 12, "feet"),
  13601. weight: math.unit(260, "lb"),
  13602. name: "Front",
  13603. image: {
  13604. source: "./media/characters/zeta/front.svg",
  13605. extra: 1968 / 1889,
  13606. bottom: 0.06
  13607. }
  13608. },
  13609. back: {
  13610. height: math.unit(6 + 1 / 12, "feet"),
  13611. weight: math.unit(260, "lb"),
  13612. name: "Back",
  13613. image: {
  13614. source: "./media/characters/zeta/back.svg",
  13615. extra: 1944 / 1858,
  13616. bottom: 0.03
  13617. }
  13618. },
  13619. hand: {
  13620. height: math.unit(1.112, "feet"),
  13621. name: "Hand",
  13622. image: {
  13623. source: "./media/characters/zeta/hand.svg"
  13624. }
  13625. },
  13626. foot: {
  13627. height: math.unit(1.48, "feet"),
  13628. name: "Foot",
  13629. image: {
  13630. source: "./media/characters/zeta/foot.svg"
  13631. }
  13632. },
  13633. },
  13634. [
  13635. {
  13636. name: "Micro",
  13637. height: math.unit(6, "inches")
  13638. },
  13639. {
  13640. name: "Normal",
  13641. height: math.unit(6 + 1 / 12, "feet"),
  13642. default: true
  13643. },
  13644. {
  13645. name: "Macro",
  13646. height: math.unit(20, "feet")
  13647. },
  13648. ]
  13649. ))
  13650. characterMakers.push(() => makeCharacter(
  13651. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13652. {
  13653. front: {
  13654. height: math.unit(6, "feet"),
  13655. weight: math.unit(150, "lb"),
  13656. name: "Front",
  13657. image: {
  13658. source: "./media/characters/jamie-larsen/front.svg",
  13659. extra: 962 / 933,
  13660. bottom: 0.02
  13661. }
  13662. },
  13663. back: {
  13664. height: math.unit(6, "feet"),
  13665. weight: math.unit(150, "lb"),
  13666. name: "Back",
  13667. image: {
  13668. source: "./media/characters/jamie-larsen/back.svg",
  13669. extra: 997 / 946
  13670. }
  13671. },
  13672. },
  13673. [
  13674. {
  13675. name: "Macro",
  13676. height: math.unit(28 + 7 / 12, "feet"),
  13677. default: true
  13678. },
  13679. {
  13680. name: "Macro+",
  13681. height: math.unit(180, "feet")
  13682. },
  13683. {
  13684. name: "Megamacro",
  13685. height: math.unit(10, "miles")
  13686. },
  13687. {
  13688. name: "Gigamacro",
  13689. height: math.unit(200000, "miles")
  13690. },
  13691. ]
  13692. ))
  13693. characterMakers.push(() => makeCharacter(
  13694. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13695. {
  13696. front: {
  13697. height: math.unit(6, "feet"),
  13698. weight: math.unit(120, "lb"),
  13699. name: "Front",
  13700. image: {
  13701. source: "./media/characters/vance/front.svg",
  13702. extra: 1980 / 1890,
  13703. bottom: 0.09
  13704. }
  13705. },
  13706. back: {
  13707. height: math.unit(6, "feet"),
  13708. weight: math.unit(120, "lb"),
  13709. name: "Back",
  13710. image: {
  13711. source: "./media/characters/vance/back.svg",
  13712. extra: 2081 / 1994,
  13713. bottom: 0.014
  13714. }
  13715. },
  13716. hand: {
  13717. height: math.unit(0.88, "feet"),
  13718. name: "Hand",
  13719. image: {
  13720. source: "./media/characters/vance/hand.svg"
  13721. }
  13722. },
  13723. foot: {
  13724. height: math.unit(0.64, "feet"),
  13725. name: "Foot",
  13726. image: {
  13727. source: "./media/characters/vance/foot.svg"
  13728. }
  13729. },
  13730. },
  13731. [
  13732. {
  13733. name: "Small",
  13734. height: math.unit(90, "feet"),
  13735. default: true
  13736. },
  13737. {
  13738. name: "Macro",
  13739. height: math.unit(100, "meters")
  13740. },
  13741. {
  13742. name: "Megamacro",
  13743. height: math.unit(15, "miles")
  13744. },
  13745. ]
  13746. ))
  13747. characterMakers.push(() => makeCharacter(
  13748. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13749. {
  13750. front: {
  13751. height: math.unit(6, "feet"),
  13752. weight: math.unit(180, "lb"),
  13753. name: "Front",
  13754. image: {
  13755. source: "./media/characters/xochitl/front.svg",
  13756. extra: 2297 / 2261,
  13757. bottom: 0.065
  13758. }
  13759. },
  13760. back: {
  13761. height: math.unit(6, "feet"),
  13762. weight: math.unit(180, "lb"),
  13763. name: "Back",
  13764. image: {
  13765. source: "./media/characters/xochitl/back.svg",
  13766. extra: 2386 / 2354,
  13767. bottom: 0.01
  13768. }
  13769. },
  13770. foot: {
  13771. height: math.unit(6 / 5 * 1.15, "feet"),
  13772. weight: math.unit(150, "lb"),
  13773. name: "Foot",
  13774. image: {
  13775. source: "./media/characters/xochitl/foot.svg"
  13776. }
  13777. },
  13778. },
  13779. [
  13780. {
  13781. name: "Macro",
  13782. height: math.unit(80, "feet")
  13783. },
  13784. {
  13785. name: "Macro+",
  13786. height: math.unit(400, "feet"),
  13787. default: true
  13788. },
  13789. {
  13790. name: "Gigamacro",
  13791. height: math.unit(80000, "miles")
  13792. },
  13793. {
  13794. name: "Gigamacro+",
  13795. height: math.unit(400000, "miles")
  13796. },
  13797. {
  13798. name: "Teramacro",
  13799. height: math.unit(300, "AU")
  13800. },
  13801. ]
  13802. ))
  13803. characterMakers.push(() => makeCharacter(
  13804. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13805. {
  13806. front: {
  13807. height: math.unit(6, "feet"),
  13808. weight: math.unit(150, "lb"),
  13809. name: "Front",
  13810. image: {
  13811. source: "./media/characters/vincent/front.svg",
  13812. extra: 1130 / 1080,
  13813. bottom: 0.055
  13814. }
  13815. },
  13816. beak: {
  13817. height: math.unit(6 * 0.1, "feet"),
  13818. name: "Beak",
  13819. image: {
  13820. source: "./media/characters/vincent/beak.svg"
  13821. }
  13822. },
  13823. hand: {
  13824. height: math.unit(6 * 0.85, "feet"),
  13825. weight: math.unit(150, "lb"),
  13826. name: "Hand",
  13827. image: {
  13828. source: "./media/characters/vincent/hand.svg"
  13829. }
  13830. },
  13831. foot: {
  13832. height: math.unit(6 * 0.19, "feet"),
  13833. weight: math.unit(150, "lb"),
  13834. name: "Foot",
  13835. image: {
  13836. source: "./media/characters/vincent/foot.svg"
  13837. }
  13838. },
  13839. },
  13840. [
  13841. {
  13842. name: "Base",
  13843. height: math.unit(6 + 5 / 12, "feet"),
  13844. default: true
  13845. },
  13846. {
  13847. name: "Macro",
  13848. height: math.unit(300, "feet")
  13849. },
  13850. {
  13851. name: "Megamacro",
  13852. height: math.unit(2, "miles")
  13853. },
  13854. {
  13855. name: "Gigamacro",
  13856. height: math.unit(1000, "miles")
  13857. },
  13858. ]
  13859. ))
  13860. characterMakers.push(() => makeCharacter(
  13861. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13862. {
  13863. front: {
  13864. height: math.unit(2, "meters"),
  13865. weight: math.unit(500, "kg"),
  13866. name: "Front",
  13867. image: {
  13868. source: "./media/characters/coatl/front.svg",
  13869. extra: 3948 / 3500,
  13870. bottom: 0.082
  13871. }
  13872. },
  13873. },
  13874. [
  13875. {
  13876. name: "Normal",
  13877. height: math.unit(4, "meters")
  13878. },
  13879. {
  13880. name: "Macro",
  13881. height: math.unit(100, "meters"),
  13882. default: true
  13883. },
  13884. {
  13885. name: "Macro+",
  13886. height: math.unit(300, "meters")
  13887. },
  13888. {
  13889. name: "Megamacro",
  13890. height: math.unit(3, "gigameters")
  13891. },
  13892. {
  13893. name: "Megamacro+",
  13894. height: math.unit(300, "terameters")
  13895. },
  13896. {
  13897. name: "Megamacro++",
  13898. height: math.unit(3, "lightyears")
  13899. },
  13900. ]
  13901. ))
  13902. characterMakers.push(() => makeCharacter(
  13903. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13904. {
  13905. front: {
  13906. height: math.unit(6, "feet"),
  13907. weight: math.unit(50, "kg"),
  13908. name: "front",
  13909. image: {
  13910. source: "./media/characters/shiroryu/front.svg",
  13911. extra: 1990 / 1935
  13912. }
  13913. },
  13914. },
  13915. [
  13916. {
  13917. name: "Mortal Mingling",
  13918. height: math.unit(3, "meters")
  13919. },
  13920. {
  13921. name: "Kaiju-ish",
  13922. height: math.unit(250, "meters")
  13923. },
  13924. {
  13925. name: "Somewhat Godly",
  13926. height: math.unit(400, "km"),
  13927. default: true
  13928. },
  13929. {
  13930. name: "Planetary",
  13931. height: math.unit(300, "megameters")
  13932. },
  13933. {
  13934. name: "Galaxy-dwarfing",
  13935. height: math.unit(450, "kiloparsecs")
  13936. },
  13937. {
  13938. name: "Universe Eater",
  13939. height: math.unit(150, "gigaparsecs")
  13940. },
  13941. {
  13942. name: "Almost Immeasurable",
  13943. height: math.unit(1.3e266, "yottaparsecs")
  13944. },
  13945. ]
  13946. ))
  13947. characterMakers.push(() => makeCharacter(
  13948. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13949. {
  13950. front: {
  13951. height: math.unit(6, "feet"),
  13952. weight: math.unit(150, "lb"),
  13953. name: "Front",
  13954. image: {
  13955. source: "./media/characters/umeko/front.svg",
  13956. extra: 1,
  13957. bottom: 0.019
  13958. }
  13959. },
  13960. frontArmored: {
  13961. height: math.unit(6, "feet"),
  13962. weight: math.unit(150, "lb"),
  13963. name: "Front (Armored)",
  13964. image: {
  13965. source: "./media/characters/umeko/front-armored.svg",
  13966. extra: 1,
  13967. bottom: 0.021
  13968. }
  13969. },
  13970. },
  13971. [
  13972. {
  13973. name: "Macro",
  13974. height: math.unit(220, "feet"),
  13975. default: true
  13976. },
  13977. {
  13978. name: "Guardian Dragon",
  13979. height: math.unit(50, "miles")
  13980. },
  13981. {
  13982. name: "Cosmic",
  13983. height: math.unit(800000, "miles")
  13984. },
  13985. ]
  13986. ))
  13987. characterMakers.push(() => makeCharacter(
  13988. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13989. {
  13990. front: {
  13991. height: math.unit(6, "feet"),
  13992. weight: math.unit(150, "lb"),
  13993. name: "Front",
  13994. image: {
  13995. source: "./media/characters/cassidy/front.svg",
  13996. extra: 1,
  13997. bottom: 0.043
  13998. }
  13999. },
  14000. },
  14001. [
  14002. {
  14003. name: "Canon Height",
  14004. height: math.unit(120, "feet"),
  14005. default: true
  14006. },
  14007. {
  14008. name: "Macro+",
  14009. height: math.unit(400, "feet")
  14010. },
  14011. {
  14012. name: "Macro++",
  14013. height: math.unit(4000, "feet")
  14014. },
  14015. {
  14016. name: "Megamacro",
  14017. height: math.unit(3, "miles")
  14018. },
  14019. ]
  14020. ))
  14021. characterMakers.push(() => makeCharacter(
  14022. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14023. {
  14024. front: {
  14025. height: math.unit(6, "feet"),
  14026. weight: math.unit(150, "lb"),
  14027. name: "Front",
  14028. image: {
  14029. source: "./media/characters/isaac/front.svg",
  14030. extra: 896 / 815,
  14031. bottom: 0.11
  14032. }
  14033. },
  14034. },
  14035. [
  14036. {
  14037. name: "Human Size",
  14038. height: math.unit(8, "feet"),
  14039. default: true
  14040. },
  14041. {
  14042. name: "Macro",
  14043. height: math.unit(400, "feet")
  14044. },
  14045. {
  14046. name: "Megamacro",
  14047. height: math.unit(50, "miles")
  14048. },
  14049. {
  14050. name: "Canon Height",
  14051. height: math.unit(200, "AU")
  14052. },
  14053. ]
  14054. ))
  14055. characterMakers.push(() => makeCharacter(
  14056. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14057. {
  14058. front: {
  14059. height: math.unit(6, "feet"),
  14060. weight: math.unit(72, "kg"),
  14061. name: "Front",
  14062. image: {
  14063. source: "./media/characters/sleekit/front.svg",
  14064. extra: 4693 / 4487,
  14065. bottom: 0.012
  14066. }
  14067. },
  14068. },
  14069. [
  14070. {
  14071. name: "Minimum Height",
  14072. height: math.unit(10, "meters")
  14073. },
  14074. {
  14075. name: "Smaller",
  14076. height: math.unit(25, "meters")
  14077. },
  14078. {
  14079. name: "Larger",
  14080. height: math.unit(38, "meters"),
  14081. default: true
  14082. },
  14083. {
  14084. name: "Maximum height",
  14085. height: math.unit(100, "meters")
  14086. },
  14087. ]
  14088. ))
  14089. characterMakers.push(() => makeCharacter(
  14090. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14091. {
  14092. front: {
  14093. height: math.unit(6, "feet"),
  14094. weight: math.unit(150, "lb"),
  14095. name: "Front",
  14096. image: {
  14097. source: "./media/characters/nillia/front.svg",
  14098. extra: 2195 / 2037,
  14099. bottom: 0.005
  14100. }
  14101. },
  14102. back: {
  14103. height: math.unit(6, "feet"),
  14104. weight: math.unit(150, "lb"),
  14105. name: "Back",
  14106. image: {
  14107. source: "./media/characters/nillia/back.svg",
  14108. extra: 2195 / 2037,
  14109. bottom: 0.005
  14110. }
  14111. },
  14112. },
  14113. [
  14114. {
  14115. name: "Canon Height",
  14116. height: math.unit(489, "feet"),
  14117. default: true
  14118. }
  14119. ]
  14120. ))
  14121. characterMakers.push(() => makeCharacter(
  14122. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14123. {
  14124. front: {
  14125. height: math.unit(6, "feet"),
  14126. weight: math.unit(150, "lb"),
  14127. name: "Front",
  14128. image: {
  14129. source: "./media/characters/mesmyriza/front.svg",
  14130. extra: 2067 / 1784,
  14131. bottom: 0.035
  14132. }
  14133. },
  14134. foot: {
  14135. height: math.unit(6 / (250 / 35), "feet"),
  14136. name: "Foot",
  14137. image: {
  14138. source: "./media/characters/mesmyriza/foot.svg"
  14139. }
  14140. },
  14141. },
  14142. [
  14143. {
  14144. name: "Macro",
  14145. height: math.unit(457, "meters"),
  14146. default: true
  14147. },
  14148. {
  14149. name: "Megamacro",
  14150. height: math.unit(8, "megameters")
  14151. },
  14152. ]
  14153. ))
  14154. characterMakers.push(() => makeCharacter(
  14155. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14156. {
  14157. front: {
  14158. height: math.unit(6, "feet"),
  14159. weight: math.unit(250, "lb"),
  14160. name: "Front",
  14161. image: {
  14162. source: "./media/characters/saudade/front.svg",
  14163. extra: 1172 / 1139,
  14164. bottom: 0.035
  14165. }
  14166. },
  14167. },
  14168. [
  14169. {
  14170. name: "Micro",
  14171. height: math.unit(3, "inches")
  14172. },
  14173. {
  14174. name: "Normal",
  14175. height: math.unit(6, "feet"),
  14176. default: true
  14177. },
  14178. {
  14179. name: "Macro",
  14180. height: math.unit(50, "feet")
  14181. },
  14182. {
  14183. name: "Megamacro",
  14184. height: math.unit(2800, "feet")
  14185. },
  14186. ]
  14187. ))
  14188. characterMakers.push(() => makeCharacter(
  14189. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14190. {
  14191. front: {
  14192. height: math.unit(5 + 4 / 12, "feet"),
  14193. weight: math.unit(100, "lb"),
  14194. name: "Front",
  14195. image: {
  14196. source: "./media/characters/keireer/front.svg",
  14197. extra: 716 / 666,
  14198. bottom: 0.05
  14199. }
  14200. },
  14201. },
  14202. [
  14203. {
  14204. name: "Normal",
  14205. height: math.unit(5 + 4 / 12, "feet"),
  14206. default: true
  14207. },
  14208. ]
  14209. ))
  14210. characterMakers.push(() => makeCharacter(
  14211. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14212. {
  14213. front: {
  14214. height: math.unit(6, "feet"),
  14215. weight: math.unit(90, "kg"),
  14216. name: "Front",
  14217. image: {
  14218. source: "./media/characters/mirja/front.svg",
  14219. extra: 1789 / 1683,
  14220. bottom: 0.05
  14221. }
  14222. },
  14223. frontDressed: {
  14224. height: math.unit(6, "feet"),
  14225. weight: math.unit(90, "lb"),
  14226. name: "Front (Dressed)",
  14227. image: {
  14228. source: "./media/characters/mirja/front-dressed.svg",
  14229. extra: 1789 / 1683,
  14230. bottom: 0.05
  14231. }
  14232. },
  14233. back: {
  14234. height: math.unit(6, "feet"),
  14235. weight: math.unit(90, "lb"),
  14236. name: "Back",
  14237. image: {
  14238. source: "./media/characters/mirja/back.svg",
  14239. extra: 953 / 917,
  14240. bottom: 0.017
  14241. }
  14242. },
  14243. },
  14244. [
  14245. {
  14246. name: "\"Incognito\"",
  14247. height: math.unit(3, "meters")
  14248. },
  14249. {
  14250. name: "Strolling Size",
  14251. height: math.unit(15, "km")
  14252. },
  14253. {
  14254. name: "Larger Strolling Size",
  14255. height: math.unit(400, "km")
  14256. },
  14257. {
  14258. name: "Preferred Size",
  14259. height: math.unit(5000, "km")
  14260. },
  14261. {
  14262. name: "True Size",
  14263. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14264. default: true
  14265. },
  14266. ]
  14267. ))
  14268. characterMakers.push(() => makeCharacter(
  14269. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14270. {
  14271. front: {
  14272. height: math.unit(15, "feet"),
  14273. weight: math.unit(880, "kg"),
  14274. name: "Front",
  14275. image: {
  14276. source: "./media/characters/nightraver/front.svg",
  14277. extra: 2444 / 2160,
  14278. bottom: 0.027
  14279. }
  14280. },
  14281. back: {
  14282. height: math.unit(15, "feet"),
  14283. weight: math.unit(880, "kg"),
  14284. name: "Back",
  14285. image: {
  14286. source: "./media/characters/nightraver/back.svg",
  14287. extra: 2309 / 2180,
  14288. bottom: 0.005
  14289. }
  14290. },
  14291. sole: {
  14292. height: math.unit(2.878, "feet"),
  14293. name: "Sole",
  14294. image: {
  14295. source: "./media/characters/nightraver/sole.svg"
  14296. }
  14297. },
  14298. foot: {
  14299. height: math.unit(2.285, "feet"),
  14300. name: "Foot",
  14301. image: {
  14302. source: "./media/characters/nightraver/foot.svg"
  14303. }
  14304. },
  14305. maw: {
  14306. height: math.unit(2.67, "feet"),
  14307. name: "Maw",
  14308. image: {
  14309. source: "./media/characters/nightraver/maw.svg"
  14310. }
  14311. },
  14312. },
  14313. [
  14314. {
  14315. name: "Micro",
  14316. height: math.unit(1, "cm")
  14317. },
  14318. {
  14319. name: "Normal",
  14320. height: math.unit(15, "feet"),
  14321. default: true
  14322. },
  14323. {
  14324. name: "Macro",
  14325. height: math.unit(300, "feet")
  14326. },
  14327. {
  14328. name: "Megamacro",
  14329. height: math.unit(300, "miles")
  14330. },
  14331. {
  14332. name: "Gigamacro",
  14333. height: math.unit(10000, "miles")
  14334. },
  14335. ]
  14336. ))
  14337. characterMakers.push(() => makeCharacter(
  14338. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14339. {
  14340. side: {
  14341. height: math.unit(2, "inches"),
  14342. weight: math.unit(5, "grams"),
  14343. name: "Side",
  14344. image: {
  14345. source: "./media/characters/arc/side.svg"
  14346. }
  14347. },
  14348. },
  14349. [
  14350. {
  14351. name: "Micro",
  14352. height: math.unit(2, "inches"),
  14353. default: true
  14354. },
  14355. ]
  14356. ))
  14357. characterMakers.push(() => makeCharacter(
  14358. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14359. {
  14360. front: {
  14361. height: math.unit(1.1938, "meters"),
  14362. weight: math.unit(54, "kg"),
  14363. name: "Front",
  14364. image: {
  14365. source: "./media/characters/nebula-shahar/front.svg",
  14366. extra: 1642 / 1436,
  14367. bottom: 0.06
  14368. }
  14369. },
  14370. },
  14371. [
  14372. {
  14373. name: "Megamicro",
  14374. height: math.unit(0.3, "mm")
  14375. },
  14376. {
  14377. name: "Micro",
  14378. height: math.unit(3, "cm")
  14379. },
  14380. {
  14381. name: "Normal",
  14382. height: math.unit(138, "cm"),
  14383. default: true
  14384. },
  14385. {
  14386. name: "Macro",
  14387. height: math.unit(30, "m")
  14388. },
  14389. ]
  14390. ))
  14391. characterMakers.push(() => makeCharacter(
  14392. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14393. {
  14394. front: {
  14395. height: math.unit(5.24, "feet"),
  14396. weight: math.unit(150, "lb"),
  14397. name: "Front",
  14398. image: {
  14399. source: "./media/characters/shayla/front.svg",
  14400. extra: 1512 / 1414,
  14401. bottom: 0.01
  14402. }
  14403. },
  14404. back: {
  14405. height: math.unit(5.24, "feet"),
  14406. weight: math.unit(150, "lb"),
  14407. name: "Back",
  14408. image: {
  14409. source: "./media/characters/shayla/back.svg",
  14410. extra: 1512 / 1414
  14411. }
  14412. },
  14413. hand: {
  14414. height: math.unit(0.7781496062992126, "feet"),
  14415. name: "Hand",
  14416. image: {
  14417. source: "./media/characters/shayla/hand.svg"
  14418. }
  14419. },
  14420. foot: {
  14421. height: math.unit(1.4206036745406823, "feet"),
  14422. name: "Foot",
  14423. image: {
  14424. source: "./media/characters/shayla/foot.svg"
  14425. }
  14426. },
  14427. },
  14428. [
  14429. {
  14430. name: "Micro",
  14431. height: math.unit(0.32, "feet")
  14432. },
  14433. {
  14434. name: "Normal",
  14435. height: math.unit(5.24, "feet"),
  14436. default: true
  14437. },
  14438. {
  14439. name: "Macro",
  14440. height: math.unit(492.12, "feet")
  14441. },
  14442. {
  14443. name: "Megamacro",
  14444. height: math.unit(186.41, "miles")
  14445. },
  14446. ]
  14447. ))
  14448. characterMakers.push(() => makeCharacter(
  14449. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14450. {
  14451. front: {
  14452. height: math.unit(2.2, "m"),
  14453. weight: math.unit(120, "kg"),
  14454. name: "Front",
  14455. image: {
  14456. source: "./media/characters/pia-jr/front.svg",
  14457. extra: 1000 / 970,
  14458. bottom: 0.035
  14459. }
  14460. },
  14461. hand: {
  14462. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14463. name: "Hand",
  14464. image: {
  14465. source: "./media/characters/pia-jr/hand.svg"
  14466. }
  14467. },
  14468. paw: {
  14469. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14470. name: "Paw",
  14471. image: {
  14472. source: "./media/characters/pia-jr/paw.svg"
  14473. }
  14474. },
  14475. },
  14476. [
  14477. {
  14478. name: "Micro",
  14479. height: math.unit(1.2, "cm")
  14480. },
  14481. {
  14482. name: "Normal",
  14483. height: math.unit(2.2, "m"),
  14484. default: true
  14485. },
  14486. {
  14487. name: "Macro",
  14488. height: math.unit(180, "m")
  14489. },
  14490. {
  14491. name: "Megamacro",
  14492. height: math.unit(420, "km")
  14493. },
  14494. ]
  14495. ))
  14496. characterMakers.push(() => makeCharacter(
  14497. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14498. {
  14499. front: {
  14500. height: math.unit(2, "m"),
  14501. weight: math.unit(115, "kg"),
  14502. name: "Front",
  14503. image: {
  14504. source: "./media/characters/pia-sr/front.svg",
  14505. extra: 760 / 730,
  14506. bottom: 0.015
  14507. }
  14508. },
  14509. back: {
  14510. height: math.unit(2, "m"),
  14511. weight: math.unit(115, "kg"),
  14512. name: "Back",
  14513. image: {
  14514. source: "./media/characters/pia-sr/back.svg",
  14515. extra: 760 / 730,
  14516. bottom: 0.01
  14517. }
  14518. },
  14519. hand: {
  14520. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14521. name: "Hand",
  14522. image: {
  14523. source: "./media/characters/pia-sr/hand.svg"
  14524. }
  14525. },
  14526. foot: {
  14527. height: math.unit(1.83, "feet"),
  14528. name: "Foot",
  14529. image: {
  14530. source: "./media/characters/pia-sr/foot.svg"
  14531. }
  14532. },
  14533. },
  14534. [
  14535. {
  14536. name: "Micro",
  14537. height: math.unit(88, "mm")
  14538. },
  14539. {
  14540. name: "Normal",
  14541. height: math.unit(2, "m"),
  14542. default: true
  14543. },
  14544. {
  14545. name: "Macro",
  14546. height: math.unit(200, "m")
  14547. },
  14548. {
  14549. name: "Megamacro",
  14550. height: math.unit(420, "km")
  14551. },
  14552. ]
  14553. ))
  14554. characterMakers.push(() => makeCharacter(
  14555. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14556. {
  14557. front: {
  14558. height: math.unit(8 + 2 / 12, "feet"),
  14559. weight: math.unit(300, "lb"),
  14560. name: "Front",
  14561. image: {
  14562. source: "./media/characters/kibibyte/front.svg",
  14563. extra: 2221 / 2098,
  14564. bottom: 0.04
  14565. }
  14566. },
  14567. },
  14568. [
  14569. {
  14570. name: "Normal",
  14571. height: math.unit(8 + 2 / 12, "feet"),
  14572. default: true
  14573. },
  14574. {
  14575. name: "Socialable Macro",
  14576. height: math.unit(50, "feet")
  14577. },
  14578. {
  14579. name: "Macro",
  14580. height: math.unit(300, "feet")
  14581. },
  14582. {
  14583. name: "Megamacro",
  14584. height: math.unit(500, "miles")
  14585. },
  14586. ]
  14587. ))
  14588. characterMakers.push(() => makeCharacter(
  14589. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14590. {
  14591. front: {
  14592. height: math.unit(6, "feet"),
  14593. weight: math.unit(150, "lb"),
  14594. name: "Front",
  14595. image: {
  14596. source: "./media/characters/felix/front.svg",
  14597. extra: 762 / 722,
  14598. bottom: 0.02
  14599. }
  14600. },
  14601. frontClothed: {
  14602. height: math.unit(6, "feet"),
  14603. weight: math.unit(150, "lb"),
  14604. name: "Front (Clothed)",
  14605. image: {
  14606. source: "./media/characters/felix/front-clothed.svg",
  14607. extra: 762 / 722,
  14608. bottom: 0.02
  14609. }
  14610. },
  14611. },
  14612. [
  14613. {
  14614. name: "Normal",
  14615. height: math.unit(6 + 8 / 12, "feet"),
  14616. default: true
  14617. },
  14618. {
  14619. name: "Macro",
  14620. height: math.unit(2600, "feet")
  14621. },
  14622. {
  14623. name: "Megamacro",
  14624. height: math.unit(450, "miles")
  14625. },
  14626. ]
  14627. ))
  14628. characterMakers.push(() => makeCharacter(
  14629. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14630. {
  14631. front: {
  14632. height: math.unit(6 + 1 / 12, "feet"),
  14633. weight: math.unit(250, "lb"),
  14634. name: "Front",
  14635. image: {
  14636. source: "./media/characters/tobo/front.svg",
  14637. extra: 608 / 586,
  14638. bottom: 0.023
  14639. }
  14640. },
  14641. back: {
  14642. height: math.unit(6 + 1 / 12, "feet"),
  14643. weight: math.unit(250, "lb"),
  14644. name: "Back",
  14645. image: {
  14646. source: "./media/characters/tobo/back.svg",
  14647. extra: 608 / 586
  14648. }
  14649. },
  14650. },
  14651. [
  14652. {
  14653. name: "Nano",
  14654. height: math.unit(2, "nm")
  14655. },
  14656. {
  14657. name: "Megamicro",
  14658. height: math.unit(0.1, "mm")
  14659. },
  14660. {
  14661. name: "Micro",
  14662. height: math.unit(1, "inch"),
  14663. default: true
  14664. },
  14665. {
  14666. name: "Human-sized",
  14667. height: math.unit(6 + 1 / 12, "feet")
  14668. },
  14669. {
  14670. name: "Macro",
  14671. height: math.unit(250, "feet")
  14672. },
  14673. {
  14674. name: "Megamacro",
  14675. height: math.unit(75, "miles")
  14676. },
  14677. {
  14678. name: "Texas-sized",
  14679. height: math.unit(750, "miles")
  14680. },
  14681. {
  14682. name: "Teramacro",
  14683. height: math.unit(50000, "miles")
  14684. },
  14685. ]
  14686. ))
  14687. characterMakers.push(() => makeCharacter(
  14688. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14689. {
  14690. front: {
  14691. height: math.unit(6, "feet"),
  14692. weight: math.unit(269, "lb"),
  14693. name: "Front",
  14694. image: {
  14695. source: "./media/characters/danny-kapowsky/front.svg",
  14696. extra: 766 / 736,
  14697. bottom: 0.044
  14698. }
  14699. },
  14700. back: {
  14701. height: math.unit(6, "feet"),
  14702. weight: math.unit(269, "lb"),
  14703. name: "Back",
  14704. image: {
  14705. source: "./media/characters/danny-kapowsky/back.svg",
  14706. extra: 797 / 760,
  14707. bottom: 0.025
  14708. }
  14709. },
  14710. },
  14711. [
  14712. {
  14713. name: "Macro",
  14714. height: math.unit(150, "feet"),
  14715. default: true
  14716. },
  14717. {
  14718. name: "Macro+",
  14719. height: math.unit(200, "feet")
  14720. },
  14721. {
  14722. name: "Macro++",
  14723. height: math.unit(300, "feet")
  14724. },
  14725. {
  14726. name: "Macro+++",
  14727. height: math.unit(400, "feet")
  14728. },
  14729. ]
  14730. ))
  14731. characterMakers.push(() => makeCharacter(
  14732. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14733. {
  14734. side: {
  14735. height: math.unit(6, "feet"),
  14736. weight: math.unit(170, "lb"),
  14737. name: "Side",
  14738. image: {
  14739. source: "./media/characters/finn/side.svg",
  14740. extra: 1953 / 1807,
  14741. bottom: 0.057
  14742. }
  14743. },
  14744. },
  14745. [
  14746. {
  14747. name: "Megamacro",
  14748. height: math.unit(14445, "feet"),
  14749. default: true
  14750. },
  14751. ]
  14752. ))
  14753. characterMakers.push(() => makeCharacter(
  14754. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14755. {
  14756. front: {
  14757. height: math.unit(5 + 6 / 12, "feet"),
  14758. weight: math.unit(125, "lb"),
  14759. name: "Front",
  14760. image: {
  14761. source: "./media/characters/roy/front.svg",
  14762. extra: 1,
  14763. bottom: 0.11
  14764. }
  14765. },
  14766. },
  14767. [
  14768. {
  14769. name: "Micro",
  14770. height: math.unit(3, "inches"),
  14771. default: true
  14772. },
  14773. {
  14774. name: "Normal",
  14775. height: math.unit(5 + 6 / 12, "feet")
  14776. },
  14777. {
  14778. name: "Lesser Macro",
  14779. height: math.unit(60, "feet")
  14780. },
  14781. {
  14782. name: "Greater Macro",
  14783. height: math.unit(120, "feet")
  14784. },
  14785. ]
  14786. ))
  14787. characterMakers.push(() => makeCharacter(
  14788. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14789. {
  14790. front: {
  14791. height: math.unit(6, "feet"),
  14792. weight: math.unit(100, "lb"),
  14793. name: "Front",
  14794. image: {
  14795. source: "./media/characters/aevsivs/front.svg",
  14796. extra: 1,
  14797. bottom: 0.03
  14798. }
  14799. },
  14800. back: {
  14801. height: math.unit(6, "feet"),
  14802. weight: math.unit(100, "lb"),
  14803. name: "Back",
  14804. image: {
  14805. source: "./media/characters/aevsivs/back.svg"
  14806. }
  14807. },
  14808. },
  14809. [
  14810. {
  14811. name: "Micro",
  14812. height: math.unit(2, "inches"),
  14813. default: true
  14814. },
  14815. {
  14816. name: "Normal",
  14817. height: math.unit(5, "feet")
  14818. },
  14819. ]
  14820. ))
  14821. characterMakers.push(() => makeCharacter(
  14822. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14823. {
  14824. front: {
  14825. height: math.unit(5 + 7 / 12, "feet"),
  14826. weight: math.unit(159, "lb"),
  14827. name: "Front",
  14828. image: {
  14829. source: "./media/characters/hildegard/front.svg",
  14830. extra: 289 / 269,
  14831. bottom: 7.63 / 297.8
  14832. }
  14833. },
  14834. back: {
  14835. height: math.unit(5 + 7 / 12, "feet"),
  14836. weight: math.unit(159, "lb"),
  14837. name: "Back",
  14838. image: {
  14839. source: "./media/characters/hildegard/back.svg",
  14840. extra: 280 / 260,
  14841. bottom: 2.3 / 282
  14842. }
  14843. },
  14844. },
  14845. [
  14846. {
  14847. name: "Normal",
  14848. height: math.unit(5 + 7 / 12, "feet"),
  14849. default: true
  14850. },
  14851. ]
  14852. ))
  14853. characterMakers.push(() => makeCharacter(
  14854. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14855. {
  14856. bernard: {
  14857. height: math.unit(2 + 7 / 12, "feet"),
  14858. weight: math.unit(66, "lb"),
  14859. name: "Bernard",
  14860. rename: true,
  14861. image: {
  14862. source: "./media/characters/bernard-wilder/bernard.svg",
  14863. extra: 192 / 128,
  14864. bottom: 0.05
  14865. }
  14866. },
  14867. wilder: {
  14868. height: math.unit(5 + 8 / 12, "feet"),
  14869. weight: math.unit(143, "lb"),
  14870. name: "Wilder",
  14871. rename: true,
  14872. image: {
  14873. source: "./media/characters/bernard-wilder/wilder.svg",
  14874. extra: 361 / 312,
  14875. bottom: 0.02
  14876. }
  14877. },
  14878. },
  14879. [
  14880. {
  14881. name: "Normal",
  14882. height: math.unit(2 + 7 / 12, "feet"),
  14883. default: true
  14884. },
  14885. ]
  14886. ))
  14887. characterMakers.push(() => makeCharacter(
  14888. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14889. {
  14890. anthro: {
  14891. height: math.unit(6 + 1 / 12, "feet"),
  14892. weight: math.unit(155, "lb"),
  14893. name: "Anthro",
  14894. image: {
  14895. source: "./media/characters/hearth/anthro.svg",
  14896. extra: 260 / 250,
  14897. bottom: 0.02
  14898. }
  14899. },
  14900. feral: {
  14901. height: math.unit(3.78, "feet"),
  14902. weight: math.unit(35, "kg"),
  14903. name: "Feral",
  14904. image: {
  14905. source: "./media/characters/hearth/feral.svg",
  14906. extra: 153 / 135,
  14907. bottom: 0.03
  14908. }
  14909. },
  14910. },
  14911. [
  14912. {
  14913. name: "Normal",
  14914. height: math.unit(6 + 1 / 12, "feet"),
  14915. default: true
  14916. },
  14917. ]
  14918. ))
  14919. characterMakers.push(() => makeCharacter(
  14920. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14921. {
  14922. front: {
  14923. height: math.unit(6, "feet"),
  14924. weight: math.unit(182, "lb"),
  14925. name: "Front",
  14926. image: {
  14927. source: "./media/characters/ingrid/front.svg",
  14928. extra: 294 / 268,
  14929. bottom: 0.027
  14930. }
  14931. },
  14932. },
  14933. [
  14934. {
  14935. name: "Normal",
  14936. height: math.unit(6, "feet"),
  14937. default: true
  14938. },
  14939. ]
  14940. ))
  14941. characterMakers.push(() => makeCharacter(
  14942. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14943. {
  14944. eevee: {
  14945. height: math.unit(2 + 10 / 12, "feet"),
  14946. weight: math.unit(86, "lb"),
  14947. name: "Malgam",
  14948. image: {
  14949. source: "./media/characters/malgam/eevee.svg",
  14950. extra: 218 / 180,
  14951. bottom: 0.2
  14952. }
  14953. },
  14954. sylveon: {
  14955. height: math.unit(4, "feet"),
  14956. weight: math.unit(101, "lb"),
  14957. name: "Future Malgam",
  14958. rename: true,
  14959. image: {
  14960. source: "./media/characters/malgam/sylveon.svg",
  14961. extra: 371 / 325,
  14962. bottom: 0.015
  14963. }
  14964. },
  14965. gigantamax: {
  14966. height: math.unit(50, "feet"),
  14967. name: "Gigantamax Malgam",
  14968. rename: true,
  14969. image: {
  14970. source: "./media/characters/malgam/gigantamax.svg"
  14971. }
  14972. },
  14973. },
  14974. [
  14975. {
  14976. name: "Normal",
  14977. height: math.unit(2 + 10 / 12, "feet"),
  14978. default: true
  14979. },
  14980. ]
  14981. ))
  14982. characterMakers.push(() => makeCharacter(
  14983. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14984. {
  14985. front: {
  14986. height: math.unit(5 + 11 / 12, "feet"),
  14987. weight: math.unit(188, "lb"),
  14988. name: "Front",
  14989. image: {
  14990. source: "./media/characters/fleur/front.svg",
  14991. extra: 309 / 283,
  14992. bottom: 0.007
  14993. }
  14994. },
  14995. },
  14996. [
  14997. {
  14998. name: "Normal",
  14999. height: math.unit(5 + 11 / 12, "feet"),
  15000. default: true
  15001. },
  15002. ]
  15003. ))
  15004. characterMakers.push(() => makeCharacter(
  15005. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15006. {
  15007. front: {
  15008. height: math.unit(5 + 4 / 12, "feet"),
  15009. weight: math.unit(122, "lb"),
  15010. name: "Front",
  15011. image: {
  15012. source: "./media/characters/jude/front.svg",
  15013. extra: 288 / 273,
  15014. bottom: 0.03
  15015. }
  15016. },
  15017. },
  15018. [
  15019. {
  15020. name: "Normal",
  15021. height: math.unit(5 + 4 / 12, "feet"),
  15022. default: true
  15023. },
  15024. ]
  15025. ))
  15026. characterMakers.push(() => makeCharacter(
  15027. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15028. {
  15029. front: {
  15030. height: math.unit(5 + 11 / 12, "feet"),
  15031. weight: math.unit(190, "lb"),
  15032. name: "Front",
  15033. image: {
  15034. source: "./media/characters/seara/front.svg",
  15035. extra: 1,
  15036. bottom: 0.05
  15037. }
  15038. },
  15039. },
  15040. [
  15041. {
  15042. name: "Normal",
  15043. height: math.unit(5 + 11 / 12, "feet"),
  15044. default: true
  15045. },
  15046. ]
  15047. ))
  15048. characterMakers.push(() => makeCharacter(
  15049. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15050. {
  15051. front: {
  15052. height: math.unit(16 + 5 / 12, "feet"),
  15053. weight: math.unit(524, "lb"),
  15054. name: "Front",
  15055. image: {
  15056. source: "./media/characters/caspian/front.svg",
  15057. extra: 1,
  15058. bottom: 0.04
  15059. }
  15060. },
  15061. },
  15062. [
  15063. {
  15064. name: "Normal",
  15065. height: math.unit(16 + 5 / 12, "feet"),
  15066. default: true
  15067. },
  15068. ]
  15069. ))
  15070. characterMakers.push(() => makeCharacter(
  15071. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15072. {
  15073. front: {
  15074. height: math.unit(5 + 7 / 12, "feet"),
  15075. weight: math.unit(170, "lb"),
  15076. name: "Front",
  15077. image: {
  15078. source: "./media/characters/mika/front.svg",
  15079. extra: 1,
  15080. bottom: 0.016
  15081. }
  15082. },
  15083. },
  15084. [
  15085. {
  15086. name: "Normal",
  15087. height: math.unit(5 + 7 / 12, "feet"),
  15088. default: true
  15089. },
  15090. ]
  15091. ))
  15092. characterMakers.push(() => makeCharacter(
  15093. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15094. {
  15095. front: {
  15096. height: math.unit(6 + 2 / 12, "feet"),
  15097. weight: math.unit(268, "lb"),
  15098. name: "Front",
  15099. image: {
  15100. source: "./media/characters/sol/front.svg",
  15101. extra: 247 / 231,
  15102. bottom: 0.05
  15103. }
  15104. },
  15105. },
  15106. [
  15107. {
  15108. name: "Normal",
  15109. height: math.unit(6 + 2 / 12, "feet"),
  15110. default: true
  15111. },
  15112. ]
  15113. ))
  15114. characterMakers.push(() => makeCharacter(
  15115. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15116. {
  15117. buizel: {
  15118. height: math.unit(2 + 5 / 12, "feet"),
  15119. weight: math.unit(87, "lb"),
  15120. name: "Buizel",
  15121. image: {
  15122. source: "./media/characters/umiko/buizel.svg",
  15123. extra: 172 / 157,
  15124. bottom: 0.01
  15125. }
  15126. },
  15127. floatzel: {
  15128. height: math.unit(5 + 9 / 12, "feet"),
  15129. weight: math.unit(250, "lb"),
  15130. name: "Floatzel",
  15131. image: {
  15132. source: "./media/characters/umiko/floatzel.svg",
  15133. extra: 262 / 248
  15134. }
  15135. },
  15136. },
  15137. [
  15138. {
  15139. name: "Normal",
  15140. height: math.unit(2 + 5 / 12, "feet"),
  15141. default: true
  15142. },
  15143. ]
  15144. ))
  15145. characterMakers.push(() => makeCharacter(
  15146. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15147. {
  15148. front: {
  15149. height: math.unit(6 + 2 / 12, "feet"),
  15150. weight: math.unit(146, "lb"),
  15151. name: "Front",
  15152. image: {
  15153. source: "./media/characters/iliac/front.svg",
  15154. extra: 389 / 365,
  15155. bottom: 0.035
  15156. }
  15157. },
  15158. },
  15159. [
  15160. {
  15161. name: "Normal",
  15162. height: math.unit(6 + 2 / 12, "feet"),
  15163. default: true
  15164. },
  15165. ]
  15166. ))
  15167. characterMakers.push(() => makeCharacter(
  15168. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15169. {
  15170. front: {
  15171. height: math.unit(6, "feet"),
  15172. weight: math.unit(170, "lb"),
  15173. name: "Front",
  15174. image: {
  15175. source: "./media/characters/topaz/front.svg",
  15176. extra: 317 / 303,
  15177. bottom: 0.055
  15178. }
  15179. },
  15180. },
  15181. [
  15182. {
  15183. name: "Normal",
  15184. height: math.unit(6, "feet"),
  15185. default: true
  15186. },
  15187. ]
  15188. ))
  15189. characterMakers.push(() => makeCharacter(
  15190. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15191. {
  15192. front: {
  15193. height: math.unit(5 + 11 / 12, "feet"),
  15194. weight: math.unit(144, "lb"),
  15195. name: "Front",
  15196. image: {
  15197. source: "./media/characters/gabriel/front.svg",
  15198. extra: 285 / 262,
  15199. bottom: 0.004
  15200. }
  15201. },
  15202. },
  15203. [
  15204. {
  15205. name: "Normal",
  15206. height: math.unit(5 + 11 / 12, "feet"),
  15207. default: true
  15208. },
  15209. ]
  15210. ))
  15211. characterMakers.push(() => makeCharacter(
  15212. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15213. {
  15214. side: {
  15215. height: math.unit(6 + 5 / 12, "feet"),
  15216. weight: math.unit(300, "lb"),
  15217. name: "Side",
  15218. image: {
  15219. source: "./media/characters/tempest-suicune/side.svg",
  15220. extra: 195 / 154,
  15221. bottom: 0.04
  15222. }
  15223. },
  15224. },
  15225. [
  15226. {
  15227. name: "Normal",
  15228. height: math.unit(6 + 5 / 12, "feet"),
  15229. default: true
  15230. },
  15231. ]
  15232. ))
  15233. characterMakers.push(() => makeCharacter(
  15234. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15235. {
  15236. front: {
  15237. height: math.unit(7 + 2 / 12, "feet"),
  15238. weight: math.unit(322, "lb"),
  15239. name: "Front",
  15240. image: {
  15241. source: "./media/characters/vulcan/front.svg",
  15242. extra: 154 / 147,
  15243. bottom: 0.04
  15244. }
  15245. },
  15246. },
  15247. [
  15248. {
  15249. name: "Normal",
  15250. height: math.unit(7 + 2 / 12, "feet"),
  15251. default: true
  15252. },
  15253. ]
  15254. ))
  15255. characterMakers.push(() => makeCharacter(
  15256. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15257. {
  15258. front: {
  15259. height: math.unit(5 + 10 / 12, "feet"),
  15260. weight: math.unit(264, "lb"),
  15261. name: "Front",
  15262. image: {
  15263. source: "./media/characters/gault/front.svg",
  15264. extra: 161 / 140,
  15265. bottom: 0.028
  15266. }
  15267. },
  15268. },
  15269. [
  15270. {
  15271. name: "Normal",
  15272. height: math.unit(5 + 10 / 12, "feet"),
  15273. default: true
  15274. },
  15275. ]
  15276. ))
  15277. characterMakers.push(() => makeCharacter(
  15278. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15279. {
  15280. front: {
  15281. height: math.unit(6, "feet"),
  15282. weight: math.unit(150, "lb"),
  15283. name: "Front",
  15284. image: {
  15285. source: "./media/characters/shard/front.svg",
  15286. extra: 273 / 238,
  15287. bottom: 0.02
  15288. }
  15289. },
  15290. },
  15291. [
  15292. {
  15293. name: "Normal",
  15294. height: math.unit(3 + 6 / 12, "feet"),
  15295. default: true
  15296. },
  15297. ]
  15298. ))
  15299. characterMakers.push(() => makeCharacter(
  15300. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15301. {
  15302. front: {
  15303. height: math.unit(5 + 11 / 12, "feet"),
  15304. weight: math.unit(146, "lb"),
  15305. name: "Front",
  15306. image: {
  15307. source: "./media/characters/ashe/front.svg",
  15308. extra: 400 / 373,
  15309. bottom: 0.01
  15310. }
  15311. },
  15312. },
  15313. [
  15314. {
  15315. name: "Normal",
  15316. height: math.unit(5 + 11 / 12, "feet"),
  15317. default: true
  15318. },
  15319. ]
  15320. ))
  15321. characterMakers.push(() => makeCharacter(
  15322. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15323. {
  15324. front: {
  15325. height: math.unit(5 + 5 / 12, "feet"),
  15326. weight: math.unit(135, "lb"),
  15327. name: "Front",
  15328. image: {
  15329. source: "./media/characters/beatrix/front.svg",
  15330. extra: 392 / 379,
  15331. bottom: 0.01
  15332. }
  15333. },
  15334. },
  15335. [
  15336. {
  15337. name: "Normal",
  15338. height: math.unit(6, "feet"),
  15339. default: true
  15340. },
  15341. ]
  15342. ))
  15343. characterMakers.push(() => makeCharacter(
  15344. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15345. {
  15346. front: {
  15347. height: math.unit(6, "feet"),
  15348. weight: math.unit(150, "lb"),
  15349. name: "Front",
  15350. image: {
  15351. source: "./media/characters/ignatius/front.svg",
  15352. extra: 245 / 222,
  15353. bottom: 0.01
  15354. }
  15355. },
  15356. },
  15357. [
  15358. {
  15359. name: "Normal",
  15360. height: math.unit(5 + 5 / 12, "feet"),
  15361. default: true
  15362. },
  15363. ]
  15364. ))
  15365. characterMakers.push(() => makeCharacter(
  15366. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15367. {
  15368. front: {
  15369. height: math.unit(6 + 2 / 12, "feet"),
  15370. weight: math.unit(138, "lb"),
  15371. name: "Front",
  15372. image: {
  15373. source: "./media/characters/mei-li/front.svg",
  15374. extra: 237 / 229,
  15375. bottom: 0.03
  15376. }
  15377. },
  15378. },
  15379. [
  15380. {
  15381. name: "Normal",
  15382. height: math.unit(6 + 2 / 12, "feet"),
  15383. default: true
  15384. },
  15385. ]
  15386. ))
  15387. characterMakers.push(() => makeCharacter(
  15388. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15389. {
  15390. front: {
  15391. height: math.unit(2 + 4 / 12, "feet"),
  15392. weight: math.unit(62, "lb"),
  15393. name: "Front",
  15394. image: {
  15395. source: "./media/characters/puru/front.svg",
  15396. extra: 206 / 149,
  15397. bottom: 0.06
  15398. }
  15399. },
  15400. },
  15401. [
  15402. {
  15403. name: "Normal",
  15404. height: math.unit(2 + 4 / 12, "feet"),
  15405. default: true
  15406. },
  15407. ]
  15408. ))
  15409. characterMakers.push(() => makeCharacter(
  15410. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15411. {
  15412. anthro: {
  15413. height: math.unit(5 + 8/12, "feet"),
  15414. weight: math.unit(200, "lb"),
  15415. energyNeed: math.unit(2000, "kcal"),
  15416. name: "Anthro",
  15417. image: {
  15418. source: "./media/characters/kee/anthro.svg",
  15419. extra: 3251/3184,
  15420. bottom: 250/3501
  15421. }
  15422. },
  15423. taur: {
  15424. height: math.unit(11, "feet"),
  15425. weight: math.unit(500, "lb"),
  15426. energyNeed: math.unit(5000, "kcal"),
  15427. name: "Taur",
  15428. image: {
  15429. source: "./media/characters/kee/taur.svg",
  15430. extra: 1362/1320,
  15431. bottom: 83/1445
  15432. }
  15433. },
  15434. },
  15435. [
  15436. {
  15437. name: "Normal",
  15438. height: math.unit(5 + 8/12, "feet"),
  15439. default: true
  15440. },
  15441. {
  15442. name: "Macro",
  15443. height: math.unit(35, "feet")
  15444. },
  15445. ]
  15446. ))
  15447. characterMakers.push(() => makeCharacter(
  15448. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15449. {
  15450. anthro: {
  15451. height: math.unit(7, "feet"),
  15452. weight: math.unit(190, "lb"),
  15453. name: "Anthro",
  15454. image: {
  15455. source: "./media/characters/cobalt-dracha/anthro.svg",
  15456. extra: 231 / 225,
  15457. bottom: 0.04
  15458. }
  15459. },
  15460. feral: {
  15461. height: math.unit(9 + 7 / 12, "feet"),
  15462. weight: math.unit(294, "lb"),
  15463. name: "Feral",
  15464. image: {
  15465. source: "./media/characters/cobalt-dracha/feral.svg",
  15466. extra: 692 / 633,
  15467. bottom: 0.05
  15468. }
  15469. },
  15470. },
  15471. [
  15472. {
  15473. name: "Normal",
  15474. height: math.unit(7, "feet"),
  15475. default: true
  15476. },
  15477. ]
  15478. ))
  15479. characterMakers.push(() => makeCharacter(
  15480. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15481. {
  15482. fallen: {
  15483. height: math.unit(11 + 8 / 12, "feet"),
  15484. weight: math.unit(485, "lb"),
  15485. name: "Java (Fallen)",
  15486. rename: true,
  15487. image: {
  15488. source: "./media/characters/java/fallen.svg",
  15489. extra: 226 / 208,
  15490. bottom: 0.005
  15491. }
  15492. },
  15493. godkin: {
  15494. height: math.unit(10 + 6 / 12, "feet"),
  15495. weight: math.unit(328, "lb"),
  15496. name: "Java (Godkin)",
  15497. rename: true,
  15498. image: {
  15499. source: "./media/characters/java/godkin.svg",
  15500. extra: 270 / 262,
  15501. bottom: 0.02
  15502. }
  15503. },
  15504. },
  15505. [
  15506. {
  15507. name: "Normal",
  15508. height: math.unit(11 + 8 / 12, "feet"),
  15509. default: true
  15510. },
  15511. ]
  15512. ))
  15513. characterMakers.push(() => makeCharacter(
  15514. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15515. {
  15516. front: {
  15517. height: math.unit(7 + 8 / 12, "feet"),
  15518. weight: math.unit(320, "lb"),
  15519. name: "Front",
  15520. image: {
  15521. source: "./media/characters/skoll/front.svg",
  15522. extra: 232 / 220,
  15523. bottom: 0.02
  15524. }
  15525. },
  15526. },
  15527. [
  15528. {
  15529. name: "Normal",
  15530. height: math.unit(7 + 8 / 12, "feet"),
  15531. default: true
  15532. },
  15533. ]
  15534. ))
  15535. characterMakers.push(() => makeCharacter(
  15536. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15537. {
  15538. front: {
  15539. height: math.unit(5 + 9 / 12, "feet"),
  15540. weight: math.unit(170, "lb"),
  15541. name: "Front",
  15542. image: {
  15543. source: "./media/characters/purna/front.svg",
  15544. extra: 239 / 229,
  15545. bottom: 0.01
  15546. }
  15547. },
  15548. },
  15549. [
  15550. {
  15551. name: "Normal",
  15552. height: math.unit(5 + 9 / 12, "feet"),
  15553. default: true
  15554. },
  15555. ]
  15556. ))
  15557. characterMakers.push(() => makeCharacter(
  15558. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15559. {
  15560. front: {
  15561. height: math.unit(5 + 9 / 12, "feet"),
  15562. weight: math.unit(142, "lb"),
  15563. name: "Front",
  15564. image: {
  15565. source: "./media/characters/kuva/front.svg",
  15566. extra: 281 / 271,
  15567. bottom: 0.006
  15568. }
  15569. },
  15570. },
  15571. [
  15572. {
  15573. name: "Normal",
  15574. height: math.unit(5 + 9 / 12, "feet"),
  15575. default: true
  15576. },
  15577. ]
  15578. ))
  15579. characterMakers.push(() => makeCharacter(
  15580. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15581. {
  15582. anthro: {
  15583. height: math.unit(9 + 2 / 12, "feet"),
  15584. weight: math.unit(270, "lb"),
  15585. name: "Anthro",
  15586. image: {
  15587. source: "./media/characters/embra/anthro.svg",
  15588. extra: 200 / 187,
  15589. bottom: 0.02
  15590. }
  15591. },
  15592. feral: {
  15593. height: math.unit(18 + 8 / 12, "feet"),
  15594. weight: math.unit(576, "lb"),
  15595. name: "Feral",
  15596. image: {
  15597. source: "./media/characters/embra/feral.svg",
  15598. extra: 152 / 137,
  15599. bottom: 0.037
  15600. }
  15601. },
  15602. },
  15603. [
  15604. {
  15605. name: "Normal",
  15606. height: math.unit(9 + 2 / 12, "feet"),
  15607. default: true
  15608. },
  15609. ]
  15610. ))
  15611. characterMakers.push(() => makeCharacter(
  15612. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15613. {
  15614. anthro: {
  15615. height: math.unit(10 + 9 / 12, "feet"),
  15616. weight: math.unit(224, "lb"),
  15617. name: "Anthro",
  15618. image: {
  15619. source: "./media/characters/grottos/anthro.svg",
  15620. extra: 350 / 332,
  15621. bottom: 0.045
  15622. }
  15623. },
  15624. feral: {
  15625. height: math.unit(20 + 7 / 12, "feet"),
  15626. weight: math.unit(629, "lb"),
  15627. name: "Feral",
  15628. image: {
  15629. source: "./media/characters/grottos/feral.svg",
  15630. extra: 207 / 190,
  15631. bottom: 0.05
  15632. }
  15633. },
  15634. },
  15635. [
  15636. {
  15637. name: "Normal",
  15638. height: math.unit(10 + 9 / 12, "feet"),
  15639. default: true
  15640. },
  15641. ]
  15642. ))
  15643. characterMakers.push(() => makeCharacter(
  15644. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15645. {
  15646. anthro: {
  15647. height: math.unit(9 + 6 / 12, "feet"),
  15648. weight: math.unit(298, "lb"),
  15649. name: "Anthro",
  15650. image: {
  15651. source: "./media/characters/frifna/anthro.svg",
  15652. extra: 282 / 269,
  15653. bottom: 0.015
  15654. }
  15655. },
  15656. feral: {
  15657. height: math.unit(16 + 2 / 12, "feet"),
  15658. weight: math.unit(624, "lb"),
  15659. name: "Feral",
  15660. image: {
  15661. source: "./media/characters/frifna/feral.svg"
  15662. }
  15663. },
  15664. },
  15665. [
  15666. {
  15667. name: "Normal",
  15668. height: math.unit(9 + 6 / 12, "feet"),
  15669. default: true
  15670. },
  15671. ]
  15672. ))
  15673. characterMakers.push(() => makeCharacter(
  15674. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15675. {
  15676. front: {
  15677. height: math.unit(6 + 2 / 12, "feet"),
  15678. weight: math.unit(168, "lb"),
  15679. name: "Front",
  15680. image: {
  15681. source: "./media/characters/elise/front.svg",
  15682. extra: 276 / 271
  15683. }
  15684. },
  15685. },
  15686. [
  15687. {
  15688. name: "Normal",
  15689. height: math.unit(6 + 2 / 12, "feet"),
  15690. default: true
  15691. },
  15692. ]
  15693. ))
  15694. characterMakers.push(() => makeCharacter(
  15695. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15696. {
  15697. front: {
  15698. height: math.unit(5 + 10 / 12, "feet"),
  15699. weight: math.unit(210, "lb"),
  15700. name: "Front",
  15701. image: {
  15702. source: "./media/characters/glade/front.svg",
  15703. extra: 258 / 247,
  15704. bottom: 0.008
  15705. }
  15706. },
  15707. },
  15708. [
  15709. {
  15710. name: "Normal",
  15711. height: math.unit(5 + 10 / 12, "feet"),
  15712. default: true
  15713. },
  15714. ]
  15715. ))
  15716. characterMakers.push(() => makeCharacter(
  15717. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15718. {
  15719. front: {
  15720. height: math.unit(5 + 10 / 12, "feet"),
  15721. weight: math.unit(129, "lb"),
  15722. name: "Front",
  15723. image: {
  15724. source: "./media/characters/rina/front.svg",
  15725. extra: 266 / 255,
  15726. bottom: 0.005
  15727. }
  15728. },
  15729. },
  15730. [
  15731. {
  15732. name: "Normal",
  15733. height: math.unit(5 + 10 / 12, "feet"),
  15734. default: true
  15735. },
  15736. ]
  15737. ))
  15738. characterMakers.push(() => makeCharacter(
  15739. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15740. {
  15741. front: {
  15742. height: math.unit(6 + 1 / 12, "feet"),
  15743. weight: math.unit(192, "lb"),
  15744. name: "Front",
  15745. image: {
  15746. source: "./media/characters/veronica/front.svg",
  15747. extra: 319 / 309,
  15748. bottom: 0.005
  15749. }
  15750. },
  15751. },
  15752. [
  15753. {
  15754. name: "Normal",
  15755. height: math.unit(6 + 1 / 12, "feet"),
  15756. default: true
  15757. },
  15758. ]
  15759. ))
  15760. characterMakers.push(() => makeCharacter(
  15761. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15762. {
  15763. front: {
  15764. height: math.unit(9 + 3 / 12, "feet"),
  15765. weight: math.unit(1100, "lb"),
  15766. name: "Front",
  15767. image: {
  15768. source: "./media/characters/braxton/front.svg",
  15769. extra: 1057 / 984,
  15770. bottom: 0.05
  15771. }
  15772. },
  15773. },
  15774. [
  15775. {
  15776. name: "Normal",
  15777. height: math.unit(9 + 3 / 12, "feet")
  15778. },
  15779. {
  15780. name: "Giant",
  15781. height: math.unit(300, "feet"),
  15782. default: true
  15783. },
  15784. {
  15785. name: "Macro",
  15786. height: math.unit(700, "feet")
  15787. },
  15788. {
  15789. name: "Megamacro",
  15790. height: math.unit(6000, "feet")
  15791. },
  15792. ]
  15793. ))
  15794. characterMakers.push(() => makeCharacter(
  15795. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15796. {
  15797. front: {
  15798. height: math.unit(6 + 7 / 12, "feet"),
  15799. weight: math.unit(150, "lb"),
  15800. name: "Front",
  15801. image: {
  15802. source: "./media/characters/blue-feyonics/front.svg",
  15803. extra: 1403 / 1306,
  15804. bottom: 0.047
  15805. }
  15806. },
  15807. },
  15808. [
  15809. {
  15810. name: "Normal",
  15811. height: math.unit(6 + 7 / 12, "feet"),
  15812. default: true
  15813. },
  15814. ]
  15815. ))
  15816. characterMakers.push(() => makeCharacter(
  15817. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15818. {
  15819. front: {
  15820. height: math.unit(1.8, "meters"),
  15821. weight: math.unit(60, "kg"),
  15822. name: "Front",
  15823. image: {
  15824. source: "./media/characters/maxwell/front.svg",
  15825. extra: 2060 / 1873
  15826. }
  15827. },
  15828. },
  15829. [
  15830. {
  15831. name: "Micro",
  15832. height: math.unit(1, "mm")
  15833. },
  15834. {
  15835. name: "Normal",
  15836. height: math.unit(1.8, "meter"),
  15837. default: true
  15838. },
  15839. {
  15840. name: "Macro",
  15841. height: math.unit(30, "meters")
  15842. },
  15843. {
  15844. name: "Megamacro",
  15845. height: math.unit(10, "km")
  15846. },
  15847. ]
  15848. ))
  15849. characterMakers.push(() => makeCharacter(
  15850. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15851. {
  15852. front: {
  15853. height: math.unit(6, "feet"),
  15854. weight: math.unit(150, "lb"),
  15855. name: "Front",
  15856. image: {
  15857. source: "./media/characters/jack/front.svg",
  15858. extra: 1754 / 1640,
  15859. bottom: 0.01
  15860. }
  15861. },
  15862. },
  15863. [
  15864. {
  15865. name: "Normal",
  15866. height: math.unit(80000, "feet"),
  15867. default: true
  15868. },
  15869. {
  15870. name: "Max size",
  15871. height: math.unit(10, "lightyears")
  15872. },
  15873. ]
  15874. ))
  15875. characterMakers.push(() => makeCharacter(
  15876. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15877. {
  15878. urban: {
  15879. height: math.unit(5, "feet"),
  15880. weight: math.unit(240, "lb"),
  15881. name: "Urban",
  15882. image: {
  15883. source: "./media/characters/cafat/urban.svg",
  15884. extra: 1223/1126,
  15885. bottom: 205/1428
  15886. }
  15887. },
  15888. summer: {
  15889. height: math.unit(5, "feet"),
  15890. weight: math.unit(240, "lb"),
  15891. name: "Summer",
  15892. image: {
  15893. source: "./media/characters/cafat/summer.svg",
  15894. extra: 1223/1126,
  15895. bottom: 205/1428
  15896. }
  15897. },
  15898. winter: {
  15899. height: math.unit(5, "feet"),
  15900. weight: math.unit(240, "lb"),
  15901. name: "Winter",
  15902. image: {
  15903. source: "./media/characters/cafat/winter.svg",
  15904. extra: 1223/1126,
  15905. bottom: 205/1428
  15906. }
  15907. },
  15908. lingerie: {
  15909. height: math.unit(5, "feet"),
  15910. weight: math.unit(240, "lb"),
  15911. name: "Lingerie",
  15912. image: {
  15913. source: "./media/characters/cafat/lingerie.svg",
  15914. extra: 1223/1126,
  15915. bottom: 205/1428
  15916. }
  15917. },
  15918. upright: {
  15919. height: math.unit(6.3, "feet"),
  15920. weight: math.unit(240, "lb"),
  15921. name: "Upright",
  15922. image: {
  15923. source: "./media/characters/cafat/upright.svg",
  15924. bottom: 0.01
  15925. }
  15926. },
  15927. uprightFull: {
  15928. height: math.unit(6.3, "feet"),
  15929. weight: math.unit(240, "lb"),
  15930. name: "Upright (Full)",
  15931. image: {
  15932. source: "./media/characters/cafat/upright-full.svg",
  15933. bottom: 0.01
  15934. }
  15935. },
  15936. },
  15937. [
  15938. {
  15939. name: "Small",
  15940. height: math.unit(5, "feet"),
  15941. default: true
  15942. },
  15943. {
  15944. name: "Large",
  15945. height: math.unit(13, "feet")
  15946. },
  15947. ]
  15948. ))
  15949. characterMakers.push(() => makeCharacter(
  15950. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15951. {
  15952. front: {
  15953. height: math.unit(6, "feet"),
  15954. weight: math.unit(150, "lb"),
  15955. name: "Front",
  15956. image: {
  15957. source: "./media/characters/verin-raharra/front.svg",
  15958. extra: 5019 / 4835,
  15959. bottom: 0.023
  15960. }
  15961. },
  15962. },
  15963. [
  15964. {
  15965. name: "Normal",
  15966. height: math.unit(7 + 5 / 12, "feet"),
  15967. default: true
  15968. },
  15969. {
  15970. name: "Upsized",
  15971. height: math.unit(20, "feet")
  15972. },
  15973. ]
  15974. ))
  15975. characterMakers.push(() => makeCharacter(
  15976. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15977. {
  15978. front: {
  15979. height: math.unit(7, "feet"),
  15980. weight: math.unit(230, "lb"),
  15981. name: "Front",
  15982. image: {
  15983. source: "./media/characters/nakata/front.svg",
  15984. extra: 1.005,
  15985. bottom: 0.01
  15986. }
  15987. },
  15988. },
  15989. [
  15990. {
  15991. name: "Normal",
  15992. height: math.unit(7, "feet"),
  15993. default: true
  15994. },
  15995. {
  15996. name: "Big",
  15997. height: math.unit(14, "feet")
  15998. },
  15999. {
  16000. name: "Macro",
  16001. height: math.unit(400, "feet")
  16002. },
  16003. ]
  16004. ))
  16005. characterMakers.push(() => makeCharacter(
  16006. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16007. {
  16008. front: {
  16009. height: math.unit(4.91, "feet"),
  16010. weight: math.unit(100, "lb"),
  16011. name: "Front",
  16012. image: {
  16013. source: "./media/characters/lily/front.svg",
  16014. extra: 1585 / 1415,
  16015. bottom: 0.02
  16016. }
  16017. },
  16018. },
  16019. [
  16020. {
  16021. name: "Normal",
  16022. height: math.unit(4.91, "feet"),
  16023. default: true
  16024. },
  16025. ]
  16026. ))
  16027. characterMakers.push(() => makeCharacter(
  16028. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16029. {
  16030. laying: {
  16031. height: math.unit(4 + 4 / 12, "feet"),
  16032. weight: math.unit(600, "lb"),
  16033. name: "Laying",
  16034. image: {
  16035. source: "./media/characters/sheila/laying.svg",
  16036. extra: 1333 / 1265,
  16037. bottom: 0.16
  16038. }
  16039. },
  16040. },
  16041. [
  16042. {
  16043. name: "Normal",
  16044. height: math.unit(4 + 4 / 12, "feet"),
  16045. default: true
  16046. },
  16047. ]
  16048. ))
  16049. characterMakers.push(() => makeCharacter(
  16050. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16051. {
  16052. front: {
  16053. height: math.unit(6, "feet"),
  16054. weight: math.unit(190, "lb"),
  16055. name: "Front",
  16056. image: {
  16057. source: "./media/characters/sax/front.svg",
  16058. extra: 1187 / 973,
  16059. bottom: 0.042
  16060. }
  16061. },
  16062. },
  16063. [
  16064. {
  16065. name: "Micro",
  16066. height: math.unit(4, "inches"),
  16067. default: true
  16068. },
  16069. ]
  16070. ))
  16071. characterMakers.push(() => makeCharacter(
  16072. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16073. {
  16074. front: {
  16075. height: math.unit(6, "feet"),
  16076. weight: math.unit(150, "lb"),
  16077. name: "Front",
  16078. image: {
  16079. source: "./media/characters/pandora/front.svg",
  16080. extra: 2720 / 2556,
  16081. bottom: 0.015
  16082. }
  16083. },
  16084. back: {
  16085. height: math.unit(6, "feet"),
  16086. weight: math.unit(150, "lb"),
  16087. name: "Back",
  16088. image: {
  16089. source: "./media/characters/pandora/back.svg",
  16090. extra: 2720 / 2556,
  16091. bottom: 0.01
  16092. }
  16093. },
  16094. beans: {
  16095. height: math.unit(6 / 8, "feet"),
  16096. name: "Beans",
  16097. image: {
  16098. source: "./media/characters/pandora/beans.svg"
  16099. }
  16100. },
  16101. collar: {
  16102. height: math.unit(0.31, "feet"),
  16103. name: "Collar",
  16104. image: {
  16105. source: "./media/characters/pandora/collar.svg"
  16106. }
  16107. },
  16108. skirt: {
  16109. height: math.unit(6, "feet"),
  16110. weight: math.unit(150, "lb"),
  16111. name: "Skirt",
  16112. image: {
  16113. source: "./media/characters/pandora/skirt.svg",
  16114. extra: 1622 / 1525,
  16115. bottom: 0.015
  16116. }
  16117. },
  16118. hoodie: {
  16119. height: math.unit(6, "feet"),
  16120. weight: math.unit(150, "lb"),
  16121. name: "Hoodie",
  16122. image: {
  16123. source: "./media/characters/pandora/hoodie.svg",
  16124. extra: 1622 / 1525,
  16125. bottom: 0.015
  16126. }
  16127. },
  16128. casual: {
  16129. height: math.unit(6, "feet"),
  16130. weight: math.unit(150, "lb"),
  16131. name: "Casual",
  16132. image: {
  16133. source: "./media/characters/pandora/casual.svg",
  16134. extra: 1622 / 1525,
  16135. bottom: 0.015
  16136. }
  16137. },
  16138. },
  16139. [
  16140. {
  16141. name: "Normal",
  16142. height: math.unit(6, "feet")
  16143. },
  16144. {
  16145. name: "Big Steppy",
  16146. height: math.unit(1, "km"),
  16147. default: true
  16148. },
  16149. {
  16150. name: "Galactic Steppy",
  16151. height: math.unit(2, "gigameters")
  16152. },
  16153. ]
  16154. ))
  16155. characterMakers.push(() => makeCharacter(
  16156. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16157. {
  16158. side: {
  16159. height: math.unit(10, "feet"),
  16160. weight: math.unit(800, "kg"),
  16161. name: "Side",
  16162. image: {
  16163. source: "./media/characters/venio-darcony/side.svg",
  16164. extra: 1373 / 1003,
  16165. bottom: 0.037
  16166. }
  16167. },
  16168. front: {
  16169. height: math.unit(19, "feet"),
  16170. weight: math.unit(800, "kg"),
  16171. name: "Front",
  16172. image: {
  16173. source: "./media/characters/venio-darcony/front.svg"
  16174. }
  16175. },
  16176. back: {
  16177. height: math.unit(19, "feet"),
  16178. weight: math.unit(800, "kg"),
  16179. name: "Back",
  16180. image: {
  16181. source: "./media/characters/venio-darcony/back.svg"
  16182. }
  16183. },
  16184. sideNsfw: {
  16185. height: math.unit(10, "feet"),
  16186. weight: math.unit(800, "kg"),
  16187. name: "Side (NSFW)",
  16188. image: {
  16189. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16190. extra: 1373 / 1003,
  16191. bottom: 0.037
  16192. }
  16193. },
  16194. frontNsfw: {
  16195. height: math.unit(19, "feet"),
  16196. weight: math.unit(800, "kg"),
  16197. name: "Front (NSFW)",
  16198. image: {
  16199. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16200. }
  16201. },
  16202. backNsfw: {
  16203. height: math.unit(19, "feet"),
  16204. weight: math.unit(800, "kg"),
  16205. name: "Back (NSFW)",
  16206. image: {
  16207. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16208. }
  16209. },
  16210. sideArmored: {
  16211. height: math.unit(10, "feet"),
  16212. weight: math.unit(800, "kg"),
  16213. name: "Side (Armored)",
  16214. image: {
  16215. source: "./media/characters/venio-darcony/side-armored.svg",
  16216. extra: 1373 / 1003,
  16217. bottom: 0.037
  16218. }
  16219. },
  16220. frontArmored: {
  16221. height: math.unit(19, "feet"),
  16222. weight: math.unit(900, "kg"),
  16223. name: "Front (Armored)",
  16224. image: {
  16225. source: "./media/characters/venio-darcony/front-armored.svg"
  16226. }
  16227. },
  16228. backArmored: {
  16229. height: math.unit(19, "feet"),
  16230. weight: math.unit(900, "kg"),
  16231. name: "Back (Armored)",
  16232. image: {
  16233. source: "./media/characters/venio-darcony/back-armored.svg"
  16234. }
  16235. },
  16236. sword: {
  16237. height: math.unit(10, "feet"),
  16238. weight: math.unit(50, "lb"),
  16239. name: "Sword",
  16240. image: {
  16241. source: "./media/characters/venio-darcony/sword.svg"
  16242. }
  16243. },
  16244. },
  16245. [
  16246. {
  16247. name: "Normal",
  16248. height: math.unit(10, "feet")
  16249. },
  16250. {
  16251. name: "Macro",
  16252. height: math.unit(130, "feet"),
  16253. default: true
  16254. },
  16255. {
  16256. name: "Macro+",
  16257. height: math.unit(240, "feet")
  16258. },
  16259. ]
  16260. ))
  16261. characterMakers.push(() => makeCharacter(
  16262. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16263. {
  16264. front: {
  16265. height: math.unit(6, "feet"),
  16266. weight: math.unit(150, "lb"),
  16267. name: "Front",
  16268. image: {
  16269. source: "./media/characters/veski/front.svg",
  16270. extra: 1299 / 1225,
  16271. bottom: 0.04
  16272. }
  16273. },
  16274. back: {
  16275. height: math.unit(6, "feet"),
  16276. weight: math.unit(150, "lb"),
  16277. name: "Back",
  16278. image: {
  16279. source: "./media/characters/veski/back.svg",
  16280. extra: 1299 / 1225,
  16281. bottom: 0.008
  16282. }
  16283. },
  16284. maw: {
  16285. height: math.unit(1.5 * 1.21, "feet"),
  16286. name: "Maw",
  16287. image: {
  16288. source: "./media/characters/veski/maw.svg"
  16289. }
  16290. },
  16291. },
  16292. [
  16293. {
  16294. name: "Macro",
  16295. height: math.unit(2, "km"),
  16296. default: true
  16297. },
  16298. ]
  16299. ))
  16300. characterMakers.push(() => makeCharacter(
  16301. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16302. {
  16303. front: {
  16304. height: math.unit(5 + 7 / 12, "feet"),
  16305. name: "Front",
  16306. image: {
  16307. source: "./media/characters/isabelle/front.svg",
  16308. extra: 2130 / 1976,
  16309. bottom: 0.05
  16310. }
  16311. },
  16312. },
  16313. [
  16314. {
  16315. name: "Supermicro",
  16316. height: math.unit(10, "micrometers")
  16317. },
  16318. {
  16319. name: "Micro",
  16320. height: math.unit(1, "inch")
  16321. },
  16322. {
  16323. name: "Tiny",
  16324. height: math.unit(5, "inches")
  16325. },
  16326. {
  16327. name: "Standard",
  16328. height: math.unit(5 + 7 / 12, "inches")
  16329. },
  16330. {
  16331. name: "Macro",
  16332. height: math.unit(80, "meters"),
  16333. default: true
  16334. },
  16335. {
  16336. name: "Megamacro",
  16337. height: math.unit(250, "meters")
  16338. },
  16339. {
  16340. name: "Gigamacro",
  16341. height: math.unit(5, "km")
  16342. },
  16343. {
  16344. name: "Cosmic",
  16345. height: math.unit(2.5e6, "miles")
  16346. },
  16347. ]
  16348. ))
  16349. characterMakers.push(() => makeCharacter(
  16350. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16351. {
  16352. front: {
  16353. height: math.unit(6, "feet"),
  16354. weight: math.unit(150, "lb"),
  16355. name: "Front",
  16356. image: {
  16357. source: "./media/characters/hanzo/front.svg",
  16358. extra: 374 / 344,
  16359. bottom: 0.02
  16360. }
  16361. },
  16362. },
  16363. [
  16364. {
  16365. name: "Normal",
  16366. height: math.unit(8, "feet"),
  16367. default: true
  16368. },
  16369. ]
  16370. ))
  16371. characterMakers.push(() => makeCharacter(
  16372. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16373. {
  16374. front: {
  16375. height: math.unit(7, "feet"),
  16376. weight: math.unit(130, "lb"),
  16377. name: "Front",
  16378. image: {
  16379. source: "./media/characters/anna/front.svg",
  16380. extra: 169 / 145,
  16381. bottom: 0.06
  16382. }
  16383. },
  16384. full: {
  16385. height: math.unit(4.96, "feet"),
  16386. weight: math.unit(220, "lb"),
  16387. name: "Full",
  16388. image: {
  16389. source: "./media/characters/anna/full.svg",
  16390. extra: 138 / 114,
  16391. bottom: 0.15
  16392. }
  16393. },
  16394. tongue: {
  16395. height: math.unit(2.53, "feet"),
  16396. name: "Tongue",
  16397. image: {
  16398. source: "./media/characters/anna/tongue.svg"
  16399. }
  16400. },
  16401. },
  16402. [
  16403. {
  16404. name: "Normal",
  16405. height: math.unit(7, "feet"),
  16406. default: true
  16407. },
  16408. ]
  16409. ))
  16410. characterMakers.push(() => makeCharacter(
  16411. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16412. {
  16413. front: {
  16414. height: math.unit(7, "feet"),
  16415. weight: math.unit(150, "lb"),
  16416. name: "Front",
  16417. image: {
  16418. source: "./media/characters/ian-corvid/front.svg",
  16419. extra: 150 / 142,
  16420. bottom: 0.02
  16421. }
  16422. },
  16423. back: {
  16424. height: math.unit(7, "feet"),
  16425. weight: math.unit(150, "lb"),
  16426. name: "Back",
  16427. image: {
  16428. source: "./media/characters/ian-corvid/back.svg",
  16429. extra: 150 / 143,
  16430. bottom: 0.01
  16431. }
  16432. },
  16433. stomping: {
  16434. height: math.unit(7, "feet"),
  16435. weight: math.unit(150, "lb"),
  16436. name: "Stomping",
  16437. image: {
  16438. source: "./media/characters/ian-corvid/stomping.svg",
  16439. extra: 76 / 72
  16440. }
  16441. },
  16442. sitting: {
  16443. height: math.unit(7 / 1.8, "feet"),
  16444. weight: math.unit(150, "lb"),
  16445. name: "Sitting",
  16446. image: {
  16447. source: "./media/characters/ian-corvid/sitting.svg",
  16448. extra: 1400 / 1269,
  16449. bottom: 0.15
  16450. }
  16451. },
  16452. },
  16453. [
  16454. {
  16455. name: "Tiny Microw",
  16456. height: math.unit(1, "inch")
  16457. },
  16458. {
  16459. name: "Microw",
  16460. height: math.unit(6, "inches")
  16461. },
  16462. {
  16463. name: "Crow",
  16464. height: math.unit(7 + 1 / 12, "feet"),
  16465. default: true
  16466. },
  16467. {
  16468. name: "Macrow",
  16469. height: math.unit(176, "feet")
  16470. },
  16471. ]
  16472. ))
  16473. characterMakers.push(() => makeCharacter(
  16474. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16475. {
  16476. front: {
  16477. height: math.unit(5 + 7 / 12, "feet"),
  16478. weight: math.unit(147, "lb"),
  16479. name: "Front",
  16480. image: {
  16481. source: "./media/characters/natalie-kellon/front.svg",
  16482. extra: 1214 / 1141,
  16483. bottom: 0.02
  16484. }
  16485. },
  16486. },
  16487. [
  16488. {
  16489. name: "Micro",
  16490. height: math.unit(1 / 16, "inch")
  16491. },
  16492. {
  16493. name: "Tiny",
  16494. height: math.unit(4, "inches")
  16495. },
  16496. {
  16497. name: "Normal",
  16498. height: math.unit(5 + 7 / 12, "feet"),
  16499. default: true
  16500. },
  16501. {
  16502. name: "Amazon",
  16503. height: math.unit(12, "feet")
  16504. },
  16505. {
  16506. name: "Giantess",
  16507. height: math.unit(160, "meters")
  16508. },
  16509. {
  16510. name: "Titaness",
  16511. height: math.unit(800, "meters")
  16512. },
  16513. ]
  16514. ))
  16515. characterMakers.push(() => makeCharacter(
  16516. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16517. {
  16518. front: {
  16519. height: math.unit(6, "feet"),
  16520. weight: math.unit(150, "lb"),
  16521. name: "Front",
  16522. image: {
  16523. source: "./media/characters/alluria/front.svg",
  16524. extra: 806 / 738,
  16525. bottom: 0.01
  16526. }
  16527. },
  16528. side: {
  16529. height: math.unit(6, "feet"),
  16530. weight: math.unit(150, "lb"),
  16531. name: "Side",
  16532. image: {
  16533. source: "./media/characters/alluria/side.svg",
  16534. extra: 800 / 750,
  16535. }
  16536. },
  16537. back: {
  16538. height: math.unit(6, "feet"),
  16539. weight: math.unit(150, "lb"),
  16540. name: "Back",
  16541. image: {
  16542. source: "./media/characters/alluria/back.svg",
  16543. extra: 806 / 738,
  16544. }
  16545. },
  16546. frontMaid: {
  16547. height: math.unit(6, "feet"),
  16548. weight: math.unit(150, "lb"),
  16549. name: "Front (Maid)",
  16550. image: {
  16551. source: "./media/characters/alluria/front-maid.svg",
  16552. extra: 806 / 738,
  16553. bottom: 0.01
  16554. }
  16555. },
  16556. sideMaid: {
  16557. height: math.unit(6, "feet"),
  16558. weight: math.unit(150, "lb"),
  16559. name: "Side (Maid)",
  16560. image: {
  16561. source: "./media/characters/alluria/side-maid.svg",
  16562. extra: 800 / 750,
  16563. bottom: 0.005
  16564. }
  16565. },
  16566. backMaid: {
  16567. height: math.unit(6, "feet"),
  16568. weight: math.unit(150, "lb"),
  16569. name: "Back (Maid)",
  16570. image: {
  16571. source: "./media/characters/alluria/back-maid.svg",
  16572. extra: 806 / 738,
  16573. }
  16574. },
  16575. },
  16576. [
  16577. {
  16578. name: "Micro",
  16579. height: math.unit(6, "inches"),
  16580. default: true
  16581. },
  16582. ]
  16583. ))
  16584. characterMakers.push(() => makeCharacter(
  16585. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16586. {
  16587. front: {
  16588. height: math.unit(6, "feet"),
  16589. weight: math.unit(150, "lb"),
  16590. name: "Front",
  16591. image: {
  16592. source: "./media/characters/kyle/front.svg",
  16593. extra: 1069 / 962,
  16594. bottom: 77.228 / 1727.45
  16595. }
  16596. },
  16597. },
  16598. [
  16599. {
  16600. name: "Macro",
  16601. height: math.unit(150, "feet"),
  16602. default: true
  16603. },
  16604. ]
  16605. ))
  16606. characterMakers.push(() => makeCharacter(
  16607. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16608. {
  16609. front: {
  16610. height: math.unit(6, "feet"),
  16611. weight: math.unit(300, "lb"),
  16612. name: "Front",
  16613. image: {
  16614. source: "./media/characters/duncan/front.svg",
  16615. extra: 1650 / 1482,
  16616. bottom: 0.05
  16617. }
  16618. },
  16619. },
  16620. [
  16621. {
  16622. name: "Macro",
  16623. height: math.unit(100, "feet"),
  16624. default: true
  16625. },
  16626. ]
  16627. ))
  16628. characterMakers.push(() => makeCharacter(
  16629. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16630. {
  16631. front: {
  16632. height: math.unit(5 + 4 / 12, "feet"),
  16633. weight: math.unit(220, "lb"),
  16634. name: "Front",
  16635. image: {
  16636. source: "./media/characters/memory/front.svg",
  16637. extra: 3641 / 3545,
  16638. bottom: 0.03
  16639. }
  16640. },
  16641. back: {
  16642. height: math.unit(5 + 4 / 12, "feet"),
  16643. weight: math.unit(220, "lb"),
  16644. name: "Back",
  16645. image: {
  16646. source: "./media/characters/memory/back.svg",
  16647. extra: 3641 / 3545,
  16648. bottom: 0.025
  16649. }
  16650. },
  16651. frontSkirt: {
  16652. height: math.unit(5 + 4 / 12, "feet"),
  16653. weight: math.unit(220, "lb"),
  16654. name: "Front (Skirt)",
  16655. image: {
  16656. source: "./media/characters/memory/front-skirt.svg",
  16657. extra: 3641 / 3545,
  16658. bottom: 0.03
  16659. }
  16660. },
  16661. frontDress: {
  16662. height: math.unit(5 + 4 / 12, "feet"),
  16663. weight: math.unit(220, "lb"),
  16664. name: "Front (Dress)",
  16665. image: {
  16666. source: "./media/characters/memory/front-dress.svg",
  16667. extra: 3641 / 3545,
  16668. bottom: 0.03
  16669. }
  16670. },
  16671. },
  16672. [
  16673. {
  16674. name: "Micro",
  16675. height: math.unit(6, "inches"),
  16676. default: true
  16677. },
  16678. {
  16679. name: "Normal",
  16680. height: math.unit(5 + 4 / 12, "feet")
  16681. },
  16682. ]
  16683. ))
  16684. characterMakers.push(() => makeCharacter(
  16685. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16686. {
  16687. front: {
  16688. height: math.unit(4 + 11 / 12, "feet"),
  16689. weight: math.unit(100, "lb"),
  16690. name: "Front",
  16691. image: {
  16692. source: "./media/characters/luno/front.svg",
  16693. extra: 1535 / 1487,
  16694. bottom: 0.03
  16695. }
  16696. },
  16697. },
  16698. [
  16699. {
  16700. name: "Micro",
  16701. height: math.unit(3, "inches")
  16702. },
  16703. {
  16704. name: "Normal",
  16705. height: math.unit(4 + 11 / 12, "feet"),
  16706. default: true
  16707. },
  16708. {
  16709. name: "Macro",
  16710. height: math.unit(300, "feet")
  16711. },
  16712. {
  16713. name: "Megamacro",
  16714. height: math.unit(700, "miles")
  16715. },
  16716. ]
  16717. ))
  16718. characterMakers.push(() => makeCharacter(
  16719. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16720. {
  16721. front: {
  16722. height: math.unit(6 + 2 / 12, "feet"),
  16723. weight: math.unit(170, "lb"),
  16724. name: "Front",
  16725. image: {
  16726. source: "./media/characters/jamesy/front.svg",
  16727. extra: 440 / 382,
  16728. bottom: 0.005
  16729. }
  16730. },
  16731. },
  16732. [
  16733. {
  16734. name: "Micro",
  16735. height: math.unit(3, "inches")
  16736. },
  16737. {
  16738. name: "Normal",
  16739. height: math.unit(6 + 2 / 12, "feet"),
  16740. default: true
  16741. },
  16742. {
  16743. name: "Macro",
  16744. height: math.unit(300, "feet")
  16745. },
  16746. {
  16747. name: "Megamacro",
  16748. height: math.unit(700, "miles")
  16749. },
  16750. ]
  16751. ))
  16752. characterMakers.push(() => makeCharacter(
  16753. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16754. {
  16755. front: {
  16756. height: math.unit(6, "feet"),
  16757. weight: math.unit(160, "lb"),
  16758. name: "Front",
  16759. image: {
  16760. source: "./media/characters/mark/front.svg",
  16761. extra: 3300 / 3100,
  16762. bottom: 136.42 / 3440.47
  16763. }
  16764. },
  16765. },
  16766. [
  16767. {
  16768. name: "Macro",
  16769. height: math.unit(120, "meters")
  16770. },
  16771. {
  16772. name: "Bigger Macro",
  16773. height: math.unit(350, "meters")
  16774. },
  16775. {
  16776. name: "Megamacro",
  16777. height: math.unit(8, "km"),
  16778. default: true
  16779. },
  16780. {
  16781. name: "Continental",
  16782. height: math.unit(4550, "km")
  16783. },
  16784. {
  16785. name: "Planetary",
  16786. height: math.unit(65000, "km")
  16787. },
  16788. ]
  16789. ))
  16790. characterMakers.push(() => makeCharacter(
  16791. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16792. {
  16793. front: {
  16794. height: math.unit(6, "feet"),
  16795. weight: math.unit(400, "lb"),
  16796. name: "Front",
  16797. image: {
  16798. source: "./media/characters/mac/front.svg",
  16799. extra: 1048 / 987.7,
  16800. bottom: 60 / 1107.6,
  16801. }
  16802. },
  16803. },
  16804. [
  16805. {
  16806. name: "Macro",
  16807. height: math.unit(500, "feet"),
  16808. default: true
  16809. },
  16810. ]
  16811. ))
  16812. characterMakers.push(() => makeCharacter(
  16813. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16814. {
  16815. front: {
  16816. height: math.unit(5 + 2 / 12, "feet"),
  16817. weight: math.unit(190, "lb"),
  16818. name: "Front",
  16819. image: {
  16820. source: "./media/characters/bari/front.svg",
  16821. extra: 3156 / 2880,
  16822. bottom: 0.03
  16823. }
  16824. },
  16825. back: {
  16826. height: math.unit(5 + 2 / 12, "feet"),
  16827. weight: math.unit(190, "lb"),
  16828. name: "Back",
  16829. image: {
  16830. source: "./media/characters/bari/back.svg",
  16831. extra: 3260 / 2834,
  16832. bottom: 0.025
  16833. }
  16834. },
  16835. frontPlush: {
  16836. height: math.unit(5 + 2 / 12, "feet"),
  16837. weight: math.unit(190, "lb"),
  16838. name: "Front (Plush)",
  16839. image: {
  16840. source: "./media/characters/bari/front-plush.svg",
  16841. extra: 1112 / 1061,
  16842. bottom: 0.002
  16843. }
  16844. },
  16845. },
  16846. [
  16847. {
  16848. name: "Micro",
  16849. height: math.unit(3, "inches")
  16850. },
  16851. {
  16852. name: "Normal",
  16853. height: math.unit(5 + 2 / 12, "feet"),
  16854. default: true
  16855. },
  16856. {
  16857. name: "Macro",
  16858. height: math.unit(20, "feet")
  16859. },
  16860. ]
  16861. ))
  16862. characterMakers.push(() => makeCharacter(
  16863. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16864. {
  16865. front: {
  16866. height: math.unit(6 + 1 / 12, "feet"),
  16867. weight: math.unit(275, "lb"),
  16868. name: "Front",
  16869. image: {
  16870. source: "./media/characters/hunter-misha-raven/front.svg"
  16871. }
  16872. },
  16873. },
  16874. [
  16875. {
  16876. name: "Mortal",
  16877. height: math.unit(6 + 1 / 12, "feet")
  16878. },
  16879. {
  16880. name: "Divine",
  16881. height: math.unit(1.12134e34, "parsecs"),
  16882. default: true
  16883. },
  16884. ]
  16885. ))
  16886. characterMakers.push(() => makeCharacter(
  16887. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16888. {
  16889. front: {
  16890. height: math.unit(6 + 3 / 12, "feet"),
  16891. weight: math.unit(220, "lb"),
  16892. name: "Front",
  16893. image: {
  16894. source: "./media/characters/max-calore/front.svg",
  16895. extra: 1700 / 1648,
  16896. bottom: 0.01
  16897. }
  16898. },
  16899. back: {
  16900. height: math.unit(6 + 3 / 12, "feet"),
  16901. weight: math.unit(220, "lb"),
  16902. name: "Back",
  16903. image: {
  16904. source: "./media/characters/max-calore/back.svg",
  16905. extra: 1700 / 1648,
  16906. bottom: 0.01
  16907. }
  16908. },
  16909. },
  16910. [
  16911. {
  16912. name: "Normal",
  16913. height: math.unit(6 + 3 / 12, "feet"),
  16914. default: true
  16915. },
  16916. ]
  16917. ))
  16918. characterMakers.push(() => makeCharacter(
  16919. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16920. {
  16921. side: {
  16922. height: math.unit(2 + 8 / 12, "feet"),
  16923. weight: math.unit(99, "lb"),
  16924. name: "Side",
  16925. image: {
  16926. source: "./media/characters/aspen/side.svg",
  16927. extra: 152 / 138,
  16928. bottom: 0.032
  16929. }
  16930. },
  16931. },
  16932. [
  16933. {
  16934. name: "Normal",
  16935. height: math.unit(2 + 8 / 12, "feet"),
  16936. default: true
  16937. },
  16938. ]
  16939. ))
  16940. characterMakers.push(() => makeCharacter(
  16941. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16942. {
  16943. side: {
  16944. height: math.unit(3 + 2 / 12, "feet"),
  16945. weight: math.unit(224, "lb"),
  16946. name: "Side",
  16947. image: {
  16948. source: "./media/characters/sheila-feral-wolf/side.svg",
  16949. extra: 179 / 166,
  16950. bottom: 0.03
  16951. }
  16952. },
  16953. },
  16954. [
  16955. {
  16956. name: "Normal",
  16957. height: math.unit(3 + 2 / 12, "feet"),
  16958. default: true
  16959. },
  16960. ]
  16961. ))
  16962. characterMakers.push(() => makeCharacter(
  16963. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16964. {
  16965. side: {
  16966. height: math.unit(1 + 9 / 12, "feet"),
  16967. weight: math.unit(38, "lb"),
  16968. name: "Side",
  16969. image: {
  16970. source: "./media/characters/michelle/side.svg",
  16971. extra: 147 / 136.7,
  16972. bottom: 0.03
  16973. }
  16974. },
  16975. },
  16976. [
  16977. {
  16978. name: "Normal",
  16979. height: math.unit(1 + 9 / 12, "feet"),
  16980. default: true
  16981. },
  16982. ]
  16983. ))
  16984. characterMakers.push(() => makeCharacter(
  16985. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16986. {
  16987. front: {
  16988. height: math.unit(1 + 1 / 12, "feet"),
  16989. weight: math.unit(18, "lb"),
  16990. name: "Front",
  16991. image: {
  16992. source: "./media/characters/nino/front.svg"
  16993. }
  16994. },
  16995. },
  16996. [
  16997. {
  16998. name: "Normal",
  16999. height: math.unit(1 + 1 / 12, "feet"),
  17000. default: true
  17001. },
  17002. ]
  17003. ))
  17004. characterMakers.push(() => makeCharacter(
  17005. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17006. {
  17007. front: {
  17008. height: math.unit(1, "feet"),
  17009. weight: math.unit(16, "lb"),
  17010. name: "Front",
  17011. image: {
  17012. source: "./media/characters/viola/front.svg"
  17013. }
  17014. },
  17015. },
  17016. [
  17017. {
  17018. name: "Normal",
  17019. height: math.unit(1, "feet"),
  17020. default: true
  17021. },
  17022. ]
  17023. ))
  17024. characterMakers.push(() => makeCharacter(
  17025. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17026. {
  17027. front: {
  17028. height: math.unit(6 + 5 / 12, "feet"),
  17029. weight: math.unit(580, "lb"),
  17030. name: "Front",
  17031. image: {
  17032. source: "./media/characters/atlas/front.svg",
  17033. extra: 298.5 / 290,
  17034. bottom: 0.015
  17035. }
  17036. },
  17037. },
  17038. [
  17039. {
  17040. name: "Normal",
  17041. height: math.unit(6 + 5 / 12, "feet"),
  17042. default: true
  17043. },
  17044. ]
  17045. ))
  17046. characterMakers.push(() => makeCharacter(
  17047. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17048. {
  17049. side: {
  17050. height: math.unit(1 + 10 / 12, "feet"),
  17051. weight: math.unit(25, "lb"),
  17052. name: "Side",
  17053. image: {
  17054. source: "./media/characters/davy/side.svg",
  17055. extra: 200 / 170,
  17056. bottom: 0.01
  17057. }
  17058. },
  17059. },
  17060. [
  17061. {
  17062. name: "Normal",
  17063. height: math.unit(1 + 10 / 12, "feet"),
  17064. default: true
  17065. },
  17066. ]
  17067. ))
  17068. characterMakers.push(() => makeCharacter(
  17069. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17070. {
  17071. side: {
  17072. height: math.unit(4 + 8 / 12, "feet"),
  17073. weight: math.unit(166, "lb"),
  17074. name: "Side",
  17075. image: {
  17076. source: "./media/characters/fiona/side.svg",
  17077. extra: 232 / 220,
  17078. bottom: 0.03
  17079. }
  17080. },
  17081. },
  17082. [
  17083. {
  17084. name: "Normal",
  17085. height: math.unit(4 + 8 / 12, "feet"),
  17086. default: true
  17087. },
  17088. ]
  17089. ))
  17090. characterMakers.push(() => makeCharacter(
  17091. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17092. {
  17093. front: {
  17094. height: math.unit(2, "feet"),
  17095. weight: math.unit(62, "lb"),
  17096. name: "Front",
  17097. image: {
  17098. source: "./media/characters/lyla/front.svg",
  17099. bottom: 0.1
  17100. }
  17101. },
  17102. },
  17103. [
  17104. {
  17105. name: "Normal",
  17106. height: math.unit(2, "feet"),
  17107. default: true
  17108. },
  17109. ]
  17110. ))
  17111. characterMakers.push(() => makeCharacter(
  17112. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17113. {
  17114. side: {
  17115. height: math.unit(1.8, "feet"),
  17116. weight: math.unit(44, "lb"),
  17117. name: "Side",
  17118. image: {
  17119. source: "./media/characters/perseus/side.svg",
  17120. bottom: 0.21
  17121. }
  17122. },
  17123. },
  17124. [
  17125. {
  17126. name: "Normal",
  17127. height: math.unit(1.8, "feet"),
  17128. default: true
  17129. },
  17130. ]
  17131. ))
  17132. characterMakers.push(() => makeCharacter(
  17133. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17134. {
  17135. side: {
  17136. height: math.unit(4 + 2 / 12, "feet"),
  17137. weight: math.unit(20, "lb"),
  17138. name: "Side",
  17139. image: {
  17140. source: "./media/characters/remus/side.svg"
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Normal",
  17147. height: math.unit(4 + 2 / 12, "feet"),
  17148. default: true
  17149. },
  17150. ]
  17151. ))
  17152. characterMakers.push(() => makeCharacter(
  17153. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17154. {
  17155. front: {
  17156. height: math.unit(4 + 11 / 12, "feet"),
  17157. weight: math.unit(114, "lb"),
  17158. name: "Front",
  17159. image: {
  17160. source: "./media/characters/raf/front.svg",
  17161. bottom: 20.5 / 1863
  17162. }
  17163. },
  17164. side: {
  17165. height: math.unit(4 + 11 / 12, "feet"),
  17166. weight: math.unit(114, "lb"),
  17167. name: "Side",
  17168. image: {
  17169. source: "./media/characters/raf/side.svg",
  17170. bottom: 22 / 1822
  17171. }
  17172. },
  17173. },
  17174. [
  17175. {
  17176. name: "Micro",
  17177. height: math.unit(2, "inches")
  17178. },
  17179. {
  17180. name: "Normal",
  17181. height: math.unit(4 + 11 / 12, "feet"),
  17182. default: true
  17183. },
  17184. {
  17185. name: "Macro",
  17186. height: math.unit(70, "feet")
  17187. },
  17188. ]
  17189. ))
  17190. characterMakers.push(() => makeCharacter(
  17191. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17192. {
  17193. front: {
  17194. height: math.unit(1.5, "meters"),
  17195. weight: math.unit(68, "kg"),
  17196. name: "Front",
  17197. image: {
  17198. source: "./media/characters/liam-einarr/front.svg",
  17199. extra: 2822 / 2666
  17200. }
  17201. },
  17202. back: {
  17203. height: math.unit(1.5, "meters"),
  17204. weight: math.unit(68, "kg"),
  17205. name: "Back",
  17206. image: {
  17207. source: "./media/characters/liam-einarr/back.svg",
  17208. extra: 2822 / 2666,
  17209. bottom: 0.015
  17210. }
  17211. },
  17212. },
  17213. [
  17214. {
  17215. name: "Normal",
  17216. height: math.unit(1.5, "meters"),
  17217. default: true
  17218. },
  17219. {
  17220. name: "Macro",
  17221. height: math.unit(150, "meters")
  17222. },
  17223. {
  17224. name: "Megamacro",
  17225. height: math.unit(35, "km")
  17226. },
  17227. ]
  17228. ))
  17229. characterMakers.push(() => makeCharacter(
  17230. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17231. {
  17232. front: {
  17233. height: math.unit(6, "feet"),
  17234. weight: math.unit(75, "kg"),
  17235. name: "Front",
  17236. image: {
  17237. source: "./media/characters/linda/front.svg",
  17238. extra: 930 / 874,
  17239. bottom: 0.004
  17240. }
  17241. },
  17242. },
  17243. [
  17244. {
  17245. name: "Normal",
  17246. height: math.unit(6, "feet"),
  17247. default: true
  17248. },
  17249. ]
  17250. ))
  17251. characterMakers.push(() => makeCharacter(
  17252. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17253. {
  17254. front: {
  17255. height: math.unit(6 + 8 / 12, "feet"),
  17256. weight: math.unit(220, "lb"),
  17257. name: "Front",
  17258. image: {
  17259. source: "./media/characters/caylex/front.svg",
  17260. extra: 821 / 772,
  17261. bottom: 0.07
  17262. }
  17263. },
  17264. back: {
  17265. height: math.unit(6 + 8 / 12, "feet"),
  17266. weight: math.unit(220, "lb"),
  17267. name: "Back",
  17268. image: {
  17269. source: "./media/characters/caylex/back.svg",
  17270. extra: 821 / 772,
  17271. bottom: 0.022
  17272. }
  17273. },
  17274. hand: {
  17275. height: math.unit(1.25, "feet"),
  17276. name: "Hand",
  17277. image: {
  17278. source: "./media/characters/caylex/hand.svg"
  17279. }
  17280. },
  17281. foot: {
  17282. height: math.unit(1.6, "feet"),
  17283. name: "Foot",
  17284. image: {
  17285. source: "./media/characters/caylex/foot.svg"
  17286. }
  17287. },
  17288. armored: {
  17289. height: math.unit(6 + 8 / 12, "feet"),
  17290. weight: math.unit(250, "lb"),
  17291. name: "Armored",
  17292. image: {
  17293. source: "./media/characters/caylex/armored.svg",
  17294. extra: 1420 / 1310,
  17295. bottom: 0.045
  17296. }
  17297. },
  17298. },
  17299. [
  17300. {
  17301. name: "Normal",
  17302. height: math.unit(6 + 8 / 12, "feet"),
  17303. default: true
  17304. },
  17305. {
  17306. name: "Normal+",
  17307. height: math.unit(12, "feet")
  17308. },
  17309. ]
  17310. ))
  17311. characterMakers.push(() => makeCharacter(
  17312. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17313. {
  17314. front: {
  17315. height: math.unit(7 + 6 / 12, "feet"),
  17316. weight: math.unit(288, "lb"),
  17317. name: "Front",
  17318. image: {
  17319. source: "./media/characters/alana/front.svg",
  17320. extra: 679 / 653,
  17321. bottom: 22.5 / 701
  17322. }
  17323. },
  17324. },
  17325. [
  17326. {
  17327. name: "Normal",
  17328. height: math.unit(7 + 6 / 12, "feet")
  17329. },
  17330. {
  17331. name: "Large",
  17332. height: math.unit(50, "feet")
  17333. },
  17334. {
  17335. name: "Macro",
  17336. height: math.unit(100, "feet"),
  17337. default: true
  17338. },
  17339. {
  17340. name: "Macro+",
  17341. height: math.unit(200, "feet")
  17342. },
  17343. ]
  17344. ))
  17345. characterMakers.push(() => makeCharacter(
  17346. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17347. {
  17348. front: {
  17349. height: math.unit(6 + 1 / 12, "feet"),
  17350. weight: math.unit(210, "lb"),
  17351. name: "Front",
  17352. image: {
  17353. source: "./media/characters/hasani/front.svg",
  17354. extra: 244 / 232,
  17355. bottom: 0.01
  17356. }
  17357. },
  17358. back: {
  17359. height: math.unit(6 + 1 / 12, "feet"),
  17360. weight: math.unit(210, "lb"),
  17361. name: "Back",
  17362. image: {
  17363. source: "./media/characters/hasani/back.svg",
  17364. extra: 244 / 232,
  17365. bottom: 0.01
  17366. }
  17367. },
  17368. },
  17369. [
  17370. {
  17371. name: "Normal",
  17372. height: math.unit(6 + 1 / 12, "feet")
  17373. },
  17374. {
  17375. name: "Macro",
  17376. height: math.unit(175, "feet"),
  17377. default: true
  17378. },
  17379. ]
  17380. ))
  17381. characterMakers.push(() => makeCharacter(
  17382. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17383. {
  17384. front: {
  17385. height: math.unit(1.82, "meters"),
  17386. weight: math.unit(140, "lb"),
  17387. name: "Front",
  17388. image: {
  17389. source: "./media/characters/nita/front.svg",
  17390. extra: 2473 / 2363,
  17391. bottom: 0.01
  17392. }
  17393. },
  17394. },
  17395. [
  17396. {
  17397. name: "Normal",
  17398. height: math.unit(1.82, "m")
  17399. },
  17400. {
  17401. name: "Macro",
  17402. height: math.unit(300, "m")
  17403. },
  17404. {
  17405. name: "Mistake Canon",
  17406. height: math.unit(0.5, "miles"),
  17407. default: true
  17408. },
  17409. {
  17410. name: "Big Mistake",
  17411. height: math.unit(13, "miles")
  17412. },
  17413. {
  17414. name: "Playing God",
  17415. height: math.unit(2450, "miles")
  17416. },
  17417. ]
  17418. ))
  17419. characterMakers.push(() => makeCharacter(
  17420. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17421. {
  17422. front: {
  17423. height: math.unit(4, "feet"),
  17424. weight: math.unit(120, "lb"),
  17425. name: "Front",
  17426. image: {
  17427. source: "./media/characters/shiriko/front.svg",
  17428. extra: 970/934,
  17429. bottom: 5/975
  17430. }
  17431. },
  17432. },
  17433. [
  17434. {
  17435. name: "Normal",
  17436. height: math.unit(4, "feet"),
  17437. default: true
  17438. },
  17439. ]
  17440. ))
  17441. characterMakers.push(() => makeCharacter(
  17442. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17443. {
  17444. front: {
  17445. height: math.unit(6, "feet"),
  17446. name: "front",
  17447. image: {
  17448. source: "./media/characters/deja/front.svg",
  17449. extra: 926 / 840,
  17450. bottom: 0.07
  17451. }
  17452. },
  17453. },
  17454. [
  17455. {
  17456. name: "Planck Length",
  17457. height: math.unit(1.6e-35, "meters")
  17458. },
  17459. {
  17460. name: "Normal",
  17461. height: math.unit(30.48, "meters"),
  17462. default: true
  17463. },
  17464. {
  17465. name: "Universal",
  17466. height: math.unit(8.8e26, "meters")
  17467. },
  17468. ]
  17469. ))
  17470. characterMakers.push(() => makeCharacter(
  17471. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17472. {
  17473. side: {
  17474. height: math.unit(8, "feet"),
  17475. weight: math.unit(6300, "lb"),
  17476. name: "Side",
  17477. image: {
  17478. source: "./media/characters/anima/side.svg",
  17479. bottom: 0.035
  17480. }
  17481. },
  17482. },
  17483. [
  17484. {
  17485. name: "Normal",
  17486. height: math.unit(8, "feet"),
  17487. default: true
  17488. },
  17489. ]
  17490. ))
  17491. characterMakers.push(() => makeCharacter(
  17492. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17493. {
  17494. front: {
  17495. height: math.unit(8, "feet"),
  17496. weight: math.unit(350, "lb"),
  17497. name: "Front",
  17498. image: {
  17499. source: "./media/characters/bianca/front.svg",
  17500. extra: 234 / 225,
  17501. bottom: 0.03
  17502. }
  17503. },
  17504. },
  17505. [
  17506. {
  17507. name: "Normal",
  17508. height: math.unit(8, "feet"),
  17509. default: true
  17510. },
  17511. ]
  17512. ))
  17513. characterMakers.push(() => makeCharacter(
  17514. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17515. {
  17516. front: {
  17517. height: math.unit(6, "feet"),
  17518. weight: math.unit(150, "lb"),
  17519. name: "Front",
  17520. image: {
  17521. source: "./media/characters/adinia/front.svg",
  17522. extra: 1845 / 1672,
  17523. bottom: 0.02
  17524. }
  17525. },
  17526. back: {
  17527. height: math.unit(6, "feet"),
  17528. weight: math.unit(150, "lb"),
  17529. name: "Back",
  17530. image: {
  17531. source: "./media/characters/adinia/back.svg",
  17532. extra: 1845 / 1672,
  17533. bottom: 0.002
  17534. }
  17535. },
  17536. },
  17537. [
  17538. {
  17539. name: "Normal",
  17540. height: math.unit(11 + 5 / 12, "feet"),
  17541. default: true
  17542. },
  17543. ]
  17544. ))
  17545. characterMakers.push(() => makeCharacter(
  17546. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17547. {
  17548. front: {
  17549. height: math.unit(3, "meters"),
  17550. weight: math.unit(200, "kg"),
  17551. name: "Front",
  17552. image: {
  17553. source: "./media/characters/lykasa/front.svg",
  17554. extra: 1076 / 976,
  17555. bottom: 0.06
  17556. }
  17557. },
  17558. },
  17559. [
  17560. {
  17561. name: "Normal",
  17562. height: math.unit(3, "meters")
  17563. },
  17564. {
  17565. name: "Kaiju",
  17566. height: math.unit(120, "meters"),
  17567. default: true
  17568. },
  17569. {
  17570. name: "Mega Kaiju",
  17571. height: math.unit(240, "km")
  17572. },
  17573. {
  17574. name: "Giga Kaiju",
  17575. height: math.unit(400, "megameters")
  17576. },
  17577. {
  17578. name: "Tera Kaiju",
  17579. height: math.unit(800, "gigameters")
  17580. },
  17581. {
  17582. name: "Kaiju Dragon Goddess",
  17583. height: math.unit(26, "zettaparsecs")
  17584. },
  17585. ]
  17586. ))
  17587. characterMakers.push(() => makeCharacter(
  17588. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17589. {
  17590. side: {
  17591. height: math.unit(283 / 124 * 6, "feet"),
  17592. weight: math.unit(35000, "lb"),
  17593. name: "Side",
  17594. image: {
  17595. source: "./media/characters/malfaren/side.svg",
  17596. extra: 2500 / 1010,
  17597. bottom: 0.01
  17598. }
  17599. },
  17600. front: {
  17601. height: math.unit(22.36, "feet"),
  17602. weight: math.unit(35000, "lb"),
  17603. name: "Front",
  17604. image: {
  17605. source: "./media/characters/malfaren/front.svg",
  17606. extra: 1631 / 1476,
  17607. bottom: 0.01
  17608. }
  17609. },
  17610. maw: {
  17611. height: math.unit(6.9, "feet"),
  17612. name: "Maw",
  17613. image: {
  17614. source: "./media/characters/malfaren/maw.svg"
  17615. }
  17616. },
  17617. },
  17618. [
  17619. {
  17620. name: "Big",
  17621. height: math.unit(283 / 162 * 6, "feet"),
  17622. },
  17623. {
  17624. name: "Bigger",
  17625. height: math.unit(283 / 124 * 6, "feet")
  17626. },
  17627. {
  17628. name: "Massive",
  17629. height: math.unit(283 / 92 * 6, "feet"),
  17630. default: true
  17631. },
  17632. {
  17633. name: "👀💦",
  17634. height: math.unit(283 / 73 * 6, "feet"),
  17635. },
  17636. ]
  17637. ))
  17638. characterMakers.push(() => makeCharacter(
  17639. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17640. {
  17641. front: {
  17642. height: math.unit(1.7, "m"),
  17643. weight: math.unit(70, "kg"),
  17644. name: "Front",
  17645. image: {
  17646. source: "./media/characters/kernel/front.svg",
  17647. extra: 222 / 210,
  17648. bottom: 0.007
  17649. }
  17650. },
  17651. },
  17652. [
  17653. {
  17654. name: "Nano",
  17655. height: math.unit(17, "micrometers")
  17656. },
  17657. {
  17658. name: "Micro",
  17659. height: math.unit(1.7, "mm")
  17660. },
  17661. {
  17662. name: "Small",
  17663. height: math.unit(1.7, "cm")
  17664. },
  17665. {
  17666. name: "Normal",
  17667. height: math.unit(1.7, "m"),
  17668. default: true
  17669. },
  17670. ]
  17671. ))
  17672. characterMakers.push(() => makeCharacter(
  17673. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17674. {
  17675. front: {
  17676. height: math.unit(1.75, "meters"),
  17677. weight: math.unit(65, "kg"),
  17678. name: "Front",
  17679. image: {
  17680. source: "./media/characters/jayne-folest/front.svg",
  17681. extra: 2115 / 2007,
  17682. bottom: 0.02
  17683. }
  17684. },
  17685. back: {
  17686. height: math.unit(1.75, "meters"),
  17687. weight: math.unit(65, "kg"),
  17688. name: "Back",
  17689. image: {
  17690. source: "./media/characters/jayne-folest/back.svg",
  17691. extra: 2115 / 2007,
  17692. bottom: 0.005
  17693. }
  17694. },
  17695. frontClothed: {
  17696. height: math.unit(1.75, "meters"),
  17697. weight: math.unit(65, "kg"),
  17698. name: "Front (Clothed)",
  17699. image: {
  17700. source: "./media/characters/jayne-folest/front-clothed.svg",
  17701. extra: 2115 / 2007,
  17702. bottom: 0.035
  17703. }
  17704. },
  17705. hand: {
  17706. height: math.unit(1 / 1.260, "feet"),
  17707. name: "Hand",
  17708. image: {
  17709. source: "./media/characters/jayne-folest/hand.svg"
  17710. }
  17711. },
  17712. foot: {
  17713. height: math.unit(1 / 0.918, "feet"),
  17714. name: "Foot",
  17715. image: {
  17716. source: "./media/characters/jayne-folest/foot.svg"
  17717. }
  17718. },
  17719. },
  17720. [
  17721. {
  17722. name: "Micro",
  17723. height: math.unit(4, "cm")
  17724. },
  17725. {
  17726. name: "Normal",
  17727. height: math.unit(1.75, "meters")
  17728. },
  17729. {
  17730. name: "Macro",
  17731. height: math.unit(47.5, "meters"),
  17732. default: true
  17733. },
  17734. ]
  17735. ))
  17736. characterMakers.push(() => makeCharacter(
  17737. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17738. {
  17739. front: {
  17740. height: math.unit(180, "cm"),
  17741. weight: math.unit(70, "kg"),
  17742. name: "Front",
  17743. image: {
  17744. source: "./media/characters/algier/front.svg",
  17745. extra: 596 / 572,
  17746. bottom: 0.04
  17747. }
  17748. },
  17749. back: {
  17750. height: math.unit(180, "cm"),
  17751. weight: math.unit(70, "kg"),
  17752. name: "Back",
  17753. image: {
  17754. source: "./media/characters/algier/back.svg",
  17755. extra: 596 / 572,
  17756. bottom: 0.025
  17757. }
  17758. },
  17759. frontdressed: {
  17760. height: math.unit(180, "cm"),
  17761. weight: math.unit(150, "kg"),
  17762. name: "Front-dressed",
  17763. image: {
  17764. source: "./media/characters/algier/front-dressed.svg",
  17765. extra: 596 / 572,
  17766. bottom: 0.038
  17767. }
  17768. },
  17769. },
  17770. [
  17771. {
  17772. name: "Micro",
  17773. height: math.unit(5, "cm")
  17774. },
  17775. {
  17776. name: "Normal",
  17777. height: math.unit(180, "cm"),
  17778. default: true
  17779. },
  17780. {
  17781. name: "Macro",
  17782. height: math.unit(64, "m")
  17783. },
  17784. ]
  17785. ))
  17786. characterMakers.push(() => makeCharacter(
  17787. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17788. {
  17789. upright: {
  17790. height: math.unit(7, "feet"),
  17791. weight: math.unit(300, "lb"),
  17792. name: "Upright",
  17793. image: {
  17794. source: "./media/characters/pretzel/upright.svg",
  17795. extra: 534 / 522,
  17796. bottom: 0.065
  17797. }
  17798. },
  17799. sprawling: {
  17800. height: math.unit(3.75, "feet"),
  17801. weight: math.unit(300, "lb"),
  17802. name: "Sprawling",
  17803. image: {
  17804. source: "./media/characters/pretzel/sprawling.svg",
  17805. extra: 314 / 281,
  17806. bottom: 0.1
  17807. }
  17808. },
  17809. tongue: {
  17810. height: math.unit(2, "feet"),
  17811. name: "Tongue",
  17812. image: {
  17813. source: "./media/characters/pretzel/tongue.svg"
  17814. }
  17815. },
  17816. },
  17817. [
  17818. {
  17819. name: "Normal",
  17820. height: math.unit(7, "feet"),
  17821. default: true
  17822. },
  17823. {
  17824. name: "Oversized",
  17825. height: math.unit(15, "feet")
  17826. },
  17827. {
  17828. name: "Huge",
  17829. height: math.unit(30, "feet")
  17830. },
  17831. {
  17832. name: "Macro",
  17833. height: math.unit(250, "feet")
  17834. },
  17835. ]
  17836. ))
  17837. characterMakers.push(() => makeCharacter(
  17838. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17839. {
  17840. sideFront: {
  17841. height: math.unit(5 + 2 / 12, "feet"),
  17842. weight: math.unit(120, "lb"),
  17843. name: "Front Side",
  17844. image: {
  17845. source: "./media/characters/roxi/side-front.svg",
  17846. extra: 2924 / 2717,
  17847. bottom: 0.08
  17848. }
  17849. },
  17850. sideBack: {
  17851. height: math.unit(5 + 2 / 12, "feet"),
  17852. weight: math.unit(120, "lb"),
  17853. name: "Back Side",
  17854. image: {
  17855. source: "./media/characters/roxi/side-back.svg",
  17856. extra: 2904 / 2693,
  17857. bottom: 0.06
  17858. }
  17859. },
  17860. front: {
  17861. height: math.unit(5 + 2 / 12, "feet"),
  17862. weight: math.unit(120, "lb"),
  17863. name: "Front",
  17864. image: {
  17865. source: "./media/characters/roxi/front.svg",
  17866. extra: 2028 / 1907,
  17867. bottom: 0.01
  17868. }
  17869. },
  17870. frontAlt: {
  17871. height: math.unit(5 + 2 / 12, "feet"),
  17872. weight: math.unit(120, "lb"),
  17873. name: "Front (Alt)",
  17874. image: {
  17875. source: "./media/characters/roxi/front-alt.svg",
  17876. extra: 1828 / 1798,
  17877. bottom: 0.01
  17878. }
  17879. },
  17880. sitting: {
  17881. height: math.unit(2.8, "feet"),
  17882. weight: math.unit(120, "lb"),
  17883. name: "Sitting",
  17884. image: {
  17885. source: "./media/characters/roxi/sitting.svg",
  17886. extra: 2660 / 2462,
  17887. bottom: 0.1
  17888. }
  17889. },
  17890. },
  17891. [
  17892. {
  17893. name: "Normal",
  17894. height: math.unit(5 + 2 / 12, "feet"),
  17895. default: true
  17896. },
  17897. ]
  17898. ))
  17899. characterMakers.push(() => makeCharacter(
  17900. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17901. {
  17902. side: {
  17903. height: math.unit(55, "feet"),
  17904. weight: math.unit(153, "tons"),
  17905. name: "Side",
  17906. image: {
  17907. source: "./media/characters/shadow/side.svg",
  17908. extra: 701 / 628,
  17909. bottom: 0.02
  17910. }
  17911. },
  17912. flying: {
  17913. height: math.unit(145, "feet"),
  17914. weight: math.unit(153, "tons"),
  17915. name: "Flying",
  17916. image: {
  17917. source: "./media/characters/shadow/flying.svg"
  17918. }
  17919. },
  17920. },
  17921. [
  17922. {
  17923. name: "Normal",
  17924. height: math.unit(55, "feet"),
  17925. default: true
  17926. },
  17927. ]
  17928. ))
  17929. characterMakers.push(() => makeCharacter(
  17930. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17931. {
  17932. front: {
  17933. height: math.unit(6, "feet"),
  17934. weight: math.unit(200, "lb"),
  17935. name: "Front",
  17936. image: {
  17937. source: "./media/characters/marcie/front.svg",
  17938. extra: 960 / 876,
  17939. bottom: 58 / 1017.87
  17940. }
  17941. },
  17942. },
  17943. [
  17944. {
  17945. name: "Macro",
  17946. height: math.unit(1, "mile"),
  17947. default: true
  17948. },
  17949. ]
  17950. ))
  17951. characterMakers.push(() => makeCharacter(
  17952. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17953. {
  17954. front: {
  17955. height: math.unit(7, "feet"),
  17956. weight: math.unit(200, "lb"),
  17957. name: "Front",
  17958. image: {
  17959. source: "./media/characters/kachina/front.svg",
  17960. extra: 1290.68 / 1119,
  17961. bottom: 36.5 / 1327.18
  17962. }
  17963. },
  17964. },
  17965. [
  17966. {
  17967. name: "Normal",
  17968. height: math.unit(7, "feet"),
  17969. default: true
  17970. },
  17971. ]
  17972. ))
  17973. characterMakers.push(() => makeCharacter(
  17974. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17975. {
  17976. looking: {
  17977. height: math.unit(2, "meters"),
  17978. weight: math.unit(300, "kg"),
  17979. name: "Looking",
  17980. image: {
  17981. source: "./media/characters/kash/looking.svg",
  17982. extra: 474 / 344,
  17983. bottom: 0.03
  17984. }
  17985. },
  17986. side: {
  17987. height: math.unit(2, "meters"),
  17988. weight: math.unit(300, "kg"),
  17989. name: "Side",
  17990. image: {
  17991. source: "./media/characters/kash/side.svg",
  17992. extra: 302 / 251,
  17993. bottom: 0.03
  17994. }
  17995. },
  17996. front: {
  17997. height: math.unit(2, "meters"),
  17998. weight: math.unit(300, "kg"),
  17999. name: "Front",
  18000. image: {
  18001. source: "./media/characters/kash/front.svg",
  18002. extra: 495 / 360,
  18003. bottom: 0.015
  18004. }
  18005. },
  18006. },
  18007. [
  18008. {
  18009. name: "Normal",
  18010. height: math.unit(2, "meters"),
  18011. default: true
  18012. },
  18013. {
  18014. name: "Big",
  18015. height: math.unit(3, "meters")
  18016. },
  18017. {
  18018. name: "Large",
  18019. height: math.unit(5, "meters")
  18020. },
  18021. ]
  18022. ))
  18023. characterMakers.push(() => makeCharacter(
  18024. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18025. {
  18026. feeding: {
  18027. height: math.unit(6.7, "feet"),
  18028. weight: math.unit(350, "lb"),
  18029. name: "Feeding",
  18030. image: {
  18031. source: "./media/characters/lalim/feeding.svg",
  18032. }
  18033. },
  18034. },
  18035. [
  18036. {
  18037. name: "Normal",
  18038. height: math.unit(6.7, "feet"),
  18039. default: true
  18040. },
  18041. ]
  18042. ))
  18043. characterMakers.push(() => makeCharacter(
  18044. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18045. {
  18046. front: {
  18047. height: math.unit(9.5, "feet"),
  18048. weight: math.unit(600, "lb"),
  18049. name: "Front",
  18050. image: {
  18051. source: "./media/characters/de'vout/front.svg",
  18052. extra: 1443 / 1328,
  18053. bottom: 0.025
  18054. }
  18055. },
  18056. back: {
  18057. height: math.unit(9.5, "feet"),
  18058. weight: math.unit(600, "lb"),
  18059. name: "Back",
  18060. image: {
  18061. source: "./media/characters/de'vout/back.svg",
  18062. extra: 1443 / 1328
  18063. }
  18064. },
  18065. frontDressed: {
  18066. height: math.unit(9.5, "feet"),
  18067. weight: math.unit(600, "lb"),
  18068. name: "Front (Dressed",
  18069. image: {
  18070. source: "./media/characters/de'vout/front-dressed.svg",
  18071. extra: 1443 / 1328,
  18072. bottom: 0.025
  18073. }
  18074. },
  18075. backDressed: {
  18076. height: math.unit(9.5, "feet"),
  18077. weight: math.unit(600, "lb"),
  18078. name: "Back (Dressed",
  18079. image: {
  18080. source: "./media/characters/de'vout/back-dressed.svg",
  18081. extra: 1443 / 1328
  18082. }
  18083. },
  18084. },
  18085. [
  18086. {
  18087. name: "Normal",
  18088. height: math.unit(9.5, "feet"),
  18089. default: true
  18090. },
  18091. ]
  18092. ))
  18093. characterMakers.push(() => makeCharacter(
  18094. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18095. {
  18096. front: {
  18097. height: math.unit(8, "feet"),
  18098. weight: math.unit(225, "lb"),
  18099. name: "Front",
  18100. image: {
  18101. source: "./media/characters/talana/front.svg",
  18102. extra: 1410 / 1300,
  18103. bottom: 0.015
  18104. }
  18105. },
  18106. frontDressed: {
  18107. height: math.unit(8, "feet"),
  18108. weight: math.unit(225, "lb"),
  18109. name: "Front (Dressed",
  18110. image: {
  18111. source: "./media/characters/talana/front-dressed.svg",
  18112. extra: 1410 / 1300,
  18113. bottom: 0.015
  18114. }
  18115. },
  18116. },
  18117. [
  18118. {
  18119. name: "Normal",
  18120. height: math.unit(8, "feet"),
  18121. default: true
  18122. },
  18123. ]
  18124. ))
  18125. characterMakers.push(() => makeCharacter(
  18126. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18127. {
  18128. side: {
  18129. height: math.unit(7.2, "feet"),
  18130. weight: math.unit(150, "lb"),
  18131. name: "Side",
  18132. image: {
  18133. source: "./media/characters/xeauvok/side.svg",
  18134. extra: 1975 / 1523,
  18135. bottom: 0.07
  18136. }
  18137. },
  18138. },
  18139. [
  18140. {
  18141. name: "Normal",
  18142. height: math.unit(7.2, "feet"),
  18143. default: true
  18144. },
  18145. ]
  18146. ))
  18147. characterMakers.push(() => makeCharacter(
  18148. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18149. {
  18150. side: {
  18151. height: math.unit(10, "feet"),
  18152. weight: math.unit(900, "kg"),
  18153. name: "Side",
  18154. image: {
  18155. source: "./media/characters/zara/side.svg",
  18156. extra: 504 / 498
  18157. }
  18158. },
  18159. },
  18160. [
  18161. {
  18162. name: "Normal",
  18163. height: math.unit(10, "feet"),
  18164. default: true
  18165. },
  18166. ]
  18167. ))
  18168. characterMakers.push(() => makeCharacter(
  18169. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18170. {
  18171. side: {
  18172. height: math.unit(6, "feet"),
  18173. weight: math.unit(150, "lb"),
  18174. name: "Side",
  18175. image: {
  18176. source: "./media/characters/richard-dragon/side.svg",
  18177. extra: 845 / 340,
  18178. bottom: 0.017
  18179. }
  18180. },
  18181. maw: {
  18182. height: math.unit(2.97, "feet"),
  18183. name: "Maw",
  18184. image: {
  18185. source: "./media/characters/richard-dragon/maw.svg"
  18186. }
  18187. },
  18188. },
  18189. [
  18190. ]
  18191. ))
  18192. characterMakers.push(() => makeCharacter(
  18193. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18194. {
  18195. front: {
  18196. height: math.unit(4, "feet"),
  18197. weight: math.unit(100, "lb"),
  18198. name: "Front",
  18199. image: {
  18200. source: "./media/characters/richard-smeargle/front.svg",
  18201. extra: 2952 / 2820,
  18202. bottom: 0.028
  18203. }
  18204. },
  18205. },
  18206. [
  18207. {
  18208. name: "Normal",
  18209. height: math.unit(4, "feet"),
  18210. default: true
  18211. },
  18212. {
  18213. name: "Dynamax",
  18214. height: math.unit(20, "meters")
  18215. },
  18216. ]
  18217. ))
  18218. characterMakers.push(() => makeCharacter(
  18219. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18220. {
  18221. front: {
  18222. height: math.unit(6, "feet"),
  18223. weight: math.unit(110, "lb"),
  18224. name: "Front",
  18225. image: {
  18226. source: "./media/characters/klay/front.svg",
  18227. extra: 962 / 883,
  18228. bottom: 0.04
  18229. }
  18230. },
  18231. back: {
  18232. height: math.unit(6, "feet"),
  18233. weight: math.unit(110, "lb"),
  18234. name: "Back",
  18235. image: {
  18236. source: "./media/characters/klay/back.svg",
  18237. extra: 962 / 883
  18238. }
  18239. },
  18240. beans: {
  18241. height: math.unit(1.15, "feet"),
  18242. name: "Beans",
  18243. image: {
  18244. source: "./media/characters/klay/beans.svg"
  18245. }
  18246. },
  18247. },
  18248. [
  18249. {
  18250. name: "Micro",
  18251. height: math.unit(6, "inches")
  18252. },
  18253. {
  18254. name: "Mini",
  18255. height: math.unit(3, "feet")
  18256. },
  18257. {
  18258. name: "Normal",
  18259. height: math.unit(6, "feet"),
  18260. default: true
  18261. },
  18262. {
  18263. name: "Big",
  18264. height: math.unit(25, "feet")
  18265. },
  18266. {
  18267. name: "Macro",
  18268. height: math.unit(100, "feet")
  18269. },
  18270. {
  18271. name: "Megamacro",
  18272. height: math.unit(400, "feet")
  18273. },
  18274. ]
  18275. ))
  18276. characterMakers.push(() => makeCharacter(
  18277. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18278. {
  18279. front: {
  18280. height: math.unit(6, "feet"),
  18281. weight: math.unit(160, "lb"),
  18282. name: "Front",
  18283. image: {
  18284. source: "./media/characters/marcus/front.svg",
  18285. extra: 734 / 676,
  18286. bottom: 0.03
  18287. }
  18288. },
  18289. },
  18290. [
  18291. {
  18292. name: "Little",
  18293. height: math.unit(6, "feet")
  18294. },
  18295. {
  18296. name: "Normal",
  18297. height: math.unit(110, "feet"),
  18298. default: true
  18299. },
  18300. {
  18301. name: "Macro",
  18302. height: math.unit(250, "feet")
  18303. },
  18304. {
  18305. name: "Megamacro",
  18306. height: math.unit(1000, "feet")
  18307. },
  18308. ]
  18309. ))
  18310. characterMakers.push(() => makeCharacter(
  18311. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18312. {
  18313. front: {
  18314. height: math.unit(7, "feet"),
  18315. weight: math.unit(275, "lb"),
  18316. name: "Front",
  18317. image: {
  18318. source: "./media/characters/claude-delroute/front.svg",
  18319. extra: 230 / 214,
  18320. bottom: 0.007
  18321. }
  18322. },
  18323. side: {
  18324. height: math.unit(7, "feet"),
  18325. weight: math.unit(275, "lb"),
  18326. name: "Side",
  18327. image: {
  18328. source: "./media/characters/claude-delroute/side.svg",
  18329. extra: 222 / 214,
  18330. bottom: 0.01
  18331. }
  18332. },
  18333. back: {
  18334. height: math.unit(7, "feet"),
  18335. weight: math.unit(275, "lb"),
  18336. name: "Back",
  18337. image: {
  18338. source: "./media/characters/claude-delroute/back.svg",
  18339. extra: 230 / 214,
  18340. bottom: 0.015
  18341. }
  18342. },
  18343. maw: {
  18344. height: math.unit(0.6407, "meters"),
  18345. name: "Maw",
  18346. image: {
  18347. source: "./media/characters/claude-delroute/maw.svg"
  18348. }
  18349. },
  18350. },
  18351. [
  18352. {
  18353. name: "Normal",
  18354. height: math.unit(7, "feet"),
  18355. default: true
  18356. },
  18357. {
  18358. name: "Lorge",
  18359. height: math.unit(20, "feet")
  18360. },
  18361. ]
  18362. ))
  18363. characterMakers.push(() => makeCharacter(
  18364. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18365. {
  18366. front: {
  18367. height: math.unit(8 + 4 / 12, "feet"),
  18368. weight: math.unit(600, "lb"),
  18369. name: "Front",
  18370. image: {
  18371. source: "./media/characters/dragonien/front.svg",
  18372. extra: 100 / 94,
  18373. bottom: 3.3 / 103.3445
  18374. }
  18375. },
  18376. back: {
  18377. height: math.unit(8 + 4 / 12, "feet"),
  18378. weight: math.unit(600, "lb"),
  18379. name: "Back",
  18380. image: {
  18381. source: "./media/characters/dragonien/back.svg",
  18382. extra: 776 / 746,
  18383. bottom: 6.4 / 782.0616
  18384. }
  18385. },
  18386. foot: {
  18387. height: math.unit(1.54, "feet"),
  18388. name: "Foot",
  18389. image: {
  18390. source: "./media/characters/dragonien/foot.svg",
  18391. }
  18392. },
  18393. },
  18394. [
  18395. {
  18396. name: "Normal",
  18397. height: math.unit(8 + 4 / 12, "feet"),
  18398. default: true
  18399. },
  18400. {
  18401. name: "Macro",
  18402. height: math.unit(200, "feet")
  18403. },
  18404. {
  18405. name: "Megamacro",
  18406. height: math.unit(1, "mile")
  18407. },
  18408. {
  18409. name: "Gigamacro",
  18410. height: math.unit(1000, "miles")
  18411. },
  18412. ]
  18413. ))
  18414. characterMakers.push(() => makeCharacter(
  18415. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18416. {
  18417. front: {
  18418. height: math.unit(5 + 2 / 12, "feet"),
  18419. weight: math.unit(110, "lb"),
  18420. name: "Front",
  18421. image: {
  18422. source: "./media/characters/desta/front.svg",
  18423. extra: 767 / 726,
  18424. bottom: 11.7 / 779
  18425. }
  18426. },
  18427. back: {
  18428. height: math.unit(5 + 2 / 12, "feet"),
  18429. weight: math.unit(110, "lb"),
  18430. name: "Back",
  18431. image: {
  18432. source: "./media/characters/desta/back.svg",
  18433. extra: 777 / 728,
  18434. bottom: 6 / 784
  18435. }
  18436. },
  18437. frontAlt: {
  18438. height: math.unit(5 + 2 / 12, "feet"),
  18439. weight: math.unit(110, "lb"),
  18440. name: "Front",
  18441. image: {
  18442. source: "./media/characters/desta/front-alt.svg",
  18443. extra: 1482 / 1417
  18444. }
  18445. },
  18446. side: {
  18447. height: math.unit(5 + 2 / 12, "feet"),
  18448. weight: math.unit(110, "lb"),
  18449. name: "Side",
  18450. image: {
  18451. source: "./media/characters/desta/side.svg",
  18452. extra: 2579 / 2491,
  18453. bottom: 0.053
  18454. }
  18455. },
  18456. },
  18457. [
  18458. {
  18459. name: "Micro",
  18460. height: math.unit(6, "inches")
  18461. },
  18462. {
  18463. name: "Normal",
  18464. height: math.unit(5 + 2 / 12, "feet"),
  18465. default: true
  18466. },
  18467. {
  18468. name: "Macro",
  18469. height: math.unit(62, "feet")
  18470. },
  18471. {
  18472. name: "Megamacro",
  18473. height: math.unit(1800, "feet")
  18474. },
  18475. ]
  18476. ))
  18477. characterMakers.push(() => makeCharacter(
  18478. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18479. {
  18480. front: {
  18481. height: math.unit(10, "feet"),
  18482. weight: math.unit(700, "lb"),
  18483. name: "Front",
  18484. image: {
  18485. source: "./media/characters/storm-alystar/front.svg",
  18486. extra: 2112 / 1898,
  18487. bottom: 0.034
  18488. }
  18489. },
  18490. },
  18491. [
  18492. {
  18493. name: "Micro",
  18494. height: math.unit(3.5, "inches")
  18495. },
  18496. {
  18497. name: "Normal",
  18498. height: math.unit(10, "feet"),
  18499. default: true
  18500. },
  18501. {
  18502. name: "Macro",
  18503. height: math.unit(400, "feet")
  18504. },
  18505. {
  18506. name: "Deific",
  18507. height: math.unit(60, "miles")
  18508. },
  18509. ]
  18510. ))
  18511. characterMakers.push(() => makeCharacter(
  18512. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18513. {
  18514. front: {
  18515. height: math.unit(2.35, "meters"),
  18516. weight: math.unit(119, "kg"),
  18517. name: "Front",
  18518. image: {
  18519. source: "./media/characters/ilia/front.svg",
  18520. extra: 1285 / 1255,
  18521. bottom: 0.06
  18522. }
  18523. },
  18524. },
  18525. [
  18526. {
  18527. name: "Normal",
  18528. height: math.unit(2.35, "meters")
  18529. },
  18530. {
  18531. name: "Macro",
  18532. height: math.unit(140, "meters"),
  18533. default: true
  18534. },
  18535. {
  18536. name: "Megamacro",
  18537. height: math.unit(100, "miles")
  18538. },
  18539. ]
  18540. ))
  18541. characterMakers.push(() => makeCharacter(
  18542. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18543. {
  18544. front: {
  18545. height: math.unit(6 + 5 / 12, "feet"),
  18546. weight: math.unit(190, "lb"),
  18547. name: "Front",
  18548. image: {
  18549. source: "./media/characters/kingdead/front.svg",
  18550. extra: 1228 / 1177
  18551. }
  18552. },
  18553. },
  18554. [
  18555. {
  18556. name: "Micro",
  18557. height: math.unit(7, "inches")
  18558. },
  18559. {
  18560. name: "Normal",
  18561. height: math.unit(6 + 5 / 12, "feet")
  18562. },
  18563. {
  18564. name: "Macro",
  18565. height: math.unit(150, "feet"),
  18566. default: true
  18567. },
  18568. {
  18569. name: "Megamacro",
  18570. height: math.unit(200, "miles")
  18571. },
  18572. ]
  18573. ))
  18574. characterMakers.push(() => makeCharacter(
  18575. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18576. {
  18577. front: {
  18578. height: math.unit(8, "feet"),
  18579. weight: math.unit(600, "lb"),
  18580. name: "Front",
  18581. image: {
  18582. source: "./media/characters/kyrehx/front.svg",
  18583. extra: 1195 / 1095,
  18584. bottom: 0.034
  18585. }
  18586. },
  18587. },
  18588. [
  18589. {
  18590. name: "Micro",
  18591. height: math.unit(2, "inches")
  18592. },
  18593. {
  18594. name: "Normal",
  18595. height: math.unit(8, "feet"),
  18596. default: true
  18597. },
  18598. {
  18599. name: "Macro",
  18600. height: math.unit(255, "feet")
  18601. },
  18602. ]
  18603. ))
  18604. characterMakers.push(() => makeCharacter(
  18605. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18606. {
  18607. front: {
  18608. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18609. weight: math.unit(184, "lb"),
  18610. name: "Front",
  18611. image: {
  18612. source: "./media/characters/xang/front.svg",
  18613. extra: 845 / 755
  18614. }
  18615. },
  18616. },
  18617. [
  18618. {
  18619. name: "Normal",
  18620. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18621. default: true
  18622. },
  18623. {
  18624. name: "Macro",
  18625. height: math.unit(0.935 * 146, "feet")
  18626. },
  18627. {
  18628. name: "Megamacro",
  18629. height: math.unit(0.935 * 3, "miles")
  18630. },
  18631. ]
  18632. ))
  18633. characterMakers.push(() => makeCharacter(
  18634. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18635. {
  18636. frontDressed: {
  18637. height: math.unit(5 + 7 / 12, "feet"),
  18638. weight: math.unit(140, "lb"),
  18639. name: "Front (Dressed)",
  18640. image: {
  18641. source: "./media/characters/doc-weardno/front-dressed.svg",
  18642. extra: 263 / 234
  18643. }
  18644. },
  18645. backDressed: {
  18646. height: math.unit(5 + 7 / 12, "feet"),
  18647. weight: math.unit(140, "lb"),
  18648. name: "Back (Dressed)",
  18649. image: {
  18650. source: "./media/characters/doc-weardno/back-dressed.svg",
  18651. extra: 266 / 238
  18652. }
  18653. },
  18654. front: {
  18655. height: math.unit(5 + 7 / 12, "feet"),
  18656. weight: math.unit(140, "lb"),
  18657. name: "Front",
  18658. image: {
  18659. source: "./media/characters/doc-weardno/front.svg",
  18660. extra: 254 / 233
  18661. }
  18662. },
  18663. },
  18664. [
  18665. {
  18666. name: "Micro",
  18667. height: math.unit(3, "inches")
  18668. },
  18669. {
  18670. name: "Normal",
  18671. height: math.unit(5 + 7 / 12, "feet"),
  18672. default: true
  18673. },
  18674. {
  18675. name: "Macro",
  18676. height: math.unit(25, "feet")
  18677. },
  18678. {
  18679. name: "Megamacro",
  18680. height: math.unit(2, "miles")
  18681. },
  18682. ]
  18683. ))
  18684. characterMakers.push(() => makeCharacter(
  18685. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18686. {
  18687. front: {
  18688. height: math.unit(6 + 2 / 12, "feet"),
  18689. weight: math.unit(153, "lb"),
  18690. name: "Front",
  18691. image: {
  18692. source: "./media/characters/seth-whilst/front.svg",
  18693. bottom: 0.07
  18694. }
  18695. },
  18696. },
  18697. [
  18698. {
  18699. name: "Micro",
  18700. height: math.unit(5, "inches")
  18701. },
  18702. {
  18703. name: "Normal",
  18704. height: math.unit(6 + 2 / 12, "feet"),
  18705. default: true
  18706. },
  18707. ]
  18708. ))
  18709. characterMakers.push(() => makeCharacter(
  18710. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18711. {
  18712. front: {
  18713. height: math.unit(3, "inches"),
  18714. weight: math.unit(8, "grams"),
  18715. name: "Front",
  18716. image: {
  18717. source: "./media/characters/pocket-jabari/front.svg",
  18718. extra: 1024 / 974,
  18719. bottom: 0.039
  18720. }
  18721. },
  18722. },
  18723. [
  18724. {
  18725. name: "Minimicro",
  18726. height: math.unit(8, "mm")
  18727. },
  18728. {
  18729. name: "Micro",
  18730. height: math.unit(3, "inches"),
  18731. default: true
  18732. },
  18733. {
  18734. name: "Normal",
  18735. height: math.unit(3, "feet")
  18736. },
  18737. ]
  18738. ))
  18739. characterMakers.push(() => makeCharacter(
  18740. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18741. {
  18742. front: {
  18743. height: math.unit(15, "feet"),
  18744. weight: math.unit(3280, "lb"),
  18745. name: "Front",
  18746. image: {
  18747. source: "./media/characters/sapphy/front.svg",
  18748. extra: 671 / 577,
  18749. bottom: 0.085
  18750. }
  18751. },
  18752. back: {
  18753. height: math.unit(15, "feet"),
  18754. weight: math.unit(3280, "lb"),
  18755. name: "Back",
  18756. image: {
  18757. source: "./media/characters/sapphy/back.svg",
  18758. extra: 631 / 607,
  18759. bottom: 0.045
  18760. }
  18761. },
  18762. },
  18763. [
  18764. {
  18765. name: "Normal",
  18766. height: math.unit(15, "feet")
  18767. },
  18768. {
  18769. name: "Casual Macro",
  18770. height: math.unit(120, "feet")
  18771. },
  18772. {
  18773. name: "Macro",
  18774. height: math.unit(2150, "feet"),
  18775. default: true
  18776. },
  18777. {
  18778. name: "Megamacro",
  18779. height: math.unit(8, "miles")
  18780. },
  18781. {
  18782. name: "Galaxy Mom",
  18783. height: math.unit(6, "megalightyears")
  18784. },
  18785. ]
  18786. ))
  18787. characterMakers.push(() => makeCharacter(
  18788. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18789. {
  18790. front: {
  18791. height: math.unit(6, "feet"),
  18792. weight: math.unit(170, "lb"),
  18793. name: "Front",
  18794. image: {
  18795. source: "./media/characters/kiro/front.svg",
  18796. extra: 1064 / 1012,
  18797. bottom: 0.052
  18798. }
  18799. },
  18800. },
  18801. [
  18802. {
  18803. name: "Micro",
  18804. height: math.unit(6, "inches")
  18805. },
  18806. {
  18807. name: "Normal",
  18808. height: math.unit(6, "feet"),
  18809. default: true
  18810. },
  18811. {
  18812. name: "Macro",
  18813. height: math.unit(72, "feet")
  18814. },
  18815. ]
  18816. ))
  18817. characterMakers.push(() => makeCharacter(
  18818. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18819. {
  18820. front: {
  18821. height: math.unit(5 + 9 / 12, "feet"),
  18822. weight: math.unit(175, "lb"),
  18823. name: "Front",
  18824. image: {
  18825. source: "./media/characters/irishfox/front.svg",
  18826. extra: 1912 / 1680,
  18827. bottom: 0.02
  18828. }
  18829. },
  18830. },
  18831. [
  18832. {
  18833. name: "Nano",
  18834. height: math.unit(1, "mm")
  18835. },
  18836. {
  18837. name: "Micro",
  18838. height: math.unit(2, "inches")
  18839. },
  18840. {
  18841. name: "Normal",
  18842. height: math.unit(5 + 9 / 12, "feet"),
  18843. default: true
  18844. },
  18845. {
  18846. name: "Macro",
  18847. height: math.unit(45, "feet")
  18848. },
  18849. ]
  18850. ))
  18851. characterMakers.push(() => makeCharacter(
  18852. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18853. {
  18854. front: {
  18855. height: math.unit(6 + 1 / 12, "feet"),
  18856. weight: math.unit(75, "lb"),
  18857. name: "Front",
  18858. image: {
  18859. source: "./media/characters/aronai-sieyes/front.svg",
  18860. extra: 1556 / 1480,
  18861. bottom: 0.015
  18862. }
  18863. },
  18864. side: {
  18865. height: math.unit(6 + 1 / 12, "feet"),
  18866. weight: math.unit(75, "lb"),
  18867. name: "Side",
  18868. image: {
  18869. source: "./media/characters/aronai-sieyes/side.svg",
  18870. extra: 1433 / 1390,
  18871. bottom: 0.0393
  18872. }
  18873. },
  18874. back: {
  18875. height: math.unit(6 + 1 / 12, "feet"),
  18876. weight: math.unit(75, "lb"),
  18877. name: "Back",
  18878. image: {
  18879. source: "./media/characters/aronai-sieyes/back.svg",
  18880. extra: 1544 / 1494,
  18881. bottom: 0.02
  18882. }
  18883. },
  18884. frontClothed: {
  18885. height: math.unit(6 + 1 / 12, "feet"),
  18886. weight: math.unit(75, "lb"),
  18887. name: "Front (Clothed)",
  18888. image: {
  18889. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18890. extra: 1582 / 1527
  18891. }
  18892. },
  18893. feral: {
  18894. height: math.unit(18, "feet"),
  18895. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18896. name: "Feral",
  18897. image: {
  18898. source: "./media/characters/aronai-sieyes/feral.svg",
  18899. extra: 1530 / 1240,
  18900. bottom: 0.035
  18901. }
  18902. },
  18903. },
  18904. [
  18905. {
  18906. name: "Micro",
  18907. height: math.unit(2, "inches")
  18908. },
  18909. {
  18910. name: "Normal",
  18911. height: math.unit(6 + 1 / 12, "feet"),
  18912. default: true
  18913. }
  18914. ]
  18915. ))
  18916. characterMakers.push(() => makeCharacter(
  18917. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18918. {
  18919. front: {
  18920. height: math.unit(12, "feet"),
  18921. weight: math.unit(410, "kg"),
  18922. name: "Front",
  18923. image: {
  18924. source: "./media/characters/xuna/front.svg",
  18925. extra: 2184 / 1980
  18926. }
  18927. },
  18928. side: {
  18929. height: math.unit(12, "feet"),
  18930. weight: math.unit(410, "kg"),
  18931. name: "Side",
  18932. image: {
  18933. source: "./media/characters/xuna/side.svg",
  18934. extra: 2184 / 1980
  18935. }
  18936. },
  18937. back: {
  18938. height: math.unit(12, "feet"),
  18939. weight: math.unit(410, "kg"),
  18940. name: "Back",
  18941. image: {
  18942. source: "./media/characters/xuna/back.svg",
  18943. extra: 2184 / 1980
  18944. }
  18945. },
  18946. },
  18947. [
  18948. {
  18949. name: "Nano glow",
  18950. height: math.unit(10, "nm")
  18951. },
  18952. {
  18953. name: "Micro floof",
  18954. height: math.unit(0.3, "m")
  18955. },
  18956. {
  18957. name: "Huggable softy boi",
  18958. height: math.unit(3.6576, "m"),
  18959. default: true
  18960. },
  18961. {
  18962. name: "Admirable floof",
  18963. height: math.unit(80, "meters")
  18964. },
  18965. {
  18966. name: "Gentle macro",
  18967. height: math.unit(300, "meters")
  18968. },
  18969. {
  18970. name: "Very careful floof",
  18971. height: math.unit(3200, "meters")
  18972. },
  18973. {
  18974. name: "The mega floof",
  18975. height: math.unit(36000, "meters")
  18976. },
  18977. {
  18978. name: "Giga-fur-Wicker",
  18979. height: math.unit(4800000, "meters")
  18980. },
  18981. {
  18982. name: "Licky world",
  18983. height: math.unit(20000000, "meters")
  18984. },
  18985. {
  18986. name: "Floofy cyan sun",
  18987. height: math.unit(1500000000, "meters")
  18988. },
  18989. {
  18990. name: "Milky Wicker",
  18991. height: math.unit(1000000000000000000000, "meters")
  18992. },
  18993. {
  18994. name: "The observing Wicker",
  18995. height: math.unit(999999999999999999999999999, "meters")
  18996. },
  18997. ]
  18998. ))
  18999. characterMakers.push(() => makeCharacter(
  19000. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19001. {
  19002. front: {
  19003. height: math.unit(5 + 9 / 12, "feet"),
  19004. weight: math.unit(150, "lb"),
  19005. name: "Front",
  19006. image: {
  19007. source: "./media/characters/arokha-sieyes/front.svg",
  19008. extra: 1425 / 1284,
  19009. bottom: 0.05
  19010. }
  19011. },
  19012. },
  19013. [
  19014. {
  19015. name: "Normal",
  19016. height: math.unit(5 + 9 / 12, "feet")
  19017. },
  19018. {
  19019. name: "Macro",
  19020. height: math.unit(30, "meters"),
  19021. default: true
  19022. },
  19023. ]
  19024. ))
  19025. characterMakers.push(() => makeCharacter(
  19026. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19027. {
  19028. front: {
  19029. height: math.unit(6, "feet"),
  19030. weight: math.unit(180, "lb"),
  19031. name: "Front",
  19032. image: {
  19033. source: "./media/characters/arokh-sieyes/front.svg",
  19034. extra: 1830 / 1769,
  19035. bottom: 0.01
  19036. }
  19037. },
  19038. },
  19039. [
  19040. {
  19041. name: "Normal",
  19042. height: math.unit(6, "feet")
  19043. },
  19044. {
  19045. name: "Macro",
  19046. height: math.unit(30, "meters"),
  19047. default: true
  19048. },
  19049. ]
  19050. ))
  19051. characterMakers.push(() => makeCharacter(
  19052. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19053. {
  19054. side: {
  19055. height: math.unit(13 + 1 / 12, "feet"),
  19056. weight: math.unit(8.5, "tonnes"),
  19057. name: "Side",
  19058. image: {
  19059. source: "./media/characters/goldeneye/side.svg",
  19060. extra: 1182 / 778,
  19061. bottom: 0.067
  19062. }
  19063. },
  19064. paw: {
  19065. height: math.unit(3.4, "feet"),
  19066. name: "Paw",
  19067. image: {
  19068. source: "./media/characters/goldeneye/paw.svg"
  19069. }
  19070. },
  19071. },
  19072. [
  19073. {
  19074. name: "Normal",
  19075. height: math.unit(13 + 1 / 12, "feet"),
  19076. default: true
  19077. },
  19078. ]
  19079. ))
  19080. characterMakers.push(() => makeCharacter(
  19081. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19082. {
  19083. front: {
  19084. height: math.unit(6 + 1 / 12, "feet"),
  19085. weight: math.unit(210, "lb"),
  19086. name: "Front",
  19087. image: {
  19088. source: "./media/characters/leonardo-lycheborne/front.svg",
  19089. extra: 390 / 365,
  19090. bottom: 0.032
  19091. }
  19092. },
  19093. side: {
  19094. height: math.unit(6 + 1 / 12, "feet"),
  19095. weight: math.unit(210, "lb"),
  19096. name: "Side",
  19097. image: {
  19098. source: "./media/characters/leonardo-lycheborne/side.svg",
  19099. extra: 390 / 365,
  19100. bottom: 0.005
  19101. }
  19102. },
  19103. back: {
  19104. height: math.unit(6 + 1 / 12, "feet"),
  19105. weight: math.unit(210, "lb"),
  19106. name: "Back",
  19107. image: {
  19108. source: "./media/characters/leonardo-lycheborne/back.svg",
  19109. extra: 392 / 366,
  19110. bottom: 0.01
  19111. }
  19112. },
  19113. hand: {
  19114. height: math.unit(1.08, "feet"),
  19115. name: "Hand",
  19116. image: {
  19117. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19118. }
  19119. },
  19120. foot: {
  19121. height: math.unit(1.32, "feet"),
  19122. name: "Foot",
  19123. image: {
  19124. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19125. }
  19126. },
  19127. were: {
  19128. height: math.unit(20, "feet"),
  19129. weight: math.unit(7800, "lb"),
  19130. name: "Were",
  19131. image: {
  19132. source: "./media/characters/leonardo-lycheborne/were.svg",
  19133. extra: 308 / 294,
  19134. bottom: 0.048
  19135. }
  19136. },
  19137. feral: {
  19138. height: math.unit(7.5, "feet"),
  19139. weight: math.unit(600, "lb"),
  19140. name: "Feral",
  19141. image: {
  19142. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19143. extra: 210 / 186,
  19144. bottom: 0.108
  19145. }
  19146. },
  19147. taur: {
  19148. height: math.unit(11, "feet"),
  19149. weight: math.unit(3300, "lb"),
  19150. name: "Taur",
  19151. image: {
  19152. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19153. extra: 320 / 303,
  19154. bottom: 0.025
  19155. }
  19156. },
  19157. barghest: {
  19158. height: math.unit(11, "feet"),
  19159. weight: math.unit(1300, "lb"),
  19160. name: "Barghest",
  19161. image: {
  19162. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19163. extra: 323 / 302,
  19164. bottom: 0.027
  19165. }
  19166. },
  19167. dick: {
  19168. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19169. name: "Dick",
  19170. image: {
  19171. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19172. }
  19173. },
  19174. dickWere: {
  19175. height: math.unit((20) / 3.8, "feet"),
  19176. name: "Dick (Were)",
  19177. image: {
  19178. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19179. }
  19180. },
  19181. },
  19182. [
  19183. {
  19184. name: "Normal",
  19185. height: math.unit(6 + 1 / 12, "feet"),
  19186. default: true
  19187. },
  19188. ]
  19189. ))
  19190. characterMakers.push(() => makeCharacter(
  19191. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19192. {
  19193. front: {
  19194. height: math.unit(10, "feet"),
  19195. weight: math.unit(350, "lb"),
  19196. name: "Front",
  19197. image: {
  19198. source: "./media/characters/jet/front.svg",
  19199. extra: 2050 / 1980,
  19200. bottom: 0.013
  19201. }
  19202. },
  19203. back: {
  19204. height: math.unit(10, "feet"),
  19205. weight: math.unit(350, "lb"),
  19206. name: "Back",
  19207. image: {
  19208. source: "./media/characters/jet/back.svg",
  19209. extra: 2050 / 1980,
  19210. bottom: 0.013
  19211. }
  19212. },
  19213. },
  19214. [
  19215. {
  19216. name: "Micro",
  19217. height: math.unit(6, "inches")
  19218. },
  19219. {
  19220. name: "Normal",
  19221. height: math.unit(10, "feet"),
  19222. default: true
  19223. },
  19224. {
  19225. name: "Macro",
  19226. height: math.unit(100, "feet")
  19227. },
  19228. ]
  19229. ))
  19230. characterMakers.push(() => makeCharacter(
  19231. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19232. {
  19233. front: {
  19234. height: math.unit(15, "feet"),
  19235. weight: math.unit(2800, "lb"),
  19236. name: "Front",
  19237. image: {
  19238. source: "./media/characters/tanarath/front.svg",
  19239. extra: 2392 / 2220,
  19240. bottom: 0.03
  19241. }
  19242. },
  19243. back: {
  19244. height: math.unit(15, "feet"),
  19245. weight: math.unit(2800, "lb"),
  19246. name: "Back",
  19247. image: {
  19248. source: "./media/characters/tanarath/back.svg",
  19249. extra: 2392 / 2220,
  19250. bottom: 0.03
  19251. }
  19252. },
  19253. },
  19254. [
  19255. {
  19256. name: "Normal",
  19257. height: math.unit(15, "feet"),
  19258. default: true
  19259. },
  19260. ]
  19261. ))
  19262. characterMakers.push(() => makeCharacter(
  19263. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19264. {
  19265. front: {
  19266. height: math.unit(7 + 1 / 12, "feet"),
  19267. weight: math.unit(175, "lb"),
  19268. name: "Front",
  19269. image: {
  19270. source: "./media/characters/patty-cattybatty/front.svg",
  19271. extra: 908 / 874,
  19272. bottom: 0.025
  19273. }
  19274. },
  19275. },
  19276. [
  19277. {
  19278. name: "Micro",
  19279. height: math.unit(1, "inch")
  19280. },
  19281. {
  19282. name: "Normal",
  19283. height: math.unit(7 + 1 / 12, "feet")
  19284. },
  19285. {
  19286. name: "Mini Macro",
  19287. height: math.unit(155, "feet")
  19288. },
  19289. {
  19290. name: "Macro",
  19291. height: math.unit(1077, "feet")
  19292. },
  19293. {
  19294. name: "Mega Macro",
  19295. height: math.unit(47650, "feet"),
  19296. default: true
  19297. },
  19298. {
  19299. name: "Giga Macro",
  19300. height: math.unit(440, "miles")
  19301. },
  19302. {
  19303. name: "Tera Macro",
  19304. height: math.unit(8700, "miles")
  19305. },
  19306. {
  19307. name: "Planetary Macro",
  19308. height: math.unit(32700, "miles")
  19309. },
  19310. {
  19311. name: "Solar Macro",
  19312. height: math.unit(550000, "miles")
  19313. },
  19314. {
  19315. name: "Celestial Macro",
  19316. height: math.unit(2.5, "AU")
  19317. },
  19318. ]
  19319. ))
  19320. characterMakers.push(() => makeCharacter(
  19321. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19322. {
  19323. front: {
  19324. height: math.unit(4 + 5 / 12, "feet"),
  19325. weight: math.unit(90, "lb"),
  19326. name: "Front",
  19327. image: {
  19328. source: "./media/characters/cappu/front.svg",
  19329. extra: 1247 / 1152,
  19330. bottom: 0.012
  19331. }
  19332. },
  19333. },
  19334. [
  19335. {
  19336. name: "Normal",
  19337. height: math.unit(4 + 5 / 12, "feet"),
  19338. default: true
  19339. },
  19340. ]
  19341. ))
  19342. characterMakers.push(() => makeCharacter(
  19343. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19344. {
  19345. frontDressed: {
  19346. height: math.unit(70, "cm"),
  19347. weight: math.unit(6, "kg"),
  19348. name: "Front (Dressed)",
  19349. image: {
  19350. source: "./media/characters/sebi/front-dressed.svg",
  19351. extra: 713.5 / 686.5,
  19352. bottom: 0.003
  19353. }
  19354. },
  19355. front: {
  19356. height: math.unit(70, "cm"),
  19357. weight: math.unit(5, "kg"),
  19358. name: "Front",
  19359. image: {
  19360. source: "./media/characters/sebi/front.svg",
  19361. extra: 713.5 / 686.5,
  19362. bottom: 0.003
  19363. }
  19364. }
  19365. },
  19366. [
  19367. {
  19368. name: "Normal",
  19369. height: math.unit(70, "cm"),
  19370. default: true
  19371. },
  19372. {
  19373. name: "Macro",
  19374. height: math.unit(8, "meters")
  19375. },
  19376. ]
  19377. ))
  19378. characterMakers.push(() => makeCharacter(
  19379. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19380. {
  19381. front: {
  19382. height: math.unit(6, "feet"),
  19383. weight: math.unit(150, "lb"),
  19384. name: "Front",
  19385. image: {
  19386. source: "./media/characters/typhek/front.svg",
  19387. extra: 1948 / 1929,
  19388. bottom: 0.025
  19389. }
  19390. },
  19391. side: {
  19392. height: math.unit(6, "feet"),
  19393. weight: math.unit(150, "lb"),
  19394. name: "Side",
  19395. image: {
  19396. source: "./media/characters/typhek/side.svg",
  19397. extra: 2034 / 2010,
  19398. bottom: 0.003
  19399. }
  19400. },
  19401. back: {
  19402. height: math.unit(6, "feet"),
  19403. weight: math.unit(150, "lb"),
  19404. name: "Back",
  19405. image: {
  19406. source: "./media/characters/typhek/back.svg",
  19407. extra: 2005 / 1978,
  19408. bottom: 0.004
  19409. }
  19410. },
  19411. palm: {
  19412. height: math.unit(1.2, "feet"),
  19413. name: "Palm",
  19414. image: {
  19415. source: "./media/characters/typhek/palm.svg"
  19416. }
  19417. },
  19418. fist: {
  19419. height: math.unit(1.1, "feet"),
  19420. name: "Fist",
  19421. image: {
  19422. source: "./media/characters/typhek/fist.svg"
  19423. }
  19424. },
  19425. foot: {
  19426. height: math.unit(1.57, "feet"),
  19427. name: "Foot",
  19428. image: {
  19429. source: "./media/characters/typhek/foot.svg"
  19430. }
  19431. },
  19432. sole: {
  19433. height: math.unit(2.05, "feet"),
  19434. name: "Sole",
  19435. image: {
  19436. source: "./media/characters/typhek/sole.svg"
  19437. }
  19438. },
  19439. },
  19440. [
  19441. {
  19442. name: "Macro",
  19443. height: math.unit(40, "stories"),
  19444. default: true
  19445. },
  19446. {
  19447. name: "Megamacro",
  19448. height: math.unit(1, "mile")
  19449. },
  19450. {
  19451. name: "Gigamacro",
  19452. height: math.unit(4000, "solarradii")
  19453. },
  19454. {
  19455. name: "Universal",
  19456. height: math.unit(1.1, "universes")
  19457. }
  19458. ]
  19459. ))
  19460. characterMakers.push(() => makeCharacter(
  19461. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19462. {
  19463. side: {
  19464. height: math.unit(5 + 7 / 12, "feet"),
  19465. weight: math.unit(150, "lb"),
  19466. name: "Side",
  19467. image: {
  19468. source: "./media/characters/kassy/side.svg",
  19469. extra: 1280 / 1225,
  19470. bottom: 0.002
  19471. }
  19472. },
  19473. front: {
  19474. height: math.unit(5 + 7 / 12, "feet"),
  19475. weight: math.unit(150, "lb"),
  19476. name: "Front",
  19477. image: {
  19478. source: "./media/characters/kassy/front.svg",
  19479. extra: 1280 / 1225,
  19480. bottom: 0.025
  19481. }
  19482. },
  19483. back: {
  19484. height: math.unit(5 + 7 / 12, "feet"),
  19485. weight: math.unit(150, "lb"),
  19486. name: "Back",
  19487. image: {
  19488. source: "./media/characters/kassy/back.svg",
  19489. extra: 1280 / 1225,
  19490. bottom: 0.002
  19491. }
  19492. },
  19493. foot: {
  19494. height: math.unit(1.266, "feet"),
  19495. name: "Foot",
  19496. image: {
  19497. source: "./media/characters/kassy/foot.svg"
  19498. }
  19499. },
  19500. },
  19501. [
  19502. {
  19503. name: "Normal",
  19504. height: math.unit(5 + 7 / 12, "feet")
  19505. },
  19506. {
  19507. name: "Macro",
  19508. height: math.unit(137, "feet"),
  19509. default: true
  19510. },
  19511. {
  19512. name: "Megamacro",
  19513. height: math.unit(1, "mile")
  19514. },
  19515. ]
  19516. ))
  19517. characterMakers.push(() => makeCharacter(
  19518. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19519. {
  19520. front: {
  19521. height: math.unit(6 + 1 / 12, "feet"),
  19522. weight: math.unit(200, "lb"),
  19523. name: "Front",
  19524. image: {
  19525. source: "./media/characters/neil/front.svg",
  19526. extra: 1326 / 1250,
  19527. bottom: 0.023
  19528. }
  19529. },
  19530. },
  19531. [
  19532. {
  19533. name: "Normal",
  19534. height: math.unit(6 + 1 / 12, "feet"),
  19535. default: true
  19536. },
  19537. {
  19538. name: "Macro",
  19539. height: math.unit(200, "feet")
  19540. },
  19541. ]
  19542. ))
  19543. characterMakers.push(() => makeCharacter(
  19544. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19545. {
  19546. front: {
  19547. height: math.unit(5 + 9 / 12, "feet"),
  19548. weight: math.unit(190, "lb"),
  19549. name: "Front",
  19550. image: {
  19551. source: "./media/characters/atticus/front.svg",
  19552. extra: 2934 / 2785,
  19553. bottom: 0.025
  19554. }
  19555. },
  19556. },
  19557. [
  19558. {
  19559. name: "Normal",
  19560. height: math.unit(5 + 9 / 12, "feet"),
  19561. default: true
  19562. },
  19563. {
  19564. name: "Macro",
  19565. height: math.unit(180, "feet")
  19566. },
  19567. ]
  19568. ))
  19569. characterMakers.push(() => makeCharacter(
  19570. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19571. {
  19572. side: {
  19573. height: math.unit(9, "feet"),
  19574. weight: math.unit(650, "lb"),
  19575. name: "Side",
  19576. image: {
  19577. source: "./media/characters/milo/side.svg",
  19578. extra: 2644 / 2310,
  19579. bottom: 0.032
  19580. }
  19581. },
  19582. },
  19583. [
  19584. {
  19585. name: "Normal",
  19586. height: math.unit(9, "feet"),
  19587. default: true
  19588. },
  19589. {
  19590. name: "Macro",
  19591. height: math.unit(300, "feet")
  19592. },
  19593. ]
  19594. ))
  19595. characterMakers.push(() => makeCharacter(
  19596. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19597. {
  19598. side: {
  19599. height: math.unit(8, "meters"),
  19600. weight: math.unit(90000, "kg"),
  19601. name: "Side",
  19602. image: {
  19603. source: "./media/characters/ijzer/side.svg",
  19604. extra: 2756 / 1600,
  19605. bottom: 0.01
  19606. }
  19607. },
  19608. },
  19609. [
  19610. {
  19611. name: "Small",
  19612. height: math.unit(3, "meters")
  19613. },
  19614. {
  19615. name: "Normal",
  19616. height: math.unit(8, "meters"),
  19617. default: true
  19618. },
  19619. {
  19620. name: "Normal+",
  19621. height: math.unit(10, "meters")
  19622. },
  19623. {
  19624. name: "Bigger",
  19625. height: math.unit(24, "meters")
  19626. },
  19627. {
  19628. name: "Huge",
  19629. height: math.unit(80, "meters")
  19630. },
  19631. ]
  19632. ))
  19633. characterMakers.push(() => makeCharacter(
  19634. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19635. {
  19636. front: {
  19637. height: math.unit(6 + 2 / 12, "feet"),
  19638. weight: math.unit(153, "lb"),
  19639. name: "Front",
  19640. image: {
  19641. source: "./media/characters/luca-cervicum/front.svg",
  19642. extra: 370 / 327,
  19643. bottom: 0.015
  19644. }
  19645. },
  19646. back: {
  19647. height: math.unit(6 + 2 / 12, "feet"),
  19648. weight: math.unit(153, "lb"),
  19649. name: "Back",
  19650. image: {
  19651. source: "./media/characters/luca-cervicum/back.svg",
  19652. extra: 367 / 333,
  19653. bottom: 0.005
  19654. }
  19655. },
  19656. frontGear: {
  19657. height: math.unit(6 + 2 / 12, "feet"),
  19658. weight: math.unit(173, "lb"),
  19659. name: "Front (Gear)",
  19660. image: {
  19661. source: "./media/characters/luca-cervicum/front-gear.svg",
  19662. extra: 377 / 333,
  19663. bottom: 0.006
  19664. }
  19665. },
  19666. },
  19667. [
  19668. {
  19669. name: "Normal",
  19670. height: math.unit(6 + 2 / 12, "feet"),
  19671. default: true
  19672. },
  19673. ]
  19674. ))
  19675. characterMakers.push(() => makeCharacter(
  19676. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19677. {
  19678. front: {
  19679. height: math.unit(6 + 1 / 12, "feet"),
  19680. weight: math.unit(304, "lb"),
  19681. name: "Front",
  19682. image: {
  19683. source: "./media/characters/oliver/front.svg",
  19684. extra: 157 / 143,
  19685. bottom: 0.08
  19686. }
  19687. },
  19688. },
  19689. [
  19690. {
  19691. name: "Normal",
  19692. height: math.unit(6 + 1 / 12, "feet"),
  19693. default: true
  19694. },
  19695. ]
  19696. ))
  19697. characterMakers.push(() => makeCharacter(
  19698. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19699. {
  19700. front: {
  19701. height: math.unit(5 + 7 / 12, "feet"),
  19702. weight: math.unit(140, "lb"),
  19703. name: "Front",
  19704. image: {
  19705. source: "./media/characters/shane/front.svg",
  19706. extra: 304 / 289,
  19707. bottom: 0.005
  19708. }
  19709. },
  19710. },
  19711. [
  19712. {
  19713. name: "Normal",
  19714. height: math.unit(5 + 7 / 12, "feet"),
  19715. default: true
  19716. },
  19717. ]
  19718. ))
  19719. characterMakers.push(() => makeCharacter(
  19720. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19721. {
  19722. front: {
  19723. height: math.unit(5 + 9 / 12, "feet"),
  19724. weight: math.unit(178, "lb"),
  19725. name: "Front",
  19726. image: {
  19727. source: "./media/characters/shin/front.svg",
  19728. extra: 159 / 151,
  19729. bottom: 0.015
  19730. }
  19731. },
  19732. },
  19733. [
  19734. {
  19735. name: "Normal",
  19736. height: math.unit(5 + 9 / 12, "feet"),
  19737. default: true
  19738. },
  19739. ]
  19740. ))
  19741. characterMakers.push(() => makeCharacter(
  19742. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19743. {
  19744. front: {
  19745. height: math.unit(5 + 10 / 12, "feet"),
  19746. weight: math.unit(168, "lb"),
  19747. name: "Front",
  19748. image: {
  19749. source: "./media/characters/xerxes/front.svg",
  19750. extra: 282 / 260,
  19751. bottom: 0.045
  19752. }
  19753. },
  19754. },
  19755. [
  19756. {
  19757. name: "Normal",
  19758. height: math.unit(5 + 10 / 12, "feet"),
  19759. default: true
  19760. },
  19761. ]
  19762. ))
  19763. characterMakers.push(() => makeCharacter(
  19764. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19765. {
  19766. front: {
  19767. height: math.unit(6 + 7 / 12, "feet"),
  19768. weight: math.unit(208, "lb"),
  19769. name: "Front",
  19770. image: {
  19771. source: "./media/characters/chaska/front.svg",
  19772. extra: 332 / 319,
  19773. bottom: 0.015
  19774. }
  19775. },
  19776. },
  19777. [
  19778. {
  19779. name: "Normal",
  19780. height: math.unit(6 + 7 / 12, "feet"),
  19781. default: true
  19782. },
  19783. ]
  19784. ))
  19785. characterMakers.push(() => makeCharacter(
  19786. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19787. {
  19788. front: {
  19789. height: math.unit(5 + 8 / 12, "feet"),
  19790. weight: math.unit(208, "lb"),
  19791. name: "Front",
  19792. image: {
  19793. source: "./media/characters/enuk/front.svg",
  19794. extra: 437 / 406,
  19795. bottom: 0.02
  19796. }
  19797. },
  19798. },
  19799. [
  19800. {
  19801. name: "Normal",
  19802. height: math.unit(5 + 8 / 12, "feet"),
  19803. default: true
  19804. },
  19805. ]
  19806. ))
  19807. characterMakers.push(() => makeCharacter(
  19808. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19809. {
  19810. front: {
  19811. height: math.unit(5 + 10 / 12, "feet"),
  19812. weight: math.unit(252, "lb"),
  19813. name: "Front",
  19814. image: {
  19815. source: "./media/characters/bruun/front.svg",
  19816. extra: 197 / 187,
  19817. bottom: 0.012
  19818. }
  19819. },
  19820. },
  19821. [
  19822. {
  19823. name: "Normal",
  19824. height: math.unit(5 + 10 / 12, "feet"),
  19825. default: true
  19826. },
  19827. ]
  19828. ))
  19829. characterMakers.push(() => makeCharacter(
  19830. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19831. {
  19832. front: {
  19833. height: math.unit(6 + 10 / 12, "feet"),
  19834. weight: math.unit(255, "lb"),
  19835. name: "Front",
  19836. image: {
  19837. source: "./media/characters/alexeev/front.svg",
  19838. extra: 213 / 200,
  19839. bottom: 0.05
  19840. }
  19841. },
  19842. },
  19843. [
  19844. {
  19845. name: "Normal",
  19846. height: math.unit(6 + 10 / 12, "feet"),
  19847. default: true
  19848. },
  19849. ]
  19850. ))
  19851. characterMakers.push(() => makeCharacter(
  19852. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19853. {
  19854. front: {
  19855. height: math.unit(2 + 8 / 12, "feet"),
  19856. weight: math.unit(22, "lb"),
  19857. name: "Front",
  19858. image: {
  19859. source: "./media/characters/evelyn/front.svg",
  19860. extra: 208 / 180
  19861. }
  19862. },
  19863. },
  19864. [
  19865. {
  19866. name: "Normal",
  19867. height: math.unit(2 + 8 / 12, "feet"),
  19868. default: true
  19869. },
  19870. ]
  19871. ))
  19872. characterMakers.push(() => makeCharacter(
  19873. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19874. {
  19875. front: {
  19876. height: math.unit(5 + 9 / 12, "feet"),
  19877. weight: math.unit(139, "lb"),
  19878. name: "Front",
  19879. image: {
  19880. source: "./media/characters/inca/front.svg",
  19881. extra: 294 / 291,
  19882. bottom: 0.03
  19883. }
  19884. },
  19885. },
  19886. [
  19887. {
  19888. name: "Normal",
  19889. height: math.unit(5 + 9 / 12, "feet"),
  19890. default: true
  19891. },
  19892. ]
  19893. ))
  19894. characterMakers.push(() => makeCharacter(
  19895. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19896. {
  19897. front: {
  19898. height: math.unit(5 + 1 / 12, "feet"),
  19899. weight: math.unit(84, "lb"),
  19900. name: "Front",
  19901. image: {
  19902. source: "./media/characters/magdalene/front.svg",
  19903. extra: 293 / 273
  19904. }
  19905. },
  19906. },
  19907. [
  19908. {
  19909. name: "Normal",
  19910. height: math.unit(5 + 1 / 12, "feet"),
  19911. default: true
  19912. },
  19913. ]
  19914. ))
  19915. characterMakers.push(() => makeCharacter(
  19916. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19917. {
  19918. front: {
  19919. height: math.unit(6 + 3 / 12, "feet"),
  19920. weight: math.unit(185, "lb"),
  19921. name: "Front",
  19922. image: {
  19923. source: "./media/characters/mera/front.svg",
  19924. extra: 291 / 277,
  19925. bottom: 0.03
  19926. }
  19927. },
  19928. },
  19929. [
  19930. {
  19931. name: "Normal",
  19932. height: math.unit(6 + 3 / 12, "feet"),
  19933. default: true
  19934. },
  19935. ]
  19936. ))
  19937. characterMakers.push(() => makeCharacter(
  19938. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19939. {
  19940. front: {
  19941. height: math.unit(6 + 7 / 12, "feet"),
  19942. weight: math.unit(160, "lb"),
  19943. name: "Front",
  19944. image: {
  19945. source: "./media/characters/ceres/front.svg",
  19946. extra: 1023 / 950,
  19947. bottom: 0.027
  19948. }
  19949. },
  19950. back: {
  19951. height: math.unit(6 + 7 / 12, "feet"),
  19952. weight: math.unit(160, "lb"),
  19953. name: "Back",
  19954. image: {
  19955. source: "./media/characters/ceres/back.svg",
  19956. extra: 1023 / 950
  19957. }
  19958. },
  19959. },
  19960. [
  19961. {
  19962. name: "Normal",
  19963. height: math.unit(6 + 7 / 12, "feet"),
  19964. default: true
  19965. },
  19966. ]
  19967. ))
  19968. characterMakers.push(() => makeCharacter(
  19969. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19970. {
  19971. front: {
  19972. height: math.unit(5 + 10 / 12, "feet"),
  19973. weight: math.unit(150, "lb"),
  19974. name: "Front",
  19975. image: {
  19976. source: "./media/characters/kris/front.svg",
  19977. extra: 885 / 803,
  19978. bottom: 0.03
  19979. }
  19980. },
  19981. },
  19982. [
  19983. {
  19984. name: "Normal",
  19985. height: math.unit(5 + 10 / 12, "feet"),
  19986. default: true
  19987. },
  19988. ]
  19989. ))
  19990. characterMakers.push(() => makeCharacter(
  19991. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19992. {
  19993. front: {
  19994. height: math.unit(7, "feet"),
  19995. weight: math.unit(120, "kg"),
  19996. name: "Front",
  19997. image: {
  19998. source: "./media/characters/taluthus/front.svg",
  19999. extra: 903 / 833,
  20000. bottom: 0.015
  20001. }
  20002. },
  20003. },
  20004. [
  20005. {
  20006. name: "Normal",
  20007. height: math.unit(7, "feet"),
  20008. default: true
  20009. },
  20010. {
  20011. name: "Macro",
  20012. height: math.unit(300, "feet")
  20013. },
  20014. ]
  20015. ))
  20016. characterMakers.push(() => makeCharacter(
  20017. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20018. {
  20019. front: {
  20020. height: math.unit(5 + 9 / 12, "feet"),
  20021. weight: math.unit(145, "lb"),
  20022. name: "Front",
  20023. image: {
  20024. source: "./media/characters/dawn/front.svg",
  20025. extra: 2094 / 2016,
  20026. bottom: 0.025
  20027. }
  20028. },
  20029. back: {
  20030. height: math.unit(5 + 9 / 12, "feet"),
  20031. weight: math.unit(160, "lb"),
  20032. name: "Back",
  20033. image: {
  20034. source: "./media/characters/dawn/back.svg",
  20035. extra: 2112 / 2080,
  20036. bottom: 0.005
  20037. }
  20038. },
  20039. },
  20040. [
  20041. {
  20042. name: "Normal",
  20043. height: math.unit(6 + 7 / 12, "feet"),
  20044. default: true
  20045. },
  20046. ]
  20047. ))
  20048. characterMakers.push(() => makeCharacter(
  20049. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20050. {
  20051. anthro: {
  20052. height: math.unit(8 + 3 / 12, "feet"),
  20053. weight: math.unit(450, "lb"),
  20054. name: "Anthro",
  20055. image: {
  20056. source: "./media/characters/arador/anthro.svg",
  20057. extra: 1835 / 1718,
  20058. bottom: 0.025
  20059. }
  20060. },
  20061. feral: {
  20062. height: math.unit(4, "feet"),
  20063. weight: math.unit(200, "lb"),
  20064. name: "Feral",
  20065. image: {
  20066. source: "./media/characters/arador/feral.svg",
  20067. extra: 1683 / 1514,
  20068. bottom: 0.07
  20069. }
  20070. },
  20071. },
  20072. [
  20073. {
  20074. name: "Normal",
  20075. height: math.unit(8 + 3 / 12, "feet")
  20076. },
  20077. {
  20078. name: "Macro",
  20079. height: math.unit(82.5, "feet"),
  20080. default: true
  20081. },
  20082. ]
  20083. ))
  20084. characterMakers.push(() => makeCharacter(
  20085. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20086. {
  20087. front: {
  20088. height: math.unit(5 + 10 / 12, "feet"),
  20089. weight: math.unit(125, "lb"),
  20090. name: "Front",
  20091. image: {
  20092. source: "./media/characters/dharsi/front.svg",
  20093. extra: 716 / 630,
  20094. bottom: 0.035
  20095. }
  20096. },
  20097. },
  20098. [
  20099. {
  20100. name: "Nano",
  20101. height: math.unit(100, "nm")
  20102. },
  20103. {
  20104. name: "Micro",
  20105. height: math.unit(2, "inches")
  20106. },
  20107. {
  20108. name: "Normal",
  20109. height: math.unit(5 + 10 / 12, "feet"),
  20110. default: true
  20111. },
  20112. {
  20113. name: "Macro",
  20114. height: math.unit(1000, "feet")
  20115. },
  20116. {
  20117. name: "Megamacro",
  20118. height: math.unit(10, "miles")
  20119. },
  20120. {
  20121. name: "Gigamacro",
  20122. height: math.unit(3000, "miles")
  20123. },
  20124. {
  20125. name: "Teramacro",
  20126. height: math.unit(500000, "miles")
  20127. },
  20128. {
  20129. name: "Teramacro+",
  20130. height: math.unit(30, "galaxies")
  20131. },
  20132. ]
  20133. ))
  20134. characterMakers.push(() => makeCharacter(
  20135. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20136. {
  20137. front: {
  20138. height: math.unit(6, "feet"),
  20139. weight: math.unit(150, "lb"),
  20140. name: "Front",
  20141. image: {
  20142. source: "./media/characters/deathy/front.svg",
  20143. extra: 1552 / 1463,
  20144. bottom: 0.025
  20145. }
  20146. },
  20147. side: {
  20148. height: math.unit(6, "feet"),
  20149. weight: math.unit(150, "lb"),
  20150. name: "Side",
  20151. image: {
  20152. source: "./media/characters/deathy/side.svg",
  20153. extra: 1604 / 1455,
  20154. bottom: 0.025
  20155. }
  20156. },
  20157. back: {
  20158. height: math.unit(6, "feet"),
  20159. weight: math.unit(150, "lb"),
  20160. name: "Back",
  20161. image: {
  20162. source: "./media/characters/deathy/back.svg",
  20163. extra: 1580 / 1463,
  20164. bottom: 0.005
  20165. }
  20166. },
  20167. },
  20168. [
  20169. {
  20170. name: "Micro",
  20171. height: math.unit(5, "millimeters")
  20172. },
  20173. {
  20174. name: "Normal",
  20175. height: math.unit(6 + 5 / 12, "feet"),
  20176. default: true
  20177. },
  20178. ]
  20179. ))
  20180. characterMakers.push(() => makeCharacter(
  20181. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20182. {
  20183. front: {
  20184. height: math.unit(16, "feet"),
  20185. weight: math.unit(4000, "lb"),
  20186. name: "Front",
  20187. image: {
  20188. source: "./media/characters/juniper/front.svg",
  20189. bottom: 0.04
  20190. }
  20191. },
  20192. },
  20193. [
  20194. {
  20195. name: "Normal",
  20196. height: math.unit(16, "feet"),
  20197. default: true
  20198. },
  20199. ]
  20200. ))
  20201. characterMakers.push(() => makeCharacter(
  20202. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20203. {
  20204. front: {
  20205. height: math.unit(6, "feet"),
  20206. weight: math.unit(150, "lb"),
  20207. name: "Front",
  20208. image: {
  20209. source: "./media/characters/hipster/front.svg",
  20210. extra: 1312 / 1209,
  20211. bottom: 0.025
  20212. }
  20213. },
  20214. back: {
  20215. height: math.unit(6, "feet"),
  20216. weight: math.unit(150, "lb"),
  20217. name: "Back",
  20218. image: {
  20219. source: "./media/characters/hipster/back.svg",
  20220. extra: 1281 / 1196,
  20221. bottom: 0.01
  20222. }
  20223. },
  20224. },
  20225. [
  20226. {
  20227. name: "Micro",
  20228. height: math.unit(1, "mm")
  20229. },
  20230. {
  20231. name: "Normal",
  20232. height: math.unit(4, "inches"),
  20233. default: true
  20234. },
  20235. {
  20236. name: "Macro",
  20237. height: math.unit(500, "feet")
  20238. },
  20239. {
  20240. name: "Megamacro",
  20241. height: math.unit(1000, "miles")
  20242. },
  20243. ]
  20244. ))
  20245. characterMakers.push(() => makeCharacter(
  20246. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20247. {
  20248. front: {
  20249. height: math.unit(6, "feet"),
  20250. weight: math.unit(150, "lb"),
  20251. name: "Front",
  20252. image: {
  20253. source: "./media/characters/tendirmuldr/front.svg",
  20254. extra: 1878 / 1772,
  20255. bottom: 0.015
  20256. }
  20257. },
  20258. },
  20259. [
  20260. {
  20261. name: "Megamacro",
  20262. height: math.unit(1500, "miles"),
  20263. default: true
  20264. },
  20265. ]
  20266. ))
  20267. characterMakers.push(() => makeCharacter(
  20268. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20269. {
  20270. front: {
  20271. height: math.unit(14, "feet"),
  20272. weight: math.unit(12000, "lb"),
  20273. name: "Front",
  20274. image: {
  20275. source: "./media/characters/mort/front.svg",
  20276. extra: 365 / 318,
  20277. bottom: 0.01
  20278. }
  20279. },
  20280. side: {
  20281. height: math.unit(14, "feet"),
  20282. weight: math.unit(12000, "lb"),
  20283. name: "Side",
  20284. image: {
  20285. source: "./media/characters/mort/side.svg",
  20286. extra: 365 / 318,
  20287. bottom: 0.052
  20288. },
  20289. default: true
  20290. },
  20291. back: {
  20292. height: math.unit(14, "feet"),
  20293. weight: math.unit(12000, "lb"),
  20294. name: "Back",
  20295. image: {
  20296. source: "./media/characters/mort/back.svg",
  20297. extra: 371 / 332,
  20298. bottom: 0.18
  20299. }
  20300. },
  20301. },
  20302. [
  20303. {
  20304. name: "Normal",
  20305. height: math.unit(14, "feet"),
  20306. default: true
  20307. },
  20308. ]
  20309. ))
  20310. characterMakers.push(() => makeCharacter(
  20311. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20312. {
  20313. front: {
  20314. height: math.unit(8, "feet"),
  20315. weight: math.unit(1, "ton"),
  20316. name: "Front",
  20317. image: {
  20318. source: "./media/characters/lycoa/front.svg",
  20319. extra: 1875 / 1789,
  20320. bottom: 0.022
  20321. }
  20322. },
  20323. back: {
  20324. height: math.unit(8, "feet"),
  20325. weight: math.unit(1, "ton"),
  20326. name: "Back",
  20327. image: {
  20328. source: "./media/characters/lycoa/back.svg",
  20329. extra: 1835 / 1781,
  20330. bottom: 0.03
  20331. }
  20332. },
  20333. head: {
  20334. height: math.unit(2.1, "feet"),
  20335. name: "Head",
  20336. image: {
  20337. source: "./media/characters/lycoa/head.svg"
  20338. }
  20339. },
  20340. tailmaw: {
  20341. height: math.unit(1.9, "feet"),
  20342. name: "Tailmaw",
  20343. image: {
  20344. source: "./media/characters/lycoa/tailmaw.svg"
  20345. }
  20346. },
  20347. tentacles: {
  20348. height: math.unit(2.1, "feet"),
  20349. name: "Tentacles",
  20350. image: {
  20351. source: "./media/characters/lycoa/tentacles.svg"
  20352. }
  20353. },
  20354. dick: {
  20355. height: math.unit(1.73, "feet"),
  20356. name: "Dick",
  20357. image: {
  20358. source: "./media/characters/lycoa/dick.svg"
  20359. }
  20360. },
  20361. },
  20362. [
  20363. {
  20364. name: "Normal",
  20365. height: math.unit(8, "feet"),
  20366. default: true
  20367. },
  20368. {
  20369. name: "Macro",
  20370. height: math.unit(30, "feet")
  20371. },
  20372. ]
  20373. ))
  20374. characterMakers.push(() => makeCharacter(
  20375. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20376. {
  20377. front: {
  20378. height: math.unit(4 + 2 / 12, "feet"),
  20379. weight: math.unit(70, "lb"),
  20380. name: "Front",
  20381. image: {
  20382. source: "./media/characters/naldara/front.svg",
  20383. extra: 841 / 720,
  20384. bottom: 0.04
  20385. }
  20386. },
  20387. naga: {
  20388. height: math.unit(23, "feet"),
  20389. weight: math.unit(15000, "kg"),
  20390. name: "Naga",
  20391. image: {
  20392. source: "./media/characters/naldara/naga.svg",
  20393. extra: 3290 / 2959,
  20394. bottom: 124 / 3432
  20395. }
  20396. },
  20397. },
  20398. [
  20399. {
  20400. name: "Normal",
  20401. height: math.unit(4 + 2 / 12, "feet"),
  20402. default: true
  20403. },
  20404. ]
  20405. ))
  20406. characterMakers.push(() => makeCharacter(
  20407. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20408. {
  20409. front: {
  20410. height: math.unit(13 + 7 / 12, "feet"),
  20411. weight: math.unit(1500, "lb"),
  20412. name: "Front",
  20413. image: {
  20414. source: "./media/characters/briar/front.svg",
  20415. extra: 626 / 596,
  20416. bottom: 0.08
  20417. }
  20418. },
  20419. },
  20420. [
  20421. {
  20422. name: "Normal",
  20423. height: math.unit(13 + 7 / 12, "feet"),
  20424. default: true
  20425. },
  20426. ]
  20427. ))
  20428. characterMakers.push(() => makeCharacter(
  20429. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20430. {
  20431. side: {
  20432. height: math.unit(10, "feet"),
  20433. weight: math.unit(500, "lb"),
  20434. name: "Side",
  20435. image: {
  20436. source: "./media/characters/vanguard/side.svg",
  20437. extra: 502 / 425,
  20438. bottom: 0.087
  20439. }
  20440. },
  20441. },
  20442. [
  20443. {
  20444. name: "Normal",
  20445. height: math.unit(10, "feet"),
  20446. default: true
  20447. },
  20448. ]
  20449. ))
  20450. characterMakers.push(() => makeCharacter(
  20451. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20452. {
  20453. front: {
  20454. height: math.unit(7.5, "feet"),
  20455. weight: math.unit(2, "lb"),
  20456. name: "Front",
  20457. image: {
  20458. source: "./media/characters/artemis/front.svg",
  20459. extra: 1192 / 1075,
  20460. bottom: 0.07
  20461. }
  20462. },
  20463. frontNsfw: {
  20464. height: math.unit(7.5, "feet"),
  20465. weight: math.unit(2, "lb"),
  20466. name: "Front (NSFW)",
  20467. image: {
  20468. source: "./media/characters/artemis/front-nsfw.svg",
  20469. extra: 1192 / 1075,
  20470. bottom: 0.07
  20471. }
  20472. },
  20473. frontNsfwer: {
  20474. height: math.unit(7.5, "feet"),
  20475. weight: math.unit(2, "lb"),
  20476. name: "Front (NSFW-er)",
  20477. image: {
  20478. source: "./media/characters/artemis/front-nsfwer.svg",
  20479. extra: 1192 / 1075,
  20480. bottom: 0.07
  20481. }
  20482. },
  20483. side: {
  20484. height: math.unit(7.5, "feet"),
  20485. weight: math.unit(2, "lb"),
  20486. name: "Side",
  20487. image: {
  20488. source: "./media/characters/artemis/side.svg",
  20489. extra: 1192 / 1075,
  20490. bottom: 0.07
  20491. }
  20492. },
  20493. sideNsfw: {
  20494. height: math.unit(7.5, "feet"),
  20495. weight: math.unit(2, "lb"),
  20496. name: "Side (NSFW)",
  20497. image: {
  20498. source: "./media/characters/artemis/side-nsfw.svg",
  20499. extra: 1192 / 1075,
  20500. bottom: 0.07
  20501. }
  20502. },
  20503. sideNsfwer: {
  20504. height: math.unit(7.5, "feet"),
  20505. weight: math.unit(2, "lb"),
  20506. name: "Side (NSFW-er)",
  20507. image: {
  20508. source: "./media/characters/artemis/side-nsfwer.svg",
  20509. extra: 1192 / 1075,
  20510. bottom: 0.07
  20511. }
  20512. },
  20513. maw: {
  20514. height: math.unit(1.1, "feet"),
  20515. name: "Maw",
  20516. image: {
  20517. source: "./media/characters/artemis/maw.svg"
  20518. }
  20519. },
  20520. stomach: {
  20521. height: math.unit(0.95, "feet"),
  20522. name: "Stomach",
  20523. image: {
  20524. source: "./media/characters/artemis/stomach.svg"
  20525. }
  20526. },
  20527. dickCanine: {
  20528. height: math.unit(1, "feet"),
  20529. name: "Dick (Canine)",
  20530. image: {
  20531. source: "./media/characters/artemis/dick-canine.svg"
  20532. }
  20533. },
  20534. dickEquine: {
  20535. height: math.unit(0.85, "feet"),
  20536. name: "Dick (Equine)",
  20537. image: {
  20538. source: "./media/characters/artemis/dick-equine.svg"
  20539. }
  20540. },
  20541. dickExotic: {
  20542. height: math.unit(0.85, "feet"),
  20543. name: "Dick (Exotic)",
  20544. image: {
  20545. source: "./media/characters/artemis/dick-exotic.svg"
  20546. }
  20547. },
  20548. },
  20549. [
  20550. {
  20551. name: "Normal",
  20552. height: math.unit(7.5, "feet"),
  20553. default: true
  20554. },
  20555. {
  20556. name: "Enlarged",
  20557. height: math.unit(12, "feet")
  20558. },
  20559. ]
  20560. ))
  20561. characterMakers.push(() => makeCharacter(
  20562. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20563. {
  20564. front: {
  20565. height: math.unit(5 + 3 / 12, "feet"),
  20566. weight: math.unit(160, "lb"),
  20567. name: "Front",
  20568. image: {
  20569. source: "./media/characters/kira/front.svg",
  20570. extra: 906 / 786,
  20571. bottom: 0.01
  20572. }
  20573. },
  20574. back: {
  20575. height: math.unit(5 + 3 / 12, "feet"),
  20576. weight: math.unit(160, "lb"),
  20577. name: "Back",
  20578. image: {
  20579. source: "./media/characters/kira/back.svg",
  20580. extra: 882 / 757,
  20581. bottom: 0.005
  20582. }
  20583. },
  20584. frontDressed: {
  20585. height: math.unit(5 + 3 / 12, "feet"),
  20586. weight: math.unit(160, "lb"),
  20587. name: "Front (Dressed)",
  20588. image: {
  20589. source: "./media/characters/kira/front-dressed.svg",
  20590. extra: 906 / 786,
  20591. bottom: 0.01
  20592. }
  20593. },
  20594. beans: {
  20595. height: math.unit(0.92, "feet"),
  20596. name: "Beans",
  20597. image: {
  20598. source: "./media/characters/kira/beans.svg"
  20599. }
  20600. },
  20601. },
  20602. [
  20603. {
  20604. name: "Normal",
  20605. height: math.unit(5 + 3 / 12, "feet"),
  20606. default: true
  20607. },
  20608. ]
  20609. ))
  20610. characterMakers.push(() => makeCharacter(
  20611. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20612. {
  20613. front: {
  20614. height: math.unit(5 + 4 / 12, "feet"),
  20615. weight: math.unit(145, "lb"),
  20616. name: "Front",
  20617. image: {
  20618. source: "./media/characters/scramble/front.svg",
  20619. extra: 763 / 727,
  20620. bottom: 0.05
  20621. }
  20622. },
  20623. back: {
  20624. height: math.unit(5 + 4 / 12, "feet"),
  20625. weight: math.unit(145, "lb"),
  20626. name: "Back",
  20627. image: {
  20628. source: "./media/characters/scramble/back.svg",
  20629. extra: 826 / 737,
  20630. bottom: 0.002
  20631. }
  20632. },
  20633. },
  20634. [
  20635. {
  20636. name: "Normal",
  20637. height: math.unit(5 + 4 / 12, "feet"),
  20638. default: true
  20639. },
  20640. ]
  20641. ))
  20642. characterMakers.push(() => makeCharacter(
  20643. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20644. {
  20645. side: {
  20646. height: math.unit(6 + 2 / 12, "feet"),
  20647. weight: math.unit(190, "lb"),
  20648. name: "Side",
  20649. image: {
  20650. source: "./media/characters/biscuit/side.svg",
  20651. extra: 858 / 791,
  20652. bottom: 0.044
  20653. }
  20654. },
  20655. },
  20656. [
  20657. {
  20658. name: "Normal",
  20659. height: math.unit(6 + 2 / 12, "feet"),
  20660. default: true
  20661. },
  20662. ]
  20663. ))
  20664. characterMakers.push(() => makeCharacter(
  20665. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20666. {
  20667. front: {
  20668. height: math.unit(5 + 2 / 12, "feet"),
  20669. weight: math.unit(120, "lb"),
  20670. name: "Front",
  20671. image: {
  20672. source: "./media/characters/poffin/front.svg",
  20673. extra: 786 / 680,
  20674. bottom: 0.005
  20675. }
  20676. },
  20677. },
  20678. [
  20679. {
  20680. name: "Normal",
  20681. height: math.unit(5 + 2 / 12, "feet"),
  20682. default: true
  20683. },
  20684. ]
  20685. ))
  20686. characterMakers.push(() => makeCharacter(
  20687. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20688. {
  20689. front: {
  20690. height: math.unit(6 + 3 / 12, "feet"),
  20691. weight: math.unit(519, "lb"),
  20692. name: "Front",
  20693. image: {
  20694. source: "./media/characters/dhari/front.svg",
  20695. extra: 1048 / 946,
  20696. bottom: 0.015
  20697. }
  20698. },
  20699. back: {
  20700. height: math.unit(6 + 3 / 12, "feet"),
  20701. weight: math.unit(519, "lb"),
  20702. name: "Back",
  20703. image: {
  20704. source: "./media/characters/dhari/back.svg",
  20705. extra: 1048 / 931,
  20706. bottom: 0.005
  20707. }
  20708. },
  20709. frontDressed: {
  20710. height: math.unit(6 + 3 / 12, "feet"),
  20711. weight: math.unit(519, "lb"),
  20712. name: "Front (Dressed)",
  20713. image: {
  20714. source: "./media/characters/dhari/front-dressed.svg",
  20715. extra: 1713 / 1546,
  20716. bottom: 0.02
  20717. }
  20718. },
  20719. backDressed: {
  20720. height: math.unit(6 + 3 / 12, "feet"),
  20721. weight: math.unit(519, "lb"),
  20722. name: "Back (Dressed)",
  20723. image: {
  20724. source: "./media/characters/dhari/back-dressed.svg",
  20725. extra: 1699 / 1537,
  20726. bottom: 0.01
  20727. }
  20728. },
  20729. maw: {
  20730. height: math.unit(0.95, "feet"),
  20731. name: "Maw",
  20732. image: {
  20733. source: "./media/characters/dhari/maw.svg"
  20734. }
  20735. },
  20736. wereFront: {
  20737. height: math.unit(12 + 8 / 12, "feet"),
  20738. weight: math.unit(4000, "lb"),
  20739. name: "Front (Were)",
  20740. image: {
  20741. source: "./media/characters/dhari/were-front.svg",
  20742. extra: 1065 / 969,
  20743. bottom: 0.015
  20744. }
  20745. },
  20746. wereBack: {
  20747. height: math.unit(12 + 8 / 12, "feet"),
  20748. weight: math.unit(4000, "lb"),
  20749. name: "Back (Were)",
  20750. image: {
  20751. source: "./media/characters/dhari/were-back.svg",
  20752. extra: 1065 / 969,
  20753. bottom: 0.012
  20754. }
  20755. },
  20756. wereMaw: {
  20757. height: math.unit(0.625, "meters"),
  20758. name: "Maw (Were)",
  20759. image: {
  20760. source: "./media/characters/dhari/were-maw.svg"
  20761. }
  20762. },
  20763. },
  20764. [
  20765. {
  20766. name: "Normal",
  20767. height: math.unit(6 + 3 / 12, "feet"),
  20768. default: true
  20769. },
  20770. ]
  20771. ))
  20772. characterMakers.push(() => makeCharacter(
  20773. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20774. {
  20775. anthro: {
  20776. height: math.unit(5 + 7 / 12, "feet"),
  20777. weight: math.unit(175, "lb"),
  20778. name: "Anthro",
  20779. image: {
  20780. source: "./media/characters/rena-dyne/anthro.svg",
  20781. extra: 1849 / 1785,
  20782. bottom: 0.005
  20783. }
  20784. },
  20785. taur: {
  20786. height: math.unit(15 + 6 / 12, "feet"),
  20787. weight: math.unit(8000, "lb"),
  20788. name: "Taur",
  20789. image: {
  20790. source: "./media/characters/rena-dyne/taur.svg",
  20791. extra: 2315 / 2234,
  20792. bottom: 0.033
  20793. }
  20794. },
  20795. },
  20796. [
  20797. {
  20798. name: "Normal",
  20799. height: math.unit(5 + 7 / 12, "feet"),
  20800. default: true
  20801. },
  20802. ]
  20803. ))
  20804. characterMakers.push(() => makeCharacter(
  20805. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20806. {
  20807. front: {
  20808. height: math.unit(8, "feet"),
  20809. weight: math.unit(600, "lb"),
  20810. name: "Front",
  20811. image: {
  20812. source: "./media/characters/weremeep/front.svg",
  20813. extra: 967 / 862,
  20814. bottom: 0.01
  20815. }
  20816. },
  20817. },
  20818. [
  20819. {
  20820. name: "Normal",
  20821. height: math.unit(8, "feet"),
  20822. default: true
  20823. },
  20824. {
  20825. name: "Lorg",
  20826. height: math.unit(12, "feet")
  20827. },
  20828. {
  20829. name: "Oh Lawd She Comin'",
  20830. height: math.unit(20, "feet")
  20831. },
  20832. ]
  20833. ))
  20834. characterMakers.push(() => makeCharacter(
  20835. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20836. {
  20837. front: {
  20838. height: math.unit(4, "feet"),
  20839. weight: math.unit(90, "lb"),
  20840. name: "Front",
  20841. image: {
  20842. source: "./media/characters/reza/front.svg",
  20843. extra: 1183 / 1111,
  20844. bottom: 0.017
  20845. }
  20846. },
  20847. back: {
  20848. height: math.unit(4, "feet"),
  20849. weight: math.unit(90, "lb"),
  20850. name: "Back",
  20851. image: {
  20852. source: "./media/characters/reza/back.svg",
  20853. extra: 1183 / 1111,
  20854. bottom: 0.01
  20855. }
  20856. },
  20857. drake: {
  20858. height: math.unit(30, "feet"),
  20859. weight: math.unit(246960, "lb"),
  20860. name: "Drake",
  20861. image: {
  20862. source: "./media/characters/reza/drake.svg",
  20863. extra: 2350 / 2024,
  20864. bottom: 60.7 / 2403
  20865. }
  20866. },
  20867. },
  20868. [
  20869. {
  20870. name: "Normal",
  20871. height: math.unit(4, "feet"),
  20872. default: true
  20873. },
  20874. ]
  20875. ))
  20876. characterMakers.push(() => makeCharacter(
  20877. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20878. {
  20879. side: {
  20880. height: math.unit(15, "feet"),
  20881. weight: math.unit(14, "tons"),
  20882. name: "Side",
  20883. image: {
  20884. source: "./media/characters/athea/side.svg",
  20885. extra: 960 / 540,
  20886. bottom: 0.003
  20887. }
  20888. },
  20889. sitting: {
  20890. height: math.unit(6 * 2.85, "feet"),
  20891. weight: math.unit(14, "tons"),
  20892. name: "Sitting",
  20893. image: {
  20894. source: "./media/characters/athea/sitting.svg",
  20895. extra: 621 / 581,
  20896. bottom: 0.075
  20897. }
  20898. },
  20899. maw: {
  20900. height: math.unit(7.59498031496063, "feet"),
  20901. name: "Maw",
  20902. image: {
  20903. source: "./media/characters/athea/maw.svg"
  20904. }
  20905. },
  20906. },
  20907. [
  20908. {
  20909. name: "Lap Cat",
  20910. height: math.unit(2.5, "feet")
  20911. },
  20912. {
  20913. name: "Minimacro",
  20914. height: math.unit(15, "feet"),
  20915. default: true
  20916. },
  20917. {
  20918. name: "Macro",
  20919. height: math.unit(120, "feet")
  20920. },
  20921. {
  20922. name: "Macro+",
  20923. height: math.unit(640, "feet")
  20924. },
  20925. {
  20926. name: "Colossus",
  20927. height: math.unit(2.2, "miles")
  20928. },
  20929. ]
  20930. ))
  20931. characterMakers.push(() => makeCharacter(
  20932. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20933. {
  20934. front: {
  20935. height: math.unit(8 + 8 / 12, "feet"),
  20936. weight: math.unit(130, "kg"),
  20937. name: "Front",
  20938. image: {
  20939. source: "./media/characters/seroko/front.svg",
  20940. extra: 1385 / 1280,
  20941. bottom: 0.025
  20942. }
  20943. },
  20944. back: {
  20945. height: math.unit(8 + 8 / 12, "feet"),
  20946. weight: math.unit(130, "kg"),
  20947. name: "Back",
  20948. image: {
  20949. source: "./media/characters/seroko/back.svg",
  20950. extra: 1369 / 1238,
  20951. bottom: 0.018
  20952. }
  20953. },
  20954. frontDressed: {
  20955. height: math.unit(8 + 8 / 12, "feet"),
  20956. weight: math.unit(130, "kg"),
  20957. name: "Front (Dressed)",
  20958. image: {
  20959. source: "./media/characters/seroko/front-dressed.svg",
  20960. extra: 1366 / 1275,
  20961. bottom: 0.03
  20962. }
  20963. },
  20964. },
  20965. [
  20966. {
  20967. name: "Normal",
  20968. height: math.unit(8 + 8 / 12, "feet"),
  20969. default: true
  20970. },
  20971. ]
  20972. ))
  20973. characterMakers.push(() => makeCharacter(
  20974. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20975. {
  20976. front: {
  20977. height: math.unit(5.5, "feet"),
  20978. weight: math.unit(160, "lb"),
  20979. name: "Front",
  20980. image: {
  20981. source: "./media/characters/quatzi/front.svg",
  20982. extra: 2346 / 2242,
  20983. bottom: 0.015
  20984. }
  20985. },
  20986. },
  20987. [
  20988. {
  20989. name: "Normal",
  20990. height: math.unit(5.5, "feet"),
  20991. default: true
  20992. },
  20993. {
  20994. name: "Big",
  20995. height: math.unit(7.7, "feet")
  20996. },
  20997. ]
  20998. ))
  20999. characterMakers.push(() => makeCharacter(
  21000. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21001. {
  21002. front: {
  21003. height: math.unit(5 + 11 / 12, "feet"),
  21004. weight: math.unit(180, "lb"),
  21005. name: "Front",
  21006. image: {
  21007. source: "./media/characters/sen/front.svg",
  21008. extra: 1321 / 1254,
  21009. bottom: 0.015
  21010. }
  21011. },
  21012. side: {
  21013. height: math.unit(5 + 11 / 12, "feet"),
  21014. weight: math.unit(180, "lb"),
  21015. name: "Side",
  21016. image: {
  21017. source: "./media/characters/sen/side.svg",
  21018. extra: 1321 / 1254,
  21019. bottom: 0.007
  21020. }
  21021. },
  21022. back: {
  21023. height: math.unit(5 + 11 / 12, "feet"),
  21024. weight: math.unit(180, "lb"),
  21025. name: "Back",
  21026. image: {
  21027. source: "./media/characters/sen/back.svg",
  21028. extra: 1321 / 1254
  21029. }
  21030. },
  21031. },
  21032. [
  21033. {
  21034. name: "Normal",
  21035. height: math.unit(5 + 11 / 12, "feet"),
  21036. default: true
  21037. },
  21038. ]
  21039. ))
  21040. characterMakers.push(() => makeCharacter(
  21041. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21042. {
  21043. front: {
  21044. height: math.unit(166.6, "cm"),
  21045. weight: math.unit(66.6, "kg"),
  21046. name: "Front",
  21047. image: {
  21048. source: "./media/characters/fruity/front.svg",
  21049. extra: 1510 / 1386,
  21050. bottom: 0.04
  21051. }
  21052. },
  21053. back: {
  21054. height: math.unit(166.6, "cm"),
  21055. weight: math.unit(66.6, "lb"),
  21056. name: "Back",
  21057. image: {
  21058. source: "./media/characters/fruity/back.svg",
  21059. extra: 1563 / 1435,
  21060. bottom: 0.005
  21061. }
  21062. },
  21063. },
  21064. [
  21065. {
  21066. name: "Normal",
  21067. height: math.unit(166.6, "cm"),
  21068. default: true
  21069. },
  21070. {
  21071. name: "Demonic",
  21072. height: math.unit(166.6, "feet")
  21073. },
  21074. ]
  21075. ))
  21076. characterMakers.push(() => makeCharacter(
  21077. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21078. {
  21079. side: {
  21080. height: math.unit(10, "feet"),
  21081. weight: math.unit(500, "lb"),
  21082. name: "Side",
  21083. image: {
  21084. source: "./media/characters/zost/side.svg",
  21085. extra: 966 / 880,
  21086. bottom: 0.075
  21087. }
  21088. },
  21089. mawFront: {
  21090. height: math.unit(1.08, "meters"),
  21091. name: "Maw (Front)",
  21092. image: {
  21093. source: "./media/characters/zost/maw-front.svg"
  21094. }
  21095. },
  21096. mawSide: {
  21097. height: math.unit(2.66, "feet"),
  21098. name: "Maw (Side)",
  21099. image: {
  21100. source: "./media/characters/zost/maw-side.svg"
  21101. }
  21102. },
  21103. },
  21104. [
  21105. {
  21106. name: "Normal",
  21107. height: math.unit(10, "feet"),
  21108. default: true
  21109. },
  21110. ]
  21111. ))
  21112. characterMakers.push(() => makeCharacter(
  21113. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21114. {
  21115. front: {
  21116. height: math.unit(5 + 4 / 12, "feet"),
  21117. weight: math.unit(120, "lb"),
  21118. name: "Front",
  21119. image: {
  21120. source: "./media/characters/luci/front.svg",
  21121. extra: 1985 / 1884,
  21122. bottom: 0.04
  21123. }
  21124. },
  21125. back: {
  21126. height: math.unit(5 + 4 / 12, "feet"),
  21127. weight: math.unit(120, "lb"),
  21128. name: "Back",
  21129. image: {
  21130. source: "./media/characters/luci/back.svg",
  21131. extra: 1892 / 1791,
  21132. bottom: 0.002
  21133. }
  21134. },
  21135. },
  21136. [
  21137. {
  21138. name: "Normal",
  21139. height: math.unit(5 + 4 / 12, "feet"),
  21140. default: true
  21141. },
  21142. ]
  21143. ))
  21144. characterMakers.push(() => makeCharacter(
  21145. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21146. {
  21147. front: {
  21148. height: math.unit(1500, "feet"),
  21149. weight: math.unit(3.8e6, "tons"),
  21150. name: "Front",
  21151. image: {
  21152. source: "./media/characters/2th/front.svg",
  21153. extra: 3489 / 3350,
  21154. bottom: 0.1
  21155. }
  21156. },
  21157. foot: {
  21158. height: math.unit(461, "feet"),
  21159. name: "Foot",
  21160. image: {
  21161. source: "./media/characters/2th/foot.svg"
  21162. }
  21163. },
  21164. },
  21165. [
  21166. {
  21167. name: "\"Micro\"",
  21168. height: math.unit(15 + 7 / 12, "feet")
  21169. },
  21170. {
  21171. name: "Normal",
  21172. height: math.unit(1500, "feet"),
  21173. default: true
  21174. },
  21175. {
  21176. name: "Macro",
  21177. height: math.unit(5000, "feet")
  21178. },
  21179. {
  21180. name: "Megamacro",
  21181. height: math.unit(15, "miles")
  21182. },
  21183. {
  21184. name: "Gigamacro",
  21185. height: math.unit(4000, "miles")
  21186. },
  21187. {
  21188. name: "Galactic",
  21189. height: math.unit(50, "AU")
  21190. },
  21191. ]
  21192. ))
  21193. characterMakers.push(() => makeCharacter(
  21194. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21195. {
  21196. front: {
  21197. height: math.unit(5 + 6 / 12, "feet"),
  21198. weight: math.unit(220, "lb"),
  21199. name: "Front",
  21200. image: {
  21201. source: "./media/characters/amethyst/front.svg",
  21202. extra: 2078 / 2040,
  21203. bottom: 0.045
  21204. }
  21205. },
  21206. back: {
  21207. height: math.unit(5 + 6 / 12, "feet"),
  21208. weight: math.unit(220, "lb"),
  21209. name: "Back",
  21210. image: {
  21211. source: "./media/characters/amethyst/back.svg",
  21212. extra: 2021 / 1989,
  21213. bottom: 0.02
  21214. }
  21215. },
  21216. },
  21217. [
  21218. {
  21219. name: "Normal",
  21220. height: math.unit(5 + 6 / 12, "feet"),
  21221. default: true
  21222. },
  21223. ]
  21224. ))
  21225. characterMakers.push(() => makeCharacter(
  21226. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21227. {
  21228. front: {
  21229. height: math.unit(4 + 11 / 12, "feet"),
  21230. weight: math.unit(120, "lb"),
  21231. name: "Front",
  21232. image: {
  21233. source: "./media/characters/yumi-akiyama/front.svg",
  21234. extra: 1327 / 1235,
  21235. bottom: 0.02
  21236. }
  21237. },
  21238. back: {
  21239. height: math.unit(4 + 11 / 12, "feet"),
  21240. weight: math.unit(120, "lb"),
  21241. name: "Back",
  21242. image: {
  21243. source: "./media/characters/yumi-akiyama/back.svg",
  21244. extra: 1287 / 1245,
  21245. bottom: 0.002
  21246. }
  21247. },
  21248. },
  21249. [
  21250. {
  21251. name: "Galactic",
  21252. height: math.unit(50, "galaxies"),
  21253. default: true
  21254. },
  21255. {
  21256. name: "Universal",
  21257. height: math.unit(100, "universes")
  21258. },
  21259. ]
  21260. ))
  21261. characterMakers.push(() => makeCharacter(
  21262. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21263. {
  21264. front: {
  21265. height: math.unit(8, "feet"),
  21266. weight: math.unit(500, "lb"),
  21267. name: "Front",
  21268. image: {
  21269. source: "./media/characters/rifter-yrmori/front.svg",
  21270. extra: 1180 / 1125,
  21271. bottom: 0.02
  21272. }
  21273. },
  21274. back: {
  21275. height: math.unit(8, "feet"),
  21276. weight: math.unit(500, "lb"),
  21277. name: "Back",
  21278. image: {
  21279. source: "./media/characters/rifter-yrmori/back.svg",
  21280. extra: 1190 / 1145,
  21281. bottom: 0.001
  21282. }
  21283. },
  21284. wings: {
  21285. height: math.unit(7.75, "feet"),
  21286. weight: math.unit(500, "lb"),
  21287. name: "Wings",
  21288. image: {
  21289. source: "./media/characters/rifter-yrmori/wings.svg",
  21290. extra: 1357 / 1285
  21291. }
  21292. },
  21293. maw: {
  21294. height: math.unit(0.8, "feet"),
  21295. name: "Maw",
  21296. image: {
  21297. source: "./media/characters/rifter-yrmori/maw.svg"
  21298. }
  21299. },
  21300. mawfront: {
  21301. height: math.unit(1.45, "feet"),
  21302. name: "Maw (Front)",
  21303. image: {
  21304. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21305. }
  21306. },
  21307. },
  21308. [
  21309. {
  21310. name: "Normal",
  21311. height: math.unit(8, "feet"),
  21312. default: true
  21313. },
  21314. {
  21315. name: "Macro",
  21316. height: math.unit(42, "meters")
  21317. },
  21318. ]
  21319. ))
  21320. characterMakers.push(() => makeCharacter(
  21321. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21322. {
  21323. were: {
  21324. height: math.unit(25 + 6 / 12, "feet"),
  21325. weight: math.unit(10000, "lb"),
  21326. name: "Were",
  21327. image: {
  21328. source: "./media/characters/tahajin/were.svg",
  21329. extra: 801 / 770,
  21330. bottom: 0.042
  21331. }
  21332. },
  21333. aquatic: {
  21334. height: math.unit(6 + 4 / 12, "feet"),
  21335. weight: math.unit(160, "lb"),
  21336. name: "Aquatic",
  21337. image: {
  21338. source: "./media/characters/tahajin/aquatic.svg",
  21339. extra: 572 / 542,
  21340. bottom: 0.04
  21341. }
  21342. },
  21343. chow: {
  21344. height: math.unit(8 + 11 / 12, "feet"),
  21345. weight: math.unit(450, "lb"),
  21346. name: "Chow",
  21347. image: {
  21348. source: "./media/characters/tahajin/chow.svg",
  21349. extra: 660 / 640,
  21350. bottom: 0.015
  21351. }
  21352. },
  21353. demiNaga: {
  21354. height: math.unit(6 + 8 / 12, "feet"),
  21355. weight: math.unit(300, "lb"),
  21356. name: "Demi Naga",
  21357. image: {
  21358. source: "./media/characters/tahajin/demi-naga.svg",
  21359. extra: 643 / 615,
  21360. bottom: 0.1
  21361. }
  21362. },
  21363. data: {
  21364. height: math.unit(5, "inches"),
  21365. weight: math.unit(0.1, "lb"),
  21366. name: "Data",
  21367. image: {
  21368. source: "./media/characters/tahajin/data.svg"
  21369. }
  21370. },
  21371. fluu: {
  21372. height: math.unit(5 + 7 / 12, "feet"),
  21373. weight: math.unit(140, "lb"),
  21374. name: "Fluu",
  21375. image: {
  21376. source: "./media/characters/tahajin/fluu.svg",
  21377. extra: 628 / 592,
  21378. bottom: 0.02
  21379. }
  21380. },
  21381. starWarrior: {
  21382. height: math.unit(4 + 5 / 12, "feet"),
  21383. weight: math.unit(50, "lb"),
  21384. name: "Star Warrior",
  21385. image: {
  21386. source: "./media/characters/tahajin/star-warrior.svg"
  21387. }
  21388. },
  21389. },
  21390. [
  21391. {
  21392. name: "Normal",
  21393. height: math.unit(25 + 6 / 12, "feet"),
  21394. default: true
  21395. },
  21396. ]
  21397. ))
  21398. characterMakers.push(() => makeCharacter(
  21399. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21400. {
  21401. front: {
  21402. height: math.unit(8, "feet"),
  21403. weight: math.unit(350, "lb"),
  21404. name: "Front",
  21405. image: {
  21406. source: "./media/characters/gabira/front.svg",
  21407. extra: 608 / 580,
  21408. bottom: 0.03
  21409. }
  21410. },
  21411. back: {
  21412. height: math.unit(8, "feet"),
  21413. weight: math.unit(350, "lb"),
  21414. name: "Back",
  21415. image: {
  21416. source: "./media/characters/gabira/back.svg",
  21417. extra: 608 / 580,
  21418. bottom: 0.03
  21419. }
  21420. },
  21421. },
  21422. [
  21423. {
  21424. name: "Normal",
  21425. height: math.unit(8, "feet"),
  21426. default: true
  21427. },
  21428. ]
  21429. ))
  21430. characterMakers.push(() => makeCharacter(
  21431. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21432. {
  21433. front: {
  21434. height: math.unit(5 + 3 / 12, "feet"),
  21435. weight: math.unit(137, "lb"),
  21436. name: "Front",
  21437. image: {
  21438. source: "./media/characters/sasha-katraine/front.svg",
  21439. bottom: 0.045
  21440. }
  21441. },
  21442. },
  21443. [
  21444. {
  21445. name: "Micro",
  21446. height: math.unit(5, "inches")
  21447. },
  21448. {
  21449. name: "Normal",
  21450. height: math.unit(5 + 3 / 12, "feet"),
  21451. default: true
  21452. },
  21453. ]
  21454. ))
  21455. characterMakers.push(() => makeCharacter(
  21456. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21457. {
  21458. side: {
  21459. height: math.unit(4, "inches"),
  21460. weight: math.unit(200, "grams"),
  21461. name: "Side",
  21462. image: {
  21463. source: "./media/characters/der/side.svg",
  21464. extra: 719 / 400,
  21465. bottom: 30.6 / 749.9187
  21466. }
  21467. },
  21468. },
  21469. [
  21470. {
  21471. name: "Micro",
  21472. height: math.unit(4, "inches"),
  21473. default: true
  21474. },
  21475. ]
  21476. ))
  21477. characterMakers.push(() => makeCharacter(
  21478. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21479. {
  21480. side: {
  21481. height: math.unit(30, "meters"),
  21482. weight: math.unit(700, "tonnes"),
  21483. name: "Side",
  21484. image: {
  21485. source: "./media/characters/fixerdragon/side.svg",
  21486. extra: (1293.0514 - 116.03) / 1106.86,
  21487. bottom: 116.03 / 1293.0514
  21488. }
  21489. },
  21490. },
  21491. [
  21492. {
  21493. name: "Planck",
  21494. height: math.unit(1.6e-35, "meters")
  21495. },
  21496. {
  21497. name: "Micro",
  21498. height: math.unit(0.4, "meters")
  21499. },
  21500. {
  21501. name: "Normal",
  21502. height: math.unit(30, "meters"),
  21503. default: true
  21504. },
  21505. {
  21506. name: "Megamacro",
  21507. height: math.unit(1.2, "megameters")
  21508. },
  21509. {
  21510. name: "Teramacro",
  21511. height: math.unit(130, "terameters")
  21512. },
  21513. {
  21514. name: "Yottamacro",
  21515. height: math.unit(6200, "yottameters")
  21516. },
  21517. ]
  21518. ));
  21519. characterMakers.push(() => makeCharacter(
  21520. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21521. {
  21522. front: {
  21523. height: math.unit(8, "feet"),
  21524. weight: math.unit(250, "lb"),
  21525. name: "Front",
  21526. image: {
  21527. source: "./media/characters/kite/front.svg",
  21528. extra: 2796 / 2659,
  21529. bottom: 0.002
  21530. }
  21531. },
  21532. },
  21533. [
  21534. {
  21535. name: "Normal",
  21536. height: math.unit(8, "feet"),
  21537. default: true
  21538. },
  21539. {
  21540. name: "Macro",
  21541. height: math.unit(360, "feet")
  21542. },
  21543. {
  21544. name: "Megamacro",
  21545. height: math.unit(1500, "feet")
  21546. },
  21547. ]
  21548. ))
  21549. characterMakers.push(() => makeCharacter(
  21550. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21551. {
  21552. front: {
  21553. height: math.unit(5 + 10 / 12, "feet"),
  21554. weight: math.unit(150, "lb"),
  21555. name: "Front",
  21556. image: {
  21557. source: "./media/characters/poojawa-vynar/front.svg",
  21558. extra: (1506.1547 - 55) / 1356.6,
  21559. bottom: 55 / 1506.1547
  21560. }
  21561. },
  21562. frontTailless: {
  21563. height: math.unit(5 + 10 / 12, "feet"),
  21564. weight: math.unit(150, "lb"),
  21565. name: "Front (Tailless)",
  21566. image: {
  21567. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21568. extra: (1506.1547 - 55) / 1356.6,
  21569. bottom: 55 / 1506.1547
  21570. }
  21571. },
  21572. },
  21573. [
  21574. {
  21575. name: "Normal",
  21576. height: math.unit(5 + 10 / 12, "feet"),
  21577. default: true
  21578. },
  21579. ]
  21580. ))
  21581. characterMakers.push(() => makeCharacter(
  21582. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21583. {
  21584. front: {
  21585. height: math.unit(293, "meters"),
  21586. weight: math.unit(70400, "tons"),
  21587. name: "Front",
  21588. image: {
  21589. source: "./media/characters/violette/front.svg",
  21590. extra: 1227 / 1180,
  21591. bottom: 0.005
  21592. }
  21593. },
  21594. back: {
  21595. height: math.unit(293, "meters"),
  21596. weight: math.unit(70400, "tons"),
  21597. name: "Back",
  21598. image: {
  21599. source: "./media/characters/violette/back.svg",
  21600. extra: 1227 / 1180,
  21601. bottom: 0.005
  21602. }
  21603. },
  21604. },
  21605. [
  21606. {
  21607. name: "Macro",
  21608. height: math.unit(293, "meters"),
  21609. default: true
  21610. },
  21611. ]
  21612. ))
  21613. characterMakers.push(() => makeCharacter(
  21614. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21615. {
  21616. front: {
  21617. height: math.unit(1050, "feet"),
  21618. weight: math.unit(200000, "tons"),
  21619. name: "Front",
  21620. image: {
  21621. source: "./media/characters/alessandra/front.svg",
  21622. extra: 960 / 912,
  21623. bottom: 0.06
  21624. }
  21625. },
  21626. },
  21627. [
  21628. {
  21629. name: "Macro",
  21630. height: math.unit(1050, "feet")
  21631. },
  21632. {
  21633. name: "Macro+",
  21634. height: math.unit(900, "meters"),
  21635. default: true
  21636. },
  21637. ]
  21638. ))
  21639. characterMakers.push(() => makeCharacter(
  21640. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21641. {
  21642. front: {
  21643. height: math.unit(5, "feet"),
  21644. weight: math.unit(187, "lb"),
  21645. name: "Front",
  21646. image: {
  21647. source: "./media/characters/person/front.svg",
  21648. extra: 3087 / 2945,
  21649. bottom: 91 / 3181
  21650. }
  21651. },
  21652. },
  21653. [
  21654. {
  21655. name: "Micro",
  21656. height: math.unit(3, "inches")
  21657. },
  21658. {
  21659. name: "Normal",
  21660. height: math.unit(5, "feet"),
  21661. default: true
  21662. },
  21663. {
  21664. name: "Macro",
  21665. height: math.unit(90, "feet")
  21666. },
  21667. {
  21668. name: "Max Size",
  21669. height: math.unit(280, "feet")
  21670. },
  21671. ]
  21672. ))
  21673. characterMakers.push(() => makeCharacter(
  21674. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21675. {
  21676. front: {
  21677. height: math.unit(4.5, "meters"),
  21678. weight: math.unit(3200, "lb"),
  21679. name: "Front",
  21680. image: {
  21681. source: "./media/characters/ty/front.svg",
  21682. extra: 1038 / 960,
  21683. bottom: 31.156 / 1068
  21684. }
  21685. },
  21686. back: {
  21687. height: math.unit(4.5, "meters"),
  21688. weight: math.unit(3200, "lb"),
  21689. name: "Back",
  21690. image: {
  21691. source: "./media/characters/ty/back.svg",
  21692. extra: 1044 / 966,
  21693. bottom: 7.48 / 1049
  21694. }
  21695. },
  21696. },
  21697. [
  21698. {
  21699. name: "Normal",
  21700. height: math.unit(4.5, "meters"),
  21701. default: true
  21702. },
  21703. ]
  21704. ))
  21705. characterMakers.push(() => makeCharacter(
  21706. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21707. {
  21708. front: {
  21709. height: math.unit(5 + 4 / 12, "feet"),
  21710. weight: math.unit(115, "lb"),
  21711. name: "Front",
  21712. image: {
  21713. source: "./media/characters/rocky/front.svg",
  21714. extra: 1012 / 975,
  21715. bottom: 54 / 1066
  21716. }
  21717. },
  21718. },
  21719. [
  21720. {
  21721. name: "Normal",
  21722. height: math.unit(5 + 4 / 12, "feet"),
  21723. default: true
  21724. },
  21725. ]
  21726. ))
  21727. characterMakers.push(() => makeCharacter(
  21728. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21729. {
  21730. upright: {
  21731. height: math.unit(6, "meters"),
  21732. weight: math.unit(4000, "kg"),
  21733. name: "Upright",
  21734. image: {
  21735. source: "./media/characters/ruin/upright.svg",
  21736. extra: 668 / 661,
  21737. bottom: 42 / 799.8396
  21738. }
  21739. },
  21740. },
  21741. [
  21742. {
  21743. name: "Normal",
  21744. height: math.unit(6, "meters"),
  21745. default: true
  21746. },
  21747. ]
  21748. ))
  21749. characterMakers.push(() => makeCharacter(
  21750. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21751. {
  21752. front: {
  21753. height: math.unit(5, "feet"),
  21754. weight: math.unit(106, "lb"),
  21755. name: "Front",
  21756. image: {
  21757. source: "./media/characters/robin/front.svg",
  21758. extra: 862 / 799,
  21759. bottom: 42.4 / 914.8856
  21760. }
  21761. },
  21762. },
  21763. [
  21764. {
  21765. name: "Normal",
  21766. height: math.unit(5, "feet"),
  21767. default: true
  21768. },
  21769. ]
  21770. ))
  21771. characterMakers.push(() => makeCharacter(
  21772. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21773. {
  21774. side: {
  21775. height: math.unit(3, "feet"),
  21776. weight: math.unit(225, "lb"),
  21777. name: "Side",
  21778. image: {
  21779. source: "./media/characters/saian/side.svg",
  21780. extra: 566 / 356,
  21781. bottom: 79.7 / 643
  21782. }
  21783. },
  21784. maw: {
  21785. height: math.unit(2.85, "feet"),
  21786. name: "Maw",
  21787. image: {
  21788. source: "./media/characters/saian/maw.svg"
  21789. }
  21790. },
  21791. },
  21792. [
  21793. {
  21794. name: "Normal",
  21795. height: math.unit(3, "feet"),
  21796. default: true
  21797. },
  21798. ]
  21799. ))
  21800. characterMakers.push(() => makeCharacter(
  21801. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21802. {
  21803. side: {
  21804. height: math.unit(8, "feet"),
  21805. weight: math.unit(300, "lb"),
  21806. name: "Side",
  21807. image: {
  21808. source: "./media/characters/equus-silvermane/side.svg",
  21809. extra: 2176 / 2050,
  21810. bottom: 65.7 / 2245
  21811. }
  21812. },
  21813. front: {
  21814. height: math.unit(8, "feet"),
  21815. weight: math.unit(300, "lb"),
  21816. name: "Front",
  21817. image: {
  21818. source: "./media/characters/equus-silvermane/front.svg",
  21819. extra: 4633 / 4400,
  21820. bottom: 71.3 / 4706.915
  21821. }
  21822. },
  21823. sideStepping: {
  21824. height: math.unit(8, "feet"),
  21825. weight: math.unit(300, "lb"),
  21826. name: "Side (Stepping)",
  21827. image: {
  21828. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21829. extra: 1968 / 1860,
  21830. bottom: 16.4 / 1989
  21831. }
  21832. },
  21833. },
  21834. [
  21835. {
  21836. name: "Normal",
  21837. height: math.unit(8, "feet")
  21838. },
  21839. {
  21840. name: "Minimacro",
  21841. height: math.unit(75, "feet"),
  21842. default: true
  21843. },
  21844. {
  21845. name: "Macro",
  21846. height: math.unit(150, "feet")
  21847. },
  21848. {
  21849. name: "Macro+",
  21850. height: math.unit(1000, "feet")
  21851. },
  21852. {
  21853. name: "Megamacro",
  21854. height: math.unit(1, "mile")
  21855. },
  21856. ]
  21857. ))
  21858. characterMakers.push(() => makeCharacter(
  21859. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21860. {
  21861. side: {
  21862. height: math.unit(20, "feet"),
  21863. weight: math.unit(30000, "kg"),
  21864. name: "Side",
  21865. image: {
  21866. source: "./media/characters/windar/side.svg",
  21867. extra: 1491 / 1248,
  21868. bottom: 82.56 / 1568
  21869. }
  21870. },
  21871. },
  21872. [
  21873. {
  21874. name: "Normal",
  21875. height: math.unit(20, "feet"),
  21876. default: true
  21877. },
  21878. ]
  21879. ))
  21880. characterMakers.push(() => makeCharacter(
  21881. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21882. {
  21883. side: {
  21884. height: math.unit(15.66, "feet"),
  21885. weight: math.unit(150, "lb"),
  21886. name: "Side",
  21887. image: {
  21888. source: "./media/characters/melody/side.svg",
  21889. extra: 1097 / 944,
  21890. bottom: 11.8 / 1109
  21891. }
  21892. },
  21893. sideOutfit: {
  21894. height: math.unit(15.66, "feet"),
  21895. weight: math.unit(150, "lb"),
  21896. name: "Side (Outfit)",
  21897. image: {
  21898. source: "./media/characters/melody/side-outfit.svg",
  21899. extra: 1097 / 944,
  21900. bottom: 11.8 / 1109
  21901. }
  21902. },
  21903. },
  21904. [
  21905. {
  21906. name: "Normal",
  21907. height: math.unit(15.66, "feet"),
  21908. default: true
  21909. },
  21910. ]
  21911. ))
  21912. characterMakers.push(() => makeCharacter(
  21913. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21914. {
  21915. front: {
  21916. height: math.unit(8, "feet"),
  21917. weight: math.unit(325, "lb"),
  21918. name: "Front",
  21919. image: {
  21920. source: "./media/characters/windera/front.svg",
  21921. extra: 3180 / 2845,
  21922. bottom: 178 / 3365
  21923. }
  21924. },
  21925. },
  21926. [
  21927. {
  21928. name: "Normal",
  21929. height: math.unit(8, "feet"),
  21930. default: true
  21931. },
  21932. ]
  21933. ))
  21934. characterMakers.push(() => makeCharacter(
  21935. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21936. {
  21937. front: {
  21938. height: math.unit(28.75, "feet"),
  21939. weight: math.unit(2000, "kg"),
  21940. name: "Front",
  21941. image: {
  21942. source: "./media/characters/sonear/front.svg",
  21943. extra: 1041.1 / 964.9,
  21944. bottom: 53.7 / 1096.6
  21945. }
  21946. },
  21947. },
  21948. [
  21949. {
  21950. name: "Normal",
  21951. height: math.unit(28.75, "feet"),
  21952. default: true
  21953. },
  21954. ]
  21955. ))
  21956. characterMakers.push(() => makeCharacter(
  21957. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21958. {
  21959. side: {
  21960. height: math.unit(25.5, "feet"),
  21961. weight: math.unit(23000, "kg"),
  21962. name: "Side",
  21963. image: {
  21964. source: "./media/characters/kanara/side.svg"
  21965. }
  21966. },
  21967. },
  21968. [
  21969. {
  21970. name: "Normal",
  21971. height: math.unit(25.5, "feet"),
  21972. default: true
  21973. },
  21974. ]
  21975. ))
  21976. characterMakers.push(() => makeCharacter(
  21977. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21978. {
  21979. side: {
  21980. height: math.unit(10, "feet"),
  21981. weight: math.unit(1000, "kg"),
  21982. name: "Side",
  21983. image: {
  21984. source: "./media/characters/ereus/side.svg",
  21985. extra: 1157 / 959,
  21986. bottom: 153 / 1312.5
  21987. }
  21988. },
  21989. },
  21990. [
  21991. {
  21992. name: "Normal",
  21993. height: math.unit(10, "feet"),
  21994. default: true
  21995. },
  21996. ]
  21997. ))
  21998. characterMakers.push(() => makeCharacter(
  21999. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22000. {
  22001. side: {
  22002. height: math.unit(4.5, "feet"),
  22003. weight: math.unit(500, "lb"),
  22004. name: "Side",
  22005. image: {
  22006. source: "./media/characters/e-ter/side.svg",
  22007. extra: 1550 / 1248,
  22008. bottom: 146 / 1694
  22009. }
  22010. },
  22011. },
  22012. [
  22013. {
  22014. name: "Normal",
  22015. height: math.unit(4.5, "feet"),
  22016. default: true
  22017. },
  22018. ]
  22019. ))
  22020. characterMakers.push(() => makeCharacter(
  22021. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22022. {
  22023. side: {
  22024. height: math.unit(9.7, "feet"),
  22025. weight: math.unit(4000, "kg"),
  22026. name: "Side",
  22027. image: {
  22028. source: "./media/characters/yamie/side.svg"
  22029. }
  22030. },
  22031. },
  22032. [
  22033. {
  22034. name: "Normal",
  22035. height: math.unit(9.7, "feet"),
  22036. default: true
  22037. },
  22038. ]
  22039. ))
  22040. characterMakers.push(() => makeCharacter(
  22041. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22042. {
  22043. front: {
  22044. height: math.unit(50, "feet"),
  22045. weight: math.unit(50000, "kg"),
  22046. name: "Front",
  22047. image: {
  22048. source: "./media/characters/anders/front.svg",
  22049. extra: 570 / 539,
  22050. bottom: 14.7 / 586.7
  22051. }
  22052. },
  22053. },
  22054. [
  22055. {
  22056. name: "Large",
  22057. height: math.unit(50, "feet")
  22058. },
  22059. {
  22060. name: "Macro",
  22061. height: math.unit(2000, "feet"),
  22062. default: true
  22063. },
  22064. {
  22065. name: "Megamacro",
  22066. height: math.unit(12, "miles")
  22067. },
  22068. ]
  22069. ))
  22070. characterMakers.push(() => makeCharacter(
  22071. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22072. {
  22073. front: {
  22074. height: math.unit(7 + 2 / 12, "feet"),
  22075. weight: math.unit(300, "lb"),
  22076. name: "Front",
  22077. image: {
  22078. source: "./media/characters/reban/front.svg",
  22079. extra: 516 / 487,
  22080. bottom: 42.82 / 558.356
  22081. }
  22082. },
  22083. dick: {
  22084. height: math.unit(7 / 5, "feet"),
  22085. name: "Dick",
  22086. image: {
  22087. source: "./media/characters/reban/dick.svg"
  22088. }
  22089. },
  22090. },
  22091. [
  22092. {
  22093. name: "Natural Height",
  22094. height: math.unit(7 + 2 / 12, "feet")
  22095. },
  22096. {
  22097. name: "Macro",
  22098. height: math.unit(500, "feet"),
  22099. default: true
  22100. },
  22101. {
  22102. name: "Canon Height",
  22103. height: math.unit(50, "AU")
  22104. },
  22105. ]
  22106. ))
  22107. characterMakers.push(() => makeCharacter(
  22108. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22109. {
  22110. front: {
  22111. height: math.unit(6, "feet"),
  22112. weight: math.unit(150, "lb"),
  22113. name: "Front",
  22114. image: {
  22115. source: "./media/characters/terrance-keayes/front.svg",
  22116. extra: 1.005,
  22117. bottom: 151 / 1615
  22118. }
  22119. },
  22120. side: {
  22121. height: math.unit(6, "feet"),
  22122. weight: math.unit(150, "lb"),
  22123. name: "Side",
  22124. image: {
  22125. source: "./media/characters/terrance-keayes/side.svg",
  22126. extra: 1.005,
  22127. bottom: 129.4 / 1544
  22128. }
  22129. },
  22130. back: {
  22131. height: math.unit(6, "feet"),
  22132. weight: math.unit(150, "lb"),
  22133. name: "Back",
  22134. image: {
  22135. source: "./media/characters/terrance-keayes/back.svg",
  22136. extra: 1.005,
  22137. bottom: 58.4 / 1557.3
  22138. }
  22139. },
  22140. dick: {
  22141. height: math.unit(6 * 0.208, "feet"),
  22142. name: "Dick",
  22143. image: {
  22144. source: "./media/characters/terrance-keayes/dick.svg"
  22145. }
  22146. },
  22147. },
  22148. [
  22149. {
  22150. name: "Canon Height",
  22151. height: math.unit(35, "miles"),
  22152. default: true
  22153. },
  22154. ]
  22155. ))
  22156. characterMakers.push(() => makeCharacter(
  22157. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22158. {
  22159. front: {
  22160. height: math.unit(6, "feet"),
  22161. weight: math.unit(150, "lb"),
  22162. name: "Front",
  22163. image: {
  22164. source: "./media/characters/ofelia/front.svg",
  22165. extra: 546 / 541,
  22166. bottom: 39 / 583
  22167. }
  22168. },
  22169. back: {
  22170. height: math.unit(6, "feet"),
  22171. weight: math.unit(150, "lb"),
  22172. name: "Back",
  22173. image: {
  22174. source: "./media/characters/ofelia/back.svg",
  22175. extra: 564 / 559.5,
  22176. bottom: 8.69 / 573.02
  22177. }
  22178. },
  22179. maw: {
  22180. height: math.unit(1, "feet"),
  22181. name: "Maw",
  22182. image: {
  22183. source: "./media/characters/ofelia/maw.svg"
  22184. }
  22185. },
  22186. foot: {
  22187. height: math.unit(1.949, "feet"),
  22188. name: "Foot",
  22189. image: {
  22190. source: "./media/characters/ofelia/foot.svg"
  22191. }
  22192. },
  22193. },
  22194. [
  22195. {
  22196. name: "Canon Height",
  22197. height: math.unit(2000, "miles"),
  22198. default: true
  22199. },
  22200. ]
  22201. ))
  22202. characterMakers.push(() => makeCharacter(
  22203. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22204. {
  22205. front: {
  22206. height: math.unit(6, "feet"),
  22207. weight: math.unit(150, "lb"),
  22208. name: "Front",
  22209. image: {
  22210. source: "./media/characters/samuel/front.svg",
  22211. extra: 265 / 258,
  22212. bottom: 2 / 266.1566
  22213. }
  22214. },
  22215. },
  22216. [
  22217. {
  22218. name: "Macro",
  22219. height: math.unit(100, "feet"),
  22220. default: true
  22221. },
  22222. {
  22223. name: "Full Size",
  22224. height: math.unit(1000, "miles")
  22225. },
  22226. ]
  22227. ))
  22228. characterMakers.push(() => makeCharacter(
  22229. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22230. {
  22231. front: {
  22232. height: math.unit(6, "feet"),
  22233. weight: math.unit(300, "lb"),
  22234. name: "Front",
  22235. image: {
  22236. source: "./media/characters/beishir-kiel/front.svg",
  22237. extra: 569 / 547,
  22238. bottom: 41.9 / 609
  22239. }
  22240. },
  22241. maw: {
  22242. height: math.unit(6 * 0.202, "feet"),
  22243. name: "Maw",
  22244. image: {
  22245. source: "./media/characters/beishir-kiel/maw.svg"
  22246. }
  22247. },
  22248. },
  22249. [
  22250. {
  22251. name: "Macro",
  22252. height: math.unit(300, "feet"),
  22253. default: true
  22254. },
  22255. ]
  22256. ))
  22257. characterMakers.push(() => makeCharacter(
  22258. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22259. {
  22260. front: {
  22261. height: math.unit(5 + 7/12, "feet"),
  22262. weight: math.unit(120, "lb"),
  22263. name: "Front",
  22264. image: {
  22265. source: "./media/characters/logan-grey/front.svg",
  22266. extra: 1836/1738,
  22267. bottom: 108/1944
  22268. }
  22269. },
  22270. back: {
  22271. height: math.unit(5 + 7/12, "feet"),
  22272. weight: math.unit(120, "lb"),
  22273. name: "Back",
  22274. image: {
  22275. source: "./media/characters/logan-grey/back.svg",
  22276. extra: 1880/1794,
  22277. bottom: 24/1904
  22278. }
  22279. },
  22280. frontSfw: {
  22281. height: math.unit(5 + 7/12, "feet"),
  22282. weight: math.unit(120, "lb"),
  22283. name: "Front (SFW)",
  22284. image: {
  22285. source: "./media/characters/logan-grey/front-sfw.svg",
  22286. extra: 1836/1738,
  22287. bottom: 108/1944
  22288. }
  22289. },
  22290. backSfw: {
  22291. height: math.unit(5 + 7/12, "feet"),
  22292. weight: math.unit(120, "lb"),
  22293. name: "Back (SFW)",
  22294. image: {
  22295. source: "./media/characters/logan-grey/back-sfw.svg",
  22296. extra: 1880/1794,
  22297. bottom: 24/1904
  22298. }
  22299. },
  22300. hands: {
  22301. height: math.unit(0.84, "feet"),
  22302. name: "Hands",
  22303. image: {
  22304. source: "./media/characters/logan-grey/hands.svg"
  22305. }
  22306. },
  22307. paws: {
  22308. height: math.unit(0.72, "feet"),
  22309. name: "Paws",
  22310. image: {
  22311. source: "./media/characters/logan-grey/paws.svg"
  22312. }
  22313. },
  22314. cock: {
  22315. height: math.unit(1.45, "feet"),
  22316. name: "Cock",
  22317. image: {
  22318. source: "./media/characters/logan-grey/cock.svg"
  22319. }
  22320. },
  22321. cockAlt: {
  22322. height: math.unit(1.437, "feet"),
  22323. name: "Cock (alt)",
  22324. image: {
  22325. source: "./media/characters/logan-grey/cock-alt.svg"
  22326. }
  22327. },
  22328. },
  22329. [
  22330. {
  22331. name: "Normal",
  22332. height: math.unit(5 + 8 / 12, "feet")
  22333. },
  22334. {
  22335. name: "The 500 Foot Femboy",
  22336. height: math.unit(500, "feet"),
  22337. default: true
  22338. },
  22339. {
  22340. name: "Megmacro",
  22341. height: math.unit(20, "miles")
  22342. },
  22343. ]
  22344. ))
  22345. characterMakers.push(() => makeCharacter(
  22346. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22347. {
  22348. front: {
  22349. height: math.unit(8 + 2 / 12, "feet"),
  22350. weight: math.unit(275, "lb"),
  22351. name: "Front",
  22352. image: {
  22353. source: "./media/characters/draganta/front.svg",
  22354. extra: 1177 / 1135,
  22355. bottom: 33.46 / 1212.1
  22356. }
  22357. },
  22358. },
  22359. [
  22360. {
  22361. name: "Normal",
  22362. height: math.unit(8 + 6 / 12, "feet"),
  22363. default: true
  22364. },
  22365. {
  22366. name: "Macro",
  22367. height: math.unit(150, "feet")
  22368. },
  22369. {
  22370. name: "Megamacro",
  22371. height: math.unit(1000, "miles")
  22372. },
  22373. ]
  22374. ))
  22375. characterMakers.push(() => makeCharacter(
  22376. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22377. {
  22378. front: {
  22379. height: math.unit(1.72, "m"),
  22380. weight: math.unit(80, "lb"),
  22381. name: "Front",
  22382. image: {
  22383. source: "./media/characters/voski/front.svg",
  22384. extra: 2076.22 / 2022.4,
  22385. bottom: 102.7 / 2177.3866
  22386. }
  22387. },
  22388. frontNsfw: {
  22389. height: math.unit(1.72, "m"),
  22390. weight: math.unit(80, "lb"),
  22391. name: "Front (NSFW)",
  22392. image: {
  22393. source: "./media/characters/voski/front-nsfw.svg",
  22394. extra: 2076.22 / 2022.4,
  22395. bottom: 102.7 / 2177.3866
  22396. }
  22397. },
  22398. back: {
  22399. height: math.unit(1.72, "m"),
  22400. weight: math.unit(80, "lb"),
  22401. name: "Back",
  22402. image: {
  22403. source: "./media/characters/voski/back.svg",
  22404. extra: 2104 / 2051,
  22405. bottom: 10.45 / 2113.63
  22406. }
  22407. },
  22408. },
  22409. [
  22410. {
  22411. name: "Normal",
  22412. height: math.unit(1.72, "m")
  22413. },
  22414. {
  22415. name: "Macro",
  22416. height: math.unit(55, "m"),
  22417. default: true
  22418. },
  22419. {
  22420. name: "Macro+",
  22421. height: math.unit(300, "m")
  22422. },
  22423. {
  22424. name: "Macro++",
  22425. height: math.unit(700, "m")
  22426. },
  22427. {
  22428. name: "Macro+++",
  22429. height: math.unit(4500, "m")
  22430. },
  22431. {
  22432. name: "Macro++++",
  22433. height: math.unit(45, "km")
  22434. },
  22435. {
  22436. name: "Macro+++++",
  22437. height: math.unit(1220, "km")
  22438. },
  22439. ]
  22440. ))
  22441. characterMakers.push(() => makeCharacter(
  22442. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22443. {
  22444. front: {
  22445. height: math.unit(2.3, "m"),
  22446. weight: math.unit(304, "kg"),
  22447. name: "Front",
  22448. image: {
  22449. source: "./media/characters/icowom-lee/front.svg",
  22450. extra: 985 / 955,
  22451. bottom: 25.4 / 1012
  22452. }
  22453. },
  22454. fronttentacles: {
  22455. height: math.unit(2.3, "m"),
  22456. weight: math.unit(304, "kg"),
  22457. name: "Front-tentacles",
  22458. image: {
  22459. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22460. extra: 985 / 955,
  22461. bottom: 25.4 / 1012
  22462. }
  22463. },
  22464. back: {
  22465. height: math.unit(2.3, "m"),
  22466. weight: math.unit(304, "kg"),
  22467. name: "Back",
  22468. image: {
  22469. source: "./media/characters/icowom-lee/back.svg",
  22470. extra: 975 / 954,
  22471. bottom: 9.5 / 985
  22472. }
  22473. },
  22474. backtentacles: {
  22475. height: math.unit(2.3, "m"),
  22476. weight: math.unit(304, "kg"),
  22477. name: "Back-tentacles",
  22478. image: {
  22479. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22480. extra: 975 / 954,
  22481. bottom: 9.5 / 985
  22482. }
  22483. },
  22484. frontDressed: {
  22485. height: math.unit(2.3, "m"),
  22486. weight: math.unit(304, "kg"),
  22487. name: "Front (Dressed)",
  22488. image: {
  22489. source: "./media/characters/icowom-lee/front-dressed.svg",
  22490. extra: 3076 / 2933,
  22491. bottom: 51.4 / 3125.1889
  22492. }
  22493. },
  22494. rump: {
  22495. height: math.unit(0.776, "meters"),
  22496. name: "Rump",
  22497. image: {
  22498. source: "./media/characters/icowom-lee/rump.svg"
  22499. }
  22500. },
  22501. genitals: {
  22502. height: math.unit(0.78, "meters"),
  22503. name: "Genitals",
  22504. image: {
  22505. source: "./media/characters/icowom-lee/genitals.svg"
  22506. }
  22507. },
  22508. },
  22509. [
  22510. {
  22511. name: "Normal",
  22512. height: math.unit(2.3, "meters"),
  22513. default: true
  22514. },
  22515. {
  22516. name: "Macro",
  22517. height: math.unit(94, "meters"),
  22518. default: true
  22519. },
  22520. ]
  22521. ))
  22522. characterMakers.push(() => makeCharacter(
  22523. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22524. {
  22525. front: {
  22526. height: math.unit(22, "meters"),
  22527. weight: math.unit(21000, "kg"),
  22528. name: "Front",
  22529. image: {
  22530. source: "./media/characters/shock-diamond/front.svg",
  22531. extra: 2204 / 2053,
  22532. bottom: 65 / 2239.47
  22533. }
  22534. },
  22535. frontNude: {
  22536. height: math.unit(22, "meters"),
  22537. weight: math.unit(21000, "kg"),
  22538. name: "Front (Nude)",
  22539. image: {
  22540. source: "./media/characters/shock-diamond/front-nude.svg",
  22541. extra: 2514 / 2285,
  22542. bottom: 13 / 2527.56
  22543. }
  22544. },
  22545. },
  22546. [
  22547. {
  22548. name: "Normal",
  22549. height: math.unit(3, "meters")
  22550. },
  22551. {
  22552. name: "Macro",
  22553. height: math.unit(22, "meters"),
  22554. default: true
  22555. },
  22556. ]
  22557. ))
  22558. characterMakers.push(() => makeCharacter(
  22559. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22560. {
  22561. front: {
  22562. height: math.unit(5 + 4 / 12, "feet"),
  22563. weight: math.unit(120, "lb"),
  22564. name: "Front",
  22565. image: {
  22566. source: "./media/characters/rory/front.svg",
  22567. extra: 1318/1241,
  22568. bottom: 42/1360
  22569. }
  22570. },
  22571. back: {
  22572. height: math.unit(5 + 4 / 12, "feet"),
  22573. weight: math.unit(120, "lb"),
  22574. name: "Back",
  22575. image: {
  22576. source: "./media/characters/rory/back.svg",
  22577. extra: 1318/1241,
  22578. bottom: 42/1360
  22579. }
  22580. },
  22581. butt: {
  22582. height: math.unit(1.74, "feet"),
  22583. name: "Butt",
  22584. image: {
  22585. source: "./media/characters/rory/butt.svg"
  22586. }
  22587. },
  22588. dick: {
  22589. height: math.unit(1.02, "feet"),
  22590. name: "Dick",
  22591. image: {
  22592. source: "./media/characters/rory/dick.svg"
  22593. }
  22594. },
  22595. paws: {
  22596. height: math.unit(1, "feet"),
  22597. name: "Paws",
  22598. image: {
  22599. source: "./media/characters/rory/paws.svg"
  22600. }
  22601. },
  22602. frontAlt: {
  22603. height: math.unit(5 + 4 / 12, "feet"),
  22604. weight: math.unit(120, "lb"),
  22605. name: "Front (Alt)",
  22606. image: {
  22607. source: "./media/characters/rory/front-alt.svg",
  22608. extra: 589 / 556,
  22609. bottom: 45.7 / 635.76
  22610. }
  22611. },
  22612. frontAltNude: {
  22613. height: math.unit(5 + 4 / 12, "feet"),
  22614. weight: math.unit(120, "lb"),
  22615. name: "Front (Alt, Nude)",
  22616. image: {
  22617. source: "./media/characters/rory/front-alt-nude.svg",
  22618. extra: 589 / 556,
  22619. bottom: 45.7 / 635.76
  22620. }
  22621. },
  22622. side: {
  22623. height: math.unit(5 + 4 / 12, "feet"),
  22624. weight: math.unit(120, "lb"),
  22625. name: "Side",
  22626. image: {
  22627. source: "./media/characters/rory/side.svg",
  22628. extra: 597 / 564,
  22629. bottom: 55 / 653
  22630. }
  22631. },
  22632. backAlt: {
  22633. height: math.unit(5 + 4 / 12, "feet"),
  22634. weight: math.unit(120, "lb"),
  22635. name: "Back (Alt)",
  22636. image: {
  22637. source: "./media/characters/rory/back-alt.svg",
  22638. extra: 620 / 585,
  22639. bottom: 8.86 / 630.43
  22640. }
  22641. },
  22642. dickAlt: {
  22643. height: math.unit(0.86, "feet"),
  22644. name: "Dick (Alt)",
  22645. image: {
  22646. source: "./media/characters/rory/dick-alt.svg"
  22647. }
  22648. },
  22649. },
  22650. [
  22651. {
  22652. name: "Normal",
  22653. height: math.unit(5 + 4 / 12, "feet"),
  22654. default: true
  22655. },
  22656. {
  22657. name: "Macro",
  22658. height: math.unit(100, "feet")
  22659. },
  22660. {
  22661. name: "Macro+",
  22662. height: math.unit(140, "feet")
  22663. },
  22664. {
  22665. name: "Macro++",
  22666. height: math.unit(300, "feet")
  22667. },
  22668. ]
  22669. ))
  22670. characterMakers.push(() => makeCharacter(
  22671. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22672. {
  22673. front: {
  22674. height: math.unit(5 + 9 / 12, "feet"),
  22675. weight: math.unit(190, "lb"),
  22676. name: "Front",
  22677. image: {
  22678. source: "./media/characters/sprisk/front.svg",
  22679. extra: 1225 / 1180,
  22680. bottom: 42.7 / 1266.4
  22681. }
  22682. },
  22683. frontNsfw: {
  22684. height: math.unit(5 + 9 / 12, "feet"),
  22685. weight: math.unit(190, "lb"),
  22686. name: "Front (NSFW)",
  22687. image: {
  22688. source: "./media/characters/sprisk/front-nsfw.svg",
  22689. extra: 1225 / 1180,
  22690. bottom: 42.7 / 1266.4
  22691. }
  22692. },
  22693. back: {
  22694. height: math.unit(5 + 9 / 12, "feet"),
  22695. weight: math.unit(190, "lb"),
  22696. name: "Back",
  22697. image: {
  22698. source: "./media/characters/sprisk/back.svg",
  22699. extra: 1247 / 1200,
  22700. bottom: 5.6 / 1253.04
  22701. }
  22702. },
  22703. },
  22704. [
  22705. {
  22706. name: "Tiny",
  22707. height: math.unit(2, "inches")
  22708. },
  22709. {
  22710. name: "Normal",
  22711. height: math.unit(5 + 9 / 12, "feet"),
  22712. default: true
  22713. },
  22714. {
  22715. name: "Mini Macro",
  22716. height: math.unit(18, "feet")
  22717. },
  22718. {
  22719. name: "Macro",
  22720. height: math.unit(100, "feet")
  22721. },
  22722. {
  22723. name: "MACRO",
  22724. height: math.unit(50, "miles")
  22725. },
  22726. {
  22727. name: "M A C R O",
  22728. height: math.unit(300, "miles")
  22729. },
  22730. ]
  22731. ))
  22732. characterMakers.push(() => makeCharacter(
  22733. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22734. {
  22735. side: {
  22736. height: math.unit(15.6, "meters"),
  22737. weight: math.unit(700000, "kg"),
  22738. name: "Side",
  22739. image: {
  22740. source: "./media/characters/bunsen/side.svg",
  22741. extra: 1644 / 358
  22742. }
  22743. },
  22744. foot: {
  22745. height: math.unit(1.611 * 1644 / 358, "meter"),
  22746. name: "Foot",
  22747. image: {
  22748. source: "./media/characters/bunsen/foot.svg"
  22749. }
  22750. },
  22751. },
  22752. [
  22753. {
  22754. name: "Small",
  22755. height: math.unit(10, "feet")
  22756. },
  22757. {
  22758. name: "Normal",
  22759. height: math.unit(15.6, "meters"),
  22760. default: true
  22761. },
  22762. ]
  22763. ))
  22764. characterMakers.push(() => makeCharacter(
  22765. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22766. {
  22767. front: {
  22768. height: math.unit(4 + 11 / 12, "feet"),
  22769. weight: math.unit(140, "lb"),
  22770. name: "Front",
  22771. image: {
  22772. source: "./media/characters/sesh/front.svg",
  22773. extra: 3420 / 3231,
  22774. bottom: 72 / 3949.5
  22775. }
  22776. },
  22777. },
  22778. [
  22779. {
  22780. name: "Normal",
  22781. height: math.unit(4 + 11 / 12, "feet")
  22782. },
  22783. {
  22784. name: "Grown",
  22785. height: math.unit(15, "feet"),
  22786. default: true
  22787. },
  22788. {
  22789. name: "Macro",
  22790. height: math.unit(1500, "feet")
  22791. },
  22792. {
  22793. name: "Megamacro",
  22794. height: math.unit(30, "miles")
  22795. },
  22796. {
  22797. name: "Continental",
  22798. height: math.unit(3000, "miles")
  22799. },
  22800. {
  22801. name: "Gravity Mass",
  22802. height: math.unit(300000, "miles")
  22803. },
  22804. {
  22805. name: "Planet Buster",
  22806. height: math.unit(30000000, "miles")
  22807. },
  22808. {
  22809. name: "Big",
  22810. height: math.unit(3000000000, "miles")
  22811. },
  22812. ]
  22813. ))
  22814. characterMakers.push(() => makeCharacter(
  22815. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22816. {
  22817. front: {
  22818. height: math.unit(9, "feet"),
  22819. weight: math.unit(350, "lb"),
  22820. name: "Front",
  22821. image: {
  22822. source: "./media/characters/pepper/front.svg",
  22823. extra: 1448 / 1312,
  22824. bottom: 9.4 / 1457.88
  22825. }
  22826. },
  22827. back: {
  22828. height: math.unit(9, "feet"),
  22829. weight: math.unit(350, "lb"),
  22830. name: "Back",
  22831. image: {
  22832. source: "./media/characters/pepper/back.svg",
  22833. extra: 1423 / 1300,
  22834. bottom: 4.6 / 1429
  22835. }
  22836. },
  22837. maw: {
  22838. height: math.unit(0.932, "feet"),
  22839. name: "Maw",
  22840. image: {
  22841. source: "./media/characters/pepper/maw.svg"
  22842. }
  22843. },
  22844. },
  22845. [
  22846. {
  22847. name: "Normal",
  22848. height: math.unit(9, "feet"),
  22849. default: true
  22850. },
  22851. ]
  22852. ))
  22853. characterMakers.push(() => makeCharacter(
  22854. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22855. {
  22856. front: {
  22857. height: math.unit(6, "feet"),
  22858. weight: math.unit(150, "lb"),
  22859. name: "Front",
  22860. image: {
  22861. source: "./media/characters/maelstrom/front.svg",
  22862. extra: 2100 / 1883,
  22863. bottom: 94 / 2196.7
  22864. }
  22865. },
  22866. },
  22867. [
  22868. {
  22869. name: "Less Kaiju",
  22870. height: math.unit(200, "feet")
  22871. },
  22872. {
  22873. name: "Kaiju",
  22874. height: math.unit(400, "feet"),
  22875. default: true
  22876. },
  22877. {
  22878. name: "Kaiju-er",
  22879. height: math.unit(600, "feet")
  22880. },
  22881. ]
  22882. ))
  22883. characterMakers.push(() => makeCharacter(
  22884. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22885. {
  22886. front: {
  22887. height: math.unit(6 + 5 / 12, "feet"),
  22888. weight: math.unit(180, "lb"),
  22889. name: "Front",
  22890. image: {
  22891. source: "./media/characters/lexir/front.svg",
  22892. extra: 180 / 172,
  22893. bottom: 12 / 192
  22894. }
  22895. },
  22896. back: {
  22897. height: math.unit(6 + 5 / 12, "feet"),
  22898. weight: math.unit(180, "lb"),
  22899. name: "Back",
  22900. image: {
  22901. source: "./media/characters/lexir/back.svg",
  22902. extra: 183.84 / 175.5,
  22903. bottom: 3.1 / 187
  22904. }
  22905. },
  22906. },
  22907. [
  22908. {
  22909. name: "Very Smal",
  22910. height: math.unit(1, "nm")
  22911. },
  22912. {
  22913. name: "Normal",
  22914. height: math.unit(6 + 5 / 12, "feet"),
  22915. default: true
  22916. },
  22917. {
  22918. name: "Macro",
  22919. height: math.unit(1, "mile")
  22920. },
  22921. {
  22922. name: "Megamacro",
  22923. height: math.unit(50, "miles")
  22924. },
  22925. ]
  22926. ))
  22927. characterMakers.push(() => makeCharacter(
  22928. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22929. {
  22930. front: {
  22931. height: math.unit(1.5, "meters"),
  22932. weight: math.unit(100, "lb"),
  22933. name: "Front",
  22934. image: {
  22935. source: "./media/characters/maksio/front.svg",
  22936. extra: 1549 / 1531,
  22937. bottom: 123.7 / 1674.5429
  22938. }
  22939. },
  22940. back: {
  22941. height: math.unit(1.5, "meters"),
  22942. weight: math.unit(100, "lb"),
  22943. name: "Back",
  22944. image: {
  22945. source: "./media/characters/maksio/back.svg",
  22946. extra: 1541 / 1509,
  22947. bottom: 97 / 1639
  22948. }
  22949. },
  22950. hand: {
  22951. height: math.unit(0.621, "feet"),
  22952. name: "Hand",
  22953. image: {
  22954. source: "./media/characters/maksio/hand.svg"
  22955. }
  22956. },
  22957. foot: {
  22958. height: math.unit(1.611, "feet"),
  22959. name: "Foot",
  22960. image: {
  22961. source: "./media/characters/maksio/foot.svg"
  22962. }
  22963. },
  22964. },
  22965. [
  22966. {
  22967. name: "Shrunken",
  22968. height: math.unit(10, "cm")
  22969. },
  22970. {
  22971. name: "Normal",
  22972. height: math.unit(150, "cm"),
  22973. default: true
  22974. },
  22975. ]
  22976. ))
  22977. characterMakers.push(() => makeCharacter(
  22978. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22979. {
  22980. front: {
  22981. height: math.unit(100, "feet"),
  22982. name: "Front",
  22983. image: {
  22984. source: "./media/characters/erza-bear/front.svg",
  22985. extra: 2449 / 2390,
  22986. bottom: 46 / 2494
  22987. }
  22988. },
  22989. back: {
  22990. height: math.unit(100, "feet"),
  22991. name: "Back",
  22992. image: {
  22993. source: "./media/characters/erza-bear/back.svg",
  22994. extra: 2489 / 2430,
  22995. bottom: 85.4 / 2480
  22996. }
  22997. },
  22998. tail: {
  22999. height: math.unit(42, "feet"),
  23000. name: "Tail",
  23001. image: {
  23002. source: "./media/characters/erza-bear/tail.svg"
  23003. }
  23004. },
  23005. tongue: {
  23006. height: math.unit(8, "feet"),
  23007. name: "Tongue",
  23008. image: {
  23009. source: "./media/characters/erza-bear/tongue.svg"
  23010. }
  23011. },
  23012. dick: {
  23013. height: math.unit(10.5, "feet"),
  23014. name: "Dick",
  23015. image: {
  23016. source: "./media/characters/erza-bear/dick.svg"
  23017. }
  23018. },
  23019. dickVertical: {
  23020. height: math.unit(16.9, "feet"),
  23021. name: "Dick (Vertical)",
  23022. image: {
  23023. source: "./media/characters/erza-bear/dick-vertical.svg"
  23024. }
  23025. },
  23026. },
  23027. [
  23028. {
  23029. name: "Macro",
  23030. height: math.unit(100, "feet"),
  23031. default: true
  23032. },
  23033. ]
  23034. ))
  23035. characterMakers.push(() => makeCharacter(
  23036. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23037. {
  23038. front: {
  23039. height: math.unit(172, "cm"),
  23040. weight: math.unit(73, "kg"),
  23041. name: "Front",
  23042. image: {
  23043. source: "./media/characters/violet-flor/front.svg",
  23044. extra: 1530 / 1442,
  23045. bottom: 61.9 / 1588.8
  23046. }
  23047. },
  23048. back: {
  23049. height: math.unit(180, "cm"),
  23050. weight: math.unit(73, "kg"),
  23051. name: "Back",
  23052. image: {
  23053. source: "./media/characters/violet-flor/back.svg",
  23054. extra: 1692 / 1630,
  23055. bottom: 20 / 1712
  23056. }
  23057. },
  23058. },
  23059. [
  23060. {
  23061. name: "Normal",
  23062. height: math.unit(172, "cm"),
  23063. default: true
  23064. },
  23065. ]
  23066. ))
  23067. characterMakers.push(() => makeCharacter(
  23068. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23069. {
  23070. front: {
  23071. height: math.unit(6, "feet"),
  23072. weight: math.unit(220, "lb"),
  23073. name: "Front",
  23074. image: {
  23075. source: "./media/characters/lynn-rhea/front.svg",
  23076. extra: 310 / 273
  23077. }
  23078. },
  23079. back: {
  23080. height: math.unit(6, "feet"),
  23081. weight: math.unit(220, "lb"),
  23082. name: "Back",
  23083. image: {
  23084. source: "./media/characters/lynn-rhea/back.svg",
  23085. extra: 310 / 273
  23086. }
  23087. },
  23088. dicks: {
  23089. height: math.unit(0.9, "feet"),
  23090. name: "Dicks",
  23091. image: {
  23092. source: "./media/characters/lynn-rhea/dicks.svg"
  23093. }
  23094. },
  23095. slit: {
  23096. height: math.unit(0.4, "feet"),
  23097. name: "Slit",
  23098. image: {
  23099. source: "./media/characters/lynn-rhea/slit.svg"
  23100. }
  23101. },
  23102. },
  23103. [
  23104. {
  23105. name: "Micro",
  23106. height: math.unit(1, "inch")
  23107. },
  23108. {
  23109. name: "Macro",
  23110. height: math.unit(60, "feet"),
  23111. default: true
  23112. },
  23113. {
  23114. name: "Megamacro",
  23115. height: math.unit(2, "miles")
  23116. },
  23117. {
  23118. name: "Gigamacro",
  23119. height: math.unit(3, "earths")
  23120. },
  23121. {
  23122. name: "Galactic",
  23123. height: math.unit(0.8, "galaxies")
  23124. },
  23125. ]
  23126. ))
  23127. characterMakers.push(() => makeCharacter(
  23128. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23129. {
  23130. front: {
  23131. height: math.unit(1600, "feet"),
  23132. weight: math.unit(85758785169, "kg"),
  23133. name: "Front",
  23134. image: {
  23135. source: "./media/characters/valathos/front.svg",
  23136. extra: 1451 / 1339
  23137. }
  23138. },
  23139. },
  23140. [
  23141. {
  23142. name: "Macro",
  23143. height: math.unit(1600, "feet"),
  23144. default: true
  23145. },
  23146. ]
  23147. ))
  23148. characterMakers.push(() => makeCharacter(
  23149. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23150. {
  23151. front: {
  23152. height: math.unit(7 + 5 / 12, "feet"),
  23153. weight: math.unit(300, "lb"),
  23154. name: "Front",
  23155. image: {
  23156. source: "./media/characters/azula/front.svg",
  23157. extra: 3208 / 2880,
  23158. bottom: 80.2 / 3277
  23159. }
  23160. },
  23161. back: {
  23162. height: math.unit(7 + 5 / 12, "feet"),
  23163. weight: math.unit(300, "lb"),
  23164. name: "Back",
  23165. image: {
  23166. source: "./media/characters/azula/back.svg",
  23167. extra: 3169 / 2822,
  23168. bottom: 150.6 / 3321
  23169. }
  23170. },
  23171. },
  23172. [
  23173. {
  23174. name: "Normal",
  23175. height: math.unit(7 + 5 / 12, "feet"),
  23176. default: true
  23177. },
  23178. {
  23179. name: "Big",
  23180. height: math.unit(20, "feet")
  23181. },
  23182. ]
  23183. ))
  23184. characterMakers.push(() => makeCharacter(
  23185. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23186. {
  23187. front: {
  23188. height: math.unit(5 + 1 / 12, "feet"),
  23189. weight: math.unit(110, "lb"),
  23190. name: "Front",
  23191. image: {
  23192. source: "./media/characters/rupert/front.svg",
  23193. extra: 1549 / 1495,
  23194. bottom: 54.2 / 1604.4
  23195. }
  23196. },
  23197. },
  23198. [
  23199. {
  23200. name: "Normal",
  23201. height: math.unit(5 + 1 / 12, "feet"),
  23202. default: true
  23203. },
  23204. ]
  23205. ))
  23206. characterMakers.push(() => makeCharacter(
  23207. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23208. {
  23209. front: {
  23210. height: math.unit(8 + 4 / 12, "feet"),
  23211. weight: math.unit(350, "lb"),
  23212. name: "Front",
  23213. image: {
  23214. source: "./media/characters/sheera-castellar/front.svg",
  23215. extra: 1957 / 1894,
  23216. bottom: 26.97 / 1975.017
  23217. }
  23218. },
  23219. side: {
  23220. height: math.unit(8 + 4 / 12, "feet"),
  23221. weight: math.unit(350, "lb"),
  23222. name: "Side",
  23223. image: {
  23224. source: "./media/characters/sheera-castellar/side.svg",
  23225. extra: 1957 / 1894
  23226. }
  23227. },
  23228. back: {
  23229. height: math.unit(8 + 4 / 12, "feet"),
  23230. weight: math.unit(350, "lb"),
  23231. name: "Back",
  23232. image: {
  23233. source: "./media/characters/sheera-castellar/back.svg",
  23234. extra: 1957 / 1894
  23235. }
  23236. },
  23237. angled: {
  23238. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23239. weight: math.unit(350, "lb"),
  23240. name: "Angled",
  23241. image: {
  23242. source: "./media/characters/sheera-castellar/angled.svg",
  23243. extra: 1807 / 1707,
  23244. bottom: 68 / 1875
  23245. }
  23246. },
  23247. genitals: {
  23248. height: math.unit(2.2, "feet"),
  23249. name: "Genitals",
  23250. image: {
  23251. source: "./media/characters/sheera-castellar/genitals.svg"
  23252. }
  23253. },
  23254. taur: {
  23255. height: math.unit(10 + 6/12, "feet"),
  23256. name: "Taur",
  23257. image: {
  23258. source: "./media/characters/sheera-castellar/taur.svg",
  23259. extra: 2017/1909,
  23260. bottom: 185/2202
  23261. }
  23262. },
  23263. },
  23264. [
  23265. {
  23266. name: "Normal",
  23267. height: math.unit(8 + 4 / 12, "feet")
  23268. },
  23269. {
  23270. name: "Macro",
  23271. height: math.unit(150, "feet"),
  23272. default: true
  23273. },
  23274. {
  23275. name: "Macro+",
  23276. height: math.unit(800, "feet")
  23277. },
  23278. ]
  23279. ))
  23280. characterMakers.push(() => makeCharacter(
  23281. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23282. {
  23283. front: {
  23284. height: math.unit(6, "feet"),
  23285. weight: math.unit(150, "lb"),
  23286. name: "Front",
  23287. image: {
  23288. source: "./media/characters/jaipur/front.svg",
  23289. extra: 3860 / 3731,
  23290. bottom: 287 / 4140
  23291. }
  23292. },
  23293. back: {
  23294. height: math.unit(6, "feet"),
  23295. weight: math.unit(150, "lb"),
  23296. name: "Back",
  23297. image: {
  23298. source: "./media/characters/jaipur/back.svg",
  23299. extra: 4060 / 3930,
  23300. bottom: 151 / 4200
  23301. }
  23302. },
  23303. },
  23304. [
  23305. {
  23306. name: "Normal",
  23307. height: math.unit(1.85, "meters"),
  23308. default: true
  23309. },
  23310. {
  23311. name: "Macro",
  23312. height: math.unit(150, "meters")
  23313. },
  23314. {
  23315. name: "Macro+",
  23316. height: math.unit(0.5, "miles")
  23317. },
  23318. {
  23319. name: "Macro++",
  23320. height: math.unit(2.5, "miles")
  23321. },
  23322. {
  23323. name: "Macro+++",
  23324. height: math.unit(12, "miles")
  23325. },
  23326. {
  23327. name: "Macro++++",
  23328. height: math.unit(120, "miles")
  23329. },
  23330. {
  23331. name: "Macro+++++",
  23332. height: math.unit(1200, "miles")
  23333. },
  23334. ]
  23335. ))
  23336. characterMakers.push(() => makeCharacter(
  23337. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23338. {
  23339. front: {
  23340. height: math.unit(6, "feet"),
  23341. weight: math.unit(150, "lb"),
  23342. name: "Front",
  23343. image: {
  23344. source: "./media/characters/sheila-wolf/front.svg",
  23345. extra: 1931 / 1808,
  23346. bottom: 29.5 / 1960
  23347. }
  23348. },
  23349. dick: {
  23350. height: math.unit(1.464, "feet"),
  23351. name: "Dick",
  23352. image: {
  23353. source: "./media/characters/sheila-wolf/dick.svg"
  23354. }
  23355. },
  23356. muzzle: {
  23357. height: math.unit(0.513, "feet"),
  23358. name: "Muzzle",
  23359. image: {
  23360. source: "./media/characters/sheila-wolf/muzzle.svg"
  23361. }
  23362. },
  23363. },
  23364. [
  23365. {
  23366. name: "Macro",
  23367. height: math.unit(70, "feet"),
  23368. default: true
  23369. },
  23370. ]
  23371. ))
  23372. characterMakers.push(() => makeCharacter(
  23373. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23374. {
  23375. front: {
  23376. height: math.unit(32, "meters"),
  23377. weight: math.unit(300000, "kg"),
  23378. name: "Front",
  23379. image: {
  23380. source: "./media/characters/almor/front.svg",
  23381. extra: 1408 / 1322,
  23382. bottom: 94.6 / 1506.5
  23383. }
  23384. },
  23385. },
  23386. [
  23387. {
  23388. name: "Macro",
  23389. height: math.unit(32, "meters"),
  23390. default: true
  23391. },
  23392. ]
  23393. ))
  23394. characterMakers.push(() => makeCharacter(
  23395. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23396. {
  23397. front: {
  23398. height: math.unit(7, "feet"),
  23399. weight: math.unit(200, "lb"),
  23400. name: "Front",
  23401. image: {
  23402. source: "./media/characters/silver/front.svg",
  23403. extra: 472.1 / 450.5,
  23404. bottom: 26.5 / 499.424
  23405. }
  23406. },
  23407. },
  23408. [
  23409. {
  23410. name: "Normal",
  23411. height: math.unit(7, "feet"),
  23412. default: true
  23413. },
  23414. {
  23415. name: "Macro",
  23416. height: math.unit(800, "feet")
  23417. },
  23418. {
  23419. name: "Megamacro",
  23420. height: math.unit(250, "miles")
  23421. },
  23422. ]
  23423. ))
  23424. characterMakers.push(() => makeCharacter(
  23425. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23426. {
  23427. front: {
  23428. height: math.unit(6, "feet"),
  23429. weight: math.unit(150, "lb"),
  23430. name: "Front",
  23431. image: {
  23432. source: "./media/characters/pliskin/front.svg",
  23433. extra: 1469 / 1359,
  23434. bottom: 70 / 1540
  23435. }
  23436. },
  23437. },
  23438. [
  23439. {
  23440. name: "Micro",
  23441. height: math.unit(3, "inches")
  23442. },
  23443. {
  23444. name: "Normal",
  23445. height: math.unit(5 + 11 / 12, "feet"),
  23446. default: true
  23447. },
  23448. {
  23449. name: "Macro",
  23450. height: math.unit(120, "feet")
  23451. },
  23452. ]
  23453. ))
  23454. characterMakers.push(() => makeCharacter(
  23455. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23456. {
  23457. front: {
  23458. height: math.unit(6, "feet"),
  23459. weight: math.unit(150, "lb"),
  23460. name: "Front",
  23461. image: {
  23462. source: "./media/characters/sammy/front.svg",
  23463. extra: 1193 / 1089,
  23464. bottom: 30.5 / 1226
  23465. }
  23466. },
  23467. },
  23468. [
  23469. {
  23470. name: "Macro",
  23471. height: math.unit(1700, "feet"),
  23472. default: true
  23473. },
  23474. {
  23475. name: "Examacro",
  23476. height: math.unit(2.5e9, "lightyears")
  23477. },
  23478. ]
  23479. ))
  23480. characterMakers.push(() => makeCharacter(
  23481. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23482. {
  23483. front: {
  23484. height: math.unit(21, "meters"),
  23485. weight: math.unit(12, "tonnes"),
  23486. name: "Front",
  23487. image: {
  23488. source: "./media/characters/kuru/front.svg",
  23489. extra: 4301 / 3785,
  23490. bottom: 371.3 / 4691
  23491. }
  23492. },
  23493. },
  23494. [
  23495. {
  23496. name: "Macro",
  23497. height: math.unit(21, "meters"),
  23498. default: true
  23499. },
  23500. ]
  23501. ))
  23502. characterMakers.push(() => makeCharacter(
  23503. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23504. {
  23505. front: {
  23506. height: math.unit(23, "meters"),
  23507. weight: math.unit(12.2, "tonnes"),
  23508. name: "Front",
  23509. image: {
  23510. source: "./media/characters/rakka/front.svg",
  23511. extra: 4670 / 4169,
  23512. bottom: 301 / 4968.7
  23513. }
  23514. },
  23515. },
  23516. [
  23517. {
  23518. name: "Macro",
  23519. height: math.unit(23, "meters"),
  23520. default: true
  23521. },
  23522. ]
  23523. ))
  23524. characterMakers.push(() => makeCharacter(
  23525. { name: "Rhys (Feline)", species: ["cat"], 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/rhys-feline/front.svg",
  23533. extra: 2488 / 2308,
  23534. bottom: 35.67 / 2519.19
  23535. }
  23536. },
  23537. },
  23538. [
  23539. {
  23540. name: "Really Small",
  23541. height: math.unit(1, "nm")
  23542. },
  23543. {
  23544. name: "Micro",
  23545. height: math.unit(4, "inches")
  23546. },
  23547. {
  23548. name: "Normal",
  23549. height: math.unit(4 + 10 / 12, "feet"),
  23550. default: true
  23551. },
  23552. {
  23553. name: "Macro",
  23554. height: math.unit(100, "feet")
  23555. },
  23556. {
  23557. name: "Megamacto",
  23558. height: math.unit(50, "miles")
  23559. },
  23560. ]
  23561. ))
  23562. characterMakers.push(() => makeCharacter(
  23563. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23564. {
  23565. side: {
  23566. height: math.unit(30, "feet"),
  23567. weight: math.unit(35000, "kg"),
  23568. name: "Side",
  23569. image: {
  23570. source: "./media/characters/alydar/side.svg",
  23571. extra: 234 / 222,
  23572. bottom: 6.5 / 241
  23573. }
  23574. },
  23575. front: {
  23576. height: math.unit(30, "feet"),
  23577. weight: math.unit(35000, "kg"),
  23578. name: "Front",
  23579. image: {
  23580. source: "./media/characters/alydar/front.svg",
  23581. extra: 223.37 / 210.2,
  23582. bottom: 22.3 / 246.76
  23583. }
  23584. },
  23585. top: {
  23586. height: math.unit(64.54, "feet"),
  23587. weight: math.unit(35000, "kg"),
  23588. name: "Top",
  23589. image: {
  23590. source: "./media/characters/alydar/top.svg"
  23591. }
  23592. },
  23593. anthro: {
  23594. height: math.unit(30, "feet"),
  23595. weight: math.unit(9000, "kg"),
  23596. name: "Anthro",
  23597. image: {
  23598. source: "./media/characters/alydar/anthro.svg",
  23599. extra: 432 / 421,
  23600. bottom: 7.18 / 440
  23601. }
  23602. },
  23603. maw: {
  23604. height: math.unit(11.693, "feet"),
  23605. name: "Maw",
  23606. image: {
  23607. source: "./media/characters/alydar/maw.svg"
  23608. }
  23609. },
  23610. head: {
  23611. height: math.unit(11.693, "feet"),
  23612. name: "Head",
  23613. image: {
  23614. source: "./media/characters/alydar/head.svg"
  23615. }
  23616. },
  23617. headAlt: {
  23618. height: math.unit(12.861, "feet"),
  23619. name: "Head (Alt)",
  23620. image: {
  23621. source: "./media/characters/alydar/head-alt.svg"
  23622. }
  23623. },
  23624. wing: {
  23625. height: math.unit(20.712, "feet"),
  23626. name: "Wing",
  23627. image: {
  23628. source: "./media/characters/alydar/wing.svg"
  23629. }
  23630. },
  23631. wingFeather: {
  23632. height: math.unit(9.662, "feet"),
  23633. name: "Wing Feather",
  23634. image: {
  23635. source: "./media/characters/alydar/wing-feather.svg"
  23636. }
  23637. },
  23638. countourFeather: {
  23639. height: math.unit(4.154, "feet"),
  23640. name: "Contour Feather",
  23641. image: {
  23642. source: "./media/characters/alydar/contour-feather.svg"
  23643. }
  23644. },
  23645. },
  23646. [
  23647. {
  23648. name: "Diplomatic",
  23649. height: math.unit(13, "feet"),
  23650. default: true
  23651. },
  23652. {
  23653. name: "Small",
  23654. height: math.unit(30, "feet")
  23655. },
  23656. {
  23657. name: "Normal",
  23658. height: math.unit(95, "feet"),
  23659. default: true
  23660. },
  23661. {
  23662. name: "Large",
  23663. height: math.unit(285, "feet")
  23664. },
  23665. {
  23666. name: "Incomprehensible",
  23667. height: math.unit(450, "megameters")
  23668. },
  23669. ]
  23670. ))
  23671. characterMakers.push(() => makeCharacter(
  23672. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23673. {
  23674. side: {
  23675. height: math.unit(11, "feet"),
  23676. weight: math.unit(1750, "kg"),
  23677. name: "Side",
  23678. image: {
  23679. source: "./media/characters/selicia/side.svg",
  23680. extra: 440 / 396,
  23681. bottom: 24.8 / 465.979
  23682. }
  23683. },
  23684. maw: {
  23685. height: math.unit(4.665, "feet"),
  23686. name: "Maw",
  23687. image: {
  23688. source: "./media/characters/selicia/maw.svg"
  23689. }
  23690. },
  23691. },
  23692. [
  23693. {
  23694. name: "Normal",
  23695. height: math.unit(11, "feet"),
  23696. default: true
  23697. },
  23698. ]
  23699. ))
  23700. characterMakers.push(() => makeCharacter(
  23701. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23702. {
  23703. side: {
  23704. height: math.unit(2 + 6 / 12, "feet"),
  23705. weight: math.unit(30, "lb"),
  23706. name: "Side",
  23707. image: {
  23708. source: "./media/characters/layla/side.svg",
  23709. extra: 244 / 188,
  23710. bottom: 18.2 / 262.1
  23711. }
  23712. },
  23713. back: {
  23714. height: math.unit(2 + 6 / 12, "feet"),
  23715. weight: math.unit(30, "lb"),
  23716. name: "Back",
  23717. image: {
  23718. source: "./media/characters/layla/back.svg",
  23719. extra: 308 / 241.5,
  23720. bottom: 8.9 / 316.8
  23721. }
  23722. },
  23723. cumming: {
  23724. height: math.unit(2 + 6 / 12, "feet"),
  23725. weight: math.unit(30, "lb"),
  23726. name: "Cumming",
  23727. image: {
  23728. source: "./media/characters/layla/cumming.svg",
  23729. extra: 342 / 279,
  23730. bottom: 595 / 938
  23731. }
  23732. },
  23733. dickFlaccid: {
  23734. height: math.unit(2.595, "feet"),
  23735. name: "Flaccid Genitals",
  23736. image: {
  23737. source: "./media/characters/layla/dick-flaccid.svg"
  23738. }
  23739. },
  23740. dickErect: {
  23741. height: math.unit(2.359, "feet"),
  23742. name: "Erect Genitals",
  23743. image: {
  23744. source: "./media/characters/layla/dick-erect.svg"
  23745. }
  23746. },
  23747. dragon: {
  23748. height: math.unit(40, "feet"),
  23749. name: "Dragon",
  23750. image: {
  23751. source: "./media/characters/layla/dragon.svg",
  23752. extra: 610/535,
  23753. bottom: 367/977
  23754. }
  23755. },
  23756. taur: {
  23757. height: math.unit(30, "feet"),
  23758. name: "Taur",
  23759. image: {
  23760. source: "./media/characters/layla/taur.svg",
  23761. extra: 1268/1199,
  23762. bottom: 112/1380
  23763. }
  23764. },
  23765. },
  23766. [
  23767. {
  23768. name: "Micro",
  23769. height: math.unit(1, "inch")
  23770. },
  23771. {
  23772. name: "Small",
  23773. height: math.unit(1, "foot")
  23774. },
  23775. {
  23776. name: "Normal",
  23777. height: math.unit(2 + 6 / 12, "feet"),
  23778. default: true
  23779. },
  23780. {
  23781. name: "Macro",
  23782. height: math.unit(200, "feet")
  23783. },
  23784. {
  23785. name: "Megamacro",
  23786. height: math.unit(1000, "miles")
  23787. },
  23788. {
  23789. name: "Planetary",
  23790. height: math.unit(8000, "miles")
  23791. },
  23792. {
  23793. name: "True Layla",
  23794. height: math.unit(200000 * 7, "multiverses")
  23795. },
  23796. ]
  23797. ))
  23798. characterMakers.push(() => makeCharacter(
  23799. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23800. {
  23801. back: {
  23802. height: math.unit(10.5, "feet"),
  23803. weight: math.unit(800, "lb"),
  23804. name: "Back",
  23805. image: {
  23806. source: "./media/characters/knox/back.svg",
  23807. extra: 1486 / 1089,
  23808. bottom: 107 / 1601.4
  23809. }
  23810. },
  23811. side: {
  23812. height: math.unit(10.5, "feet"),
  23813. weight: math.unit(800, "lb"),
  23814. name: "Side",
  23815. image: {
  23816. source: "./media/characters/knox/side.svg",
  23817. extra: 244 / 218,
  23818. bottom: 14 / 260
  23819. }
  23820. },
  23821. },
  23822. [
  23823. {
  23824. name: "Compact",
  23825. height: math.unit(10.5, "feet"),
  23826. default: true
  23827. },
  23828. {
  23829. name: "Dynamax",
  23830. height: math.unit(210, "feet")
  23831. },
  23832. {
  23833. name: "Full Macro",
  23834. height: math.unit(850, "feet")
  23835. },
  23836. ]
  23837. ))
  23838. characterMakers.push(() => makeCharacter(
  23839. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23840. {
  23841. front: {
  23842. height: math.unit(28, "feet"),
  23843. weight: math.unit(10500, "lb"),
  23844. name: "Front",
  23845. image: {
  23846. source: "./media/characters/kayda/front.svg",
  23847. extra: 1536 / 1428,
  23848. bottom: 68.7 / 1603
  23849. }
  23850. },
  23851. back: {
  23852. height: math.unit(28, "feet"),
  23853. weight: math.unit(10500, "lb"),
  23854. name: "Back",
  23855. image: {
  23856. source: "./media/characters/kayda/back.svg",
  23857. extra: 1557 / 1464,
  23858. bottom: 39.5 / 1597.49
  23859. }
  23860. },
  23861. dick: {
  23862. height: math.unit(3.858, "feet"),
  23863. name: "Dick",
  23864. image: {
  23865. source: "./media/characters/kayda/dick.svg"
  23866. }
  23867. },
  23868. },
  23869. [
  23870. {
  23871. name: "Macro",
  23872. height: math.unit(28, "feet"),
  23873. default: true
  23874. },
  23875. ]
  23876. ))
  23877. characterMakers.push(() => makeCharacter(
  23878. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23879. {
  23880. front: {
  23881. height: math.unit(10 + 11 / 12, "feet"),
  23882. weight: math.unit(1400, "lb"),
  23883. name: "Front",
  23884. image: {
  23885. source: "./media/characters/brian/front.svg",
  23886. extra: 737 / 692,
  23887. bottom: 55.4 / 785
  23888. }
  23889. },
  23890. },
  23891. [
  23892. {
  23893. name: "Normal",
  23894. height: math.unit(10 + 11 / 12, "feet"),
  23895. default: true
  23896. },
  23897. ]
  23898. ))
  23899. characterMakers.push(() => makeCharacter(
  23900. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23901. {
  23902. front: {
  23903. height: math.unit(5 + 8 / 12, "feet"),
  23904. weight: math.unit(140, "lb"),
  23905. name: "Front",
  23906. image: {
  23907. source: "./media/characters/khemri/front.svg",
  23908. extra: 4780 / 4059,
  23909. bottom: 80.1 / 4859.25
  23910. }
  23911. },
  23912. },
  23913. [
  23914. {
  23915. name: "Micro",
  23916. height: math.unit(6, "inches")
  23917. },
  23918. {
  23919. name: "Normal",
  23920. height: math.unit(5 + 8 / 12, "feet"),
  23921. default: true
  23922. },
  23923. ]
  23924. ))
  23925. characterMakers.push(() => makeCharacter(
  23926. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23927. {
  23928. front: {
  23929. height: math.unit(13, "feet"),
  23930. weight: math.unit(1700, "lb"),
  23931. name: "Front",
  23932. image: {
  23933. source: "./media/characters/felix-braveheart/front.svg",
  23934. extra: 1222 / 1157,
  23935. bottom: 53.2 / 1280
  23936. }
  23937. },
  23938. back: {
  23939. height: math.unit(13, "feet"),
  23940. weight: math.unit(1700, "lb"),
  23941. name: "Back",
  23942. image: {
  23943. source: "./media/characters/felix-braveheart/back.svg",
  23944. extra: 1277 / 1203,
  23945. bottom: 50.2 / 1327
  23946. }
  23947. },
  23948. feral: {
  23949. height: math.unit(6, "feet"),
  23950. weight: math.unit(400, "lb"),
  23951. name: "Feral",
  23952. image: {
  23953. source: "./media/characters/felix-braveheart/feral.svg",
  23954. extra: 682 / 625,
  23955. bottom: 6.9 / 688
  23956. }
  23957. },
  23958. },
  23959. [
  23960. {
  23961. name: "Normal",
  23962. height: math.unit(13, "feet"),
  23963. default: true
  23964. },
  23965. ]
  23966. ))
  23967. characterMakers.push(() => makeCharacter(
  23968. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23969. {
  23970. side: {
  23971. height: math.unit(5 + 11 / 12, "feet"),
  23972. weight: math.unit(1400, "lb"),
  23973. name: "Side",
  23974. image: {
  23975. source: "./media/characters/shadow-blade/side.svg",
  23976. extra: 1726 / 1267,
  23977. bottom: 58.4 / 1785
  23978. }
  23979. },
  23980. },
  23981. [
  23982. {
  23983. name: "Normal",
  23984. height: math.unit(5 + 11 / 12, "feet"),
  23985. default: true
  23986. },
  23987. ]
  23988. ))
  23989. characterMakers.push(() => makeCharacter(
  23990. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23991. {
  23992. front: {
  23993. height: math.unit(1 + 6 / 12, "feet"),
  23994. weight: math.unit(25, "lb"),
  23995. name: "Front",
  23996. image: {
  23997. source: "./media/characters/karla-halldor/front.svg",
  23998. extra: 1459 / 1383,
  23999. bottom: 12 / 1472
  24000. }
  24001. },
  24002. },
  24003. [
  24004. {
  24005. name: "Normal",
  24006. height: math.unit(1 + 6 / 12, "feet"),
  24007. default: true
  24008. },
  24009. ]
  24010. ))
  24011. characterMakers.push(() => makeCharacter(
  24012. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24013. {
  24014. front: {
  24015. height: math.unit(6 + 2 / 12, "feet"),
  24016. weight: math.unit(160, "lb"),
  24017. name: "Front",
  24018. image: {
  24019. source: "./media/characters/ariam/front.svg",
  24020. extra: 714 / 617,
  24021. bottom: 23.4 / 737,
  24022. }
  24023. },
  24024. squatting: {
  24025. height: math.unit(4.1, "feet"),
  24026. weight: math.unit(160, "lb"),
  24027. name: "Squatting",
  24028. image: {
  24029. source: "./media/characters/ariam/squatting.svg",
  24030. extra: 2617 / 2112,
  24031. bottom: 61.2 / 2681,
  24032. }
  24033. },
  24034. },
  24035. [
  24036. {
  24037. name: "Normal",
  24038. height: math.unit(6 + 2 / 12, "feet"),
  24039. default: true
  24040. },
  24041. {
  24042. name: "Normal+",
  24043. height: math.unit(4, "meters")
  24044. },
  24045. {
  24046. name: "Macro",
  24047. height: math.unit(50, "meters")
  24048. },
  24049. {
  24050. name: "Macro+",
  24051. height: math.unit(100, "meters")
  24052. },
  24053. {
  24054. name: "Megamacro",
  24055. height: math.unit(20, "km")
  24056. },
  24057. ]
  24058. ))
  24059. characterMakers.push(() => makeCharacter(
  24060. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24061. {
  24062. front: {
  24063. height: math.unit(1.67, "meters"),
  24064. weight: math.unit(140, "lb"),
  24065. name: "Front",
  24066. image: {
  24067. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24068. extra: 438 / 410,
  24069. bottom: 0.75 / 439
  24070. }
  24071. },
  24072. },
  24073. [
  24074. {
  24075. name: "Shrunken",
  24076. height: math.unit(7.6, "cm")
  24077. },
  24078. {
  24079. name: "Human Scale",
  24080. height: math.unit(1.67, "meters")
  24081. },
  24082. {
  24083. name: "Wolxi Scale",
  24084. height: math.unit(36.7, "meters"),
  24085. default: true
  24086. },
  24087. ]
  24088. ))
  24089. characterMakers.push(() => makeCharacter(
  24090. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24091. {
  24092. front: {
  24093. height: math.unit(1.73, "meters"),
  24094. weight: math.unit(240, "lb"),
  24095. name: "Front",
  24096. image: {
  24097. source: "./media/characters/izue-two-mothers/front.svg",
  24098. extra: 469 / 437,
  24099. bottom: 1.24 / 470.6
  24100. }
  24101. },
  24102. },
  24103. [
  24104. {
  24105. name: "Shrunken",
  24106. height: math.unit(7.86, "cm")
  24107. },
  24108. {
  24109. name: "Human Scale",
  24110. height: math.unit(1.73, "meters")
  24111. },
  24112. {
  24113. name: "Wolxi Scale",
  24114. height: math.unit(38, "meters"),
  24115. default: true
  24116. },
  24117. ]
  24118. ))
  24119. characterMakers.push(() => makeCharacter(
  24120. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24121. {
  24122. front: {
  24123. height: math.unit(1.55, "meters"),
  24124. weight: math.unit(120, "lb"),
  24125. name: "Front",
  24126. image: {
  24127. source: "./media/characters/teeku-love-shack/front.svg",
  24128. extra: 387 / 362,
  24129. bottom: 1.51 / 388
  24130. }
  24131. },
  24132. },
  24133. [
  24134. {
  24135. name: "Shrunken",
  24136. height: math.unit(7, "cm")
  24137. },
  24138. {
  24139. name: "Human Scale",
  24140. height: math.unit(1.55, "meters")
  24141. },
  24142. {
  24143. name: "Wolxi Scale",
  24144. height: math.unit(34.1, "meters"),
  24145. default: true
  24146. },
  24147. ]
  24148. ))
  24149. characterMakers.push(() => makeCharacter(
  24150. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24151. {
  24152. front: {
  24153. height: math.unit(1.83, "meters"),
  24154. weight: math.unit(135, "lb"),
  24155. name: "Front",
  24156. image: {
  24157. source: "./media/characters/dejma-the-red/front.svg",
  24158. extra: 480 / 458,
  24159. bottom: 1.8 / 482
  24160. }
  24161. },
  24162. },
  24163. [
  24164. {
  24165. name: "Shrunken",
  24166. height: math.unit(8.3, "cm")
  24167. },
  24168. {
  24169. name: "Human Scale",
  24170. height: math.unit(1.83, "meters")
  24171. },
  24172. {
  24173. name: "Wolxi Scale",
  24174. height: math.unit(40, "meters"),
  24175. default: true
  24176. },
  24177. ]
  24178. ))
  24179. characterMakers.push(() => makeCharacter(
  24180. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24181. {
  24182. front: {
  24183. height: math.unit(1.78, "meters"),
  24184. weight: math.unit(65, "kg"),
  24185. name: "Front",
  24186. image: {
  24187. source: "./media/characters/aki/front.svg",
  24188. extra: 452 / 415
  24189. }
  24190. },
  24191. frontNsfw: {
  24192. height: math.unit(1.78, "meters"),
  24193. weight: math.unit(65, "kg"),
  24194. name: "Front (NSFW)",
  24195. image: {
  24196. source: "./media/characters/aki/front-nsfw.svg",
  24197. extra: 452 / 415
  24198. }
  24199. },
  24200. back: {
  24201. height: math.unit(1.78, "meters"),
  24202. weight: math.unit(65, "kg"),
  24203. name: "Back",
  24204. image: {
  24205. source: "./media/characters/aki/back.svg",
  24206. extra: 452 / 415
  24207. }
  24208. },
  24209. rump: {
  24210. height: math.unit(2.05, "feet"),
  24211. name: "Rump",
  24212. image: {
  24213. source: "./media/characters/aki/rump.svg"
  24214. }
  24215. },
  24216. dick: {
  24217. height: math.unit(0.95, "feet"),
  24218. name: "Dick",
  24219. image: {
  24220. source: "./media/characters/aki/dick.svg"
  24221. }
  24222. },
  24223. },
  24224. [
  24225. {
  24226. name: "Micro",
  24227. height: math.unit(15, "cm")
  24228. },
  24229. {
  24230. name: "Normal",
  24231. height: math.unit(178, "cm"),
  24232. default: true
  24233. },
  24234. {
  24235. name: "Macro",
  24236. height: math.unit(214, "m")
  24237. },
  24238. {
  24239. name: "Macro+",
  24240. height: math.unit(534, "m")
  24241. },
  24242. ]
  24243. ))
  24244. characterMakers.push(() => makeCharacter(
  24245. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24246. {
  24247. front: {
  24248. height: math.unit(5 + 5 / 12, "feet"),
  24249. weight: math.unit(120, "lb"),
  24250. name: "Front",
  24251. image: {
  24252. source: "./media/characters/ari/front.svg",
  24253. extra: 714.5 / 682,
  24254. bottom: 8 / 722.5
  24255. }
  24256. },
  24257. },
  24258. [
  24259. {
  24260. name: "Normal",
  24261. height: math.unit(5 + 5 / 12, "feet")
  24262. },
  24263. {
  24264. name: "Macro",
  24265. height: math.unit(100, "feet"),
  24266. default: true
  24267. },
  24268. {
  24269. name: "Megamacro",
  24270. height: math.unit(100, "miles")
  24271. },
  24272. {
  24273. name: "Gigamacro",
  24274. height: math.unit(80000, "miles")
  24275. },
  24276. ]
  24277. ))
  24278. characterMakers.push(() => makeCharacter(
  24279. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24280. {
  24281. side: {
  24282. height: math.unit(9, "feet"),
  24283. weight: math.unit(400, "kg"),
  24284. name: "Side",
  24285. image: {
  24286. source: "./media/characters/bolt/side.svg",
  24287. extra: 1126 / 896,
  24288. bottom: 60 / 1187.3,
  24289. }
  24290. },
  24291. },
  24292. [
  24293. {
  24294. name: "Micro",
  24295. height: math.unit(5, "inches")
  24296. },
  24297. {
  24298. name: "Normal",
  24299. height: math.unit(9, "feet"),
  24300. default: true
  24301. },
  24302. {
  24303. name: "Macro",
  24304. height: math.unit(700, "feet")
  24305. },
  24306. {
  24307. name: "Max Size",
  24308. height: math.unit(1.52e22, "yottameters")
  24309. },
  24310. ]
  24311. ))
  24312. characterMakers.push(() => makeCharacter(
  24313. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24314. {
  24315. front: {
  24316. height: math.unit(4.53, "meters"),
  24317. weight: math.unit(3, "tons"),
  24318. name: "Front",
  24319. image: {
  24320. source: "./media/characters/draekon-sylviar/front.svg",
  24321. extra: 1228 / 1068,
  24322. bottom: 41 / 1270
  24323. }
  24324. },
  24325. tail: {
  24326. height: math.unit(1.772, "meter"),
  24327. name: "Tail",
  24328. image: {
  24329. source: "./media/characters/draekon-sylviar/tail.svg"
  24330. }
  24331. },
  24332. head: {
  24333. height: math.unit(1.331, "meter"),
  24334. name: "Head",
  24335. image: {
  24336. source: "./media/characters/draekon-sylviar/head.svg"
  24337. }
  24338. },
  24339. hand: {
  24340. height: math.unit(0.564, "meter"),
  24341. name: "Hand",
  24342. image: {
  24343. source: "./media/characters/draekon-sylviar/hand.svg"
  24344. }
  24345. },
  24346. foot: {
  24347. height: math.unit(0.621, "meter"),
  24348. name: "Foot",
  24349. image: {
  24350. source: "./media/characters/draekon-sylviar/foot.svg",
  24351. bottom: 32 / 324
  24352. }
  24353. },
  24354. dick: {
  24355. height: math.unit(61, "cm"),
  24356. name: "Dick",
  24357. image: {
  24358. source: "./media/characters/draekon-sylviar/dick.svg"
  24359. }
  24360. },
  24361. dickseparated: {
  24362. height: math.unit(61, "cm"),
  24363. name: "Dick-separated",
  24364. image: {
  24365. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24366. }
  24367. },
  24368. },
  24369. [
  24370. {
  24371. name: "Small",
  24372. height: math.unit(4.53 / 2, "meters"),
  24373. default: true
  24374. },
  24375. {
  24376. name: "Normal",
  24377. height: math.unit(4.53, "meters"),
  24378. default: true
  24379. },
  24380. {
  24381. name: "Large",
  24382. height: math.unit(4.53 * 2, "meters"),
  24383. },
  24384. ]
  24385. ))
  24386. characterMakers.push(() => makeCharacter(
  24387. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24388. {
  24389. front: {
  24390. height: math.unit(6 + 2 / 12, "feet"),
  24391. weight: math.unit(180, "lb"),
  24392. name: "Front",
  24393. image: {
  24394. source: "./media/characters/brawler/front.svg",
  24395. extra: 3301 / 3027,
  24396. bottom: 138 / 3439
  24397. }
  24398. },
  24399. },
  24400. [
  24401. {
  24402. name: "Normal",
  24403. height: math.unit(6 + 2 / 12, "feet"),
  24404. default: true
  24405. },
  24406. ]
  24407. ))
  24408. characterMakers.push(() => makeCharacter(
  24409. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24410. {
  24411. front: {
  24412. height: math.unit(11, "feet"),
  24413. weight: math.unit(1000, "lb"),
  24414. name: "Front",
  24415. image: {
  24416. source: "./media/characters/alex/front.svg",
  24417. bottom: 44.5 / 620
  24418. }
  24419. },
  24420. },
  24421. [
  24422. {
  24423. name: "Micro",
  24424. height: math.unit(5, "inches")
  24425. },
  24426. {
  24427. name: "Normal",
  24428. height: math.unit(11, "feet"),
  24429. default: true
  24430. },
  24431. {
  24432. name: "Macro",
  24433. height: math.unit(9.5e9, "feet")
  24434. },
  24435. {
  24436. name: "Max Size",
  24437. height: math.unit(1.4e283, "yottameters")
  24438. },
  24439. ]
  24440. ))
  24441. characterMakers.push(() => makeCharacter(
  24442. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24443. {
  24444. female: {
  24445. height: math.unit(29.9, "m"),
  24446. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24447. name: "Female",
  24448. image: {
  24449. source: "./media/characters/zenari/female.svg",
  24450. extra: 3281.6 / 3217,
  24451. bottom: 72.2 / 3353
  24452. }
  24453. },
  24454. male: {
  24455. height: math.unit(27.7, "m"),
  24456. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24457. name: "Male",
  24458. image: {
  24459. source: "./media/characters/zenari/male.svg",
  24460. extra: 3008 / 2991,
  24461. bottom: 54.6 / 3069
  24462. }
  24463. },
  24464. },
  24465. [
  24466. {
  24467. name: "Macro",
  24468. height: math.unit(29.7, "meters"),
  24469. default: true
  24470. },
  24471. ]
  24472. ))
  24473. characterMakers.push(() => makeCharacter(
  24474. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24475. {
  24476. female: {
  24477. height: math.unit(23.8, "m"),
  24478. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24479. name: "Female",
  24480. image: {
  24481. source: "./media/characters/mactarian/female.svg",
  24482. extra: 2662 / 2569,
  24483. bottom: 73 / 2736
  24484. }
  24485. },
  24486. male: {
  24487. height: math.unit(23.8, "m"),
  24488. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24489. name: "Male",
  24490. image: {
  24491. source: "./media/characters/mactarian/male.svg",
  24492. extra: 2673 / 2600,
  24493. bottom: 76 / 2750
  24494. }
  24495. },
  24496. },
  24497. [
  24498. {
  24499. name: "Macro",
  24500. height: math.unit(23.8, "meters"),
  24501. default: true
  24502. },
  24503. ]
  24504. ))
  24505. characterMakers.push(() => makeCharacter(
  24506. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24507. {
  24508. female: {
  24509. height: math.unit(19.3, "m"),
  24510. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24511. name: "Female",
  24512. image: {
  24513. source: "./media/characters/umok/female.svg",
  24514. extra: 2186 / 2078,
  24515. bottom: 87 / 2277
  24516. }
  24517. },
  24518. male: {
  24519. height: math.unit(19.5, "m"),
  24520. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24521. name: "Male",
  24522. image: {
  24523. source: "./media/characters/umok/male.svg",
  24524. extra: 2233 / 2140,
  24525. bottom: 24.4 / 2258
  24526. }
  24527. },
  24528. },
  24529. [
  24530. {
  24531. name: "Macro",
  24532. height: math.unit(19.3, "meters"),
  24533. default: true
  24534. },
  24535. ]
  24536. ))
  24537. characterMakers.push(() => makeCharacter(
  24538. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24539. {
  24540. female: {
  24541. height: math.unit(26.15, "m"),
  24542. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24543. name: "Female",
  24544. image: {
  24545. source: "./media/characters/joraxian/female.svg",
  24546. extra: 2912 / 2824,
  24547. bottom: 36 / 2956
  24548. }
  24549. },
  24550. male: {
  24551. height: math.unit(25.4, "m"),
  24552. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24553. name: "Male",
  24554. image: {
  24555. source: "./media/characters/joraxian/male.svg",
  24556. extra: 2877 / 2721,
  24557. bottom: 82 / 2967
  24558. }
  24559. },
  24560. },
  24561. [
  24562. {
  24563. name: "Macro",
  24564. height: math.unit(26.15, "meters"),
  24565. default: true
  24566. },
  24567. ]
  24568. ))
  24569. characterMakers.push(() => makeCharacter(
  24570. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24571. {
  24572. female: {
  24573. height: math.unit(21.6, "m"),
  24574. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24575. name: "Female",
  24576. image: {
  24577. source: "./media/characters/sthara/female.svg",
  24578. extra: 2516 / 2347,
  24579. bottom: 21.5 / 2537
  24580. }
  24581. },
  24582. male: {
  24583. height: math.unit(24, "m"),
  24584. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24585. name: "Male",
  24586. image: {
  24587. source: "./media/characters/sthara/male.svg",
  24588. extra: 2732 / 2607,
  24589. bottom: 23 / 2732
  24590. }
  24591. },
  24592. },
  24593. [
  24594. {
  24595. name: "Macro",
  24596. height: math.unit(21.6, "meters"),
  24597. default: true
  24598. },
  24599. ]
  24600. ))
  24601. characterMakers.push(() => makeCharacter(
  24602. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24603. {
  24604. front: {
  24605. height: math.unit(6 + 4 / 12, "feet"),
  24606. weight: math.unit(175, "lb"),
  24607. name: "Front",
  24608. image: {
  24609. source: "./media/characters/luka-bryzant/front.svg",
  24610. extra: 311 / 289,
  24611. bottom: 4 / 315
  24612. }
  24613. },
  24614. back: {
  24615. height: math.unit(6 + 4 / 12, "feet"),
  24616. weight: math.unit(175, "lb"),
  24617. name: "Back",
  24618. image: {
  24619. source: "./media/characters/luka-bryzant/back.svg",
  24620. extra: 311 / 289,
  24621. bottom: 3.8 / 313.7
  24622. }
  24623. },
  24624. },
  24625. [
  24626. {
  24627. name: "Micro",
  24628. height: math.unit(10, "inches")
  24629. },
  24630. {
  24631. name: "Normal",
  24632. height: math.unit(6 + 4 / 12, "feet"),
  24633. default: true
  24634. },
  24635. {
  24636. name: "Large",
  24637. height: math.unit(12, "feet")
  24638. },
  24639. ]
  24640. ))
  24641. characterMakers.push(() => makeCharacter(
  24642. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24643. {
  24644. front: {
  24645. height: math.unit(5 + 7 / 12, "feet"),
  24646. weight: math.unit(185, "lb"),
  24647. name: "Front",
  24648. image: {
  24649. source: "./media/characters/aman-aquila/front.svg",
  24650. extra: 1013 / 976,
  24651. bottom: 45.6 / 1057
  24652. }
  24653. },
  24654. side: {
  24655. height: math.unit(5 + 7 / 12, "feet"),
  24656. weight: math.unit(185, "lb"),
  24657. name: "Side",
  24658. image: {
  24659. source: "./media/characters/aman-aquila/side.svg",
  24660. extra: 1054 / 1011,
  24661. bottom: 15 / 1070
  24662. }
  24663. },
  24664. back: {
  24665. height: math.unit(5 + 7 / 12, "feet"),
  24666. weight: math.unit(185, "lb"),
  24667. name: "Back",
  24668. image: {
  24669. source: "./media/characters/aman-aquila/back.svg",
  24670. extra: 1026 / 970,
  24671. bottom: 12 / 1039
  24672. }
  24673. },
  24674. head: {
  24675. height: math.unit(1.211, "feet"),
  24676. name: "Head",
  24677. image: {
  24678. source: "./media/characters/aman-aquila/head.svg",
  24679. }
  24680. },
  24681. },
  24682. [
  24683. {
  24684. name: "Minimicro",
  24685. height: math.unit(0.057, "inches")
  24686. },
  24687. {
  24688. name: "Micro",
  24689. height: math.unit(7, "inches")
  24690. },
  24691. {
  24692. name: "Mini",
  24693. height: math.unit(3 + 7 / 12, "feet")
  24694. },
  24695. {
  24696. name: "Normal",
  24697. height: math.unit(5 + 7 / 12, "feet"),
  24698. default: true
  24699. },
  24700. {
  24701. name: "Macro",
  24702. height: math.unit(157 + 7 / 12, "feet")
  24703. },
  24704. {
  24705. name: "Megamacro",
  24706. height: math.unit(1557 + 7 / 12, "feet")
  24707. },
  24708. {
  24709. name: "Gigamacro",
  24710. height: math.unit(15557 + 7 / 12, "feet")
  24711. },
  24712. ]
  24713. ))
  24714. characterMakers.push(() => makeCharacter(
  24715. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24716. {
  24717. front: {
  24718. height: math.unit(3 + 2 / 12, "inches"),
  24719. weight: math.unit(0.3, "ounces"),
  24720. name: "Front",
  24721. image: {
  24722. source: "./media/characters/hiphae/front.svg",
  24723. extra: 1931 / 1683,
  24724. bottom: 24 / 1955
  24725. }
  24726. },
  24727. },
  24728. [
  24729. {
  24730. name: "Normal",
  24731. height: math.unit(3 + 1 / 2, "inches"),
  24732. default: true
  24733. },
  24734. ]
  24735. ))
  24736. characterMakers.push(() => makeCharacter(
  24737. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24738. {
  24739. front: {
  24740. height: math.unit(5 + 10 / 12, "feet"),
  24741. weight: math.unit(165, "lb"),
  24742. name: "Front",
  24743. image: {
  24744. source: "./media/characters/nicky/front.svg",
  24745. extra: 3144 / 2886,
  24746. bottom: 45.6 / 3192
  24747. }
  24748. },
  24749. back: {
  24750. height: math.unit(5 + 10 / 12, "feet"),
  24751. weight: math.unit(165, "lb"),
  24752. name: "Back",
  24753. image: {
  24754. source: "./media/characters/nicky/back.svg",
  24755. extra: 3055 / 2804,
  24756. bottom: 28.4 / 3087
  24757. }
  24758. },
  24759. frontclothed: {
  24760. height: math.unit(5 + 10 / 12, "feet"),
  24761. weight: math.unit(165, "lb"),
  24762. name: "Front-clothed",
  24763. image: {
  24764. source: "./media/characters/nicky/front-clothed.svg",
  24765. extra: 3184.9 / 2926.9,
  24766. bottom: 86.5 / 3239.9
  24767. }
  24768. },
  24769. foot: {
  24770. height: math.unit(1.16, "feet"),
  24771. name: "Foot",
  24772. image: {
  24773. source: "./media/characters/nicky/foot.svg"
  24774. }
  24775. },
  24776. feet: {
  24777. height: math.unit(1.34, "feet"),
  24778. name: "Feet",
  24779. image: {
  24780. source: "./media/characters/nicky/feet.svg"
  24781. }
  24782. },
  24783. maw: {
  24784. height: math.unit(0.9, "feet"),
  24785. name: "Maw",
  24786. image: {
  24787. source: "./media/characters/nicky/maw.svg"
  24788. }
  24789. },
  24790. },
  24791. [
  24792. {
  24793. name: "Normal",
  24794. height: math.unit(5 + 10 / 12, "feet"),
  24795. default: true
  24796. },
  24797. {
  24798. name: "Macro",
  24799. height: math.unit(60, "feet")
  24800. },
  24801. {
  24802. name: "Megamacro",
  24803. height: math.unit(1, "mile")
  24804. },
  24805. ]
  24806. ))
  24807. characterMakers.push(() => makeCharacter(
  24808. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24809. {
  24810. side: {
  24811. height: math.unit(10, "feet"),
  24812. weight: math.unit(600, "lb"),
  24813. name: "Side",
  24814. image: {
  24815. source: "./media/characters/blair/side.svg",
  24816. bottom: 16.6 / 475,
  24817. extra: 458 / 431
  24818. }
  24819. },
  24820. },
  24821. [
  24822. {
  24823. name: "Micro",
  24824. height: math.unit(8, "inches")
  24825. },
  24826. {
  24827. name: "Normal",
  24828. height: math.unit(10, "feet"),
  24829. default: true
  24830. },
  24831. {
  24832. name: "Macro",
  24833. height: math.unit(180, "feet")
  24834. },
  24835. ]
  24836. ))
  24837. characterMakers.push(() => makeCharacter(
  24838. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24839. {
  24840. front: {
  24841. height: math.unit(5 + 4 / 12, "feet"),
  24842. weight: math.unit(125, "lb"),
  24843. name: "Front",
  24844. image: {
  24845. source: "./media/characters/fisher/front.svg",
  24846. extra: 444 / 390,
  24847. bottom: 2 / 444.8
  24848. }
  24849. },
  24850. },
  24851. [
  24852. {
  24853. name: "Micro",
  24854. height: math.unit(4, "inches")
  24855. },
  24856. {
  24857. name: "Normal",
  24858. height: math.unit(5 + 4 / 12, "feet"),
  24859. default: true
  24860. },
  24861. {
  24862. name: "Macro",
  24863. height: math.unit(100, "feet")
  24864. },
  24865. ]
  24866. ))
  24867. characterMakers.push(() => makeCharacter(
  24868. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24869. {
  24870. front: {
  24871. height: math.unit(6.71, "feet"),
  24872. weight: math.unit(200, "lb"),
  24873. capacity: math.unit(1000000, "people"),
  24874. name: "Front",
  24875. image: {
  24876. source: "./media/characters/gliss/front.svg",
  24877. extra: 2347 / 2231,
  24878. bottom: 113 / 2462
  24879. }
  24880. },
  24881. hammerspaceSize: {
  24882. height: math.unit(6.71 * 717, "feet"),
  24883. weight: math.unit(200, "lb"),
  24884. capacity: math.unit(1000000, "people"),
  24885. name: "Hammerspace Size",
  24886. image: {
  24887. source: "./media/characters/gliss/front.svg",
  24888. extra: 2347 / 2231,
  24889. bottom: 113 / 2462
  24890. }
  24891. },
  24892. },
  24893. [
  24894. {
  24895. name: "Normal",
  24896. height: math.unit(6.71, "feet"),
  24897. default: true
  24898. },
  24899. ]
  24900. ))
  24901. characterMakers.push(() => makeCharacter(
  24902. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24903. {
  24904. side: {
  24905. height: math.unit(1.44, "m"),
  24906. weight: math.unit(80, "kg"),
  24907. name: "Side",
  24908. image: {
  24909. source: "./media/characters/dune-anderson/side.svg",
  24910. bottom: 49 / 1426
  24911. }
  24912. },
  24913. },
  24914. [
  24915. {
  24916. name: "Wolf-sized",
  24917. height: math.unit(1.44, "meters")
  24918. },
  24919. {
  24920. name: "Normal",
  24921. height: math.unit(5.05, "meters"),
  24922. default: true
  24923. },
  24924. {
  24925. name: "Big",
  24926. height: math.unit(14.4, "meters")
  24927. },
  24928. {
  24929. name: "Huge",
  24930. height: math.unit(144, "meters")
  24931. },
  24932. ]
  24933. ))
  24934. characterMakers.push(() => makeCharacter(
  24935. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24936. {
  24937. front: {
  24938. height: math.unit(7, "feet"),
  24939. weight: math.unit(425, "lb"),
  24940. name: "Front",
  24941. image: {
  24942. source: "./media/characters/hind/front.svg",
  24943. extra: 2091 / 1860,
  24944. bottom: 129 / 2220
  24945. }
  24946. },
  24947. back: {
  24948. height: math.unit(7, "feet"),
  24949. weight: math.unit(425, "lb"),
  24950. name: "Back",
  24951. image: {
  24952. source: "./media/characters/hind/back.svg",
  24953. extra: 2091 / 1860,
  24954. bottom: 24.6 / 2309
  24955. }
  24956. },
  24957. tail: {
  24958. height: math.unit(2.8, "feet"),
  24959. name: "Tail",
  24960. image: {
  24961. source: "./media/characters/hind/tail.svg"
  24962. }
  24963. },
  24964. head: {
  24965. height: math.unit(2.55, "feet"),
  24966. name: "Head",
  24967. image: {
  24968. source: "./media/characters/hind/head.svg"
  24969. }
  24970. },
  24971. },
  24972. [
  24973. {
  24974. name: "XS",
  24975. height: math.unit(0.7, "feet")
  24976. },
  24977. {
  24978. name: "Normal",
  24979. height: math.unit(7, "feet"),
  24980. default: true
  24981. },
  24982. {
  24983. name: "XL",
  24984. height: math.unit(70, "feet")
  24985. },
  24986. ]
  24987. ))
  24988. characterMakers.push(() => makeCharacter(
  24989. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24990. {
  24991. front: {
  24992. height: math.unit(2.1, "meters"),
  24993. weight: math.unit(150, "lb"),
  24994. name: "Front",
  24995. image: {
  24996. source: "./media/characters/tharquench-sizestealer/front.svg",
  24997. extra: 1605/1470,
  24998. bottom: 36/1641
  24999. }
  25000. },
  25001. frontAlt: {
  25002. height: math.unit(2.1, "meters"),
  25003. weight: math.unit(150, "lb"),
  25004. name: "Front (Alt)",
  25005. image: {
  25006. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25007. extra: 2318 / 2063,
  25008. bottom: 93.4 / 2410
  25009. }
  25010. },
  25011. },
  25012. [
  25013. {
  25014. name: "Nano",
  25015. height: math.unit(1, "mm")
  25016. },
  25017. {
  25018. name: "Micro",
  25019. height: math.unit(1, "cm")
  25020. },
  25021. {
  25022. name: "Normal",
  25023. height: math.unit(2.1, "meters"),
  25024. default: true
  25025. },
  25026. ]
  25027. ))
  25028. characterMakers.push(() => makeCharacter(
  25029. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25030. {
  25031. front: {
  25032. height: math.unit(7 + 5 / 12, "feet"),
  25033. weight: math.unit(357, "lb"),
  25034. name: "Front",
  25035. image: {
  25036. source: "./media/characters/solex-draconov/front.svg",
  25037. extra: 1993 / 1865,
  25038. bottom: 117 / 2111
  25039. }
  25040. },
  25041. },
  25042. [
  25043. {
  25044. name: "Natural Height",
  25045. height: math.unit(7 + 5 / 12, "feet"),
  25046. default: true
  25047. },
  25048. {
  25049. name: "Macro",
  25050. height: math.unit(350, "feet")
  25051. },
  25052. {
  25053. name: "Macro+",
  25054. height: math.unit(1000, "feet")
  25055. },
  25056. {
  25057. name: "Megamacro",
  25058. height: math.unit(20, "km")
  25059. },
  25060. {
  25061. name: "Megamacro+",
  25062. height: math.unit(1000, "km")
  25063. },
  25064. {
  25065. name: "Gigamacro",
  25066. height: math.unit(2.5, "Gm")
  25067. },
  25068. {
  25069. name: "Teramacro",
  25070. height: math.unit(15, "Tm")
  25071. },
  25072. {
  25073. name: "Galactic",
  25074. height: math.unit(30, "Zm")
  25075. },
  25076. {
  25077. name: "Universal",
  25078. height: math.unit(21000, "Ym")
  25079. },
  25080. {
  25081. name: "Omniversal",
  25082. height: math.unit(9.861e50, "Ym")
  25083. },
  25084. {
  25085. name: "Existential",
  25086. height: math.unit(1e300, "meters")
  25087. },
  25088. ]
  25089. ))
  25090. characterMakers.push(() => makeCharacter(
  25091. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25092. {
  25093. side: {
  25094. height: math.unit(25, "feet"),
  25095. weight: math.unit(90000, "lb"),
  25096. name: "Side",
  25097. image: {
  25098. source: "./media/characters/mandarax/side.svg",
  25099. extra: 614 / 332,
  25100. bottom: 55 / 630
  25101. }
  25102. },
  25103. head: {
  25104. height: math.unit(11.4, "feet"),
  25105. name: "Head",
  25106. image: {
  25107. source: "./media/characters/mandarax/head.svg"
  25108. }
  25109. },
  25110. belly: {
  25111. height: math.unit(33, "feet"),
  25112. name: "Belly",
  25113. capacity: math.unit(500, "people"),
  25114. image: {
  25115. source: "./media/characters/mandarax/belly.svg"
  25116. }
  25117. },
  25118. dick: {
  25119. height: math.unit(8.46, "feet"),
  25120. name: "Dick",
  25121. image: {
  25122. source: "./media/characters/mandarax/dick.svg"
  25123. }
  25124. },
  25125. top: {
  25126. height: math.unit(28, "meters"),
  25127. name: "Top",
  25128. image: {
  25129. source: "./media/characters/mandarax/top.svg"
  25130. }
  25131. },
  25132. },
  25133. [
  25134. {
  25135. name: "Normal",
  25136. height: math.unit(25, "feet"),
  25137. default: true
  25138. },
  25139. ]
  25140. ))
  25141. characterMakers.push(() => makeCharacter(
  25142. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25143. {
  25144. front: {
  25145. height: math.unit(5, "feet"),
  25146. weight: math.unit(90, "lb"),
  25147. name: "Front",
  25148. image: {
  25149. source: "./media/characters/pixil/front.svg",
  25150. extra: 2000 / 1618,
  25151. bottom: 12.3 / 2011
  25152. }
  25153. },
  25154. },
  25155. [
  25156. {
  25157. name: "Normal",
  25158. height: math.unit(5, "feet"),
  25159. default: true
  25160. },
  25161. {
  25162. name: "Megamacro",
  25163. height: math.unit(10, "miles"),
  25164. },
  25165. ]
  25166. ))
  25167. characterMakers.push(() => makeCharacter(
  25168. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25169. {
  25170. front: {
  25171. height: math.unit(7 + 2 / 12, "feet"),
  25172. weight: math.unit(200, "lb"),
  25173. name: "Front",
  25174. image: {
  25175. source: "./media/characters/angel/front.svg",
  25176. extra: 1830 / 1737,
  25177. bottom: 22.6 / 1854,
  25178. }
  25179. },
  25180. },
  25181. [
  25182. {
  25183. name: "Normal",
  25184. height: math.unit(7 + 2 / 12, "feet"),
  25185. default: true
  25186. },
  25187. {
  25188. name: "Macro",
  25189. height: math.unit(1000, "feet")
  25190. },
  25191. {
  25192. name: "Megamacro",
  25193. height: math.unit(2, "miles")
  25194. },
  25195. {
  25196. name: "Gigamacro",
  25197. height: math.unit(20, "earths")
  25198. },
  25199. ]
  25200. ))
  25201. characterMakers.push(() => makeCharacter(
  25202. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25203. {
  25204. front: {
  25205. height: math.unit(5, "feet"),
  25206. weight: math.unit(180, "lb"),
  25207. name: "Front",
  25208. image: {
  25209. source: "./media/characters/mekana/front.svg",
  25210. extra: 1671 / 1605,
  25211. bottom: 3.5 / 1691
  25212. }
  25213. },
  25214. side: {
  25215. height: math.unit(5, "feet"),
  25216. weight: math.unit(180, "lb"),
  25217. name: "Side",
  25218. image: {
  25219. source: "./media/characters/mekana/side.svg",
  25220. extra: 1671 / 1605,
  25221. bottom: 3.5 / 1691
  25222. }
  25223. },
  25224. back: {
  25225. height: math.unit(5, "feet"),
  25226. weight: math.unit(180, "lb"),
  25227. name: "Back",
  25228. image: {
  25229. source: "./media/characters/mekana/back.svg",
  25230. extra: 1671 / 1605,
  25231. bottom: 3.5 / 1691
  25232. }
  25233. },
  25234. },
  25235. [
  25236. {
  25237. name: "Normal",
  25238. height: math.unit(5, "feet"),
  25239. default: true
  25240. },
  25241. ]
  25242. ))
  25243. characterMakers.push(() => makeCharacter(
  25244. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25245. {
  25246. front: {
  25247. height: math.unit(4 + 6 / 12, "feet"),
  25248. weight: math.unit(80, "lb"),
  25249. name: "Front",
  25250. image: {
  25251. source: "./media/characters/pixie/front.svg",
  25252. extra: 1924 / 1825,
  25253. bottom: 22.4 / 1946
  25254. }
  25255. },
  25256. },
  25257. [
  25258. {
  25259. name: "Normal",
  25260. height: math.unit(4 + 6 / 12, "feet"),
  25261. default: true
  25262. },
  25263. {
  25264. name: "Macro",
  25265. height: math.unit(40, "feet")
  25266. },
  25267. ]
  25268. ))
  25269. characterMakers.push(() => makeCharacter(
  25270. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25271. {
  25272. front: {
  25273. height: math.unit(2.1, "meters"),
  25274. weight: math.unit(200, "lb"),
  25275. name: "Front",
  25276. image: {
  25277. source: "./media/characters/the-lascivious/front.svg",
  25278. extra: 1 / 0.893,
  25279. bottom: 3.5 / 573.7
  25280. }
  25281. },
  25282. },
  25283. [
  25284. {
  25285. name: "Human Scale",
  25286. height: math.unit(2.1, "meters")
  25287. },
  25288. {
  25289. name: "Wolxi Scale",
  25290. height: math.unit(46.2, "m"),
  25291. default: true
  25292. },
  25293. {
  25294. name: "Boinker of Buildings",
  25295. height: math.unit(10, "km")
  25296. },
  25297. {
  25298. name: "Shagger of Skyscrapers",
  25299. height: math.unit(40, "km")
  25300. },
  25301. {
  25302. name: "Banger of Boroughs",
  25303. height: math.unit(4000, "km")
  25304. },
  25305. {
  25306. name: "Screwer of States",
  25307. height: math.unit(100000, "km")
  25308. },
  25309. {
  25310. name: "Pounder of Planets",
  25311. height: math.unit(2000000, "km")
  25312. },
  25313. ]
  25314. ))
  25315. characterMakers.push(() => makeCharacter(
  25316. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25317. {
  25318. front: {
  25319. height: math.unit(6, "feet"),
  25320. weight: math.unit(150, "lb"),
  25321. name: "Front",
  25322. image: {
  25323. source: "./media/characters/aj/front.svg",
  25324. extra: 2039 / 1562,
  25325. bottom: 40 / 2079
  25326. }
  25327. },
  25328. },
  25329. [
  25330. {
  25331. name: "Normal",
  25332. height: math.unit(11 + 6 / 12, "feet"),
  25333. default: true
  25334. },
  25335. {
  25336. name: "Megamacro",
  25337. height: math.unit(60, "megameters")
  25338. },
  25339. ]
  25340. ))
  25341. characterMakers.push(() => makeCharacter(
  25342. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25343. {
  25344. side: {
  25345. height: math.unit(31 + 8 / 12, "feet"),
  25346. weight: math.unit(75000, "kg"),
  25347. name: "Side",
  25348. image: {
  25349. source: "./media/characters/koros/side.svg",
  25350. extra: 1442 / 1297,
  25351. bottom: 122.7 / 1562
  25352. }
  25353. },
  25354. dicksKingsCrown: {
  25355. height: math.unit(6, "feet"),
  25356. name: "Dicks (King's Crown)",
  25357. image: {
  25358. source: "./media/characters/koros/dicks-kings-crown.svg"
  25359. }
  25360. },
  25361. dicksTailSet: {
  25362. height: math.unit(3, "feet"),
  25363. name: "Dicks (Tail Set)",
  25364. image: {
  25365. source: "./media/characters/koros/dicks-tail-set.svg"
  25366. }
  25367. },
  25368. dickCumming: {
  25369. height: math.unit(7.98, "feet"),
  25370. name: "Dick (Cumming)",
  25371. image: {
  25372. source: "./media/characters/koros/dick-cumming.svg"
  25373. }
  25374. },
  25375. dicksBack: {
  25376. height: math.unit(5.9, "feet"),
  25377. name: "Dicks (Back)",
  25378. image: {
  25379. source: "./media/characters/koros/dicks-back.svg"
  25380. }
  25381. },
  25382. dicksFront: {
  25383. height: math.unit(3.72, "feet"),
  25384. name: "Dicks (Front)",
  25385. image: {
  25386. source: "./media/characters/koros/dicks-front.svg"
  25387. }
  25388. },
  25389. dicksPeeking: {
  25390. height: math.unit(3.0, "feet"),
  25391. name: "Dicks (Peeking)",
  25392. image: {
  25393. source: "./media/characters/koros/dicks-peeking.svg"
  25394. }
  25395. },
  25396. eye: {
  25397. height: math.unit(1.7, "feet"),
  25398. name: "Eye",
  25399. image: {
  25400. source: "./media/characters/koros/eye.svg"
  25401. }
  25402. },
  25403. headFront: {
  25404. height: math.unit(11.69, "feet"),
  25405. name: "Head (Front)",
  25406. image: {
  25407. source: "./media/characters/koros/head-front.svg"
  25408. }
  25409. },
  25410. headSide: {
  25411. height: math.unit(14, "feet"),
  25412. name: "Head (Side)",
  25413. image: {
  25414. source: "./media/characters/koros/head-side.svg"
  25415. }
  25416. },
  25417. leg: {
  25418. height: math.unit(17, "feet"),
  25419. name: "Leg",
  25420. image: {
  25421. source: "./media/characters/koros/leg.svg"
  25422. }
  25423. },
  25424. mawSide: {
  25425. height: math.unit(12.8, "feet"),
  25426. name: "Maw (Side)",
  25427. image: {
  25428. source: "./media/characters/koros/maw-side.svg"
  25429. }
  25430. },
  25431. mawSpitting: {
  25432. height: math.unit(17, "feet"),
  25433. name: "Maw (Spitting)",
  25434. image: {
  25435. source: "./media/characters/koros/maw-spitting.svg"
  25436. }
  25437. },
  25438. slit: {
  25439. height: math.unit(2.8, "feet"),
  25440. name: "Slit",
  25441. image: {
  25442. source: "./media/characters/koros/slit.svg"
  25443. }
  25444. },
  25445. stomach: {
  25446. height: math.unit(6.8, "feet"),
  25447. capacity: math.unit(20, "people"),
  25448. name: "Stomach",
  25449. image: {
  25450. source: "./media/characters/koros/stomach.svg"
  25451. }
  25452. },
  25453. wingspanBottom: {
  25454. height: math.unit(114, "feet"),
  25455. name: "Wingspan (Bottom)",
  25456. image: {
  25457. source: "./media/characters/koros/wingspan-bottom.svg"
  25458. }
  25459. },
  25460. wingspanTop: {
  25461. height: math.unit(104, "feet"),
  25462. name: "Wingspan (Top)",
  25463. image: {
  25464. source: "./media/characters/koros/wingspan-top.svg"
  25465. }
  25466. },
  25467. },
  25468. [
  25469. {
  25470. name: "Normal",
  25471. height: math.unit(31 + 8 / 12, "feet"),
  25472. default: true
  25473. },
  25474. ]
  25475. ))
  25476. characterMakers.push(() => makeCharacter(
  25477. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25478. {
  25479. front: {
  25480. height: math.unit(18 + 5 / 12, "feet"),
  25481. weight: math.unit(3750, "kg"),
  25482. name: "Front",
  25483. image: {
  25484. source: "./media/characters/vexx/front.svg",
  25485. extra: 426 / 396,
  25486. bottom: 31.5 / 458
  25487. }
  25488. },
  25489. maw: {
  25490. height: math.unit(6, "feet"),
  25491. name: "Maw",
  25492. image: {
  25493. source: "./media/characters/vexx/maw.svg"
  25494. }
  25495. },
  25496. },
  25497. [
  25498. {
  25499. name: "Normal",
  25500. height: math.unit(18 + 5 / 12, "feet"),
  25501. default: true
  25502. },
  25503. ]
  25504. ))
  25505. characterMakers.push(() => makeCharacter(
  25506. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25507. {
  25508. front: {
  25509. height: math.unit(17 + 6 / 12, "feet"),
  25510. weight: math.unit(150, "lb"),
  25511. name: "Front",
  25512. image: {
  25513. source: "./media/characters/baadra/front.svg",
  25514. extra: 3137 / 2890,
  25515. bottom: 168.4 / 3305
  25516. }
  25517. },
  25518. back: {
  25519. height: math.unit(17 + 6 / 12, "feet"),
  25520. weight: math.unit(150, "lb"),
  25521. name: "Back",
  25522. image: {
  25523. source: "./media/characters/baadra/back.svg",
  25524. extra: 3142 / 2890,
  25525. bottom: 220 / 3371
  25526. }
  25527. },
  25528. head: {
  25529. height: math.unit(5.45, "feet"),
  25530. name: "Head",
  25531. image: {
  25532. source: "./media/characters/baadra/head.svg"
  25533. }
  25534. },
  25535. headAngry: {
  25536. height: math.unit(4.95, "feet"),
  25537. name: "Head (Angry)",
  25538. image: {
  25539. source: "./media/characters/baadra/head-angry.svg"
  25540. }
  25541. },
  25542. headOpen: {
  25543. height: math.unit(6, "feet"),
  25544. name: "Head (Open)",
  25545. image: {
  25546. source: "./media/characters/baadra/head-open.svg"
  25547. }
  25548. },
  25549. },
  25550. [
  25551. {
  25552. name: "Normal",
  25553. height: math.unit(17 + 6 / 12, "feet"),
  25554. default: true
  25555. },
  25556. ]
  25557. ))
  25558. characterMakers.push(() => makeCharacter(
  25559. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25560. {
  25561. front: {
  25562. height: math.unit(7 + 3 / 12, "feet"),
  25563. weight: math.unit(180, "lb"),
  25564. name: "Front",
  25565. image: {
  25566. source: "./media/characters/juri/front.svg",
  25567. extra: 1401 / 1237,
  25568. bottom: 18.5 / 1418
  25569. }
  25570. },
  25571. side: {
  25572. height: math.unit(7 + 3 / 12, "feet"),
  25573. weight: math.unit(180, "lb"),
  25574. name: "Side",
  25575. image: {
  25576. source: "./media/characters/juri/side.svg",
  25577. extra: 1424 / 1242,
  25578. bottom: 18.5 / 1447
  25579. }
  25580. },
  25581. sitting: {
  25582. height: math.unit(6, "feet"),
  25583. weight: math.unit(180, "lb"),
  25584. name: "Sitting",
  25585. image: {
  25586. source: "./media/characters/juri/sitting.svg",
  25587. extra: 1270 / 1143,
  25588. bottom: 100 / 1343
  25589. }
  25590. },
  25591. back: {
  25592. height: math.unit(7 + 3 / 12, "feet"),
  25593. weight: math.unit(180, "lb"),
  25594. name: "Back",
  25595. image: {
  25596. source: "./media/characters/juri/back.svg",
  25597. extra: 1377 / 1240,
  25598. bottom: 23.7 / 1405
  25599. }
  25600. },
  25601. maw: {
  25602. height: math.unit(2.8, "feet"),
  25603. name: "Maw",
  25604. image: {
  25605. source: "./media/characters/juri/maw.svg"
  25606. }
  25607. },
  25608. stomach: {
  25609. height: math.unit(0.89, "feet"),
  25610. capacity: math.unit(4, "liters"),
  25611. name: "Stomach",
  25612. image: {
  25613. source: "./media/characters/juri/stomach.svg"
  25614. }
  25615. },
  25616. },
  25617. [
  25618. {
  25619. name: "Normal",
  25620. height: math.unit(7 + 3 / 12, "feet"),
  25621. default: true
  25622. },
  25623. ]
  25624. ))
  25625. characterMakers.push(() => makeCharacter(
  25626. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25627. {
  25628. fox: {
  25629. height: math.unit(5 + 6 / 12, "feet"),
  25630. weight: math.unit(140, "lb"),
  25631. name: "Fox",
  25632. image: {
  25633. source: "./media/characters/maxene-sita/fox.svg",
  25634. extra: 146 / 138,
  25635. bottom: 2.1 / 148.19
  25636. }
  25637. },
  25638. foxLaying: {
  25639. height: math.unit(1.70, "feet"),
  25640. weight: math.unit(140, "lb"),
  25641. name: "Fox (Laying)",
  25642. image: {
  25643. source: "./media/characters/maxene-sita/fox-laying.svg",
  25644. extra: 910 / 572,
  25645. bottom: 71 / 981
  25646. }
  25647. },
  25648. kitsune: {
  25649. height: math.unit(10, "feet"),
  25650. weight: math.unit(800, "lb"),
  25651. name: "Kitsune",
  25652. image: {
  25653. source: "./media/characters/maxene-sita/kitsune.svg",
  25654. extra: 185 / 176,
  25655. bottom: 4.7 / 189.9
  25656. }
  25657. },
  25658. hellhound: {
  25659. height: math.unit(10, "feet"),
  25660. weight: math.unit(700, "lb"),
  25661. name: "Hellhound",
  25662. image: {
  25663. source: "./media/characters/maxene-sita/hellhound.svg",
  25664. extra: 1600 / 1545,
  25665. bottom: 81 / 1681
  25666. }
  25667. },
  25668. },
  25669. [
  25670. {
  25671. name: "Normal",
  25672. height: math.unit(5 + 6 / 12, "feet"),
  25673. default: true
  25674. },
  25675. ]
  25676. ))
  25677. characterMakers.push(() => makeCharacter(
  25678. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25679. {
  25680. front: {
  25681. height: math.unit(3 + 4 / 12, "feet"),
  25682. weight: math.unit(70, "lb"),
  25683. name: "Front",
  25684. image: {
  25685. source: "./media/characters/maia/front.svg",
  25686. extra: 227 / 219.5,
  25687. bottom: 40 / 267
  25688. }
  25689. },
  25690. back: {
  25691. height: math.unit(3 + 4 / 12, "feet"),
  25692. weight: math.unit(70, "lb"),
  25693. name: "Back",
  25694. image: {
  25695. source: "./media/characters/maia/back.svg",
  25696. extra: 237 / 225
  25697. }
  25698. },
  25699. },
  25700. [
  25701. {
  25702. name: "Normal",
  25703. height: math.unit(3 + 4 / 12, "feet"),
  25704. default: true
  25705. },
  25706. ]
  25707. ))
  25708. characterMakers.push(() => makeCharacter(
  25709. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25710. {
  25711. front: {
  25712. height: math.unit(5 + 10 / 12, "feet"),
  25713. weight: math.unit(197, "lb"),
  25714. name: "Front",
  25715. image: {
  25716. source: "./media/characters/jabaro/front.svg",
  25717. extra: 225 / 216,
  25718. bottom: 5.06 / 230
  25719. }
  25720. },
  25721. back: {
  25722. height: math.unit(5 + 10 / 12, "feet"),
  25723. weight: math.unit(197, "lb"),
  25724. name: "Back",
  25725. image: {
  25726. source: "./media/characters/jabaro/back.svg",
  25727. extra: 225 / 219,
  25728. bottom: 1.9 / 227
  25729. }
  25730. },
  25731. },
  25732. [
  25733. {
  25734. name: "Normal",
  25735. height: math.unit(5 + 10 / 12, "feet"),
  25736. default: true
  25737. },
  25738. ]
  25739. ))
  25740. characterMakers.push(() => makeCharacter(
  25741. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25742. {
  25743. front: {
  25744. height: math.unit(5 + 8 / 12, "feet"),
  25745. weight: math.unit(139, "lb"),
  25746. name: "Front",
  25747. image: {
  25748. source: "./media/characters/risa/front.svg",
  25749. extra: 270 / 260,
  25750. bottom: 11.2 / 282
  25751. }
  25752. },
  25753. back: {
  25754. height: math.unit(5 + 8 / 12, "feet"),
  25755. weight: math.unit(139, "lb"),
  25756. name: "Back",
  25757. image: {
  25758. source: "./media/characters/risa/back.svg",
  25759. extra: 264 / 255,
  25760. bottom: 4 / 268
  25761. }
  25762. },
  25763. },
  25764. [
  25765. {
  25766. name: "Normal",
  25767. height: math.unit(5 + 8 / 12, "feet"),
  25768. default: true
  25769. },
  25770. ]
  25771. ))
  25772. characterMakers.push(() => makeCharacter(
  25773. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25774. {
  25775. front: {
  25776. height: math.unit(2 + 11 / 12, "feet"),
  25777. weight: math.unit(30, "lb"),
  25778. name: "Front",
  25779. image: {
  25780. source: "./media/characters/weatley/front.svg",
  25781. bottom: 10.7 / 414,
  25782. extra: 403.5 / 362
  25783. }
  25784. },
  25785. back: {
  25786. height: math.unit(2 + 11 / 12, "feet"),
  25787. weight: math.unit(30, "lb"),
  25788. name: "Back",
  25789. image: {
  25790. source: "./media/characters/weatley/back.svg",
  25791. bottom: 10.7 / 414,
  25792. extra: 403.5 / 362
  25793. }
  25794. },
  25795. },
  25796. [
  25797. {
  25798. name: "Normal",
  25799. height: math.unit(2 + 11 / 12, "feet"),
  25800. default: true
  25801. },
  25802. ]
  25803. ))
  25804. characterMakers.push(() => makeCharacter(
  25805. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25806. {
  25807. front: {
  25808. height: math.unit(5 + 2 / 12, "feet"),
  25809. weight: math.unit(50, "kg"),
  25810. name: "Front",
  25811. image: {
  25812. source: "./media/characters/mercury-crescent/front.svg",
  25813. extra: 1088 / 1033,
  25814. bottom: 18.9 / 1109
  25815. }
  25816. },
  25817. },
  25818. [
  25819. {
  25820. name: "Normal",
  25821. height: math.unit(5 + 2 / 12, "feet"),
  25822. default: true
  25823. },
  25824. ]
  25825. ))
  25826. characterMakers.push(() => makeCharacter(
  25827. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25828. {
  25829. front: {
  25830. height: math.unit(2, "feet"),
  25831. weight: math.unit(15, "kg"),
  25832. name: "Front",
  25833. image: {
  25834. source: "./media/characters/diamond-jones/front.svg",
  25835. extra: 727/723,
  25836. bottom: 46/773
  25837. }
  25838. },
  25839. },
  25840. [
  25841. {
  25842. name: "Normal",
  25843. height: math.unit(2, "feet"),
  25844. default: true
  25845. },
  25846. ]
  25847. ))
  25848. characterMakers.push(() => makeCharacter(
  25849. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25850. {
  25851. front: {
  25852. height: math.unit(3, "feet"),
  25853. weight: math.unit(30, "kg"),
  25854. name: "Front",
  25855. image: {
  25856. source: "./media/characters/sweet-bit/front.svg",
  25857. extra: 675 / 567,
  25858. bottom: 27.7 / 703
  25859. }
  25860. },
  25861. },
  25862. [
  25863. {
  25864. name: "Normal",
  25865. height: math.unit(3, "feet"),
  25866. default: true
  25867. },
  25868. ]
  25869. ))
  25870. characterMakers.push(() => makeCharacter(
  25871. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25872. {
  25873. side: {
  25874. height: math.unit(9.178, "feet"),
  25875. weight: math.unit(500, "lb"),
  25876. name: "Side",
  25877. image: {
  25878. source: "./media/characters/umbrazen/side.svg",
  25879. extra: 1730 / 1473,
  25880. bottom: 34.6 / 1765
  25881. }
  25882. },
  25883. },
  25884. [
  25885. {
  25886. name: "Normal",
  25887. height: math.unit(9.178, "feet"),
  25888. default: true
  25889. },
  25890. ]
  25891. ))
  25892. characterMakers.push(() => makeCharacter(
  25893. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25894. {
  25895. front: {
  25896. height: math.unit(10, "feet"),
  25897. weight: math.unit(750, "lb"),
  25898. name: "Front",
  25899. image: {
  25900. source: "./media/characters/arlist/front.svg",
  25901. extra: 961 / 778,
  25902. bottom: 6.2 / 986
  25903. }
  25904. },
  25905. },
  25906. [
  25907. {
  25908. name: "Normal",
  25909. height: math.unit(10, "feet"),
  25910. default: true
  25911. },
  25912. ]
  25913. ))
  25914. characterMakers.push(() => makeCharacter(
  25915. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25916. {
  25917. front: {
  25918. height: math.unit(5 + 1 / 12, "feet"),
  25919. weight: math.unit(110, "lb"),
  25920. name: "Front",
  25921. image: {
  25922. source: "./media/characters/aradel/front.svg",
  25923. extra: 324 / 303,
  25924. bottom: 3.6 / 329.4
  25925. }
  25926. },
  25927. },
  25928. [
  25929. {
  25930. name: "Normal",
  25931. height: math.unit(5 + 1 / 12, "feet"),
  25932. default: true
  25933. },
  25934. ]
  25935. ))
  25936. characterMakers.push(() => makeCharacter(
  25937. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25938. {
  25939. front: {
  25940. height: math.unit(3 + 8 / 12, "feet"),
  25941. weight: math.unit(50, "lb"),
  25942. name: "Front",
  25943. image: {
  25944. source: "./media/characters/serryn/front.svg",
  25945. extra: 1792 / 1656,
  25946. bottom: 43.5 / 1840
  25947. }
  25948. },
  25949. },
  25950. [
  25951. {
  25952. name: "Normal",
  25953. height: math.unit(3 + 8 / 12, "feet"),
  25954. default: true
  25955. },
  25956. ]
  25957. ))
  25958. characterMakers.push(() => makeCharacter(
  25959. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25960. {
  25961. front: {
  25962. height: math.unit(7 + 10 / 12, "feet"),
  25963. weight: math.unit(255, "lb"),
  25964. name: "Front",
  25965. image: {
  25966. source: "./media/characters/xavier-thyme/front.svg",
  25967. extra: 3733 / 3642,
  25968. bottom: 131 / 3869
  25969. }
  25970. },
  25971. frontRaven: {
  25972. height: math.unit(7 + 10 / 12, "feet"),
  25973. weight: math.unit(255, "lb"),
  25974. name: "Front (Raven)",
  25975. image: {
  25976. source: "./media/characters/xavier-thyme/front-raven.svg",
  25977. extra: 4385 / 3642,
  25978. bottom: 131 / 4517
  25979. }
  25980. },
  25981. },
  25982. [
  25983. {
  25984. name: "Normal",
  25985. height: math.unit(7 + 10 / 12, "feet"),
  25986. default: true
  25987. },
  25988. ]
  25989. ))
  25990. characterMakers.push(() => makeCharacter(
  25991. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25992. {
  25993. front: {
  25994. height: math.unit(1.6, "m"),
  25995. weight: math.unit(50, "kg"),
  25996. name: "Front",
  25997. image: {
  25998. source: "./media/characters/kiki/front.svg",
  25999. extra: 4682 / 3610,
  26000. bottom: 115 / 4777
  26001. }
  26002. },
  26003. },
  26004. [
  26005. {
  26006. name: "Normal",
  26007. height: math.unit(1.6, "meters"),
  26008. default: true
  26009. },
  26010. ]
  26011. ))
  26012. characterMakers.push(() => makeCharacter(
  26013. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26014. {
  26015. front: {
  26016. height: math.unit(50, "m"),
  26017. weight: math.unit(500, "tonnes"),
  26018. name: "Front",
  26019. image: {
  26020. source: "./media/characters/ryoko/front.svg",
  26021. extra: 4632 / 3926,
  26022. bottom: 193 / 4823
  26023. }
  26024. },
  26025. },
  26026. [
  26027. {
  26028. name: "Normal",
  26029. height: math.unit(50, "meters"),
  26030. default: true
  26031. },
  26032. ]
  26033. ))
  26034. characterMakers.push(() => makeCharacter(
  26035. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26036. {
  26037. front: {
  26038. height: math.unit(30, "m"),
  26039. weight: math.unit(22, "tonnes"),
  26040. name: "Front",
  26041. image: {
  26042. source: "./media/characters/elio/front.svg",
  26043. extra: 4582 / 3720,
  26044. bottom: 236 / 4828
  26045. }
  26046. },
  26047. },
  26048. [
  26049. {
  26050. name: "Normal",
  26051. height: math.unit(30, "meters"),
  26052. default: true
  26053. },
  26054. ]
  26055. ))
  26056. characterMakers.push(() => makeCharacter(
  26057. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26058. {
  26059. front: {
  26060. height: math.unit(6 + 3 / 12, "feet"),
  26061. weight: math.unit(120, "lb"),
  26062. name: "Front",
  26063. image: {
  26064. source: "./media/characters/azura/front.svg",
  26065. extra: 1149 / 1135,
  26066. bottom: 45 / 1194
  26067. }
  26068. },
  26069. frontClothed: {
  26070. height: math.unit(6 + 3 / 12, "feet"),
  26071. weight: math.unit(120, "lb"),
  26072. name: "Front (Clothed)",
  26073. image: {
  26074. source: "./media/characters/azura/front-clothed.svg",
  26075. extra: 1149 / 1135,
  26076. bottom: 45 / 1194
  26077. }
  26078. },
  26079. },
  26080. [
  26081. {
  26082. name: "Normal",
  26083. height: math.unit(6 + 3 / 12, "feet"),
  26084. default: true
  26085. },
  26086. {
  26087. name: "Macro",
  26088. height: math.unit(20 + 6 / 12, "feet")
  26089. },
  26090. {
  26091. name: "Megamacro",
  26092. height: math.unit(12, "miles")
  26093. },
  26094. {
  26095. name: "Gigamacro",
  26096. height: math.unit(10000, "miles")
  26097. },
  26098. {
  26099. name: "Teramacro",
  26100. height: math.unit(900000, "miles")
  26101. },
  26102. ]
  26103. ))
  26104. characterMakers.push(() => makeCharacter(
  26105. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26106. {
  26107. front: {
  26108. height: math.unit(12, "feet"),
  26109. weight: math.unit(1, "ton"),
  26110. capacity: math.unit(660000, "gallons"),
  26111. name: "Front",
  26112. image: {
  26113. source: "./media/characters/zeus/front.svg",
  26114. extra: 5005 / 4717,
  26115. bottom: 363 / 5388
  26116. }
  26117. },
  26118. },
  26119. [
  26120. {
  26121. name: "Normal",
  26122. height: math.unit(12, "feet")
  26123. },
  26124. {
  26125. name: "Preferred Size",
  26126. height: math.unit(0.5, "miles"),
  26127. default: true
  26128. },
  26129. {
  26130. name: "Giga Horse",
  26131. height: math.unit(300, "miles")
  26132. },
  26133. {
  26134. name: "Riding Planets",
  26135. height: math.unit(30, "megameters")
  26136. },
  26137. {
  26138. name: "Cosmic Giant",
  26139. height: math.unit(3, "zettameters")
  26140. },
  26141. {
  26142. name: "Breeding God",
  26143. height: math.unit(9.92e22, "yottameters")
  26144. },
  26145. ]
  26146. ))
  26147. characterMakers.push(() => makeCharacter(
  26148. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26149. {
  26150. side: {
  26151. height: math.unit(9, "feet"),
  26152. weight: math.unit(1500, "kg"),
  26153. name: "Side",
  26154. image: {
  26155. source: "./media/characters/fang/side.svg",
  26156. extra: 924 / 866,
  26157. bottom: 47.5 / 972.3
  26158. }
  26159. },
  26160. },
  26161. [
  26162. {
  26163. name: "Normal",
  26164. height: math.unit(9, "feet"),
  26165. default: true
  26166. },
  26167. {
  26168. name: "Macro",
  26169. height: math.unit(75 + 6 / 12, "feet")
  26170. },
  26171. {
  26172. name: "Teramacro",
  26173. height: math.unit(50000, "miles")
  26174. },
  26175. ]
  26176. ))
  26177. characterMakers.push(() => makeCharacter(
  26178. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26179. {
  26180. front: {
  26181. height: math.unit(10, "feet"),
  26182. weight: math.unit(2, "tons"),
  26183. name: "Front",
  26184. image: {
  26185. source: "./media/characters/rekhit/front.svg",
  26186. extra: 2796 / 2590,
  26187. bottom: 225 / 3022
  26188. }
  26189. },
  26190. },
  26191. [
  26192. {
  26193. name: "Normal",
  26194. height: math.unit(10, "feet"),
  26195. default: true
  26196. },
  26197. {
  26198. name: "Macro",
  26199. height: math.unit(500, "feet")
  26200. },
  26201. ]
  26202. ))
  26203. characterMakers.push(() => makeCharacter(
  26204. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26205. {
  26206. front: {
  26207. height: math.unit(7 + 6.451 / 12, "feet"),
  26208. weight: math.unit(310, "lb"),
  26209. name: "Front",
  26210. image: {
  26211. source: "./media/characters/dahlia-verrick/front.svg",
  26212. extra: 1488 / 1365,
  26213. bottom: 6.2 / 1495
  26214. }
  26215. },
  26216. back: {
  26217. height: math.unit(7 + 6.451 / 12, "feet"),
  26218. weight: math.unit(310, "lb"),
  26219. name: "Back",
  26220. image: {
  26221. source: "./media/characters/dahlia-verrick/back.svg",
  26222. extra: 1472 / 1351,
  26223. bottom: 5.28 / 1477
  26224. }
  26225. },
  26226. frontBusiness: {
  26227. height: math.unit(7 + 6.451 / 12, "feet"),
  26228. weight: math.unit(200, "lb"),
  26229. name: "Front (Business)",
  26230. image: {
  26231. source: "./media/characters/dahlia-verrick/front-business.svg",
  26232. extra: 1478 / 1381,
  26233. bottom: 5.5 / 1484
  26234. }
  26235. },
  26236. frontCasual: {
  26237. height: math.unit(7 + 6.451 / 12, "feet"),
  26238. weight: math.unit(200, "lb"),
  26239. name: "Front (Casual)",
  26240. image: {
  26241. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26242. extra: 1478 / 1381,
  26243. bottom: 5.5 / 1484
  26244. }
  26245. },
  26246. },
  26247. [
  26248. {
  26249. name: "Travel-Sized",
  26250. height: math.unit(7.45, "inches")
  26251. },
  26252. {
  26253. name: "Normal",
  26254. height: math.unit(7 + 6.451 / 12, "feet"),
  26255. default: true
  26256. },
  26257. {
  26258. name: "Hitting the Town",
  26259. height: math.unit(37 + 8 / 12, "feet")
  26260. },
  26261. {
  26262. name: "Stomp in the Suburbs",
  26263. height: math.unit(964 + 9.728 / 12, "feet")
  26264. },
  26265. {
  26266. name: "Sit on the City",
  26267. height: math.unit(61747 + 10.592 / 12, "feet")
  26268. },
  26269. {
  26270. name: "Glomp the Globe",
  26271. height: math.unit(252919327 + 4.832 / 12, "feet")
  26272. },
  26273. ]
  26274. ))
  26275. characterMakers.push(() => makeCharacter(
  26276. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26277. {
  26278. front: {
  26279. height: math.unit(6 + 4 / 12, "feet"),
  26280. weight: math.unit(320, "lb"),
  26281. name: "Front",
  26282. image: {
  26283. source: "./media/characters/balina-mahigan/front.svg",
  26284. extra: 447 / 428,
  26285. bottom: 18 / 466
  26286. }
  26287. },
  26288. back: {
  26289. height: math.unit(6 + 4 / 12, "feet"),
  26290. weight: math.unit(320, "lb"),
  26291. name: "Back",
  26292. image: {
  26293. source: "./media/characters/balina-mahigan/back.svg",
  26294. extra: 445 / 428,
  26295. bottom: 4.07 / 448
  26296. }
  26297. },
  26298. arm: {
  26299. height: math.unit(1.88, "feet"),
  26300. name: "Arm",
  26301. image: {
  26302. source: "./media/characters/balina-mahigan/arm.svg"
  26303. }
  26304. },
  26305. backPort: {
  26306. height: math.unit(0.685, "feet"),
  26307. name: "Back Port",
  26308. image: {
  26309. source: "./media/characters/balina-mahigan/back-port.svg"
  26310. }
  26311. },
  26312. hoofpaw: {
  26313. height: math.unit(1.41, "feet"),
  26314. name: "Hoofpaw",
  26315. image: {
  26316. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26317. }
  26318. },
  26319. leftHandBack: {
  26320. height: math.unit(0.938, "feet"),
  26321. name: "Left Hand (Back)",
  26322. image: {
  26323. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26324. }
  26325. },
  26326. leftHandFront: {
  26327. height: math.unit(0.938, "feet"),
  26328. name: "Left Hand (Front)",
  26329. image: {
  26330. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26331. }
  26332. },
  26333. rightHandBack: {
  26334. height: math.unit(0.95, "feet"),
  26335. name: "Right Hand (Back)",
  26336. image: {
  26337. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26338. }
  26339. },
  26340. rightHandFront: {
  26341. height: math.unit(0.95, "feet"),
  26342. name: "Right Hand (Front)",
  26343. image: {
  26344. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26345. }
  26346. },
  26347. },
  26348. [
  26349. {
  26350. name: "Normal",
  26351. height: math.unit(6 + 4 / 12, "feet"),
  26352. default: true
  26353. },
  26354. ]
  26355. ))
  26356. characterMakers.push(() => makeCharacter(
  26357. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26358. {
  26359. front: {
  26360. height: math.unit(6, "feet"),
  26361. weight: math.unit(320, "lb"),
  26362. name: "Front",
  26363. image: {
  26364. source: "./media/characters/balina-mejeri/front.svg",
  26365. extra: 517 / 488,
  26366. bottom: 44.2 / 561
  26367. }
  26368. },
  26369. },
  26370. [
  26371. {
  26372. name: "Normal",
  26373. height: math.unit(6 + 4 / 12, "feet")
  26374. },
  26375. {
  26376. name: "Business",
  26377. height: math.unit(155, "feet"),
  26378. default: true
  26379. },
  26380. ]
  26381. ))
  26382. characterMakers.push(() => makeCharacter(
  26383. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26384. {
  26385. kneeling: {
  26386. height: math.unit(6 + 4 / 12, "feet"),
  26387. weight: math.unit(300 * 20, "lb"),
  26388. name: "Kneeling",
  26389. image: {
  26390. source: "./media/characters/balbarian/kneeling.svg",
  26391. extra: 922 / 862,
  26392. bottom: 42.4 / 965
  26393. }
  26394. },
  26395. },
  26396. [
  26397. {
  26398. name: "Normal",
  26399. height: math.unit(6 + 4 / 12, "feet")
  26400. },
  26401. {
  26402. name: "Treasured",
  26403. height: math.unit(18 + 9 / 12, "feet"),
  26404. default: true
  26405. },
  26406. {
  26407. name: "Macro",
  26408. height: math.unit(900, "feet")
  26409. },
  26410. ]
  26411. ))
  26412. characterMakers.push(() => makeCharacter(
  26413. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26414. {
  26415. front: {
  26416. height: math.unit(6 + 4 / 12, "feet"),
  26417. weight: math.unit(325, "lb"),
  26418. name: "Front",
  26419. image: {
  26420. source: "./media/characters/balina-amarini/front.svg",
  26421. extra: 415 / 403,
  26422. bottom: 19 / 433.4
  26423. }
  26424. },
  26425. back: {
  26426. height: math.unit(6 + 4 / 12, "feet"),
  26427. weight: math.unit(325, "lb"),
  26428. name: "Back",
  26429. image: {
  26430. source: "./media/characters/balina-amarini/back.svg",
  26431. extra: 415 / 403,
  26432. bottom: 13.5 / 432
  26433. }
  26434. },
  26435. overdrive: {
  26436. height: math.unit(6 + 4 / 12, "feet"),
  26437. weight: math.unit(400, "lb"),
  26438. name: "Overdrive",
  26439. image: {
  26440. source: "./media/characters/balina-amarini/overdrive.svg",
  26441. extra: 269 / 259,
  26442. bottom: 12 / 282
  26443. }
  26444. },
  26445. },
  26446. [
  26447. {
  26448. name: "Boom",
  26449. height: math.unit(9 + 10 / 12, "feet"),
  26450. default: true
  26451. },
  26452. {
  26453. name: "Macro",
  26454. height: math.unit(280, "feet")
  26455. },
  26456. ]
  26457. ))
  26458. characterMakers.push(() => makeCharacter(
  26459. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26460. {
  26461. goddess: {
  26462. height: math.unit(600, "feet"),
  26463. weight: math.unit(2000000, "tons"),
  26464. name: "Goddess",
  26465. image: {
  26466. source: "./media/characters/lady-kubwa/goddess.svg",
  26467. extra: 1240.5 / 1223,
  26468. bottom: 22 / 1263
  26469. }
  26470. },
  26471. goddesser: {
  26472. height: math.unit(900, "feet"),
  26473. weight: math.unit(20000000, "lb"),
  26474. name: "Goddess-er",
  26475. image: {
  26476. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26477. extra: 899 / 888,
  26478. bottom: 12.6 / 912
  26479. }
  26480. },
  26481. },
  26482. [
  26483. {
  26484. name: "Macro",
  26485. height: math.unit(600, "feet"),
  26486. default: true
  26487. },
  26488. {
  26489. name: "Megamacro",
  26490. height: math.unit(250, "miles")
  26491. },
  26492. ]
  26493. ))
  26494. characterMakers.push(() => makeCharacter(
  26495. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26496. {
  26497. front: {
  26498. height: math.unit(7 + 7 / 12, "feet"),
  26499. weight: math.unit(250, "lb"),
  26500. name: "Front",
  26501. image: {
  26502. source: "./media/characters/tala-grovehorn/front.svg",
  26503. extra: 2636 / 2525,
  26504. bottom: 147 / 2781
  26505. }
  26506. },
  26507. back: {
  26508. height: math.unit(7 + 7 / 12, "feet"),
  26509. weight: math.unit(250, "lb"),
  26510. name: "Back",
  26511. image: {
  26512. source: "./media/characters/tala-grovehorn/back.svg",
  26513. extra: 2635 / 2539,
  26514. bottom: 100 / 2732.8
  26515. }
  26516. },
  26517. mouth: {
  26518. height: math.unit(1.15, "feet"),
  26519. name: "Mouth",
  26520. image: {
  26521. source: "./media/characters/tala-grovehorn/mouth.svg"
  26522. }
  26523. },
  26524. dick: {
  26525. height: math.unit(2.36, "feet"),
  26526. name: "Dick",
  26527. image: {
  26528. source: "./media/characters/tala-grovehorn/dick.svg"
  26529. }
  26530. },
  26531. slit: {
  26532. height: math.unit(0.61, "feet"),
  26533. name: "Slit",
  26534. image: {
  26535. source: "./media/characters/tala-grovehorn/slit.svg"
  26536. }
  26537. },
  26538. },
  26539. [
  26540. ]
  26541. ))
  26542. characterMakers.push(() => makeCharacter(
  26543. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26544. {
  26545. front: {
  26546. height: math.unit(7 + 7 / 12, "feet"),
  26547. weight: math.unit(225, "lb"),
  26548. name: "Front",
  26549. image: {
  26550. source: "./media/characters/epona/front.svg",
  26551. extra: 2445 / 2290,
  26552. bottom: 251 / 2696
  26553. }
  26554. },
  26555. back: {
  26556. height: math.unit(7 + 7 / 12, "feet"),
  26557. weight: math.unit(225, "lb"),
  26558. name: "Back",
  26559. image: {
  26560. source: "./media/characters/epona/back.svg",
  26561. extra: 2546 / 2408,
  26562. bottom: 44 / 2589
  26563. }
  26564. },
  26565. genitals: {
  26566. height: math.unit(1.5, "feet"),
  26567. name: "Genitals",
  26568. image: {
  26569. source: "./media/characters/epona/genitals.svg"
  26570. }
  26571. },
  26572. },
  26573. [
  26574. {
  26575. name: "Normal",
  26576. height: math.unit(7 + 7 / 12, "feet"),
  26577. default: true
  26578. },
  26579. ]
  26580. ))
  26581. characterMakers.push(() => makeCharacter(
  26582. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26583. {
  26584. front: {
  26585. height: math.unit(7, "feet"),
  26586. weight: math.unit(518, "lb"),
  26587. name: "Front",
  26588. image: {
  26589. source: "./media/characters/avia-bloodbourn/front.svg",
  26590. extra: 1466 / 1350,
  26591. bottom: 65 / 1527
  26592. }
  26593. },
  26594. },
  26595. [
  26596. ]
  26597. ))
  26598. characterMakers.push(() => makeCharacter(
  26599. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26600. {
  26601. front: {
  26602. height: math.unit(9.35, "feet"),
  26603. weight: math.unit(600, "lb"),
  26604. name: "Front",
  26605. image: {
  26606. source: "./media/characters/amera/front.svg",
  26607. extra: 891 / 818,
  26608. bottom: 30 / 922.7
  26609. }
  26610. },
  26611. back: {
  26612. height: math.unit(9.35, "feet"),
  26613. weight: math.unit(600, "lb"),
  26614. name: "Back",
  26615. image: {
  26616. source: "./media/characters/amera/back.svg",
  26617. extra: 876 / 824,
  26618. bottom: 6.8 / 884
  26619. }
  26620. },
  26621. dick: {
  26622. height: math.unit(2.14, "feet"),
  26623. name: "Dick",
  26624. image: {
  26625. source: "./media/characters/amera/dick.svg"
  26626. }
  26627. },
  26628. },
  26629. [
  26630. {
  26631. name: "Normal",
  26632. height: math.unit(9.35, "feet"),
  26633. default: true
  26634. },
  26635. ]
  26636. ))
  26637. characterMakers.push(() => makeCharacter(
  26638. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26639. {
  26640. kneeling: {
  26641. height: math.unit(3 + 4 / 12, "feet"),
  26642. weight: math.unit(90, "lb"),
  26643. name: "Kneeling",
  26644. image: {
  26645. source: "./media/characters/rosewen/kneeling.svg",
  26646. extra: 1835 / 1571,
  26647. bottom: 27.7 / 1862
  26648. }
  26649. },
  26650. },
  26651. [
  26652. {
  26653. name: "Normal",
  26654. height: math.unit(3 + 4 / 12, "feet"),
  26655. default: true
  26656. },
  26657. ]
  26658. ))
  26659. characterMakers.push(() => makeCharacter(
  26660. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26661. {
  26662. front: {
  26663. height: math.unit(5 + 10 / 12, "feet"),
  26664. weight: math.unit(200, "lb"),
  26665. name: "Front",
  26666. image: {
  26667. source: "./media/characters/sabah/front.svg",
  26668. extra: 849 / 763,
  26669. bottom: 33.9 / 881
  26670. }
  26671. },
  26672. },
  26673. [
  26674. {
  26675. name: "Normal",
  26676. height: math.unit(5 + 10 / 12, "feet"),
  26677. default: true
  26678. },
  26679. ]
  26680. ))
  26681. characterMakers.push(() => makeCharacter(
  26682. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26683. {
  26684. front: {
  26685. height: math.unit(3 + 5 / 12, "feet"),
  26686. weight: math.unit(40, "kg"),
  26687. name: "Front",
  26688. image: {
  26689. source: "./media/characters/purple-flame/front.svg",
  26690. extra: 1577 / 1412,
  26691. bottom: 97 / 1694
  26692. }
  26693. },
  26694. frontDressed: {
  26695. height: math.unit(3 + 5 / 12, "feet"),
  26696. weight: math.unit(40, "kg"),
  26697. name: "Front (Dressed)",
  26698. image: {
  26699. source: "./media/characters/purple-flame/front-dressed.svg",
  26700. extra: 1577 / 1412,
  26701. bottom: 97 / 1694
  26702. }
  26703. },
  26704. headphones: {
  26705. height: math.unit(0.85, "feet"),
  26706. name: "Headphones",
  26707. image: {
  26708. source: "./media/characters/purple-flame/headphones.svg"
  26709. }
  26710. },
  26711. },
  26712. [
  26713. {
  26714. name: "Really Small",
  26715. height: math.unit(5, "cm")
  26716. },
  26717. {
  26718. name: "Micro",
  26719. height: math.unit(1 + 5 / 12, "feet")
  26720. },
  26721. {
  26722. name: "Normal",
  26723. height: math.unit(3 + 5 / 12, "feet"),
  26724. default: true
  26725. },
  26726. {
  26727. name: "Minimacro",
  26728. height: math.unit(125, "feet")
  26729. },
  26730. {
  26731. name: "Macro",
  26732. height: math.unit(0.5, "miles")
  26733. },
  26734. {
  26735. name: "Megamacro",
  26736. height: math.unit(50, "miles")
  26737. },
  26738. {
  26739. name: "Gigantic",
  26740. height: math.unit(750, "miles")
  26741. },
  26742. {
  26743. name: "Planetary",
  26744. height: math.unit(15000, "miles")
  26745. },
  26746. ]
  26747. ))
  26748. characterMakers.push(() => makeCharacter(
  26749. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26750. {
  26751. front: {
  26752. height: math.unit(14, "feet"),
  26753. weight: math.unit(959, "lb"),
  26754. name: "Front",
  26755. image: {
  26756. source: "./media/characters/arsenal/front.svg",
  26757. extra: 2357 / 2157,
  26758. bottom: 93 / 2458
  26759. }
  26760. },
  26761. },
  26762. [
  26763. {
  26764. name: "Normal",
  26765. height: math.unit(14, "feet"),
  26766. default: true
  26767. },
  26768. ]
  26769. ))
  26770. characterMakers.push(() => makeCharacter(
  26771. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26772. {
  26773. front: {
  26774. height: math.unit(6, "feet"),
  26775. weight: math.unit(150, "lb"),
  26776. name: "Front",
  26777. image: {
  26778. source: "./media/characters/adira/front.svg",
  26779. extra: 1078 / 1029,
  26780. bottom: 87 / 1166
  26781. }
  26782. },
  26783. },
  26784. [
  26785. {
  26786. name: "Micro",
  26787. height: math.unit(4, "inches"),
  26788. default: true
  26789. },
  26790. {
  26791. name: "Macro",
  26792. height: math.unit(50, "feet")
  26793. },
  26794. ]
  26795. ))
  26796. characterMakers.push(() => makeCharacter(
  26797. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26798. {
  26799. front: {
  26800. height: math.unit(16, "feet"),
  26801. weight: math.unit(1000, "lb"),
  26802. name: "Front",
  26803. image: {
  26804. source: "./media/characters/grim/front.svg",
  26805. extra: 622 / 614,
  26806. bottom: 18.1 / 642
  26807. }
  26808. },
  26809. back: {
  26810. height: math.unit(16, "feet"),
  26811. weight: math.unit(1000, "lb"),
  26812. name: "Back",
  26813. image: {
  26814. source: "./media/characters/grim/back.svg",
  26815. extra: 610.6 / 602,
  26816. bottom: 40.8 / 652
  26817. }
  26818. },
  26819. hunched: {
  26820. height: math.unit(9.75, "feet"),
  26821. weight: math.unit(1000, "lb"),
  26822. name: "Hunched",
  26823. image: {
  26824. source: "./media/characters/grim/hunched.svg",
  26825. extra: 304 / 297,
  26826. bottom: 35.4 / 394
  26827. }
  26828. },
  26829. },
  26830. [
  26831. {
  26832. name: "Normal",
  26833. height: math.unit(16, "feet"),
  26834. default: true
  26835. },
  26836. ]
  26837. ))
  26838. characterMakers.push(() => makeCharacter(
  26839. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26840. {
  26841. front: {
  26842. height: math.unit(2.3, "meters"),
  26843. weight: math.unit(300, "lb"),
  26844. name: "Front",
  26845. image: {
  26846. source: "./media/characters/sinja/front-sfw.svg",
  26847. extra: 1393 / 1294,
  26848. bottom: 70 / 1463
  26849. }
  26850. },
  26851. frontNsfw: {
  26852. height: math.unit(2.3, "meters"),
  26853. weight: math.unit(300, "lb"),
  26854. name: "Front (NSFW)",
  26855. image: {
  26856. source: "./media/characters/sinja/front-nsfw.svg",
  26857. extra: 1393 / 1294,
  26858. bottom: 70 / 1463
  26859. }
  26860. },
  26861. back: {
  26862. height: math.unit(2.3, "meters"),
  26863. weight: math.unit(300, "lb"),
  26864. name: "Back",
  26865. image: {
  26866. source: "./media/characters/sinja/back.svg",
  26867. extra: 1393 / 1294,
  26868. bottom: 70 / 1463
  26869. }
  26870. },
  26871. head: {
  26872. height: math.unit(1.771, "feet"),
  26873. name: "Head",
  26874. image: {
  26875. source: "./media/characters/sinja/head.svg"
  26876. }
  26877. },
  26878. slit: {
  26879. height: math.unit(0.8, "feet"),
  26880. name: "Slit",
  26881. image: {
  26882. source: "./media/characters/sinja/slit.svg"
  26883. }
  26884. },
  26885. },
  26886. [
  26887. {
  26888. name: "Normal",
  26889. height: math.unit(2.3, "meters")
  26890. },
  26891. {
  26892. name: "Macro",
  26893. height: math.unit(91, "meters"),
  26894. default: true
  26895. },
  26896. {
  26897. name: "Megamacro",
  26898. height: math.unit(91440, "meters")
  26899. },
  26900. {
  26901. name: "Gigamacro",
  26902. height: math.unit(60960000, "meters")
  26903. },
  26904. {
  26905. name: "Teramacro",
  26906. height: math.unit(9144000000, "meters")
  26907. },
  26908. ]
  26909. ))
  26910. characterMakers.push(() => makeCharacter(
  26911. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26912. {
  26913. front: {
  26914. height: math.unit(1.7, "meters"),
  26915. weight: math.unit(130, "lb"),
  26916. name: "Front",
  26917. image: {
  26918. source: "./media/characters/kyu/front.svg",
  26919. extra: 415 / 395,
  26920. bottom: 5 / 420
  26921. }
  26922. },
  26923. head: {
  26924. height: math.unit(1.75, "feet"),
  26925. name: "Head",
  26926. image: {
  26927. source: "./media/characters/kyu/head.svg"
  26928. }
  26929. },
  26930. foot: {
  26931. height: math.unit(0.81, "feet"),
  26932. name: "Foot",
  26933. image: {
  26934. source: "./media/characters/kyu/foot.svg"
  26935. }
  26936. },
  26937. },
  26938. [
  26939. {
  26940. name: "Normal",
  26941. height: math.unit(1.7, "meters")
  26942. },
  26943. {
  26944. name: "Macro",
  26945. height: math.unit(131, "feet"),
  26946. default: true
  26947. },
  26948. {
  26949. name: "Megamacro",
  26950. height: math.unit(91440, "meters")
  26951. },
  26952. {
  26953. name: "Gigamacro",
  26954. height: math.unit(60960000, "meters")
  26955. },
  26956. {
  26957. name: "Teramacro",
  26958. height: math.unit(9144000000, "meters")
  26959. },
  26960. ]
  26961. ))
  26962. characterMakers.push(() => makeCharacter(
  26963. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26964. {
  26965. front: {
  26966. height: math.unit(7 + 1 / 12, "feet"),
  26967. weight: math.unit(250, "lb"),
  26968. name: "Front",
  26969. image: {
  26970. source: "./media/characters/joey/front.svg",
  26971. extra: 1791 / 1537,
  26972. bottom: 28 / 1816
  26973. }
  26974. },
  26975. },
  26976. [
  26977. {
  26978. name: "Micro",
  26979. height: math.unit(3, "inches")
  26980. },
  26981. {
  26982. name: "Normal",
  26983. height: math.unit(7 + 1 / 12, "feet"),
  26984. default: true
  26985. },
  26986. ]
  26987. ))
  26988. characterMakers.push(() => makeCharacter(
  26989. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26990. {
  26991. front: {
  26992. height: math.unit(165, "cm"),
  26993. weight: math.unit(140, "lb"),
  26994. name: "Front",
  26995. image: {
  26996. source: "./media/characters/sam-evans/front.svg",
  26997. extra: 3417 / 3230,
  26998. bottom: 41.3 / 3417
  26999. }
  27000. },
  27001. frontSixTails: {
  27002. height: math.unit(165, "cm"),
  27003. weight: math.unit(140, "lb"),
  27004. name: "Front-six-tails",
  27005. image: {
  27006. source: "./media/characters/sam-evans/front-six-tails.svg",
  27007. extra: 3417 / 3230,
  27008. bottom: 41.3 / 3417
  27009. }
  27010. },
  27011. back: {
  27012. height: math.unit(165, "cm"),
  27013. weight: math.unit(140, "lb"),
  27014. name: "Back",
  27015. image: {
  27016. source: "./media/characters/sam-evans/back.svg",
  27017. extra: 3227 / 3032,
  27018. bottom: 6.8 / 3234
  27019. }
  27020. },
  27021. face: {
  27022. height: math.unit(0.68, "feet"),
  27023. name: "Face",
  27024. image: {
  27025. source: "./media/characters/sam-evans/face.svg"
  27026. }
  27027. },
  27028. },
  27029. [
  27030. {
  27031. name: "Normal",
  27032. height: math.unit(165, "cm"),
  27033. default: true
  27034. },
  27035. {
  27036. name: "Macro",
  27037. height: math.unit(100, "meters")
  27038. },
  27039. {
  27040. name: "Macro+",
  27041. height: math.unit(800, "meters")
  27042. },
  27043. {
  27044. name: "Macro++",
  27045. height: math.unit(3, "km")
  27046. },
  27047. {
  27048. name: "Macro+++",
  27049. height: math.unit(30, "km")
  27050. },
  27051. ]
  27052. ))
  27053. characterMakers.push(() => makeCharacter(
  27054. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27055. {
  27056. front: {
  27057. height: math.unit(10, "feet"),
  27058. weight: math.unit(750, "lb"),
  27059. name: "Front",
  27060. image: {
  27061. source: "./media/characters/juliet-a/front.svg",
  27062. extra: 1766 / 1720,
  27063. bottom: 43 / 1809
  27064. }
  27065. },
  27066. back: {
  27067. height: math.unit(10, "feet"),
  27068. weight: math.unit(750, "lb"),
  27069. name: "Back",
  27070. image: {
  27071. source: "./media/characters/juliet-a/back.svg",
  27072. extra: 1781 / 1734,
  27073. bottom: 35 / 1810,
  27074. }
  27075. },
  27076. },
  27077. [
  27078. {
  27079. name: "Normal",
  27080. height: math.unit(10, "feet"),
  27081. default: true
  27082. },
  27083. {
  27084. name: "Dragon Form",
  27085. height: math.unit(250, "feet")
  27086. },
  27087. {
  27088. name: "Macro",
  27089. height: math.unit(1000, "feet")
  27090. },
  27091. {
  27092. name: "Megamacro",
  27093. height: math.unit(10000, "feet")
  27094. }
  27095. ]
  27096. ))
  27097. characterMakers.push(() => makeCharacter(
  27098. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27099. {
  27100. regular: {
  27101. height: math.unit(7 + 3 / 12, "feet"),
  27102. weight: math.unit(260, "lb"),
  27103. name: "Regular",
  27104. image: {
  27105. source: "./media/characters/wild/regular.svg",
  27106. extra: 97.45 / 92,
  27107. bottom: 6.8 / 104.3
  27108. }
  27109. },
  27110. biggums: {
  27111. height: math.unit(8 + 6 / 12, "feet"),
  27112. weight: math.unit(425, "lb"),
  27113. name: "Biggums",
  27114. image: {
  27115. source: "./media/characters/wild/biggums.svg",
  27116. extra: 97.45 / 92,
  27117. bottom: 7.5 / 132.34
  27118. }
  27119. },
  27120. mawRegular: {
  27121. height: math.unit(1.24, "feet"),
  27122. name: "Maw (Regular)",
  27123. image: {
  27124. source: "./media/characters/wild/maw.svg"
  27125. }
  27126. },
  27127. mawBiggums: {
  27128. height: math.unit(1.47, "feet"),
  27129. name: "Maw (Biggums)",
  27130. image: {
  27131. source: "./media/characters/wild/maw.svg"
  27132. }
  27133. },
  27134. },
  27135. [
  27136. {
  27137. name: "Normal",
  27138. height: math.unit(7 + 3 / 12, "feet"),
  27139. default: true
  27140. },
  27141. ]
  27142. ))
  27143. characterMakers.push(() => makeCharacter(
  27144. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27145. {
  27146. front: {
  27147. height: math.unit(2.5, "meters"),
  27148. weight: math.unit(200, "kg"),
  27149. name: "Front",
  27150. image: {
  27151. source: "./media/characters/vidar/front.svg",
  27152. extra: 2994 / 2795,
  27153. bottom: 56 / 3061
  27154. }
  27155. },
  27156. back: {
  27157. height: math.unit(2.5, "meters"),
  27158. weight: math.unit(200, "kg"),
  27159. name: "Back",
  27160. image: {
  27161. source: "./media/characters/vidar/back.svg",
  27162. extra: 3131 / 2928,
  27163. bottom: 13.5 / 3141.5
  27164. }
  27165. },
  27166. feral: {
  27167. height: math.unit(2.5, "meters"),
  27168. weight: math.unit(2000, "kg"),
  27169. name: "Feral",
  27170. image: {
  27171. source: "./media/characters/vidar/feral.svg",
  27172. extra: 2790 / 1765,
  27173. bottom: 6 / 2796
  27174. }
  27175. },
  27176. },
  27177. [
  27178. {
  27179. name: "Normal",
  27180. height: math.unit(2.5, "meters"),
  27181. default: true
  27182. },
  27183. {
  27184. name: "Macro",
  27185. height: math.unit(100, "meters")
  27186. },
  27187. ]
  27188. ))
  27189. characterMakers.push(() => makeCharacter(
  27190. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27191. {
  27192. front: {
  27193. height: math.unit(5 + 9 / 12, "feet"),
  27194. weight: math.unit(120, "lb"),
  27195. name: "Front",
  27196. image: {
  27197. source: "./media/characters/ash/front.svg",
  27198. extra: 2189 / 1961,
  27199. bottom: 5.2 / 2194
  27200. }
  27201. },
  27202. },
  27203. [
  27204. {
  27205. name: "Normal",
  27206. height: math.unit(5 + 9 / 12, "feet"),
  27207. default: true
  27208. },
  27209. ]
  27210. ))
  27211. characterMakers.push(() => makeCharacter(
  27212. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27213. {
  27214. front: {
  27215. height: math.unit(9, "feet"),
  27216. weight: math.unit(10000, "lb"),
  27217. name: "Front",
  27218. image: {
  27219. source: "./media/characters/gygabite/front.svg",
  27220. bottom: 31.7 / 537.8,
  27221. extra: 505 / 370
  27222. }
  27223. },
  27224. },
  27225. [
  27226. {
  27227. name: "Normal",
  27228. height: math.unit(9, "feet"),
  27229. default: true
  27230. },
  27231. ]
  27232. ))
  27233. characterMakers.push(() => makeCharacter(
  27234. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27235. {
  27236. front: {
  27237. height: math.unit(12, "feet"),
  27238. weight: math.unit(35000, "lb"),
  27239. name: "Front",
  27240. image: {
  27241. source: "./media/characters/p0tat0/front.svg",
  27242. extra: 1065 / 921,
  27243. bottom: 55.7 / 1121.25
  27244. }
  27245. },
  27246. },
  27247. [
  27248. {
  27249. name: "Normal",
  27250. height: math.unit(12, "feet"),
  27251. default: true
  27252. },
  27253. ]
  27254. ))
  27255. characterMakers.push(() => makeCharacter(
  27256. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27257. {
  27258. side: {
  27259. height: math.unit(6.5, "feet"),
  27260. weight: math.unit(800, "lb"),
  27261. name: "Side",
  27262. image: {
  27263. source: "./media/characters/dusk/side.svg",
  27264. extra: 615 / 373,
  27265. bottom: 53 / 664
  27266. }
  27267. },
  27268. sitting: {
  27269. height: math.unit(7, "feet"),
  27270. weight: math.unit(800, "lb"),
  27271. name: "Sitting",
  27272. image: {
  27273. source: "./media/characters/dusk/sitting.svg",
  27274. extra: 753 / 425,
  27275. bottom: 33 / 774
  27276. }
  27277. },
  27278. head: {
  27279. height: math.unit(6.1, "feet"),
  27280. name: "Head",
  27281. image: {
  27282. source: "./media/characters/dusk/head.svg"
  27283. }
  27284. },
  27285. },
  27286. [
  27287. {
  27288. name: "Normal",
  27289. height: math.unit(7, "feet"),
  27290. default: true
  27291. },
  27292. ]
  27293. ))
  27294. characterMakers.push(() => makeCharacter(
  27295. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27296. {
  27297. front: {
  27298. height: math.unit(15, "feet"),
  27299. weight: math.unit(7000, "lb"),
  27300. name: "Front",
  27301. image: {
  27302. source: "./media/characters/jay-direwolf/front.svg",
  27303. extra: 1810 / 1732,
  27304. bottom: 66 / 1892
  27305. }
  27306. },
  27307. },
  27308. [
  27309. {
  27310. name: "Normal",
  27311. height: math.unit(15, "feet"),
  27312. default: true
  27313. },
  27314. ]
  27315. ))
  27316. characterMakers.push(() => makeCharacter(
  27317. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27318. {
  27319. front: {
  27320. height: math.unit(4 + 9 / 12, "feet"),
  27321. weight: math.unit(130, "lb"),
  27322. name: "Front",
  27323. image: {
  27324. source: "./media/characters/anchovie/front.svg",
  27325. extra: 382 / 350,
  27326. bottom: 25 / 409
  27327. }
  27328. },
  27329. back: {
  27330. height: math.unit(4 + 9 / 12, "feet"),
  27331. weight: math.unit(130, "lb"),
  27332. name: "Back",
  27333. image: {
  27334. source: "./media/characters/anchovie/back.svg",
  27335. extra: 385 / 352,
  27336. bottom: 16.6 / 402
  27337. }
  27338. },
  27339. frontDressed: {
  27340. height: math.unit(4 + 9 / 12, "feet"),
  27341. weight: math.unit(130, "lb"),
  27342. name: "Front (Dressed)",
  27343. image: {
  27344. source: "./media/characters/anchovie/front-dressed.svg",
  27345. extra: 382 / 350,
  27346. bottom: 25 / 409
  27347. }
  27348. },
  27349. backDressed: {
  27350. height: math.unit(4 + 9 / 12, "feet"),
  27351. weight: math.unit(130, "lb"),
  27352. name: "Back (Dressed)",
  27353. image: {
  27354. source: "./media/characters/anchovie/back-dressed.svg",
  27355. extra: 385 / 352,
  27356. bottom: 16.6 / 402
  27357. }
  27358. },
  27359. },
  27360. [
  27361. {
  27362. name: "Micro",
  27363. height: math.unit(6.4, "inches")
  27364. },
  27365. {
  27366. name: "Normal",
  27367. height: math.unit(4 + 9 / 12, "feet"),
  27368. default: true
  27369. },
  27370. ]
  27371. ))
  27372. characterMakers.push(() => makeCharacter(
  27373. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27374. {
  27375. front: {
  27376. height: math.unit(2, "meters"),
  27377. weight: math.unit(180, "lb"),
  27378. name: "Front",
  27379. image: {
  27380. source: "./media/characters/acidrenamon/front.svg",
  27381. extra: 987 / 890,
  27382. bottom: 22.8 / 1009
  27383. }
  27384. },
  27385. back: {
  27386. height: math.unit(2, "meters"),
  27387. weight: math.unit(180, "lb"),
  27388. name: "Back",
  27389. image: {
  27390. source: "./media/characters/acidrenamon/back.svg",
  27391. extra: 983 / 891,
  27392. bottom: 8.4 / 992
  27393. }
  27394. },
  27395. head: {
  27396. height: math.unit(1.92, "feet"),
  27397. name: "Head",
  27398. image: {
  27399. source: "./media/characters/acidrenamon/head.svg"
  27400. }
  27401. },
  27402. rump: {
  27403. height: math.unit(1.72, "feet"),
  27404. name: "Rump",
  27405. image: {
  27406. source: "./media/characters/acidrenamon/rump.svg"
  27407. }
  27408. },
  27409. tail: {
  27410. height: math.unit(4.2, "feet"),
  27411. name: "Tail",
  27412. image: {
  27413. source: "./media/characters/acidrenamon/tail.svg"
  27414. }
  27415. },
  27416. },
  27417. [
  27418. {
  27419. name: "Normal",
  27420. height: math.unit(2, "meters"),
  27421. default: true
  27422. },
  27423. {
  27424. name: "Minimacro",
  27425. height: math.unit(7, "meters")
  27426. },
  27427. {
  27428. name: "Macro",
  27429. height: math.unit(200, "meters")
  27430. },
  27431. {
  27432. name: "Gigamacro",
  27433. height: math.unit(0.2, "earths")
  27434. },
  27435. ]
  27436. ))
  27437. characterMakers.push(() => makeCharacter(
  27438. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27439. {
  27440. front: {
  27441. height: math.unit(6, "feet"),
  27442. weight: math.unit(150, "lb"),
  27443. name: "Front",
  27444. image: {
  27445. source: "./media/characters/kenzie-lee/front.svg",
  27446. extra: 1525 / 1465,
  27447. bottom: 45 / 1570
  27448. }
  27449. },
  27450. side: {
  27451. height: math.unit(6, "feet"),
  27452. weight: math.unit(150, "lb"),
  27453. name: "Side",
  27454. image: {
  27455. source: "./media/characters/kenzie-lee/side.svg",
  27456. extra: 5505 / 5383,
  27457. bottom: 60 / 5573
  27458. }
  27459. },
  27460. paw: {
  27461. height: math.unit(0.57, "feet"),
  27462. name: "Paw",
  27463. image: {
  27464. source: "./media/characters/kenzie-lee/paw.svg"
  27465. }
  27466. },
  27467. },
  27468. [
  27469. {
  27470. name: "Normal",
  27471. height: math.unit(152, "feet"),
  27472. default: true
  27473. },
  27474. {
  27475. name: "Megamacro",
  27476. height: math.unit(7, "miles")
  27477. },
  27478. {
  27479. name: "Gigamacro",
  27480. height: math.unit(8000, "miles")
  27481. },
  27482. ]
  27483. ))
  27484. characterMakers.push(() => makeCharacter(
  27485. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27486. {
  27487. side: {
  27488. height: math.unit(6, "feet"),
  27489. weight: math.unit(150, "lb"),
  27490. name: "Side",
  27491. image: {
  27492. source: "./media/characters/withers/side.svg",
  27493. extra: 1830 / 1728,
  27494. bottom: 96 / 1927
  27495. }
  27496. },
  27497. front: {
  27498. height: math.unit(6, "feet"),
  27499. weight: math.unit(150, "lb"),
  27500. name: "Front",
  27501. image: {
  27502. source: "./media/characters/withers/front.svg",
  27503. extra: 1514 / 1438,
  27504. bottom: 118 / 1632
  27505. }
  27506. },
  27507. },
  27508. [
  27509. {
  27510. name: "Macro",
  27511. height: math.unit(168, "feet"),
  27512. default: true
  27513. },
  27514. {
  27515. name: "Megamacro",
  27516. height: math.unit(15, "miles")
  27517. }
  27518. ]
  27519. ))
  27520. characterMakers.push(() => makeCharacter(
  27521. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27522. {
  27523. front: {
  27524. height: math.unit(6 + 7 / 12, "feet"),
  27525. weight: math.unit(250, "lb"),
  27526. name: "Front",
  27527. image: {
  27528. source: "./media/characters/nemoskii/front.svg",
  27529. extra: 2270 / 1734,
  27530. bottom: 86 / 2354
  27531. }
  27532. },
  27533. back: {
  27534. height: math.unit(6 + 7 / 12, "feet"),
  27535. weight: math.unit(250, "lb"),
  27536. name: "Back",
  27537. image: {
  27538. source: "./media/characters/nemoskii/back.svg",
  27539. extra: 1845 / 1788,
  27540. bottom: 10.5 / 1852
  27541. }
  27542. },
  27543. head: {
  27544. height: math.unit(1.31, "feet"),
  27545. name: "Head",
  27546. image: {
  27547. source: "./media/characters/nemoskii/head.svg"
  27548. }
  27549. },
  27550. },
  27551. [
  27552. {
  27553. name: "Micro",
  27554. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27555. },
  27556. {
  27557. name: "Normal",
  27558. height: math.unit(6 + 7 / 12, "feet"),
  27559. default: true
  27560. },
  27561. {
  27562. name: "Macro",
  27563. height: math.unit((6 + 7 / 12) * 150, "feet")
  27564. },
  27565. {
  27566. name: "Macro+",
  27567. height: math.unit((6 + 7 / 12) * 500, "feet")
  27568. },
  27569. {
  27570. name: "Megamacro",
  27571. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27572. },
  27573. ]
  27574. ))
  27575. characterMakers.push(() => makeCharacter(
  27576. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27577. {
  27578. front: {
  27579. height: math.unit(1, "mile"),
  27580. weight: math.unit(265261.9, "lb"),
  27581. name: "Front",
  27582. image: {
  27583. source: "./media/characters/shui/front.svg",
  27584. extra: 1633 / 1564,
  27585. bottom: 91.5 / 1726
  27586. }
  27587. },
  27588. },
  27589. [
  27590. {
  27591. name: "Macro",
  27592. height: math.unit(1, "mile"),
  27593. default: true
  27594. },
  27595. ]
  27596. ))
  27597. characterMakers.push(() => makeCharacter(
  27598. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27599. {
  27600. front: {
  27601. height: math.unit(12 + 6 / 12, "feet"),
  27602. weight: math.unit(1342, "lb"),
  27603. name: "Front",
  27604. image: {
  27605. source: "./media/characters/arokh-takakura/front.svg",
  27606. extra: 1089 / 1043,
  27607. bottom: 77.4 / 1176.7
  27608. }
  27609. },
  27610. back: {
  27611. height: math.unit(12 + 6 / 12, "feet"),
  27612. weight: math.unit(1342, "lb"),
  27613. name: "Back",
  27614. image: {
  27615. source: "./media/characters/arokh-takakura/back.svg",
  27616. extra: 1046 / 1019,
  27617. bottom: 102 / 1150
  27618. }
  27619. },
  27620. },
  27621. [
  27622. {
  27623. name: "Big",
  27624. height: math.unit(12 + 6 / 12, "feet"),
  27625. default: true
  27626. },
  27627. ]
  27628. ))
  27629. characterMakers.push(() => makeCharacter(
  27630. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27631. {
  27632. front: {
  27633. height: math.unit(5 + 6 / 12, "feet"),
  27634. weight: math.unit(150, "lb"),
  27635. name: "Front",
  27636. image: {
  27637. source: "./media/characters/theo/front.svg",
  27638. extra: 1184 / 1131,
  27639. bottom: 7.4 / 1191
  27640. }
  27641. },
  27642. },
  27643. [
  27644. {
  27645. name: "Micro",
  27646. height: math.unit(5, "inches")
  27647. },
  27648. {
  27649. name: "Normal",
  27650. height: math.unit(5 + 6 / 12, "feet"),
  27651. default: true
  27652. },
  27653. ]
  27654. ))
  27655. characterMakers.push(() => makeCharacter(
  27656. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27657. {
  27658. front: {
  27659. height: math.unit(5 + 9 / 12, "feet"),
  27660. weight: math.unit(130, "lb"),
  27661. name: "Front",
  27662. image: {
  27663. source: "./media/characters/cecelia-swift/front.svg",
  27664. extra: 502 / 484,
  27665. bottom: 23 / 523
  27666. }
  27667. },
  27668. back: {
  27669. height: math.unit(5 + 9 / 12, "feet"),
  27670. weight: math.unit(130, "lb"),
  27671. name: "Back",
  27672. image: {
  27673. source: "./media/characters/cecelia-swift/back.svg",
  27674. extra: 499 / 485,
  27675. bottom: 12 / 511
  27676. }
  27677. },
  27678. head: {
  27679. height: math.unit(0.90, "feet"),
  27680. name: "Head",
  27681. image: {
  27682. source: "./media/characters/cecelia-swift/head.svg"
  27683. }
  27684. },
  27685. rump: {
  27686. height: math.unit(1.75, "feet"),
  27687. name: "Rump",
  27688. image: {
  27689. source: "./media/characters/cecelia-swift/rump.svg"
  27690. }
  27691. },
  27692. },
  27693. [
  27694. {
  27695. name: "Normal",
  27696. height: math.unit(5 + 9 / 12, "feet"),
  27697. default: true
  27698. },
  27699. {
  27700. name: "Big",
  27701. height: math.unit(50, "feet")
  27702. },
  27703. {
  27704. name: "Macro",
  27705. height: math.unit(100, "feet")
  27706. },
  27707. {
  27708. name: "Macro+",
  27709. height: math.unit(500, "feet")
  27710. },
  27711. {
  27712. name: "Macro++",
  27713. height: math.unit(1000, "feet")
  27714. },
  27715. ]
  27716. ))
  27717. characterMakers.push(() => makeCharacter(
  27718. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27719. {
  27720. front: {
  27721. height: math.unit(6, "feet"),
  27722. weight: math.unit(150, "lb"),
  27723. name: "Front",
  27724. image: {
  27725. source: "./media/characters/kaunan/front.svg",
  27726. extra: 2890 / 2523,
  27727. bottom: 49 / 2939
  27728. }
  27729. },
  27730. },
  27731. [
  27732. {
  27733. name: "Macro",
  27734. height: math.unit(150, "feet"),
  27735. default: true
  27736. },
  27737. ]
  27738. ))
  27739. characterMakers.push(() => makeCharacter(
  27740. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27741. {
  27742. front: {
  27743. height: math.unit(175, "cm"),
  27744. weight: math.unit(60, "kg"),
  27745. name: "Front",
  27746. image: {
  27747. source: "./media/characters/fei/front.svg",
  27748. extra: 1873/1723,
  27749. bottom: 53/1926
  27750. }
  27751. },
  27752. },
  27753. [
  27754. {
  27755. name: "Mortal",
  27756. height: math.unit(175, "cm")
  27757. },
  27758. {
  27759. name: "Normal",
  27760. height: math.unit(3500, "m"),
  27761. default: true
  27762. },
  27763. {
  27764. name: "Stroll",
  27765. height: math.unit(17.5, "km")
  27766. },
  27767. {
  27768. name: "Showoff",
  27769. height: math.unit(175, "km")
  27770. },
  27771. ]
  27772. ))
  27773. characterMakers.push(() => makeCharacter(
  27774. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27775. {
  27776. front: {
  27777. height: math.unit(7, "feet"),
  27778. weight: math.unit(1000, "kg"),
  27779. name: "Front",
  27780. image: {
  27781. source: "./media/characters/edrax/front.svg",
  27782. extra: 2838 / 2550,
  27783. bottom: 130 / 2968
  27784. }
  27785. },
  27786. },
  27787. [
  27788. {
  27789. name: "Small",
  27790. height: math.unit(7, "feet")
  27791. },
  27792. {
  27793. name: "Normal",
  27794. height: math.unit(1500, "meters")
  27795. },
  27796. {
  27797. name: "Mega",
  27798. height: math.unit(12000000, "km"),
  27799. default: true
  27800. },
  27801. {
  27802. name: "Megamacro",
  27803. height: math.unit(10600000, "lightyears")
  27804. },
  27805. {
  27806. name: "Hypermacro",
  27807. height: math.unit(256, "yottameters")
  27808. },
  27809. ]
  27810. ))
  27811. characterMakers.push(() => makeCharacter(
  27812. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27813. {
  27814. front: {
  27815. height: math.unit(10, "feet"),
  27816. weight: math.unit(750, "lb"),
  27817. name: "Front",
  27818. image: {
  27819. source: "./media/characters/clove/front.svg",
  27820. extra: 2031 / 1860,
  27821. bottom: 47.8 / 2080
  27822. }
  27823. },
  27824. back: {
  27825. height: math.unit(10, "feet"),
  27826. weight: math.unit(750, "lb"),
  27827. name: "Back",
  27828. image: {
  27829. source: "./media/characters/clove/back.svg",
  27830. extra: 2025 / 1859,
  27831. bottom: 46 / 2071
  27832. }
  27833. },
  27834. },
  27835. [
  27836. {
  27837. name: "Normal",
  27838. height: math.unit(10, "feet"),
  27839. default: true
  27840. },
  27841. ]
  27842. ))
  27843. characterMakers.push(() => makeCharacter(
  27844. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27845. {
  27846. front: {
  27847. height: math.unit(4, "feet"),
  27848. weight: math.unit(50, "lb"),
  27849. name: "Front",
  27850. image: {
  27851. source: "./media/characters/alex-rabbit/front.svg",
  27852. extra: 507 / 458,
  27853. bottom: 18.5 / 527
  27854. }
  27855. },
  27856. back: {
  27857. height: math.unit(4, "feet"),
  27858. weight: math.unit(50, "lb"),
  27859. name: "Back",
  27860. image: {
  27861. source: "./media/characters/alex-rabbit/back.svg",
  27862. extra: 502 / 460,
  27863. bottom: 18.9 / 521
  27864. }
  27865. },
  27866. },
  27867. [
  27868. {
  27869. name: "Normal",
  27870. height: math.unit(4, "feet"),
  27871. default: true
  27872. },
  27873. ]
  27874. ))
  27875. characterMakers.push(() => makeCharacter(
  27876. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27877. {
  27878. front: {
  27879. height: math.unit(1 + 3 / 12, "feet"),
  27880. weight: math.unit(80, "lb"),
  27881. name: "Front",
  27882. image: {
  27883. source: "./media/characters/zander-rose/front.svg",
  27884. extra: 916 / 797,
  27885. bottom: 17 / 933
  27886. }
  27887. },
  27888. back: {
  27889. height: math.unit(1 + 3 / 12, "feet"),
  27890. weight: math.unit(80, "lb"),
  27891. name: "Back",
  27892. image: {
  27893. source: "./media/characters/zander-rose/back.svg",
  27894. extra: 903 / 779,
  27895. bottom: 31 / 934
  27896. }
  27897. },
  27898. },
  27899. [
  27900. {
  27901. name: "Normal",
  27902. height: math.unit(1 + 3 / 12, "feet"),
  27903. default: true
  27904. },
  27905. ]
  27906. ))
  27907. characterMakers.push(() => makeCharacter(
  27908. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27909. {
  27910. anthro: {
  27911. height: math.unit(6, "feet"),
  27912. weight: math.unit(150, "lb"),
  27913. name: "Anthro",
  27914. image: {
  27915. source: "./media/characters/razz/anthro.svg",
  27916. extra: 1437 / 1343,
  27917. bottom: 48 / 1485
  27918. }
  27919. },
  27920. feral: {
  27921. height: math.unit(6, "feet"),
  27922. weight: math.unit(150, "lb"),
  27923. name: "Feral",
  27924. image: {
  27925. source: "./media/characters/razz/feral.svg",
  27926. extra: 2569 / 1385,
  27927. bottom: 95 / 2664
  27928. }
  27929. },
  27930. },
  27931. [
  27932. {
  27933. name: "Normal",
  27934. height: math.unit(6, "feet"),
  27935. default: true
  27936. },
  27937. ]
  27938. ))
  27939. characterMakers.push(() => makeCharacter(
  27940. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27941. {
  27942. front: {
  27943. height: math.unit(9 + 4 / 12, "feet"),
  27944. weight: math.unit(500, "lb"),
  27945. name: "Front",
  27946. image: {
  27947. source: "./media/characters/morrigan/front.svg",
  27948. extra: 2707 / 2579,
  27949. bottom: 156 / 2863
  27950. }
  27951. },
  27952. },
  27953. [
  27954. {
  27955. name: "Normal",
  27956. height: math.unit(9 + 4 / 12, "feet"),
  27957. default: true
  27958. },
  27959. ]
  27960. ))
  27961. characterMakers.push(() => makeCharacter(
  27962. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27963. {
  27964. front: {
  27965. height: math.unit(5, "stories"),
  27966. weight: math.unit(4000, "lb"),
  27967. name: "Front",
  27968. image: {
  27969. source: "./media/characters/jenene/front.svg",
  27970. extra: 1780 / 1710,
  27971. bottom: 57 / 1837
  27972. }
  27973. },
  27974. },
  27975. [
  27976. {
  27977. name: "Normal",
  27978. height: math.unit(5, "stories"),
  27979. default: true
  27980. },
  27981. ]
  27982. ))
  27983. characterMakers.push(() => makeCharacter(
  27984. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27985. {
  27986. taurSfw: {
  27987. height: math.unit(10, "meters"),
  27988. weight: math.unit(17500, "kg"),
  27989. name: "Taur",
  27990. image: {
  27991. source: "./media/characters/faey/taur-sfw.svg",
  27992. extra: 1200 / 968,
  27993. bottom: 41 / 1241
  27994. }
  27995. },
  27996. chestmaw: {
  27997. height: math.unit(2.01, "meters"),
  27998. name: "Chestmaw",
  27999. image: {
  28000. source: "./media/characters/faey/chestmaw.svg"
  28001. }
  28002. },
  28003. foot: {
  28004. height: math.unit(2.43, "meters"),
  28005. name: "Foot",
  28006. image: {
  28007. source: "./media/characters/faey/foot.svg"
  28008. }
  28009. },
  28010. jaws: {
  28011. height: math.unit(1.66, "meters"),
  28012. name: "Jaws",
  28013. image: {
  28014. source: "./media/characters/faey/jaws.svg"
  28015. }
  28016. },
  28017. tongues: {
  28018. height: math.unit(2.01, "meters"),
  28019. name: "Tongues",
  28020. image: {
  28021. source: "./media/characters/faey/tongues.svg"
  28022. }
  28023. },
  28024. },
  28025. [
  28026. {
  28027. name: "Small",
  28028. height: math.unit(10, "meters"),
  28029. default: true
  28030. },
  28031. {
  28032. name: "Big",
  28033. height: math.unit(500000, "km")
  28034. },
  28035. ]
  28036. ))
  28037. characterMakers.push(() => makeCharacter(
  28038. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28039. {
  28040. front: {
  28041. height: math.unit(7, "feet"),
  28042. weight: math.unit(275, "lb"),
  28043. name: "Front",
  28044. image: {
  28045. source: "./media/characters/roku/front.svg",
  28046. extra: 903 / 878,
  28047. bottom: 37 / 940
  28048. }
  28049. },
  28050. },
  28051. [
  28052. {
  28053. name: "Normal",
  28054. height: math.unit(7, "feet"),
  28055. default: true
  28056. },
  28057. {
  28058. name: "Macro",
  28059. height: math.unit(500, "feet")
  28060. },
  28061. {
  28062. name: "Megamacro",
  28063. height: math.unit(200, "miles")
  28064. },
  28065. ]
  28066. ))
  28067. characterMakers.push(() => makeCharacter(
  28068. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28069. {
  28070. front: {
  28071. height: math.unit(6 + 2 / 12, "feet"),
  28072. weight: math.unit(150, "lb"),
  28073. name: "Front",
  28074. image: {
  28075. source: "./media/characters/lira/front.svg",
  28076. extra: 1727 / 1605,
  28077. bottom: 26 / 1753
  28078. }
  28079. },
  28080. back: {
  28081. height: math.unit(6 + 2 / 12, "feet"),
  28082. weight: math.unit(150, "lb"),
  28083. name: "Back",
  28084. image: {
  28085. source: "./media/characters/lira/back.svg",
  28086. extra: 1713/1621,
  28087. bottom: 20/1733
  28088. }
  28089. },
  28090. hand: {
  28091. height: math.unit(0.75, "feet"),
  28092. name: "Hand",
  28093. image: {
  28094. source: "./media/characters/lira/hand.svg"
  28095. }
  28096. },
  28097. maw: {
  28098. height: math.unit(0.65, "feet"),
  28099. name: "Maw",
  28100. image: {
  28101. source: "./media/characters/lira/maw.svg"
  28102. }
  28103. },
  28104. pawDigi: {
  28105. height: math.unit(1.6, "feet"),
  28106. name: "Paw Digi",
  28107. image: {
  28108. source: "./media/characters/lira/paw-digi.svg"
  28109. }
  28110. },
  28111. pawPlanti: {
  28112. height: math.unit(1.4, "feet"),
  28113. name: "Paw Planti",
  28114. image: {
  28115. source: "./media/characters/lira/paw-planti.svg"
  28116. }
  28117. },
  28118. },
  28119. [
  28120. {
  28121. name: "Normal",
  28122. height: math.unit(6 + 2 / 12, "feet"),
  28123. default: true
  28124. },
  28125. {
  28126. name: "Macro",
  28127. height: math.unit(100, "feet")
  28128. },
  28129. {
  28130. name: "Macro²",
  28131. height: math.unit(1600, "feet")
  28132. },
  28133. {
  28134. name: "Planetary",
  28135. height: math.unit(20, "earths")
  28136. },
  28137. ]
  28138. ))
  28139. characterMakers.push(() => makeCharacter(
  28140. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28141. {
  28142. front: {
  28143. height: math.unit(6, "feet"),
  28144. weight: math.unit(150, "lb"),
  28145. name: "Front",
  28146. image: {
  28147. source: "./media/characters/hadjet/front.svg",
  28148. extra: 1480 / 1346,
  28149. bottom: 26 / 1506
  28150. }
  28151. },
  28152. frontNsfw: {
  28153. height: math.unit(6, "feet"),
  28154. weight: math.unit(150, "lb"),
  28155. name: "Front (NSFW)",
  28156. image: {
  28157. source: "./media/characters/hadjet/front-nsfw.svg",
  28158. extra: 1440 / 1358,
  28159. bottom: 52 / 1492
  28160. }
  28161. },
  28162. },
  28163. [
  28164. {
  28165. name: "Macro",
  28166. height: math.unit(10, "stories"),
  28167. default: true
  28168. },
  28169. {
  28170. name: "Megamacro",
  28171. height: math.unit(1.5, "miles")
  28172. },
  28173. {
  28174. name: "Megamacro+",
  28175. height: math.unit(5, "miles")
  28176. },
  28177. ]
  28178. ))
  28179. characterMakers.push(() => makeCharacter(
  28180. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28181. {
  28182. side: {
  28183. height: math.unit(106, "feet"),
  28184. weight: math.unit(500, "tonnes"),
  28185. name: "Side",
  28186. image: {
  28187. source: "./media/characters/kodran/side.svg",
  28188. extra: 553 / 480,
  28189. bottom: 33 / 586
  28190. }
  28191. },
  28192. front: {
  28193. height: math.unit(132, "feet"),
  28194. weight: math.unit(500, "tonnes"),
  28195. name: "Front",
  28196. image: {
  28197. source: "./media/characters/kodran/front.svg",
  28198. extra: 667 / 643,
  28199. bottom: 42 / 709
  28200. }
  28201. },
  28202. flying: {
  28203. height: math.unit(350, "feet"),
  28204. weight: math.unit(500, "tonnes"),
  28205. name: "Flying",
  28206. image: {
  28207. source: "./media/characters/kodran/flying.svg"
  28208. }
  28209. },
  28210. foot: {
  28211. height: math.unit(33, "feet"),
  28212. name: "Foot",
  28213. image: {
  28214. source: "./media/characters/kodran/foot.svg"
  28215. }
  28216. },
  28217. footFront: {
  28218. height: math.unit(19, "feet"),
  28219. name: "Foot (Front)",
  28220. image: {
  28221. source: "./media/characters/kodran/foot-front.svg",
  28222. extra: 261 / 261,
  28223. bottom: 91 / 352
  28224. }
  28225. },
  28226. headFront: {
  28227. height: math.unit(53, "feet"),
  28228. name: "Head (Front)",
  28229. image: {
  28230. source: "./media/characters/kodran/head-front.svg"
  28231. }
  28232. },
  28233. headSide: {
  28234. height: math.unit(65, "feet"),
  28235. name: "Head (Side)",
  28236. image: {
  28237. source: "./media/characters/kodran/head-side.svg"
  28238. }
  28239. },
  28240. throat: {
  28241. height: math.unit(79, "feet"),
  28242. name: "Throat",
  28243. image: {
  28244. source: "./media/characters/kodran/throat.svg"
  28245. }
  28246. },
  28247. },
  28248. [
  28249. {
  28250. name: "Large",
  28251. height: math.unit(106, "feet"),
  28252. default: true
  28253. },
  28254. ]
  28255. ))
  28256. characterMakers.push(() => makeCharacter(
  28257. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28258. {
  28259. side: {
  28260. height: math.unit(11, "feet"),
  28261. weight: math.unit(150, "lb"),
  28262. name: "Side",
  28263. image: {
  28264. source: "./media/characters/pyxaron/side.svg",
  28265. extra: 305 / 195,
  28266. bottom: 17 / 322
  28267. }
  28268. },
  28269. },
  28270. [
  28271. {
  28272. name: "Normal",
  28273. height: math.unit(11, "feet"),
  28274. default: true
  28275. },
  28276. ]
  28277. ))
  28278. characterMakers.push(() => makeCharacter(
  28279. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28280. {
  28281. front: {
  28282. height: math.unit(6, "feet"),
  28283. weight: math.unit(150, "lb"),
  28284. name: "Front",
  28285. image: {
  28286. source: "./media/characters/meep/front.svg",
  28287. extra: 88 / 80,
  28288. bottom: 6 / 94
  28289. }
  28290. },
  28291. },
  28292. [
  28293. {
  28294. name: "Fun Sized",
  28295. height: math.unit(2, "inches"),
  28296. default: true
  28297. },
  28298. {
  28299. name: "Friend Sized",
  28300. height: math.unit(8, "inches")
  28301. },
  28302. ]
  28303. ))
  28304. characterMakers.push(() => makeCharacter(
  28305. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28306. {
  28307. front: {
  28308. height: math.unit(15, "feet"),
  28309. weight: math.unit(2500, "lb"),
  28310. name: "Front",
  28311. image: {
  28312. source: "./media/characters/holly-rabbit/front.svg",
  28313. extra: 1433 / 1233,
  28314. bottom: 125 / 1558
  28315. }
  28316. },
  28317. dick: {
  28318. height: math.unit(4.6, "feet"),
  28319. name: "Dick",
  28320. image: {
  28321. source: "./media/characters/holly-rabbit/dick.svg"
  28322. }
  28323. },
  28324. },
  28325. [
  28326. {
  28327. name: "Normal",
  28328. height: math.unit(15, "feet"),
  28329. default: true
  28330. },
  28331. {
  28332. name: "Macro",
  28333. height: math.unit(250, "feet")
  28334. },
  28335. {
  28336. name: "Macro+",
  28337. height: math.unit(2500, "feet")
  28338. },
  28339. ]
  28340. ))
  28341. characterMakers.push(() => makeCharacter(
  28342. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28343. {
  28344. front: {
  28345. height: math.unit(3.02, "meters"),
  28346. weight: math.unit(500, "kg"),
  28347. name: "Front",
  28348. image: {
  28349. source: "./media/characters/drena/front.svg",
  28350. extra: 282 / 243,
  28351. bottom: 8 / 290
  28352. }
  28353. },
  28354. side: {
  28355. height: math.unit(3.02, "meters"),
  28356. weight: math.unit(500, "kg"),
  28357. name: "Side",
  28358. image: {
  28359. source: "./media/characters/drena/side.svg",
  28360. extra: 280 / 245,
  28361. bottom: 10 / 290
  28362. }
  28363. },
  28364. back: {
  28365. height: math.unit(3.02, "meters"),
  28366. weight: math.unit(500, "kg"),
  28367. name: "Back",
  28368. image: {
  28369. source: "./media/characters/drena/back.svg",
  28370. extra: 278 / 243,
  28371. bottom: 2 / 280
  28372. }
  28373. },
  28374. foot: {
  28375. height: math.unit(0.75, "meters"),
  28376. name: "Foot",
  28377. image: {
  28378. source: "./media/characters/drena/foot.svg"
  28379. }
  28380. },
  28381. maw: {
  28382. height: math.unit(0.82, "meters"),
  28383. name: "Maw",
  28384. image: {
  28385. source: "./media/characters/drena/maw.svg"
  28386. }
  28387. },
  28388. rump: {
  28389. height: math.unit(0.93, "meters"),
  28390. name: "Rump",
  28391. image: {
  28392. source: "./media/characters/drena/rump.svg"
  28393. }
  28394. },
  28395. },
  28396. [
  28397. {
  28398. name: "Normal",
  28399. height: math.unit(3.02, "meters"),
  28400. default: true
  28401. },
  28402. ]
  28403. ))
  28404. characterMakers.push(() => makeCharacter(
  28405. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28406. {
  28407. front: {
  28408. height: math.unit(6 + 4 / 12, "feet"),
  28409. weight: math.unit(250, "lb"),
  28410. name: "Front",
  28411. image: {
  28412. source: "./media/characters/remmyzilla/front.svg",
  28413. extra: 4033 / 3588,
  28414. bottom: 123 / 4156
  28415. }
  28416. },
  28417. back: {
  28418. height: math.unit(6 + 4 / 12, "feet"),
  28419. weight: math.unit(250, "lb"),
  28420. name: "Back",
  28421. image: {
  28422. source: "./media/characters/remmyzilla/back.svg",
  28423. extra: 2687 / 2555,
  28424. bottom: 48 / 2735
  28425. }
  28426. },
  28427. paw: {
  28428. height: math.unit(1.73, "feet"),
  28429. name: "Paw",
  28430. image: {
  28431. source: "./media/characters/remmyzilla/paw.svg"
  28432. }
  28433. },
  28434. maw: {
  28435. height: math.unit(1.73, "feet"),
  28436. name: "Maw",
  28437. image: {
  28438. source: "./media/characters/remmyzilla/maw.svg"
  28439. }
  28440. },
  28441. },
  28442. [
  28443. {
  28444. name: "Normal",
  28445. height: math.unit(6 + 4 / 12, "feet")
  28446. },
  28447. {
  28448. name: "Minimacro",
  28449. height: math.unit(12 + 8 / 12, "feet")
  28450. },
  28451. {
  28452. name: "Normal",
  28453. height: math.unit(640, "feet"),
  28454. default: true
  28455. },
  28456. {
  28457. name: "Megamacro",
  28458. height: math.unit(6400, "feet")
  28459. },
  28460. {
  28461. name: "Gigamacro",
  28462. height: math.unit(64000, "miles")
  28463. },
  28464. ]
  28465. ))
  28466. characterMakers.push(() => makeCharacter(
  28467. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28468. {
  28469. front: {
  28470. height: math.unit(2.5, "meters"),
  28471. weight: math.unit(300, "lb"),
  28472. name: "Front",
  28473. image: {
  28474. source: "./media/characters/lawrence/front.svg",
  28475. extra: 357 / 335,
  28476. bottom: 30 / 387
  28477. }
  28478. },
  28479. back: {
  28480. height: math.unit(2.5, "meters"),
  28481. weight: math.unit(300, "lb"),
  28482. name: "Back",
  28483. image: {
  28484. source: "./media/characters/lawrence/back.svg",
  28485. extra: 357 / 338,
  28486. bottom: 16 / 373
  28487. }
  28488. },
  28489. head: {
  28490. height: math.unit(0.9, "meter"),
  28491. name: "Head",
  28492. image: {
  28493. source: "./media/characters/lawrence/head.svg"
  28494. }
  28495. },
  28496. maw: {
  28497. height: math.unit(0.7, "meter"),
  28498. name: "Maw",
  28499. image: {
  28500. source: "./media/characters/lawrence/maw.svg"
  28501. }
  28502. },
  28503. footBottom: {
  28504. height: math.unit(0.5, "meter"),
  28505. name: "Foot (Bottom)",
  28506. image: {
  28507. source: "./media/characters/lawrence/foot-bottom.svg"
  28508. }
  28509. },
  28510. footTop: {
  28511. height: math.unit(0.5, "meter"),
  28512. name: "Foot (Top)",
  28513. image: {
  28514. source: "./media/characters/lawrence/foot-top.svg"
  28515. }
  28516. },
  28517. },
  28518. [
  28519. {
  28520. name: "Normal",
  28521. height: math.unit(2.5, "meters"),
  28522. default: true
  28523. },
  28524. {
  28525. name: "Macro",
  28526. height: math.unit(95, "meters")
  28527. },
  28528. {
  28529. name: "Megamacro",
  28530. height: math.unit(150, "km")
  28531. },
  28532. ]
  28533. ))
  28534. characterMakers.push(() => makeCharacter(
  28535. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28536. {
  28537. front: {
  28538. height: math.unit(4.2, "meters"),
  28539. name: "Front",
  28540. image: {
  28541. source: "./media/characters/sydney/front.svg",
  28542. extra: 1323 / 1277,
  28543. bottom: 111 / 1434
  28544. }
  28545. },
  28546. },
  28547. [
  28548. {
  28549. name: "Normal",
  28550. height: math.unit(4.2, "meters"),
  28551. default: true
  28552. },
  28553. ]
  28554. ))
  28555. characterMakers.push(() => makeCharacter(
  28556. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28557. {
  28558. back: {
  28559. height: math.unit(201, "feet"),
  28560. name: "Back",
  28561. image: {
  28562. source: "./media/characters/jessica/back.svg",
  28563. extra: 273 / 259,
  28564. bottom: 7 / 280
  28565. }
  28566. },
  28567. },
  28568. [
  28569. {
  28570. name: "Normal",
  28571. height: math.unit(201, "feet"),
  28572. default: true
  28573. },
  28574. {
  28575. name: "Megamacro",
  28576. height: math.unit(8, "miles")
  28577. },
  28578. ]
  28579. ))
  28580. characterMakers.push(() => makeCharacter(
  28581. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28582. {
  28583. side: {
  28584. height: math.unit(320, "cm"),
  28585. name: "Side",
  28586. image: {
  28587. source: "./media/characters/victoria/side.svg",
  28588. extra: 778 / 346,
  28589. bottom: 56 / 834
  28590. }
  28591. },
  28592. maw: {
  28593. height: math.unit(5.9, "feet"),
  28594. name: "Maw",
  28595. image: {
  28596. source: "./media/characters/victoria/maw.svg"
  28597. }
  28598. },
  28599. },
  28600. [
  28601. {
  28602. name: "Normal",
  28603. height: math.unit(320, "cm"),
  28604. default: true
  28605. },
  28606. ]
  28607. ))
  28608. characterMakers.push(() => makeCharacter(
  28609. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28610. {
  28611. front: {
  28612. height: math.unit(5 + 6 / 12, "feet"),
  28613. name: "Front",
  28614. image: {
  28615. source: "./media/characters/cat/front.svg",
  28616. extra: 1449/1295,
  28617. bottom: 34/1483
  28618. }
  28619. },
  28620. back: {
  28621. height: math.unit(5 + 6 / 12, "feet"),
  28622. name: "Back",
  28623. image: {
  28624. source: "./media/characters/cat/back.svg",
  28625. extra: 1466/1301,
  28626. bottom: 19/1485
  28627. }
  28628. },
  28629. taur: {
  28630. height: math.unit(7, "feet"),
  28631. name: "Taur",
  28632. image: {
  28633. source: "./media/characters/cat/taur.svg",
  28634. extra: 1389/1233,
  28635. bottom: 83/1472
  28636. }
  28637. },
  28638. lucarioFront: {
  28639. height: math.unit(4, "feet"),
  28640. name: "Lucario (Front)",
  28641. image: {
  28642. source: "./media/characters/cat/lucario-front.svg",
  28643. extra: 1149/1019,
  28644. bottom: 84/1233
  28645. }
  28646. },
  28647. lucarioBack: {
  28648. height: math.unit(4, "feet"),
  28649. name: "Lucario (Back)",
  28650. image: {
  28651. source: "./media/characters/cat/lucario-back.svg",
  28652. extra: 1190/1059,
  28653. bottom: 33/1223
  28654. }
  28655. },
  28656. megaLucario: {
  28657. height: math.unit(4, "feet"),
  28658. name: "Mega Lucario",
  28659. image: {
  28660. source: "./media/characters/cat/mega-lucario.svg",
  28661. extra: 1515 / 1319,
  28662. bottom: 63 / 1578
  28663. }
  28664. },
  28665. nickit: {
  28666. height: math.unit(2, "feet"),
  28667. name: "Nickit",
  28668. image: {
  28669. source: "./media/characters/cat/nickit.svg",
  28670. extra: 1980 / 1585,
  28671. bottom: 102 / 2082
  28672. }
  28673. },
  28674. lopunnyFront: {
  28675. height: math.unit(5, "feet"),
  28676. name: "Lopunny (Front)",
  28677. image: {
  28678. source: "./media/characters/cat/lopunny-front.svg",
  28679. extra: 1782 / 1469,
  28680. bottom: 38 / 1820
  28681. }
  28682. },
  28683. lopunnyBack: {
  28684. height: math.unit(5, "feet"),
  28685. name: "Lopunny (Back)",
  28686. image: {
  28687. source: "./media/characters/cat/lopunny-back.svg",
  28688. extra: 1660 / 1490,
  28689. bottom: 25 / 1685
  28690. }
  28691. },
  28692. },
  28693. [
  28694. {
  28695. name: "Really small",
  28696. height: math.unit(1, "nm")
  28697. },
  28698. {
  28699. name: "Micro",
  28700. height: math.unit(5, "inches")
  28701. },
  28702. {
  28703. name: "Normal",
  28704. height: math.unit(5 + 6 / 12, "feet"),
  28705. default: true
  28706. },
  28707. {
  28708. name: "Macro",
  28709. height: math.unit(50, "feet")
  28710. },
  28711. {
  28712. name: "Macro+",
  28713. height: math.unit(150, "feet")
  28714. },
  28715. {
  28716. name: "Megamacro",
  28717. height: math.unit(100, "miles")
  28718. },
  28719. ]
  28720. ))
  28721. characterMakers.push(() => makeCharacter(
  28722. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28723. {
  28724. front: {
  28725. height: math.unit(63.4, "meters"),
  28726. weight: math.unit(3.28349e+6, "kilograms"),
  28727. name: "Front",
  28728. image: {
  28729. source: "./media/characters/kirina-violet/front.svg",
  28730. extra: 2812 / 2725,
  28731. bottom: 0 / 2812
  28732. }
  28733. },
  28734. back: {
  28735. height: math.unit(63.4, "meters"),
  28736. weight: math.unit(3.28349e+6, "kilograms"),
  28737. name: "Back",
  28738. image: {
  28739. source: "./media/characters/kirina-violet/back.svg",
  28740. extra: 2812 / 2725,
  28741. bottom: 0 / 2812
  28742. }
  28743. },
  28744. mouth: {
  28745. height: math.unit(4.35, "meters"),
  28746. name: "Mouth",
  28747. image: {
  28748. source: "./media/characters/kirina-violet/mouth.svg"
  28749. }
  28750. },
  28751. paw: {
  28752. height: math.unit(5.6, "meters"),
  28753. name: "Paw",
  28754. image: {
  28755. source: "./media/characters/kirina-violet/paw.svg"
  28756. }
  28757. },
  28758. tail: {
  28759. height: math.unit(18, "meters"),
  28760. name: "Tail",
  28761. image: {
  28762. source: "./media/characters/kirina-violet/tail.svg"
  28763. }
  28764. },
  28765. },
  28766. [
  28767. {
  28768. name: "Macro",
  28769. height: math.unit(63.4, "meters"),
  28770. default: true
  28771. },
  28772. ]
  28773. ))
  28774. characterMakers.push(() => makeCharacter(
  28775. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28776. {
  28777. front: {
  28778. height: math.unit(75, "feet"),
  28779. name: "Front",
  28780. image: {
  28781. source: "./media/characters/cat-gigachu/front.svg",
  28782. extra: 1239/1027,
  28783. bottom: 32/1271
  28784. }
  28785. },
  28786. back: {
  28787. height: math.unit(75, "feet"),
  28788. name: "Back",
  28789. image: {
  28790. source: "./media/characters/cat-gigachu/back.svg",
  28791. extra: 1229/1030,
  28792. bottom: 9/1238
  28793. }
  28794. },
  28795. },
  28796. [
  28797. {
  28798. name: "Dynamax",
  28799. height: math.unit(75, "feet"),
  28800. default: true
  28801. },
  28802. ]
  28803. ))
  28804. characterMakers.push(() => makeCharacter(
  28805. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28806. {
  28807. front: {
  28808. height: math.unit(6, "feet"),
  28809. weight: math.unit(150, "lb"),
  28810. name: "Front",
  28811. image: {
  28812. source: "./media/characters/sfaiyan/front.svg",
  28813. extra: 999 / 978,
  28814. bottom: 5 / 1004
  28815. }
  28816. },
  28817. },
  28818. [
  28819. {
  28820. name: "Normal",
  28821. height: math.unit(1.82, "meters")
  28822. },
  28823. {
  28824. name: "Giant",
  28825. height: math.unit(2.27, "km"),
  28826. default: true
  28827. },
  28828. ]
  28829. ))
  28830. characterMakers.push(() => makeCharacter(
  28831. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28832. {
  28833. front: {
  28834. height: math.unit(179, "cm"),
  28835. weight: math.unit(100, "kg"),
  28836. name: "Front",
  28837. image: {
  28838. source: "./media/characters/raunehkeli/front.svg",
  28839. extra: 1934 / 1926,
  28840. bottom: 0 / 1934
  28841. }
  28842. },
  28843. },
  28844. [
  28845. {
  28846. name: "Normal",
  28847. height: math.unit(179, "cm")
  28848. },
  28849. {
  28850. name: "Maximum",
  28851. height: math.unit(575, "meters"),
  28852. default: true
  28853. },
  28854. ]
  28855. ))
  28856. characterMakers.push(() => makeCharacter(
  28857. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28858. {
  28859. front: {
  28860. height: math.unit(6, "feet"),
  28861. weight: math.unit(150, "lb"),
  28862. name: "Front",
  28863. image: {
  28864. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28865. extra: 2625 / 2518,
  28866. bottom: 60 / 2685
  28867. }
  28868. },
  28869. },
  28870. [
  28871. {
  28872. name: "Normal",
  28873. height: math.unit(6 + 2 / 12, "feet")
  28874. },
  28875. {
  28876. name: "Macro",
  28877. height: math.unit(1180, "feet"),
  28878. default: true
  28879. },
  28880. ]
  28881. ))
  28882. characterMakers.push(() => makeCharacter(
  28883. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28884. {
  28885. front: {
  28886. height: math.unit(5 + 6 / 12, "feet"),
  28887. weight: math.unit(108, "lb"),
  28888. name: "Front",
  28889. image: {
  28890. source: "./media/characters/lilith-zott/front.svg",
  28891. extra: 2510 / 2238,
  28892. bottom: 100 / 2610
  28893. }
  28894. },
  28895. frontDressed: {
  28896. height: math.unit(5 + 6 / 12, "feet"),
  28897. weight: math.unit(108, "lb"),
  28898. name: "Front (Dressed)",
  28899. image: {
  28900. source: "./media/characters/lilith-zott/front-dressed.svg",
  28901. extra: 2510 / 2238,
  28902. bottom: 100 / 2610
  28903. }
  28904. },
  28905. },
  28906. [
  28907. {
  28908. name: "Normal",
  28909. height: math.unit(5 + 6 / 12, "feet")
  28910. },
  28911. {
  28912. name: "Macro",
  28913. height: math.unit(1030, "feet"),
  28914. default: true
  28915. },
  28916. ]
  28917. ))
  28918. characterMakers.push(() => makeCharacter(
  28919. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28920. {
  28921. front: {
  28922. height: math.unit(6, "feet"),
  28923. weight: math.unit(150, "lb"),
  28924. name: "Front",
  28925. image: {
  28926. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28927. extra: 2567 / 2435,
  28928. bottom: 39 / 2606
  28929. }
  28930. },
  28931. frontSuper: {
  28932. height: math.unit(6, "feet"),
  28933. name: "Front (Super)",
  28934. image: {
  28935. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28936. extra: 2567 / 2435,
  28937. bottom: 39 / 2606
  28938. }
  28939. },
  28940. },
  28941. [
  28942. {
  28943. name: "Normal",
  28944. height: math.unit(5 + 10 / 12, "feet")
  28945. },
  28946. {
  28947. name: "Macro",
  28948. height: math.unit(1100, "feet"),
  28949. default: true
  28950. },
  28951. ]
  28952. ))
  28953. characterMakers.push(() => makeCharacter(
  28954. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28955. {
  28956. front: {
  28957. height: math.unit(100, "miles"),
  28958. name: "Front",
  28959. image: {
  28960. source: "./media/characters/sona/front.svg",
  28961. extra: 2433 / 2201,
  28962. bottom: 53 / 2486
  28963. }
  28964. },
  28965. foot: {
  28966. height: math.unit(16.1, "miles"),
  28967. name: "Foot",
  28968. image: {
  28969. source: "./media/characters/sona/foot.svg"
  28970. }
  28971. },
  28972. },
  28973. [
  28974. {
  28975. name: "Macro",
  28976. height: math.unit(100, "miles"),
  28977. default: true
  28978. },
  28979. ]
  28980. ))
  28981. characterMakers.push(() => makeCharacter(
  28982. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28983. {
  28984. front: {
  28985. height: math.unit(6, "feet"),
  28986. weight: math.unit(150, "lb"),
  28987. name: "Front",
  28988. image: {
  28989. source: "./media/characters/bailey/front.svg",
  28990. extra: 1778 / 1724,
  28991. bottom: 30 / 1808
  28992. }
  28993. },
  28994. },
  28995. [
  28996. {
  28997. name: "Micro",
  28998. height: math.unit(4, "inches")
  28999. },
  29000. {
  29001. name: "Normal",
  29002. height: math.unit(5 + 5 / 12, "feet"),
  29003. default: true
  29004. },
  29005. {
  29006. name: "Macro",
  29007. height: math.unit(250, "feet")
  29008. },
  29009. {
  29010. name: "Megamacro",
  29011. height: math.unit(100, "miles")
  29012. },
  29013. ]
  29014. ))
  29015. characterMakers.push(() => makeCharacter(
  29016. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29017. {
  29018. front: {
  29019. height: math.unit(5 + 2 / 12, "feet"),
  29020. weight: math.unit(120, "lb"),
  29021. name: "Front",
  29022. image: {
  29023. source: "./media/characters/snaps/front.svg",
  29024. extra: 2370 / 2177,
  29025. bottom: 48 / 2418
  29026. }
  29027. },
  29028. back: {
  29029. height: math.unit(5 + 2 / 12, "feet"),
  29030. weight: math.unit(120, "lb"),
  29031. name: "Back",
  29032. image: {
  29033. source: "./media/characters/snaps/back.svg",
  29034. extra: 2408 / 2258,
  29035. bottom: 15 / 2423
  29036. }
  29037. },
  29038. },
  29039. [
  29040. {
  29041. name: "Micro",
  29042. height: math.unit(9, "inches")
  29043. },
  29044. {
  29045. name: "Normal",
  29046. height: math.unit(5 + 2 / 12, "feet"),
  29047. default: true
  29048. },
  29049. {
  29050. name: "Mini Macro",
  29051. height: math.unit(10, "feet")
  29052. },
  29053. ]
  29054. ))
  29055. characterMakers.push(() => makeCharacter(
  29056. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29057. {
  29058. front: {
  29059. height: math.unit(1.8, "meters"),
  29060. weight: math.unit(85, "kg"),
  29061. name: "Front",
  29062. image: {
  29063. source: "./media/characters/azteck/front.svg",
  29064. extra: 2815 / 2625,
  29065. bottom: 89 / 2904
  29066. }
  29067. },
  29068. back: {
  29069. height: math.unit(1.8, "meters"),
  29070. weight: math.unit(85, "kg"),
  29071. name: "Back",
  29072. image: {
  29073. source: "./media/characters/azteck/back.svg",
  29074. extra: 2856 / 2648,
  29075. bottom: 85 / 2941
  29076. }
  29077. },
  29078. frontDressed: {
  29079. height: math.unit(1.8, "meters"),
  29080. weight: math.unit(85, "kg"),
  29081. name: "Front (Dressed)",
  29082. image: {
  29083. source: "./media/characters/azteck/front-dressed.svg",
  29084. extra: 2147 / 2003,
  29085. bottom: 68 / 2215
  29086. }
  29087. },
  29088. head: {
  29089. height: math.unit(0.47, "meters"),
  29090. weight: math.unit(85, "kg"),
  29091. name: "Head",
  29092. image: {
  29093. source: "./media/characters/azteck/head.svg"
  29094. }
  29095. },
  29096. },
  29097. [
  29098. {
  29099. name: "Bite sized",
  29100. height: math.unit(16, "cm")
  29101. },
  29102. {
  29103. name: "Normal",
  29104. height: math.unit(1.8, "meters"),
  29105. default: true
  29106. },
  29107. ]
  29108. ))
  29109. characterMakers.push(() => makeCharacter(
  29110. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29111. {
  29112. front: {
  29113. height: math.unit(6, "feet"),
  29114. weight: math.unit(150, "lb"),
  29115. name: "Front",
  29116. image: {
  29117. source: "./media/characters/pidge/front.svg",
  29118. extra: 620 / 588,
  29119. bottom: 9 / 629
  29120. }
  29121. },
  29122. back: {
  29123. height: math.unit(6, "feet"),
  29124. weight: math.unit(150, "lb"),
  29125. name: "Back",
  29126. image: {
  29127. source: "./media/characters/pidge/back.svg",
  29128. extra: 620 / 588,
  29129. bottom: 9 / 629
  29130. }
  29131. },
  29132. },
  29133. [
  29134. {
  29135. name: "Macro",
  29136. height: math.unit(1, "mile"),
  29137. default: true
  29138. },
  29139. ]
  29140. ))
  29141. characterMakers.push(() => makeCharacter(
  29142. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29143. {
  29144. front: {
  29145. height: math.unit(6, "feet"),
  29146. weight: math.unit(150, "lb"),
  29147. name: "Front",
  29148. image: {
  29149. source: "./media/characters/en/front.svg",
  29150. extra: 1697 / 1563,
  29151. bottom: 103 / 1800
  29152. }
  29153. },
  29154. back: {
  29155. height: math.unit(6, "feet"),
  29156. weight: math.unit(150, "lb"),
  29157. name: "Back",
  29158. image: {
  29159. source: "./media/characters/en/back.svg",
  29160. extra: 1700 / 1570,
  29161. bottom: 51 / 1751
  29162. }
  29163. },
  29164. frontDressed: {
  29165. height: math.unit(6, "feet"),
  29166. weight: math.unit(150, "lb"),
  29167. name: "Front (Dressed)",
  29168. image: {
  29169. source: "./media/characters/en/front-dressed.svg",
  29170. extra: 1697 / 1563,
  29171. bottom: 103 / 1800
  29172. }
  29173. },
  29174. backDressed: {
  29175. height: math.unit(6, "feet"),
  29176. weight: math.unit(150, "lb"),
  29177. name: "Back (Dressed)",
  29178. image: {
  29179. source: "./media/characters/en/back-dressed.svg",
  29180. extra: 1700 / 1570,
  29181. bottom: 51 / 1751
  29182. }
  29183. },
  29184. },
  29185. [
  29186. {
  29187. name: "Macro",
  29188. height: math.unit(210, "feet"),
  29189. default: true
  29190. },
  29191. ]
  29192. ))
  29193. characterMakers.push(() => makeCharacter(
  29194. { name: "Haze Orris", species: ["cat", "undead"], 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/haze-orris/front.svg",
  29202. extra: 3975 / 3525,
  29203. bottom: 137 / 4112
  29204. }
  29205. },
  29206. },
  29207. [
  29208. {
  29209. name: "Micro",
  29210. height: math.unit(150, "mm"),
  29211. default: true
  29212. },
  29213. ]
  29214. ))
  29215. characterMakers.push(() => makeCharacter(
  29216. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29217. {
  29218. front: {
  29219. height: math.unit(6, "feet"),
  29220. weight: math.unit(150, "lb"),
  29221. name: "Front",
  29222. image: {
  29223. source: "./media/characters/casselene-yaro/front.svg",
  29224. extra: 4721 / 4541,
  29225. bottom: 82 / 4803
  29226. }
  29227. },
  29228. back: {
  29229. height: math.unit(6, "feet"),
  29230. weight: math.unit(150, "lb"),
  29231. name: "Back",
  29232. image: {
  29233. source: "./media/characters/casselene-yaro/back.svg",
  29234. extra: 4569 / 4377,
  29235. bottom: 69 / 4638
  29236. }
  29237. },
  29238. frontDressed: {
  29239. height: math.unit(6, "feet"),
  29240. weight: math.unit(150, "lb"),
  29241. name: "Front-dressed",
  29242. image: {
  29243. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29244. extra: 4721 / 4541,
  29245. bottom: 82 / 4803
  29246. }
  29247. },
  29248. },
  29249. [
  29250. {
  29251. name: "Macro",
  29252. height: math.unit(190, "feet"),
  29253. default: true
  29254. },
  29255. ]
  29256. ))
  29257. characterMakers.push(() => makeCharacter(
  29258. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29259. {
  29260. front: {
  29261. height: math.unit(6, "feet"),
  29262. weight: math.unit(150, "lb"),
  29263. name: "Front",
  29264. image: {
  29265. source: "./media/characters/myra-rue-delore/front.svg",
  29266. extra: 1340 / 1308,
  29267. bottom: 67 / 1407
  29268. }
  29269. },
  29270. back: {
  29271. height: math.unit(6, "feet"),
  29272. weight: math.unit(150, "lb"),
  29273. name: "Back",
  29274. image: {
  29275. source: "./media/characters/myra-rue-delore/back.svg",
  29276. extra: 1341 / 1310,
  29277. bottom: 40 / 1381
  29278. }
  29279. },
  29280. frontDressed: {
  29281. height: math.unit(6, "feet"),
  29282. weight: math.unit(150, "lb"),
  29283. name: "Front (Dressed)",
  29284. image: {
  29285. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29286. extra: 1340 / 1308,
  29287. bottom: 67 / 1407
  29288. }
  29289. },
  29290. },
  29291. [
  29292. {
  29293. name: "Macro",
  29294. height: math.unit(150, "feet"),
  29295. default: true
  29296. },
  29297. ]
  29298. ))
  29299. characterMakers.push(() => makeCharacter(
  29300. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29301. {
  29302. front: {
  29303. height: math.unit(10, "feet"),
  29304. weight: math.unit(15015, "lb"),
  29305. name: "Front",
  29306. image: {
  29307. source: "./media/characters/fem!plat/front.svg",
  29308. extra: 2799 / 2604,
  29309. bottom: 149 / 2948
  29310. }
  29311. },
  29312. },
  29313. [
  29314. {
  29315. name: "Normal",
  29316. height: math.unit(10, "feet"),
  29317. default: true
  29318. },
  29319. {
  29320. name: "Macro",
  29321. height: math.unit(100, "feet")
  29322. },
  29323. {
  29324. name: "Megamacro",
  29325. height: math.unit(1000, "feet")
  29326. },
  29327. ]
  29328. ))
  29329. characterMakers.push(() => makeCharacter(
  29330. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29331. {
  29332. front: {
  29333. height: math.unit(15 + 5 / 12, "feet"),
  29334. weight: math.unit(4600, "lb"),
  29335. name: "Front",
  29336. image: {
  29337. source: "./media/characters/neapolitan-ananassa/front.svg",
  29338. extra: 2903 / 2736,
  29339. bottom: 0 / 2903
  29340. }
  29341. },
  29342. side: {
  29343. height: math.unit(15 + 5 / 12, "feet"),
  29344. weight: math.unit(4600, "lb"),
  29345. name: "Side",
  29346. image: {
  29347. source: "./media/characters/neapolitan-ananassa/side.svg",
  29348. extra: 2925 / 2719,
  29349. bottom: 0 / 2925
  29350. }
  29351. },
  29352. back: {
  29353. height: math.unit(15 + 5 / 12, "feet"),
  29354. weight: math.unit(4600, "lb"),
  29355. name: "Back",
  29356. image: {
  29357. source: "./media/characters/neapolitan-ananassa/back.svg",
  29358. extra: 2903 / 2736,
  29359. bottom: 0 / 2903
  29360. }
  29361. },
  29362. },
  29363. [
  29364. {
  29365. name: "Normal",
  29366. height: math.unit(15 + 5 / 12, "feet"),
  29367. default: true
  29368. },
  29369. {
  29370. name: "Post-Millenium",
  29371. height: math.unit(35 + 5 / 12, "feet")
  29372. },
  29373. {
  29374. name: "Post-Era",
  29375. height: math.unit(450 + 5 / 12, "feet")
  29376. },
  29377. ]
  29378. ))
  29379. characterMakers.push(() => makeCharacter(
  29380. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29381. {
  29382. front: {
  29383. height: math.unit(300, "meters"),
  29384. weight: math.unit(125000, "tonnes"),
  29385. name: "Front",
  29386. image: {
  29387. source: "./media/characters/pazuzu/front.svg",
  29388. extra: 877 / 794,
  29389. bottom: 47 / 924
  29390. }
  29391. },
  29392. },
  29393. [
  29394. {
  29395. name: "Macro",
  29396. height: math.unit(300, "meters"),
  29397. default: true
  29398. },
  29399. ]
  29400. ))
  29401. characterMakers.push(() => makeCharacter(
  29402. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29403. {
  29404. side: {
  29405. height: math.unit(10 + 7 / 12, "feet"),
  29406. weight: math.unit(2.5, "tons"),
  29407. name: "Side",
  29408. image: {
  29409. source: "./media/characters/aasha/side.svg",
  29410. extra: 1345 / 1245,
  29411. bottom: 111 / 1456
  29412. }
  29413. },
  29414. back: {
  29415. height: math.unit(10 + 7 / 12, "feet"),
  29416. weight: math.unit(2.5, "tons"),
  29417. name: "Back",
  29418. image: {
  29419. source: "./media/characters/aasha/back.svg",
  29420. extra: 1133 / 1057,
  29421. bottom: 257 / 1390
  29422. }
  29423. },
  29424. },
  29425. [
  29426. {
  29427. name: "Normal",
  29428. height: math.unit(10 + 7 / 12, "feet"),
  29429. default: true
  29430. },
  29431. ]
  29432. ))
  29433. characterMakers.push(() => makeCharacter(
  29434. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29435. {
  29436. front: {
  29437. height: math.unit(6 + 3 / 12, "feet"),
  29438. name: "Front",
  29439. image: {
  29440. source: "./media/characters/nevan/front.svg",
  29441. extra: 704 / 704,
  29442. bottom: 28 / 732
  29443. }
  29444. },
  29445. back: {
  29446. height: math.unit(6 + 3 / 12, "feet"),
  29447. name: "Back",
  29448. image: {
  29449. source: "./media/characters/nevan/back.svg",
  29450. extra: 714 / 714,
  29451. bottom: 21 / 735
  29452. }
  29453. },
  29454. frontFlaccid: {
  29455. height: math.unit(6 + 3 / 12, "feet"),
  29456. name: "Front (Flaccid)",
  29457. image: {
  29458. source: "./media/characters/nevan/front-flaccid.svg",
  29459. extra: 704 / 704,
  29460. bottom: 28 / 732
  29461. }
  29462. },
  29463. frontErect: {
  29464. height: math.unit(6 + 3 / 12, "feet"),
  29465. name: "Front (Erect)",
  29466. image: {
  29467. source: "./media/characters/nevan/front-erect.svg",
  29468. extra: 704 / 704,
  29469. bottom: 28 / 732
  29470. }
  29471. },
  29472. backFlaccid: {
  29473. height: math.unit(6 + 3 / 12, "feet"),
  29474. name: "Back (Flaccid)",
  29475. image: {
  29476. source: "./media/characters/nevan/back-flaccid.svg",
  29477. extra: 714 / 714,
  29478. bottom: 21 / 735
  29479. }
  29480. },
  29481. },
  29482. [
  29483. {
  29484. name: "Normal",
  29485. height: math.unit(6 + 3 / 12, "feet"),
  29486. default: true
  29487. },
  29488. ]
  29489. ))
  29490. characterMakers.push(() => makeCharacter(
  29491. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29492. {
  29493. front: {
  29494. height: math.unit(4, "feet"),
  29495. name: "Front",
  29496. image: {
  29497. source: "./media/characters/arhan/front.svg",
  29498. extra: 3368 / 3133,
  29499. bottom: 0 / 3368
  29500. }
  29501. },
  29502. side: {
  29503. height: math.unit(4, "feet"),
  29504. name: "Side",
  29505. image: {
  29506. source: "./media/characters/arhan/side.svg",
  29507. extra: 3347 / 3105,
  29508. bottom: 0 / 3347
  29509. }
  29510. },
  29511. tongue: {
  29512. height: math.unit(1.42, "feet"),
  29513. name: "Tongue",
  29514. image: {
  29515. source: "./media/characters/arhan/tongue.svg"
  29516. }
  29517. },
  29518. head: {
  29519. height: math.unit(0.85, "feet"),
  29520. name: "Head",
  29521. image: {
  29522. source: "./media/characters/arhan/head.svg"
  29523. }
  29524. },
  29525. },
  29526. [
  29527. {
  29528. name: "Normal",
  29529. height: math.unit(4, "feet"),
  29530. default: true
  29531. },
  29532. ]
  29533. ))
  29534. characterMakers.push(() => makeCharacter(
  29535. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29536. {
  29537. front: {
  29538. height: math.unit(5 + 7.5 / 12, "feet"),
  29539. weight: math.unit(120, "lb"),
  29540. name: "Front",
  29541. image: {
  29542. source: "./media/characters/digi-duncan/front.svg",
  29543. extra: 330 / 326,
  29544. bottom: 16 / 346
  29545. }
  29546. },
  29547. side: {
  29548. height: math.unit(5 + 7.5 / 12, "feet"),
  29549. weight: math.unit(120, "lb"),
  29550. name: "Side",
  29551. image: {
  29552. source: "./media/characters/digi-duncan/side.svg",
  29553. extra: 341 / 337,
  29554. bottom: 1 / 342
  29555. }
  29556. },
  29557. back: {
  29558. height: math.unit(5 + 7.5 / 12, "feet"),
  29559. weight: math.unit(120, "lb"),
  29560. name: "Back",
  29561. image: {
  29562. source: "./media/characters/digi-duncan/back.svg",
  29563. extra: 330 / 326,
  29564. bottom: 12 / 342
  29565. }
  29566. },
  29567. },
  29568. [
  29569. {
  29570. name: "Speck",
  29571. height: math.unit(0.25, "mm")
  29572. },
  29573. {
  29574. name: "Micro",
  29575. height: math.unit(5, "mm")
  29576. },
  29577. {
  29578. name: "Tiny",
  29579. height: math.unit(0.5, "inches"),
  29580. default: true
  29581. },
  29582. {
  29583. name: "Human",
  29584. height: math.unit(5 + 7.5 / 12, "feet")
  29585. },
  29586. {
  29587. name: "Minigiant",
  29588. height: math.unit(8 + 5.25, "feet")
  29589. },
  29590. {
  29591. name: "Giant",
  29592. height: math.unit(2000, "feet")
  29593. },
  29594. {
  29595. name: "Mega",
  29596. height: math.unit(371.1, "miles")
  29597. },
  29598. ]
  29599. ))
  29600. characterMakers.push(() => makeCharacter(
  29601. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29602. {
  29603. front: {
  29604. height: math.unit(2, "meters"),
  29605. weight: math.unit(350, "kg"),
  29606. name: "Front",
  29607. image: {
  29608. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29609. extra: 898 / 838,
  29610. bottom: 9 / 907
  29611. }
  29612. },
  29613. },
  29614. [
  29615. {
  29616. name: "Micro",
  29617. height: math.unit(8, "meters")
  29618. },
  29619. {
  29620. name: "Normal",
  29621. height: math.unit(50, "meters"),
  29622. default: true
  29623. },
  29624. {
  29625. name: "Macro",
  29626. height: math.unit(500, "meters")
  29627. },
  29628. ]
  29629. ))
  29630. characterMakers.push(() => makeCharacter(
  29631. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29632. {
  29633. front: {
  29634. height: math.unit(6 + 6 / 12, "feet"),
  29635. name: "Front",
  29636. image: {
  29637. source: "./media/characters/khardesh/front.svg",
  29638. extra: 888 / 797,
  29639. bottom: 25 / 913
  29640. }
  29641. },
  29642. },
  29643. [
  29644. {
  29645. name: "Normal",
  29646. height: math.unit(6 + 6 / 12, "feet"),
  29647. default: true
  29648. },
  29649. {
  29650. name: "Normal+",
  29651. height: math.unit(4, "meters")
  29652. },
  29653. {
  29654. name: "Macro",
  29655. height: math.unit(50, "meters")
  29656. },
  29657. {
  29658. name: "Macro+",
  29659. height: math.unit(100, "meters")
  29660. },
  29661. {
  29662. name: "Megamacro",
  29663. height: math.unit(20, "km")
  29664. },
  29665. ]
  29666. ))
  29667. characterMakers.push(() => makeCharacter(
  29668. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29669. {
  29670. front: {
  29671. height: math.unit(6, "feet"),
  29672. weight: math.unit(150, "lb"),
  29673. name: "Front",
  29674. image: {
  29675. source: "./media/characters/kosho/front.svg",
  29676. extra: 1847 / 1847,
  29677. bottom: 86 / 1933
  29678. }
  29679. },
  29680. },
  29681. [
  29682. {
  29683. name: "Second-stage micro",
  29684. height: math.unit(0.5, "inches")
  29685. },
  29686. {
  29687. name: "First-stage micro",
  29688. height: math.unit(6, "inches")
  29689. },
  29690. {
  29691. name: "Normal",
  29692. height: math.unit(6, "feet"),
  29693. default: true
  29694. },
  29695. {
  29696. name: "First-stage macro",
  29697. height: math.unit(72, "feet")
  29698. },
  29699. {
  29700. name: "Second-stage macro",
  29701. height: math.unit(864, "feet")
  29702. },
  29703. ]
  29704. ))
  29705. characterMakers.push(() => makeCharacter(
  29706. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29707. {
  29708. normal: {
  29709. height: math.unit(4 + 6 / 12, "feet"),
  29710. name: "Normal",
  29711. image: {
  29712. source: "./media/characters/hydra/normal.svg",
  29713. extra: 2833 / 2634,
  29714. bottom: 68 / 2901
  29715. }
  29716. },
  29717. smol: {
  29718. height: math.unit(0.705, "inches"),
  29719. name: "Smol",
  29720. image: {
  29721. source: "./media/characters/hydra/smol.svg",
  29722. extra: 2715 / 2540,
  29723. bottom: 0 / 2715
  29724. }
  29725. },
  29726. },
  29727. [
  29728. {
  29729. name: "Normal",
  29730. height: math.unit(4 + 6 / 12, "feet"),
  29731. default: true
  29732. }
  29733. ]
  29734. ))
  29735. characterMakers.push(() => makeCharacter(
  29736. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29737. {
  29738. front: {
  29739. height: math.unit(0.6, "cm"),
  29740. name: "Front",
  29741. image: {
  29742. source: "./media/characters/daz/front.svg",
  29743. extra: 1682 / 1164,
  29744. bottom: 42 / 1724
  29745. }
  29746. },
  29747. },
  29748. [
  29749. {
  29750. name: "Normal",
  29751. height: math.unit(0.6, "cm"),
  29752. default: true
  29753. },
  29754. ]
  29755. ))
  29756. characterMakers.push(() => makeCharacter(
  29757. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29758. {
  29759. front: {
  29760. height: math.unit(6, "feet"),
  29761. weight: math.unit(235, "lb"),
  29762. name: "Front",
  29763. image: {
  29764. source: "./media/characters/theo-pangolin/front.svg",
  29765. extra: 1996 / 1969,
  29766. bottom: 115 / 2111
  29767. }
  29768. },
  29769. back: {
  29770. height: math.unit(6, "feet"),
  29771. weight: math.unit(235, "lb"),
  29772. name: "Back",
  29773. image: {
  29774. source: "./media/characters/theo-pangolin/back.svg",
  29775. extra: 1979 / 1979,
  29776. bottom: 40 / 2019
  29777. }
  29778. },
  29779. feral: {
  29780. height: math.unit(2, "feet"),
  29781. weight: math.unit(30, "lb"),
  29782. name: "Feral",
  29783. image: {
  29784. source: "./media/characters/theo-pangolin/feral.svg",
  29785. extra: 803 / 791,
  29786. bottom: 181 / 984
  29787. }
  29788. },
  29789. footFive: {
  29790. height: math.unit(1.43, "feet"),
  29791. name: "Foot (Five Toes)",
  29792. image: {
  29793. source: "./media/characters/theo-pangolin/foot-five.svg"
  29794. }
  29795. },
  29796. footFour: {
  29797. height: math.unit(1.43, "feet"),
  29798. name: "Foot (Four Toes)",
  29799. image: {
  29800. source: "./media/characters/theo-pangolin/foot-four.svg"
  29801. }
  29802. },
  29803. handFour: {
  29804. height: math.unit(0.81, "feet"),
  29805. name: "Hand (Four Fingers)",
  29806. image: {
  29807. source: "./media/characters/theo-pangolin/hand-four.svg"
  29808. }
  29809. },
  29810. handThree: {
  29811. height: math.unit(0.81, "feet"),
  29812. name: "Hand (Three Fingers)",
  29813. image: {
  29814. source: "./media/characters/theo-pangolin/hand-three.svg"
  29815. }
  29816. },
  29817. headFront: {
  29818. height: math.unit(1.37, "feet"),
  29819. name: "Head (Front)",
  29820. image: {
  29821. source: "./media/characters/theo-pangolin/head-front.svg"
  29822. }
  29823. },
  29824. headSide: {
  29825. height: math.unit(1.43, "feet"),
  29826. name: "Head (Side)",
  29827. image: {
  29828. source: "./media/characters/theo-pangolin/head-side.svg"
  29829. }
  29830. },
  29831. tongue: {
  29832. height: math.unit(2.29, "feet"),
  29833. name: "Tongue",
  29834. image: {
  29835. source: "./media/characters/theo-pangolin/tongue.svg"
  29836. }
  29837. },
  29838. },
  29839. [
  29840. {
  29841. name: "Normal",
  29842. height: math.unit(6, "feet")
  29843. },
  29844. {
  29845. name: "Macro",
  29846. height: math.unit(400, "feet"),
  29847. default: true
  29848. },
  29849. ]
  29850. ))
  29851. characterMakers.push(() => makeCharacter(
  29852. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29853. {
  29854. front: {
  29855. height: math.unit(6, "inches"),
  29856. weight: math.unit(0.036, "kg"),
  29857. name: "Front",
  29858. image: {
  29859. source: "./media/characters/renée/front.svg",
  29860. extra: 900 / 886,
  29861. bottom: 8 / 908
  29862. }
  29863. },
  29864. },
  29865. [
  29866. {
  29867. name: "Nano",
  29868. height: math.unit(1, "nm")
  29869. },
  29870. {
  29871. name: "Micro",
  29872. height: math.unit(1, "mm")
  29873. },
  29874. {
  29875. name: "Normal",
  29876. height: math.unit(6, "inches")
  29877. },
  29878. {
  29879. name: "Macro",
  29880. height: math.unit(2000, "feet"),
  29881. default: true
  29882. },
  29883. {
  29884. name: "Megamacro",
  29885. height: math.unit(2, "km")
  29886. },
  29887. {
  29888. name: "Gigamacro",
  29889. height: math.unit(2000, "km")
  29890. },
  29891. {
  29892. name: "Teramacro",
  29893. height: math.unit(250000, "km")
  29894. },
  29895. ]
  29896. ))
  29897. characterMakers.push(() => makeCharacter(
  29898. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29899. {
  29900. front: {
  29901. height: math.unit(4, "meters"),
  29902. weight: math.unit(150, "kg"),
  29903. name: "Front",
  29904. image: {
  29905. source: "./media/characters/caledvwlch/front.svg",
  29906. extra: 1760 / 1551,
  29907. bottom: 28 / 1788
  29908. }
  29909. },
  29910. side: {
  29911. height: math.unit(4, "meters"),
  29912. weight: math.unit(150, "kg"),
  29913. name: "Side",
  29914. image: {
  29915. source: "./media/characters/caledvwlch/side.svg",
  29916. extra: 1605 / 1536,
  29917. bottom: 31 / 1636
  29918. }
  29919. },
  29920. back: {
  29921. height: math.unit(4, "meters"),
  29922. weight: math.unit(150, "kg"),
  29923. name: "Back",
  29924. image: {
  29925. source: "./media/characters/caledvwlch/back.svg",
  29926. extra: 1635 / 1565,
  29927. bottom: 27 / 1662
  29928. }
  29929. },
  29930. },
  29931. [
  29932. {
  29933. name: "\"Incognito\"",
  29934. height: math.unit(4, "meters")
  29935. },
  29936. {
  29937. name: "Small rampage",
  29938. height: math.unit(600, "meters")
  29939. },
  29940. {
  29941. name: "Mega",
  29942. height: math.unit(30, "km")
  29943. },
  29944. {
  29945. name: "Home-size",
  29946. height: math.unit(50, "km"),
  29947. default: true
  29948. },
  29949. {
  29950. name: "Giga",
  29951. height: math.unit(300, "km")
  29952. },
  29953. {
  29954. name: "Lounging",
  29955. height: math.unit(11000, "km")
  29956. },
  29957. {
  29958. name: "Planet snacking",
  29959. height: math.unit(2000000, "km")
  29960. },
  29961. ]
  29962. ))
  29963. characterMakers.push(() => makeCharacter(
  29964. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29965. {
  29966. front: {
  29967. height: math.unit(6, "feet"),
  29968. weight: math.unit(215, "lb"),
  29969. name: "Front",
  29970. image: {
  29971. source: "./media/characters/sapphire-svell/front.svg",
  29972. extra: 495 / 455,
  29973. bottom: 20 / 515
  29974. }
  29975. },
  29976. back: {
  29977. height: math.unit(6, "feet"),
  29978. weight: math.unit(216, "lb"),
  29979. name: "Back",
  29980. image: {
  29981. source: "./media/characters/sapphire-svell/back.svg",
  29982. extra: 497 / 477,
  29983. bottom: 7 / 504
  29984. }
  29985. },
  29986. maw: {
  29987. height: math.unit(1.57, "feet"),
  29988. name: "Maw",
  29989. image: {
  29990. source: "./media/characters/sapphire-svell/maw.svg"
  29991. }
  29992. },
  29993. foot: {
  29994. height: math.unit(1.07, "feet"),
  29995. name: "Foot",
  29996. image: {
  29997. source: "./media/characters/sapphire-svell/foot.svg"
  29998. }
  29999. },
  30000. toering: {
  30001. height: math.unit(1.7, "inch"),
  30002. name: "Toering",
  30003. image: {
  30004. source: "./media/characters/sapphire-svell/toering.svg"
  30005. }
  30006. },
  30007. },
  30008. [
  30009. {
  30010. name: "Normal",
  30011. height: math.unit(300, "feet"),
  30012. default: true
  30013. },
  30014. {
  30015. name: "Augmented",
  30016. height: math.unit(1250, "feet")
  30017. },
  30018. {
  30019. name: "Unleashed",
  30020. height: math.unit(3000, "feet")
  30021. },
  30022. ]
  30023. ))
  30024. characterMakers.push(() => makeCharacter(
  30025. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30026. {
  30027. side: {
  30028. height: math.unit(2 + 3 / 12, "feet"),
  30029. weight: math.unit(110, "lb"),
  30030. name: "Side",
  30031. image: {
  30032. source: "./media/characters/glitch-flux/side.svg",
  30033. extra: 997 / 805,
  30034. bottom: 20 / 1017
  30035. }
  30036. },
  30037. },
  30038. [
  30039. {
  30040. name: "Normal",
  30041. height: math.unit(2 + 3 / 12, "feet"),
  30042. default: true
  30043. },
  30044. ]
  30045. ))
  30046. characterMakers.push(() => makeCharacter(
  30047. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30048. {
  30049. front: {
  30050. height: math.unit(4, "meters"),
  30051. name: "Front",
  30052. image: {
  30053. source: "./media/characters/mid/front.svg",
  30054. extra: 507 / 476,
  30055. bottom: 17 / 524
  30056. }
  30057. },
  30058. back: {
  30059. height: math.unit(4, "meters"),
  30060. name: "Back",
  30061. image: {
  30062. source: "./media/characters/mid/back.svg",
  30063. extra: 519 / 487,
  30064. bottom: 7 / 526
  30065. }
  30066. },
  30067. stuck: {
  30068. height: math.unit(2.2, "meters"),
  30069. name: "Stuck",
  30070. image: {
  30071. source: "./media/characters/mid/stuck.svg",
  30072. extra: 1951 / 1869,
  30073. bottom: 88 / 2039
  30074. }
  30075. }
  30076. },
  30077. [
  30078. {
  30079. name: "Normal",
  30080. height: math.unit(4, "meters"),
  30081. default: true
  30082. },
  30083. {
  30084. name: "Big",
  30085. height: math.unit(10, "meters")
  30086. },
  30087. {
  30088. name: "Macro",
  30089. height: math.unit(800, "meters")
  30090. },
  30091. {
  30092. name: "Megamacro",
  30093. height: math.unit(100, "km")
  30094. },
  30095. {
  30096. name: "Overgrown",
  30097. height: math.unit(1, "parsec")
  30098. },
  30099. ]
  30100. ))
  30101. characterMakers.push(() => makeCharacter(
  30102. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30103. {
  30104. front: {
  30105. height: math.unit(2.5, "meters"),
  30106. weight: math.unit(225, "kg"),
  30107. name: "Front",
  30108. image: {
  30109. source: "./media/characters/iris/front.svg",
  30110. extra: 3348 / 3251,
  30111. bottom: 205 / 3553
  30112. }
  30113. },
  30114. maw: {
  30115. height: math.unit(0.56, "meter"),
  30116. name: "Maw",
  30117. image: {
  30118. source: "./media/characters/iris/maw.svg"
  30119. }
  30120. },
  30121. },
  30122. [
  30123. {
  30124. name: "Mewter cat",
  30125. height: math.unit(1.2, "meters")
  30126. },
  30127. {
  30128. name: "Minimacro",
  30129. height: math.unit(2.5, "meters"),
  30130. default: true
  30131. },
  30132. {
  30133. name: "Macro",
  30134. height: math.unit(180, "meters")
  30135. },
  30136. {
  30137. name: "Megamacro",
  30138. height: math.unit(2746, "meters")
  30139. },
  30140. ]
  30141. ))
  30142. characterMakers.push(() => makeCharacter(
  30143. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30144. {
  30145. front: {
  30146. height: math.unit(6, "feet"),
  30147. weight: math.unit(135, "lb"),
  30148. name: "Front",
  30149. image: {
  30150. source: "./media/characters/axel/front.svg",
  30151. extra: 908 / 908,
  30152. bottom: 58 / 966
  30153. }
  30154. },
  30155. side: {
  30156. height: math.unit(6, "feet"),
  30157. weight: math.unit(135, "lb"),
  30158. name: "Side",
  30159. image: {
  30160. source: "./media/characters/axel/side.svg",
  30161. extra: 958 / 958,
  30162. bottom: 11 / 969
  30163. }
  30164. },
  30165. back: {
  30166. height: math.unit(6, "feet"),
  30167. weight: math.unit(135, "lb"),
  30168. name: "Back",
  30169. image: {
  30170. source: "./media/characters/axel/back.svg",
  30171. extra: 887 / 887,
  30172. bottom: 34 / 921
  30173. }
  30174. },
  30175. head: {
  30176. height: math.unit(1.07, "feet"),
  30177. name: "Head",
  30178. image: {
  30179. source: "./media/characters/axel/head.svg"
  30180. }
  30181. },
  30182. beak: {
  30183. height: math.unit(1.4, "feet"),
  30184. name: "Beak",
  30185. image: {
  30186. source: "./media/characters/axel/beak.svg"
  30187. }
  30188. },
  30189. beakSide: {
  30190. height: math.unit(1.4, "feet"),
  30191. name: "Beak Side",
  30192. image: {
  30193. source: "./media/characters/axel/beak-side.svg"
  30194. }
  30195. },
  30196. sheath: {
  30197. height: math.unit(0.5, "feet"),
  30198. name: "Sheath",
  30199. image: {
  30200. source: "./media/characters/axel/sheath.svg"
  30201. }
  30202. },
  30203. dick: {
  30204. height: math.unit(0.98, "feet"),
  30205. name: "Dick",
  30206. image: {
  30207. source: "./media/characters/axel/dick.svg"
  30208. }
  30209. },
  30210. },
  30211. [
  30212. {
  30213. name: "Macro",
  30214. height: math.unit(68, "meters"),
  30215. default: true
  30216. },
  30217. ]
  30218. ))
  30219. characterMakers.push(() => makeCharacter(
  30220. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30221. {
  30222. front: {
  30223. height: math.unit(3.5, "meters"),
  30224. weight: math.unit(1200, "kg"),
  30225. name: "Front",
  30226. image: {
  30227. source: "./media/characters/joanna/front.svg",
  30228. extra: 1596 / 1488,
  30229. bottom: 29 / 1625
  30230. }
  30231. },
  30232. back: {
  30233. height: math.unit(3.5, "meters"),
  30234. weight: math.unit(1200, "kg"),
  30235. name: "Back",
  30236. image: {
  30237. source: "./media/characters/joanna/back.svg",
  30238. extra: 1594 / 1495,
  30239. bottom: 26 / 1620
  30240. }
  30241. },
  30242. frontShorts: {
  30243. height: math.unit(3.5, "meters"),
  30244. weight: math.unit(1200, "kg"),
  30245. name: "Front (Shorts)",
  30246. image: {
  30247. source: "./media/characters/joanna/front-shorts.svg",
  30248. extra: 1596 / 1488,
  30249. bottom: 29 / 1625
  30250. }
  30251. },
  30252. frontBiker: {
  30253. height: math.unit(3.5, "meters"),
  30254. weight: math.unit(1200, "kg"),
  30255. name: "Front (Biker)",
  30256. image: {
  30257. source: "./media/characters/joanna/front-biker.svg",
  30258. extra: 1596 / 1488,
  30259. bottom: 29 / 1625
  30260. }
  30261. },
  30262. backBiker: {
  30263. height: math.unit(3.5, "meters"),
  30264. weight: math.unit(1200, "kg"),
  30265. name: "Back (Biker)",
  30266. image: {
  30267. source: "./media/characters/joanna/back-biker.svg",
  30268. extra: 1594 / 1495,
  30269. bottom: 88 / 1682
  30270. }
  30271. },
  30272. bikeLeft: {
  30273. height: math.unit(2.4, "meters"),
  30274. weight: math.unit(1600, "kg"),
  30275. name: "Bike (Left)",
  30276. image: {
  30277. source: "./media/characters/joanna/bike-left.svg",
  30278. extra: 720 / 720,
  30279. bottom: 8 / 728
  30280. }
  30281. },
  30282. bikeRight: {
  30283. height: math.unit(2.4, "meters"),
  30284. weight: math.unit(1600, "kg"),
  30285. name: "Bike (Right)",
  30286. image: {
  30287. source: "./media/characters/joanna/bike-right.svg",
  30288. extra: 720 / 720,
  30289. bottom: 8 / 728
  30290. }
  30291. },
  30292. },
  30293. [
  30294. {
  30295. name: "Incognito",
  30296. height: math.unit(3.5, "meters")
  30297. },
  30298. {
  30299. name: "Casual Big",
  30300. height: math.unit(200, "meters")
  30301. },
  30302. {
  30303. name: "Macro",
  30304. height: math.unit(600, "meters")
  30305. },
  30306. {
  30307. name: "Original",
  30308. height: math.unit(20, "km"),
  30309. default: true
  30310. },
  30311. {
  30312. name: "Giga",
  30313. height: math.unit(400, "km")
  30314. },
  30315. {
  30316. name: "Lounging",
  30317. height: math.unit(1500, "km")
  30318. },
  30319. {
  30320. name: "Planetary",
  30321. height: math.unit(200000, "km")
  30322. },
  30323. ]
  30324. ))
  30325. characterMakers.push(() => makeCharacter(
  30326. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30327. {
  30328. front: {
  30329. height: math.unit(6, "feet"),
  30330. weight: math.unit(150, "lb"),
  30331. name: "Front",
  30332. image: {
  30333. source: "./media/characters/hugo-sigil/front.svg",
  30334. extra: 522 / 500,
  30335. bottom: 2 / 524
  30336. }
  30337. },
  30338. back: {
  30339. height: math.unit(6, "feet"),
  30340. weight: math.unit(150, "lb"),
  30341. name: "Back",
  30342. image: {
  30343. source: "./media/characters/hugo-sigil/back.svg",
  30344. extra: 519 / 495,
  30345. bottom: 5 / 524
  30346. }
  30347. },
  30348. maw: {
  30349. height: math.unit(1.4, "feet"),
  30350. weight: math.unit(150, "lb"),
  30351. name: "Maw",
  30352. image: {
  30353. source: "./media/characters/hugo-sigil/maw.svg"
  30354. }
  30355. },
  30356. feet: {
  30357. height: math.unit(1.56, "feet"),
  30358. weight: math.unit(150, "lb"),
  30359. name: "Feet",
  30360. image: {
  30361. source: "./media/characters/hugo-sigil/feet.svg",
  30362. extra: 177 / 177,
  30363. bottom: 12 / 189
  30364. }
  30365. },
  30366. },
  30367. [
  30368. {
  30369. name: "Normal",
  30370. height: math.unit(6, "feet")
  30371. },
  30372. {
  30373. name: "Macro",
  30374. height: math.unit(200, "feet"),
  30375. default: true
  30376. },
  30377. ]
  30378. ))
  30379. characterMakers.push(() => makeCharacter(
  30380. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30381. {
  30382. front: {
  30383. height: math.unit(6, "feet"),
  30384. weight: math.unit(150, "lb"),
  30385. name: "Front",
  30386. image: {
  30387. source: "./media/characters/peri/front.svg",
  30388. extra: 2354 / 2233,
  30389. bottom: 49 / 2403
  30390. }
  30391. },
  30392. },
  30393. [
  30394. {
  30395. name: "Really Small",
  30396. height: math.unit(1, "nm")
  30397. },
  30398. {
  30399. name: "Micro",
  30400. height: math.unit(4, "inches")
  30401. },
  30402. {
  30403. name: "Normal",
  30404. height: math.unit(7, "inches"),
  30405. default: true
  30406. },
  30407. {
  30408. name: "Macro",
  30409. height: math.unit(400, "feet")
  30410. },
  30411. {
  30412. name: "Megamacro",
  30413. height: math.unit(100, "miles")
  30414. },
  30415. ]
  30416. ))
  30417. characterMakers.push(() => makeCharacter(
  30418. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30419. {
  30420. frontSlim: {
  30421. height: math.unit(7, "feet"),
  30422. name: "Front (Slim)",
  30423. image: {
  30424. source: "./media/characters/issilora/front-slim.svg",
  30425. extra: 529 / 449,
  30426. bottom: 53 / 582
  30427. }
  30428. },
  30429. sideSlim: {
  30430. height: math.unit(7, "feet"),
  30431. name: "Side (Slim)",
  30432. image: {
  30433. source: "./media/characters/issilora/side-slim.svg",
  30434. extra: 570 / 480,
  30435. bottom: 30 / 600
  30436. }
  30437. },
  30438. backSlim: {
  30439. height: math.unit(7, "feet"),
  30440. name: "Back (Slim)",
  30441. image: {
  30442. source: "./media/characters/issilora/back-slim.svg",
  30443. extra: 537 / 455,
  30444. bottom: 46 / 583
  30445. }
  30446. },
  30447. frontBuff: {
  30448. height: math.unit(7, "feet"),
  30449. name: "Front (Buff)",
  30450. image: {
  30451. source: "./media/characters/issilora/front-buff.svg",
  30452. extra: 2310 / 2035,
  30453. bottom: 335 / 2645
  30454. }
  30455. },
  30456. head: {
  30457. height: math.unit(1.94, "feet"),
  30458. name: "Head",
  30459. image: {
  30460. source: "./media/characters/issilora/head.svg"
  30461. }
  30462. },
  30463. },
  30464. [
  30465. {
  30466. name: "Minimum",
  30467. height: math.unit(7, "feet")
  30468. },
  30469. {
  30470. name: "Comfortable",
  30471. height: math.unit(17, "feet")
  30472. },
  30473. {
  30474. name: "Fun Size",
  30475. height: math.unit(47, "feet")
  30476. },
  30477. {
  30478. name: "Natural Macro",
  30479. height: math.unit(137, "feet"),
  30480. default: true
  30481. },
  30482. {
  30483. name: "Maximum Kaiju",
  30484. height: math.unit(397, "feet")
  30485. },
  30486. ]
  30487. ))
  30488. characterMakers.push(() => makeCharacter(
  30489. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30490. {
  30491. front: {
  30492. height: math.unit(50 + 9/12, "feet"),
  30493. weight: math.unit(32.8, "tons"),
  30494. name: "Front",
  30495. image: {
  30496. source: "./media/characters/irb'iiritaahn/front.svg",
  30497. extra: 1878/1826,
  30498. bottom: 326/2204
  30499. }
  30500. },
  30501. back: {
  30502. height: math.unit(50 + 9/12, "feet"),
  30503. weight: math.unit(32.8, "tons"),
  30504. name: "Back",
  30505. image: {
  30506. source: "./media/characters/irb'iiritaahn/back.svg",
  30507. extra: 2052/2018,
  30508. bottom: 152/2204
  30509. }
  30510. },
  30511. head: {
  30512. height: math.unit(12.86, "feet"),
  30513. name: "Head",
  30514. image: {
  30515. source: "./media/characters/irb'iiritaahn/head.svg"
  30516. }
  30517. },
  30518. maw: {
  30519. height: math.unit(9.66, "feet"),
  30520. name: "Maw",
  30521. image: {
  30522. source: "./media/characters/irb'iiritaahn/maw.svg"
  30523. }
  30524. },
  30525. frontDick: {
  30526. height: math.unit(8.78461, "feet"),
  30527. name: "Front Dick",
  30528. image: {
  30529. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30530. }
  30531. },
  30532. rearDick: {
  30533. height: math.unit(8.78461, "feet"),
  30534. name: "Rear Dick",
  30535. image: {
  30536. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30537. }
  30538. },
  30539. rearDickUnfolded: {
  30540. height: math.unit(8.78, "feet"),
  30541. name: "Rear Dick (Unfolded)",
  30542. image: {
  30543. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30544. }
  30545. },
  30546. wings: {
  30547. height: math.unit(43, "feet"),
  30548. name: "Wings",
  30549. image: {
  30550. source: "./media/characters/irb'iiritaahn/wings.svg"
  30551. }
  30552. },
  30553. },
  30554. [
  30555. {
  30556. name: "Macro",
  30557. height: math.unit(50 + 9/12, "feet"),
  30558. default: true
  30559. },
  30560. ]
  30561. ))
  30562. characterMakers.push(() => makeCharacter(
  30563. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30564. {
  30565. front: {
  30566. height: math.unit(205, "cm"),
  30567. weight: math.unit(102, "kg"),
  30568. name: "Front",
  30569. image: {
  30570. source: "./media/characters/irbisgreif/front.svg",
  30571. extra: 785/706,
  30572. bottom: 13/798
  30573. }
  30574. },
  30575. back: {
  30576. height: math.unit(205, "cm"),
  30577. weight: math.unit(102, "kg"),
  30578. name: "Back",
  30579. image: {
  30580. source: "./media/characters/irbisgreif/back.svg",
  30581. extra: 713/701,
  30582. bottom: 26/739
  30583. }
  30584. },
  30585. frontDressed: {
  30586. height: math.unit(216, "cm"),
  30587. weight: math.unit(102, "kg"),
  30588. name: "Front-dressed",
  30589. image: {
  30590. source: "./media/characters/irbisgreif/front-dressed.svg",
  30591. extra: 902/776,
  30592. bottom: 14/916
  30593. }
  30594. },
  30595. sideDressed: {
  30596. height: math.unit(195, "cm"),
  30597. weight: math.unit(102, "kg"),
  30598. name: "Side-dressed",
  30599. image: {
  30600. source: "./media/characters/irbisgreif/side-dressed.svg",
  30601. extra: 788/688,
  30602. bottom: 21/809
  30603. }
  30604. },
  30605. backDressed: {
  30606. height: math.unit(216, "cm"),
  30607. weight: math.unit(102, "kg"),
  30608. name: "Back-dressed",
  30609. image: {
  30610. source: "./media/characters/irbisgreif/back-dressed.svg",
  30611. extra: 901/783,
  30612. bottom: 10/911
  30613. }
  30614. },
  30615. dick: {
  30616. height: math.unit(0.49, "feet"),
  30617. name: "Dick",
  30618. image: {
  30619. source: "./media/characters/irbisgreif/dick.svg"
  30620. }
  30621. },
  30622. wingTop: {
  30623. height: math.unit(1.93 , "feet"),
  30624. name: "Wing-top",
  30625. image: {
  30626. source: "./media/characters/irbisgreif/wing-top.svg"
  30627. }
  30628. },
  30629. wingBottom: {
  30630. height: math.unit(1.93 , "feet"),
  30631. name: "Wing-bottom",
  30632. image: {
  30633. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30634. }
  30635. },
  30636. },
  30637. [
  30638. {
  30639. name: "Normal",
  30640. height: math.unit(216, "cm"),
  30641. default: true
  30642. },
  30643. ]
  30644. ))
  30645. characterMakers.push(() => makeCharacter(
  30646. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30647. {
  30648. front: {
  30649. height: math.unit(6, "feet"),
  30650. weight: math.unit(150, "lb"),
  30651. name: "Front",
  30652. image: {
  30653. source: "./media/characters/pride/front.svg",
  30654. extra: 1299/1230,
  30655. bottom: 18/1317
  30656. }
  30657. },
  30658. },
  30659. [
  30660. {
  30661. name: "Normal",
  30662. height: math.unit(7, "feet")
  30663. },
  30664. {
  30665. name: "Mini-macro",
  30666. height: math.unit(11, "feet")
  30667. },
  30668. {
  30669. name: "Macro",
  30670. height: math.unit(15, "meters"),
  30671. default: true
  30672. },
  30673. {
  30674. name: "Macro+",
  30675. height: math.unit(40, "meters")
  30676. },
  30677. ]
  30678. ))
  30679. characterMakers.push(() => makeCharacter(
  30680. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30681. {
  30682. front: {
  30683. height: math.unit(4 + 2 / 12, "feet"),
  30684. weight: math.unit(95, "lb"),
  30685. name: "Front",
  30686. image: {
  30687. source: "./media/characters/vaelophis-nyx/front.svg",
  30688. extra: 2532/2330,
  30689. bottom: 0/2532
  30690. }
  30691. },
  30692. back: {
  30693. height: math.unit(4 + 2 / 12, "feet"),
  30694. weight: math.unit(95, "lb"),
  30695. name: "Back",
  30696. image: {
  30697. source: "./media/characters/vaelophis-nyx/back.svg",
  30698. extra: 2484/2361,
  30699. bottom: 0/2484
  30700. }
  30701. },
  30702. feralSide: {
  30703. height: math.unit(2 + 1/12, "feet"),
  30704. weight: math.unit(20, "lb"),
  30705. name: "Feral (Side)",
  30706. image: {
  30707. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30708. extra: 1721/1581,
  30709. bottom: 70/1791
  30710. }
  30711. },
  30712. feralLazing: {
  30713. height: math.unit(1.08, "feet"),
  30714. weight: math.unit(20, "lb"),
  30715. name: "Feral (Lazing)",
  30716. image: {
  30717. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30718. extra: 822/822,
  30719. bottom: 248/1070
  30720. }
  30721. },
  30722. ear: {
  30723. height: math.unit(0.416, "feet"),
  30724. name: "Ear",
  30725. image: {
  30726. source: "./media/characters/vaelophis-nyx/ear.svg"
  30727. }
  30728. },
  30729. eye: {
  30730. height: math.unit(0.0748, "feet"),
  30731. name: "Eye",
  30732. image: {
  30733. source: "./media/characters/vaelophis-nyx/eye.svg"
  30734. }
  30735. },
  30736. mouth: {
  30737. height: math.unit(0.378, "feet"),
  30738. name: "Mouth",
  30739. image: {
  30740. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30741. }
  30742. },
  30743. spade: {
  30744. height: math.unit(0.55, "feet"),
  30745. name: "Spade",
  30746. image: {
  30747. source: "./media/characters/vaelophis-nyx/spade.svg"
  30748. }
  30749. },
  30750. },
  30751. [
  30752. {
  30753. name: "Normal",
  30754. height: math.unit(4 + 2/12, "feet"),
  30755. default: true
  30756. },
  30757. ]
  30758. ))
  30759. characterMakers.push(() => makeCharacter(
  30760. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30761. {
  30762. front: {
  30763. height: math.unit(7, "feet"),
  30764. weight: math.unit(231, "lb"),
  30765. name: "Front",
  30766. image: {
  30767. source: "./media/characters/flux/front.svg",
  30768. extra: 919/871,
  30769. bottom: 0/919
  30770. }
  30771. },
  30772. back: {
  30773. height: math.unit(7, "feet"),
  30774. weight: math.unit(231, "lb"),
  30775. name: "Back",
  30776. image: {
  30777. source: "./media/characters/flux/back.svg",
  30778. extra: 1040/992,
  30779. bottom: 0/1040
  30780. }
  30781. },
  30782. frontDressed: {
  30783. height: math.unit(7, "feet"),
  30784. weight: math.unit(231, "lb"),
  30785. name: "Front (Dressed)",
  30786. image: {
  30787. source: "./media/characters/flux/front-dressed.svg",
  30788. extra: 919/871,
  30789. bottom: 0/919
  30790. }
  30791. },
  30792. feralSide: {
  30793. height: math.unit(5, "feet"),
  30794. weight: math.unit(150, "lb"),
  30795. name: "Feral (Side)",
  30796. image: {
  30797. source: "./media/characters/flux/feral-side.svg",
  30798. extra: 598/528,
  30799. bottom: 28/626
  30800. }
  30801. },
  30802. head: {
  30803. height: math.unit(1.585, "feet"),
  30804. name: "Head",
  30805. image: {
  30806. source: "./media/characters/flux/head.svg"
  30807. }
  30808. },
  30809. headSide: {
  30810. height: math.unit(1.74, "feet"),
  30811. name: "Head (Side)",
  30812. image: {
  30813. source: "./media/characters/flux/head-side.svg"
  30814. }
  30815. },
  30816. headSideFire: {
  30817. height: math.unit(1.76, "feet"),
  30818. name: "Head (Side, Fire)",
  30819. image: {
  30820. source: "./media/characters/flux/head-side-fire.svg"
  30821. }
  30822. },
  30823. },
  30824. [
  30825. {
  30826. name: "Normal",
  30827. height: math.unit(7, "feet"),
  30828. default: true
  30829. },
  30830. ]
  30831. ))
  30832. characterMakers.push(() => makeCharacter(
  30833. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30834. {
  30835. front: {
  30836. height: math.unit(9, "feet"),
  30837. weight: math.unit(1012, "lb"),
  30838. name: "Front",
  30839. image: {
  30840. source: "./media/characters/ulfra-lupae/front.svg",
  30841. extra: 1083/1011,
  30842. bottom: 67/1150
  30843. }
  30844. },
  30845. },
  30846. [
  30847. {
  30848. name: "Micro",
  30849. height: math.unit(6, "inches")
  30850. },
  30851. {
  30852. name: "Socializing",
  30853. height: math.unit(6 + 5/12, "feet")
  30854. },
  30855. {
  30856. name: "Normal",
  30857. height: math.unit(9, "feet"),
  30858. default: true
  30859. },
  30860. {
  30861. name: "Macro",
  30862. height: math.unit(150, "feet")
  30863. },
  30864. ]
  30865. ))
  30866. characterMakers.push(() => makeCharacter(
  30867. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30868. {
  30869. front: {
  30870. height: math.unit(5 + 2/12, "feet"),
  30871. weight: math.unit(120, "lb"),
  30872. name: "Front",
  30873. image: {
  30874. source: "./media/characters/timber/front.svg",
  30875. extra: 2814/2705,
  30876. bottom: 181/2995
  30877. }
  30878. },
  30879. },
  30880. [
  30881. {
  30882. name: "Normal",
  30883. height: math.unit(5 + 2/12, "feet"),
  30884. default: true
  30885. },
  30886. ]
  30887. ))
  30888. characterMakers.push(() => makeCharacter(
  30889. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30890. {
  30891. front: {
  30892. height: math.unit(5 + 7/12, "feet"),
  30893. weight: math.unit(220, "lb"),
  30894. name: "Front",
  30895. image: {
  30896. source: "./media/characters/nicki/front.svg",
  30897. extra: 453/419,
  30898. bottom: 7/460
  30899. }
  30900. },
  30901. frontAlt: {
  30902. height: math.unit(5 + 7/12, "feet"),
  30903. weight: math.unit(220, "lb"),
  30904. name: "Front-alt",
  30905. image: {
  30906. source: "./media/characters/nicki/front-alt.svg",
  30907. extra: 435/411,
  30908. bottom: 12/447
  30909. }
  30910. },
  30911. back: {
  30912. height: math.unit(5 + 7/12, "feet"),
  30913. weight: math.unit(220, "lb"),
  30914. name: "Back",
  30915. image: {
  30916. source: "./media/characters/nicki/back.svg",
  30917. extra: 440/413,
  30918. bottom: 19/459
  30919. }
  30920. },
  30921. taur: {
  30922. height: math.unit(7 + 6/12, "feet"),
  30923. weight: math.unit(700, "lb"),
  30924. name: "Taur",
  30925. image: {
  30926. source: "./media/characters/nicki/taur.svg",
  30927. extra: 975/773,
  30928. bottom: 0/975
  30929. }
  30930. },
  30931. frontNsfw: {
  30932. height: math.unit(5 + 7/12, "feet"),
  30933. weight: math.unit(220, "lb"),
  30934. name: "Front (NSFW)",
  30935. image: {
  30936. source: "./media/characters/nicki/front-nsfw.svg",
  30937. extra: 453/419,
  30938. bottom: 7/460
  30939. }
  30940. },
  30941. frontNsfwAlt: {
  30942. height: math.unit(5 + 7/12, "feet"),
  30943. weight: math.unit(220, "lb"),
  30944. name: "Front (Alt, NSFW)",
  30945. image: {
  30946. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30947. extra: 435/411,
  30948. bottom: 12/447
  30949. }
  30950. },
  30951. backNsfw: {
  30952. height: math.unit(5 + 7/12, "feet"),
  30953. weight: math.unit(220, "lb"),
  30954. name: "Back (NSFW)",
  30955. image: {
  30956. source: "./media/characters/nicki/back-nsfw.svg",
  30957. extra: 440/413,
  30958. bottom: 19/459
  30959. }
  30960. },
  30961. head: {
  30962. height: math.unit(2.1, "feet"),
  30963. name: "Head",
  30964. image: {
  30965. source: "./media/characters/nicki/head.svg"
  30966. }
  30967. },
  30968. paw: {
  30969. height: math.unit(1.88, "feet"),
  30970. name: "Paw",
  30971. image: {
  30972. source: "./media/characters/nicki/paw.svg"
  30973. }
  30974. },
  30975. },
  30976. [
  30977. {
  30978. name: "Normal",
  30979. height: math.unit(5 + 7/12, "feet"),
  30980. default: true
  30981. },
  30982. ]
  30983. ))
  30984. characterMakers.push(() => makeCharacter(
  30985. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30986. {
  30987. front: {
  30988. height: math.unit(7 + 10/12, "feet"),
  30989. weight: math.unit(3.5, "tons"),
  30990. name: "Front",
  30991. image: {
  30992. source: "./media/characters/lee/front.svg",
  30993. extra: 1773/1615,
  30994. bottom: 86/1859
  30995. }
  30996. },
  30997. hand: {
  30998. height: math.unit(1.78, "feet"),
  30999. name: "Hand",
  31000. image: {
  31001. source: "./media/characters/lee/hand.svg"
  31002. }
  31003. },
  31004. maw: {
  31005. height: math.unit(1.18, "feet"),
  31006. name: "Maw",
  31007. image: {
  31008. source: "./media/characters/lee/maw.svg"
  31009. }
  31010. },
  31011. },
  31012. [
  31013. {
  31014. name: "Normal",
  31015. height: math.unit(7 + 10/12, "feet"),
  31016. default: true
  31017. },
  31018. ]
  31019. ))
  31020. characterMakers.push(() => makeCharacter(
  31021. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31022. {
  31023. front: {
  31024. height: math.unit(9, "feet"),
  31025. name: "Front",
  31026. image: {
  31027. source: "./media/characters/guti/front.svg",
  31028. extra: 4551/4355,
  31029. bottom: 123/4674
  31030. }
  31031. },
  31032. tongue: {
  31033. height: math.unit(1, "feet"),
  31034. name: "Tongue",
  31035. image: {
  31036. source: "./media/characters/guti/tongue.svg"
  31037. }
  31038. },
  31039. paw: {
  31040. height: math.unit(1.18, "feet"),
  31041. name: "Paw",
  31042. image: {
  31043. source: "./media/characters/guti/paw.svg"
  31044. }
  31045. },
  31046. },
  31047. [
  31048. {
  31049. name: "Normal",
  31050. height: math.unit(9, "feet"),
  31051. default: true
  31052. },
  31053. ]
  31054. ))
  31055. characterMakers.push(() => makeCharacter(
  31056. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31057. {
  31058. side: {
  31059. height: math.unit(5, "meters"),
  31060. name: "Side",
  31061. image: {
  31062. source: "./media/characters/vesper/side.svg",
  31063. extra: 1605/1518,
  31064. bottom: 0/1605
  31065. }
  31066. },
  31067. },
  31068. [
  31069. {
  31070. name: "Small",
  31071. height: math.unit(5, "meters")
  31072. },
  31073. {
  31074. name: "Sage",
  31075. height: math.unit(100, "meters"),
  31076. default: true
  31077. },
  31078. {
  31079. name: "Fun Size",
  31080. height: math.unit(600, "meters")
  31081. },
  31082. {
  31083. name: "Goddess",
  31084. height: math.unit(20000, "km")
  31085. },
  31086. {
  31087. name: "Maximum",
  31088. height: math.unit(5, "galaxies")
  31089. },
  31090. ]
  31091. ))
  31092. characterMakers.push(() => makeCharacter(
  31093. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31094. {
  31095. front: {
  31096. height: math.unit(6 + 3/12, "feet"),
  31097. weight: math.unit(190, "lb"),
  31098. name: "Front",
  31099. image: {
  31100. source: "./media/characters/gawain/front.svg",
  31101. extra: 2222/2139,
  31102. bottom: 90/2312
  31103. }
  31104. },
  31105. back: {
  31106. height: math.unit(6 + 3/12, "feet"),
  31107. weight: math.unit(190, "lb"),
  31108. name: "Back",
  31109. image: {
  31110. source: "./media/characters/gawain/back.svg",
  31111. extra: 2199/2111,
  31112. bottom: 73/2272
  31113. }
  31114. },
  31115. },
  31116. [
  31117. {
  31118. name: "Normal",
  31119. height: math.unit(6 + 3/12, "feet"),
  31120. default: true
  31121. },
  31122. ]
  31123. ))
  31124. characterMakers.push(() => makeCharacter(
  31125. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31126. {
  31127. side: {
  31128. height: math.unit(3.5, "meters"),
  31129. weight: math.unit(16000, "lb"),
  31130. name: "Side",
  31131. image: {
  31132. source: "./media/characters/dascalti/side.svg",
  31133. extra: 392/273,
  31134. bottom: 47/439
  31135. }
  31136. },
  31137. breath: {
  31138. height: math.unit(7.4, "feet"),
  31139. name: "Breath",
  31140. image: {
  31141. source: "./media/characters/dascalti/breath.svg"
  31142. }
  31143. },
  31144. fed: {
  31145. height: math.unit(3.6, "meters"),
  31146. weight: math.unit(16000, "lb"),
  31147. name: "Fed",
  31148. image: {
  31149. source: "./media/characters/dascalti/fed.svg",
  31150. extra: 1419/820,
  31151. bottom: 95/1514
  31152. }
  31153. },
  31154. },
  31155. [
  31156. {
  31157. name: "Normal",
  31158. height: math.unit(3.5, "meters"),
  31159. default: true
  31160. },
  31161. ]
  31162. ))
  31163. characterMakers.push(() => makeCharacter(
  31164. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31165. {
  31166. front: {
  31167. height: math.unit(3 + 5/12, "feet"),
  31168. name: "Front",
  31169. image: {
  31170. source: "./media/characters/mauve/front.svg",
  31171. extra: 1126/1033,
  31172. bottom: 65/1191
  31173. }
  31174. },
  31175. side: {
  31176. height: math.unit(3 + 5/12, "feet"),
  31177. name: "Side",
  31178. image: {
  31179. source: "./media/characters/mauve/side.svg",
  31180. extra: 1089/1001,
  31181. bottom: 29/1118
  31182. }
  31183. },
  31184. back: {
  31185. height: math.unit(3 + 5/12, "feet"),
  31186. name: "Back",
  31187. image: {
  31188. source: "./media/characters/mauve/back.svg",
  31189. extra: 1173/1053,
  31190. bottom: 109/1282
  31191. }
  31192. },
  31193. },
  31194. [
  31195. {
  31196. name: "Normal",
  31197. height: math.unit(3 + 5/12, "feet"),
  31198. default: true
  31199. },
  31200. ]
  31201. ))
  31202. characterMakers.push(() => makeCharacter(
  31203. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31204. {
  31205. front: {
  31206. height: math.unit(6 + 3/12, "feet"),
  31207. weight: math.unit(430, "lb"),
  31208. name: "Front",
  31209. image: {
  31210. source: "./media/characters/carlos/front.svg",
  31211. extra: 1964/1913,
  31212. bottom: 70/2034
  31213. }
  31214. },
  31215. },
  31216. [
  31217. {
  31218. name: "Normal",
  31219. height: math.unit(6 + 3/12, "feet"),
  31220. default: true
  31221. },
  31222. ]
  31223. ))
  31224. characterMakers.push(() => makeCharacter(
  31225. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31226. {
  31227. back: {
  31228. height: math.unit(5 + 10/12, "feet"),
  31229. weight: math.unit(200, "lb"),
  31230. name: "Back",
  31231. image: {
  31232. source: "./media/characters/jax/back.svg",
  31233. extra: 764/739,
  31234. bottom: 25/789
  31235. }
  31236. },
  31237. },
  31238. [
  31239. {
  31240. name: "Normal",
  31241. height: math.unit(5 + 10/12, "feet"),
  31242. default: true
  31243. },
  31244. ]
  31245. ))
  31246. characterMakers.push(() => makeCharacter(
  31247. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31248. {
  31249. front: {
  31250. height: math.unit(8, "feet"),
  31251. weight: math.unit(250, "lb"),
  31252. name: "Front",
  31253. image: {
  31254. source: "./media/characters/eikthynir/front.svg",
  31255. extra: 1332/1166,
  31256. bottom: 82/1414
  31257. }
  31258. },
  31259. back: {
  31260. height: math.unit(8, "feet"),
  31261. weight: math.unit(250, "lb"),
  31262. name: "Back",
  31263. image: {
  31264. source: "./media/characters/eikthynir/back.svg",
  31265. extra: 1342/1190,
  31266. bottom: 19/1361
  31267. }
  31268. },
  31269. dick: {
  31270. height: math.unit(2.35, "feet"),
  31271. name: "Dick",
  31272. image: {
  31273. source: "./media/characters/eikthynir/dick.svg"
  31274. }
  31275. },
  31276. },
  31277. [
  31278. {
  31279. name: "Normal",
  31280. height: math.unit(8, "feet"),
  31281. default: true
  31282. },
  31283. ]
  31284. ))
  31285. characterMakers.push(() => makeCharacter(
  31286. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31287. {
  31288. front: {
  31289. height: math.unit(99, "meters"),
  31290. weight: math.unit(13000, "tons"),
  31291. name: "Front",
  31292. image: {
  31293. source: "./media/characters/zlmos/front.svg",
  31294. extra: 2202/1992,
  31295. bottom: 315/2517
  31296. }
  31297. },
  31298. },
  31299. [
  31300. {
  31301. name: "Macro",
  31302. height: math.unit(99, "meters"),
  31303. default: true
  31304. },
  31305. ]
  31306. ))
  31307. characterMakers.push(() => makeCharacter(
  31308. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31309. {
  31310. front: {
  31311. height: math.unit(6 + 5/12, "feet"),
  31312. name: "Front",
  31313. image: {
  31314. source: "./media/characters/purri/front.svg",
  31315. extra: 1698/1610,
  31316. bottom: 32/1730
  31317. }
  31318. },
  31319. frontAlt: {
  31320. height: math.unit(6 + 5/12, "feet"),
  31321. name: "Front (Alt)",
  31322. image: {
  31323. source: "./media/characters/purri/front-alt.svg",
  31324. extra: 450/420,
  31325. bottom: 26/476
  31326. }
  31327. },
  31328. boots: {
  31329. height: math.unit(5.5, "feet"),
  31330. name: "Boots",
  31331. image: {
  31332. source: "./media/characters/purri/boots.svg",
  31333. extra: 905/853,
  31334. bottom: 18/923
  31335. }
  31336. },
  31337. lying: {
  31338. height: math.unit(2, "feet"),
  31339. name: "Lying",
  31340. image: {
  31341. source: "./media/characters/purri/lying.svg",
  31342. extra: 940/843,
  31343. bottom: 146/1086
  31344. }
  31345. },
  31346. devious: {
  31347. height: math.unit(1.77, "feet"),
  31348. name: "Devious",
  31349. image: {
  31350. source: "./media/characters/purri/devious.svg",
  31351. extra: 1440/1155,
  31352. bottom: 147/1587
  31353. }
  31354. },
  31355. bean: {
  31356. height: math.unit(1.94, "feet"),
  31357. name: "Bean",
  31358. image: {
  31359. source: "./media/characters/purri/bean.svg"
  31360. }
  31361. },
  31362. },
  31363. [
  31364. {
  31365. name: "Micro",
  31366. height: math.unit(1, "mm")
  31367. },
  31368. {
  31369. name: "Normal",
  31370. height: math.unit(6 + 5/12, "feet"),
  31371. default: true
  31372. },
  31373. {
  31374. name: "Macro :3c",
  31375. height: math.unit(2, "miles")
  31376. },
  31377. ]
  31378. ))
  31379. characterMakers.push(() => makeCharacter(
  31380. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31381. {
  31382. front: {
  31383. height: math.unit(6 + 2/12, "feet"),
  31384. weight: math.unit(250, "lb"),
  31385. name: "Front",
  31386. image: {
  31387. source: "./media/characters/moonlight/front.svg",
  31388. extra: 1044/908,
  31389. bottom: 56/1100
  31390. }
  31391. },
  31392. feral: {
  31393. height: math.unit(3 + 1/12, "feet"),
  31394. weight: math.unit(50, "kg"),
  31395. name: "Feral",
  31396. image: {
  31397. source: "./media/characters/moonlight/feral.svg",
  31398. extra: 3705/2791,
  31399. bottom: 145/3850
  31400. }
  31401. },
  31402. paw: {
  31403. height: math.unit(1, "feet"),
  31404. name: "Paw",
  31405. image: {
  31406. source: "./media/characters/moonlight/paw.svg"
  31407. }
  31408. },
  31409. paws: {
  31410. height: math.unit(0.98, "feet"),
  31411. name: "Paws",
  31412. image: {
  31413. source: "./media/characters/moonlight/paws.svg",
  31414. extra: 939/939,
  31415. bottom: 50/989
  31416. }
  31417. },
  31418. mouth: {
  31419. height: math.unit(0.48, "feet"),
  31420. name: "Mouth",
  31421. image: {
  31422. source: "./media/characters/moonlight/mouth.svg"
  31423. }
  31424. },
  31425. dick: {
  31426. height: math.unit(1.46, "feet"),
  31427. name: "Dick",
  31428. image: {
  31429. source: "./media/characters/moonlight/dick.svg"
  31430. }
  31431. },
  31432. },
  31433. [
  31434. {
  31435. name: "Normal",
  31436. height: math.unit(6 + 2/12, "feet"),
  31437. default: true
  31438. },
  31439. {
  31440. name: "Macro",
  31441. height: math.unit(300, "feet")
  31442. },
  31443. {
  31444. name: "Macro+",
  31445. height: math.unit(1, "mile")
  31446. },
  31447. {
  31448. name: "Mt. Moon",
  31449. height: math.unit(5, "miles")
  31450. },
  31451. {
  31452. name: "Megamacro",
  31453. height: math.unit(15, "miles")
  31454. },
  31455. ]
  31456. ))
  31457. characterMakers.push(() => makeCharacter(
  31458. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31459. {
  31460. back: {
  31461. height: math.unit(6, "feet"),
  31462. weight: math.unit(150, "lb"),
  31463. name: "Back",
  31464. image: {
  31465. source: "./media/characters/sylen/back.svg",
  31466. extra: 1335/1273,
  31467. bottom: 107/1442
  31468. }
  31469. },
  31470. },
  31471. [
  31472. {
  31473. name: "Normal",
  31474. height: math.unit(5 + 5/12, "feet")
  31475. },
  31476. {
  31477. name: "Megamacro",
  31478. height: math.unit(3, "miles"),
  31479. default: true
  31480. },
  31481. ]
  31482. ))
  31483. characterMakers.push(() => makeCharacter(
  31484. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31485. {
  31486. front: {
  31487. height: math.unit(6, "feet"),
  31488. weight: math.unit(190, "lb"),
  31489. name: "Front",
  31490. image: {
  31491. source: "./media/characters/huttser/front.svg",
  31492. extra: 1152/1058,
  31493. bottom: 23/1175
  31494. }
  31495. },
  31496. side: {
  31497. height: math.unit(6, "feet"),
  31498. weight: math.unit(190, "lb"),
  31499. name: "Side",
  31500. image: {
  31501. source: "./media/characters/huttser/side.svg",
  31502. extra: 1174/1065,
  31503. bottom: 18/1192
  31504. }
  31505. },
  31506. back: {
  31507. height: math.unit(6, "feet"),
  31508. weight: math.unit(190, "lb"),
  31509. name: "Back",
  31510. image: {
  31511. source: "./media/characters/huttser/back.svg",
  31512. extra: 1158/1056,
  31513. bottom: 12/1170
  31514. }
  31515. },
  31516. },
  31517. [
  31518. ]
  31519. ))
  31520. characterMakers.push(() => makeCharacter(
  31521. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31522. {
  31523. side: {
  31524. height: math.unit(12 + 9/12, "feet"),
  31525. weight: math.unit(15000, "lb"),
  31526. name: "Side",
  31527. image: {
  31528. source: "./media/characters/faan/side.svg",
  31529. extra: 2747/2697,
  31530. bottom: 0/2747
  31531. }
  31532. },
  31533. front: {
  31534. height: math.unit(12 + 9/12, "feet"),
  31535. weight: math.unit(15000, "lb"),
  31536. name: "Front",
  31537. image: {
  31538. source: "./media/characters/faan/front.svg",
  31539. extra: 607/571,
  31540. bottom: 24/631
  31541. }
  31542. },
  31543. head: {
  31544. height: math.unit(2.85, "feet"),
  31545. name: "Head",
  31546. image: {
  31547. source: "./media/characters/faan/head.svg"
  31548. }
  31549. },
  31550. headAlt: {
  31551. height: math.unit(3.13, "feet"),
  31552. name: "Head-alt",
  31553. image: {
  31554. source: "./media/characters/faan/head-alt.svg"
  31555. }
  31556. },
  31557. },
  31558. [
  31559. {
  31560. name: "Normal",
  31561. height: math.unit(12 + 9/12, "feet"),
  31562. default: true
  31563. },
  31564. ]
  31565. ))
  31566. characterMakers.push(() => makeCharacter(
  31567. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31568. {
  31569. front: {
  31570. height: math.unit(6, "feet"),
  31571. weight: math.unit(300, "lb"),
  31572. name: "Front",
  31573. image: {
  31574. source: "./media/characters/tanio/front.svg",
  31575. extra: 711/673,
  31576. bottom: 25/736
  31577. }
  31578. },
  31579. },
  31580. [
  31581. {
  31582. name: "Normal",
  31583. height: math.unit(6, "feet"),
  31584. default: true
  31585. },
  31586. ]
  31587. ))
  31588. characterMakers.push(() => makeCharacter(
  31589. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31590. {
  31591. front: {
  31592. height: math.unit(3, "inches"),
  31593. name: "Front",
  31594. image: {
  31595. source: "./media/characters/noboru/front.svg",
  31596. extra: 1039/932,
  31597. bottom: 18/1057
  31598. }
  31599. },
  31600. },
  31601. [
  31602. {
  31603. name: "Micro",
  31604. height: math.unit(3, "inches"),
  31605. default: true
  31606. },
  31607. ]
  31608. ))
  31609. characterMakers.push(() => makeCharacter(
  31610. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31611. {
  31612. front: {
  31613. height: math.unit(1.85, "meters"),
  31614. weight: math.unit(80, "kg"),
  31615. name: "Front",
  31616. image: {
  31617. source: "./media/characters/daniel-barrett/front.svg",
  31618. extra: 355/337,
  31619. bottom: 9/364
  31620. }
  31621. },
  31622. },
  31623. [
  31624. {
  31625. name: "Pico",
  31626. height: math.unit(0.0433, "mm")
  31627. },
  31628. {
  31629. name: "Nano",
  31630. height: math.unit(1.5, "mm")
  31631. },
  31632. {
  31633. name: "Micro",
  31634. height: math.unit(5.3, "cm"),
  31635. default: true
  31636. },
  31637. {
  31638. name: "Normal",
  31639. height: math.unit(1.85, "meters")
  31640. },
  31641. {
  31642. name: "Macro",
  31643. height: math.unit(64.7, "meters")
  31644. },
  31645. {
  31646. name: "Megamacro",
  31647. height: math.unit(2.26, "km")
  31648. },
  31649. {
  31650. name: "Gigamacro",
  31651. height: math.unit(79, "km")
  31652. },
  31653. {
  31654. name: "Teramacro",
  31655. height: math.unit(2765, "km")
  31656. },
  31657. {
  31658. name: "Petamacro",
  31659. height: math.unit(96678, "km")
  31660. },
  31661. ]
  31662. ))
  31663. characterMakers.push(() => makeCharacter(
  31664. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31665. {
  31666. front: {
  31667. height: math.unit(30, "meters"),
  31668. weight: math.unit(400, "tons"),
  31669. name: "Front",
  31670. image: {
  31671. source: "./media/characters/zeel/front.svg",
  31672. extra: 2599/2599,
  31673. bottom: 226/2825
  31674. }
  31675. },
  31676. },
  31677. [
  31678. {
  31679. name: "Macro",
  31680. height: math.unit(30, "meters"),
  31681. default: true
  31682. },
  31683. ]
  31684. ))
  31685. characterMakers.push(() => makeCharacter(
  31686. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31687. {
  31688. front: {
  31689. height: math.unit(6 + 7/12, "feet"),
  31690. weight: math.unit(210, "lb"),
  31691. name: "Front",
  31692. image: {
  31693. source: "./media/characters/tarn/front.svg",
  31694. extra: 3517/3220,
  31695. bottom: 91/3608
  31696. }
  31697. },
  31698. back: {
  31699. height: math.unit(6 + 7/12, "feet"),
  31700. weight: math.unit(210, "lb"),
  31701. name: "Back",
  31702. image: {
  31703. source: "./media/characters/tarn/back.svg",
  31704. extra: 3566/3241,
  31705. bottom: 34/3600
  31706. }
  31707. },
  31708. dick: {
  31709. height: math.unit(1.65, "feet"),
  31710. name: "Dick",
  31711. image: {
  31712. source: "./media/characters/tarn/dick.svg"
  31713. }
  31714. },
  31715. paw: {
  31716. height: math.unit(1.80, "feet"),
  31717. name: "Paw",
  31718. image: {
  31719. source: "./media/characters/tarn/paw.svg"
  31720. }
  31721. },
  31722. tongue: {
  31723. height: math.unit(0.97, "feet"),
  31724. name: "Tongue",
  31725. image: {
  31726. source: "./media/characters/tarn/tongue.svg"
  31727. }
  31728. },
  31729. },
  31730. [
  31731. {
  31732. name: "Micro",
  31733. height: math.unit(4, "inches")
  31734. },
  31735. {
  31736. name: "Normal",
  31737. height: math.unit(6 + 7/12, "feet"),
  31738. default: true
  31739. },
  31740. {
  31741. name: "Macro",
  31742. height: math.unit(300, "feet")
  31743. },
  31744. ]
  31745. ))
  31746. characterMakers.push(() => makeCharacter(
  31747. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31748. {
  31749. front: {
  31750. height: math.unit(5 + 7/12, "feet"),
  31751. weight: math.unit(80, "kg"),
  31752. name: "Front",
  31753. image: {
  31754. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31755. extra: 3023/2865,
  31756. bottom: 33/3056
  31757. }
  31758. },
  31759. back: {
  31760. height: math.unit(5 + 7/12, "feet"),
  31761. weight: math.unit(80, "kg"),
  31762. name: "Back",
  31763. image: {
  31764. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31765. extra: 3020/2886,
  31766. bottom: 30/3050
  31767. }
  31768. },
  31769. dick: {
  31770. height: math.unit(0.98, "feet"),
  31771. name: "Dick",
  31772. image: {
  31773. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31774. }
  31775. },
  31776. anatomy: {
  31777. height: math.unit(2.86, "feet"),
  31778. name: "Anatomy",
  31779. image: {
  31780. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31781. }
  31782. },
  31783. },
  31784. [
  31785. {
  31786. name: "Really Small",
  31787. height: math.unit(2, "inches")
  31788. },
  31789. {
  31790. name: "Micro",
  31791. height: math.unit(5.583, "inches")
  31792. },
  31793. {
  31794. name: "Normal",
  31795. height: math.unit(5 + 7/12, "feet"),
  31796. default: true
  31797. },
  31798. {
  31799. name: "Macro",
  31800. height: math.unit(67, "feet")
  31801. },
  31802. {
  31803. name: "Megamacro",
  31804. height: math.unit(134, "feet")
  31805. },
  31806. ]
  31807. ))
  31808. characterMakers.push(() => makeCharacter(
  31809. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31810. {
  31811. front: {
  31812. height: math.unit(9, "feet"),
  31813. weight: math.unit(120, "lb"),
  31814. name: "Front",
  31815. image: {
  31816. source: "./media/characters/sally/front.svg",
  31817. extra: 1506/1349,
  31818. bottom: 66/1572
  31819. }
  31820. },
  31821. },
  31822. [
  31823. {
  31824. name: "Normal",
  31825. height: math.unit(9, "feet"),
  31826. default: true
  31827. },
  31828. ]
  31829. ))
  31830. characterMakers.push(() => makeCharacter(
  31831. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31832. {
  31833. front: {
  31834. height: math.unit(8, "feet"),
  31835. weight: math.unit(900, "lb"),
  31836. name: "Front",
  31837. image: {
  31838. source: "./media/characters/owen/front.svg",
  31839. extra: 1761/1657,
  31840. bottom: 74/1835
  31841. }
  31842. },
  31843. side: {
  31844. height: math.unit(8, "feet"),
  31845. weight: math.unit(900, "lb"),
  31846. name: "Side",
  31847. image: {
  31848. source: "./media/characters/owen/side.svg",
  31849. extra: 1797/1734,
  31850. bottom: 30/1827
  31851. }
  31852. },
  31853. back: {
  31854. height: math.unit(8, "feet"),
  31855. weight: math.unit(900, "lb"),
  31856. name: "Back",
  31857. image: {
  31858. source: "./media/characters/owen/back.svg",
  31859. extra: 1796/1706,
  31860. bottom: 59/1855
  31861. }
  31862. },
  31863. maw: {
  31864. height: math.unit(1.76, "feet"),
  31865. name: "Maw",
  31866. image: {
  31867. source: "./media/characters/owen/maw.svg"
  31868. }
  31869. },
  31870. },
  31871. [
  31872. {
  31873. name: "Normal",
  31874. height: math.unit(8, "feet"),
  31875. default: true
  31876. },
  31877. ]
  31878. ))
  31879. characterMakers.push(() => makeCharacter(
  31880. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31881. {
  31882. front: {
  31883. height: math.unit(4, "feet"),
  31884. weight: math.unit(400, "lb"),
  31885. name: "Front",
  31886. image: {
  31887. source: "./media/characters/ryth/front.svg",
  31888. extra: 1920/1748,
  31889. bottom: 42/1962
  31890. }
  31891. },
  31892. back: {
  31893. height: math.unit(4, "feet"),
  31894. weight: math.unit(400, "lb"),
  31895. name: "Back",
  31896. image: {
  31897. source: "./media/characters/ryth/back.svg",
  31898. extra: 1897/1690,
  31899. bottom: 89/1986
  31900. }
  31901. },
  31902. mouth: {
  31903. height: math.unit(1.39, "feet"),
  31904. name: "Mouth",
  31905. image: {
  31906. source: "./media/characters/ryth/mouth.svg"
  31907. }
  31908. },
  31909. tailmaw: {
  31910. height: math.unit(1.23, "feet"),
  31911. name: "Tailmaw",
  31912. image: {
  31913. source: "./media/characters/ryth/tailmaw.svg"
  31914. }
  31915. },
  31916. goia: {
  31917. height: math.unit(12, "feet"),
  31918. weight: math.unit(10800, "lb"),
  31919. name: "Goia",
  31920. image: {
  31921. source: "./media/characters/ryth/goia.svg",
  31922. extra: 3450/3198,
  31923. bottom: 61/3511
  31924. }
  31925. },
  31926. },
  31927. [
  31928. {
  31929. name: "Normal",
  31930. height: math.unit(4, "feet"),
  31931. default: true
  31932. },
  31933. ]
  31934. ))
  31935. characterMakers.push(() => makeCharacter(
  31936. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31937. {
  31938. front: {
  31939. height: math.unit(7, "feet"),
  31940. weight: math.unit(180, "lb"),
  31941. name: "Front",
  31942. image: {
  31943. source: "./media/characters/necrolance/front.svg",
  31944. extra: 1062/947,
  31945. bottom: 41/1103
  31946. }
  31947. },
  31948. back: {
  31949. height: math.unit(7, "feet"),
  31950. weight: math.unit(180, "lb"),
  31951. name: "Back",
  31952. image: {
  31953. source: "./media/characters/necrolance/back.svg",
  31954. extra: 1045/984,
  31955. bottom: 14/1059
  31956. }
  31957. },
  31958. wing: {
  31959. height: math.unit(2.67, "feet"),
  31960. name: "Wing",
  31961. image: {
  31962. source: "./media/characters/necrolance/wing.svg"
  31963. }
  31964. },
  31965. },
  31966. [
  31967. {
  31968. name: "Normal",
  31969. height: math.unit(7, "feet"),
  31970. default: true
  31971. },
  31972. ]
  31973. ))
  31974. characterMakers.push(() => makeCharacter(
  31975. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31976. {
  31977. front: {
  31978. height: math.unit(76, "meters"),
  31979. weight: math.unit(30000, "tons"),
  31980. name: "Front",
  31981. image: {
  31982. source: "./media/characters/tyler/front.svg",
  31983. extra: 1640/1640,
  31984. bottom: 114/1754
  31985. }
  31986. },
  31987. },
  31988. [
  31989. {
  31990. name: "Macro",
  31991. height: math.unit(76, "meters"),
  31992. default: true
  31993. },
  31994. ]
  31995. ))
  31996. characterMakers.push(() => makeCharacter(
  31997. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31998. {
  31999. front: {
  32000. height: math.unit(4 + 11/12, "feet"),
  32001. weight: math.unit(132, "lb"),
  32002. name: "Front",
  32003. image: {
  32004. source: "./media/characters/icey/front.svg",
  32005. extra: 2750/2550,
  32006. bottom: 33/2783
  32007. }
  32008. },
  32009. back: {
  32010. height: math.unit(4 + 11/12, "feet"),
  32011. weight: math.unit(132, "lb"),
  32012. name: "Back",
  32013. image: {
  32014. source: "./media/characters/icey/back.svg",
  32015. extra: 2624/2481,
  32016. bottom: 35/2659
  32017. }
  32018. },
  32019. },
  32020. [
  32021. {
  32022. name: "Normal",
  32023. height: math.unit(4 + 11/12, "feet"),
  32024. default: true
  32025. },
  32026. ]
  32027. ))
  32028. characterMakers.push(() => makeCharacter(
  32029. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32030. {
  32031. front: {
  32032. height: math.unit(100, "feet"),
  32033. weight: math.unit(0, "lb"),
  32034. name: "Front",
  32035. image: {
  32036. source: "./media/characters/smile/front.svg",
  32037. extra: 2983/2912,
  32038. bottom: 162/3145
  32039. }
  32040. },
  32041. back: {
  32042. height: math.unit(100, "feet"),
  32043. weight: math.unit(0, "lb"),
  32044. name: "Back",
  32045. image: {
  32046. source: "./media/characters/smile/back.svg",
  32047. extra: 3143/3031,
  32048. bottom: 91/3234
  32049. }
  32050. },
  32051. head: {
  32052. height: math.unit(26.3, "feet"),
  32053. weight: math.unit(0, "lb"),
  32054. name: "Head",
  32055. image: {
  32056. source: "./media/characters/smile/head.svg"
  32057. }
  32058. },
  32059. collar: {
  32060. height: math.unit(5.3, "feet"),
  32061. weight: math.unit(0, "lb"),
  32062. name: "Collar",
  32063. image: {
  32064. source: "./media/characters/smile/collar.svg"
  32065. }
  32066. },
  32067. },
  32068. [
  32069. {
  32070. name: "Macro",
  32071. height: math.unit(100, "feet"),
  32072. default: true
  32073. },
  32074. ]
  32075. ))
  32076. characterMakers.push(() => makeCharacter(
  32077. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32078. {
  32079. dragon: {
  32080. height: math.unit(26, "feet"),
  32081. weight: math.unit(36, "tons"),
  32082. name: "Dragon",
  32083. image: {
  32084. source: "./media/characters/arimphae/dragon.svg",
  32085. extra: 1574/983,
  32086. bottom: 357/1931
  32087. }
  32088. },
  32089. drake: {
  32090. height: math.unit(9, "feet"),
  32091. weight: math.unit(1.5, "tons"),
  32092. name: "Drake",
  32093. image: {
  32094. source: "./media/characters/arimphae/drake.svg",
  32095. extra: 1120/925,
  32096. bottom: 435/1555
  32097. }
  32098. },
  32099. },
  32100. [
  32101. {
  32102. name: "Small",
  32103. height: math.unit(26*5/9, "feet")
  32104. },
  32105. {
  32106. name: "Normal",
  32107. height: math.unit(26, "feet"),
  32108. default: true
  32109. },
  32110. ]
  32111. ))
  32112. characterMakers.push(() => makeCharacter(
  32113. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32114. {
  32115. front: {
  32116. height: math.unit(8 + 9/12, "feet"),
  32117. name: "Front",
  32118. image: {
  32119. source: "./media/characters/xander/front.svg",
  32120. extra: 848/673,
  32121. bottom: 62/910
  32122. }
  32123. },
  32124. },
  32125. [
  32126. {
  32127. name: "Normal",
  32128. height: math.unit(8 + 9/12, "feet"),
  32129. default: true
  32130. },
  32131. {
  32132. name: "Gaze Grabber",
  32133. height: math.unit(13 + 8/12, "feet")
  32134. },
  32135. {
  32136. name: "Jaw Dropper",
  32137. height: math.unit(27, "feet")
  32138. },
  32139. {
  32140. name: "Show Stopper",
  32141. height: math.unit(136, "feet")
  32142. },
  32143. {
  32144. name: "Superstar",
  32145. height: math.unit(1.9e6, "miles")
  32146. },
  32147. ]
  32148. ))
  32149. characterMakers.push(() => makeCharacter(
  32150. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32151. {
  32152. side: {
  32153. height: math.unit(2100, "feet"),
  32154. name: "Side",
  32155. image: {
  32156. source: "./media/characters/osiris/side.svg",
  32157. extra: 1105/939,
  32158. bottom: 167/1272
  32159. }
  32160. },
  32161. },
  32162. [
  32163. {
  32164. name: "Macro",
  32165. height: math.unit(2100, "feet"),
  32166. default: true
  32167. },
  32168. ]
  32169. ))
  32170. characterMakers.push(() => makeCharacter(
  32171. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32172. {
  32173. front: {
  32174. height: math.unit(6 + 8/12, "feet"),
  32175. weight: math.unit(225, "lb"),
  32176. name: "Front",
  32177. image: {
  32178. source: "./media/characters/rhys-londe/front.svg",
  32179. extra: 2258/2141,
  32180. bottom: 188/2446
  32181. }
  32182. },
  32183. back: {
  32184. height: math.unit(6 + 8/12, "feet"),
  32185. weight: math.unit(225, "lb"),
  32186. name: "Back",
  32187. image: {
  32188. source: "./media/characters/rhys-londe/back.svg",
  32189. extra: 2237/2137,
  32190. bottom: 63/2300
  32191. }
  32192. },
  32193. frontNsfw: {
  32194. height: math.unit(6 + 8/12, "feet"),
  32195. weight: math.unit(225, "lb"),
  32196. name: "Front (NSFW)",
  32197. image: {
  32198. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32199. extra: 2258/2141,
  32200. bottom: 188/2446
  32201. }
  32202. },
  32203. backNsfw: {
  32204. height: math.unit(6 + 8/12, "feet"),
  32205. weight: math.unit(225, "lb"),
  32206. name: "Back (NSFW)",
  32207. image: {
  32208. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32209. extra: 2237/2137,
  32210. bottom: 63/2300
  32211. }
  32212. },
  32213. dick: {
  32214. height: math.unit(30, "inches"),
  32215. name: "Dick",
  32216. image: {
  32217. source: "./media/characters/rhys-londe/dick.svg"
  32218. }
  32219. },
  32220. maw: {
  32221. height: math.unit(1.6, "feet"),
  32222. name: "Maw",
  32223. image: {
  32224. source: "./media/characters/rhys-londe/maw.svg"
  32225. }
  32226. },
  32227. },
  32228. [
  32229. {
  32230. name: "Normal",
  32231. height: math.unit(6 + 8/12, "feet"),
  32232. default: true
  32233. },
  32234. ]
  32235. ))
  32236. characterMakers.push(() => makeCharacter(
  32237. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32238. {
  32239. front: {
  32240. height: math.unit(3 + 10/12, "feet"),
  32241. weight: math.unit(90, "lb"),
  32242. name: "Front",
  32243. image: {
  32244. source: "./media/characters/taivas-ensim/front.svg",
  32245. extra: 1327/1216,
  32246. bottom: 96/1423
  32247. }
  32248. },
  32249. back: {
  32250. height: math.unit(3 + 10/12, "feet"),
  32251. weight: math.unit(90, "lb"),
  32252. name: "Back",
  32253. image: {
  32254. source: "./media/characters/taivas-ensim/back.svg",
  32255. extra: 1355/1247,
  32256. bottom: 11/1366
  32257. }
  32258. },
  32259. frontNsfw: {
  32260. height: math.unit(3 + 10/12, "feet"),
  32261. weight: math.unit(90, "lb"),
  32262. name: "Front (NSFW)",
  32263. image: {
  32264. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32265. extra: 1327/1216,
  32266. bottom: 96/1423
  32267. }
  32268. },
  32269. backNsfw: {
  32270. height: math.unit(3 + 10/12, "feet"),
  32271. weight: math.unit(90, "lb"),
  32272. name: "Back (NSFW)",
  32273. image: {
  32274. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32275. extra: 1355/1247,
  32276. bottom: 11/1366
  32277. }
  32278. },
  32279. },
  32280. [
  32281. {
  32282. name: "Normal",
  32283. height: math.unit(3 + 10/12, "feet"),
  32284. default: true
  32285. },
  32286. ]
  32287. ))
  32288. characterMakers.push(() => makeCharacter(
  32289. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32290. {
  32291. front: {
  32292. height: math.unit(9 + 6/12, "feet"),
  32293. weight: math.unit(940, "lb"),
  32294. name: "Front",
  32295. image: {
  32296. source: "./media/characters/byliss/front.svg",
  32297. extra: 1327/1290,
  32298. bottom: 82/1409
  32299. }
  32300. },
  32301. back: {
  32302. height: math.unit(9 + 6/12, "feet"),
  32303. weight: math.unit(940, "lb"),
  32304. name: "Back",
  32305. image: {
  32306. source: "./media/characters/byliss/back.svg",
  32307. extra: 1376/1349,
  32308. bottom: 9/1385
  32309. }
  32310. },
  32311. frontNsfw: {
  32312. height: math.unit(9 + 6/12, "feet"),
  32313. weight: math.unit(940, "lb"),
  32314. name: "Front (NSFW)",
  32315. image: {
  32316. source: "./media/characters/byliss/front-nsfw.svg",
  32317. extra: 1327/1290,
  32318. bottom: 82/1409
  32319. }
  32320. },
  32321. backNsfw: {
  32322. height: math.unit(9 + 6/12, "feet"),
  32323. weight: math.unit(940, "lb"),
  32324. name: "Back (NSFW)",
  32325. image: {
  32326. source: "./media/characters/byliss/back-nsfw.svg",
  32327. extra: 1376/1349,
  32328. bottom: 9/1385
  32329. }
  32330. },
  32331. },
  32332. [
  32333. {
  32334. name: "Normal",
  32335. height: math.unit(9 + 6/12, "feet"),
  32336. default: true
  32337. },
  32338. ]
  32339. ))
  32340. characterMakers.push(() => makeCharacter(
  32341. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32342. {
  32343. front: {
  32344. height: math.unit(5 + 2/12, "feet"),
  32345. weight: math.unit(200, "lb"),
  32346. name: "Front",
  32347. image: {
  32348. source: "./media/characters/noraly/front.svg",
  32349. extra: 4985/4773,
  32350. bottom: 150/5135
  32351. }
  32352. },
  32353. full: {
  32354. height: math.unit(5 + 2/12, "feet"),
  32355. weight: math.unit(164, "lb"),
  32356. name: "Full",
  32357. image: {
  32358. source: "./media/characters/noraly/full.svg",
  32359. extra: 1114/1059,
  32360. bottom: 35/1149
  32361. }
  32362. },
  32363. fuller: {
  32364. height: math.unit(5 + 2/12, "feet"),
  32365. weight: math.unit(230, "lb"),
  32366. name: "Fuller",
  32367. image: {
  32368. source: "./media/characters/noraly/fuller.svg",
  32369. extra: 1114/1059,
  32370. bottom: 35/1149
  32371. }
  32372. },
  32373. fullest: {
  32374. height: math.unit(5 + 2/12, "feet"),
  32375. weight: math.unit(300, "lb"),
  32376. name: "Fullest",
  32377. image: {
  32378. source: "./media/characters/noraly/fullest.svg",
  32379. extra: 1114/1059,
  32380. bottom: 35/1149
  32381. }
  32382. },
  32383. },
  32384. [
  32385. {
  32386. name: "Normal",
  32387. height: math.unit(5 + 2/12, "feet"),
  32388. default: true
  32389. },
  32390. ]
  32391. ))
  32392. characterMakers.push(() => makeCharacter(
  32393. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32394. {
  32395. front: {
  32396. height: math.unit(5 + 2/12, "feet"),
  32397. weight: math.unit(210, "lb"),
  32398. name: "Front",
  32399. image: {
  32400. source: "./media/characters/pera/front.svg",
  32401. extra: 1560/1531,
  32402. bottom: 165/1725
  32403. }
  32404. },
  32405. back: {
  32406. height: math.unit(5 + 2/12, "feet"),
  32407. weight: math.unit(210, "lb"),
  32408. name: "Back",
  32409. image: {
  32410. source: "./media/characters/pera/back.svg",
  32411. extra: 1523/1493,
  32412. bottom: 152/1675
  32413. }
  32414. },
  32415. dick: {
  32416. height: math.unit(2.4, "feet"),
  32417. name: "Dick",
  32418. image: {
  32419. source: "./media/characters/pera/dick.svg"
  32420. }
  32421. },
  32422. },
  32423. [
  32424. {
  32425. name: "Normal",
  32426. height: math.unit(5 + 2/12, "feet"),
  32427. default: true
  32428. },
  32429. ]
  32430. ))
  32431. characterMakers.push(() => makeCharacter(
  32432. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32433. {
  32434. front: {
  32435. height: math.unit(12, "feet"),
  32436. weight: math.unit(3200, "lb"),
  32437. name: "Front",
  32438. image: {
  32439. source: "./media/characters/julian/front.svg",
  32440. extra: 2962/2701,
  32441. bottom: 184/3146
  32442. }
  32443. },
  32444. maw: {
  32445. height: math.unit(5.35, "feet"),
  32446. name: "Maw",
  32447. image: {
  32448. source: "./media/characters/julian/maw.svg"
  32449. }
  32450. },
  32451. paw: {
  32452. height: math.unit(3.07, "feet"),
  32453. name: "Paw",
  32454. image: {
  32455. source: "./media/characters/julian/paw.svg"
  32456. }
  32457. },
  32458. },
  32459. [
  32460. {
  32461. name: "Default",
  32462. height: math.unit(12, "feet"),
  32463. default: true
  32464. },
  32465. {
  32466. name: "Big",
  32467. height: math.unit(50, "feet")
  32468. },
  32469. {
  32470. name: "Really Big",
  32471. height: math.unit(1, "mile")
  32472. },
  32473. {
  32474. name: "Extremely Big",
  32475. height: math.unit(100, "miles")
  32476. },
  32477. {
  32478. name: "Planet Hugger",
  32479. height: math.unit(200, "megameters")
  32480. },
  32481. {
  32482. name: "Unreasonably Big",
  32483. height: math.unit(1e300, "meters")
  32484. },
  32485. ]
  32486. ))
  32487. characterMakers.push(() => makeCharacter(
  32488. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32489. {
  32490. solgooleo: {
  32491. height: math.unit(4, "meters"),
  32492. weight: math.unit(6000*1.5, "kg"),
  32493. volume: math.unit(6000, "liters"),
  32494. name: "Solgooleo",
  32495. image: {
  32496. source: "./media/characters/pi/solgooleo.svg",
  32497. extra: 388/331,
  32498. bottom: 29/417
  32499. }
  32500. },
  32501. },
  32502. [
  32503. {
  32504. name: "Normal",
  32505. height: math.unit(4, "meters"),
  32506. default: true
  32507. },
  32508. ]
  32509. ))
  32510. characterMakers.push(() => makeCharacter(
  32511. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32512. {
  32513. front: {
  32514. height: math.unit(8 + 2/12, "feet"),
  32515. weight: math.unit(4, "tons"),
  32516. name: "Front",
  32517. image: {
  32518. source: "./media/characters/shaun/front.svg",
  32519. extra: 1550/1505,
  32520. bottom: 353/1903
  32521. }
  32522. },
  32523. },
  32524. [
  32525. {
  32526. name: "Lorg",
  32527. height: math.unit(8 + 2/12, "feet"),
  32528. default: true
  32529. },
  32530. ]
  32531. ))
  32532. characterMakers.push(() => makeCharacter(
  32533. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32534. {
  32535. front: {
  32536. height: math.unit(7, "feet"),
  32537. name: "Front",
  32538. image: {
  32539. source: "./media/characters/sini/front.svg",
  32540. extra: 726/678,
  32541. bottom: 35/761
  32542. }
  32543. },
  32544. back: {
  32545. height: math.unit(7, "feet"),
  32546. name: "Back",
  32547. image: {
  32548. source: "./media/characters/sini/back.svg",
  32549. extra: 743/701,
  32550. bottom: 12/755
  32551. }
  32552. },
  32553. mawAnthro: {
  32554. height: math.unit(2.14, "feet"),
  32555. name: "Maw (Anthro)",
  32556. image: {
  32557. source: "./media/characters/sini/maw-anthro.svg"
  32558. }
  32559. },
  32560. dick: {
  32561. height: math.unit(1.45, "feet"),
  32562. name: "Dick (Anthro)",
  32563. image: {
  32564. source: "./media/characters/sini/dick-anthro.svg"
  32565. }
  32566. },
  32567. feral: {
  32568. height: math.unit(16, "feet"),
  32569. name: "Feral",
  32570. image: {
  32571. source: "./media/characters/sini/feral.svg",
  32572. extra: 814/605,
  32573. bottom: 11/825
  32574. }
  32575. },
  32576. mawFeral: {
  32577. height: math.unit(5.66, "feet"),
  32578. name: "Maw-feral",
  32579. image: {
  32580. source: "./media/characters/sini/maw-feral.svg"
  32581. }
  32582. },
  32583. footFeral: {
  32584. height: math.unit(5.17, "feet"),
  32585. name: "Foot-feral",
  32586. image: {
  32587. source: "./media/characters/sini/foot-feral.svg"
  32588. }
  32589. },
  32590. },
  32591. [
  32592. {
  32593. name: "Normal",
  32594. height: math.unit(7, "feet"),
  32595. default: true
  32596. },
  32597. ]
  32598. ))
  32599. characterMakers.push(() => makeCharacter(
  32600. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32601. {
  32602. side: {
  32603. height: math.unit(13, "meters"),
  32604. weight: math.unit(9072, "kg"),
  32605. name: "Side",
  32606. image: {
  32607. source: "./media/characters/raylldo/side.svg",
  32608. extra: 403/344,
  32609. bottom: 42/445
  32610. }
  32611. },
  32612. leaping: {
  32613. height: math.unit(12.3, "meters"),
  32614. weight: math.unit(9072, "kg"),
  32615. name: "Leaping",
  32616. image: {
  32617. source: "./media/characters/raylldo/leaping.svg",
  32618. extra: 470/249,
  32619. bottom: 13/483
  32620. }
  32621. },
  32622. flying: {
  32623. height: math.unit(18, "meters"),
  32624. weight: math.unit(9072, "kg"),
  32625. name: "Flying",
  32626. image: {
  32627. source: "./media/characters/raylldo/flying.svg"
  32628. }
  32629. },
  32630. head: {
  32631. height: math.unit(5.85, "meters"),
  32632. name: "Head",
  32633. image: {
  32634. source: "./media/characters/raylldo/head.svg"
  32635. }
  32636. },
  32637. maw: {
  32638. height: math.unit(5.32, "meters"),
  32639. name: "Maw",
  32640. image: {
  32641. source: "./media/characters/raylldo/maw.svg"
  32642. }
  32643. },
  32644. eye: {
  32645. height: math.unit(0.54, "meters"),
  32646. name: "Eye",
  32647. image: {
  32648. source: "./media/characters/raylldo/eye.svg"
  32649. }
  32650. },
  32651. },
  32652. [
  32653. {
  32654. name: "Normal",
  32655. height: math.unit(13, "meters"),
  32656. default: true
  32657. },
  32658. ]
  32659. ))
  32660. characterMakers.push(() => makeCharacter(
  32661. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32662. {
  32663. anthroFront: {
  32664. height: math.unit(9, "feet"),
  32665. weight: math.unit(600, "lb"),
  32666. name: "Anthro (Front)",
  32667. image: {
  32668. source: "./media/characters/glint/anthro-front.svg",
  32669. extra: 1097/1018,
  32670. bottom: 28/1125
  32671. }
  32672. },
  32673. anthroBack: {
  32674. height: math.unit(9, "feet"),
  32675. weight: math.unit(600, "lb"),
  32676. name: "Anthro (Back)",
  32677. image: {
  32678. source: "./media/characters/glint/anthro-back.svg",
  32679. extra: 1154/997,
  32680. bottom: 36/1190
  32681. }
  32682. },
  32683. feral: {
  32684. height: math.unit(11, "feet"),
  32685. weight: math.unit(50000, "lb"),
  32686. name: "Feral",
  32687. image: {
  32688. source: "./media/characters/glint/feral.svg",
  32689. extra: 3035/1585,
  32690. bottom: 1169/4204
  32691. }
  32692. },
  32693. dickAnthro: {
  32694. height: math.unit(0.7, "meters"),
  32695. name: "Dick (Anthro)",
  32696. image: {
  32697. source: "./media/characters/glint/dick-anthro.svg"
  32698. }
  32699. },
  32700. dickFeral: {
  32701. height: math.unit(2.65, "meters"),
  32702. name: "Dick (Feral)",
  32703. image: {
  32704. source: "./media/characters/glint/dick-feral.svg"
  32705. }
  32706. },
  32707. slitHidden: {
  32708. height: math.unit(5.85, "meters"),
  32709. name: "Slit (Hidden)",
  32710. image: {
  32711. source: "./media/characters/glint/slit-hidden.svg"
  32712. }
  32713. },
  32714. slitErect: {
  32715. height: math.unit(5.85, "meters"),
  32716. name: "Slit (Erect)",
  32717. image: {
  32718. source: "./media/characters/glint/slit-erect.svg"
  32719. }
  32720. },
  32721. mawAnthro: {
  32722. height: math.unit(0.63, "meters"),
  32723. name: "Maw (Anthro)",
  32724. image: {
  32725. source: "./media/characters/glint/maw.svg"
  32726. }
  32727. },
  32728. mawFeral: {
  32729. height: math.unit(2.89, "meters"),
  32730. name: "Maw (Feral)",
  32731. image: {
  32732. source: "./media/characters/glint/maw.svg"
  32733. }
  32734. },
  32735. },
  32736. [
  32737. {
  32738. name: "Normal",
  32739. height: math.unit(9, "feet"),
  32740. default: true
  32741. },
  32742. ]
  32743. ))
  32744. characterMakers.push(() => makeCharacter(
  32745. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32746. {
  32747. side: {
  32748. height: math.unit(15, "feet"),
  32749. weight: math.unit(5000, "kg"),
  32750. name: "Side",
  32751. image: {
  32752. source: "./media/characters/kairne/side.svg",
  32753. extra: 979/811,
  32754. bottom: 13/992
  32755. }
  32756. },
  32757. front: {
  32758. height: math.unit(15, "feet"),
  32759. weight: math.unit(5000, "kg"),
  32760. name: "Front",
  32761. image: {
  32762. source: "./media/characters/kairne/front.svg",
  32763. extra: 908/814,
  32764. bottom: 26/934
  32765. }
  32766. },
  32767. sideNsfw: {
  32768. height: math.unit(15, "feet"),
  32769. weight: math.unit(5000, "kg"),
  32770. name: "Side (NSFW)",
  32771. image: {
  32772. source: "./media/characters/kairne/side-nsfw.svg",
  32773. extra: 979/811,
  32774. bottom: 13/992
  32775. }
  32776. },
  32777. frontNsfw: {
  32778. height: math.unit(15, "feet"),
  32779. weight: math.unit(5000, "kg"),
  32780. name: "Front (NSFW)",
  32781. image: {
  32782. source: "./media/characters/kairne/front-nsfw.svg",
  32783. extra: 908/814,
  32784. bottom: 26/934
  32785. }
  32786. },
  32787. dickCaged: {
  32788. height: math.unit(0.65, "meters"),
  32789. name: "Dick-caged",
  32790. image: {
  32791. source: "./media/characters/kairne/dick-caged.svg"
  32792. }
  32793. },
  32794. dick: {
  32795. height: math.unit(0.79, "meters"),
  32796. name: "Dick",
  32797. image: {
  32798. source: "./media/characters/kairne/dick.svg"
  32799. }
  32800. },
  32801. genitals: {
  32802. height: math.unit(1.29, "meters"),
  32803. name: "Genitals",
  32804. image: {
  32805. source: "./media/characters/kairne/genitals.svg"
  32806. }
  32807. },
  32808. maw: {
  32809. height: math.unit(1.73, "meters"),
  32810. name: "Maw",
  32811. image: {
  32812. source: "./media/characters/kairne/maw.svg"
  32813. }
  32814. },
  32815. },
  32816. [
  32817. {
  32818. name: "Normal",
  32819. height: math.unit(15, "feet"),
  32820. default: true
  32821. },
  32822. ]
  32823. ))
  32824. characterMakers.push(() => makeCharacter(
  32825. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32826. {
  32827. front: {
  32828. height: math.unit(5 + 8/12, "feet"),
  32829. weight: math.unit(139, "lb"),
  32830. name: "Front",
  32831. image: {
  32832. source: "./media/characters/biscuit-jackal/front.svg",
  32833. extra: 2106/1961,
  32834. bottom: 58/2164
  32835. }
  32836. },
  32837. back: {
  32838. height: math.unit(5 + 8/12, "feet"),
  32839. weight: math.unit(139, "lb"),
  32840. name: "Back",
  32841. image: {
  32842. source: "./media/characters/biscuit-jackal/back.svg",
  32843. extra: 2132/1976,
  32844. bottom: 57/2189
  32845. }
  32846. },
  32847. werejackal: {
  32848. height: math.unit(6 + 3/12, "feet"),
  32849. weight: math.unit(188, "lb"),
  32850. name: "Werejackal",
  32851. image: {
  32852. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32853. extra: 2373/2178,
  32854. bottom: 53/2426
  32855. }
  32856. },
  32857. },
  32858. [
  32859. {
  32860. name: "Normal",
  32861. height: math.unit(5 + 8/12, "feet"),
  32862. default: true
  32863. },
  32864. ]
  32865. ))
  32866. characterMakers.push(() => makeCharacter(
  32867. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32868. {
  32869. front: {
  32870. height: math.unit(140, "cm"),
  32871. weight: math.unit(45, "kg"),
  32872. name: "Front",
  32873. image: {
  32874. source: "./media/characters/tayra-white/front.svg",
  32875. extra: 2229/2192,
  32876. bottom: 75/2304
  32877. }
  32878. },
  32879. },
  32880. [
  32881. {
  32882. name: "Normal",
  32883. height: math.unit(140, "cm"),
  32884. default: true
  32885. },
  32886. ]
  32887. ))
  32888. characterMakers.push(() => makeCharacter(
  32889. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32890. {
  32891. front: {
  32892. height: math.unit(4 + 5/12, "feet"),
  32893. name: "Front",
  32894. image: {
  32895. source: "./media/characters/scoop/front.svg",
  32896. extra: 1257/1136,
  32897. bottom: 69/1326
  32898. }
  32899. },
  32900. back: {
  32901. height: math.unit(4 + 5/12, "feet"),
  32902. name: "Back",
  32903. image: {
  32904. source: "./media/characters/scoop/back.svg",
  32905. extra: 1321/1152,
  32906. bottom: 32/1353
  32907. }
  32908. },
  32909. maw: {
  32910. height: math.unit(0.68, "feet"),
  32911. name: "Maw",
  32912. image: {
  32913. source: "./media/characters/scoop/maw.svg"
  32914. }
  32915. },
  32916. },
  32917. [
  32918. {
  32919. name: "Really Small",
  32920. height: math.unit(1, "mm")
  32921. },
  32922. {
  32923. name: "Micro",
  32924. height: math.unit(1, "inch")
  32925. },
  32926. {
  32927. name: "Normal",
  32928. height: math.unit(4 + 5/12, "feet"),
  32929. default: true
  32930. },
  32931. {
  32932. name: "Macro",
  32933. height: math.unit(200, "feet")
  32934. },
  32935. {
  32936. name: "Megamacro",
  32937. height: math.unit(3240, "feet")
  32938. },
  32939. {
  32940. name: "Teramacro",
  32941. height: math.unit(2500, "miles")
  32942. },
  32943. ]
  32944. ))
  32945. characterMakers.push(() => makeCharacter(
  32946. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32947. {
  32948. front: {
  32949. height: math.unit(15 + 7/12, "feet"),
  32950. name: "Front",
  32951. image: {
  32952. source: "./media/characters/saphinara/front.svg",
  32953. extra: 604/546,
  32954. bottom: 19/623
  32955. }
  32956. },
  32957. side: {
  32958. height: math.unit(15 + 7/12, "feet"),
  32959. name: "Side",
  32960. image: {
  32961. source: "./media/characters/saphinara/side.svg",
  32962. extra: 605/547,
  32963. bottom: 6/611
  32964. }
  32965. },
  32966. back: {
  32967. height: math.unit(15 + 7/12, "feet"),
  32968. name: "Back",
  32969. image: {
  32970. source: "./media/characters/saphinara/back.svg",
  32971. extra: 591/531,
  32972. bottom: 13/604
  32973. }
  32974. },
  32975. frontTail: {
  32976. height: math.unit(15 + 7/12, "feet"),
  32977. name: "Front (Full Tail)",
  32978. image: {
  32979. source: "./media/characters/saphinara/front-tail.svg",
  32980. extra: 748/547,
  32981. bottom: 66/814
  32982. }
  32983. },
  32984. },
  32985. [
  32986. {
  32987. name: "Normal",
  32988. height: math.unit(15 + 7/12, "feet"),
  32989. default: true
  32990. },
  32991. {
  32992. name: "Angry",
  32993. height: math.unit(30 + 6/12, "feet")
  32994. },
  32995. {
  32996. name: "Enraged",
  32997. height: math.unit(102 + 1/12, "feet")
  32998. },
  32999. ]
  33000. ))
  33001. characterMakers.push(() => makeCharacter(
  33002. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33003. {
  33004. front: {
  33005. height: math.unit(6 + 8/12, "feet"),
  33006. weight: math.unit(300, "lb"),
  33007. name: "Front",
  33008. image: {
  33009. source: "./media/characters/jrain/front.svg",
  33010. extra: 3039/2865,
  33011. bottom: 399/3438
  33012. }
  33013. },
  33014. back: {
  33015. height: math.unit(6 + 8/12, "feet"),
  33016. weight: math.unit(300, "lb"),
  33017. name: "Back",
  33018. image: {
  33019. source: "./media/characters/jrain/back.svg",
  33020. extra: 3089/2938,
  33021. bottom: 172/3261
  33022. }
  33023. },
  33024. head: {
  33025. height: math.unit(2.14, "feet"),
  33026. name: "Head",
  33027. image: {
  33028. source: "./media/characters/jrain/head.svg"
  33029. }
  33030. },
  33031. maw: {
  33032. height: math.unit(1.77, "feet"),
  33033. name: "Maw",
  33034. image: {
  33035. source: "./media/characters/jrain/maw.svg"
  33036. }
  33037. },
  33038. leftHand: {
  33039. height: math.unit(1.1, "feet"),
  33040. name: "Left Hand",
  33041. image: {
  33042. source: "./media/characters/jrain/left-hand.svg"
  33043. }
  33044. },
  33045. rightHand: {
  33046. height: math.unit(1.1, "feet"),
  33047. name: "Right Hand",
  33048. image: {
  33049. source: "./media/characters/jrain/right-hand.svg"
  33050. }
  33051. },
  33052. eye: {
  33053. height: math.unit(0.35, "feet"),
  33054. name: "Eye",
  33055. image: {
  33056. source: "./media/characters/jrain/eye.svg"
  33057. }
  33058. },
  33059. },
  33060. [
  33061. {
  33062. name: "Normal",
  33063. height: math.unit(6 + 8/12, "feet"),
  33064. default: true
  33065. },
  33066. {
  33067. name: "Casually Large",
  33068. height: math.unit(25, "feet")
  33069. },
  33070. {
  33071. name: "Giant",
  33072. height: math.unit(100, "feet")
  33073. },
  33074. {
  33075. name: "Kaiju",
  33076. height: math.unit(300, "feet")
  33077. },
  33078. ]
  33079. ))
  33080. characterMakers.push(() => makeCharacter(
  33081. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33082. {
  33083. dragon: {
  33084. height: math.unit(5, "meters"),
  33085. name: "Dragon",
  33086. image: {
  33087. source: "./media/characters/sabrina/dragon.svg",
  33088. extra: 3670 / 2365,
  33089. bottom: 333 / 4003
  33090. }
  33091. },
  33092. gryphon: {
  33093. height: math.unit(3, "meters"),
  33094. name: "Gryphon",
  33095. image: {
  33096. source: "./media/characters/sabrina/gryphon.svg",
  33097. extra: 1576 / 945,
  33098. bottom: 71 / 1647
  33099. }
  33100. },
  33101. snake: {
  33102. height: math.unit(12, "meters"),
  33103. name: "Snake",
  33104. image: {
  33105. source: "./media/characters/sabrina/snake.svg",
  33106. extra: 1758 / 1320,
  33107. bottom: 186 / 1944
  33108. }
  33109. },
  33110. collar: {
  33111. height: math.unit(1.86, "meters"),
  33112. name: "Collar",
  33113. image: {
  33114. source: "./media/characters/sabrina/collar.svg"
  33115. }
  33116. },
  33117. eye: {
  33118. height: math.unit(0.53, "meters"),
  33119. name: "Eye",
  33120. image: {
  33121. source: "./media/characters/sabrina/eye.svg"
  33122. }
  33123. },
  33124. foot: {
  33125. height: math.unit(1.86, "meters"),
  33126. name: "Foot",
  33127. image: {
  33128. source: "./media/characters/sabrina/foot.svg"
  33129. }
  33130. },
  33131. hand: {
  33132. height: math.unit(1.32, "meters"),
  33133. name: "Hand",
  33134. image: {
  33135. source: "./media/characters/sabrina/hand.svg"
  33136. }
  33137. },
  33138. head: {
  33139. height: math.unit(2.44, "meters"),
  33140. name: "Head",
  33141. image: {
  33142. source: "./media/characters/sabrina/head.svg"
  33143. }
  33144. },
  33145. headAngry: {
  33146. height: math.unit(2.44, "meters"),
  33147. name: "Head (Angry))",
  33148. image: {
  33149. source: "./media/characters/sabrina/head-angry.svg"
  33150. }
  33151. },
  33152. maw: {
  33153. height: math.unit(1.65, "meters"),
  33154. name: "Maw",
  33155. image: {
  33156. source: "./media/characters/sabrina/maw.svg"
  33157. }
  33158. },
  33159. spikes: {
  33160. height: math.unit(1.69, "meters"),
  33161. name: "Spikes",
  33162. image: {
  33163. source: "./media/characters/sabrina/spikes.svg"
  33164. }
  33165. },
  33166. stomach: {
  33167. height: math.unit(1.15, "meters"),
  33168. name: "Stomach",
  33169. image: {
  33170. source: "./media/characters/sabrina/stomach.svg"
  33171. }
  33172. },
  33173. tongue: {
  33174. height: math.unit(1.27, "meters"),
  33175. name: "Tongue",
  33176. image: {
  33177. source: "./media/characters/sabrina/tongue.svg"
  33178. }
  33179. },
  33180. wingDorsal: {
  33181. height: math.unit(4.85, "meters"),
  33182. name: "Wing (Dorsal)",
  33183. image: {
  33184. source: "./media/characters/sabrina/wing-dorsal.svg"
  33185. }
  33186. },
  33187. wingVentral: {
  33188. height: math.unit(4.85, "meters"),
  33189. name: "Wing (Ventral)",
  33190. image: {
  33191. source: "./media/characters/sabrina/wing-ventral.svg"
  33192. }
  33193. },
  33194. },
  33195. [
  33196. {
  33197. name: "Normal",
  33198. height: math.unit(5, "meters"),
  33199. default: true
  33200. },
  33201. ]
  33202. ))
  33203. characterMakers.push(() => makeCharacter(
  33204. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33205. {
  33206. frontMaid: {
  33207. height: math.unit(5 + 5/12, "feet"),
  33208. weight: math.unit(130, "lb"),
  33209. name: "Front (Maid)",
  33210. image: {
  33211. source: "./media/characters/midnight-tales/front-maid.svg",
  33212. extra: 489/454,
  33213. bottom: 61/550
  33214. }
  33215. },
  33216. frontFormal: {
  33217. height: math.unit(5 + 5/12, "feet"),
  33218. weight: math.unit(130, "lb"),
  33219. name: "Front (Formal)",
  33220. image: {
  33221. source: "./media/characters/midnight-tales/front-formal.svg",
  33222. extra: 489/454,
  33223. bottom: 61/550
  33224. }
  33225. },
  33226. back: {
  33227. height: math.unit(5 + 5/12, "feet"),
  33228. weight: math.unit(130, "lb"),
  33229. name: "Back",
  33230. image: {
  33231. source: "./media/characters/midnight-tales/back.svg",
  33232. extra: 498/456,
  33233. bottom: 33/531
  33234. }
  33235. },
  33236. frontBeast: {
  33237. height: math.unit(40, "feet"),
  33238. weight: math.unit(64000, "lb"),
  33239. name: "Front (Beast)",
  33240. image: {
  33241. source: "./media/characters/midnight-tales/front-beast.svg",
  33242. extra: 927/860,
  33243. bottom: 53/980
  33244. }
  33245. },
  33246. backBeast: {
  33247. height: math.unit(40, "feet"),
  33248. weight: math.unit(64000, "lb"),
  33249. name: "Back (Beast)",
  33250. image: {
  33251. source: "./media/characters/midnight-tales/back-beast.svg",
  33252. extra: 929/855,
  33253. bottom: 16/945
  33254. }
  33255. },
  33256. footBeast: {
  33257. height: math.unit(6.7, "feet"),
  33258. name: "Foot (Beast)",
  33259. image: {
  33260. source: "./media/characters/midnight-tales/foot-beast.svg"
  33261. }
  33262. },
  33263. headBeast: {
  33264. height: math.unit(8, "feet"),
  33265. name: "Head (Beast)",
  33266. image: {
  33267. source: "./media/characters/midnight-tales/head-beast.svg"
  33268. }
  33269. },
  33270. },
  33271. [
  33272. {
  33273. name: "Normal",
  33274. height: math.unit(5 + 5 / 12, "feet"),
  33275. default: true
  33276. },
  33277. {
  33278. name: "Macro",
  33279. height: math.unit(25, "feet")
  33280. },
  33281. ]
  33282. ))
  33283. characterMakers.push(() => makeCharacter(
  33284. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33285. {
  33286. front: {
  33287. height: math.unit(5 + 10/12, "feet"),
  33288. name: "Front",
  33289. image: {
  33290. source: "./media/characters/argon/front.svg",
  33291. extra: 2009/1935,
  33292. bottom: 118/2127
  33293. }
  33294. },
  33295. back: {
  33296. height: math.unit(5 + 10/12, "feet"),
  33297. name: "Back",
  33298. image: {
  33299. source: "./media/characters/argon/back.svg",
  33300. extra: 2047/1992,
  33301. bottom: 20/2067
  33302. }
  33303. },
  33304. frontDressed: {
  33305. height: math.unit(5 + 10/12, "feet"),
  33306. name: "Front (Dressed)",
  33307. image: {
  33308. source: "./media/characters/argon/front-dressed.svg",
  33309. extra: 2009/1935,
  33310. bottom: 118/2127
  33311. }
  33312. },
  33313. },
  33314. [
  33315. {
  33316. name: "Normal",
  33317. height: math.unit(5 + 10/12, "feet"),
  33318. default: true
  33319. },
  33320. ]
  33321. ))
  33322. characterMakers.push(() => makeCharacter(
  33323. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33324. {
  33325. front: {
  33326. height: math.unit(8 + 6/12, "feet"),
  33327. weight: math.unit(1150, "lb"),
  33328. name: "Front",
  33329. image: {
  33330. source: "./media/characters/kichi/front.svg",
  33331. extra: 1267/1164,
  33332. bottom: 61/1328
  33333. }
  33334. },
  33335. back: {
  33336. height: math.unit(8 + 6/12, "feet"),
  33337. weight: math.unit(1150, "lb"),
  33338. name: "Back",
  33339. image: {
  33340. source: "./media/characters/kichi/back.svg",
  33341. extra: 1273/1166,
  33342. bottom: 33/1306
  33343. }
  33344. },
  33345. },
  33346. [
  33347. {
  33348. name: "Normal",
  33349. height: math.unit(8 + 6/12, "feet"),
  33350. default: true
  33351. },
  33352. ]
  33353. ))
  33354. characterMakers.push(() => makeCharacter(
  33355. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33356. {
  33357. front: {
  33358. height: math.unit(6, "feet"),
  33359. weight: math.unit(210, "lb"),
  33360. name: "Front",
  33361. image: {
  33362. source: "./media/characters/manetel-greyscale/front.svg",
  33363. extra: 350/312,
  33364. bottom: 8/358
  33365. }
  33366. },
  33367. },
  33368. [
  33369. {
  33370. name: "Micro",
  33371. height: math.unit(2, "inches")
  33372. },
  33373. {
  33374. name: "Normal",
  33375. height: math.unit(6, "feet"),
  33376. default: true
  33377. },
  33378. {
  33379. name: "Minimacro",
  33380. height: math.unit(17, "feet")
  33381. },
  33382. {
  33383. name: "Macro",
  33384. height: math.unit(117, "feet")
  33385. },
  33386. ]
  33387. ))
  33388. characterMakers.push(() => makeCharacter(
  33389. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33390. {
  33391. side: {
  33392. height: math.unit(5 + 1/12, "feet"),
  33393. weight: math.unit(418, "lb"),
  33394. name: "Side",
  33395. image: {
  33396. source: "./media/characters/softpurr/side.svg",
  33397. extra: 1993/1945,
  33398. bottom: 134/2127
  33399. }
  33400. },
  33401. front: {
  33402. height: math.unit(5 + 1/12, "feet"),
  33403. weight: math.unit(418, "lb"),
  33404. name: "Front",
  33405. image: {
  33406. source: "./media/characters/softpurr/front.svg",
  33407. extra: 1950/1856,
  33408. bottom: 174/2124
  33409. }
  33410. },
  33411. paw: {
  33412. height: math.unit(1, "feet"),
  33413. name: "Paw",
  33414. image: {
  33415. source: "./media/characters/softpurr/paw.svg"
  33416. }
  33417. },
  33418. },
  33419. [
  33420. {
  33421. name: "Normal",
  33422. height: math.unit(5 + 1/12, "feet"),
  33423. default: true
  33424. },
  33425. ]
  33426. ))
  33427. characterMakers.push(() => makeCharacter(
  33428. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33429. {
  33430. front: {
  33431. height: math.unit(260, "meters"),
  33432. name: "Front",
  33433. image: {
  33434. source: "./media/characters/anahita/front.svg",
  33435. extra: 665/635,
  33436. bottom: 89/754
  33437. }
  33438. },
  33439. },
  33440. [
  33441. {
  33442. name: "Macro",
  33443. height: math.unit(260, "meters"),
  33444. default: true
  33445. },
  33446. ]
  33447. ))
  33448. characterMakers.push(() => makeCharacter(
  33449. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33450. {
  33451. front: {
  33452. height: math.unit(4 + 10/12, "feet"),
  33453. weight: math.unit(160, "lb"),
  33454. name: "Front",
  33455. image: {
  33456. source: "./media/characters/chip-mouse/front.svg",
  33457. extra: 3528/3408,
  33458. bottom: 0/3528
  33459. }
  33460. },
  33461. frontNsfw: {
  33462. height: math.unit(4 + 10/12, "feet"),
  33463. weight: math.unit(160, "lb"),
  33464. name: "Front (NSFW)",
  33465. image: {
  33466. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33467. extra: 3528/3408,
  33468. bottom: 0/3528
  33469. }
  33470. },
  33471. },
  33472. [
  33473. {
  33474. name: "Normal",
  33475. height: math.unit(4 + 10/12, "feet"),
  33476. default: true
  33477. },
  33478. ]
  33479. ))
  33480. characterMakers.push(() => makeCharacter(
  33481. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33482. {
  33483. side: {
  33484. height: math.unit(10, "feet"),
  33485. weight: math.unit(14000, "lb"),
  33486. name: "Side",
  33487. image: {
  33488. source: "./media/characters/kremm/side.svg",
  33489. extra: 1390/1053,
  33490. bottom: 90/1480
  33491. }
  33492. },
  33493. gut: {
  33494. height: math.unit(5.8, "feet"),
  33495. name: "Gut",
  33496. image: {
  33497. source: "./media/characters/kremm/gut.svg"
  33498. }
  33499. },
  33500. ass: {
  33501. height: math.unit(6.1, "feet"),
  33502. name: "Ass",
  33503. image: {
  33504. source: "./media/characters/kremm/ass.svg"
  33505. }
  33506. },
  33507. jaws: {
  33508. height: math.unit(2.2, "feet"),
  33509. name: "Jaws",
  33510. image: {
  33511. source: "./media/characters/kremm/jaws.svg"
  33512. }
  33513. },
  33514. dick: {
  33515. height: math.unit(4.26, "feet"),
  33516. name: "Dick",
  33517. image: {
  33518. source: "./media/characters/kremm/dick.svg"
  33519. }
  33520. },
  33521. },
  33522. [
  33523. {
  33524. name: "Normal",
  33525. height: math.unit(10, "feet"),
  33526. default: true
  33527. },
  33528. ]
  33529. ))
  33530. characterMakers.push(() => makeCharacter(
  33531. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33532. {
  33533. front: {
  33534. height: math.unit(30, "stories"),
  33535. name: "Front",
  33536. image: {
  33537. source: "./media/characters/kai/front.svg",
  33538. extra: 1892/1718,
  33539. bottom: 162/2054
  33540. }
  33541. },
  33542. },
  33543. [
  33544. {
  33545. name: "Macro",
  33546. height: math.unit(30, "stories"),
  33547. default: true
  33548. },
  33549. ]
  33550. ))
  33551. characterMakers.push(() => makeCharacter(
  33552. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33553. {
  33554. front: {
  33555. height: math.unit(6 + 4/12, "feet"),
  33556. weight: math.unit(145, "lb"),
  33557. name: "Front",
  33558. image: {
  33559. source: "./media/characters/sykes/front.svg",
  33560. extra: 1321 / 1187,
  33561. bottom: 66 / 1387
  33562. }
  33563. },
  33564. back: {
  33565. height: math.unit(6 + 4/12, "feet"),
  33566. weight: math.unit(145, "lb"),
  33567. name: "Back",
  33568. image: {
  33569. source: "./media/characters/sykes/back.svg",
  33570. extra: 1326/1181,
  33571. bottom: 31/1357
  33572. }
  33573. },
  33574. handBack: {
  33575. height: math.unit(0.9, "feet"),
  33576. name: "Hand (Back)",
  33577. image: {
  33578. source: "./media/characters/sykes/hand-back.svg"
  33579. }
  33580. },
  33581. handFront: {
  33582. height: math.unit(0.839, "feet"),
  33583. name: "Hand (Front)",
  33584. image: {
  33585. source: "./media/characters/sykes/hand-front.svg"
  33586. }
  33587. },
  33588. leftFoot: {
  33589. height: math.unit(1.2, "feet"),
  33590. name: "Foot (Left)",
  33591. image: {
  33592. source: "./media/characters/sykes/foot-left.svg"
  33593. }
  33594. },
  33595. rightFoot: {
  33596. height: math.unit(1.2, "feet"),
  33597. name: "Foot (Right)",
  33598. image: {
  33599. source: "./media/characters/sykes/foot-right.svg"
  33600. }
  33601. },
  33602. maw: {
  33603. height: math.unit(1.93, "feet"),
  33604. name: "Maw",
  33605. image: {
  33606. source: "./media/characters/sykes/maw.svg"
  33607. }
  33608. },
  33609. teeth: {
  33610. height: math.unit(0.51, "feet"),
  33611. name: "Teeth",
  33612. image: {
  33613. source: "./media/characters/sykes/teeth.svg"
  33614. }
  33615. },
  33616. tongue: {
  33617. height: math.unit(2.13, "feet"),
  33618. name: "Tongue",
  33619. image: {
  33620. source: "./media/characters/sykes/tongue.svg"
  33621. }
  33622. },
  33623. uvula: {
  33624. height: math.unit(0.16, "feet"),
  33625. name: "Uvula",
  33626. image: {
  33627. source: "./media/characters/sykes/uvula.svg"
  33628. }
  33629. },
  33630. collar: {
  33631. height: math.unit(0.287, "feet"),
  33632. name: "Collar",
  33633. image: {
  33634. source: "./media/characters/sykes/collar.svg"
  33635. }
  33636. },
  33637. },
  33638. [
  33639. {
  33640. name: "Shrunken",
  33641. height: math.unit(5, "inches")
  33642. },
  33643. {
  33644. name: "Normal",
  33645. height: math.unit(6 + 4 / 12, "feet"),
  33646. default: true
  33647. },
  33648. {
  33649. name: "Big",
  33650. height: math.unit(15, "feet")
  33651. },
  33652. ]
  33653. ))
  33654. characterMakers.push(() => makeCharacter(
  33655. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33656. {
  33657. front: {
  33658. height: math.unit(5 + 8/12, "feet"),
  33659. weight: math.unit(190, "lb"),
  33660. name: "Front",
  33661. image: {
  33662. source: "./media/characters/oven-otter/front.svg",
  33663. extra: 1809/1740,
  33664. bottom: 181/1990
  33665. }
  33666. },
  33667. back: {
  33668. height: math.unit(5 + 8/12, "feet"),
  33669. weight: math.unit(190, "lb"),
  33670. name: "Back",
  33671. image: {
  33672. source: "./media/characters/oven-otter/back.svg",
  33673. extra: 1709/1635,
  33674. bottom: 118/1827
  33675. }
  33676. },
  33677. hand: {
  33678. height: math.unit(1.07, "feet"),
  33679. name: "Hand",
  33680. image: {
  33681. source: "./media/characters/oven-otter/hand.svg"
  33682. }
  33683. },
  33684. beans: {
  33685. height: math.unit(1.74, "feet"),
  33686. name: "Beans",
  33687. image: {
  33688. source: "./media/characters/oven-otter/beans.svg"
  33689. }
  33690. },
  33691. },
  33692. [
  33693. {
  33694. name: "Micro",
  33695. height: math.unit(0.5, "inches")
  33696. },
  33697. {
  33698. name: "Normal",
  33699. height: math.unit(5 + 8/12, "feet"),
  33700. default: true
  33701. },
  33702. {
  33703. name: "Macro",
  33704. height: math.unit(250, "feet")
  33705. },
  33706. {
  33707. name: "Really High",
  33708. height: math.unit(420, "feet")
  33709. },
  33710. ]
  33711. ))
  33712. characterMakers.push(() => makeCharacter(
  33713. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33714. {
  33715. front: {
  33716. height: math.unit(5, "meters"),
  33717. weight: math.unit(292000000000000, "kg"),
  33718. name: "Front",
  33719. image: {
  33720. source: "./media/characters/devourer/front.svg",
  33721. extra: 1800/1733,
  33722. bottom: 211/2011
  33723. }
  33724. },
  33725. maw: {
  33726. height: math.unit(1.1, "meter"),
  33727. name: "Maw",
  33728. image: {
  33729. source: "./media/characters/devourer/maw.svg"
  33730. }
  33731. },
  33732. },
  33733. [
  33734. {
  33735. name: "Small",
  33736. height: math.unit(3, "meters")
  33737. },
  33738. {
  33739. name: "Large",
  33740. height: math.unit(5, "meters"),
  33741. default: true
  33742. },
  33743. ]
  33744. ))
  33745. characterMakers.push(() => makeCharacter(
  33746. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33747. {
  33748. front: {
  33749. height: math.unit(6, "feet"),
  33750. weight: math.unit(400, "lb"),
  33751. name: "Front",
  33752. image: {
  33753. source: "./media/characters/ellarby/front.svg",
  33754. extra: 1909/1763,
  33755. bottom: 80/1989
  33756. }
  33757. },
  33758. back: {
  33759. height: math.unit(6, "feet"),
  33760. weight: math.unit(400, "lb"),
  33761. name: "Back",
  33762. image: {
  33763. source: "./media/characters/ellarby/back.svg",
  33764. extra: 1914/1784,
  33765. bottom: 172/2086
  33766. }
  33767. },
  33768. },
  33769. [
  33770. {
  33771. name: "Mischief",
  33772. height: math.unit(18, "inches")
  33773. },
  33774. {
  33775. name: "Trouble",
  33776. height: math.unit(12, "feet")
  33777. },
  33778. {
  33779. name: "Havoc",
  33780. height: math.unit(200, "feet"),
  33781. default: true
  33782. },
  33783. {
  33784. name: "Pandemonium",
  33785. height: math.unit(1, "mile")
  33786. },
  33787. {
  33788. name: "Catastrophe",
  33789. height: math.unit(100, "miles")
  33790. },
  33791. ]
  33792. ))
  33793. characterMakers.push(() => makeCharacter(
  33794. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33795. {
  33796. front: {
  33797. height: math.unit(4.7, "meters"),
  33798. weight: math.unit(6500, "kg"),
  33799. name: "Front",
  33800. image: {
  33801. source: "./media/characters/vex/front.svg",
  33802. extra: 1288/1140,
  33803. bottom: 100/1388
  33804. }
  33805. },
  33806. },
  33807. [
  33808. {
  33809. name: "Normal",
  33810. height: math.unit(4.7, "meters"),
  33811. default: true
  33812. },
  33813. ]
  33814. ))
  33815. characterMakers.push(() => makeCharacter(
  33816. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33817. {
  33818. normal: {
  33819. height: math.unit(6, "feet"),
  33820. weight: math.unit(350, "lb"),
  33821. name: "Normal",
  33822. image: {
  33823. source: "./media/characters/teshy/normal.svg",
  33824. extra: 1795/1735,
  33825. bottom: 16/1811
  33826. }
  33827. },
  33828. monsterFront: {
  33829. height: math.unit(12, "feet"),
  33830. weight: math.unit(4700, "lb"),
  33831. name: "Monster (Front)",
  33832. image: {
  33833. source: "./media/characters/teshy/monster-front.svg",
  33834. extra: 2042/2034,
  33835. bottom: 128/2170
  33836. }
  33837. },
  33838. monsterSide: {
  33839. height: math.unit(12, "feet"),
  33840. weight: math.unit(4700, "lb"),
  33841. name: "Monster (Side)",
  33842. image: {
  33843. source: "./media/characters/teshy/monster-side.svg",
  33844. extra: 2067/2056,
  33845. bottom: 70/2137
  33846. }
  33847. },
  33848. monsterBack: {
  33849. height: math.unit(12, "feet"),
  33850. weight: math.unit(4700, "lb"),
  33851. name: "Monster (Back)",
  33852. image: {
  33853. source: "./media/characters/teshy/monster-back.svg",
  33854. extra: 1921/1914,
  33855. bottom: 171/2092
  33856. }
  33857. },
  33858. },
  33859. [
  33860. {
  33861. name: "Normal",
  33862. height: math.unit(6, "feet"),
  33863. default: true
  33864. },
  33865. ]
  33866. ))
  33867. characterMakers.push(() => makeCharacter(
  33868. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33869. {
  33870. front: {
  33871. height: math.unit(6, "feet"),
  33872. name: "Front",
  33873. image: {
  33874. source: "./media/characters/ramey/front.svg",
  33875. extra: 790/787,
  33876. bottom: 27/817
  33877. }
  33878. },
  33879. },
  33880. [
  33881. {
  33882. name: "Normal",
  33883. height: math.unit(6, "feet"),
  33884. default: true
  33885. },
  33886. ]
  33887. ))
  33888. characterMakers.push(() => makeCharacter(
  33889. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33890. {
  33891. front: {
  33892. height: math.unit(5 + 5/12, "feet"),
  33893. weight: math.unit(120, "lb"),
  33894. name: "Front",
  33895. image: {
  33896. source: "./media/characters/phirae/front.svg",
  33897. extra: 2491/2436,
  33898. bottom: 38/2529
  33899. }
  33900. },
  33901. },
  33902. [
  33903. {
  33904. name: "Normal",
  33905. height: math.unit(5 + 5/12, "feet"),
  33906. default: true
  33907. },
  33908. ]
  33909. ))
  33910. characterMakers.push(() => makeCharacter(
  33911. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  33912. {
  33913. front: {
  33914. height: math.unit(5 + 3/12, "feet"),
  33915. name: "Front",
  33916. image: {
  33917. source: "./media/characters/stagglas/front.svg",
  33918. extra: 962/882,
  33919. bottom: 53/1015
  33920. }
  33921. },
  33922. feral: {
  33923. height: math.unit(335, "cm"),
  33924. name: "Feral",
  33925. image: {
  33926. source: "./media/characters/stagglas/feral.svg",
  33927. extra: 1732/1090,
  33928. bottom: 48/1780
  33929. }
  33930. },
  33931. },
  33932. [
  33933. {
  33934. name: "Normal",
  33935. height: math.unit(5 + 3/12, "feet"),
  33936. default: true
  33937. },
  33938. ]
  33939. ))
  33940. characterMakers.push(() => makeCharacter(
  33941. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33942. {
  33943. front: {
  33944. height: math.unit(5 + 4/12, "feet"),
  33945. weight: math.unit(145, "lb"),
  33946. name: "Front",
  33947. image: {
  33948. source: "./media/characters/starra/front.svg",
  33949. extra: 1790/1691,
  33950. bottom: 91/1881
  33951. }
  33952. },
  33953. },
  33954. [
  33955. {
  33956. name: "Normal",
  33957. height: math.unit(5 + 4/12, "feet"),
  33958. default: true
  33959. },
  33960. ]
  33961. ))
  33962. characterMakers.push(() => makeCharacter(
  33963. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33964. {
  33965. front: {
  33966. height: math.unit(2.2, "meters"),
  33967. name: "Front",
  33968. image: {
  33969. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33970. extra: 1194/1005,
  33971. bottom: 25/1219
  33972. }
  33973. },
  33974. },
  33975. [
  33976. {
  33977. name: "Normal",
  33978. height: math.unit(2.2, "meters"),
  33979. default: true
  33980. },
  33981. ]
  33982. ))
  33983. characterMakers.push(() => makeCharacter(
  33984. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33985. {
  33986. side: {
  33987. height: math.unit(8 + 2/12, "feet"),
  33988. weight: math.unit(1240, "lb"),
  33989. name: "Side",
  33990. image: {
  33991. source: "./media/characters/mika-valentine/side.svg",
  33992. extra: 2670/2501,
  33993. bottom: 250/2920
  33994. }
  33995. },
  33996. },
  33997. [
  33998. {
  33999. name: "Normal",
  34000. height: math.unit(8 + 2/12, "feet"),
  34001. default: true
  34002. },
  34003. ]
  34004. ))
  34005. characterMakers.push(() => makeCharacter(
  34006. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34007. {
  34008. front: {
  34009. height: math.unit(7 + 2/12, "feet"),
  34010. name: "Front",
  34011. image: {
  34012. source: "./media/characters/xoltol/front.svg",
  34013. extra: 2212/2124,
  34014. bottom: 84/2296
  34015. }
  34016. },
  34017. side: {
  34018. height: math.unit(7 + 2/12, "feet"),
  34019. name: "Side",
  34020. image: {
  34021. source: "./media/characters/xoltol/side.svg",
  34022. extra: 2273/2197,
  34023. bottom: 26/2299
  34024. }
  34025. },
  34026. hand: {
  34027. height: math.unit(2.5, "feet"),
  34028. name: "Hand",
  34029. image: {
  34030. source: "./media/characters/xoltol/hand.svg"
  34031. }
  34032. },
  34033. },
  34034. [
  34035. {
  34036. name: "Small-ish",
  34037. height: math.unit(5 + 11/12, "feet")
  34038. },
  34039. {
  34040. name: "Normal",
  34041. height: math.unit(7 + 2/12, "feet")
  34042. },
  34043. {
  34044. name: "\"Macro\"",
  34045. height: math.unit(14 + 9/12, "feet"),
  34046. default: true
  34047. },
  34048. {
  34049. name: "Alternate Height",
  34050. height: math.unit(20, "feet")
  34051. },
  34052. {
  34053. name: "Actually Macro",
  34054. height: math.unit(100, "feet")
  34055. },
  34056. ]
  34057. ))
  34058. characterMakers.push(() => makeCharacter(
  34059. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34060. {
  34061. front: {
  34062. height: math.unit(5 + 2/12, "feet"),
  34063. name: "Front",
  34064. image: {
  34065. source: "./media/characters/kotetsu-redwood/front.svg",
  34066. extra: 1053/942,
  34067. bottom: 60/1113
  34068. }
  34069. },
  34070. },
  34071. [
  34072. {
  34073. name: "Normal",
  34074. height: math.unit(5 + 2/12, "feet"),
  34075. default: true
  34076. },
  34077. ]
  34078. ))
  34079. characterMakers.push(() => makeCharacter(
  34080. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34081. {
  34082. front: {
  34083. height: math.unit(2.4, "meters"),
  34084. weight: math.unit(125, "kg"),
  34085. name: "Front",
  34086. image: {
  34087. source: "./media/characters/lilith/front.svg",
  34088. extra: 1590/1513,
  34089. bottom: 203/1793
  34090. }
  34091. },
  34092. },
  34093. [
  34094. {
  34095. name: "Humanoid",
  34096. height: math.unit(2.4, "meters")
  34097. },
  34098. {
  34099. name: "Normal",
  34100. height: math.unit(6, "meters"),
  34101. default: true
  34102. },
  34103. {
  34104. name: "Largest",
  34105. height: math.unit(55, "meters")
  34106. },
  34107. ]
  34108. ))
  34109. characterMakers.push(() => makeCharacter(
  34110. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34111. {
  34112. front: {
  34113. height: math.unit(8 + 4/12, "feet"),
  34114. weight: math.unit(535, "lb"),
  34115. name: "Front",
  34116. image: {
  34117. source: "./media/characters/beh'kah-bolger/front.svg",
  34118. extra: 1660/1603,
  34119. bottom: 37/1697
  34120. }
  34121. },
  34122. },
  34123. [
  34124. {
  34125. name: "Normal",
  34126. height: math.unit(8 + 4/12, "feet"),
  34127. default: true
  34128. },
  34129. {
  34130. name: "Kaiju",
  34131. height: math.unit(250, "feet")
  34132. },
  34133. {
  34134. name: "Still Growing",
  34135. height: math.unit(10, "miles")
  34136. },
  34137. {
  34138. name: "Continental",
  34139. height: math.unit(5000, "miles")
  34140. },
  34141. {
  34142. name: "Final Form",
  34143. height: math.unit(2500000, "miles")
  34144. },
  34145. ]
  34146. ))
  34147. characterMakers.push(() => makeCharacter(
  34148. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34149. {
  34150. front: {
  34151. height: math.unit(7 + 2/12, "feet"),
  34152. weight: math.unit(230, "kg"),
  34153. name: "Front",
  34154. image: {
  34155. source: "./media/characters/tatyana-milewska/front.svg",
  34156. extra: 1199/1150,
  34157. bottom: 86/1285
  34158. }
  34159. },
  34160. },
  34161. [
  34162. {
  34163. name: "Normal",
  34164. height: math.unit(7 + 2/12, "feet"),
  34165. default: true
  34166. },
  34167. {
  34168. name: "Big",
  34169. height: math.unit(12, "feet")
  34170. },
  34171. {
  34172. name: "Minimacro",
  34173. height: math.unit(20, "feet")
  34174. },
  34175. {
  34176. name: "Macro",
  34177. height: math.unit(120, "feet")
  34178. },
  34179. ]
  34180. ))
  34181. characterMakers.push(() => makeCharacter(
  34182. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34183. {
  34184. front: {
  34185. height: math.unit(7 + 8/12, "feet"),
  34186. weight: math.unit(152, "kg"),
  34187. name: "Front",
  34188. image: {
  34189. source: "./media/characters/helen-arri/front.svg",
  34190. extra: 440/423,
  34191. bottom: 14/454
  34192. }
  34193. },
  34194. back: {
  34195. height: math.unit(7 + 8/12, "feet"),
  34196. weight: math.unit(152, "kg"),
  34197. name: "Back",
  34198. image: {
  34199. source: "./media/characters/helen-arri/back.svg",
  34200. extra: 443/426,
  34201. bottom: 8/451
  34202. }
  34203. },
  34204. },
  34205. [
  34206. {
  34207. name: "Normal",
  34208. height: math.unit(7 + 8/12, "feet"),
  34209. default: true
  34210. },
  34211. {
  34212. name: "Big",
  34213. height: math.unit(14, "feet")
  34214. },
  34215. {
  34216. name: "Minimacro",
  34217. height: math.unit(24, "feet")
  34218. },
  34219. {
  34220. name: "Macro",
  34221. height: math.unit(140, "feet")
  34222. },
  34223. ]
  34224. ))
  34225. characterMakers.push(() => makeCharacter(
  34226. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34227. {
  34228. front: {
  34229. height: math.unit(6, "meters"),
  34230. name: "Front",
  34231. image: {
  34232. source: "./media/characters/ehanu-rehu/front.svg",
  34233. extra: 1800/1800,
  34234. bottom: 59/1859
  34235. }
  34236. },
  34237. },
  34238. [
  34239. {
  34240. name: "Normal",
  34241. height: math.unit(6, "meters"),
  34242. default: true
  34243. },
  34244. ]
  34245. ))
  34246. characterMakers.push(() => makeCharacter(
  34247. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34248. {
  34249. front: {
  34250. height: math.unit(7 + 3/12, "feet"),
  34251. name: "Front",
  34252. image: {
  34253. source: "./media/characters/renholder/front.svg",
  34254. extra: 3096/2960,
  34255. bottom: 250/3346
  34256. }
  34257. },
  34258. },
  34259. [
  34260. {
  34261. name: "Normal Bat",
  34262. height: math.unit(7 + 3/12, "feet"),
  34263. default: true
  34264. },
  34265. {
  34266. name: "Slightly Tall Bat",
  34267. height: math.unit(100, "feet")
  34268. },
  34269. {
  34270. name: "Big Bat",
  34271. height: math.unit(1000, "feet")
  34272. },
  34273. {
  34274. name: "City-Sized Bat",
  34275. height: math.unit(200000, "feet")
  34276. },
  34277. {
  34278. name: "Bigger Bat",
  34279. height: math.unit(10000, "miles")
  34280. },
  34281. {
  34282. name: "Solar Sized Bat",
  34283. height: math.unit(100, "AU")
  34284. },
  34285. {
  34286. name: "Galactic Bat",
  34287. height: math.unit(200000, "lightyears")
  34288. },
  34289. {
  34290. name: "Universally Known Bat",
  34291. height: math.unit(1, "universe")
  34292. },
  34293. ]
  34294. ))
  34295. characterMakers.push(() => makeCharacter(
  34296. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34297. {
  34298. front: {
  34299. height: math.unit(6 + 11/12, "feet"),
  34300. weight: math.unit(250, "lb"),
  34301. name: "Front",
  34302. image: {
  34303. source: "./media/characters/cookiecat/front.svg",
  34304. extra: 893/827,
  34305. bottom: 14/907
  34306. }
  34307. },
  34308. },
  34309. [
  34310. {
  34311. name: "Micro",
  34312. height: math.unit(3, "inches")
  34313. },
  34314. {
  34315. name: "Normal",
  34316. height: math.unit(6 + 11/12, "feet"),
  34317. default: true
  34318. },
  34319. {
  34320. name: "Macro",
  34321. height: math.unit(100, "feet")
  34322. },
  34323. {
  34324. name: "Macro+",
  34325. height: math.unit(404, "feet")
  34326. },
  34327. {
  34328. name: "Megamacro",
  34329. height: math.unit(165, "miles")
  34330. },
  34331. {
  34332. name: "Planetary",
  34333. height: math.unit(4600, "miles")
  34334. },
  34335. ]
  34336. ))
  34337. characterMakers.push(() => makeCharacter(
  34338. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34339. {
  34340. front: {
  34341. height: math.unit(10 + 3/12, "feet"),
  34342. weight: math.unit(1500, "lb"),
  34343. name: "Front",
  34344. image: {
  34345. source: "./media/characters/tux-kusanagi/front.svg",
  34346. extra: 944/840,
  34347. bottom: 39/983
  34348. }
  34349. },
  34350. back: {
  34351. height: math.unit(10 + 3/12, "feet"),
  34352. weight: math.unit(1500, "lb"),
  34353. name: "Back",
  34354. image: {
  34355. source: "./media/characters/tux-kusanagi/back.svg",
  34356. extra: 941/842,
  34357. bottom: 28/969
  34358. }
  34359. },
  34360. rump: {
  34361. height: math.unit(5.25, "feet"),
  34362. name: "Rump",
  34363. image: {
  34364. source: "./media/characters/tux-kusanagi/rump.svg"
  34365. }
  34366. },
  34367. beak: {
  34368. height: math.unit(1.54, "feet"),
  34369. name: "Beak",
  34370. image: {
  34371. source: "./media/characters/tux-kusanagi/beak.svg"
  34372. }
  34373. },
  34374. },
  34375. [
  34376. {
  34377. name: "Normal",
  34378. height: math.unit(10 + 3/12, "feet"),
  34379. default: true
  34380. },
  34381. ]
  34382. ))
  34383. characterMakers.push(() => makeCharacter(
  34384. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34385. {
  34386. front: {
  34387. height: math.unit(58, "feet"),
  34388. weight: math.unit(200, "tons"),
  34389. name: "Front",
  34390. image: {
  34391. source: "./media/characters/uzarmazari/front.svg",
  34392. extra: 1575/1455,
  34393. bottom: 152/1727
  34394. }
  34395. },
  34396. back: {
  34397. height: math.unit(58, "feet"),
  34398. weight: math.unit(200, "tons"),
  34399. name: "Back",
  34400. image: {
  34401. source: "./media/characters/uzarmazari/back.svg",
  34402. extra: 1585/1510,
  34403. bottom: 157/1742
  34404. }
  34405. },
  34406. head: {
  34407. height: math.unit(26, "feet"),
  34408. name: "Head",
  34409. image: {
  34410. source: "./media/characters/uzarmazari/head.svg"
  34411. }
  34412. },
  34413. },
  34414. [
  34415. {
  34416. name: "Normal",
  34417. height: math.unit(58, "feet"),
  34418. default: true
  34419. },
  34420. ]
  34421. ))
  34422. characterMakers.push(() => makeCharacter(
  34423. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34424. {
  34425. side: {
  34426. height: math.unit(15, "feet"),
  34427. name: "Side",
  34428. image: {
  34429. source: "./media/characters/akitu/side.svg",
  34430. extra: 1421/1321,
  34431. bottom: 157/1578
  34432. }
  34433. },
  34434. front: {
  34435. height: math.unit(15, "feet"),
  34436. name: "Front",
  34437. image: {
  34438. source: "./media/characters/akitu/front.svg",
  34439. extra: 1435/1326,
  34440. bottom: 232/1667
  34441. }
  34442. },
  34443. },
  34444. [
  34445. {
  34446. name: "Normal",
  34447. height: math.unit(15, "feet"),
  34448. default: true
  34449. },
  34450. ]
  34451. ))
  34452. characterMakers.push(() => makeCharacter(
  34453. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34454. {
  34455. front: {
  34456. height: math.unit(10 + 8/12, "feet"),
  34457. name: "Front",
  34458. image: {
  34459. source: "./media/characters/azalie-croixland/front.svg",
  34460. extra: 1972/1856,
  34461. bottom: 31/2003
  34462. }
  34463. },
  34464. },
  34465. [
  34466. {
  34467. name: "Original Height",
  34468. height: math.unit(5 + 4/12, "feet")
  34469. },
  34470. {
  34471. name: "Normal Height",
  34472. height: math.unit(10 + 8/12, "feet"),
  34473. default: true
  34474. },
  34475. ]
  34476. ))
  34477. characterMakers.push(() => makeCharacter(
  34478. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34479. {
  34480. side: {
  34481. height: math.unit(7 + 1/12, "feet"),
  34482. weight: math.unit(245, "lb"),
  34483. name: "Side",
  34484. image: {
  34485. source: "./media/characters/kavus-kazian/side.svg",
  34486. extra: 349/342,
  34487. bottom: 15/364
  34488. }
  34489. },
  34490. },
  34491. [
  34492. {
  34493. name: "Normal",
  34494. height: math.unit(7 + 1/12, "feet"),
  34495. default: true
  34496. },
  34497. ]
  34498. ))
  34499. characterMakers.push(() => makeCharacter(
  34500. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34501. {
  34502. normal: {
  34503. height: math.unit(5 + 11/12, "feet"),
  34504. name: "Normal",
  34505. image: {
  34506. source: "./media/characters/moonlight-rose/normal.svg",
  34507. extra: 1979/1835,
  34508. bottom: 14/1993
  34509. }
  34510. },
  34511. demon: {
  34512. height: math.unit(5, "km"),
  34513. name: "Demon",
  34514. image: {
  34515. source: "./media/characters/moonlight-rose/demon.svg",
  34516. extra: 986/916,
  34517. bottom: 28/1014
  34518. }
  34519. },
  34520. },
  34521. [
  34522. {
  34523. name: "\"Natural\" height",
  34524. height: math.unit(5 + 11/12, "feet")
  34525. },
  34526. {
  34527. name: "Comfortable Size",
  34528. height: math.unit(40, "meters")
  34529. },
  34530. {
  34531. name: "Common Size",
  34532. height: math.unit(50, "km"),
  34533. default: true
  34534. },
  34535. {
  34536. name: "Demonic",
  34537. height: math.unit(1.24415e+21, "meters")
  34538. },
  34539. ]
  34540. ))
  34541. characterMakers.push(() => makeCharacter(
  34542. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34543. {
  34544. front: {
  34545. height: math.unit(16, "feet"),
  34546. weight: math.unit(610, "kg"),
  34547. name: "Front",
  34548. image: {
  34549. source: "./media/characters/huckle/front.svg",
  34550. extra: 1731/1625,
  34551. bottom: 33/1764
  34552. }
  34553. },
  34554. back: {
  34555. height: math.unit(16, "feet"),
  34556. weight: math.unit(610, "kg"),
  34557. name: "Back",
  34558. image: {
  34559. source: "./media/characters/huckle/back.svg",
  34560. extra: 1738/1651,
  34561. bottom: 37/1775
  34562. }
  34563. },
  34564. laughing: {
  34565. height: math.unit(3.75, "feet"),
  34566. name: "Laughing",
  34567. image: {
  34568. source: "./media/characters/huckle/laughing.svg"
  34569. }
  34570. },
  34571. angry: {
  34572. height: math.unit(4.15, "feet"),
  34573. name: "Angry",
  34574. image: {
  34575. source: "./media/characters/huckle/angry.svg"
  34576. }
  34577. },
  34578. },
  34579. [
  34580. {
  34581. name: "Normal",
  34582. height: math.unit(16, "feet"),
  34583. default: true
  34584. },
  34585. {
  34586. name: "Mini Macro",
  34587. height: math.unit(463, "feet")
  34588. },
  34589. {
  34590. name: "Macro",
  34591. height: math.unit(1680, "meters")
  34592. },
  34593. {
  34594. name: "Mega Macro",
  34595. height: math.unit(175, "km")
  34596. },
  34597. {
  34598. name: "Terra Macro",
  34599. height: math.unit(32, "gigameters")
  34600. },
  34601. {
  34602. name: "Multiverse+",
  34603. height: math.unit(2.56e23, "yottameters")
  34604. },
  34605. ]
  34606. ))
  34607. characterMakers.push(() => makeCharacter(
  34608. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34609. {
  34610. front: {
  34611. height: math.unit(6 + 9/12, "feet"),
  34612. weight: math.unit(280, "lb"),
  34613. name: "Front",
  34614. image: {
  34615. source: "./media/characters/candy/front.svg",
  34616. extra: 234/217,
  34617. bottom: 11/245
  34618. }
  34619. },
  34620. },
  34621. [
  34622. {
  34623. name: "Really Small",
  34624. height: math.unit(0.1, "nm")
  34625. },
  34626. {
  34627. name: "Micro",
  34628. height: math.unit(2, "inches")
  34629. },
  34630. {
  34631. name: "Normal",
  34632. height: math.unit(6 + 9/12, "feet"),
  34633. default: true
  34634. },
  34635. {
  34636. name: "Small Macro",
  34637. height: math.unit(69, "feet")
  34638. },
  34639. {
  34640. name: "Macro",
  34641. height: math.unit(160, "feet")
  34642. },
  34643. {
  34644. name: "Megamacro",
  34645. height: math.unit(22000, "miles")
  34646. },
  34647. {
  34648. name: "Gigamacro",
  34649. height: math.unit(50000, "miles")
  34650. },
  34651. ]
  34652. ))
  34653. characterMakers.push(() => makeCharacter(
  34654. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34655. {
  34656. front: {
  34657. height: math.unit(4, "feet"),
  34658. weight: math.unit(90, "lb"),
  34659. name: "Front",
  34660. image: {
  34661. source: "./media/characters/joey-mcdonald/front.svg",
  34662. extra: 1059/852,
  34663. bottom: 33/1092
  34664. }
  34665. },
  34666. back: {
  34667. height: math.unit(4, "feet"),
  34668. weight: math.unit(90, "lb"),
  34669. name: "Back",
  34670. image: {
  34671. source: "./media/characters/joey-mcdonald/back.svg",
  34672. extra: 1077/879,
  34673. bottom: 5/1082
  34674. }
  34675. },
  34676. frontKobold: {
  34677. height: math.unit(4, "feet"),
  34678. weight: math.unit(100, "lb"),
  34679. name: "Front-kobold",
  34680. image: {
  34681. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34682. extra: 1480/1367,
  34683. bottom: 0/1480
  34684. }
  34685. },
  34686. backKobold: {
  34687. height: math.unit(4, "feet"),
  34688. weight: math.unit(100, "lb"),
  34689. name: "Back-kobold",
  34690. image: {
  34691. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34692. extra: 1449/1361,
  34693. bottom: 0/1449
  34694. }
  34695. },
  34696. },
  34697. [
  34698. {
  34699. name: "Normal",
  34700. height: math.unit(4, "feet"),
  34701. default: true
  34702. },
  34703. ]
  34704. ))
  34705. characterMakers.push(() => makeCharacter(
  34706. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34707. {
  34708. front: {
  34709. height: math.unit(12 + 6/12, "feet"),
  34710. name: "Front",
  34711. image: {
  34712. source: "./media/characters/kass-lockheed/front.svg",
  34713. extra: 354/343,
  34714. bottom: 9/363
  34715. }
  34716. },
  34717. back: {
  34718. height: math.unit(12 + 6/12, "feet"),
  34719. name: "Back",
  34720. image: {
  34721. source: "./media/characters/kass-lockheed/back.svg",
  34722. extra: 364/352,
  34723. bottom: 3/367
  34724. }
  34725. },
  34726. dick: {
  34727. height: math.unit(3.12, "feet"),
  34728. name: "Dick",
  34729. image: {
  34730. source: "./media/characters/kass-lockheed/dick.svg"
  34731. }
  34732. },
  34733. head: {
  34734. height: math.unit(2.6, "feet"),
  34735. name: "Head",
  34736. image: {
  34737. source: "./media/characters/kass-lockheed/head.svg"
  34738. }
  34739. },
  34740. bleh: {
  34741. height: math.unit(2.85, "feet"),
  34742. name: "Bleh",
  34743. image: {
  34744. source: "./media/characters/kass-lockheed/bleh.svg"
  34745. }
  34746. },
  34747. smug: {
  34748. height: math.unit(2.85, "feet"),
  34749. name: "Smug",
  34750. image: {
  34751. source: "./media/characters/kass-lockheed/smug.svg"
  34752. }
  34753. },
  34754. },
  34755. [
  34756. {
  34757. name: "Normal",
  34758. height: math.unit(12 + 6/12, "feet"),
  34759. default: true
  34760. },
  34761. ]
  34762. ))
  34763. characterMakers.push(() => makeCharacter(
  34764. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34765. {
  34766. front: {
  34767. height: math.unit(6 + 2/12, "feet"),
  34768. name: "Front",
  34769. image: {
  34770. source: "./media/characters/taylor/front.svg",
  34771. extra: 639/495,
  34772. bottom: 12/651
  34773. }
  34774. },
  34775. },
  34776. [
  34777. {
  34778. name: "Normal",
  34779. height: math.unit(6 + 2/12, "feet"),
  34780. default: true
  34781. },
  34782. {
  34783. name: "Big",
  34784. height: math.unit(15, "feet")
  34785. },
  34786. {
  34787. name: "Lorg",
  34788. height: math.unit(80, "feet")
  34789. },
  34790. {
  34791. name: "Too Lorg",
  34792. height: math.unit(120, "feet")
  34793. },
  34794. ]
  34795. ))
  34796. characterMakers.push(() => makeCharacter(
  34797. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34798. {
  34799. front: {
  34800. height: math.unit(15, "feet"),
  34801. name: "Front",
  34802. image: {
  34803. source: "./media/characters/kaizer/front.svg",
  34804. extra: 1612/1436,
  34805. bottom: 43/1655
  34806. }
  34807. },
  34808. },
  34809. [
  34810. {
  34811. name: "Normal",
  34812. height: math.unit(15, "feet"),
  34813. default: true
  34814. },
  34815. ]
  34816. ))
  34817. characterMakers.push(() => makeCharacter(
  34818. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34819. {
  34820. front: {
  34821. height: math.unit(2, "feet"),
  34822. weight: math.unit(30, "lb"),
  34823. name: "Front",
  34824. image: {
  34825. source: "./media/characters/sandy/front.svg",
  34826. extra: 1439/1307,
  34827. bottom: 194/1633
  34828. }
  34829. },
  34830. },
  34831. [
  34832. {
  34833. name: "Normal",
  34834. height: math.unit(2, "feet"),
  34835. default: true
  34836. },
  34837. ]
  34838. ))
  34839. characterMakers.push(() => makeCharacter(
  34840. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34841. {
  34842. front: {
  34843. height: math.unit(3, "feet"),
  34844. name: "Front",
  34845. image: {
  34846. source: "./media/characters/mellvi/front.svg",
  34847. extra: 1831/1630,
  34848. bottom: 58/1889
  34849. }
  34850. },
  34851. },
  34852. [
  34853. {
  34854. name: "Normal",
  34855. height: math.unit(3, "feet"),
  34856. default: true
  34857. },
  34858. ]
  34859. ))
  34860. characterMakers.push(() => makeCharacter(
  34861. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34862. {
  34863. front: {
  34864. height: math.unit(5 + 11/12, "feet"),
  34865. weight: math.unit(200, "lb"),
  34866. name: "Front",
  34867. image: {
  34868. source: "./media/characters/shirou/front.svg",
  34869. extra: 2491/2383,
  34870. bottom: 189/2680
  34871. }
  34872. },
  34873. back: {
  34874. height: math.unit(5 + 11/12, "feet"),
  34875. weight: math.unit(200, "lb"),
  34876. name: "Back",
  34877. image: {
  34878. source: "./media/characters/shirou/back.svg",
  34879. extra: 2554/2450,
  34880. bottom: 76/2630
  34881. }
  34882. },
  34883. },
  34884. [
  34885. {
  34886. name: "Normal",
  34887. height: math.unit(5 + 11/12, "feet"),
  34888. default: true
  34889. },
  34890. ]
  34891. ))
  34892. characterMakers.push(() => makeCharacter(
  34893. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34894. {
  34895. front: {
  34896. height: math.unit(6 + 3/12, "feet"),
  34897. weight: math.unit(177, "lb"),
  34898. name: "Front",
  34899. image: {
  34900. source: "./media/characters/noryu/front.svg",
  34901. extra: 973/885,
  34902. bottom: 10/983
  34903. }
  34904. },
  34905. },
  34906. [
  34907. {
  34908. name: "Normal",
  34909. height: math.unit(6 + 3/12, "feet"),
  34910. default: true
  34911. },
  34912. ]
  34913. ))
  34914. characterMakers.push(() => makeCharacter(
  34915. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34916. {
  34917. front: {
  34918. height: math.unit(5 + 6/12, "feet"),
  34919. weight: math.unit(170, "lb"),
  34920. name: "Front",
  34921. image: {
  34922. source: "./media/characters/mevolas-rubenido/front.svg",
  34923. extra: 2109/1901,
  34924. bottom: 96/2205
  34925. }
  34926. },
  34927. },
  34928. [
  34929. {
  34930. name: "Normal",
  34931. height: math.unit(5 + 6/12, "feet"),
  34932. default: true
  34933. },
  34934. ]
  34935. ))
  34936. characterMakers.push(() => makeCharacter(
  34937. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34938. {
  34939. front: {
  34940. height: math.unit(100, "feet"),
  34941. name: "Front",
  34942. image: {
  34943. source: "./media/characters/dee/front.svg",
  34944. extra: 2153/2036,
  34945. bottom: 59/2212
  34946. }
  34947. },
  34948. back: {
  34949. height: math.unit(100, "feet"),
  34950. name: "Back",
  34951. image: {
  34952. source: "./media/characters/dee/back.svg",
  34953. extra: 2183/2058,
  34954. bottom: 75/2258
  34955. }
  34956. },
  34957. foot: {
  34958. height: math.unit(19.43, "feet"),
  34959. name: "Foot",
  34960. image: {
  34961. source: "./media/characters/dee/foot.svg"
  34962. }
  34963. },
  34964. hoof: {
  34965. height: math.unit(20.6, "feet"),
  34966. name: "Hoof",
  34967. image: {
  34968. source: "./media/characters/dee/hoof.svg"
  34969. }
  34970. },
  34971. },
  34972. [
  34973. {
  34974. name: "Macro",
  34975. height: math.unit(100, "feet"),
  34976. default: true
  34977. },
  34978. ]
  34979. ))
  34980. characterMakers.push(() => makeCharacter(
  34981. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34982. {
  34983. front: {
  34984. height: math.unit(5 + 6/12, "feet"),
  34985. name: "Front",
  34986. image: {
  34987. source: "./media/characters/teh/front.svg",
  34988. extra: 1002/847,
  34989. bottom: 62/1064
  34990. }
  34991. },
  34992. },
  34993. [
  34994. {
  34995. name: "Normal",
  34996. height: math.unit(5 + 6/12, "feet"),
  34997. default: true
  34998. },
  34999. ]
  35000. ))
  35001. characterMakers.push(() => makeCharacter(
  35002. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35003. {
  35004. side: {
  35005. height: math.unit(6 + 1/12, "feet"),
  35006. weight: math.unit(204, "lb"),
  35007. name: "Side",
  35008. image: {
  35009. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35010. extra: 974/775,
  35011. bottom: 169/1143
  35012. }
  35013. },
  35014. sitting: {
  35015. height: math.unit(6 + 2/12, "feet"),
  35016. weight: math.unit(204, "lb"),
  35017. name: "Sitting",
  35018. image: {
  35019. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35020. extra: 1175/964,
  35021. bottom: 378/1553
  35022. }
  35023. },
  35024. },
  35025. [
  35026. {
  35027. name: "Normal",
  35028. height: math.unit(6 + 1/12, "feet"),
  35029. default: true
  35030. },
  35031. ]
  35032. ))
  35033. characterMakers.push(() => makeCharacter(
  35034. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35035. {
  35036. front: {
  35037. height: math.unit(6, "inches"),
  35038. name: "Front",
  35039. image: {
  35040. source: "./media/characters/tululi/front.svg",
  35041. extra: 1997/1876,
  35042. bottom: 20/2017
  35043. }
  35044. },
  35045. },
  35046. [
  35047. {
  35048. name: "Normal",
  35049. height: math.unit(6, "inches"),
  35050. default: true
  35051. },
  35052. ]
  35053. ))
  35054. characterMakers.push(() => makeCharacter(
  35055. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35056. {
  35057. front: {
  35058. height: math.unit(4 + 1/12, "feet"),
  35059. name: "Front",
  35060. image: {
  35061. source: "./media/characters/star/front.svg",
  35062. extra: 1493/1189,
  35063. bottom: 48/1541
  35064. }
  35065. },
  35066. },
  35067. [
  35068. {
  35069. name: "Normal",
  35070. height: math.unit(4 + 1/12, "feet"),
  35071. default: true
  35072. },
  35073. ]
  35074. ))
  35075. characterMakers.push(() => makeCharacter(
  35076. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35077. {
  35078. front: {
  35079. height: math.unit(6 + 3/12, "feet"),
  35080. name: "Front",
  35081. image: {
  35082. source: "./media/characters/comet/front.svg",
  35083. extra: 1681/1462,
  35084. bottom: 26/1707
  35085. }
  35086. },
  35087. },
  35088. [
  35089. {
  35090. name: "Normal",
  35091. height: math.unit(6 + 3/12, "feet"),
  35092. default: true
  35093. },
  35094. ]
  35095. ))
  35096. characterMakers.push(() => makeCharacter(
  35097. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35098. {
  35099. front: {
  35100. height: math.unit(950, "feet"),
  35101. name: "Front",
  35102. image: {
  35103. source: "./media/characters/vortex/front.svg",
  35104. extra: 1497/1434,
  35105. bottom: 56/1553
  35106. }
  35107. },
  35108. maw: {
  35109. height: math.unit(285, "feet"),
  35110. name: "Maw",
  35111. image: {
  35112. source: "./media/characters/vortex/maw.svg"
  35113. }
  35114. },
  35115. },
  35116. [
  35117. {
  35118. name: "Macro",
  35119. height: math.unit(950, "feet"),
  35120. default: true
  35121. },
  35122. ]
  35123. ))
  35124. characterMakers.push(() => makeCharacter(
  35125. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35126. {
  35127. front: {
  35128. height: math.unit(600, "feet"),
  35129. weight: math.unit(0.02, "grams"),
  35130. name: "Front",
  35131. image: {
  35132. source: "./media/characters/doodle/front.svg",
  35133. extra: 1578/1413,
  35134. bottom: 37/1615
  35135. }
  35136. },
  35137. },
  35138. [
  35139. {
  35140. name: "Macro",
  35141. height: math.unit(600, "feet"),
  35142. default: true
  35143. },
  35144. ]
  35145. ))
  35146. characterMakers.push(() => makeCharacter(
  35147. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35148. {
  35149. front: {
  35150. height: math.unit(6 + 6/12, "feet"),
  35151. name: "Front",
  35152. image: {
  35153. source: "./media/characters/jai/front.svg",
  35154. extra: 1645/1534,
  35155. bottom: 115/1760
  35156. }
  35157. },
  35158. },
  35159. [
  35160. {
  35161. name: "Normal",
  35162. height: math.unit(6 + 6/12, "feet"),
  35163. default: true
  35164. },
  35165. ]
  35166. ))
  35167. characterMakers.push(() => makeCharacter(
  35168. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35169. {
  35170. front: {
  35171. height: math.unit(6 + 8/12, "feet"),
  35172. name: "Front",
  35173. image: {
  35174. source: "./media/characters/pixel/front.svg",
  35175. extra: 1900/1735,
  35176. bottom: 63/1963
  35177. }
  35178. },
  35179. },
  35180. [
  35181. {
  35182. name: "Normal",
  35183. height: math.unit(6 + 8/12, "feet"),
  35184. default: true
  35185. },
  35186. ]
  35187. ))
  35188. characterMakers.push(() => makeCharacter(
  35189. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35190. {
  35191. front: {
  35192. height: math.unit(4 + 11/12, "feet"),
  35193. weight: math.unit(111, "lb"),
  35194. name: "Front",
  35195. image: {
  35196. source: "./media/characters/rhett/front.svg",
  35197. extra: 1682/1586,
  35198. bottom: 92/1774
  35199. }
  35200. },
  35201. },
  35202. [
  35203. {
  35204. name: "Mini",
  35205. height: math.unit(1 + 1/12, "feet")
  35206. },
  35207. {
  35208. name: "Normal",
  35209. height: math.unit(4 + 11/12, "feet"),
  35210. default: true
  35211. },
  35212. ]
  35213. ))
  35214. characterMakers.push(() => makeCharacter(
  35215. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35216. {
  35217. front: {
  35218. height: math.unit(3 + 3/12, "feet"),
  35219. name: "Front",
  35220. image: {
  35221. source: "./media/characters/penny/front.svg",
  35222. extra: 1406/1311,
  35223. bottom: 26/1432
  35224. }
  35225. },
  35226. },
  35227. [
  35228. {
  35229. name: "Normal",
  35230. height: math.unit(3 + 3/12, "feet"),
  35231. default: true
  35232. },
  35233. ]
  35234. ))
  35235. characterMakers.push(() => makeCharacter(
  35236. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35237. {
  35238. front: {
  35239. height: math.unit(4 + 11/12, "feet"),
  35240. name: "Front",
  35241. image: {
  35242. source: "./media/characters/monty/front.svg",
  35243. extra: 1479/1209,
  35244. bottom: 0/1479
  35245. }
  35246. },
  35247. },
  35248. [
  35249. {
  35250. name: "Normal",
  35251. height: math.unit(4 + 11/12, "feet"),
  35252. default: true
  35253. },
  35254. ]
  35255. ))
  35256. characterMakers.push(() => makeCharacter(
  35257. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35258. {
  35259. front: {
  35260. height: math.unit(8 + 4/12, "feet"),
  35261. name: "Front",
  35262. image: {
  35263. source: "./media/characters/sterling/front.svg",
  35264. extra: 1420/1236,
  35265. bottom: 27/1447
  35266. }
  35267. },
  35268. },
  35269. [
  35270. {
  35271. name: "Normal",
  35272. height: math.unit(8 + 4/12, "feet"),
  35273. default: true
  35274. },
  35275. ]
  35276. ))
  35277. characterMakers.push(() => makeCharacter(
  35278. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35279. {
  35280. front: {
  35281. height: math.unit(15, "feet"),
  35282. name: "Front",
  35283. image: {
  35284. source: "./media/characters/marble/front.svg",
  35285. extra: 973/937,
  35286. bottom: 32/1005
  35287. }
  35288. },
  35289. },
  35290. [
  35291. {
  35292. name: "Normal",
  35293. height: math.unit(15, "feet"),
  35294. default: true
  35295. },
  35296. ]
  35297. ))
  35298. characterMakers.push(() => makeCharacter(
  35299. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35300. {
  35301. front: {
  35302. height: math.unit(3, "inches"),
  35303. name: "Front",
  35304. image: {
  35305. source: "./media/characters/powder/front.svg",
  35306. extra: 1504/1334,
  35307. bottom: 518/2022
  35308. }
  35309. },
  35310. },
  35311. [
  35312. {
  35313. name: "Normal",
  35314. height: math.unit(3, "inches"),
  35315. default: true
  35316. },
  35317. ]
  35318. ))
  35319. characterMakers.push(() => makeCharacter(
  35320. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35321. {
  35322. front: {
  35323. height: math.unit(4 + 5/12, "feet"),
  35324. name: "Front",
  35325. image: {
  35326. source: "./media/characters/joey-raccoon/front.svg",
  35327. extra: 1273/1197,
  35328. bottom: 0/1273
  35329. }
  35330. },
  35331. },
  35332. [
  35333. {
  35334. name: "Normal",
  35335. height: math.unit(4 + 5/12, "feet"),
  35336. default: true
  35337. },
  35338. ]
  35339. ))
  35340. characterMakers.push(() => makeCharacter(
  35341. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35342. {
  35343. front: {
  35344. height: math.unit(8 + 4/12, "feet"),
  35345. name: "Front",
  35346. image: {
  35347. source: "./media/characters/vick/front.svg",
  35348. extra: 2187/2118,
  35349. bottom: 47/2234
  35350. }
  35351. },
  35352. },
  35353. [
  35354. {
  35355. name: "Normal",
  35356. height: math.unit(8 + 4/12, "feet"),
  35357. default: true
  35358. },
  35359. ]
  35360. ))
  35361. characterMakers.push(() => makeCharacter(
  35362. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35363. {
  35364. front: {
  35365. height: math.unit(5 + 5/12, "feet"),
  35366. name: "Front",
  35367. image: {
  35368. source: "./media/characters/mitsy/front.svg",
  35369. extra: 1842/1695,
  35370. bottom: 0/1842
  35371. }
  35372. },
  35373. },
  35374. [
  35375. {
  35376. name: "Normal",
  35377. height: math.unit(5 + 5/12, "feet"),
  35378. default: true
  35379. },
  35380. ]
  35381. ))
  35382. characterMakers.push(() => makeCharacter(
  35383. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35384. {
  35385. front: {
  35386. height: math.unit(6 + 3/12, "feet"),
  35387. name: "Front",
  35388. image: {
  35389. source: "./media/characters/silvy/front.svg",
  35390. extra: 1995/1836,
  35391. bottom: 225/2220
  35392. }
  35393. },
  35394. },
  35395. [
  35396. {
  35397. name: "Normal",
  35398. height: math.unit(6 + 3/12, "feet"),
  35399. default: true
  35400. },
  35401. ]
  35402. ))
  35403. characterMakers.push(() => makeCharacter(
  35404. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35405. {
  35406. front: {
  35407. height: math.unit(3 + 8/12, "feet"),
  35408. name: "Front",
  35409. image: {
  35410. source: "./media/characters/rodney/front.svg",
  35411. extra: 1956/1747,
  35412. bottom: 31/1987
  35413. }
  35414. },
  35415. frontDressed: {
  35416. height: math.unit(2.9, "feet"),
  35417. name: "Front (Dressed)",
  35418. image: {
  35419. source: "./media/characters/rodney/front-dressed.svg",
  35420. extra: 1382/1241,
  35421. bottom: 385/1767
  35422. }
  35423. },
  35424. },
  35425. [
  35426. {
  35427. name: "Normal",
  35428. height: math.unit(3 + 8/12, "feet"),
  35429. default: true
  35430. },
  35431. ]
  35432. ))
  35433. characterMakers.push(() => makeCharacter(
  35434. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35435. {
  35436. front: {
  35437. height: math.unit(5 + 9/12, "feet"),
  35438. weight: math.unit(194, "lbs"),
  35439. name: "Front",
  35440. image: {
  35441. source: "./media/characters/zakail-sudekai/front.svg",
  35442. extra: 2696/2533,
  35443. bottom: 248/2944
  35444. }
  35445. },
  35446. maw: {
  35447. height: math.unit(1.35, "feet"),
  35448. name: "Maw",
  35449. image: {
  35450. source: "./media/characters/zakail-sudekai/maw.svg"
  35451. }
  35452. },
  35453. },
  35454. [
  35455. {
  35456. name: "Normal",
  35457. height: math.unit(5 + 9/12, "feet"),
  35458. default: true
  35459. },
  35460. ]
  35461. ))
  35462. characterMakers.push(() => makeCharacter(
  35463. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35464. {
  35465. front: {
  35466. height: math.unit(8 + 4/12, "feet"),
  35467. weight: math.unit(1200, "lb"),
  35468. name: "Front",
  35469. image: {
  35470. source: "./media/characters/eleanor/front.svg",
  35471. extra: 1226/1192,
  35472. bottom: 52/1278
  35473. }
  35474. },
  35475. back: {
  35476. height: math.unit(8 + 4/12, "feet"),
  35477. weight: math.unit(1200, "lb"),
  35478. name: "Back",
  35479. image: {
  35480. source: "./media/characters/eleanor/back.svg",
  35481. extra: 1242/1184,
  35482. bottom: 60/1302
  35483. }
  35484. },
  35485. head: {
  35486. height: math.unit(2.62, "feet"),
  35487. name: "Head",
  35488. image: {
  35489. source: "./media/characters/eleanor/head.svg"
  35490. }
  35491. },
  35492. },
  35493. [
  35494. {
  35495. name: "Normal",
  35496. height: math.unit(8 + 4/12, "feet"),
  35497. default: true
  35498. },
  35499. ]
  35500. ))
  35501. characterMakers.push(() => makeCharacter(
  35502. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35503. {
  35504. front: {
  35505. height: math.unit(8 + 4/12, "feet"),
  35506. weight: math.unit(750, "lb"),
  35507. name: "Front",
  35508. image: {
  35509. source: "./media/characters/tanya/front.svg",
  35510. extra: 1749/1615,
  35511. bottom: 33/1782
  35512. }
  35513. },
  35514. },
  35515. [
  35516. {
  35517. name: "Normal",
  35518. height: math.unit(8 + 4/12, "feet"),
  35519. default: true
  35520. },
  35521. ]
  35522. ))
  35523. characterMakers.push(() => makeCharacter(
  35524. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35525. {
  35526. front: {
  35527. height: math.unit(5, "feet"),
  35528. weight: math.unit(225, "lb"),
  35529. name: "Front",
  35530. image: {
  35531. source: "./media/characters/cindy/front.svg",
  35532. extra: 1320/1250,
  35533. bottom: 42/1362
  35534. }
  35535. },
  35536. frontDressed: {
  35537. height: math.unit(5, "feet"),
  35538. weight: math.unit(225, "lb"),
  35539. name: "Front (Dressed)",
  35540. image: {
  35541. source: "./media/characters/cindy/front-dressed.svg",
  35542. extra: 1320/1250,
  35543. bottom: 42/1362
  35544. }
  35545. },
  35546. back: {
  35547. height: math.unit(5, "feet"),
  35548. weight: math.unit(225, "lb"),
  35549. name: "Back",
  35550. image: {
  35551. source: "./media/characters/cindy/back.svg",
  35552. extra: 1384/1346,
  35553. bottom: 14/1398
  35554. }
  35555. },
  35556. },
  35557. [
  35558. {
  35559. name: "Normal",
  35560. height: math.unit(5, "feet"),
  35561. default: true
  35562. },
  35563. ]
  35564. ))
  35565. characterMakers.push(() => makeCharacter(
  35566. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35567. {
  35568. front: {
  35569. height: math.unit(6 + 9/12, "feet"),
  35570. weight: math.unit(440, "lb"),
  35571. name: "Front",
  35572. image: {
  35573. source: "./media/characters/wilbur-owen/front.svg",
  35574. extra: 1575/1448,
  35575. bottom: 72/1647
  35576. }
  35577. },
  35578. back: {
  35579. height: math.unit(6 + 9/12, "feet"),
  35580. weight: math.unit(440, "lb"),
  35581. name: "Back",
  35582. image: {
  35583. source: "./media/characters/wilbur-owen/back.svg",
  35584. extra: 1578/1445,
  35585. bottom: 36/1614
  35586. }
  35587. },
  35588. },
  35589. [
  35590. {
  35591. name: "Normal",
  35592. height: math.unit(6 + 9/12, "feet"),
  35593. default: true
  35594. },
  35595. ]
  35596. ))
  35597. characterMakers.push(() => makeCharacter(
  35598. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35599. {
  35600. front: {
  35601. height: math.unit(6 + 5/12, "feet"),
  35602. weight: math.unit(650, "lb"),
  35603. name: "Front",
  35604. image: {
  35605. source: "./media/characters/keegan/front.svg",
  35606. extra: 2387/2198,
  35607. bottom: 33/2420
  35608. }
  35609. },
  35610. side: {
  35611. height: math.unit(6 + 5/12, "feet"),
  35612. weight: math.unit(650, "lb"),
  35613. name: "Side",
  35614. image: {
  35615. source: "./media/characters/keegan/side.svg",
  35616. extra: 2390/2202,
  35617. bottom: 47/2437
  35618. }
  35619. },
  35620. back: {
  35621. height: math.unit(6 + 5/12, "feet"),
  35622. weight: math.unit(650, "lb"),
  35623. name: "Back",
  35624. image: {
  35625. source: "./media/characters/keegan/back.svg",
  35626. extra: 2418/2268,
  35627. bottom: 15/2433
  35628. }
  35629. },
  35630. frontSfw: {
  35631. height: math.unit(6 + 5/12, "feet"),
  35632. weight: math.unit(650, "lb"),
  35633. name: "Front (SFW)",
  35634. image: {
  35635. source: "./media/characters/keegan/front-sfw.svg",
  35636. extra: 2387/2198,
  35637. bottom: 33/2420
  35638. }
  35639. },
  35640. beans: {
  35641. height: math.unit(1.85, "feet"),
  35642. name: "Beans",
  35643. image: {
  35644. source: "./media/characters/keegan/beans.svg"
  35645. }
  35646. },
  35647. },
  35648. [
  35649. {
  35650. name: "Normal",
  35651. height: math.unit(6 + 5/12, "feet"),
  35652. default: true
  35653. },
  35654. ]
  35655. ))
  35656. characterMakers.push(() => makeCharacter(
  35657. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35658. {
  35659. front: {
  35660. height: math.unit(9, "feet"),
  35661. name: "Front",
  35662. image: {
  35663. source: "./media/characters/colton/front.svg",
  35664. extra: 1589/1326,
  35665. bottom: 139/1728
  35666. }
  35667. },
  35668. },
  35669. [
  35670. {
  35671. name: "Normal",
  35672. height: math.unit(9, "feet"),
  35673. default: true
  35674. },
  35675. ]
  35676. ))
  35677. characterMakers.push(() => makeCharacter(
  35678. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35679. {
  35680. front: {
  35681. height: math.unit(2 + 9/12, "feet"),
  35682. name: "Front",
  35683. image: {
  35684. source: "./media/characters/bora/front.svg",
  35685. extra: 1265/1250,
  35686. bottom: 24/1289
  35687. }
  35688. },
  35689. },
  35690. [
  35691. {
  35692. name: "Normal",
  35693. height: math.unit(2 + 9/12, "feet"),
  35694. default: true
  35695. },
  35696. ]
  35697. ))
  35698. characterMakers.push(() => makeCharacter(
  35699. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35700. {
  35701. front: {
  35702. height: math.unit(8, "feet"),
  35703. name: "Front",
  35704. image: {
  35705. source: "./media/characters/myu-myu/front.svg",
  35706. extra: 1949/1857,
  35707. bottom: 90/2039
  35708. }
  35709. },
  35710. },
  35711. [
  35712. {
  35713. name: "Normal",
  35714. height: math.unit(8, "feet"),
  35715. default: true
  35716. },
  35717. {
  35718. name: "Big",
  35719. height: math.unit(15, "feet")
  35720. },
  35721. {
  35722. name: "BIG",
  35723. height: math.unit(25, "feet")
  35724. },
  35725. ]
  35726. ))
  35727. characterMakers.push(() => makeCharacter(
  35728. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35729. {
  35730. side: {
  35731. height: math.unit(7 + 5/12, "feet"),
  35732. weight: math.unit(2800, "lb"),
  35733. name: "Side",
  35734. image: {
  35735. source: "./media/characters/haloren/side.svg",
  35736. extra: 1793/409,
  35737. bottom: 59/1852
  35738. }
  35739. },
  35740. frontPaw: {
  35741. height: math.unit(2.36, "feet"),
  35742. name: "Front paw",
  35743. image: {
  35744. source: "./media/characters/haloren/front-paw.svg"
  35745. }
  35746. },
  35747. hindPaw: {
  35748. height: math.unit(3.18, "feet"),
  35749. name: "Hind paw",
  35750. image: {
  35751. source: "./media/characters/haloren/hind-paw.svg"
  35752. }
  35753. },
  35754. maw: {
  35755. height: math.unit(5.05, "feet"),
  35756. name: "Maw",
  35757. image: {
  35758. source: "./media/characters/haloren/maw.svg"
  35759. }
  35760. },
  35761. dick: {
  35762. height: math.unit(2.90, "feet"),
  35763. name: "Dick",
  35764. image: {
  35765. source: "./media/characters/haloren/dick.svg"
  35766. }
  35767. },
  35768. },
  35769. [
  35770. {
  35771. name: "Normal",
  35772. height: math.unit(7 + 5/12, "feet"),
  35773. default: true
  35774. },
  35775. {
  35776. name: "Enhanced",
  35777. height: math.unit(14 + 3/12, "feet")
  35778. },
  35779. ]
  35780. ))
  35781. characterMakers.push(() => makeCharacter(
  35782. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35783. {
  35784. front: {
  35785. height: math.unit(171, "cm"),
  35786. name: "Front",
  35787. image: {
  35788. source: "./media/characters/kimmy/front.svg",
  35789. extra: 1491/1435,
  35790. bottom: 53/1544
  35791. }
  35792. },
  35793. },
  35794. [
  35795. {
  35796. name: "Small",
  35797. height: math.unit(9, "cm")
  35798. },
  35799. {
  35800. name: "Normal",
  35801. height: math.unit(171, "cm"),
  35802. default: true
  35803. },
  35804. ]
  35805. ))
  35806. characterMakers.push(() => makeCharacter(
  35807. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35808. {
  35809. front: {
  35810. height: math.unit(8, "feet"),
  35811. weight: math.unit(300, "lb"),
  35812. name: "Front",
  35813. image: {
  35814. source: "./media/characters/galeboomer/front.svg",
  35815. extra: 4651/4415,
  35816. bottom: 162/4813
  35817. }
  35818. },
  35819. back: {
  35820. height: math.unit(8, "feet"),
  35821. weight: math.unit(300, "lb"),
  35822. name: "Back",
  35823. image: {
  35824. source: "./media/characters/galeboomer/back.svg",
  35825. extra: 4544/4314,
  35826. bottom: 16/4560
  35827. }
  35828. },
  35829. frontAlt: {
  35830. height: math.unit(8, "feet"),
  35831. weight: math.unit(300, "lb"),
  35832. name: "Front (Alt)",
  35833. image: {
  35834. source: "./media/characters/galeboomer/front-alt.svg",
  35835. extra: 4458/4228,
  35836. bottom: 68/4526
  35837. }
  35838. },
  35839. maw: {
  35840. height: math.unit(1.2, "feet"),
  35841. name: "Maw",
  35842. image: {
  35843. source: "./media/characters/galeboomer/maw.svg"
  35844. }
  35845. },
  35846. },
  35847. [
  35848. {
  35849. name: "Normal",
  35850. height: math.unit(8, "feet"),
  35851. default: true
  35852. },
  35853. ]
  35854. ))
  35855. characterMakers.push(() => makeCharacter(
  35856. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35857. {
  35858. front: {
  35859. height: math.unit(5 + 9/12, "feet"),
  35860. weight: math.unit(120, "lb"),
  35861. name: "Front",
  35862. image: {
  35863. source: "./media/characters/chyr/front.svg",
  35864. extra: 1323/1254,
  35865. bottom: 63/1386
  35866. }
  35867. },
  35868. back: {
  35869. height: math.unit(5 + 9/12, "feet"),
  35870. weight: math.unit(120, "lb"),
  35871. name: "Back",
  35872. image: {
  35873. source: "./media/characters/chyr/back.svg",
  35874. extra: 1323/1252,
  35875. bottom: 48/1371
  35876. }
  35877. },
  35878. },
  35879. [
  35880. {
  35881. name: "Normal",
  35882. height: math.unit(5 + 9/12, "feet"),
  35883. default: true
  35884. },
  35885. ]
  35886. ))
  35887. characterMakers.push(() => makeCharacter(
  35888. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35889. {
  35890. front: {
  35891. height: math.unit(7, "feet"),
  35892. weight: math.unit(310, "lb"),
  35893. name: "Front",
  35894. image: {
  35895. source: "./media/characters/solarus/front.svg",
  35896. extra: 2415/2021,
  35897. bottom: 103/2518
  35898. }
  35899. },
  35900. back: {
  35901. height: math.unit(7, "feet"),
  35902. weight: math.unit(310, "lb"),
  35903. name: "Back",
  35904. image: {
  35905. source: "./media/characters/solarus/back.svg",
  35906. extra: 2463/2089,
  35907. bottom: 79/2542
  35908. }
  35909. },
  35910. },
  35911. [
  35912. {
  35913. name: "Normal",
  35914. height: math.unit(7, "feet"),
  35915. default: true
  35916. },
  35917. ]
  35918. ))
  35919. characterMakers.push(() => makeCharacter(
  35920. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35921. {
  35922. front: {
  35923. height: math.unit(16, "feet"),
  35924. name: "Front",
  35925. image: {
  35926. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35927. extra: 1844/1780,
  35928. bottom: 58/1902
  35929. }
  35930. },
  35931. winterCoat: {
  35932. height: math.unit(16, "feet"),
  35933. name: "Winter Coat",
  35934. image: {
  35935. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35936. extra: 1807/1775,
  35937. bottom: 69/1876
  35938. }
  35939. },
  35940. },
  35941. [
  35942. {
  35943. name: "Normal",
  35944. height: math.unit(16, "feet"),
  35945. default: true
  35946. },
  35947. {
  35948. name: "Chicago Size",
  35949. height: math.unit(560, "feet")
  35950. },
  35951. ]
  35952. ))
  35953. characterMakers.push(() => makeCharacter(
  35954. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35955. {
  35956. front: {
  35957. height: math.unit(11 + 6/12, "feet"),
  35958. weight: math.unit(1366, "lb"),
  35959. name: "Front",
  35960. image: {
  35961. source: "./media/characters/lexor/front.svg",
  35962. extra: 1560/1481,
  35963. bottom: 211/1771
  35964. }
  35965. },
  35966. back: {
  35967. height: math.unit(11 + 6/12, "feet"),
  35968. weight: math.unit(1366, "lb"),
  35969. name: "Back",
  35970. image: {
  35971. source: "./media/characters/lexor/back.svg",
  35972. extra: 1614/1533,
  35973. bottom: 76/1690
  35974. }
  35975. },
  35976. maw: {
  35977. height: math.unit(3, "feet"),
  35978. name: "Maw",
  35979. image: {
  35980. source: "./media/characters/lexor/maw.svg"
  35981. }
  35982. },
  35983. dick: {
  35984. height: math.unit(2.59, "feet"),
  35985. name: "Dick",
  35986. image: {
  35987. source: "./media/characters/lexor/dick.svg"
  35988. }
  35989. },
  35990. },
  35991. [
  35992. {
  35993. name: "Normal",
  35994. height: math.unit(11 + 6/12, "feet"),
  35995. default: true
  35996. },
  35997. ]
  35998. ))
  35999. characterMakers.push(() => makeCharacter(
  36000. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36001. {
  36002. front: {
  36003. height: math.unit(5 + 8/12, "feet"),
  36004. name: "Front",
  36005. image: {
  36006. source: "./media/characters/magnum/front.svg",
  36007. extra: 942/855,
  36008. bottom: 26/968
  36009. }
  36010. },
  36011. },
  36012. [
  36013. {
  36014. name: "Normal",
  36015. height: math.unit(5 + 8/12, "feet"),
  36016. default: true
  36017. },
  36018. ]
  36019. ))
  36020. characterMakers.push(() => makeCharacter(
  36021. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36022. {
  36023. front: {
  36024. height: math.unit(18 + 4/12, "feet"),
  36025. weight: math.unit(1500, "kg"),
  36026. name: "Front",
  36027. image: {
  36028. source: "./media/characters/solas-sharpsman/front.svg",
  36029. extra: 1698/1589,
  36030. bottom: 0/1698
  36031. }
  36032. },
  36033. },
  36034. [
  36035. {
  36036. name: "Normal",
  36037. height: math.unit(18 + 4/12, "feet"),
  36038. default: true
  36039. },
  36040. ]
  36041. ))
  36042. characterMakers.push(() => makeCharacter(
  36043. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36044. {
  36045. front: {
  36046. height: math.unit(5 + 5/12, "feet"),
  36047. weight: math.unit(180, "lb"),
  36048. name: "Front",
  36049. image: {
  36050. source: "./media/characters/october/front.svg",
  36051. extra: 1800/1650,
  36052. bottom: 0/1800
  36053. }
  36054. },
  36055. frontNsfw: {
  36056. height: math.unit(5 + 5/12, "feet"),
  36057. weight: math.unit(180, "lb"),
  36058. name: "Front (NSFW)",
  36059. image: {
  36060. source: "./media/characters/october/front-nsfw.svg",
  36061. extra: 1392/1307,
  36062. bottom: 42/1434
  36063. }
  36064. },
  36065. },
  36066. [
  36067. {
  36068. name: "Normal",
  36069. height: math.unit(5 + 5/12, "feet"),
  36070. default: true
  36071. },
  36072. ]
  36073. ))
  36074. characterMakers.push(() => makeCharacter(
  36075. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36076. {
  36077. front: {
  36078. height: math.unit(8 + 6/12, "feet"),
  36079. name: "Front",
  36080. image: {
  36081. source: "./media/characters/essynkardi/front.svg",
  36082. extra: 1914/1846,
  36083. bottom: 22/1936
  36084. }
  36085. },
  36086. },
  36087. [
  36088. {
  36089. name: "Normal",
  36090. height: math.unit(8 + 6/12, "feet"),
  36091. default: true
  36092. },
  36093. ]
  36094. ))
  36095. characterMakers.push(() => makeCharacter(
  36096. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36097. {
  36098. front: {
  36099. height: math.unit(6 + 6/12, "feet"),
  36100. weight: math.unit(7, "lb"),
  36101. name: "Front",
  36102. image: {
  36103. source: "./media/characters/icky/front.svg",
  36104. extra: 813/782,
  36105. bottom: 66/879
  36106. }
  36107. },
  36108. back: {
  36109. height: math.unit(6 + 6/12, "feet"),
  36110. weight: math.unit(7, "lb"),
  36111. name: "Back",
  36112. image: {
  36113. source: "./media/characters/icky/back.svg",
  36114. extra: 754/735,
  36115. bottom: 56/810
  36116. }
  36117. },
  36118. },
  36119. [
  36120. {
  36121. name: "Normal",
  36122. height: math.unit(6 + 6/12, "feet"),
  36123. default: true
  36124. },
  36125. ]
  36126. ))
  36127. characterMakers.push(() => makeCharacter(
  36128. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36129. {
  36130. front: {
  36131. height: math.unit(15, "feet"),
  36132. name: "Front",
  36133. image: {
  36134. source: "./media/characters/rojas/front.svg",
  36135. extra: 1462/1408,
  36136. bottom: 95/1557
  36137. }
  36138. },
  36139. back: {
  36140. height: math.unit(15, "feet"),
  36141. name: "Back",
  36142. image: {
  36143. source: "./media/characters/rojas/back.svg",
  36144. extra: 1023/954,
  36145. bottom: 28/1051
  36146. }
  36147. },
  36148. },
  36149. [
  36150. {
  36151. name: "Normal",
  36152. height: math.unit(15, "feet"),
  36153. default: true
  36154. },
  36155. ]
  36156. ))
  36157. characterMakers.push(() => makeCharacter(
  36158. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36159. {
  36160. frontHuman: {
  36161. height: math.unit(5 + 7/12, "feet"),
  36162. name: "Front (Human)",
  36163. image: {
  36164. source: "./media/characters/alek-dryagan/front-human.svg",
  36165. extra: 1687/1667,
  36166. bottom: 69/1756
  36167. }
  36168. },
  36169. backHuman: {
  36170. height: math.unit(5 + 7/12, "feet"),
  36171. name: "Back (Human)",
  36172. image: {
  36173. source: "./media/characters/alek-dryagan/back-human.svg",
  36174. extra: 1670/1649,
  36175. bottom: 65/1735
  36176. }
  36177. },
  36178. frontDemi: {
  36179. height: math.unit(65, "feet"),
  36180. name: "Front (Demi)",
  36181. image: {
  36182. source: "./media/characters/alek-dryagan/front-demi.svg",
  36183. extra: 1669/1642,
  36184. bottom: 49/1718
  36185. }
  36186. },
  36187. backDemi: {
  36188. height: math.unit(65, "feet"),
  36189. name: "Back (Demi)",
  36190. image: {
  36191. source: "./media/characters/alek-dryagan/back-demi.svg",
  36192. extra: 1658/1637,
  36193. bottom: 40/1698
  36194. }
  36195. },
  36196. mawHuman: {
  36197. height: math.unit(0.3, "feet"),
  36198. name: "Maw (Human)",
  36199. image: {
  36200. source: "./media/characters/alek-dryagan/maw-human.svg"
  36201. }
  36202. },
  36203. mawDemi: {
  36204. height: math.unit(3.8, "feet"),
  36205. name: "Maw (Demi)",
  36206. image: {
  36207. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36208. }
  36209. },
  36210. },
  36211. [
  36212. {
  36213. name: "Normal",
  36214. height: math.unit(5 + 7/12, "feet"),
  36215. default: true
  36216. },
  36217. ]
  36218. ))
  36219. characterMakers.push(() => makeCharacter(
  36220. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36221. {
  36222. frontHuman: {
  36223. height: math.unit(5 + 2/12, "feet"),
  36224. name: "Front (Human)",
  36225. image: {
  36226. source: "./media/characters/gen/front-human.svg",
  36227. extra: 1627/1538,
  36228. bottom: 71/1698
  36229. }
  36230. },
  36231. backHuman: {
  36232. height: math.unit(5 + 2/12, "feet"),
  36233. name: "Back (Human)",
  36234. image: {
  36235. source: "./media/characters/gen/back-human.svg",
  36236. extra: 1638/1548,
  36237. bottom: 69/1707
  36238. }
  36239. },
  36240. frontDemi: {
  36241. height: math.unit(5 + 2/12, "feet"),
  36242. name: "Front (Demi)",
  36243. image: {
  36244. source: "./media/characters/gen/front-demi.svg",
  36245. extra: 1627/1538,
  36246. bottom: 71/1698
  36247. }
  36248. },
  36249. backDemi: {
  36250. height: math.unit(5 + 2/12, "feet"),
  36251. name: "Back (Demi)",
  36252. image: {
  36253. source: "./media/characters/gen/back-demi.svg",
  36254. extra: 1638/1548,
  36255. bottom: 69/1707
  36256. }
  36257. },
  36258. },
  36259. [
  36260. {
  36261. name: "Normal",
  36262. height: math.unit(5 + 2/12, "feet"),
  36263. default: true
  36264. },
  36265. ]
  36266. ))
  36267. characterMakers.push(() => makeCharacter(
  36268. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36269. {
  36270. frontImp: {
  36271. height: math.unit(1 + 11/12, "feet"),
  36272. name: "Front (Imp)",
  36273. image: {
  36274. source: "./media/characters/max-kobold/front-imp.svg",
  36275. extra: 1238/1134,
  36276. bottom: 81/1319
  36277. }
  36278. },
  36279. backImp: {
  36280. height: math.unit(1 + 11/12, "feet"),
  36281. name: "Back (Imp)",
  36282. image: {
  36283. source: "./media/characters/max-kobold/back-imp.svg",
  36284. extra: 1334/1175,
  36285. bottom: 34/1368
  36286. }
  36287. },
  36288. frontDemi: {
  36289. height: math.unit(5 + 9/12, "feet"),
  36290. name: "Front (Demi)",
  36291. image: {
  36292. source: "./media/characters/max-kobold/front-demi.svg",
  36293. extra: 1715/1685,
  36294. bottom: 54/1769
  36295. }
  36296. },
  36297. backDemi: {
  36298. height: math.unit(5 + 9/12, "feet"),
  36299. name: "Back (Demi)",
  36300. image: {
  36301. source: "./media/characters/max-kobold/back-demi.svg",
  36302. extra: 1752/1729,
  36303. bottom: 41/1793
  36304. }
  36305. },
  36306. handImp: {
  36307. height: math.unit(0.45, "feet"),
  36308. name: "Hand (Imp)",
  36309. image: {
  36310. source: "./media/characters/max-kobold/hand.svg"
  36311. }
  36312. },
  36313. pawImp: {
  36314. height: math.unit(0.46, "feet"),
  36315. name: "Paw (Imp)",
  36316. image: {
  36317. source: "./media/characters/max-kobold/paw.svg"
  36318. }
  36319. },
  36320. handDemi: {
  36321. height: math.unit(0.80, "feet"),
  36322. name: "Hand (Demi)",
  36323. image: {
  36324. source: "./media/characters/max-kobold/hand.svg"
  36325. }
  36326. },
  36327. pawDemi: {
  36328. height: math.unit(1.1, "feet"),
  36329. name: "Paw (Demi)",
  36330. image: {
  36331. source: "./media/characters/max-kobold/paw.svg"
  36332. }
  36333. },
  36334. headImp: {
  36335. height: math.unit(1.33, "feet"),
  36336. name: "Head (Imp)",
  36337. image: {
  36338. source: "./media/characters/max-kobold/head-imp.svg"
  36339. }
  36340. },
  36341. mawImp: {
  36342. height: math.unit(0.75, "feet"),
  36343. name: "Maw (Imp)",
  36344. image: {
  36345. source: "./media/characters/max-kobold/maw-imp.svg"
  36346. }
  36347. },
  36348. mawDemi: {
  36349. height: math.unit(0.42, "feet"),
  36350. name: "Maw (Demi)",
  36351. image: {
  36352. source: "./media/characters/max-kobold/maw-demi.svg"
  36353. }
  36354. },
  36355. },
  36356. [
  36357. {
  36358. name: "Normal",
  36359. height: math.unit(1 + 11/12, "feet"),
  36360. default: true
  36361. },
  36362. ]
  36363. ))
  36364. characterMakers.push(() => makeCharacter(
  36365. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36366. {
  36367. front: {
  36368. height: math.unit(7 + 5/12, "feet"),
  36369. name: "Front",
  36370. image: {
  36371. source: "./media/characters/carbon/front.svg",
  36372. extra: 1754/1689,
  36373. bottom: 65/1819
  36374. }
  36375. },
  36376. back: {
  36377. height: math.unit(7 + 5/12, "feet"),
  36378. name: "Back",
  36379. image: {
  36380. source: "./media/characters/carbon/back.svg",
  36381. extra: 1762/1695,
  36382. bottom: 24/1786
  36383. }
  36384. },
  36385. frontGigantamax: {
  36386. height: math.unit(150, "feet"),
  36387. name: "Front (Gigantamax)",
  36388. image: {
  36389. source: "./media/characters/carbon/front-gigantamax.svg",
  36390. extra: 1826/1669,
  36391. bottom: 59/1885
  36392. }
  36393. },
  36394. backGigantamax: {
  36395. height: math.unit(150, "feet"),
  36396. name: "Back (Gigantamax)",
  36397. image: {
  36398. source: "./media/characters/carbon/back-gigantamax.svg",
  36399. extra: 1796/1653,
  36400. bottom: 53/1849
  36401. }
  36402. },
  36403. maw: {
  36404. height: math.unit(0.48, "feet"),
  36405. name: "Maw",
  36406. image: {
  36407. source: "./media/characters/carbon/maw.svg"
  36408. }
  36409. },
  36410. mawGigantamax: {
  36411. height: math.unit(7.5, "feet"),
  36412. name: "Maw (Gigantamax)",
  36413. image: {
  36414. source: "./media/characters/carbon/maw-gigantamax.svg"
  36415. }
  36416. },
  36417. },
  36418. [
  36419. {
  36420. name: "Normal",
  36421. height: math.unit(7 + 5/12, "feet"),
  36422. default: true
  36423. },
  36424. ]
  36425. ))
  36426. characterMakers.push(() => makeCharacter(
  36427. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36428. {
  36429. front: {
  36430. height: math.unit(6, "feet"),
  36431. name: "Front",
  36432. image: {
  36433. source: "./media/characters/maverick/front.svg",
  36434. extra: 1672/1661,
  36435. bottom: 85/1757
  36436. }
  36437. },
  36438. back: {
  36439. height: math.unit(6, "feet"),
  36440. name: "Back",
  36441. image: {
  36442. source: "./media/characters/maverick/back.svg",
  36443. extra: 1642/1631,
  36444. bottom: 38/1680
  36445. }
  36446. },
  36447. },
  36448. [
  36449. {
  36450. name: "Normal",
  36451. height: math.unit(6, "feet"),
  36452. default: true
  36453. },
  36454. ]
  36455. ))
  36456. characterMakers.push(() => makeCharacter(
  36457. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36458. {
  36459. front: {
  36460. height: math.unit(15, "feet"),
  36461. weight: math.unit(615, "lb"),
  36462. name: "Front",
  36463. image: {
  36464. source: "./media/characters/grockle/front.svg",
  36465. extra: 1535/1427,
  36466. bottom: 56/1591
  36467. }
  36468. },
  36469. },
  36470. [
  36471. {
  36472. name: "Normal",
  36473. height: math.unit(15, "feet"),
  36474. default: true
  36475. },
  36476. {
  36477. name: "Large",
  36478. height: math.unit(150, "feet")
  36479. },
  36480. {
  36481. name: "Macro",
  36482. height: math.unit(1876, "feet")
  36483. },
  36484. {
  36485. name: "Mega Macro",
  36486. height: math.unit(121940, "feet")
  36487. },
  36488. {
  36489. name: "Giga Macro",
  36490. height: math.unit(750, "km")
  36491. },
  36492. {
  36493. name: "Tera Macro",
  36494. height: math.unit(750000, "km")
  36495. },
  36496. {
  36497. name: "Galactic",
  36498. height: math.unit(1.4e5, "km")
  36499. },
  36500. {
  36501. name: "Godlike",
  36502. height: math.unit(9.8e280, "galaxies")
  36503. },
  36504. ]
  36505. ))
  36506. characterMakers.push(() => makeCharacter(
  36507. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36508. {
  36509. front: {
  36510. height: math.unit(11, "meters"),
  36511. weight: math.unit(20, "tonnes"),
  36512. name: "Front",
  36513. image: {
  36514. source: "./media/characters/alistair/front.svg",
  36515. extra: 1265/1009,
  36516. bottom: 93/1358
  36517. }
  36518. },
  36519. },
  36520. [
  36521. {
  36522. name: "Normal",
  36523. height: math.unit(11, "meters"),
  36524. default: true
  36525. },
  36526. ]
  36527. ))
  36528. characterMakers.push(() => makeCharacter(
  36529. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36530. {
  36531. front: {
  36532. height: math.unit(5 + 8/12, "feet"),
  36533. name: "Front",
  36534. image: {
  36535. source: "./media/characters/haruka/front.svg",
  36536. extra: 2012/1952,
  36537. bottom: 0/2012
  36538. }
  36539. },
  36540. },
  36541. [
  36542. {
  36543. name: "Normal",
  36544. height: math.unit(5 + 8/12, "feet"),
  36545. default: true
  36546. },
  36547. ]
  36548. ))
  36549. characterMakers.push(() => makeCharacter(
  36550. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36551. {
  36552. back: {
  36553. height: math.unit(9, "feet"),
  36554. name: "Back",
  36555. image: {
  36556. source: "./media/characters/vivian-sylveon/back.svg",
  36557. extra: 1853/1714,
  36558. bottom: 0/1853
  36559. }
  36560. },
  36561. },
  36562. [
  36563. {
  36564. name: "Normal",
  36565. height: math.unit(9, "feet"),
  36566. default: true
  36567. },
  36568. {
  36569. name: "Macro",
  36570. height: math.unit(500, "feet")
  36571. },
  36572. {
  36573. name: "Megamacro",
  36574. height: math.unit(600, "miles")
  36575. },
  36576. {
  36577. name: "Gigamacro",
  36578. height: math.unit(30000, "miles")
  36579. },
  36580. ]
  36581. ))
  36582. characterMakers.push(() => makeCharacter(
  36583. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36584. {
  36585. anthro: {
  36586. height: math.unit(5 + 10/12, "feet"),
  36587. weight: math.unit(100, "lb"),
  36588. name: "Anthro",
  36589. image: {
  36590. source: "./media/characters/daiki/anthro.svg",
  36591. extra: 1115/1027,
  36592. bottom: 69/1184
  36593. }
  36594. },
  36595. feral: {
  36596. height: math.unit(200, "feet"),
  36597. name: "Feral",
  36598. image: {
  36599. source: "./media/characters/daiki/feral.svg",
  36600. extra: 1256/313,
  36601. bottom: 39/1295
  36602. }
  36603. },
  36604. feralHead: {
  36605. height: math.unit(171, "feet"),
  36606. name: "Feral Head",
  36607. image: {
  36608. source: "./media/characters/daiki/feral-head.svg"
  36609. }
  36610. },
  36611. manaDragon: {
  36612. height: math.unit(170, "meters"),
  36613. name: "Mana-dragon",
  36614. image: {
  36615. source: "./media/characters/daiki/mana-dragon.svg",
  36616. extra: 763/420,
  36617. bottom: 97/860
  36618. }
  36619. },
  36620. },
  36621. [
  36622. {
  36623. name: "Normal",
  36624. height: math.unit(5 + 10/12, "feet"),
  36625. default: true
  36626. },
  36627. ]
  36628. ))
  36629. characterMakers.push(() => makeCharacter(
  36630. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36631. {
  36632. fullyEquippedFront: {
  36633. height: math.unit(3 + 1/12, "feet"),
  36634. weight: math.unit(24, "lb"),
  36635. name: "Fully Equipped (Front)",
  36636. image: {
  36637. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36638. extra: 687/605,
  36639. bottom: 18/705
  36640. }
  36641. },
  36642. fullyEquippedBack: {
  36643. height: math.unit(3 + 1/12, "feet"),
  36644. weight: math.unit(24, "lb"),
  36645. name: "Fully Equipped (Back)",
  36646. image: {
  36647. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36648. extra: 689/590,
  36649. bottom: 18/707
  36650. }
  36651. },
  36652. dailyWear: {
  36653. height: math.unit(3 + 1/12, "feet"),
  36654. weight: math.unit(24, "lb"),
  36655. name: "Daily Wear",
  36656. image: {
  36657. source: "./media/characters/tea-spot/daily-wear.svg",
  36658. extra: 701/620,
  36659. bottom: 21/722
  36660. }
  36661. },
  36662. maidWork: {
  36663. height: math.unit(3 + 1/12, "feet"),
  36664. weight: math.unit(24, "lb"),
  36665. name: "Maid Work",
  36666. image: {
  36667. source: "./media/characters/tea-spot/maid-work.svg",
  36668. extra: 693/609,
  36669. bottom: 15/708
  36670. }
  36671. },
  36672. },
  36673. [
  36674. {
  36675. name: "Normal",
  36676. height: math.unit(3 + 1/12, "feet"),
  36677. default: true
  36678. },
  36679. ]
  36680. ))
  36681. characterMakers.push(() => makeCharacter(
  36682. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36683. {
  36684. front: {
  36685. height: math.unit(175, "cm"),
  36686. weight: math.unit(75, "kg"),
  36687. name: "Front",
  36688. image: {
  36689. source: "./media/characters/chee/front.svg",
  36690. extra: 1796/1740,
  36691. bottom: 40/1836
  36692. }
  36693. },
  36694. },
  36695. [
  36696. {
  36697. name: "Micro-Micro",
  36698. height: math.unit(1, "nm")
  36699. },
  36700. {
  36701. name: "Micro-erst",
  36702. height: math.unit(1, "micrometer")
  36703. },
  36704. {
  36705. name: "Micro-er",
  36706. height: math.unit(1, "cm")
  36707. },
  36708. {
  36709. name: "Normal",
  36710. height: math.unit(175, "cm"),
  36711. default: true
  36712. },
  36713. {
  36714. name: "Macro",
  36715. height: math.unit(100, "m")
  36716. },
  36717. {
  36718. name: "Macro-er",
  36719. height: math.unit(1, "km")
  36720. },
  36721. {
  36722. name: "Macro-erst",
  36723. height: math.unit(10, "km")
  36724. },
  36725. {
  36726. name: "Macro-Macro",
  36727. height: math.unit(100, "km")
  36728. },
  36729. ]
  36730. ))
  36731. characterMakers.push(() => makeCharacter(
  36732. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36733. {
  36734. front: {
  36735. height: math.unit(11 + 9/12, "feet"),
  36736. weight: math.unit(935, "lb"),
  36737. name: "Front",
  36738. image: {
  36739. source: "./media/characters/kingsley/front.svg",
  36740. extra: 1803/1674,
  36741. bottom: 127/1930
  36742. }
  36743. },
  36744. frontNude: {
  36745. height: math.unit(11 + 9/12, "feet"),
  36746. weight: math.unit(935, "lb"),
  36747. name: "Front (Nude)",
  36748. image: {
  36749. source: "./media/characters/kingsley/front-nude.svg",
  36750. extra: 1803/1674,
  36751. bottom: 127/1930
  36752. }
  36753. },
  36754. },
  36755. [
  36756. {
  36757. name: "Normal",
  36758. height: math.unit(11 + 9/12, "feet"),
  36759. default: true
  36760. },
  36761. ]
  36762. ))
  36763. characterMakers.push(() => makeCharacter(
  36764. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36765. {
  36766. side: {
  36767. height: math.unit(9, "feet"),
  36768. name: "Side",
  36769. image: {
  36770. source: "./media/characters/rymel/side.svg",
  36771. extra: 792/469,
  36772. bottom: 121/913
  36773. }
  36774. },
  36775. maw: {
  36776. height: math.unit(2.4, "meters"),
  36777. name: "Maw",
  36778. image: {
  36779. source: "./media/characters/rymel/maw.svg"
  36780. }
  36781. },
  36782. },
  36783. [
  36784. {
  36785. name: "House Drake",
  36786. height: math.unit(2, "feet")
  36787. },
  36788. {
  36789. name: "Reduced",
  36790. height: math.unit(4.5, "feet")
  36791. },
  36792. {
  36793. name: "Normal",
  36794. height: math.unit(9, "feet"),
  36795. default: true
  36796. },
  36797. ]
  36798. ))
  36799. characterMakers.push(() => makeCharacter(
  36800. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36801. {
  36802. front: {
  36803. height: math.unit(1.74, "meters"),
  36804. weight: math.unit(55, "kg"),
  36805. name: "Front",
  36806. image: {
  36807. source: "./media/characters/rubus/front.svg",
  36808. extra: 1894/1742,
  36809. bottom: 44/1938
  36810. }
  36811. },
  36812. },
  36813. [
  36814. {
  36815. name: "Normal",
  36816. height: math.unit(1.74, "meters"),
  36817. default: true
  36818. },
  36819. ]
  36820. ))
  36821. characterMakers.push(() => makeCharacter(
  36822. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36823. {
  36824. front: {
  36825. height: math.unit(5 + 2/12, "feet"),
  36826. weight: math.unit(112, "lb"),
  36827. name: "Front",
  36828. image: {
  36829. source: "./media/characters/cassie-kingston/front.svg",
  36830. extra: 1438/1390,
  36831. bottom: 47/1485
  36832. }
  36833. },
  36834. },
  36835. [
  36836. {
  36837. name: "Normal",
  36838. height: math.unit(5 + 2/12, "feet"),
  36839. default: true
  36840. },
  36841. {
  36842. name: "Macro",
  36843. height: math.unit(128, "feet")
  36844. },
  36845. {
  36846. name: "Megamacro",
  36847. height: math.unit(2.56, "miles")
  36848. },
  36849. ]
  36850. ))
  36851. characterMakers.push(() => makeCharacter(
  36852. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36853. {
  36854. front: {
  36855. height: math.unit(7, "feet"),
  36856. name: "Front",
  36857. image: {
  36858. source: "./media/characters/fox/front.svg",
  36859. extra: 1798/1703,
  36860. bottom: 55/1853
  36861. }
  36862. },
  36863. back: {
  36864. height: math.unit(7, "feet"),
  36865. name: "Back",
  36866. image: {
  36867. source: "./media/characters/fox/back.svg",
  36868. extra: 1748/1649,
  36869. bottom: 32/1780
  36870. }
  36871. },
  36872. head: {
  36873. height: math.unit(1.95, "feet"),
  36874. name: "Head",
  36875. image: {
  36876. source: "./media/characters/fox/head.svg"
  36877. }
  36878. },
  36879. dick: {
  36880. height: math.unit(1.33, "feet"),
  36881. name: "Dick",
  36882. image: {
  36883. source: "./media/characters/fox/dick.svg"
  36884. }
  36885. },
  36886. foot: {
  36887. height: math.unit(1, "feet"),
  36888. name: "Foot",
  36889. image: {
  36890. source: "./media/characters/fox/foot.svg"
  36891. }
  36892. },
  36893. paw: {
  36894. height: math.unit(0.92, "feet"),
  36895. name: "Paw",
  36896. image: {
  36897. source: "./media/characters/fox/paw.svg"
  36898. }
  36899. },
  36900. },
  36901. [
  36902. {
  36903. name: "Small",
  36904. height: math.unit(3, "inches")
  36905. },
  36906. {
  36907. name: "\"Realistic\"",
  36908. height: math.unit(7, "feet")
  36909. },
  36910. {
  36911. name: "Normal",
  36912. height: math.unit(150, "feet"),
  36913. default: true
  36914. },
  36915. {
  36916. name: "BIG",
  36917. height: math.unit(1200, "feet")
  36918. },
  36919. {
  36920. name: "👀",
  36921. height: math.unit(5, "miles")
  36922. },
  36923. {
  36924. name: "👀👀👀",
  36925. height: math.unit(64, "miles")
  36926. },
  36927. ]
  36928. ))
  36929. characterMakers.push(() => makeCharacter(
  36930. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36931. {
  36932. front: {
  36933. height: math.unit(625, "feet"),
  36934. name: "Front",
  36935. image: {
  36936. source: "./media/characters/asonja-rossa/front.svg",
  36937. extra: 1833/1686,
  36938. bottom: 24/1857
  36939. }
  36940. },
  36941. back: {
  36942. height: math.unit(625, "feet"),
  36943. name: "Back",
  36944. image: {
  36945. source: "./media/characters/asonja-rossa/back.svg",
  36946. extra: 1852/1753,
  36947. bottom: 26/1878
  36948. }
  36949. },
  36950. },
  36951. [
  36952. {
  36953. name: "Macro",
  36954. height: math.unit(625, "feet"),
  36955. default: true
  36956. },
  36957. ]
  36958. ))
  36959. characterMakers.push(() => makeCharacter(
  36960. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36961. {
  36962. side: {
  36963. height: math.unit(8, "feet"),
  36964. name: "Side",
  36965. image: {
  36966. source: "./media/characters/rezukii/side.svg",
  36967. extra: 979/542,
  36968. bottom: 87/1066
  36969. }
  36970. },
  36971. sitting: {
  36972. height: math.unit(14.6, "feet"),
  36973. name: "Sitting",
  36974. image: {
  36975. source: "./media/characters/rezukii/sitting.svg",
  36976. extra: 1023/813,
  36977. bottom: 45/1068
  36978. }
  36979. },
  36980. },
  36981. [
  36982. {
  36983. name: "Tiny",
  36984. height: math.unit(2, "feet")
  36985. },
  36986. {
  36987. name: "Smol",
  36988. height: math.unit(4, "feet")
  36989. },
  36990. {
  36991. name: "Normal",
  36992. height: math.unit(8, "feet"),
  36993. default: true
  36994. },
  36995. {
  36996. name: "Big",
  36997. height: math.unit(12, "feet")
  36998. },
  36999. {
  37000. name: "Macro",
  37001. height: math.unit(30, "feet")
  37002. },
  37003. ]
  37004. ))
  37005. characterMakers.push(() => makeCharacter(
  37006. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37007. {
  37008. front: {
  37009. height: math.unit(14, "feet"),
  37010. weight: math.unit(9.5, "tonnes"),
  37011. name: "Front",
  37012. image: {
  37013. source: "./media/characters/dawnheart/front.svg",
  37014. extra: 2792/2675,
  37015. bottom: 64/2856
  37016. }
  37017. },
  37018. },
  37019. [
  37020. {
  37021. name: "Normal",
  37022. height: math.unit(14, "feet"),
  37023. default: true
  37024. },
  37025. ]
  37026. ))
  37027. characterMakers.push(() => makeCharacter(
  37028. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37029. {
  37030. front: {
  37031. height: math.unit(1.7, "m"),
  37032. name: "Front",
  37033. image: {
  37034. source: "./media/characters/gladi/front.svg",
  37035. extra: 1460/1362,
  37036. bottom: 19/1479
  37037. }
  37038. },
  37039. back: {
  37040. height: math.unit(1.7, "m"),
  37041. name: "Back",
  37042. image: {
  37043. source: "./media/characters/gladi/back.svg",
  37044. extra: 1459/1357,
  37045. bottom: 12/1471
  37046. }
  37047. },
  37048. feral: {
  37049. height: math.unit(2.05, "m"),
  37050. name: "Feral",
  37051. image: {
  37052. source: "./media/characters/gladi/feral.svg",
  37053. extra: 821/557,
  37054. bottom: 91/912
  37055. }
  37056. },
  37057. },
  37058. [
  37059. {
  37060. name: "Shortest",
  37061. height: math.unit(70, "cm")
  37062. },
  37063. {
  37064. name: "Normal",
  37065. height: math.unit(1.7, "m")
  37066. },
  37067. {
  37068. name: "Macro",
  37069. height: math.unit(10, "m"),
  37070. default: true
  37071. },
  37072. {
  37073. name: "Tallest",
  37074. height: math.unit(200, "m")
  37075. },
  37076. ]
  37077. ))
  37078. characterMakers.push(() => makeCharacter(
  37079. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37080. {
  37081. front: {
  37082. height: math.unit(5 + 7/12, "feet"),
  37083. weight: math.unit(2, "tons"),
  37084. name: "Front",
  37085. image: {
  37086. source: "./media/characters/erdno/front.svg",
  37087. extra: 1234/1129,
  37088. bottom: 35/1269
  37089. }
  37090. },
  37091. angled: {
  37092. height: math.unit(5 + 7/12, "feet"),
  37093. weight: math.unit(2, "tons"),
  37094. name: "Angled",
  37095. image: {
  37096. source: "./media/characters/erdno/angled.svg",
  37097. extra: 1185/1139,
  37098. bottom: 36/1221
  37099. }
  37100. },
  37101. side: {
  37102. height: math.unit(5 + 7/12, "feet"),
  37103. weight: math.unit(2, "tons"),
  37104. name: "Side",
  37105. image: {
  37106. source: "./media/characters/erdno/side.svg",
  37107. extra: 1191/1144,
  37108. bottom: 40/1231
  37109. }
  37110. },
  37111. back: {
  37112. height: math.unit(5 + 7/12, "feet"),
  37113. weight: math.unit(2, "tons"),
  37114. name: "Back",
  37115. image: {
  37116. source: "./media/characters/erdno/back.svg",
  37117. extra: 1202/1146,
  37118. bottom: 17/1219
  37119. }
  37120. },
  37121. frontNsfw: {
  37122. height: math.unit(5 + 7/12, "feet"),
  37123. weight: math.unit(2, "tons"),
  37124. name: "Front (NSFW)",
  37125. image: {
  37126. source: "./media/characters/erdno/front-nsfw.svg",
  37127. extra: 1234/1129,
  37128. bottom: 35/1269
  37129. }
  37130. },
  37131. angledNsfw: {
  37132. height: math.unit(5 + 7/12, "feet"),
  37133. weight: math.unit(2, "tons"),
  37134. name: "Angled (NSFW)",
  37135. image: {
  37136. source: "./media/characters/erdno/angled-nsfw.svg",
  37137. extra: 1185/1139,
  37138. bottom: 36/1221
  37139. }
  37140. },
  37141. sideNsfw: {
  37142. height: math.unit(5 + 7/12, "feet"),
  37143. weight: math.unit(2, "tons"),
  37144. name: "Side (NSFW)",
  37145. image: {
  37146. source: "./media/characters/erdno/side-nsfw.svg",
  37147. extra: 1191/1144,
  37148. bottom: 40/1231
  37149. }
  37150. },
  37151. backNsfw: {
  37152. height: math.unit(5 + 7/12, "feet"),
  37153. weight: math.unit(2, "tons"),
  37154. name: "Back (NSFW)",
  37155. image: {
  37156. source: "./media/characters/erdno/back-nsfw.svg",
  37157. extra: 1202/1146,
  37158. bottom: 17/1219
  37159. }
  37160. },
  37161. frontHyper: {
  37162. height: math.unit(5 + 7/12, "feet"),
  37163. weight: math.unit(2, "tons"),
  37164. name: "Front (Hyper)",
  37165. image: {
  37166. source: "./media/characters/erdno/front-hyper.svg",
  37167. extra: 1298/1136,
  37168. bottom: 35/1333
  37169. }
  37170. },
  37171. },
  37172. [
  37173. {
  37174. name: "Normal",
  37175. height: math.unit(5 + 7/12, "feet"),
  37176. default: true
  37177. },
  37178. {
  37179. name: "Big",
  37180. height: math.unit(5.7, "meters")
  37181. },
  37182. {
  37183. name: "Macro",
  37184. height: math.unit(5.7, "kilometers")
  37185. },
  37186. {
  37187. name: "Megamacro",
  37188. height: math.unit(5.7, "earths")
  37189. },
  37190. ]
  37191. ))
  37192. characterMakers.push(() => makeCharacter(
  37193. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37194. {
  37195. front: {
  37196. height: math.unit(5 + 10/12, "feet"),
  37197. weight: math.unit(150, "lb"),
  37198. name: "Front",
  37199. image: {
  37200. source: "./media/characters/jamie/front.svg",
  37201. extra: 1908/1768,
  37202. bottom: 19/1927
  37203. }
  37204. },
  37205. },
  37206. [
  37207. {
  37208. name: "Minimum",
  37209. height: math.unit(2, "cm")
  37210. },
  37211. {
  37212. name: "Micro",
  37213. height: math.unit(3, "inches")
  37214. },
  37215. {
  37216. name: "Normal",
  37217. height: math.unit(5 + 10/12, "feet"),
  37218. default: true
  37219. },
  37220. {
  37221. name: "Macro",
  37222. height: math.unit(150, "feet")
  37223. },
  37224. {
  37225. name: "Megamacro",
  37226. height: math.unit(10000, "m")
  37227. },
  37228. ]
  37229. ))
  37230. characterMakers.push(() => makeCharacter(
  37231. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37232. {
  37233. front: {
  37234. height: math.unit(2, "meters"),
  37235. weight: math.unit(100, "kg"),
  37236. name: "Front",
  37237. image: {
  37238. source: "./media/characters/shiron/front.svg",
  37239. extra: 2103/1985,
  37240. bottom: 98/2201
  37241. }
  37242. },
  37243. back: {
  37244. height: math.unit(2, "meters"),
  37245. weight: math.unit(100, "kg"),
  37246. name: "Back",
  37247. image: {
  37248. source: "./media/characters/shiron/back.svg",
  37249. extra: 2110/2015,
  37250. bottom: 89/2199
  37251. }
  37252. },
  37253. hand: {
  37254. height: math.unit(0.96, "feet"),
  37255. name: "Hand",
  37256. image: {
  37257. source: "./media/characters/shiron/hand.svg"
  37258. }
  37259. },
  37260. foot: {
  37261. height: math.unit(1.464, "feet"),
  37262. name: "Foot",
  37263. image: {
  37264. source: "./media/characters/shiron/foot.svg"
  37265. }
  37266. },
  37267. },
  37268. [
  37269. {
  37270. name: "Normal",
  37271. height: math.unit(2, "meters")
  37272. },
  37273. {
  37274. name: "Macro",
  37275. height: math.unit(500, "meters"),
  37276. default: true
  37277. },
  37278. {
  37279. name: "Megamacro",
  37280. height: math.unit(20, "km")
  37281. },
  37282. ]
  37283. ))
  37284. characterMakers.push(() => makeCharacter(
  37285. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37286. {
  37287. front: {
  37288. height: math.unit(6, "feet"),
  37289. name: "Front",
  37290. image: {
  37291. source: "./media/characters/sam/front.svg",
  37292. extra: 849/826,
  37293. bottom: 19/868
  37294. }
  37295. },
  37296. },
  37297. [
  37298. {
  37299. name: "Normal",
  37300. height: math.unit(6, "feet"),
  37301. default: true
  37302. },
  37303. ]
  37304. ))
  37305. characterMakers.push(() => makeCharacter(
  37306. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37307. {
  37308. front: {
  37309. height: math.unit(8 + 4/12, "feet"),
  37310. weight: math.unit(122, "kg"),
  37311. name: "Front",
  37312. image: {
  37313. source: "./media/characters/namori-kurogawa/front.svg",
  37314. extra: 1894/1576,
  37315. bottom: 34/1928
  37316. }
  37317. },
  37318. },
  37319. [
  37320. {
  37321. name: "Normal",
  37322. height: math.unit(8 + 4/12, "feet"),
  37323. default: true
  37324. },
  37325. ]
  37326. ))
  37327. characterMakers.push(() => makeCharacter(
  37328. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37329. {
  37330. front: {
  37331. height: math.unit(9, "feet"),
  37332. weight: math.unit(621, "lb"),
  37333. name: "Front",
  37334. image: {
  37335. source: "./media/characters/unmru/front.svg",
  37336. extra: 1853/1747,
  37337. bottom: 73/1926
  37338. }
  37339. },
  37340. side: {
  37341. height: math.unit(9, "feet"),
  37342. weight: math.unit(621, "lb"),
  37343. name: "Side",
  37344. image: {
  37345. source: "./media/characters/unmru/side.svg",
  37346. extra: 1781/1671,
  37347. bottom: 127/1908
  37348. }
  37349. },
  37350. back: {
  37351. height: math.unit(9, "feet"),
  37352. weight: math.unit(621, "lb"),
  37353. name: "Back",
  37354. image: {
  37355. source: "./media/characters/unmru/back.svg",
  37356. extra: 1894/1765,
  37357. bottom: 75/1969
  37358. }
  37359. },
  37360. dick: {
  37361. height: math.unit(3, "feet"),
  37362. weight: math.unit(35, "lb"),
  37363. name: "Dick",
  37364. image: {
  37365. source: "./media/characters/unmru/dick.svg"
  37366. }
  37367. },
  37368. },
  37369. [
  37370. {
  37371. name: "Normal",
  37372. height: math.unit(9, "feet")
  37373. },
  37374. {
  37375. name: "Natural",
  37376. height: math.unit(27, "feet"),
  37377. default: true
  37378. },
  37379. {
  37380. name: "Giant",
  37381. height: math.unit(90, "feet")
  37382. },
  37383. {
  37384. name: "Kaiju",
  37385. height: math.unit(270, "feet")
  37386. },
  37387. {
  37388. name: "Macro",
  37389. height: math.unit(900, "feet")
  37390. },
  37391. {
  37392. name: "Macro+",
  37393. height: math.unit(2700, "feet")
  37394. },
  37395. {
  37396. name: "Megamacro",
  37397. height: math.unit(9000, "feet")
  37398. },
  37399. {
  37400. name: "City-Crushing",
  37401. height: math.unit(27000, "feet")
  37402. },
  37403. {
  37404. name: "Mountain-Mashing",
  37405. height: math.unit(90000, "feet")
  37406. },
  37407. {
  37408. name: "Earth-Eclipsing",
  37409. height: math.unit(2.7e8, "feet")
  37410. },
  37411. {
  37412. name: "Sol-Swallowing",
  37413. height: math.unit(9e10, "feet")
  37414. },
  37415. {
  37416. name: "Majoris-Munching",
  37417. height: math.unit(2.7e13, "feet")
  37418. },
  37419. ]
  37420. ))
  37421. characterMakers.push(() => makeCharacter(
  37422. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37423. {
  37424. front: {
  37425. height: math.unit(1, "inch"),
  37426. name: "Front",
  37427. image: {
  37428. source: "./media/characters/squeaks-mouse/front.svg",
  37429. extra: 352/308,
  37430. bottom: 25/377
  37431. }
  37432. },
  37433. },
  37434. [
  37435. {
  37436. name: "Micro",
  37437. height: math.unit(1, "inch"),
  37438. default: true
  37439. },
  37440. ]
  37441. ))
  37442. characterMakers.push(() => makeCharacter(
  37443. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37444. {
  37445. side: {
  37446. height: math.unit(35, "feet"),
  37447. name: "Side",
  37448. image: {
  37449. source: "./media/characters/sayko/side.svg",
  37450. extra: 1697/1021,
  37451. bottom: 82/1779
  37452. }
  37453. },
  37454. head: {
  37455. height: math.unit(16, "feet"),
  37456. name: "Head",
  37457. image: {
  37458. source: "./media/characters/sayko/head.svg"
  37459. }
  37460. },
  37461. forepaw: {
  37462. height: math.unit(7.85, "feet"),
  37463. name: "Forepaw",
  37464. image: {
  37465. source: "./media/characters/sayko/forepaw.svg"
  37466. }
  37467. },
  37468. hindpaw: {
  37469. height: math.unit(8.8, "feet"),
  37470. name: "Hindpaw",
  37471. image: {
  37472. source: "./media/characters/sayko/hindpaw.svg"
  37473. }
  37474. },
  37475. },
  37476. [
  37477. {
  37478. name: "Normal",
  37479. height: math.unit(35, "feet"),
  37480. default: true
  37481. },
  37482. {
  37483. name: "Colossus",
  37484. height: math.unit(100, "meters")
  37485. },
  37486. {
  37487. name: "\"Small\" Deity",
  37488. height: math.unit(1, "km")
  37489. },
  37490. {
  37491. name: "\"Large\" Deity",
  37492. height: math.unit(15, "km")
  37493. },
  37494. ]
  37495. ))
  37496. characterMakers.push(() => makeCharacter(
  37497. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37498. {
  37499. front: {
  37500. height: math.unit(6, "feet"),
  37501. weight: math.unit(250, "lb"),
  37502. name: "Front",
  37503. image: {
  37504. source: "./media/characters/mukiro/front.svg",
  37505. extra: 1368/1310,
  37506. bottom: 34/1402
  37507. }
  37508. },
  37509. },
  37510. [
  37511. {
  37512. name: "Normal",
  37513. height: math.unit(6, "feet"),
  37514. default: true
  37515. },
  37516. ]
  37517. ))
  37518. characterMakers.push(() => makeCharacter(
  37519. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37520. {
  37521. front: {
  37522. height: math.unit(12 + 4/12, "feet"),
  37523. name: "Front",
  37524. image: {
  37525. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37526. extra: 1346/1311,
  37527. bottom: 65/1411
  37528. }
  37529. },
  37530. },
  37531. [
  37532. {
  37533. name: "Base",
  37534. height: math.unit(12 + 4/12, "feet"),
  37535. default: true
  37536. },
  37537. {
  37538. name: "Macro",
  37539. height: math.unit(150, "feet")
  37540. },
  37541. {
  37542. name: "Mega",
  37543. height: math.unit(2, "miles")
  37544. },
  37545. {
  37546. name: "Demi God",
  37547. height: math.unit(4, "AU")
  37548. },
  37549. {
  37550. name: "God Size",
  37551. height: math.unit(1, "universe")
  37552. },
  37553. ]
  37554. ))
  37555. characterMakers.push(() => makeCharacter(
  37556. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37557. {
  37558. front: {
  37559. height: math.unit(3 + 3/12, "feet"),
  37560. weight: math.unit(88, "lb"),
  37561. name: "Front",
  37562. image: {
  37563. source: "./media/characters/trey/front.svg",
  37564. extra: 1815/1509,
  37565. bottom: 60/1875
  37566. }
  37567. },
  37568. },
  37569. [
  37570. {
  37571. name: "Normal",
  37572. height: math.unit(3 + 3/12, "feet"),
  37573. default: true
  37574. },
  37575. ]
  37576. ))
  37577. characterMakers.push(() => makeCharacter(
  37578. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37579. {
  37580. front: {
  37581. height: math.unit(4, "meters"),
  37582. name: "Front",
  37583. image: {
  37584. source: "./media/characters/adelonda/front.svg",
  37585. extra: 1077/982,
  37586. bottom: 39/1116
  37587. }
  37588. },
  37589. back: {
  37590. height: math.unit(4, "meters"),
  37591. name: "Back",
  37592. image: {
  37593. source: "./media/characters/adelonda/back.svg",
  37594. extra: 1105/1003,
  37595. bottom: 25/1130
  37596. }
  37597. },
  37598. },
  37599. [
  37600. {
  37601. name: "Normal",
  37602. height: math.unit(4, "meters"),
  37603. default: true
  37604. },
  37605. ]
  37606. ))
  37607. characterMakers.push(() => makeCharacter(
  37608. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37609. {
  37610. front: {
  37611. height: math.unit(8 + 4/12, "feet"),
  37612. weight: math.unit(670, "lb"),
  37613. name: "Front",
  37614. image: {
  37615. source: "./media/characters/acadiel/front.svg",
  37616. extra: 1901/1595,
  37617. bottom: 142/2043
  37618. }
  37619. },
  37620. },
  37621. [
  37622. {
  37623. name: "Normal",
  37624. height: math.unit(8 + 4/12, "feet"),
  37625. default: true
  37626. },
  37627. {
  37628. name: "Macro",
  37629. height: math.unit(200, "feet")
  37630. },
  37631. ]
  37632. ))
  37633. characterMakers.push(() => makeCharacter(
  37634. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37635. {
  37636. front: {
  37637. height: math.unit(6 + 2/12, "feet"),
  37638. weight: math.unit(185, "lb"),
  37639. name: "Front",
  37640. image: {
  37641. source: "./media/characters/kayne-ein/front.svg",
  37642. extra: 1780/1560,
  37643. bottom: 81/1861
  37644. }
  37645. },
  37646. },
  37647. [
  37648. {
  37649. name: "Normal",
  37650. height: math.unit(6 + 2/12, "feet"),
  37651. default: true
  37652. },
  37653. {
  37654. name: "Transformation Stage",
  37655. height: math.unit(15, "feet")
  37656. },
  37657. {
  37658. name: "Macro",
  37659. height: math.unit(150, "feet")
  37660. },
  37661. {
  37662. name: "Earth's Shadow",
  37663. height: math.unit(6200, "miles")
  37664. },
  37665. {
  37666. name: "Universal Demon",
  37667. height: math.unit(28e9, "parsecs")
  37668. },
  37669. {
  37670. name: "Multiverse God",
  37671. height: math.unit(3, "multiverses")
  37672. },
  37673. ]
  37674. ))
  37675. characterMakers.push(() => makeCharacter(
  37676. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37677. {
  37678. front: {
  37679. height: math.unit(5 + 5/12, "feet"),
  37680. name: "Front",
  37681. image: {
  37682. source: "./media/characters/fawn/front.svg",
  37683. extra: 1873/1731,
  37684. bottom: 95/1968
  37685. }
  37686. },
  37687. back: {
  37688. height: math.unit(5 + 5/12, "feet"),
  37689. name: "Back",
  37690. image: {
  37691. source: "./media/characters/fawn/back.svg",
  37692. extra: 1813/1700,
  37693. bottom: 14/1827
  37694. }
  37695. },
  37696. hoof: {
  37697. height: math.unit(1.45, "feet"),
  37698. name: "Hoof",
  37699. image: {
  37700. source: "./media/characters/fawn/hoof.svg"
  37701. }
  37702. },
  37703. },
  37704. [
  37705. {
  37706. name: "Normal",
  37707. height: math.unit(5 + 5/12, "feet"),
  37708. default: true
  37709. },
  37710. ]
  37711. ))
  37712. characterMakers.push(() => makeCharacter(
  37713. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37714. {
  37715. front: {
  37716. height: math.unit(2 + 5/12, "feet"),
  37717. name: "Front",
  37718. image: {
  37719. source: "./media/characters/orion/front.svg",
  37720. extra: 1366/1304,
  37721. bottom: 43/1409
  37722. }
  37723. },
  37724. paw: {
  37725. height: math.unit(0.52, "feet"),
  37726. name: "Paw",
  37727. image: {
  37728. source: "./media/characters/orion/paw.svg"
  37729. }
  37730. },
  37731. },
  37732. [
  37733. {
  37734. name: "Normal",
  37735. height: math.unit(2 + 5/12, "feet"),
  37736. default: true
  37737. },
  37738. ]
  37739. ))
  37740. characterMakers.push(() => makeCharacter(
  37741. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37742. {
  37743. front: {
  37744. height: math.unit(5 + 10/12, "feet"),
  37745. name: "Front",
  37746. image: {
  37747. source: "./media/characters/vera/front.svg",
  37748. extra: 1680/1575,
  37749. bottom: 49/1729
  37750. }
  37751. },
  37752. back: {
  37753. height: math.unit(5 + 10/12, "feet"),
  37754. name: "Back",
  37755. image: {
  37756. source: "./media/characters/vera/back.svg",
  37757. extra: 1700/1588,
  37758. bottom: 18/1718
  37759. }
  37760. },
  37761. arcanine: {
  37762. height: math.unit(6 + 8/12, "feet"),
  37763. name: "Arcanine",
  37764. image: {
  37765. source: "./media/characters/vera/arcanine.svg",
  37766. extra: 1590/1511,
  37767. bottom: 71/1661
  37768. }
  37769. },
  37770. maw: {
  37771. height: math.unit(0.82, "feet"),
  37772. name: "Maw",
  37773. image: {
  37774. source: "./media/characters/vera/maw.svg"
  37775. }
  37776. },
  37777. mawArcanine: {
  37778. height: math.unit(0.97, "feet"),
  37779. name: "Maw (Arcanine)",
  37780. image: {
  37781. source: "./media/characters/vera/maw-arcanine.svg"
  37782. }
  37783. },
  37784. paw: {
  37785. height: math.unit(0.75, "feet"),
  37786. name: "Paw",
  37787. image: {
  37788. source: "./media/characters/vera/paw.svg"
  37789. }
  37790. },
  37791. pawprint: {
  37792. height: math.unit(0.52, "feet"),
  37793. name: "Pawprint",
  37794. image: {
  37795. source: "./media/characters/vera/pawprint.svg"
  37796. }
  37797. },
  37798. },
  37799. [
  37800. {
  37801. name: "Normal",
  37802. height: math.unit(5 + 10/12, "feet"),
  37803. default: true
  37804. },
  37805. {
  37806. name: "Macro",
  37807. height: math.unit(75, "feet")
  37808. },
  37809. ]
  37810. ))
  37811. characterMakers.push(() => makeCharacter(
  37812. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37813. {
  37814. front: {
  37815. height: math.unit(4, "feet"),
  37816. weight: math.unit(40, "lb"),
  37817. name: "Front",
  37818. image: {
  37819. source: "./media/characters/orvan-rabbit/front.svg",
  37820. extra: 1896/1642,
  37821. bottom: 29/1925
  37822. }
  37823. },
  37824. },
  37825. [
  37826. {
  37827. name: "Normal",
  37828. height: math.unit(4, "feet"),
  37829. default: true
  37830. },
  37831. ]
  37832. ))
  37833. characterMakers.push(() => makeCharacter(
  37834. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37835. {
  37836. front: {
  37837. height: math.unit(6, "feet"),
  37838. weight: math.unit(168, "lb"),
  37839. name: "Front",
  37840. image: {
  37841. source: "./media/characters/lisa/front.svg",
  37842. extra: 2065/1867,
  37843. bottom: 46/2111
  37844. }
  37845. },
  37846. back: {
  37847. height: math.unit(6, "feet"),
  37848. weight: math.unit(168, "lb"),
  37849. name: "Back",
  37850. image: {
  37851. source: "./media/characters/lisa/back.svg",
  37852. extra: 1982/1838,
  37853. bottom: 29/2011
  37854. }
  37855. },
  37856. maw: {
  37857. height: math.unit(0.81, "feet"),
  37858. name: "Maw",
  37859. image: {
  37860. source: "./media/characters/lisa/maw.svg"
  37861. }
  37862. },
  37863. paw: {
  37864. height: math.unit(0.9, "feet"),
  37865. name: "Paw",
  37866. image: {
  37867. source: "./media/characters/lisa/paw.svg"
  37868. }
  37869. },
  37870. caribousune: {
  37871. height: math.unit(7 + 2/12, "feet"),
  37872. weight: math.unit(268, "lb"),
  37873. name: "Caribousune",
  37874. image: {
  37875. source: "./media/characters/lisa/caribousune.svg",
  37876. extra: 1843/1633,
  37877. bottom: 29/1872
  37878. }
  37879. },
  37880. frontCaribousune: {
  37881. height: math.unit(7 + 2/12, "feet"),
  37882. weight: math.unit(268, "lb"),
  37883. name: "Front (Caribousune)",
  37884. image: {
  37885. source: "./media/characters/lisa/front-caribousune.svg",
  37886. extra: 1818/1638,
  37887. bottom: 52/1870
  37888. }
  37889. },
  37890. sideCaribousune: {
  37891. height: math.unit(7 + 2/12, "feet"),
  37892. weight: math.unit(268, "lb"),
  37893. name: "Side (Caribousune)",
  37894. image: {
  37895. source: "./media/characters/lisa/side-caribousune.svg",
  37896. extra: 1851/1635,
  37897. bottom: 16/1867
  37898. }
  37899. },
  37900. backCaribousune: {
  37901. height: math.unit(7 + 2/12, "feet"),
  37902. weight: math.unit(268, "lb"),
  37903. name: "Back (Caribousune)",
  37904. image: {
  37905. source: "./media/characters/lisa/back-caribousune.svg",
  37906. extra: 1801/1604,
  37907. bottom: 44/1845
  37908. }
  37909. },
  37910. caribou: {
  37911. height: math.unit(7 + 2/12, "feet"),
  37912. weight: math.unit(268, "lb"),
  37913. name: "Caribou",
  37914. image: {
  37915. source: "./media/characters/lisa/caribou.svg",
  37916. extra: 1843/1633,
  37917. bottom: 29/1872
  37918. }
  37919. },
  37920. frontCaribou: {
  37921. height: math.unit(7 + 2/12, "feet"),
  37922. weight: math.unit(268, "lb"),
  37923. name: "Front (Caribou)",
  37924. image: {
  37925. source: "./media/characters/lisa/front-caribou.svg",
  37926. extra: 1818/1638,
  37927. bottom: 52/1870
  37928. }
  37929. },
  37930. sideCaribou: {
  37931. height: math.unit(7 + 2/12, "feet"),
  37932. weight: math.unit(268, "lb"),
  37933. name: "Side (Caribou)",
  37934. image: {
  37935. source: "./media/characters/lisa/side-caribou.svg",
  37936. extra: 1851/1635,
  37937. bottom: 16/1867
  37938. }
  37939. },
  37940. backCaribou: {
  37941. height: math.unit(7 + 2/12, "feet"),
  37942. weight: math.unit(268, "lb"),
  37943. name: "Back (Caribou)",
  37944. image: {
  37945. source: "./media/characters/lisa/back-caribou.svg",
  37946. extra: 1801/1604,
  37947. bottom: 44/1845
  37948. }
  37949. },
  37950. mawCaribou: {
  37951. height: math.unit(1.45, "feet"),
  37952. name: "Maw (Caribou)",
  37953. image: {
  37954. source: "./media/characters/lisa/maw-caribou.svg"
  37955. }
  37956. },
  37957. mawCaribousune: {
  37958. height: math.unit(1.45, "feet"),
  37959. name: "Maw (Caribousune)",
  37960. image: {
  37961. source: "./media/characters/lisa/maw-caribousune.svg"
  37962. }
  37963. },
  37964. pawCaribousune: {
  37965. height: math.unit(1.61, "feet"),
  37966. name: "Paw (Caribou)",
  37967. image: {
  37968. source: "./media/characters/lisa/paw-caribousune.svg"
  37969. }
  37970. },
  37971. },
  37972. [
  37973. {
  37974. name: "Normal",
  37975. height: math.unit(6, "feet")
  37976. },
  37977. {
  37978. name: "God Size",
  37979. height: math.unit(72, "feet"),
  37980. default: true
  37981. },
  37982. {
  37983. name: "Towering",
  37984. height: math.unit(288, "feet")
  37985. },
  37986. {
  37987. name: "City Size",
  37988. height: math.unit(48384, "feet")
  37989. },
  37990. {
  37991. name: "Continental",
  37992. height: math.unit(4200, "miles")
  37993. },
  37994. {
  37995. name: "Planet Eater",
  37996. height: math.unit(42, "earths")
  37997. },
  37998. {
  37999. name: "Star Swallower",
  38000. height: math.unit(42, "solarradii")
  38001. },
  38002. {
  38003. name: "System Swallower",
  38004. height: math.unit(84000, "AU")
  38005. },
  38006. {
  38007. name: "Galaxy Gobbler",
  38008. height: math.unit(42, "galaxies")
  38009. },
  38010. {
  38011. name: "Universe Devourer",
  38012. height: math.unit(42, "universes")
  38013. },
  38014. {
  38015. name: "Multiverse Muncher",
  38016. height: math.unit(42, "multiverses")
  38017. },
  38018. ]
  38019. ))
  38020. characterMakers.push(() => makeCharacter(
  38021. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38022. {
  38023. front: {
  38024. height: math.unit(36, "feet"),
  38025. name: "Front",
  38026. image: {
  38027. source: "./media/characters/shadow-rat/front.svg",
  38028. extra: 1845/1758,
  38029. bottom: 83/1928
  38030. }
  38031. },
  38032. },
  38033. [
  38034. {
  38035. name: "Macro",
  38036. height: math.unit(36, "feet"),
  38037. default: true
  38038. },
  38039. ]
  38040. ))
  38041. characterMakers.push(() => makeCharacter(
  38042. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38043. {
  38044. side: {
  38045. height: math.unit(8, "feet"),
  38046. weight: math.unit(2630, "lb"),
  38047. name: "Side",
  38048. image: {
  38049. source: "./media/characters/torallia/side.svg",
  38050. extra: 2164/2021,
  38051. bottom: 371/2535
  38052. }
  38053. },
  38054. },
  38055. [
  38056. {
  38057. name: "Mortal Interaction",
  38058. height: math.unit(8, "feet")
  38059. },
  38060. {
  38061. name: "Natural",
  38062. height: math.unit(24, "feet"),
  38063. default: true
  38064. },
  38065. {
  38066. name: "Giant",
  38067. height: math.unit(80, "feet")
  38068. },
  38069. {
  38070. name: "Kaiju",
  38071. height: math.unit(240, "feet")
  38072. },
  38073. {
  38074. name: "Macro",
  38075. height: math.unit(800, "feet")
  38076. },
  38077. {
  38078. name: "Macro+",
  38079. height: math.unit(2400, "feet")
  38080. },
  38081. {
  38082. name: "Macro++",
  38083. height: math.unit(8000, "feet")
  38084. },
  38085. {
  38086. name: "City-Crushing",
  38087. height: math.unit(24000, "feet")
  38088. },
  38089. {
  38090. name: "Mountain-Mashing",
  38091. height: math.unit(80000, "feet")
  38092. },
  38093. {
  38094. name: "District Demolisher",
  38095. height: math.unit(240000, "feet")
  38096. },
  38097. {
  38098. name: "Tri-County Terror",
  38099. height: math.unit(800000, "feet")
  38100. },
  38101. {
  38102. name: "State Smasher",
  38103. height: math.unit(2.4e6, "feet")
  38104. },
  38105. {
  38106. name: "Nation Nemesis",
  38107. height: math.unit(8e6, "feet")
  38108. },
  38109. {
  38110. name: "Continent Cracker",
  38111. height: math.unit(2.4e7, "feet")
  38112. },
  38113. {
  38114. name: "Planet-Pillaging",
  38115. height: math.unit(8e7, "feet")
  38116. },
  38117. {
  38118. name: "Earth-Eclipsing",
  38119. height: math.unit(2.4e8, "feet")
  38120. },
  38121. {
  38122. name: "Jovian-Jostling",
  38123. height: math.unit(8e8, "feet")
  38124. },
  38125. {
  38126. name: "Gas Giant Gulper",
  38127. height: math.unit(2.4e9, "feet")
  38128. },
  38129. {
  38130. name: "Astral Annihilator",
  38131. height: math.unit(8e9, "feet")
  38132. },
  38133. {
  38134. name: "Celestial Conqueror",
  38135. height: math.unit(2.4e10, "feet")
  38136. },
  38137. {
  38138. name: "Sol-Swallowing",
  38139. height: math.unit(8e10, "feet")
  38140. },
  38141. {
  38142. name: "Hunter of the Heavens",
  38143. height: math.unit(2.4e13, "feet")
  38144. },
  38145. ]
  38146. ))
  38147. characterMakers.push(() => makeCharacter(
  38148. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38149. {
  38150. front: {
  38151. height: math.unit(6 + 8/12, "feet"),
  38152. name: "Front",
  38153. image: {
  38154. source: "./media/characters/rebecca-pawlson/front.svg",
  38155. extra: 1737/1596,
  38156. bottom: 107/1844
  38157. }
  38158. },
  38159. back: {
  38160. height: math.unit(6 + 8/12, "feet"),
  38161. name: "Back",
  38162. image: {
  38163. source: "./media/characters/rebecca-pawlson/back.svg",
  38164. extra: 1702/1523,
  38165. bottom: 86/1788
  38166. }
  38167. },
  38168. },
  38169. [
  38170. {
  38171. name: "Normal",
  38172. height: math.unit(6 + 8/12, "feet")
  38173. },
  38174. {
  38175. name: "Mini Macro",
  38176. height: math.unit(10, "feet"),
  38177. default: true
  38178. },
  38179. {
  38180. name: "Macro",
  38181. height: math.unit(100, "feet")
  38182. },
  38183. {
  38184. name: "Mega Macro",
  38185. height: math.unit(2500, "feet")
  38186. },
  38187. {
  38188. name: "Giga Macro",
  38189. height: math.unit(50, "miles")
  38190. },
  38191. ]
  38192. ))
  38193. characterMakers.push(() => makeCharacter(
  38194. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38195. {
  38196. front: {
  38197. height: math.unit(7 + 6/12, "feet"),
  38198. weight: math.unit(600, "lb"),
  38199. name: "Front",
  38200. image: {
  38201. source: "./media/characters/moxie-nova/front.svg",
  38202. extra: 1734/1652,
  38203. bottom: 41/1775
  38204. }
  38205. },
  38206. },
  38207. [
  38208. {
  38209. name: "Normal",
  38210. height: math.unit(7 + 6/12, "feet"),
  38211. default: true
  38212. },
  38213. ]
  38214. ))
  38215. characterMakers.push(() => makeCharacter(
  38216. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38217. {
  38218. goat: {
  38219. height: math.unit(4, "feet"),
  38220. weight: math.unit(180, "lb"),
  38221. name: "Goat",
  38222. image: {
  38223. source: "./media/characters/tiffany/goat.svg",
  38224. extra: 1845/1595,
  38225. bottom: 106/1951
  38226. }
  38227. },
  38228. front: {
  38229. height: math.unit(5, "feet"),
  38230. weight: math.unit(150, "lb"),
  38231. name: "Foxcoon",
  38232. image: {
  38233. source: "./media/characters/tiffany/foxcoon.svg",
  38234. extra: 1941/1845,
  38235. bottom: 58/1999
  38236. }
  38237. },
  38238. },
  38239. [
  38240. {
  38241. name: "Normal",
  38242. height: math.unit(5, "feet"),
  38243. default: true
  38244. },
  38245. ]
  38246. ))
  38247. characterMakers.push(() => makeCharacter(
  38248. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38249. {
  38250. front: {
  38251. height: math.unit(8, "feet"),
  38252. weight: math.unit(300, "lb"),
  38253. name: "Front",
  38254. image: {
  38255. source: "./media/characters/raxinath/front.svg",
  38256. extra: 1407/1309,
  38257. bottom: 39/1446
  38258. }
  38259. },
  38260. back: {
  38261. height: math.unit(8, "feet"),
  38262. weight: math.unit(300, "lb"),
  38263. name: "Back",
  38264. image: {
  38265. source: "./media/characters/raxinath/back.svg",
  38266. extra: 1405/1315,
  38267. bottom: 9/1414
  38268. }
  38269. },
  38270. },
  38271. [
  38272. {
  38273. name: "Speck",
  38274. height: math.unit(0.5, "nm")
  38275. },
  38276. {
  38277. name: "Micro",
  38278. height: math.unit(3, "inches")
  38279. },
  38280. {
  38281. name: "Kobold",
  38282. height: math.unit(3, "feet")
  38283. },
  38284. {
  38285. name: "Normal",
  38286. height: math.unit(8, "feet"),
  38287. default: true
  38288. },
  38289. {
  38290. name: "Giant",
  38291. height: math.unit(50, "feet")
  38292. },
  38293. {
  38294. name: "Macro",
  38295. height: math.unit(1000, "feet")
  38296. },
  38297. {
  38298. name: "Megamacro",
  38299. height: math.unit(1, "mile")
  38300. },
  38301. ]
  38302. ))
  38303. characterMakers.push(() => makeCharacter(
  38304. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38305. {
  38306. front: {
  38307. height: math.unit(10, "feet"),
  38308. weight: math.unit(1442, "lb"),
  38309. name: "Front",
  38310. image: {
  38311. source: "./media/characters/mal-dragon/front.svg",
  38312. extra: 1515/1444,
  38313. bottom: 113/1628
  38314. }
  38315. },
  38316. back: {
  38317. height: math.unit(10, "feet"),
  38318. weight: math.unit(1442, "lb"),
  38319. name: "Back",
  38320. image: {
  38321. source: "./media/characters/mal-dragon/back.svg",
  38322. extra: 1527/1434,
  38323. bottom: 25/1552
  38324. }
  38325. },
  38326. },
  38327. [
  38328. {
  38329. name: "Mortal Interaction",
  38330. height: math.unit(10, "feet"),
  38331. default: true
  38332. },
  38333. {
  38334. name: "Large",
  38335. height: math.unit(30, "feet")
  38336. },
  38337. {
  38338. name: "Kaiju",
  38339. height: math.unit(300, "feet")
  38340. },
  38341. {
  38342. name: "Megamacro",
  38343. height: math.unit(10000, "feet")
  38344. },
  38345. {
  38346. name: "Continent Cracker",
  38347. height: math.unit(30000000, "feet")
  38348. },
  38349. {
  38350. name: "Sol-Swallowing",
  38351. height: math.unit(1e11, "feet")
  38352. },
  38353. {
  38354. name: "Light Universal",
  38355. height: math.unit(5, "universes")
  38356. },
  38357. {
  38358. name: "Universe Atoms",
  38359. height: math.unit(1.829e9, "universes")
  38360. },
  38361. {
  38362. name: "Light Multiversal",
  38363. height: math.unit(5, "multiverses")
  38364. },
  38365. {
  38366. name: "Multiverse Atoms",
  38367. height: math.unit(1.829e9, "multiverses")
  38368. },
  38369. {
  38370. name: "Fabric of Time",
  38371. height: math.unit(1e262, "multiverses")
  38372. },
  38373. ]
  38374. ))
  38375. characterMakers.push(() => makeCharacter(
  38376. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38377. {
  38378. front: {
  38379. height: math.unit(9, "feet"),
  38380. weight: math.unit(1050, "lb"),
  38381. name: "Front",
  38382. image: {
  38383. source: "./media/characters/tabitha/front.svg",
  38384. extra: 2083/1994,
  38385. bottom: 68/2151
  38386. }
  38387. },
  38388. },
  38389. [
  38390. {
  38391. name: "Baseline",
  38392. height: math.unit(9, "feet"),
  38393. default: true
  38394. },
  38395. {
  38396. name: "Giant",
  38397. height: math.unit(90, "feet")
  38398. },
  38399. {
  38400. name: "Macro",
  38401. height: math.unit(900, "feet")
  38402. },
  38403. {
  38404. name: "Megamacro",
  38405. height: math.unit(9000, "feet")
  38406. },
  38407. {
  38408. name: "City-Crushing",
  38409. height: math.unit(27000, "feet")
  38410. },
  38411. {
  38412. name: "Mountain-Mashing",
  38413. height: math.unit(90000, "feet")
  38414. },
  38415. {
  38416. name: "Nation Nemesis",
  38417. height: math.unit(9e6, "feet")
  38418. },
  38419. {
  38420. name: "Continent Cracker",
  38421. height: math.unit(27e6, "feet")
  38422. },
  38423. {
  38424. name: "Earth-Eclipsing",
  38425. height: math.unit(2.7e8, "feet")
  38426. },
  38427. {
  38428. name: "Gas Giant Gulper",
  38429. height: math.unit(2.7e9, "feet")
  38430. },
  38431. {
  38432. name: "Sol-Swallowing",
  38433. height: math.unit(9e10, "feet")
  38434. },
  38435. {
  38436. name: "Galaxy Gulper",
  38437. height: math.unit(9, "galaxies")
  38438. },
  38439. {
  38440. name: "Cosmos Churner",
  38441. height: math.unit(9, "universes")
  38442. },
  38443. ]
  38444. ))
  38445. characterMakers.push(() => makeCharacter(
  38446. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38447. {
  38448. front: {
  38449. height: math.unit(160, "cm"),
  38450. weight: math.unit(55, "kg"),
  38451. name: "Front",
  38452. image: {
  38453. source: "./media/characters/tow/front.svg",
  38454. extra: 1751/1722,
  38455. bottom: 74/1825
  38456. }
  38457. },
  38458. },
  38459. [
  38460. {
  38461. name: "Norm",
  38462. height: math.unit(160, "cm")
  38463. },
  38464. {
  38465. name: "Casual",
  38466. height: math.unit(3200, "m"),
  38467. default: true
  38468. },
  38469. {
  38470. name: "Show-Off",
  38471. height: math.unit(160, "km")
  38472. },
  38473. ]
  38474. ))
  38475. characterMakers.push(() => makeCharacter(
  38476. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38477. {
  38478. front: {
  38479. height: math.unit(7 + 11/12, "feet"),
  38480. weight: math.unit(342.8, "lb"),
  38481. name: "Front",
  38482. image: {
  38483. source: "./media/characters/vivian-orca-dragon/front.svg",
  38484. extra: 1890/1865,
  38485. bottom: 28/1918
  38486. }
  38487. },
  38488. },
  38489. [
  38490. {
  38491. name: "Micro",
  38492. height: math.unit(5, "inches")
  38493. },
  38494. {
  38495. name: "Normal",
  38496. height: math.unit(7 + 11/12, "feet"),
  38497. default: true
  38498. },
  38499. {
  38500. name: "Macro",
  38501. height: math.unit(395 + 7/12, "feet")
  38502. },
  38503. ]
  38504. ))
  38505. characterMakers.push(() => makeCharacter(
  38506. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38507. {
  38508. side: {
  38509. height: math.unit(10, "feet"),
  38510. weight: math.unit(1442, "lb"),
  38511. name: "Side",
  38512. image: {
  38513. source: "./media/characters/lotherakon/side.svg",
  38514. extra: 1604/1497,
  38515. bottom: 89/1693
  38516. }
  38517. },
  38518. },
  38519. [
  38520. {
  38521. name: "Mortal Interaction",
  38522. height: math.unit(10, "feet")
  38523. },
  38524. {
  38525. name: "Large",
  38526. height: math.unit(30, "feet"),
  38527. default: true
  38528. },
  38529. {
  38530. name: "Giant",
  38531. height: math.unit(100, "feet")
  38532. },
  38533. {
  38534. name: "Kaiju",
  38535. height: math.unit(300, "feet")
  38536. },
  38537. {
  38538. name: "Macro",
  38539. height: math.unit(1000, "feet")
  38540. },
  38541. {
  38542. name: "Macro+",
  38543. height: math.unit(3000, "feet")
  38544. },
  38545. {
  38546. name: "Megamacro",
  38547. height: math.unit(10000, "feet")
  38548. },
  38549. {
  38550. name: "City-Crushing",
  38551. height: math.unit(30000, "feet")
  38552. },
  38553. {
  38554. name: "Continent Cracker",
  38555. height: math.unit(30e6, "feet")
  38556. },
  38557. {
  38558. name: "Earth Eclipsing",
  38559. height: math.unit(3e8, "feet")
  38560. },
  38561. {
  38562. name: "Gas Giant Gulper",
  38563. height: math.unit(3e9, "feet")
  38564. },
  38565. {
  38566. name: "Sol-Swallowing",
  38567. height: math.unit(1e11, "feet")
  38568. },
  38569. {
  38570. name: "System Swallower",
  38571. height: math.unit(3e14, "feet")
  38572. },
  38573. {
  38574. name: "Galaxy Gulper",
  38575. height: math.unit(10, "galaxies")
  38576. },
  38577. {
  38578. name: "Light Universal",
  38579. height: math.unit(5, "universes")
  38580. },
  38581. {
  38582. name: "Universe Palm",
  38583. height: math.unit(20, "universes")
  38584. },
  38585. {
  38586. name: "Light Multiversal",
  38587. height: math.unit(5, "multiverses")
  38588. },
  38589. {
  38590. name: "Multiverse Palm",
  38591. height: math.unit(20, "multiverses")
  38592. },
  38593. {
  38594. name: "Inferno Incarnate",
  38595. height: math.unit(1e7, "multiverses")
  38596. },
  38597. ]
  38598. ))
  38599. characterMakers.push(() => makeCharacter(
  38600. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38601. {
  38602. front: {
  38603. height: math.unit(8, "feet"),
  38604. weight: math.unit(1200, "lb"),
  38605. name: "Front",
  38606. image: {
  38607. source: "./media/characters/malithee/front.svg",
  38608. extra: 1675/1640,
  38609. bottom: 162/1837
  38610. }
  38611. },
  38612. },
  38613. [
  38614. {
  38615. name: "Mortal Interaction",
  38616. height: math.unit(8, "feet"),
  38617. default: true
  38618. },
  38619. {
  38620. name: "Large",
  38621. height: math.unit(24, "feet")
  38622. },
  38623. {
  38624. name: "Kaiju",
  38625. height: math.unit(240, "feet")
  38626. },
  38627. {
  38628. name: "Megamacro",
  38629. height: math.unit(8000, "feet")
  38630. },
  38631. {
  38632. name: "Continent Cracker",
  38633. height: math.unit(24e6, "feet")
  38634. },
  38635. {
  38636. name: "Earth-Eclipsing",
  38637. height: math.unit(2.4e8, "feet")
  38638. },
  38639. {
  38640. name: "Sol-Swallowing",
  38641. height: math.unit(8e10, "feet")
  38642. },
  38643. {
  38644. name: "Galaxy Gulper",
  38645. height: math.unit(8, "galaxies")
  38646. },
  38647. {
  38648. name: "Light Universal",
  38649. height: math.unit(4, "universes")
  38650. },
  38651. {
  38652. name: "Universe Atoms",
  38653. height: math.unit(1.829e9, "universes")
  38654. },
  38655. {
  38656. name: "Light Multiversal",
  38657. height: math.unit(4, "multiverses")
  38658. },
  38659. {
  38660. name: "Multiverse Atoms",
  38661. height: math.unit(1.829e9, "multiverses")
  38662. },
  38663. {
  38664. name: "Nigh-Omnipresence",
  38665. height: math.unit(8e261, "multiverses")
  38666. },
  38667. ]
  38668. ))
  38669. characterMakers.push(() => makeCharacter(
  38670. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38671. {
  38672. front: {
  38673. height: math.unit(10, "feet"),
  38674. weight: math.unit(1500, "lb"),
  38675. name: "Front",
  38676. image: {
  38677. source: "./media/characters/miles-thestia/front.svg",
  38678. extra: 1812/1727,
  38679. bottom: 86/1898
  38680. }
  38681. },
  38682. back: {
  38683. height: math.unit(10, "feet"),
  38684. weight: math.unit(1500, "lb"),
  38685. name: "Back",
  38686. image: {
  38687. source: "./media/characters/miles-thestia/back.svg",
  38688. extra: 1799/1690,
  38689. bottom: 47/1846
  38690. }
  38691. },
  38692. frontNsfw: {
  38693. height: math.unit(10, "feet"),
  38694. weight: math.unit(1500, "lb"),
  38695. name: "Front (NSFW)",
  38696. image: {
  38697. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38698. extra: 1812/1727,
  38699. bottom: 86/1898
  38700. }
  38701. },
  38702. },
  38703. [
  38704. {
  38705. name: "Mini-Macro",
  38706. height: math.unit(10, "feet"),
  38707. default: true
  38708. },
  38709. ]
  38710. ))
  38711. characterMakers.push(() => makeCharacter(
  38712. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38713. {
  38714. front: {
  38715. height: math.unit(25, "feet"),
  38716. name: "Front",
  38717. image: {
  38718. source: "./media/characters/titan-s-wulf/front.svg",
  38719. extra: 1560/1484,
  38720. bottom: 76/1636
  38721. }
  38722. },
  38723. },
  38724. [
  38725. {
  38726. name: "Smallest",
  38727. height: math.unit(25, "feet"),
  38728. default: true
  38729. },
  38730. {
  38731. name: "Normal",
  38732. height: math.unit(200, "feet")
  38733. },
  38734. {
  38735. name: "Macro",
  38736. height: math.unit(200000, "feet")
  38737. },
  38738. {
  38739. name: "Multiversal Original",
  38740. height: math.unit(10000, "multiverses")
  38741. },
  38742. ]
  38743. ))
  38744. characterMakers.push(() => makeCharacter(
  38745. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38746. {
  38747. front: {
  38748. height: math.unit(8, "feet"),
  38749. weight: math.unit(553, "lb"),
  38750. name: "Front",
  38751. image: {
  38752. source: "./media/characters/tawendeh/front.svg",
  38753. extra: 2365/2268,
  38754. bottom: 83/2448
  38755. }
  38756. },
  38757. frontClothed: {
  38758. height: math.unit(8, "feet"),
  38759. weight: math.unit(553, "lb"),
  38760. name: "Front (Clothed)",
  38761. image: {
  38762. source: "./media/characters/tawendeh/front-clothed.svg",
  38763. extra: 2365/2268,
  38764. bottom: 83/2448
  38765. }
  38766. },
  38767. back: {
  38768. height: math.unit(8, "feet"),
  38769. weight: math.unit(553, "lb"),
  38770. name: "Back",
  38771. image: {
  38772. source: "./media/characters/tawendeh/back.svg",
  38773. extra: 2397/2294,
  38774. bottom: 42/2439
  38775. }
  38776. },
  38777. },
  38778. [
  38779. {
  38780. name: "Mortal Interaction",
  38781. height: math.unit(8, "feet"),
  38782. default: true
  38783. },
  38784. {
  38785. name: "Giant",
  38786. height: math.unit(80, "feet")
  38787. },
  38788. {
  38789. name: "Macro",
  38790. height: math.unit(800, "feet")
  38791. },
  38792. {
  38793. name: "Megamacro",
  38794. height: math.unit(8000, "feet")
  38795. },
  38796. {
  38797. name: "City-Crushing",
  38798. height: math.unit(24000, "feet")
  38799. },
  38800. {
  38801. name: "Mountain-Mashing",
  38802. height: math.unit(80000, "feet")
  38803. },
  38804. {
  38805. name: "Nation Nemesis",
  38806. height: math.unit(8e6, "feet")
  38807. },
  38808. {
  38809. name: "Continent Cracker",
  38810. height: math.unit(24e6, "feet")
  38811. },
  38812. {
  38813. name: "Earth-Eclipsing",
  38814. height: math.unit(2.4e8, "feet")
  38815. },
  38816. {
  38817. name: "Gas Giant Gulper",
  38818. height: math.unit(2.4e9, "feet")
  38819. },
  38820. {
  38821. name: "Sol-Swallowing",
  38822. height: math.unit(8e10, "feet")
  38823. },
  38824. {
  38825. name: "Galaxy Gulper",
  38826. height: math.unit(8, "galaxies")
  38827. },
  38828. {
  38829. name: "Cosmos Churner",
  38830. height: math.unit(8, "universes")
  38831. },
  38832. {
  38833. name: "Omnipotent Otter",
  38834. height: math.unit(80, "universes")
  38835. },
  38836. ]
  38837. ))
  38838. characterMakers.push(() => makeCharacter(
  38839. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38840. {
  38841. front: {
  38842. height: math.unit(2.6, "meters"),
  38843. weight: math.unit(900, "kg"),
  38844. name: "Front",
  38845. image: {
  38846. source: "./media/characters/neesha/front.svg",
  38847. extra: 1803/1653,
  38848. bottom: 128/1931
  38849. }
  38850. },
  38851. },
  38852. [
  38853. {
  38854. name: "Normal",
  38855. height: math.unit(2.6, "meters"),
  38856. default: true
  38857. },
  38858. {
  38859. name: "Macro",
  38860. height: math.unit(50, "meters")
  38861. },
  38862. ]
  38863. ))
  38864. characterMakers.push(() => makeCharacter(
  38865. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38866. {
  38867. front: {
  38868. height: math.unit(5, "feet"),
  38869. weight: math.unit(185, "lb"),
  38870. name: "Front",
  38871. image: {
  38872. source: "./media/characters/kyera/front.svg",
  38873. extra: 1875/1790,
  38874. bottom: 96/1971
  38875. }
  38876. },
  38877. },
  38878. [
  38879. {
  38880. name: "Normal",
  38881. height: math.unit(5, "feet"),
  38882. default: true
  38883. },
  38884. ]
  38885. ))
  38886. characterMakers.push(() => makeCharacter(
  38887. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38888. {
  38889. front: {
  38890. height: math.unit(7 + 6/12, "feet"),
  38891. weight: math.unit(540, "lb"),
  38892. name: "Front",
  38893. image: {
  38894. source: "./media/characters/yuko/front.svg",
  38895. extra: 1282/1222,
  38896. bottom: 101/1383
  38897. }
  38898. },
  38899. frontClothed: {
  38900. height: math.unit(7 + 6/12, "feet"),
  38901. weight: math.unit(540, "lb"),
  38902. name: "Front (Clothed)",
  38903. image: {
  38904. source: "./media/characters/yuko/front-clothed.svg",
  38905. extra: 1282/1222,
  38906. bottom: 101/1383
  38907. }
  38908. },
  38909. },
  38910. [
  38911. {
  38912. name: "Normal",
  38913. height: math.unit(7 + 6/12, "feet"),
  38914. default: true
  38915. },
  38916. {
  38917. name: "Macro",
  38918. height: math.unit(26 + 9/12, "feet")
  38919. },
  38920. {
  38921. name: "Megamacro",
  38922. height: math.unit(300, "feet")
  38923. },
  38924. {
  38925. name: "Gigamacro",
  38926. height: math.unit(5000, "feet")
  38927. },
  38928. {
  38929. name: "Planetary",
  38930. height: math.unit(10000, "miles")
  38931. },
  38932. ]
  38933. ))
  38934. characterMakers.push(() => makeCharacter(
  38935. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38936. {
  38937. front: {
  38938. height: math.unit(8 + 2/12, "feet"),
  38939. weight: math.unit(600, "lb"),
  38940. name: "Front",
  38941. image: {
  38942. source: "./media/characters/deam-nitrel/front.svg",
  38943. extra: 1308/1234,
  38944. bottom: 125/1433
  38945. }
  38946. },
  38947. },
  38948. [
  38949. {
  38950. name: "Normal",
  38951. height: math.unit(8 + 2/12, "feet"),
  38952. default: true
  38953. },
  38954. ]
  38955. ))
  38956. characterMakers.push(() => makeCharacter(
  38957. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38958. {
  38959. front: {
  38960. height: math.unit(6.1, "feet"),
  38961. weight: math.unit(180, "lb"),
  38962. name: "Front",
  38963. image: {
  38964. source: "./media/characters/skyress/front.svg",
  38965. extra: 1045/915,
  38966. bottom: 28/1073
  38967. }
  38968. },
  38969. maw: {
  38970. height: math.unit(1, "feet"),
  38971. name: "Maw",
  38972. image: {
  38973. source: "./media/characters/skyress/maw.svg"
  38974. }
  38975. },
  38976. },
  38977. [
  38978. {
  38979. name: "Normal",
  38980. height: math.unit(6.1, "feet"),
  38981. default: true
  38982. },
  38983. {
  38984. name: "Macro",
  38985. height: math.unit(200, "feet")
  38986. },
  38987. ]
  38988. ))
  38989. characterMakers.push(() => makeCharacter(
  38990. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38991. {
  38992. front: {
  38993. height: math.unit(4 + 2/12, "feet"),
  38994. weight: math.unit(40, "kg"),
  38995. name: "Front",
  38996. image: {
  38997. source: "./media/characters/amethyst-jones/front.svg",
  38998. extra: 1220/1150,
  38999. bottom: 101/1321
  39000. }
  39001. },
  39002. },
  39003. [
  39004. {
  39005. name: "Normal",
  39006. height: math.unit(4 + 2/12, "feet"),
  39007. default: true
  39008. },
  39009. ]
  39010. ))
  39011. characterMakers.push(() => makeCharacter(
  39012. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39013. {
  39014. front: {
  39015. height: math.unit(1.7, "m"),
  39016. weight: math.unit(135, "lb"),
  39017. name: "Front",
  39018. image: {
  39019. source: "./media/characters/jade/front.svg",
  39020. extra: 1818/1767,
  39021. bottom: 32/1850
  39022. }
  39023. },
  39024. back: {
  39025. height: math.unit(1.7, "m"),
  39026. weight: math.unit(135, "lb"),
  39027. name: "Back",
  39028. image: {
  39029. source: "./media/characters/jade/back.svg",
  39030. extra: 1869/1809,
  39031. bottom: 35/1904
  39032. }
  39033. },
  39034. hand: {
  39035. height: math.unit(0.24, "m"),
  39036. name: "Hand",
  39037. image: {
  39038. source: "./media/characters/jade/hand.svg"
  39039. }
  39040. },
  39041. foot: {
  39042. height: math.unit(0.263, "m"),
  39043. name: "Foot",
  39044. image: {
  39045. source: "./media/characters/jade/foot.svg"
  39046. }
  39047. },
  39048. dick: {
  39049. height: math.unit(0.47, "m"),
  39050. name: "Dick",
  39051. image: {
  39052. source: "./media/characters/jade/dick.svg"
  39053. }
  39054. },
  39055. },
  39056. [
  39057. {
  39058. name: "Micro",
  39059. height: math.unit(22, "cm")
  39060. },
  39061. {
  39062. name: "Normal",
  39063. height: math.unit(1.7, "m"),
  39064. default: true
  39065. },
  39066. {
  39067. name: "Macro",
  39068. height: math.unit(152, "m")
  39069. },
  39070. ]
  39071. ))
  39072. characterMakers.push(() => makeCharacter(
  39073. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39074. {
  39075. front: {
  39076. height: math.unit(100, "miles"),
  39077. weight: math.unit(20000, "tons"),
  39078. name: "Front",
  39079. image: {
  39080. source: "./media/characters/cookie/front.svg",
  39081. extra: 1125/1070,
  39082. bottom: 30/1155
  39083. }
  39084. },
  39085. },
  39086. [
  39087. {
  39088. name: "Big",
  39089. height: math.unit(50, "feet")
  39090. },
  39091. {
  39092. name: "Macro",
  39093. height: math.unit(100, "miles"),
  39094. default: true
  39095. },
  39096. {
  39097. name: "Megamacro",
  39098. height: math.unit(90000, "miles")
  39099. },
  39100. ]
  39101. ))
  39102. characterMakers.push(() => makeCharacter(
  39103. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39104. {
  39105. front: {
  39106. height: math.unit(6, "feet"),
  39107. weight: math.unit(145, "lb"),
  39108. name: "Front",
  39109. image: {
  39110. source: "./media/characters/farzian/front.svg",
  39111. extra: 1902/1693,
  39112. bottom: 108/2010
  39113. }
  39114. },
  39115. },
  39116. [
  39117. {
  39118. name: "Macro",
  39119. height: math.unit(500, "feet"),
  39120. default: true
  39121. },
  39122. ]
  39123. ))
  39124. characterMakers.push(() => makeCharacter(
  39125. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39126. {
  39127. front: {
  39128. height: math.unit(3 + 6/12, "feet"),
  39129. weight: math.unit(50, "lb"),
  39130. name: "Front",
  39131. image: {
  39132. source: "./media/characters/kimberly-tilson/front.svg",
  39133. extra: 1400/1322,
  39134. bottom: 36/1436
  39135. }
  39136. },
  39137. back: {
  39138. height: math.unit(3 + 6/12, "feet"),
  39139. weight: math.unit(50, "lb"),
  39140. name: "Back",
  39141. image: {
  39142. source: "./media/characters/kimberly-tilson/back.svg",
  39143. extra: 1370/1307,
  39144. bottom: 20/1390
  39145. }
  39146. },
  39147. },
  39148. [
  39149. {
  39150. name: "Normal",
  39151. height: math.unit(3 + 6/12, "feet"),
  39152. default: true
  39153. },
  39154. ]
  39155. ))
  39156. characterMakers.push(() => makeCharacter(
  39157. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39158. {
  39159. front: {
  39160. height: math.unit(1148, "feet"),
  39161. weight: math.unit(34057, "lb"),
  39162. name: "Front",
  39163. image: {
  39164. source: "./media/characters/harthos/front.svg",
  39165. extra: 1391/1339,
  39166. bottom: 13/1404
  39167. }
  39168. },
  39169. },
  39170. [
  39171. {
  39172. name: "Macro",
  39173. height: math.unit(1148, "feet"),
  39174. default: true
  39175. },
  39176. ]
  39177. ))
  39178. characterMakers.push(() => makeCharacter(
  39179. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39180. {
  39181. front: {
  39182. height: math.unit(15, "feet"),
  39183. name: "Front",
  39184. image: {
  39185. source: "./media/characters/hypatia/front.svg",
  39186. extra: 1653/1591,
  39187. bottom: 79/1732
  39188. }
  39189. },
  39190. },
  39191. [
  39192. {
  39193. name: "Normal",
  39194. height: math.unit(15, "feet")
  39195. },
  39196. {
  39197. name: "Small",
  39198. height: math.unit(300, "feet")
  39199. },
  39200. {
  39201. name: "Macro",
  39202. height: math.unit(2500, "feet"),
  39203. default: true
  39204. },
  39205. {
  39206. name: "Mega Macro",
  39207. height: math.unit(1500, "miles")
  39208. },
  39209. {
  39210. name: "Giga Macro",
  39211. height: math.unit(1.5e6, "miles")
  39212. },
  39213. ]
  39214. ))
  39215. characterMakers.push(() => makeCharacter(
  39216. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39217. {
  39218. front: {
  39219. height: math.unit(6, "feet"),
  39220. weight: math.unit(200, "lb"),
  39221. name: "Front",
  39222. image: {
  39223. source: "./media/characters/wulver/front.svg",
  39224. extra: 1724/1632,
  39225. bottom: 130/1854
  39226. }
  39227. },
  39228. frontNsfw: {
  39229. height: math.unit(6, "feet"),
  39230. weight: math.unit(200, "lb"),
  39231. name: "Front (NSFW)",
  39232. image: {
  39233. source: "./media/characters/wulver/front-nsfw.svg",
  39234. extra: 1724/1632,
  39235. bottom: 130/1854
  39236. }
  39237. },
  39238. },
  39239. [
  39240. {
  39241. name: "Human-Sized",
  39242. height: math.unit(6, "feet")
  39243. },
  39244. {
  39245. name: "Normal",
  39246. height: math.unit(4, "meters"),
  39247. default: true
  39248. },
  39249. {
  39250. name: "Large",
  39251. height: math.unit(6, "m")
  39252. },
  39253. ]
  39254. ))
  39255. characterMakers.push(() => makeCharacter(
  39256. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39257. {
  39258. front: {
  39259. height: math.unit(7, "feet"),
  39260. name: "Front",
  39261. image: {
  39262. source: "./media/characters/maru/front.svg",
  39263. extra: 1595/1570,
  39264. bottom: 0/1595
  39265. }
  39266. },
  39267. },
  39268. [
  39269. {
  39270. name: "Normal",
  39271. height: math.unit(7, "feet"),
  39272. default: true
  39273. },
  39274. {
  39275. name: "Macro",
  39276. height: math.unit(700, "feet")
  39277. },
  39278. {
  39279. name: "Mega Macro",
  39280. height: math.unit(25, "miles")
  39281. },
  39282. ]
  39283. ))
  39284. characterMakers.push(() => makeCharacter(
  39285. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39286. {
  39287. front: {
  39288. height: math.unit(6, "feet"),
  39289. weight: math.unit(170, "lb"),
  39290. name: "Front",
  39291. image: {
  39292. source: "./media/characters/xenon/front.svg",
  39293. extra: 1376/1305,
  39294. bottom: 56/1432
  39295. }
  39296. },
  39297. back: {
  39298. height: math.unit(6, "feet"),
  39299. weight: math.unit(170, "lb"),
  39300. name: "Back",
  39301. image: {
  39302. source: "./media/characters/xenon/back.svg",
  39303. extra: 1328/1259,
  39304. bottom: 95/1423
  39305. }
  39306. },
  39307. maw: {
  39308. height: math.unit(0.52, "feet"),
  39309. name: "Maw",
  39310. image: {
  39311. source: "./media/characters/xenon/maw.svg"
  39312. }
  39313. },
  39314. hand: {
  39315. height: math.unit(0.82, "feet"),
  39316. name: "Hand",
  39317. image: {
  39318. source: "./media/characters/xenon/hand.svg"
  39319. }
  39320. },
  39321. foot: {
  39322. height: math.unit(1.13, "feet"),
  39323. name: "Foot",
  39324. image: {
  39325. source: "./media/characters/xenon/foot.svg"
  39326. }
  39327. },
  39328. },
  39329. [
  39330. {
  39331. name: "Micro",
  39332. height: math.unit(0.8, "inches")
  39333. },
  39334. {
  39335. name: "Normal",
  39336. height: math.unit(6, "feet")
  39337. },
  39338. {
  39339. name: "Macro",
  39340. height: math.unit(50, "feet"),
  39341. default: true
  39342. },
  39343. {
  39344. name: "Macro+",
  39345. height: math.unit(250, "feet")
  39346. },
  39347. {
  39348. name: "Megamacro",
  39349. height: math.unit(1500, "feet")
  39350. },
  39351. ]
  39352. ))
  39353. characterMakers.push(() => makeCharacter(
  39354. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39355. {
  39356. front: {
  39357. height: math.unit(7 + 5/12, "feet"),
  39358. name: "Front",
  39359. image: {
  39360. source: "./media/characters/zane/front.svg",
  39361. extra: 1260/1203,
  39362. bottom: 94/1354
  39363. }
  39364. },
  39365. back: {
  39366. height: math.unit(5.05, "feet"),
  39367. name: "Back",
  39368. image: {
  39369. source: "./media/characters/zane/back.svg",
  39370. extra: 893/829,
  39371. bottom: 30/923
  39372. }
  39373. },
  39374. werewolf: {
  39375. height: math.unit(11, "feet"),
  39376. name: "Werewolf",
  39377. image: {
  39378. source: "./media/characters/zane/werewolf.svg",
  39379. extra: 1383/1323,
  39380. bottom: 89/1472
  39381. }
  39382. },
  39383. foot: {
  39384. height: math.unit(1.46, "feet"),
  39385. name: "Foot",
  39386. image: {
  39387. source: "./media/characters/zane/foot.svg"
  39388. }
  39389. },
  39390. footFront: {
  39391. height: math.unit(0.784, "feet"),
  39392. name: "Foot (Front)",
  39393. image: {
  39394. source: "./media/characters/zane/foot-front.svg"
  39395. }
  39396. },
  39397. dick: {
  39398. height: math.unit(1.95, "feet"),
  39399. name: "Dick",
  39400. image: {
  39401. source: "./media/characters/zane/dick.svg"
  39402. }
  39403. },
  39404. dickWerewolf: {
  39405. height: math.unit(3.77, "feet"),
  39406. name: "Dick (Werewolf)",
  39407. image: {
  39408. source: "./media/characters/zane/dick.svg"
  39409. }
  39410. },
  39411. },
  39412. [
  39413. {
  39414. name: "Normal",
  39415. height: math.unit(7 + 5/12, "feet"),
  39416. default: true
  39417. },
  39418. ]
  39419. ))
  39420. characterMakers.push(() => makeCharacter(
  39421. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39422. {
  39423. front: {
  39424. height: math.unit(6 + 2/12, "feet"),
  39425. weight: math.unit(284, "lb"),
  39426. name: "Front",
  39427. image: {
  39428. source: "./media/characters/benni-desparque/front.svg",
  39429. extra: 1353/1126,
  39430. bottom: 69/1422
  39431. }
  39432. },
  39433. },
  39434. [
  39435. {
  39436. name: "Civilian",
  39437. height: math.unit(6 + 2/12, "feet")
  39438. },
  39439. {
  39440. name: "Normal",
  39441. height: math.unit(98, "feet"),
  39442. default: true
  39443. },
  39444. {
  39445. name: "Kaiju Fighter",
  39446. height: math.unit(268, "feet")
  39447. },
  39448. ]
  39449. ))
  39450. characterMakers.push(() => makeCharacter(
  39451. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39452. {
  39453. front: {
  39454. height: math.unit(5, "feet"),
  39455. weight: math.unit(105, "lb"),
  39456. name: "Front",
  39457. image: {
  39458. source: "./media/characters/maxine/front.svg",
  39459. extra: 1386/1250,
  39460. bottom: 71/1457
  39461. }
  39462. },
  39463. },
  39464. [
  39465. {
  39466. name: "Normal",
  39467. height: math.unit(5, "feet"),
  39468. default: true
  39469. },
  39470. ]
  39471. ))
  39472. characterMakers.push(() => makeCharacter(
  39473. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39474. {
  39475. front: {
  39476. height: math.unit(11 + 7/12, "feet"),
  39477. weight: math.unit(9576, "lb"),
  39478. name: "Front",
  39479. image: {
  39480. source: "./media/characters/scaly/front.svg",
  39481. extra: 888/867,
  39482. bottom: 36/924
  39483. }
  39484. },
  39485. },
  39486. [
  39487. {
  39488. name: "Normal",
  39489. height: math.unit(11 + 7/12, "feet"),
  39490. default: true
  39491. },
  39492. ]
  39493. ))
  39494. characterMakers.push(() => makeCharacter(
  39495. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39496. {
  39497. front: {
  39498. height: math.unit(9, "inches"),
  39499. name: "Front",
  39500. image: {
  39501. source: "./media/characters/saelria/front.svg",
  39502. extra: 662/621,
  39503. bottom: 12/674
  39504. }
  39505. },
  39506. },
  39507. [
  39508. {
  39509. name: "Tiny",
  39510. height: math.unit(9, "inches"),
  39511. default: true
  39512. },
  39513. ]
  39514. ))
  39515. characterMakers.push(() => makeCharacter(
  39516. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39517. {
  39518. front: {
  39519. height: math.unit(80, "meters"),
  39520. weight: math.unit(7000, "tonnes"),
  39521. name: "Front",
  39522. image: {
  39523. source: "./media/characters/tef/front.svg",
  39524. extra: 2036/1991,
  39525. bottom: 54/2090
  39526. }
  39527. },
  39528. back: {
  39529. height: math.unit(80, "meters"),
  39530. weight: math.unit(7000, "tonnes"),
  39531. name: "Back",
  39532. image: {
  39533. source: "./media/characters/tef/back.svg",
  39534. extra: 2036/1991,
  39535. bottom: 54/2090
  39536. }
  39537. },
  39538. },
  39539. [
  39540. {
  39541. name: "Macro",
  39542. height: math.unit(80, "meters"),
  39543. default: true
  39544. },
  39545. ]
  39546. ))
  39547. characterMakers.push(() => makeCharacter(
  39548. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39549. {
  39550. front: {
  39551. height: math.unit(13, "feet"),
  39552. weight: math.unit(6, "tons"),
  39553. name: "Front",
  39554. image: {
  39555. source: "./media/characters/rover/front.svg",
  39556. extra: 1233/1156,
  39557. bottom: 50/1283
  39558. }
  39559. },
  39560. back: {
  39561. height: math.unit(13, "feet"),
  39562. weight: math.unit(6, "tons"),
  39563. name: "Back",
  39564. image: {
  39565. source: "./media/characters/rover/back.svg",
  39566. extra: 1327/1258,
  39567. bottom: 39/1366
  39568. }
  39569. },
  39570. },
  39571. [
  39572. {
  39573. name: "Normal",
  39574. height: math.unit(13, "feet"),
  39575. default: true
  39576. },
  39577. {
  39578. name: "Macro",
  39579. height: math.unit(1300, "feet")
  39580. },
  39581. {
  39582. name: "Megamacro",
  39583. height: math.unit(1300, "miles")
  39584. },
  39585. {
  39586. name: "Gigamacro",
  39587. height: math.unit(1300000, "miles")
  39588. },
  39589. ]
  39590. ))
  39591. characterMakers.push(() => makeCharacter(
  39592. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39593. {
  39594. front: {
  39595. height: math.unit(6, "feet"),
  39596. weight: math.unit(150, "lb"),
  39597. name: "Front",
  39598. image: {
  39599. source: "./media/characters/ariz/front.svg",
  39600. extra: 1401/1346,
  39601. bottom: 5/1406
  39602. }
  39603. },
  39604. },
  39605. [
  39606. {
  39607. name: "Normal",
  39608. height: math.unit(10, "feet"),
  39609. default: true
  39610. },
  39611. ]
  39612. ))
  39613. characterMakers.push(() => makeCharacter(
  39614. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39615. {
  39616. front: {
  39617. height: math.unit(6, "feet"),
  39618. weight: math.unit(140, "lb"),
  39619. name: "Front",
  39620. image: {
  39621. source: "./media/characters/sigrun/front.svg",
  39622. extra: 1418/1359,
  39623. bottom: 27/1445
  39624. }
  39625. },
  39626. },
  39627. [
  39628. {
  39629. name: "Macro",
  39630. height: math.unit(35, "feet"),
  39631. default: true
  39632. },
  39633. ]
  39634. ))
  39635. characterMakers.push(() => makeCharacter(
  39636. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39637. {
  39638. front: {
  39639. height: math.unit(6, "feet"),
  39640. weight: math.unit(150, "lb"),
  39641. name: "Front",
  39642. image: {
  39643. source: "./media/characters/numin/front.svg",
  39644. extra: 1433/1388,
  39645. bottom: 12/1445
  39646. }
  39647. },
  39648. },
  39649. [
  39650. {
  39651. name: "Macro",
  39652. height: math.unit(21.5, "km"),
  39653. default: true
  39654. },
  39655. ]
  39656. ))
  39657. characterMakers.push(() => makeCharacter(
  39658. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39659. {
  39660. front: {
  39661. height: math.unit(6, "feet"),
  39662. weight: math.unit(463, "lb"),
  39663. name: "Front",
  39664. image: {
  39665. source: "./media/characters/melwa/front.svg",
  39666. extra: 1307/1248,
  39667. bottom: 93/1400
  39668. }
  39669. },
  39670. },
  39671. [
  39672. {
  39673. name: "Macro",
  39674. height: math.unit(50, "meters"),
  39675. default: true
  39676. },
  39677. ]
  39678. ))
  39679. characterMakers.push(() => makeCharacter(
  39680. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39681. {
  39682. front: {
  39683. height: math.unit(325, "feet"),
  39684. name: "Front",
  39685. image: {
  39686. source: "./media/characters/zorkaiju/front.svg",
  39687. extra: 1955/1814,
  39688. bottom: 40/1995
  39689. }
  39690. },
  39691. frontExtended: {
  39692. height: math.unit(325, "feet"),
  39693. name: "Front (Extended)",
  39694. image: {
  39695. source: "./media/characters/zorkaiju/front-extended.svg",
  39696. extra: 1955/1814,
  39697. bottom: 40/1995
  39698. }
  39699. },
  39700. side: {
  39701. height: math.unit(325, "feet"),
  39702. name: "Side",
  39703. image: {
  39704. source: "./media/characters/zorkaiju/side.svg",
  39705. extra: 1495/1396,
  39706. bottom: 17/1512
  39707. }
  39708. },
  39709. sideExtended: {
  39710. height: math.unit(325, "feet"),
  39711. name: "Side (Extended)",
  39712. image: {
  39713. source: "./media/characters/zorkaiju/side-extended.svg",
  39714. extra: 1495/1396,
  39715. bottom: 17/1512
  39716. }
  39717. },
  39718. back: {
  39719. height: math.unit(325, "feet"),
  39720. name: "Back",
  39721. image: {
  39722. source: "./media/characters/zorkaiju/back.svg",
  39723. extra: 1959/1821,
  39724. bottom: 31/1990
  39725. }
  39726. },
  39727. backExtended: {
  39728. height: math.unit(325, "feet"),
  39729. name: "Back (Extended)",
  39730. image: {
  39731. source: "./media/characters/zorkaiju/back-extended.svg",
  39732. extra: 1959/1821,
  39733. bottom: 31/1990
  39734. }
  39735. },
  39736. hand: {
  39737. height: math.unit(58.4, "feet"),
  39738. name: "Hand",
  39739. image: {
  39740. source: "./media/characters/zorkaiju/hand.svg"
  39741. }
  39742. },
  39743. handExtended: {
  39744. height: math.unit(61.4, "feet"),
  39745. name: "Hand (Extended)",
  39746. image: {
  39747. source: "./media/characters/zorkaiju/hand-extended.svg"
  39748. }
  39749. },
  39750. foot: {
  39751. height: math.unit(95, "feet"),
  39752. name: "Foot",
  39753. image: {
  39754. source: "./media/characters/zorkaiju/foot.svg"
  39755. }
  39756. },
  39757. leftArm: {
  39758. height: math.unit(59, "feet"),
  39759. name: "Left Arm",
  39760. image: {
  39761. source: "./media/characters/zorkaiju/left-arm.svg"
  39762. }
  39763. },
  39764. rightArm: {
  39765. height: math.unit(59, "feet"),
  39766. name: "Right Arm",
  39767. image: {
  39768. source: "./media/characters/zorkaiju/right-arm.svg"
  39769. }
  39770. },
  39771. tail: {
  39772. height: math.unit(104, "feet"),
  39773. name: "Tail",
  39774. image: {
  39775. source: "./media/characters/zorkaiju/tail.svg"
  39776. }
  39777. },
  39778. tailExtended: {
  39779. height: math.unit(104, "feet"),
  39780. name: "Tail (Extended)",
  39781. image: {
  39782. source: "./media/characters/zorkaiju/tail-extended.svg"
  39783. }
  39784. },
  39785. tailBottom: {
  39786. height: math.unit(104, "feet"),
  39787. name: "Tail Bottom",
  39788. image: {
  39789. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39790. }
  39791. },
  39792. crystal: {
  39793. height: math.unit(27.54, "feet"),
  39794. name: "Crystal",
  39795. image: {
  39796. source: "./media/characters/zorkaiju/crystal.svg"
  39797. }
  39798. },
  39799. },
  39800. [
  39801. {
  39802. name: "Kaiju",
  39803. height: math.unit(325, "feet"),
  39804. default: true
  39805. },
  39806. ]
  39807. ))
  39808. characterMakers.push(() => makeCharacter(
  39809. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39810. {
  39811. front: {
  39812. height: math.unit(6 + 1/12, "feet"),
  39813. weight: math.unit(115, "lb"),
  39814. name: "Front",
  39815. image: {
  39816. source: "./media/characters/bailey-belfry/front.svg",
  39817. extra: 1240/1121,
  39818. bottom: 101/1341
  39819. }
  39820. },
  39821. },
  39822. [
  39823. {
  39824. name: "Normal",
  39825. height: math.unit(6 + 1/12, "feet"),
  39826. default: true
  39827. },
  39828. ]
  39829. ))
  39830. characterMakers.push(() => makeCharacter(
  39831. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39832. {
  39833. side: {
  39834. height: math.unit(4, "meters"),
  39835. weight: math.unit(250, "kg"),
  39836. name: "Side",
  39837. image: {
  39838. source: "./media/characters/blacky/side.svg",
  39839. extra: 1027/919,
  39840. bottom: 43/1070
  39841. }
  39842. },
  39843. maw: {
  39844. height: math.unit(1, "meters"),
  39845. name: "Maw",
  39846. image: {
  39847. source: "./media/characters/blacky/maw.svg"
  39848. }
  39849. },
  39850. paw: {
  39851. height: math.unit(1, "meters"),
  39852. name: "Paw",
  39853. image: {
  39854. source: "./media/characters/blacky/paw.svg"
  39855. }
  39856. },
  39857. },
  39858. [
  39859. {
  39860. name: "Normal",
  39861. height: math.unit(4, "meters"),
  39862. default: true
  39863. },
  39864. ]
  39865. ))
  39866. characterMakers.push(() => makeCharacter(
  39867. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39868. {
  39869. front: {
  39870. height: math.unit(170, "cm"),
  39871. weight: math.unit(66, "kg"),
  39872. name: "Front",
  39873. image: {
  39874. source: "./media/characters/thux-ei/front.svg",
  39875. extra: 1109/1011,
  39876. bottom: 8/1117
  39877. }
  39878. },
  39879. },
  39880. [
  39881. {
  39882. name: "Normal",
  39883. height: math.unit(170, "cm"),
  39884. default: true
  39885. },
  39886. ]
  39887. ))
  39888. characterMakers.push(() => makeCharacter(
  39889. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39890. {
  39891. front: {
  39892. height: math.unit(5, "feet"),
  39893. weight: math.unit(120, "lb"),
  39894. name: "Front",
  39895. image: {
  39896. source: "./media/characters/roxanne-voltaire/front.svg",
  39897. extra: 1901/1779,
  39898. bottom: 53/1954
  39899. }
  39900. },
  39901. },
  39902. [
  39903. {
  39904. name: "Normal",
  39905. height: math.unit(5, "feet"),
  39906. default: true
  39907. },
  39908. {
  39909. name: "Giant",
  39910. height: math.unit(50, "feet")
  39911. },
  39912. {
  39913. name: "Titan",
  39914. height: math.unit(500, "feet")
  39915. },
  39916. {
  39917. name: "Macro",
  39918. height: math.unit(5000, "feet")
  39919. },
  39920. {
  39921. name: "Megamacro",
  39922. height: math.unit(50000, "feet")
  39923. },
  39924. {
  39925. name: "Gigamacro",
  39926. height: math.unit(500000, "feet")
  39927. },
  39928. {
  39929. name: "Teramacro",
  39930. height: math.unit(5e6, "feet")
  39931. },
  39932. ]
  39933. ))
  39934. characterMakers.push(() => makeCharacter(
  39935. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39936. {
  39937. front: {
  39938. height: math.unit(6 + 2/12, "feet"),
  39939. name: "Front",
  39940. image: {
  39941. source: "./media/characters/squeaks/front.svg",
  39942. extra: 1823/1768,
  39943. bottom: 138/1961
  39944. }
  39945. },
  39946. },
  39947. [
  39948. {
  39949. name: "Micro",
  39950. height: math.unit(0.5, "inches")
  39951. },
  39952. {
  39953. name: "Normal",
  39954. height: math.unit(6 + 2/12, "feet"),
  39955. default: true
  39956. },
  39957. {
  39958. name: "Macro",
  39959. height: math.unit(600, "feet")
  39960. },
  39961. ]
  39962. ))
  39963. characterMakers.push(() => makeCharacter(
  39964. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39965. {
  39966. front: {
  39967. height: math.unit(1.72, "meters"),
  39968. name: "Front",
  39969. image: {
  39970. source: "./media/characters/archinger/front.svg",
  39971. extra: 1861/1675,
  39972. bottom: 125/1986
  39973. }
  39974. },
  39975. back: {
  39976. height: math.unit(1.72, "meters"),
  39977. name: "Back",
  39978. image: {
  39979. source: "./media/characters/archinger/back.svg",
  39980. extra: 1844/1701,
  39981. bottom: 104/1948
  39982. }
  39983. },
  39984. cock: {
  39985. height: math.unit(0.59, "feet"),
  39986. name: "Cock",
  39987. image: {
  39988. source: "./media/characters/archinger/cock.svg"
  39989. }
  39990. },
  39991. },
  39992. [
  39993. {
  39994. name: "Normal",
  39995. height: math.unit(1.72, "meters"),
  39996. default: true
  39997. },
  39998. {
  39999. name: "Macro",
  40000. height: math.unit(84, "meters")
  40001. },
  40002. {
  40003. name: "Macro+",
  40004. height: math.unit(112, "meters")
  40005. },
  40006. {
  40007. name: "Macro++",
  40008. height: math.unit(960, "meters")
  40009. },
  40010. {
  40011. name: "Macro+++",
  40012. height: math.unit(4, "km")
  40013. },
  40014. {
  40015. name: "Macro++++",
  40016. height: math.unit(48, "km")
  40017. },
  40018. {
  40019. name: "Macro+++++",
  40020. height: math.unit(4500, "km")
  40021. },
  40022. ]
  40023. ))
  40024. characterMakers.push(() => makeCharacter(
  40025. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40026. {
  40027. front: {
  40028. height: math.unit(5 + 5/12, "feet"),
  40029. name: "Front",
  40030. image: {
  40031. source: "./media/characters/alsnapz/front.svg",
  40032. extra: 1157/1065,
  40033. bottom: 42/1199
  40034. }
  40035. },
  40036. },
  40037. [
  40038. {
  40039. name: "Normal",
  40040. height: math.unit(5 + 5/12, "feet"),
  40041. default: true
  40042. },
  40043. ]
  40044. ))
  40045. characterMakers.push(() => makeCharacter(
  40046. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40047. {
  40048. side: {
  40049. height: math.unit(3.2, "earths"),
  40050. name: "Side",
  40051. image: {
  40052. source: "./media/characters/mag/side.svg",
  40053. extra: 1331/1008,
  40054. bottom: 52/1383
  40055. }
  40056. },
  40057. wing: {
  40058. height: math.unit(1.94, "earths"),
  40059. name: "Wing",
  40060. image: {
  40061. source: "./media/characters/mag/wing.svg"
  40062. }
  40063. },
  40064. dick: {
  40065. height: math.unit(1.8, "earths"),
  40066. name: "Dick",
  40067. image: {
  40068. source: "./media/characters/mag/dick.svg"
  40069. }
  40070. },
  40071. ass: {
  40072. height: math.unit(1.33, "earths"),
  40073. name: "Ass",
  40074. image: {
  40075. source: "./media/characters/mag/ass.svg"
  40076. }
  40077. },
  40078. head: {
  40079. height: math.unit(1.1, "earths"),
  40080. name: "Head",
  40081. image: {
  40082. source: "./media/characters/mag/head.svg"
  40083. }
  40084. },
  40085. maw: {
  40086. height: math.unit(1.62, "earths"),
  40087. name: "Maw",
  40088. image: {
  40089. source: "./media/characters/mag/maw.svg"
  40090. }
  40091. },
  40092. },
  40093. [
  40094. {
  40095. name: "Small",
  40096. height: math.unit(162, "feet")
  40097. },
  40098. {
  40099. name: "Normal",
  40100. height: math.unit(3.2, "earths"),
  40101. default: true
  40102. },
  40103. ]
  40104. ))
  40105. characterMakers.push(() => makeCharacter(
  40106. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40107. {
  40108. front: {
  40109. height: math.unit(512, "feet"),
  40110. weight: math.unit(63509, "tonnes"),
  40111. name: "Front",
  40112. image: {
  40113. source: "./media/characters/vorrel-harroc/front.svg",
  40114. extra: 1075/1063,
  40115. bottom: 62/1137
  40116. }
  40117. },
  40118. },
  40119. [
  40120. {
  40121. name: "Normal",
  40122. height: math.unit(10, "feet")
  40123. },
  40124. {
  40125. name: "Macro",
  40126. height: math.unit(512, "feet"),
  40127. default: true
  40128. },
  40129. {
  40130. name: "Megamacro",
  40131. height: math.unit(256, "miles")
  40132. },
  40133. {
  40134. name: "Gigamacro",
  40135. height: math.unit(4096, "miles")
  40136. },
  40137. ]
  40138. ))
  40139. characterMakers.push(() => makeCharacter(
  40140. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40141. {
  40142. side: {
  40143. height: math.unit(50, "feet"),
  40144. name: "Side",
  40145. image: {
  40146. source: "./media/characters/froimar/side.svg",
  40147. extra: 855/638,
  40148. bottom: 99/954
  40149. }
  40150. },
  40151. },
  40152. [
  40153. {
  40154. name: "Macro",
  40155. height: math.unit(50, "feet"),
  40156. default: true
  40157. },
  40158. ]
  40159. ))
  40160. characterMakers.push(() => makeCharacter(
  40161. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40162. {
  40163. front: {
  40164. height: math.unit(210, "miles"),
  40165. name: "Front",
  40166. image: {
  40167. source: "./media/characters/timothy/front.svg",
  40168. extra: 1007/943,
  40169. bottom: 62/1069
  40170. }
  40171. },
  40172. frontSkirt: {
  40173. height: math.unit(210, "miles"),
  40174. name: "Front (Skirt)",
  40175. image: {
  40176. source: "./media/characters/timothy/front-skirt.svg",
  40177. extra: 1007/943,
  40178. bottom: 62/1069
  40179. }
  40180. },
  40181. frontCoat: {
  40182. height: math.unit(210, "miles"),
  40183. name: "Front (Coat)",
  40184. image: {
  40185. source: "./media/characters/timothy/front-coat.svg",
  40186. extra: 1007/943,
  40187. bottom: 62/1069
  40188. }
  40189. },
  40190. },
  40191. [
  40192. {
  40193. name: "Macro",
  40194. height: math.unit(210, "miles"),
  40195. default: true
  40196. },
  40197. {
  40198. name: "Megamacro",
  40199. height: math.unit(210000, "miles")
  40200. },
  40201. ]
  40202. ))
  40203. characterMakers.push(() => makeCharacter(
  40204. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40205. {
  40206. front: {
  40207. height: math.unit(188, "feet"),
  40208. name: "Front",
  40209. image: {
  40210. source: "./media/characters/pyotr/front.svg",
  40211. extra: 1912/1826,
  40212. bottom: 18/1930
  40213. }
  40214. },
  40215. },
  40216. [
  40217. {
  40218. name: "Macro",
  40219. height: math.unit(188, "feet"),
  40220. default: true
  40221. },
  40222. {
  40223. name: "Megamacro",
  40224. height: math.unit(8, "miles")
  40225. },
  40226. ]
  40227. ))
  40228. characterMakers.push(() => makeCharacter(
  40229. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40230. {
  40231. side: {
  40232. height: math.unit(10, "feet"),
  40233. weight: math.unit(4500, "lb"),
  40234. name: "Side",
  40235. image: {
  40236. source: "./media/characters/ackart/side.svg",
  40237. extra: 1776/1668,
  40238. bottom: 116/1892
  40239. }
  40240. },
  40241. },
  40242. [
  40243. {
  40244. name: "Normal",
  40245. height: math.unit(10, "feet"),
  40246. default: true
  40247. },
  40248. ]
  40249. ))
  40250. characterMakers.push(() => makeCharacter(
  40251. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40252. {
  40253. side: {
  40254. height: math.unit(21, "feet"),
  40255. name: "Side",
  40256. image: {
  40257. source: "./media/characters/nolow/side.svg",
  40258. extra: 1484/1434,
  40259. bottom: 85/1569
  40260. }
  40261. },
  40262. sideErect: {
  40263. height: math.unit(21, "feet"),
  40264. name: "Side-erect",
  40265. image: {
  40266. source: "./media/characters/nolow/side-erect.svg",
  40267. extra: 1484/1434,
  40268. bottom: 85/1569
  40269. }
  40270. },
  40271. },
  40272. [
  40273. {
  40274. name: "Regular",
  40275. height: math.unit(12, "feet")
  40276. },
  40277. {
  40278. name: "Big Chee",
  40279. height: math.unit(21, "feet"),
  40280. default: true
  40281. },
  40282. ]
  40283. ))
  40284. characterMakers.push(() => makeCharacter(
  40285. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40286. {
  40287. front: {
  40288. height: math.unit(7, "feet"),
  40289. weight: math.unit(250, "lb"),
  40290. name: "Front",
  40291. image: {
  40292. source: "./media/characters/nines/front.svg",
  40293. extra: 1741/1607,
  40294. bottom: 41/1782
  40295. }
  40296. },
  40297. side: {
  40298. height: math.unit(7, "feet"),
  40299. weight: math.unit(250, "lb"),
  40300. name: "Side",
  40301. image: {
  40302. source: "./media/characters/nines/side.svg",
  40303. extra: 1854/1735,
  40304. bottom: 93/1947
  40305. }
  40306. },
  40307. back: {
  40308. height: math.unit(7, "feet"),
  40309. weight: math.unit(250, "lb"),
  40310. name: "Back",
  40311. image: {
  40312. source: "./media/characters/nines/back.svg",
  40313. extra: 1748/1615,
  40314. bottom: 20/1768
  40315. }
  40316. },
  40317. },
  40318. [
  40319. {
  40320. name: "Megamacro",
  40321. height: math.unit(99, "km"),
  40322. default: true
  40323. },
  40324. ]
  40325. ))
  40326. characterMakers.push(() => makeCharacter(
  40327. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40328. {
  40329. front: {
  40330. height: math.unit(5 + 10/12, "feet"),
  40331. weight: math.unit(210, "lb"),
  40332. name: "Front",
  40333. image: {
  40334. source: "./media/characters/zenith/front.svg",
  40335. extra: 1531/1452,
  40336. bottom: 198/1729
  40337. }
  40338. },
  40339. back: {
  40340. height: math.unit(5 + 10/12, "feet"),
  40341. weight: math.unit(210, "lb"),
  40342. name: "Back",
  40343. image: {
  40344. source: "./media/characters/zenith/back.svg",
  40345. extra: 1571/1487,
  40346. bottom: 75/1646
  40347. }
  40348. },
  40349. },
  40350. [
  40351. {
  40352. name: "Normal",
  40353. height: math.unit(5 + 10/12, "feet"),
  40354. default: true
  40355. }
  40356. ]
  40357. ))
  40358. characterMakers.push(() => makeCharacter(
  40359. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40360. {
  40361. front: {
  40362. height: math.unit(4, "feet"),
  40363. weight: math.unit(60, "lb"),
  40364. name: "Front",
  40365. image: {
  40366. source: "./media/characters/jasper/front.svg",
  40367. extra: 1450/1379,
  40368. bottom: 19/1469
  40369. }
  40370. },
  40371. },
  40372. [
  40373. {
  40374. name: "Normal",
  40375. height: math.unit(4, "feet"),
  40376. default: true
  40377. },
  40378. ]
  40379. ))
  40380. characterMakers.push(() => makeCharacter(
  40381. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40382. {
  40383. front: {
  40384. height: math.unit(6 + 5/12, "feet"),
  40385. weight: math.unit(290, "lb"),
  40386. name: "Front",
  40387. image: {
  40388. source: "./media/characters/tiberius-thyben/front.svg",
  40389. extra: 757/739,
  40390. bottom: 39/796
  40391. }
  40392. },
  40393. },
  40394. [
  40395. {
  40396. name: "Micro",
  40397. height: math.unit(1.5, "inches")
  40398. },
  40399. {
  40400. name: "Normal",
  40401. height: math.unit(6 + 5/12, "feet"),
  40402. default: true
  40403. },
  40404. {
  40405. name: "Macro",
  40406. height: math.unit(300, "feet")
  40407. },
  40408. ]
  40409. ))
  40410. characterMakers.push(() => makeCharacter(
  40411. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40412. {
  40413. front: {
  40414. height: math.unit(5 + 6/12, "feet"),
  40415. weight: math.unit(60, "kg"),
  40416. name: "Front",
  40417. image: {
  40418. source: "./media/characters/sabre/front.svg",
  40419. extra: 738/671,
  40420. bottom: 27/765
  40421. }
  40422. },
  40423. },
  40424. [
  40425. {
  40426. name: "Teeny",
  40427. height: math.unit(2, "inches")
  40428. },
  40429. {
  40430. name: "Smol",
  40431. height: math.unit(8, "inches")
  40432. },
  40433. {
  40434. name: "Normal",
  40435. height: math.unit(5 + 6/12, "feet"),
  40436. default: true
  40437. },
  40438. {
  40439. name: "Mini-Macro",
  40440. height: math.unit(15, "feet")
  40441. },
  40442. {
  40443. name: "Macro",
  40444. height: math.unit(50, "feet")
  40445. },
  40446. ]
  40447. ))
  40448. characterMakers.push(() => makeCharacter(
  40449. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40450. {
  40451. front: {
  40452. height: math.unit(6 + 4/12, "feet"),
  40453. weight: math.unit(170, "lb"),
  40454. name: "Front",
  40455. image: {
  40456. source: "./media/characters/charlie/front.svg",
  40457. extra: 1348/1228,
  40458. bottom: 15/1363
  40459. }
  40460. },
  40461. },
  40462. [
  40463. {
  40464. name: "Macro",
  40465. height: math.unit(1700, "meters"),
  40466. default: true
  40467. },
  40468. {
  40469. name: "MegaMacro",
  40470. height: math.unit(20400, "meters")
  40471. },
  40472. ]
  40473. ))
  40474. characterMakers.push(() => makeCharacter(
  40475. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40476. {
  40477. front: {
  40478. height: math.unit(6 + 3/12, "feet"),
  40479. weight: math.unit(185, "lb"),
  40480. name: "Front",
  40481. image: {
  40482. source: "./media/characters/susan-grant/front.svg",
  40483. extra: 1351/1327,
  40484. bottom: 26/1377
  40485. }
  40486. },
  40487. },
  40488. [
  40489. {
  40490. name: "Normal",
  40491. height: math.unit(6 + 3/12, "feet"),
  40492. default: true
  40493. },
  40494. {
  40495. name: "Macro",
  40496. height: math.unit(225, "feet")
  40497. },
  40498. {
  40499. name: "Macro+",
  40500. height: math.unit(900, "feet")
  40501. },
  40502. {
  40503. name: "MegaMacro",
  40504. height: math.unit(14400, "feet")
  40505. },
  40506. ]
  40507. ))
  40508. characterMakers.push(() => makeCharacter(
  40509. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40510. {
  40511. front: {
  40512. height: math.unit(5 + 4/12, "feet"),
  40513. weight: math.unit(110, "lb"),
  40514. name: "Front",
  40515. image: {
  40516. source: "./media/characters/axel-isanov/front.svg",
  40517. extra: 1096/1065,
  40518. bottom: 13/1109
  40519. }
  40520. },
  40521. },
  40522. [
  40523. {
  40524. name: "Normal",
  40525. height: math.unit(5 + 4/12, "feet"),
  40526. default: true
  40527. },
  40528. ]
  40529. ))
  40530. characterMakers.push(() => makeCharacter(
  40531. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40532. {
  40533. front: {
  40534. height: math.unit(9, "feet"),
  40535. weight: math.unit(467, "lb"),
  40536. name: "Front",
  40537. image: {
  40538. source: "./media/characters/necahual/front.svg",
  40539. extra: 920/873,
  40540. bottom: 26/946
  40541. }
  40542. },
  40543. back: {
  40544. height: math.unit(9, "feet"),
  40545. weight: math.unit(467, "lb"),
  40546. name: "Back",
  40547. image: {
  40548. source: "./media/characters/necahual/back.svg",
  40549. extra: 930/884,
  40550. bottom: 16/946
  40551. }
  40552. },
  40553. frontUnderwear: {
  40554. height: math.unit(9, "feet"),
  40555. weight: math.unit(467, "lb"),
  40556. name: "Front (Underwear)",
  40557. image: {
  40558. source: "./media/characters/necahual/front-underwear.svg",
  40559. extra: 920/873,
  40560. bottom: 26/946
  40561. }
  40562. },
  40563. frontDressed: {
  40564. height: math.unit(9, "feet"),
  40565. weight: math.unit(467, "lb"),
  40566. name: "Front (Dressed)",
  40567. image: {
  40568. source: "./media/characters/necahual/front-dressed.svg",
  40569. extra: 920/873,
  40570. bottom: 26/946
  40571. }
  40572. },
  40573. },
  40574. [
  40575. {
  40576. name: "Comprsesed",
  40577. height: math.unit(9, "feet")
  40578. },
  40579. {
  40580. name: "Natural",
  40581. height: math.unit(15, "feet"),
  40582. default: true
  40583. },
  40584. {
  40585. name: "Boosted",
  40586. height: math.unit(50, "feet")
  40587. },
  40588. {
  40589. name: "Boosted+",
  40590. height: math.unit(150, "feet")
  40591. },
  40592. {
  40593. name: "Max",
  40594. height: math.unit(500, "feet")
  40595. },
  40596. ]
  40597. ))
  40598. characterMakers.push(() => makeCharacter(
  40599. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40600. {
  40601. front: {
  40602. height: math.unit(22 + 1/12, "feet"),
  40603. weight: math.unit(3200, "lb"),
  40604. name: "Front",
  40605. image: {
  40606. source: "./media/characters/theo-acacia/front.svg",
  40607. extra: 1796/1741,
  40608. bottom: 83/1879
  40609. }
  40610. },
  40611. frontUnderwear: {
  40612. height: math.unit(22 + 1/12, "feet"),
  40613. weight: math.unit(3200, "lb"),
  40614. name: "Front (Underwear)",
  40615. image: {
  40616. source: "./media/characters/theo-acacia/front-underwear.svg",
  40617. extra: 1796/1741,
  40618. bottom: 83/1879
  40619. }
  40620. },
  40621. frontNude: {
  40622. height: math.unit(22 + 1/12, "feet"),
  40623. weight: math.unit(3200, "lb"),
  40624. name: "Front (Nude)",
  40625. image: {
  40626. source: "./media/characters/theo-acacia/front-nude.svg",
  40627. extra: 1796/1741,
  40628. bottom: 83/1879
  40629. }
  40630. },
  40631. },
  40632. [
  40633. {
  40634. name: "Normal",
  40635. height: math.unit(22 + 1/12, "feet"),
  40636. default: true
  40637. },
  40638. ]
  40639. ))
  40640. characterMakers.push(() => makeCharacter(
  40641. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40642. {
  40643. front: {
  40644. height: math.unit(20, "feet"),
  40645. name: "Front",
  40646. image: {
  40647. source: "./media/characters/astra/front.svg",
  40648. extra: 1850/1714,
  40649. bottom: 106/1956
  40650. }
  40651. },
  40652. frontUndressed: {
  40653. height: math.unit(20, "feet"),
  40654. name: "Front (Undressed)",
  40655. image: {
  40656. source: "./media/characters/astra/front-undressed.svg",
  40657. extra: 1926/1749,
  40658. bottom: 0/1926
  40659. }
  40660. },
  40661. hand: {
  40662. height: math.unit(1.53, "feet"),
  40663. name: "Hand",
  40664. image: {
  40665. source: "./media/characters/astra/hand.svg"
  40666. }
  40667. },
  40668. paw: {
  40669. height: math.unit(1.53, "feet"),
  40670. name: "Paw",
  40671. image: {
  40672. source: "./media/characters/astra/paw.svg"
  40673. }
  40674. },
  40675. },
  40676. [
  40677. {
  40678. name: "Smallest",
  40679. height: math.unit(20, "feet")
  40680. },
  40681. {
  40682. name: "Normal",
  40683. height: math.unit(1e9, "miles"),
  40684. default: true
  40685. },
  40686. {
  40687. name: "Larger",
  40688. height: math.unit(5, "multiverses")
  40689. },
  40690. {
  40691. name: "Largest",
  40692. height: math.unit(1e9, "multiverses")
  40693. },
  40694. ]
  40695. ))
  40696. characterMakers.push(() => makeCharacter(
  40697. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40698. {
  40699. front: {
  40700. height: math.unit(8, "feet"),
  40701. name: "Front",
  40702. image: {
  40703. source: "./media/characters/breanna/front.svg",
  40704. extra: 1912/1632,
  40705. bottom: 33/1945
  40706. }
  40707. },
  40708. },
  40709. [
  40710. {
  40711. name: "Smallest",
  40712. height: math.unit(8, "feet")
  40713. },
  40714. {
  40715. name: "Normal",
  40716. height: math.unit(1, "mile"),
  40717. default: true
  40718. },
  40719. {
  40720. name: "Maximum",
  40721. height: math.unit(1500000000000, "lightyears")
  40722. },
  40723. ]
  40724. ))
  40725. characterMakers.push(() => makeCharacter(
  40726. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40727. {
  40728. front: {
  40729. height: math.unit(5 + 11/12, "feet"),
  40730. weight: math.unit(155, "lb"),
  40731. name: "Front",
  40732. image: {
  40733. source: "./media/characters/cai/front.svg",
  40734. extra: 1823/1702,
  40735. bottom: 32/1855
  40736. }
  40737. },
  40738. back: {
  40739. height: math.unit(5 + 11/12, "feet"),
  40740. weight: math.unit(155, "lb"),
  40741. name: "Back",
  40742. image: {
  40743. source: "./media/characters/cai/back.svg",
  40744. extra: 1809/1708,
  40745. bottom: 31/1840
  40746. }
  40747. },
  40748. },
  40749. [
  40750. {
  40751. name: "Normal",
  40752. height: math.unit(5 + 11/12, "feet"),
  40753. default: true
  40754. },
  40755. {
  40756. name: "Big",
  40757. height: math.unit(15, "feet")
  40758. },
  40759. {
  40760. name: "Macro",
  40761. height: math.unit(200, "feet")
  40762. },
  40763. ]
  40764. ))
  40765. characterMakers.push(() => makeCharacter(
  40766. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40767. {
  40768. front: {
  40769. height: math.unit(5 + 6/12, "feet"),
  40770. weight: math.unit(160, "lb"),
  40771. name: "Front",
  40772. image: {
  40773. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40774. extra: 1227/1174,
  40775. bottom: 37/1264
  40776. }
  40777. },
  40778. },
  40779. [
  40780. {
  40781. name: "Macro",
  40782. height: math.unit(444, "meters"),
  40783. default: true
  40784. },
  40785. ]
  40786. ))
  40787. characterMakers.push(() => makeCharacter(
  40788. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40789. {
  40790. front: {
  40791. height: math.unit(18 + 7/12, "feet"),
  40792. name: "Front",
  40793. image: {
  40794. source: "./media/characters/rex/front.svg",
  40795. extra: 1941/1807,
  40796. bottom: 66/2007
  40797. }
  40798. },
  40799. back: {
  40800. height: math.unit(18 + 7/12, "feet"),
  40801. name: "Back",
  40802. image: {
  40803. source: "./media/characters/rex/back.svg",
  40804. extra: 1937/1822,
  40805. bottom: 42/1979
  40806. }
  40807. },
  40808. boot: {
  40809. height: math.unit(3.45, "feet"),
  40810. name: "Boot",
  40811. image: {
  40812. source: "./media/characters/rex/boot.svg"
  40813. }
  40814. },
  40815. paw: {
  40816. height: math.unit(4.17, "feet"),
  40817. name: "Paw",
  40818. image: {
  40819. source: "./media/characters/rex/paw.svg"
  40820. }
  40821. },
  40822. head: {
  40823. height: math.unit(6.728, "feet"),
  40824. name: "Head",
  40825. image: {
  40826. source: "./media/characters/rex/head.svg"
  40827. }
  40828. },
  40829. },
  40830. [
  40831. {
  40832. name: "Nano",
  40833. height: math.unit(18 + 7/12, "feet")
  40834. },
  40835. {
  40836. name: "Micro",
  40837. height: math.unit(1.5, "megameters")
  40838. },
  40839. {
  40840. name: "Normal",
  40841. height: math.unit(440, "megameters"),
  40842. default: true
  40843. },
  40844. {
  40845. name: "Macro",
  40846. height: math.unit(2.5, "gigameters")
  40847. },
  40848. {
  40849. name: "Gigamacro",
  40850. height: math.unit(2, "galaxies")
  40851. },
  40852. ]
  40853. ))
  40854. characterMakers.push(() => makeCharacter(
  40855. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40856. {
  40857. side: {
  40858. height: math.unit(32, "feet"),
  40859. weight: math.unit(250000, "lb"),
  40860. name: "Side",
  40861. image: {
  40862. source: "./media/characters/silverwing/side.svg",
  40863. extra: 1100/1019,
  40864. bottom: 204/1304
  40865. }
  40866. },
  40867. },
  40868. [
  40869. {
  40870. name: "Normal",
  40871. height: math.unit(32, "feet"),
  40872. default: true
  40873. },
  40874. ]
  40875. ))
  40876. characterMakers.push(() => makeCharacter(
  40877. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40878. {
  40879. front: {
  40880. height: math.unit(6 + 6/12, "feet"),
  40881. weight: math.unit(350, "lb"),
  40882. name: "Front",
  40883. image: {
  40884. source: "./media/characters/tristan-hawthorne/front.svg",
  40885. extra: 1159/1124,
  40886. bottom: 37/1196
  40887. }
  40888. },
  40889. },
  40890. [
  40891. {
  40892. name: "Normal",
  40893. height: math.unit(6 + 6/12, "feet"),
  40894. default: true
  40895. },
  40896. ]
  40897. ))
  40898. characterMakers.push(() => makeCharacter(
  40899. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40900. {
  40901. front: {
  40902. height: math.unit(5 + 11/12, "feet"),
  40903. weight: math.unit(190, "lb"),
  40904. name: "Front",
  40905. image: {
  40906. source: "./media/characters/mizu/front.svg",
  40907. extra: 1988/1788,
  40908. bottom: 14/2002
  40909. }
  40910. },
  40911. },
  40912. [
  40913. {
  40914. name: "Normal",
  40915. height: math.unit(5 + 11/12, "feet"),
  40916. default: true
  40917. },
  40918. ]
  40919. ))
  40920. characterMakers.push(() => makeCharacter(
  40921. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40922. {
  40923. front: {
  40924. height: math.unit(6, "feet"),
  40925. name: "Front",
  40926. image: {
  40927. source: "./media/characters/moonlight-rose-terra/front.svg",
  40928. extra: 1434/1252,
  40929. bottom: 48/1482
  40930. }
  40931. },
  40932. },
  40933. [
  40934. {
  40935. name: "TRAPPIST-1D",
  40936. height: math.unit(4992*2, "km")
  40937. },
  40938. {
  40939. name: "Earth",
  40940. height: math.unit(6367*2, "km"),
  40941. default: true
  40942. },
  40943. {
  40944. name: "Kepler-22b",
  40945. height: math.unit(15282*2, "km")
  40946. },
  40947. ]
  40948. ))
  40949. characterMakers.push(() => makeCharacter(
  40950. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40951. {
  40952. front: {
  40953. height: math.unit(6, "feet"),
  40954. name: "Front",
  40955. image: {
  40956. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40957. extra: 1851/1712,
  40958. bottom: 0/1851
  40959. }
  40960. },
  40961. },
  40962. [
  40963. {
  40964. name: "Enceladus",
  40965. height: math.unit(513*2, "km")
  40966. },
  40967. {
  40968. name: "Europe",
  40969. height: math.unit(1560*2, "km")
  40970. },
  40971. {
  40972. name: "Neptune",
  40973. height: math.unit(24622*2, "km"),
  40974. default: true
  40975. },
  40976. {
  40977. name: "CoRoT-9b",
  40978. height: math.unit(75067*2, "km")
  40979. },
  40980. ]
  40981. ))
  40982. characterMakers.push(() => makeCharacter(
  40983. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40984. {
  40985. front: {
  40986. height: math.unit(6, "feet"),
  40987. name: "Front",
  40988. image: {
  40989. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40990. extra: 1367/1286,
  40991. bottom: 55/1422
  40992. }
  40993. },
  40994. },
  40995. [
  40996. {
  40997. name: "Saturn",
  40998. height: math.unit(58232*2, "km")
  40999. },
  41000. {
  41001. name: "Jupiter",
  41002. height: math.unit(69911*2, "km"),
  41003. default: true
  41004. },
  41005. {
  41006. name: "HD 100546 b",
  41007. height: math.unit(482938, "km")
  41008. },
  41009. ]
  41010. ))
  41011. characterMakers.push(() => makeCharacter(
  41012. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41013. {
  41014. front: {
  41015. height: math.unit(1.7, "feet"),
  41016. weight: math.unit(50, "lb"),
  41017. name: "Front",
  41018. image: {
  41019. source: "./media/characters/dechroma/front.svg",
  41020. extra: 1095/859,
  41021. bottom: 64/1159
  41022. }
  41023. },
  41024. },
  41025. [
  41026. {
  41027. name: "Normal",
  41028. height: math.unit(1.7, "feet"),
  41029. default: true
  41030. },
  41031. ]
  41032. ))
  41033. characterMakers.push(() => makeCharacter(
  41034. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41035. {
  41036. side: {
  41037. height: math.unit(30, "feet"),
  41038. name: "Side",
  41039. image: {
  41040. source: "./media/characters/veluren-thanazel/side.svg",
  41041. extra: 1611/633,
  41042. bottom: 118/1729
  41043. }
  41044. },
  41045. front: {
  41046. height: math.unit(30, "feet"),
  41047. name: "Front",
  41048. image: {
  41049. source: "./media/characters/veluren-thanazel/front.svg",
  41050. extra: 1486/636,
  41051. bottom: 238/1724
  41052. }
  41053. },
  41054. head: {
  41055. height: math.unit(21.4, "feet"),
  41056. name: "Head",
  41057. image: {
  41058. source: "./media/characters/veluren-thanazel/head.svg"
  41059. }
  41060. },
  41061. genitals: {
  41062. height: math.unit(19.4, "feet"),
  41063. name: "Genitals",
  41064. image: {
  41065. source: "./media/characters/veluren-thanazel/genitals.svg"
  41066. }
  41067. },
  41068. },
  41069. [
  41070. {
  41071. name: "Social",
  41072. height: math.unit(6, "feet")
  41073. },
  41074. {
  41075. name: "Play",
  41076. height: math.unit(12, "feet")
  41077. },
  41078. {
  41079. name: "True",
  41080. height: math.unit(30, "feet"),
  41081. default: true
  41082. },
  41083. ]
  41084. ))
  41085. characterMakers.push(() => makeCharacter(
  41086. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41087. {
  41088. front: {
  41089. height: math.unit(7 + 6/12, "feet"),
  41090. weight: math.unit(500, "kg"),
  41091. name: "Front",
  41092. image: {
  41093. source: "./media/characters/arcturas/front.svg",
  41094. extra: 1700/1500,
  41095. bottom: 145/1845
  41096. }
  41097. },
  41098. },
  41099. [
  41100. {
  41101. name: "Normal",
  41102. height: math.unit(7 + 6/12, "feet"),
  41103. default: true
  41104. },
  41105. ]
  41106. ))
  41107. characterMakers.push(() => makeCharacter(
  41108. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41109. {
  41110. side: {
  41111. height: math.unit(6, "feet"),
  41112. weight: math.unit(2, "tons"),
  41113. name: "Side",
  41114. image: {
  41115. source: "./media/characters/vitaen/side.svg",
  41116. extra: 1157/617,
  41117. bottom: 122/1279
  41118. }
  41119. },
  41120. },
  41121. [
  41122. {
  41123. name: "Normal",
  41124. height: math.unit(6, "feet"),
  41125. default: true
  41126. },
  41127. ]
  41128. ))
  41129. characterMakers.push(() => makeCharacter(
  41130. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41131. {
  41132. front: {
  41133. height: math.unit(19, "feet"),
  41134. name: "Front",
  41135. image: {
  41136. source: "./media/characters/fia-dreamweaver/front.svg",
  41137. extra: 1630/1504,
  41138. bottom: 25/1655
  41139. }
  41140. },
  41141. },
  41142. [
  41143. {
  41144. name: "Normal",
  41145. height: math.unit(19, "feet"),
  41146. default: true
  41147. },
  41148. ]
  41149. ))
  41150. characterMakers.push(() => makeCharacter(
  41151. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41152. {
  41153. front: {
  41154. height: math.unit(5 + 4/12, "feet"),
  41155. name: "Front",
  41156. image: {
  41157. source: "./media/characters/artan/front.svg",
  41158. extra: 1618/1535,
  41159. bottom: 46/1664
  41160. }
  41161. },
  41162. back: {
  41163. height: math.unit(5 + 4/12, "feet"),
  41164. name: "Back",
  41165. image: {
  41166. source: "./media/characters/artan/back.svg",
  41167. extra: 1618/1543,
  41168. bottom: 31/1649
  41169. }
  41170. },
  41171. },
  41172. [
  41173. {
  41174. name: "Normal",
  41175. height: math.unit(5 + 4/12, "feet"),
  41176. default: true
  41177. },
  41178. ]
  41179. ))
  41180. characterMakers.push(() => makeCharacter(
  41181. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41182. {
  41183. side: {
  41184. height: math.unit(182, "cm"),
  41185. weight: math.unit(1000, "lb"),
  41186. name: "Side",
  41187. image: {
  41188. source: "./media/characters/silver-dragon/side.svg",
  41189. extra: 710/287,
  41190. bottom: 88/798
  41191. }
  41192. },
  41193. },
  41194. [
  41195. {
  41196. name: "Normal",
  41197. height: math.unit(182, "cm"),
  41198. default: true
  41199. },
  41200. ]
  41201. ))
  41202. characterMakers.push(() => makeCharacter(
  41203. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41204. {
  41205. side: {
  41206. height: math.unit(6 + 6/12, "feet"),
  41207. weight: math.unit(1.5, "tons"),
  41208. name: "Side",
  41209. image: {
  41210. source: "./media/characters/zephyr/side.svg",
  41211. extra: 1433/586,
  41212. bottom: 109/1542
  41213. }
  41214. },
  41215. },
  41216. [
  41217. {
  41218. name: "Normal",
  41219. height: math.unit(6 + 6/12, "feet"),
  41220. default: true
  41221. },
  41222. ]
  41223. ))
  41224. characterMakers.push(() => makeCharacter(
  41225. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41226. {
  41227. side: {
  41228. height: math.unit(1, "feet"),
  41229. name: "Side",
  41230. image: {
  41231. source: "./media/characters/vixye/side.svg",
  41232. extra: 632/541,
  41233. bottom: 0/632
  41234. }
  41235. },
  41236. },
  41237. [
  41238. {
  41239. name: "Normal",
  41240. height: math.unit(1, "feet"),
  41241. default: true
  41242. },
  41243. {
  41244. name: "True",
  41245. height: math.unit(1e15, "multiverses")
  41246. },
  41247. ]
  41248. ))
  41249. characterMakers.push(() => makeCharacter(
  41250. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41251. {
  41252. front: {
  41253. height: math.unit(8 + 2/12, "feet"),
  41254. weight: math.unit(650, "lb"),
  41255. name: "Front",
  41256. image: {
  41257. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41258. extra: 1174/1137,
  41259. bottom: 82/1256
  41260. }
  41261. },
  41262. back: {
  41263. height: math.unit(8 + 2/12, "feet"),
  41264. weight: math.unit(650, "lb"),
  41265. name: "Back",
  41266. image: {
  41267. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41268. extra: 1204/1157,
  41269. bottom: 46/1250
  41270. }
  41271. },
  41272. },
  41273. [
  41274. {
  41275. name: "Wildform",
  41276. height: math.unit(8 + 2/12, "feet"),
  41277. default: true
  41278. },
  41279. ]
  41280. ))
  41281. characterMakers.push(() => makeCharacter(
  41282. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41283. {
  41284. front: {
  41285. height: math.unit(18, "feet"),
  41286. name: "Front",
  41287. image: {
  41288. source: "./media/characters/cyphin/front.svg",
  41289. extra: 970/886,
  41290. bottom: 42/1012
  41291. }
  41292. },
  41293. back: {
  41294. height: math.unit(18, "feet"),
  41295. name: "Back",
  41296. image: {
  41297. source: "./media/characters/cyphin/back.svg",
  41298. extra: 1009/894,
  41299. bottom: 24/1033
  41300. }
  41301. },
  41302. head: {
  41303. height: math.unit(5.05, "feet"),
  41304. name: "Head",
  41305. image: {
  41306. source: "./media/characters/cyphin/head.svg"
  41307. }
  41308. },
  41309. tailbud: {
  41310. height: math.unit(5, "feet"),
  41311. name: "Tailbud",
  41312. image: {
  41313. source: "./media/characters/cyphin/tailbud.svg"
  41314. }
  41315. },
  41316. },
  41317. [
  41318. ]
  41319. ))
  41320. characterMakers.push(() => makeCharacter(
  41321. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41322. {
  41323. side: {
  41324. height: math.unit(10, "feet"),
  41325. weight: math.unit(6, "tons"),
  41326. name: "Side",
  41327. image: {
  41328. source: "./media/characters/raijin/side.svg",
  41329. extra: 1529/613,
  41330. bottom: 337/1866
  41331. }
  41332. },
  41333. },
  41334. [
  41335. {
  41336. name: "Normal",
  41337. height: math.unit(10, "feet"),
  41338. default: true
  41339. },
  41340. ]
  41341. ))
  41342. characterMakers.push(() => makeCharacter(
  41343. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41344. {
  41345. side: {
  41346. height: math.unit(9, "feet"),
  41347. name: "Side",
  41348. image: {
  41349. source: "./media/characters/nilghais/side.svg",
  41350. extra: 1047/744,
  41351. bottom: 91/1138
  41352. }
  41353. },
  41354. head: {
  41355. height: math.unit(3.14, "feet"),
  41356. name: "Head",
  41357. image: {
  41358. source: "./media/characters/nilghais/head.svg"
  41359. }
  41360. },
  41361. mouth: {
  41362. height: math.unit(4.6, "feet"),
  41363. name: "Mouth",
  41364. image: {
  41365. source: "./media/characters/nilghais/mouth.svg"
  41366. }
  41367. },
  41368. wings: {
  41369. height: math.unit(24, "feet"),
  41370. name: "Wings",
  41371. image: {
  41372. source: "./media/characters/nilghais/wings.svg"
  41373. }
  41374. },
  41375. ass: {
  41376. height: math.unit(6.12, "feet"),
  41377. name: "Ass",
  41378. image: {
  41379. source: "./media/characters/nilghais/ass.svg"
  41380. }
  41381. },
  41382. },
  41383. [
  41384. {
  41385. name: "Normal",
  41386. height: math.unit(9, "feet"),
  41387. default: true
  41388. },
  41389. ]
  41390. ))
  41391. characterMakers.push(() => makeCharacter(
  41392. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41393. {
  41394. regular: {
  41395. height: math.unit(16 + 2/12, "feet"),
  41396. weight: math.unit(2300, "lb"),
  41397. name: "Regular",
  41398. image: {
  41399. source: "./media/characters/zolgar/regular.svg",
  41400. extra: 1246/1004,
  41401. bottom: 124/1370
  41402. }
  41403. },
  41404. boxers: {
  41405. height: math.unit(16 + 2/12, "feet"),
  41406. weight: math.unit(2300, "lb"),
  41407. name: "Boxers",
  41408. image: {
  41409. source: "./media/characters/zolgar/boxers.svg",
  41410. extra: 1246/1004,
  41411. bottom: 124/1370
  41412. }
  41413. },
  41414. armored: {
  41415. height: math.unit(16 + 2/12, "feet"),
  41416. weight: math.unit(2300, "lb"),
  41417. name: "Armored",
  41418. image: {
  41419. source: "./media/characters/zolgar/armored.svg",
  41420. extra: 1246/1004,
  41421. bottom: 124/1370
  41422. }
  41423. },
  41424. goth: {
  41425. height: math.unit(16 + 2/12, "feet"),
  41426. weight: math.unit(2300, "lb"),
  41427. name: "Goth",
  41428. image: {
  41429. source: "./media/characters/zolgar/goth.svg",
  41430. extra: 1246/1004,
  41431. bottom: 124/1370
  41432. }
  41433. },
  41434. },
  41435. [
  41436. {
  41437. name: "Shrunken Down",
  41438. height: math.unit(9 + 2/12, "feet")
  41439. },
  41440. {
  41441. name: "Normal",
  41442. height: math.unit(16 + 2/12, "feet"),
  41443. default: true
  41444. },
  41445. ]
  41446. ))
  41447. characterMakers.push(() => makeCharacter(
  41448. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41449. {
  41450. front: {
  41451. height: math.unit(6, "feet"),
  41452. weight: math.unit(168, "lb"),
  41453. name: "Front",
  41454. image: {
  41455. source: "./media/characters/luca/front.svg",
  41456. extra: 841/667,
  41457. bottom: 102/943
  41458. }
  41459. },
  41460. },
  41461. [
  41462. {
  41463. name: "Normal",
  41464. height: math.unit(6, "feet"),
  41465. default: true
  41466. },
  41467. ]
  41468. ))
  41469. characterMakers.push(() => makeCharacter(
  41470. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41471. {
  41472. side: {
  41473. height: math.unit(7 + 3/12, "feet"),
  41474. weight: math.unit(312, "lb"),
  41475. name: "Side",
  41476. image: {
  41477. source: "./media/characters/zezo/side.svg",
  41478. extra: 1192/1067,
  41479. bottom: 63/1255
  41480. }
  41481. },
  41482. },
  41483. [
  41484. {
  41485. name: "Normal",
  41486. height: math.unit(7 + 3/12, "feet"),
  41487. default: true
  41488. },
  41489. ]
  41490. ))
  41491. characterMakers.push(() => makeCharacter(
  41492. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41493. {
  41494. front: {
  41495. height: math.unit(5 + 5/12, "feet"),
  41496. weight: math.unit(170, "lb"),
  41497. name: "Front",
  41498. image: {
  41499. source: "./media/characters/mayso/front.svg",
  41500. extra: 1215/1108,
  41501. bottom: 16/1231
  41502. }
  41503. },
  41504. },
  41505. [
  41506. {
  41507. name: "Normal",
  41508. height: math.unit(5 + 5/12, "feet"),
  41509. default: true
  41510. },
  41511. ]
  41512. ))
  41513. characterMakers.push(() => makeCharacter(
  41514. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41515. {
  41516. front: {
  41517. height: math.unit(4 + 3/12, "feet"),
  41518. weight: math.unit(80, "lb"),
  41519. name: "Front",
  41520. image: {
  41521. source: "./media/characters/hess/front.svg",
  41522. extra: 1200/1123,
  41523. bottom: 16/1216
  41524. }
  41525. },
  41526. },
  41527. [
  41528. {
  41529. name: "Normal",
  41530. height: math.unit(4 + 3/12, "feet"),
  41531. default: true
  41532. },
  41533. ]
  41534. ))
  41535. characterMakers.push(() => makeCharacter(
  41536. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41537. {
  41538. front: {
  41539. height: math.unit(1.9, "meters"),
  41540. name: "Front",
  41541. image: {
  41542. source: "./media/characters/ashgar/front.svg",
  41543. extra: 1177/1146,
  41544. bottom: 99/1276
  41545. }
  41546. },
  41547. back: {
  41548. height: math.unit(1.9, "meters"),
  41549. name: "Back",
  41550. image: {
  41551. source: "./media/characters/ashgar/back.svg",
  41552. extra: 1201/1183,
  41553. bottom: 53/1254
  41554. }
  41555. },
  41556. feral: {
  41557. height: math.unit(1.4, "meters"),
  41558. name: "Feral",
  41559. image: {
  41560. source: "./media/characters/ashgar/feral.svg",
  41561. extra: 370/345,
  41562. bottom: 45/415
  41563. }
  41564. },
  41565. },
  41566. [
  41567. {
  41568. name: "Normal",
  41569. height: math.unit(1.9, "meters"),
  41570. default: true
  41571. },
  41572. ]
  41573. ))
  41574. characterMakers.push(() => makeCharacter(
  41575. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41576. {
  41577. regular: {
  41578. height: math.unit(6, "feet"),
  41579. weight: math.unit(220, "lb"),
  41580. name: "Regular",
  41581. image: {
  41582. source: "./media/characters/phillip/regular.svg",
  41583. extra: 1373/1277,
  41584. bottom: 75/1448
  41585. }
  41586. },
  41587. dressed: {
  41588. height: math.unit(6, "feet"),
  41589. weight: math.unit(220, "lb"),
  41590. name: "Dressed",
  41591. image: {
  41592. source: "./media/characters/phillip/dressed.svg",
  41593. extra: 1373/1277,
  41594. bottom: 75/1448
  41595. }
  41596. },
  41597. paw: {
  41598. height: math.unit(1.44, "feet"),
  41599. name: "Paw",
  41600. image: {
  41601. source: "./media/characters/phillip/paw.svg"
  41602. }
  41603. },
  41604. },
  41605. [
  41606. {
  41607. name: "Normal",
  41608. height: math.unit(6, "feet"),
  41609. default: true
  41610. },
  41611. ]
  41612. ))
  41613. characterMakers.push(() => makeCharacter(
  41614. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41615. {
  41616. side: {
  41617. height: math.unit(42, "feet"),
  41618. name: "Side",
  41619. image: {
  41620. source: "./media/characters/uvula/side.svg",
  41621. extra: 683/586,
  41622. bottom: 60/743
  41623. }
  41624. },
  41625. front: {
  41626. height: math.unit(42, "feet"),
  41627. name: "Front",
  41628. image: {
  41629. source: "./media/characters/uvula/front.svg",
  41630. extra: 705/613,
  41631. bottom: 54/759
  41632. }
  41633. },
  41634. maw: {
  41635. height: math.unit(23.5, "feet"),
  41636. name: "Maw",
  41637. image: {
  41638. source: "./media/characters/uvula/maw.svg"
  41639. }
  41640. },
  41641. },
  41642. [
  41643. {
  41644. name: "Original Size",
  41645. height: math.unit(14, "inches")
  41646. },
  41647. {
  41648. name: "Human Size",
  41649. height: math.unit(6, "feet")
  41650. },
  41651. {
  41652. name: "Big",
  41653. height: math.unit(42, "feet"),
  41654. default: true
  41655. },
  41656. {
  41657. name: "Bigger",
  41658. height: math.unit(100, "feet")
  41659. },
  41660. ]
  41661. ))
  41662. characterMakers.push(() => makeCharacter(
  41663. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41664. {
  41665. front: {
  41666. height: math.unit(5 + 11/12, "feet"),
  41667. name: "Front",
  41668. image: {
  41669. source: "./media/characters/lannah/front.svg",
  41670. extra: 1208/1113,
  41671. bottom: 97/1305
  41672. }
  41673. },
  41674. },
  41675. [
  41676. {
  41677. name: "Normal",
  41678. height: math.unit(5 + 11/12, "feet"),
  41679. default: true
  41680. },
  41681. ]
  41682. ))
  41683. characterMakers.push(() => makeCharacter(
  41684. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41685. {
  41686. front: {
  41687. height: math.unit(6 + 3/12, "feet"),
  41688. weight: math.unit(3.5, "tons"),
  41689. name: "Front",
  41690. image: {
  41691. source: "./media/characters/emberflame/front.svg",
  41692. extra: 1198/672,
  41693. bottom: 82/1280
  41694. }
  41695. },
  41696. side: {
  41697. height: math.unit(6 + 3/12, "feet"),
  41698. weight: math.unit(3.5, "tons"),
  41699. name: "Side",
  41700. image: {
  41701. source: "./media/characters/emberflame/side.svg",
  41702. extra: 938/527,
  41703. bottom: 56/994
  41704. }
  41705. },
  41706. },
  41707. [
  41708. {
  41709. name: "Normal",
  41710. height: math.unit(6 + 3/12, "feet"),
  41711. default: true
  41712. },
  41713. ]
  41714. ))
  41715. characterMakers.push(() => makeCharacter(
  41716. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41717. {
  41718. side: {
  41719. height: math.unit(17.5, "feet"),
  41720. weight: math.unit(35, "tons"),
  41721. name: "Side",
  41722. image: {
  41723. source: "./media/characters/sophie-ambrose/side.svg",
  41724. extra: 1573/1242,
  41725. bottom: 71/1644
  41726. }
  41727. },
  41728. maw: {
  41729. height: math.unit(7.4, "feet"),
  41730. name: "Maw",
  41731. image: {
  41732. source: "./media/characters/sophie-ambrose/maw.svg"
  41733. }
  41734. },
  41735. },
  41736. [
  41737. {
  41738. name: "Normal",
  41739. height: math.unit(17.5, "feet"),
  41740. default: true
  41741. },
  41742. ]
  41743. ))
  41744. characterMakers.push(() => makeCharacter(
  41745. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41746. {
  41747. front: {
  41748. height: math.unit(280, "feet"),
  41749. weight: math.unit(550, "tons"),
  41750. name: "Front",
  41751. image: {
  41752. source: "./media/characters/king-mugi/front.svg",
  41753. extra: 1102/947,
  41754. bottom: 104/1206
  41755. }
  41756. },
  41757. },
  41758. [
  41759. {
  41760. name: "King Mugi",
  41761. height: math.unit(280, "feet"),
  41762. default: true
  41763. },
  41764. ]
  41765. ))
  41766. characterMakers.push(() => makeCharacter(
  41767. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41768. {
  41769. front: {
  41770. height: math.unit(64, "meters"),
  41771. name: "Front",
  41772. image: {
  41773. source: "./media/characters/nova-fox/front.svg",
  41774. extra: 1310/1246,
  41775. bottom: 65/1375
  41776. }
  41777. },
  41778. },
  41779. [
  41780. {
  41781. name: "Macro",
  41782. height: math.unit(64, "meters"),
  41783. default: true
  41784. },
  41785. ]
  41786. ))
  41787. characterMakers.push(() => makeCharacter(
  41788. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41789. {
  41790. front: {
  41791. height: math.unit(6 + 3/12, "feet"),
  41792. weight: math.unit(170, "lb"),
  41793. name: "Front",
  41794. image: {
  41795. source: "./media/characters/sam-bat/front.svg",
  41796. extra: 1601/1411,
  41797. bottom: 125/1726
  41798. }
  41799. },
  41800. back: {
  41801. height: math.unit(6 + 3/12, "feet"),
  41802. weight: math.unit(170, "lb"),
  41803. name: "Back",
  41804. image: {
  41805. source: "./media/characters/sam-bat/back.svg",
  41806. extra: 1577/1405,
  41807. bottom: 58/1635
  41808. }
  41809. },
  41810. },
  41811. [
  41812. {
  41813. name: "Normal",
  41814. height: math.unit(6 + 3/12, "feet"),
  41815. default: true
  41816. },
  41817. ]
  41818. ))
  41819. characterMakers.push(() => makeCharacter(
  41820. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41821. {
  41822. front: {
  41823. height: math.unit(59, "feet"),
  41824. weight: math.unit(40000, "lb"),
  41825. name: "Front",
  41826. image: {
  41827. source: "./media/characters/inari/front.svg",
  41828. extra: 1884/1350,
  41829. bottom: 95/1979
  41830. }
  41831. },
  41832. },
  41833. [
  41834. {
  41835. name: "Gigantamax",
  41836. height: math.unit(59, "feet"),
  41837. default: true
  41838. },
  41839. ]
  41840. ))
  41841. characterMakers.push(() => makeCharacter(
  41842. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41843. {
  41844. front: {
  41845. height: math.unit(5 + 8/12, "feet"),
  41846. name: "Front",
  41847. image: {
  41848. source: "./media/characters/elizabeth/front.svg",
  41849. extra: 1395/1298,
  41850. bottom: 54/1449
  41851. }
  41852. },
  41853. mouth: {
  41854. height: math.unit(1.97, "feet"),
  41855. name: "Mouth",
  41856. image: {
  41857. source: "./media/characters/elizabeth/mouth.svg"
  41858. }
  41859. },
  41860. foot: {
  41861. height: math.unit(1.17, "feet"),
  41862. name: "Foot",
  41863. image: {
  41864. source: "./media/characters/elizabeth/foot.svg"
  41865. }
  41866. },
  41867. },
  41868. [
  41869. {
  41870. name: "Normal",
  41871. height: math.unit(5 + 8/12, "feet"),
  41872. default: true
  41873. },
  41874. {
  41875. name: "Minimacro",
  41876. height: math.unit(18, "feet")
  41877. },
  41878. {
  41879. name: "Macro",
  41880. height: math.unit(180, "feet")
  41881. },
  41882. ]
  41883. ))
  41884. characterMakers.push(() => makeCharacter(
  41885. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41886. {
  41887. front: {
  41888. height: math.unit(5 + 2/12, "feet"),
  41889. name: "Front",
  41890. image: {
  41891. source: "./media/characters/october-gossamer/front.svg",
  41892. extra: 505/454,
  41893. bottom: 7/512
  41894. }
  41895. },
  41896. back: {
  41897. height: math.unit(5 + 2/12, "feet"),
  41898. name: "Back",
  41899. image: {
  41900. source: "./media/characters/october-gossamer/back.svg",
  41901. extra: 501/454,
  41902. bottom: 11/512
  41903. }
  41904. },
  41905. },
  41906. [
  41907. {
  41908. name: "Normal",
  41909. height: math.unit(5 + 2/12, "feet"),
  41910. default: true
  41911. },
  41912. ]
  41913. ))
  41914. characterMakers.push(() => makeCharacter(
  41915. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41916. {
  41917. front: {
  41918. height: math.unit(5, "feet"),
  41919. name: "Front",
  41920. image: {
  41921. source: "./media/characters/epiglottis/front.svg",
  41922. extra: 923/849,
  41923. bottom: 17/940
  41924. }
  41925. },
  41926. },
  41927. [
  41928. {
  41929. name: "Original Size",
  41930. height: math.unit(10, "inches")
  41931. },
  41932. {
  41933. name: "Human Size",
  41934. height: math.unit(5, "feet"),
  41935. default: true
  41936. },
  41937. {
  41938. name: "Big",
  41939. height: math.unit(25, "feet")
  41940. },
  41941. {
  41942. name: "Bigger",
  41943. height: math.unit(50, "feet")
  41944. },
  41945. {
  41946. name: "oh lawd",
  41947. height: math.unit(75, "feet")
  41948. },
  41949. ]
  41950. ))
  41951. characterMakers.push(() => makeCharacter(
  41952. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  41953. {
  41954. front: {
  41955. height: math.unit(2 + 4/12, "feet"),
  41956. weight: math.unit(60, "lb"),
  41957. name: "Front",
  41958. image: {
  41959. source: "./media/characters/lerm/front.svg",
  41960. extra: 796/790,
  41961. bottom: 79/875
  41962. }
  41963. },
  41964. },
  41965. [
  41966. {
  41967. name: "Normal",
  41968. height: math.unit(2 + 4/12, "feet"),
  41969. default: true
  41970. },
  41971. ]
  41972. ))
  41973. characterMakers.push(() => makeCharacter(
  41974. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  41975. {
  41976. front: {
  41977. height: math.unit(5.5, "feet"),
  41978. weight: math.unit(130, "lb"),
  41979. name: "Front",
  41980. image: {
  41981. source: "./media/characters/xena-nebadon/front.svg",
  41982. extra: 1828/1730,
  41983. bottom: 79/1907
  41984. }
  41985. },
  41986. },
  41987. [
  41988. {
  41989. name: "Tiny Puppy",
  41990. height: math.unit(3, "inches")
  41991. },
  41992. {
  41993. name: "Normal",
  41994. height: math.unit(5.5, "feet"),
  41995. default: true
  41996. },
  41997. {
  41998. name: "Lotta Lady",
  41999. height: math.unit(12, "feet")
  42000. },
  42001. {
  42002. name: "Pretty Big",
  42003. height: math.unit(100, "feet")
  42004. },
  42005. {
  42006. name: "Big",
  42007. height: math.unit(500, "feet")
  42008. },
  42009. {
  42010. name: "Skyscraper Toys",
  42011. height: math.unit(2500, "feet")
  42012. },
  42013. {
  42014. name: "Plane Catcher",
  42015. height: math.unit(8, "miles")
  42016. },
  42017. {
  42018. name: "Planet Toys",
  42019. height: math.unit(15, "earths")
  42020. },
  42021. {
  42022. name: "Stardust",
  42023. height: math.unit(0.25, "galaxies")
  42024. },
  42025. {
  42026. name: "Snacks",
  42027. height: math.unit(70, "universes")
  42028. },
  42029. ]
  42030. ))
  42031. characterMakers.push(() => makeCharacter(
  42032. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42033. {
  42034. front: {
  42035. height: math.unit(1.6, "meters"),
  42036. weight: math.unit(60, "kg"),
  42037. name: "Front",
  42038. image: {
  42039. source: "./media/characters/bounty/front.svg",
  42040. extra: 1426/1308,
  42041. bottom: 15/1441
  42042. }
  42043. },
  42044. },
  42045. [
  42046. {
  42047. name: "Normal",
  42048. height: math.unit(1.6, "meters"),
  42049. default: true
  42050. },
  42051. {
  42052. name: "Macro",
  42053. height: math.unit(300, "meters")
  42054. },
  42055. ]
  42056. ))
  42057. characterMakers.push(() => makeCharacter(
  42058. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42059. {
  42060. front: {
  42061. height: math.unit(2 + 8/12, "feet"),
  42062. weight: math.unit(15, "lb"),
  42063. name: "Front",
  42064. image: {
  42065. source: "./media/characters/mochi/front.svg",
  42066. extra: 1022/852,
  42067. bottom: 435/1457
  42068. }
  42069. },
  42070. back: {
  42071. height: math.unit(2 + 8/12, "feet"),
  42072. weight: math.unit(15, "lb"),
  42073. name: "Back",
  42074. image: {
  42075. source: "./media/characters/mochi/back.svg",
  42076. extra: 1335/1119,
  42077. bottom: 39/1374
  42078. }
  42079. },
  42080. bird: {
  42081. height: math.unit(2 + 8/12, "feet"),
  42082. weight: math.unit(15, "lb"),
  42083. name: "Bird",
  42084. image: {
  42085. source: "./media/characters/mochi/bird.svg",
  42086. extra: 1251/1113,
  42087. bottom: 178/1429
  42088. }
  42089. },
  42090. kaiju: {
  42091. height: math.unit(154, "feet"),
  42092. weight: math.unit(1e7, "lb"),
  42093. name: "Kaiju",
  42094. image: {
  42095. source: "./media/characters/mochi/kaiju.svg",
  42096. extra: 460/324,
  42097. bottom: 40/500
  42098. }
  42099. },
  42100. head: {
  42101. height: math.unit(1.21, "feet"),
  42102. name: "Head",
  42103. image: {
  42104. source: "./media/characters/mochi/head.svg"
  42105. }
  42106. },
  42107. alternateTail: {
  42108. height: math.unit(2 + 8/12, "feet"),
  42109. weight: math.unit(45, "lb"),
  42110. name: "Alternate Tail",
  42111. image: {
  42112. source: "./media/characters/mochi/alternate-tail.svg",
  42113. extra: 139/76,
  42114. bottom: 45/184
  42115. }
  42116. },
  42117. },
  42118. [
  42119. {
  42120. name: "Micro",
  42121. height: math.unit(2, "inches")
  42122. },
  42123. {
  42124. name: "Normal",
  42125. height: math.unit(2 + 8/12, "feet"),
  42126. default: true
  42127. },
  42128. {
  42129. name: "Macro",
  42130. height: math.unit(106, "feet")
  42131. },
  42132. ]
  42133. ))
  42134. characterMakers.push(() => makeCharacter(
  42135. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42136. {
  42137. front: {
  42138. height: math.unit(5.67, "feet"),
  42139. weight: math.unit(135, "lb"),
  42140. name: "Front",
  42141. image: {
  42142. source: "./media/characters/sarel/front.svg",
  42143. extra: 865/788,
  42144. bottom: 97/962
  42145. }
  42146. },
  42147. back: {
  42148. height: math.unit(5.67, "feet"),
  42149. weight: math.unit(135, "lb"),
  42150. name: "Back",
  42151. image: {
  42152. source: "./media/characters/sarel/back.svg",
  42153. extra: 857/777,
  42154. bottom: 32/889
  42155. }
  42156. },
  42157. chozoan: {
  42158. height: math.unit(5.67, "feet"),
  42159. weight: math.unit(135, "lb"),
  42160. name: "Chozoan",
  42161. image: {
  42162. source: "./media/characters/sarel/chozoan.svg",
  42163. extra: 865/788,
  42164. bottom: 97/962
  42165. }
  42166. },
  42167. current: {
  42168. height: math.unit(5.67, "feet"),
  42169. weight: math.unit(135, "lb"),
  42170. name: "Current",
  42171. image: {
  42172. source: "./media/characters/sarel/current.svg",
  42173. extra: 865/788,
  42174. bottom: 97/962
  42175. }
  42176. },
  42177. head: {
  42178. height: math.unit(1.77, "feet"),
  42179. name: "Head",
  42180. image: {
  42181. source: "./media/characters/sarel/head.svg"
  42182. }
  42183. },
  42184. claws: {
  42185. height: math.unit(1.8, "feet"),
  42186. name: "Claws",
  42187. image: {
  42188. source: "./media/characters/sarel/claws.svg"
  42189. }
  42190. },
  42191. clawsAlt: {
  42192. height: math.unit(1.8, "feet"),
  42193. name: "Claws-alt",
  42194. image: {
  42195. source: "./media/characters/sarel/claws-alt.svg"
  42196. }
  42197. },
  42198. },
  42199. [
  42200. {
  42201. name: "Normal",
  42202. height: math.unit(5.67, "feet"),
  42203. default: true
  42204. },
  42205. ]
  42206. ))
  42207. characterMakers.push(() => makeCharacter(
  42208. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42209. {
  42210. front: {
  42211. height: math.unit(5500, "feet"),
  42212. name: "Front",
  42213. image: {
  42214. source: "./media/characters/alyonia/front.svg",
  42215. extra: 1200/1135,
  42216. bottom: 29/1229
  42217. }
  42218. },
  42219. back: {
  42220. height: math.unit(5500, "feet"),
  42221. name: "Back",
  42222. image: {
  42223. source: "./media/characters/alyonia/back.svg",
  42224. extra: 1205/1138,
  42225. bottom: 10/1215
  42226. }
  42227. },
  42228. },
  42229. [
  42230. {
  42231. name: "Small",
  42232. height: math.unit(10, "feet")
  42233. },
  42234. {
  42235. name: "Macro",
  42236. height: math.unit(500, "feet")
  42237. },
  42238. {
  42239. name: "Mega Macro",
  42240. height: math.unit(5500, "feet"),
  42241. default: true
  42242. },
  42243. {
  42244. name: "Mega Macro+",
  42245. height: math.unit(500000, "feet")
  42246. },
  42247. {
  42248. name: "Giga Macro",
  42249. height: math.unit(3000, "miles")
  42250. },
  42251. {
  42252. name: "Tera Macro",
  42253. height: math.unit(2.8e6, "miles")
  42254. },
  42255. {
  42256. name: "Galactic",
  42257. height: math.unit(120000, "lightyears")
  42258. },
  42259. ]
  42260. ))
  42261. characterMakers.push(() => makeCharacter(
  42262. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42263. {
  42264. werewolf: {
  42265. height: math.unit(8, "feet"),
  42266. weight: math.unit(425, "lb"),
  42267. name: "Werewolf",
  42268. image: {
  42269. source: "./media/characters/autumn/werewolf.svg",
  42270. extra: 2154/2031,
  42271. bottom: 160/2314
  42272. }
  42273. },
  42274. human: {
  42275. height: math.unit(5 + 8/12, "feet"),
  42276. weight: math.unit(150, "lb"),
  42277. name: "Human",
  42278. image: {
  42279. source: "./media/characters/autumn/human.svg",
  42280. extra: 1200/1149,
  42281. bottom: 30/1230
  42282. }
  42283. },
  42284. },
  42285. [
  42286. {
  42287. name: "Normal",
  42288. height: math.unit(8, "feet"),
  42289. default: true
  42290. },
  42291. ]
  42292. ))
  42293. characterMakers.push(() => makeCharacter(
  42294. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42295. {
  42296. front: {
  42297. height: math.unit(8 + 5/12, "feet"),
  42298. weight: math.unit(825, "lb"),
  42299. name: "Front",
  42300. image: {
  42301. source: "./media/characters/cobalt-charizard/front.svg",
  42302. extra: 1268/1155,
  42303. bottom: 122/1390
  42304. }
  42305. },
  42306. side: {
  42307. height: math.unit(8 + 5/12, "feet"),
  42308. weight: math.unit(825, "lb"),
  42309. name: "Side",
  42310. image: {
  42311. source: "./media/characters/cobalt-charizard/side.svg",
  42312. extra: 1348/1257,
  42313. bottom: 58/1406
  42314. }
  42315. },
  42316. gMax: {
  42317. height: math.unit(134 + 11/12, "feet"),
  42318. name: "G-Max",
  42319. image: {
  42320. source: "./media/characters/cobalt-charizard/g-max.svg",
  42321. extra: 1835/1541,
  42322. bottom: 151/1986
  42323. }
  42324. },
  42325. },
  42326. [
  42327. {
  42328. name: "Normal",
  42329. height: math.unit(8 + 5/12, "feet"),
  42330. default: true
  42331. },
  42332. ]
  42333. ))
  42334. characterMakers.push(() => makeCharacter(
  42335. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42336. {
  42337. front: {
  42338. height: math.unit(6 + 3/12, "feet"),
  42339. weight: math.unit(210, "lb"),
  42340. name: "Front",
  42341. image: {
  42342. source: "./media/characters/stella/front.svg",
  42343. extra: 3549/3335,
  42344. bottom: 51/3600
  42345. }
  42346. },
  42347. },
  42348. [
  42349. {
  42350. name: "Normal",
  42351. height: math.unit(6 + 3/12, "feet"),
  42352. default: true
  42353. },
  42354. ]
  42355. ))
  42356. characterMakers.push(() => makeCharacter(
  42357. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42358. {
  42359. front: {
  42360. height: math.unit(5, "feet"),
  42361. weight: math.unit(90, "lb"),
  42362. name: "Front",
  42363. image: {
  42364. source: "./media/characters/riley-bishop/front.svg",
  42365. extra: 1450/1428,
  42366. bottom: 152/1602
  42367. }
  42368. },
  42369. },
  42370. [
  42371. {
  42372. name: "Normal",
  42373. height: math.unit(5, "feet"),
  42374. default: true
  42375. },
  42376. ]
  42377. ))
  42378. characterMakers.push(() => makeCharacter(
  42379. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42380. {
  42381. side: {
  42382. height: math.unit(8 + 2/12, "feet"),
  42383. weight: math.unit(500, "kg"),
  42384. name: "Side",
  42385. image: {
  42386. source: "./media/characters/theo-arcanine/side.svg",
  42387. extra: 1342/1074,
  42388. bottom: 111/1453
  42389. }
  42390. },
  42391. },
  42392. [
  42393. {
  42394. name: "Normal",
  42395. height: math.unit(8 + 2/12, "feet"),
  42396. default: true
  42397. },
  42398. ]
  42399. ))
  42400. characterMakers.push(() => makeCharacter(
  42401. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42402. {
  42403. front: {
  42404. height: math.unit(4, "feet"),
  42405. name: "Front",
  42406. image: {
  42407. source: "./media/characters/kali/front.svg",
  42408. extra: 1921/1357,
  42409. bottom: 70/1991
  42410. }
  42411. },
  42412. },
  42413. [
  42414. {
  42415. name: "Normal",
  42416. height: math.unit(4, "feet"),
  42417. default: true
  42418. },
  42419. {
  42420. name: "Macro",
  42421. height: math.unit(32, "meters")
  42422. },
  42423. {
  42424. name: "Macro+",
  42425. height: math.unit(150, "meters")
  42426. },
  42427. {
  42428. name: "Megamacro",
  42429. height: math.unit(7500, "meters")
  42430. },
  42431. {
  42432. name: "Megamacro+",
  42433. height: math.unit(80, "kilometers")
  42434. },
  42435. ]
  42436. ))
  42437. characterMakers.push(() => makeCharacter(
  42438. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42439. {
  42440. side: {
  42441. height: math.unit(5 + 11/12, "feet"),
  42442. weight: math.unit(236, "lb"),
  42443. name: "Side",
  42444. image: {
  42445. source: "./media/characters/gapp/side.svg",
  42446. extra: 775/340,
  42447. bottom: 58/833
  42448. }
  42449. },
  42450. mouth: {
  42451. height: math.unit(2.98, "feet"),
  42452. name: "Mouth",
  42453. image: {
  42454. source: "./media/characters/gapp/mouth.svg"
  42455. }
  42456. },
  42457. },
  42458. [
  42459. {
  42460. name: "Normal",
  42461. height: math.unit(5 + 1/12, "feet"),
  42462. default: true
  42463. },
  42464. ]
  42465. ))
  42466. characterMakers.push(() => makeCharacter(
  42467. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42468. {
  42469. front: {
  42470. height: math.unit(6, "feet"),
  42471. name: "Front",
  42472. image: {
  42473. source: "./media/characters/persephone/front.svg",
  42474. extra: 1895/1717,
  42475. bottom: 96/1991
  42476. }
  42477. },
  42478. back: {
  42479. height: math.unit(6, "feet"),
  42480. name: "Back",
  42481. image: {
  42482. source: "./media/characters/persephone/back.svg",
  42483. extra: 1868/1679,
  42484. bottom: 26/1894
  42485. }
  42486. },
  42487. casual: {
  42488. height: math.unit(6, "feet"),
  42489. name: "Casual",
  42490. image: {
  42491. source: "./media/characters/persephone/casual.svg",
  42492. extra: 1713/1541,
  42493. bottom: 76/1789
  42494. }
  42495. },
  42496. },
  42497. [
  42498. {
  42499. name: "Human Size",
  42500. height: math.unit(6, "feet")
  42501. },
  42502. {
  42503. name: "Big Steppy",
  42504. height: math.unit(600, "meters"),
  42505. default: true
  42506. },
  42507. {
  42508. name: "Galaxy Brain",
  42509. height: math.unit(1, "zettameter")
  42510. },
  42511. ]
  42512. ))
  42513. characterMakers.push(() => makeCharacter(
  42514. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42515. {
  42516. front: {
  42517. height: math.unit(1.85, "meters"),
  42518. name: "Front",
  42519. image: {
  42520. source: "./media/characters/riley-foxthing/front.svg",
  42521. extra: 1495/1354,
  42522. bottom: 122/1617
  42523. }
  42524. },
  42525. frontAlt: {
  42526. height: math.unit(1.85, "meters"),
  42527. name: "Front (Alt)",
  42528. image: {
  42529. source: "./media/characters/riley-foxthing/front-alt.svg",
  42530. extra: 1572/1389,
  42531. bottom: 116/1688
  42532. }
  42533. },
  42534. },
  42535. [
  42536. {
  42537. name: "Normal Sized",
  42538. height: math.unit(1.85, "meters"),
  42539. default: true
  42540. },
  42541. {
  42542. name: "Quite Sizable",
  42543. height: math.unit(5, "meters")
  42544. },
  42545. {
  42546. name: "Rather Large",
  42547. height: math.unit(20, "meters")
  42548. },
  42549. {
  42550. name: "Macro",
  42551. height: math.unit(450, "meters")
  42552. },
  42553. {
  42554. name: "Giga",
  42555. height: math.unit(5, "km")
  42556. },
  42557. ]
  42558. ))
  42559. characterMakers.push(() => makeCharacter(
  42560. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42561. {
  42562. front: {
  42563. height: math.unit(6, "feet"),
  42564. weight: math.unit(200, "lb"),
  42565. name: "Front",
  42566. image: {
  42567. source: "./media/characters/blizzard/front.svg",
  42568. extra: 1136/990,
  42569. bottom: 136/1272
  42570. }
  42571. },
  42572. back: {
  42573. height: math.unit(6, "feet"),
  42574. weight: math.unit(200, "lb"),
  42575. name: "Back",
  42576. image: {
  42577. source: "./media/characters/blizzard/back.svg",
  42578. extra: 1175/1034,
  42579. bottom: 97/1272
  42580. }
  42581. },
  42582. sitting: {
  42583. height: math.unit(3.725, "feet"),
  42584. weight: math.unit(200, "lb"),
  42585. name: "Sitting",
  42586. image: {
  42587. source: "./media/characters/blizzard/sitting.svg",
  42588. extra: 581/485,
  42589. bottom: 90/671
  42590. }
  42591. },
  42592. frontWizard: {
  42593. height: math.unit(7.9, "feet"),
  42594. weight: math.unit(200, "lb"),
  42595. name: "Front (Wizard)",
  42596. image: {
  42597. source: "./media/characters/blizzard/front-wizard.svg"
  42598. }
  42599. },
  42600. backWizard: {
  42601. height: math.unit(7.9, "feet"),
  42602. weight: math.unit(200, "lb"),
  42603. name: "Back (Wizard)",
  42604. image: {
  42605. source: "./media/characters/blizzard/back-wizard.svg"
  42606. }
  42607. },
  42608. frontNsfw: {
  42609. height: math.unit(6, "feet"),
  42610. weight: math.unit(200, "lb"),
  42611. name: "Front (NSFW)",
  42612. image: {
  42613. source: "./media/characters/blizzard/front-nsfw.svg",
  42614. extra: 1136/990,
  42615. bottom: 136/1272
  42616. }
  42617. },
  42618. backNsfw: {
  42619. height: math.unit(6, "feet"),
  42620. weight: math.unit(200, "lb"),
  42621. name: "Back (NSFW)",
  42622. image: {
  42623. source: "./media/characters/blizzard/back-nsfw.svg",
  42624. extra: 1175/1034,
  42625. bottom: 97/1272
  42626. }
  42627. },
  42628. sittingNsfw: {
  42629. height: math.unit(3.725, "feet"),
  42630. weight: math.unit(200, "lb"),
  42631. name: "Sitting (NSFW)",
  42632. image: {
  42633. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42634. extra: 581/485,
  42635. bottom: 90/671
  42636. }
  42637. },
  42638. wizardFrontNsfw: {
  42639. height: math.unit(7.9, "feet"),
  42640. weight: math.unit(200, "lb"),
  42641. name: "Wizard (Front, NSFW)",
  42642. image: {
  42643. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42644. }
  42645. },
  42646. },
  42647. [
  42648. {
  42649. name: "Normal",
  42650. height: math.unit(6, "feet"),
  42651. default: true
  42652. },
  42653. ]
  42654. ))
  42655. characterMakers.push(() => makeCharacter(
  42656. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42657. {
  42658. front: {
  42659. height: math.unit(5 + 2/12, "feet"),
  42660. name: "Front",
  42661. image: {
  42662. source: "./media/characters/lumi/front.svg",
  42663. extra: 1328/1268,
  42664. bottom: 103/1431
  42665. }
  42666. },
  42667. back: {
  42668. height: math.unit(5 + 2/12, "feet"),
  42669. name: "Back",
  42670. image: {
  42671. source: "./media/characters/lumi/back.svg",
  42672. extra: 1381/1327,
  42673. bottom: 43/1424
  42674. }
  42675. },
  42676. },
  42677. [
  42678. {
  42679. name: "Normal",
  42680. height: math.unit(5 + 2/12, "feet"),
  42681. default: true
  42682. },
  42683. ]
  42684. ))
  42685. characterMakers.push(() => makeCharacter(
  42686. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42687. {
  42688. front: {
  42689. height: math.unit(5 + 9/12, "feet"),
  42690. name: "Front",
  42691. image: {
  42692. source: "./media/characters/aliya-cotton/front.svg",
  42693. extra: 577/564,
  42694. bottom: 29/606
  42695. }
  42696. },
  42697. },
  42698. [
  42699. {
  42700. name: "Normal",
  42701. height: math.unit(5 + 9/12, "feet"),
  42702. default: true
  42703. },
  42704. ]
  42705. ))
  42706. characterMakers.push(() => makeCharacter(
  42707. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  42708. {
  42709. front: {
  42710. height: math.unit(2.7, "meters"),
  42711. weight: math.unit(25000, "lb"),
  42712. name: "Front",
  42713. image: {
  42714. source: "./media/characters/noah-luxray/front.svg",
  42715. extra: 1644/825,
  42716. bottom: 339/1983
  42717. }
  42718. },
  42719. side: {
  42720. height: math.unit(2.97, "meters"),
  42721. weight: math.unit(25000, "lb"),
  42722. name: "Side",
  42723. image: {
  42724. source: "./media/characters/noah-luxray/side.svg",
  42725. extra: 1319/650,
  42726. bottom: 163/1482
  42727. }
  42728. },
  42729. dick: {
  42730. height: math.unit(7.4, "feet"),
  42731. weight: math.unit(2500, "lb"),
  42732. name: "Dick",
  42733. image: {
  42734. source: "./media/characters/noah-luxray/dick.svg"
  42735. }
  42736. },
  42737. dickAlt: {
  42738. height: math.unit(10.83, "feet"),
  42739. weight: math.unit(2500, "lb"),
  42740. name: "Dick-alt",
  42741. image: {
  42742. source: "./media/characters/noah-luxray/dick-alt.svg"
  42743. }
  42744. },
  42745. },
  42746. [
  42747. {
  42748. name: "BIG",
  42749. height: math.unit(2.7, "meters"),
  42750. default: true
  42751. },
  42752. ]
  42753. ))
  42754. characterMakers.push(() => makeCharacter(
  42755. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  42756. {
  42757. standing: {
  42758. height: math.unit(183, "cm"),
  42759. weight: math.unit(68, "kg"),
  42760. name: "Standing",
  42761. image: {
  42762. source: "./media/characters/arion/standing.svg",
  42763. extra: 1869/1807,
  42764. bottom: 93/1962
  42765. }
  42766. },
  42767. reclining: {
  42768. height: math.unit(70.5, "cm"),
  42769. weight: math.unit(68, "lb"),
  42770. name: "Reclining",
  42771. image: {
  42772. source: "./media/characters/arion/reclining.svg",
  42773. extra: 937/870,
  42774. bottom: 63/1000
  42775. }
  42776. },
  42777. },
  42778. [
  42779. {
  42780. name: "Colossus Size, Low",
  42781. height: math.unit(33, "meters"),
  42782. default: true
  42783. },
  42784. {
  42785. name: "Colossus Size, Mid",
  42786. height: math.unit(52, "meters")
  42787. },
  42788. {
  42789. name: "Colossus Size, High",
  42790. height: math.unit(60, "meters")
  42791. },
  42792. {
  42793. name: "Titan Size, Low",
  42794. height: math.unit(91, "meters"),
  42795. },
  42796. {
  42797. name: "Titan Size, Mid",
  42798. height: math.unit(122, "meters")
  42799. },
  42800. {
  42801. name: "Titan Size, High",
  42802. height: math.unit(162, "meters")
  42803. },
  42804. ]
  42805. ))
  42806. characterMakers.push(() => makeCharacter(
  42807. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  42808. {
  42809. front: {
  42810. height: math.unit(53, "meters"),
  42811. name: "Front",
  42812. image: {
  42813. source: "./media/characters/stellar-marbey/front.svg",
  42814. extra: 1913/1805,
  42815. bottom: 92/2005
  42816. }
  42817. },
  42818. back: {
  42819. height: math.unit(53, "meters"),
  42820. name: "Back",
  42821. image: {
  42822. source: "./media/characters/stellar-marbey/back.svg",
  42823. extra: 1960/1851,
  42824. bottom: 28/1988
  42825. }
  42826. },
  42827. mouth: {
  42828. height: math.unit(3.5, "meters"),
  42829. name: "Mouth",
  42830. image: {
  42831. source: "./media/characters/stellar-marbey/mouth.svg"
  42832. }
  42833. },
  42834. },
  42835. [
  42836. {
  42837. name: "Macro",
  42838. height: math.unit(53, "meters"),
  42839. default: true
  42840. },
  42841. ]
  42842. ))
  42843. characterMakers.push(() => makeCharacter(
  42844. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  42845. {
  42846. front: {
  42847. height: math.unit(8 + 1/12, "feet"),
  42848. weight: math.unit(233, "lb"),
  42849. name: "Front",
  42850. image: {
  42851. source: "./media/characters/matsu/front.svg",
  42852. extra: 832/772,
  42853. bottom: 40/872
  42854. }
  42855. },
  42856. back: {
  42857. height: math.unit(8 + 1/12, "feet"),
  42858. weight: math.unit(233, "lb"),
  42859. name: "Back",
  42860. image: {
  42861. source: "./media/characters/matsu/back.svg",
  42862. extra: 839/780,
  42863. bottom: 47/886
  42864. }
  42865. },
  42866. },
  42867. [
  42868. {
  42869. name: "Normal",
  42870. height: math.unit(8 + 1/12, "feet"),
  42871. default: true
  42872. },
  42873. ]
  42874. ))
  42875. characterMakers.push(() => makeCharacter(
  42876. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  42877. {
  42878. front: {
  42879. height: math.unit(4, "feet"),
  42880. weight: math.unit(148, "lb"),
  42881. name: "Front",
  42882. image: {
  42883. source: "./media/characters/thiz/front.svg",
  42884. extra: 1913/1748,
  42885. bottom: 62/1975
  42886. }
  42887. },
  42888. },
  42889. [
  42890. {
  42891. name: "Normal",
  42892. height: math.unit(4, "feet"),
  42893. default: true
  42894. },
  42895. ]
  42896. ))
  42897. characterMakers.push(() => makeCharacter(
  42898. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  42899. {
  42900. front: {
  42901. height: math.unit(7 + 6/12, "feet"),
  42902. weight: math.unit(267, "lb"),
  42903. name: "Front",
  42904. image: {
  42905. source: "./media/characters/marcel/front.svg",
  42906. extra: 1221/1096,
  42907. bottom: 76/1297
  42908. }
  42909. },
  42910. },
  42911. [
  42912. {
  42913. name: "Normal",
  42914. height: math.unit(7 + 6/12, "feet"),
  42915. default: true
  42916. },
  42917. ]
  42918. ))
  42919. characterMakers.push(() => makeCharacter(
  42920. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  42921. {
  42922. side: {
  42923. height: math.unit(42, "meters"),
  42924. name: "Side",
  42925. image: {
  42926. source: "./media/characters/flake/side.svg",
  42927. extra: 1525/1306,
  42928. bottom: 209/1734
  42929. }
  42930. },
  42931. },
  42932. [
  42933. {
  42934. name: "Normal",
  42935. height: math.unit(42, "meters"),
  42936. default: true
  42937. },
  42938. ]
  42939. ))
  42940. characterMakers.push(() => makeCharacter(
  42941. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  42942. {
  42943. dressed: {
  42944. height: math.unit(6 + 4/12, "feet"),
  42945. weight: math.unit(520, "lb"),
  42946. name: "Dressed",
  42947. image: {
  42948. source: "./media/characters/someonne/dressed.svg",
  42949. extra: 1020/1010,
  42950. bottom: 178/1198
  42951. }
  42952. },
  42953. undressed: {
  42954. height: math.unit(6 + 4/12, "feet"),
  42955. weight: math.unit(520, "lb"),
  42956. name: "Undressed",
  42957. image: {
  42958. source: "./media/characters/someonne/undressed.svg",
  42959. extra: 1019/1014,
  42960. bottom: 169/1188
  42961. }
  42962. },
  42963. },
  42964. [
  42965. {
  42966. name: "Normal",
  42967. height: math.unit(6 + 4/12, "feet"),
  42968. default: true
  42969. },
  42970. ]
  42971. ))
  42972. characterMakers.push(() => makeCharacter(
  42973. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  42974. {
  42975. front: {
  42976. height: math.unit(3, "feet"),
  42977. weight: math.unit(30, "lb"),
  42978. name: "Front",
  42979. image: {
  42980. source: "./media/characters/till/front.svg",
  42981. extra: 892/823,
  42982. bottom: 55/947
  42983. }
  42984. },
  42985. },
  42986. [
  42987. {
  42988. name: "Normal",
  42989. height: math.unit(3, "feet"),
  42990. default: true
  42991. },
  42992. ]
  42993. ))
  42994. characterMakers.push(() => makeCharacter(
  42995. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  42996. {
  42997. front: {
  42998. height: math.unit(9 + 8/12, "feet"),
  42999. weight: math.unit(800, "lb"),
  43000. name: "Front",
  43001. image: {
  43002. source: "./media/characters/sydney-heki/front.svg",
  43003. extra: 1360/1300,
  43004. bottom: 22/1382
  43005. }
  43006. },
  43007. back: {
  43008. height: math.unit(9 + 8/12, "feet"),
  43009. weight: math.unit(800, "lb"),
  43010. name: "Back",
  43011. image: {
  43012. source: "./media/characters/sydney-heki/back.svg",
  43013. extra: 1356/1293,
  43014. bottom: 12/1368
  43015. }
  43016. },
  43017. frontDressed: {
  43018. height: math.unit(9 + 8/12, "feet"),
  43019. weight: math.unit(800, "lb"),
  43020. name: "Front-dressed",
  43021. image: {
  43022. source: "./media/characters/sydney-heki/front-dressed.svg",
  43023. extra: 1360/1300,
  43024. bottom: 22/1382
  43025. }
  43026. },
  43027. },
  43028. [
  43029. {
  43030. name: "Normal",
  43031. height: math.unit(9 + 8/12, "feet"),
  43032. default: true
  43033. },
  43034. {
  43035. name: "Macro",
  43036. height: math.unit(500, "feet")
  43037. },
  43038. {
  43039. name: "Megamacro",
  43040. height: math.unit(3.6, "miles")
  43041. },
  43042. ]
  43043. ))
  43044. characterMakers.push(() => makeCharacter(
  43045. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43046. {
  43047. front: {
  43048. height: math.unit(200, "cm"),
  43049. weight: math.unit(250, "lb"),
  43050. name: "Front",
  43051. image: {
  43052. source: "./media/characters/fowler-karlsson/front.svg",
  43053. extra: 897/845,
  43054. bottom: 123/1020
  43055. }
  43056. },
  43057. back: {
  43058. height: math.unit(200, "cm"),
  43059. weight: math.unit(250, "lb"),
  43060. name: "Back",
  43061. image: {
  43062. source: "./media/characters/fowler-karlsson/back.svg",
  43063. extra: 999/944,
  43064. bottom: 26/1025
  43065. }
  43066. },
  43067. dick: {
  43068. height: math.unit(1.92, "feet"),
  43069. weight: math.unit(150, "lb"),
  43070. name: "Dick",
  43071. image: {
  43072. source: "./media/characters/fowler-karlsson/dick.svg"
  43073. }
  43074. },
  43075. },
  43076. [
  43077. {
  43078. name: "Normal",
  43079. height: math.unit(200, "cm"),
  43080. default: true
  43081. },
  43082. {
  43083. name: "Smaller Macro",
  43084. height: math.unit(90, "m")
  43085. },
  43086. {
  43087. name: "Macro",
  43088. height: math.unit(150, "m")
  43089. },
  43090. {
  43091. name: "Bigger Macro",
  43092. height: math.unit(300, "m")
  43093. },
  43094. ]
  43095. ))
  43096. characterMakers.push(() => makeCharacter(
  43097. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43098. {
  43099. side: {
  43100. height: math.unit(8 + 2/12, "feet"),
  43101. weight: math.unit(1, "tonne"),
  43102. name: "Side",
  43103. image: {
  43104. source: "./media/characters/rylide/side.svg",
  43105. extra: 1318/1034,
  43106. bottom: 106/1424
  43107. }
  43108. },
  43109. sitting: {
  43110. height: math.unit(303, "cm"),
  43111. weight: math.unit(1, "tonne"),
  43112. name: "Sitting",
  43113. image: {
  43114. source: "./media/characters/rylide/sitting.svg",
  43115. extra: 1303/1103,
  43116. bottom: 36/1339
  43117. }
  43118. },
  43119. },
  43120. [
  43121. {
  43122. name: "Normal",
  43123. height: math.unit(8 + 2/12, "feet"),
  43124. default: true
  43125. },
  43126. ]
  43127. ))
  43128. characterMakers.push(() => makeCharacter(
  43129. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43130. {
  43131. front: {
  43132. height: math.unit(5 + 10/12, "feet"),
  43133. weight: math.unit(160, "lb"),
  43134. name: "Front",
  43135. image: {
  43136. source: "./media/characters/pudask/front.svg",
  43137. extra: 1616/1590,
  43138. bottom: 161/1777
  43139. }
  43140. },
  43141. },
  43142. [
  43143. {
  43144. name: "Ferret Height",
  43145. height: math.unit(2 + 5/12, "feet")
  43146. },
  43147. {
  43148. name: "Canon Height",
  43149. height: math.unit(5 + 10/12, "feet"),
  43150. default: true
  43151. },
  43152. ]
  43153. ))
  43154. characterMakers.push(() => makeCharacter(
  43155. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43156. {
  43157. front: {
  43158. height: math.unit(3 + 6/12, "feet"),
  43159. weight: math.unit(60, "lb"),
  43160. name: "Front",
  43161. image: {
  43162. source: "./media/characters/ramita/front.svg",
  43163. extra: 1402/1232,
  43164. bottom: 62/1464
  43165. }
  43166. },
  43167. dressed: {
  43168. height: math.unit(3 + 6/12, "feet"),
  43169. weight: math.unit(60, "lb"),
  43170. name: "Dressed",
  43171. image: {
  43172. source: "./media/characters/ramita/dressed.svg",
  43173. extra: 1534/1249,
  43174. bottom: 50/1584
  43175. }
  43176. },
  43177. },
  43178. [
  43179. {
  43180. name: "Normal",
  43181. height: math.unit(3 + 6/12, "feet"),
  43182. default: true
  43183. },
  43184. ]
  43185. ))
  43186. characterMakers.push(() => makeCharacter(
  43187. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43188. {
  43189. front: {
  43190. height: math.unit(8, "feet"),
  43191. name: "Front",
  43192. image: {
  43193. source: "./media/characters/ark/front.svg",
  43194. extra: 772/693,
  43195. bottom: 45/817
  43196. }
  43197. },
  43198. },
  43199. [
  43200. {
  43201. name: "Normal",
  43202. height: math.unit(8, "feet"),
  43203. default: true
  43204. },
  43205. ]
  43206. ))
  43207. characterMakers.push(() => makeCharacter(
  43208. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43209. {
  43210. front: {
  43211. height: math.unit(6, "feet"),
  43212. weight: math.unit(250, "lb"),
  43213. volume: math.unit(5/8, "gallons"),
  43214. name: "Front",
  43215. image: {
  43216. source: "./media/characters/ludwig-horn/front.svg",
  43217. extra: 1782/1635,
  43218. bottom: 96/1878
  43219. }
  43220. },
  43221. back: {
  43222. height: math.unit(6, "feet"),
  43223. weight: math.unit(250, "lb"),
  43224. volume: math.unit(5/8, "gallons"),
  43225. name: "Back",
  43226. image: {
  43227. source: "./media/characters/ludwig-horn/back.svg",
  43228. extra: 1874/1729,
  43229. bottom: 27/1901
  43230. }
  43231. },
  43232. dick: {
  43233. height: math.unit(1.05, "feet"),
  43234. weight: math.unit(15, "lb"),
  43235. volume: math.unit(5/8, "gallons"),
  43236. name: "Dick",
  43237. image: {
  43238. source: "./media/characters/ludwig-horn/dick.svg"
  43239. }
  43240. },
  43241. },
  43242. [
  43243. {
  43244. name: "Small",
  43245. height: math.unit(6, "feet")
  43246. },
  43247. {
  43248. name: "Typical",
  43249. height: math.unit(12, "feet"),
  43250. default: true
  43251. },
  43252. {
  43253. name: "Building",
  43254. height: math.unit(80, "feet")
  43255. },
  43256. {
  43257. name: "Town",
  43258. height: math.unit(800, "feet")
  43259. },
  43260. {
  43261. name: "Kingdom",
  43262. height: math.unit(80000, "feet")
  43263. },
  43264. {
  43265. name: "Planet",
  43266. height: math.unit(8000000, "feet")
  43267. },
  43268. {
  43269. name: "Universe",
  43270. height: math.unit(8000000000, "feet")
  43271. },
  43272. {
  43273. name: "Transcended",
  43274. height: math.unit(8e27, "feet")
  43275. },
  43276. ]
  43277. ))
  43278. characterMakers.push(() => makeCharacter(
  43279. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43280. {
  43281. front: {
  43282. height: math.unit(5, "feet"),
  43283. weight: math.unit(50, "kg"),
  43284. name: "Front",
  43285. image: {
  43286. source: "./media/characters/biot-avery/front.svg",
  43287. extra: 1295/1232,
  43288. bottom: 86/1381
  43289. }
  43290. },
  43291. },
  43292. [
  43293. {
  43294. name: "Normal",
  43295. height: math.unit(5, "feet"),
  43296. default: true
  43297. },
  43298. ]
  43299. ))
  43300. characterMakers.push(() => makeCharacter(
  43301. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43302. {
  43303. front: {
  43304. height: math.unit(6, "feet"),
  43305. name: "Front",
  43306. image: {
  43307. source: "./media/characters/kitsune-kiro/front.svg",
  43308. extra: 1270/1158,
  43309. bottom: 42/1312
  43310. }
  43311. },
  43312. frontAlt: {
  43313. height: math.unit(6, "feet"),
  43314. name: "Front-alt",
  43315. image: {
  43316. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43317. extra: 1130/1081,
  43318. bottom: 36/1166
  43319. }
  43320. },
  43321. },
  43322. [
  43323. {
  43324. name: "Smol",
  43325. height: math.unit(3, "feet")
  43326. },
  43327. {
  43328. name: "Normal",
  43329. height: math.unit(6, "feet"),
  43330. default: true
  43331. },
  43332. ]
  43333. ))
  43334. characterMakers.push(() => makeCharacter(
  43335. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43336. {
  43337. front: {
  43338. height: math.unit(6, "feet"),
  43339. weight: math.unit(125, "lb"),
  43340. name: "Front",
  43341. image: {
  43342. source: "./media/characters/jack-thatcher/front.svg",
  43343. extra: 1474/1370,
  43344. bottom: 26/1500
  43345. }
  43346. },
  43347. back: {
  43348. height: math.unit(6, "feet"),
  43349. weight: math.unit(125, "lb"),
  43350. name: "Back",
  43351. image: {
  43352. source: "./media/characters/jack-thatcher/back.svg",
  43353. extra: 1489/1384,
  43354. bottom: 18/1507
  43355. }
  43356. },
  43357. },
  43358. [
  43359. {
  43360. name: "Normal",
  43361. height: math.unit(6, "feet"),
  43362. default: true
  43363. },
  43364. {
  43365. name: "Macro",
  43366. height: math.unit(75, "feet")
  43367. },
  43368. {
  43369. name: "Macro-er",
  43370. height: math.unit(250, "feet")
  43371. },
  43372. ]
  43373. ))
  43374. characterMakers.push(() => makeCharacter(
  43375. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43376. {
  43377. front: {
  43378. height: math.unit(7, "feet"),
  43379. weight: math.unit(110, "kg"),
  43380. name: "Front",
  43381. image: {
  43382. source: "./media/characters/max-hyper/front.svg",
  43383. extra: 1969/1881,
  43384. bottom: 49/2018
  43385. }
  43386. },
  43387. },
  43388. [
  43389. {
  43390. name: "Normal",
  43391. height: math.unit(7, "feet"),
  43392. default: true
  43393. },
  43394. ]
  43395. ))
  43396. characterMakers.push(() => makeCharacter(
  43397. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43398. {
  43399. front: {
  43400. height: math.unit(5 + 5/12, "feet"),
  43401. weight: math.unit(160, "lb"),
  43402. name: "Front",
  43403. image: {
  43404. source: "./media/characters/spook/front.svg",
  43405. extra: 794/791,
  43406. bottom: 54/848
  43407. }
  43408. },
  43409. back: {
  43410. height: math.unit(5 + 5/12, "feet"),
  43411. weight: math.unit(160, "lb"),
  43412. name: "Back",
  43413. image: {
  43414. source: "./media/characters/spook/back.svg",
  43415. extra: 812/798,
  43416. bottom: 32/844
  43417. }
  43418. },
  43419. },
  43420. [
  43421. {
  43422. name: "Normal",
  43423. height: math.unit(5 + 5/12, "feet"),
  43424. default: true
  43425. },
  43426. ]
  43427. ))
  43428. characterMakers.push(() => makeCharacter(
  43429. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43430. {
  43431. front: {
  43432. height: math.unit(18, "feet"),
  43433. name: "Front",
  43434. image: {
  43435. source: "./media/characters/xeaduulix/front.svg",
  43436. extra: 1380/1166,
  43437. bottom: 110/1490
  43438. }
  43439. },
  43440. back: {
  43441. height: math.unit(18, "feet"),
  43442. name: "Back",
  43443. image: {
  43444. source: "./media/characters/xeaduulix/back.svg",
  43445. extra: 1592/1170,
  43446. bottom: 128/1720
  43447. }
  43448. },
  43449. frontNsfw: {
  43450. height: math.unit(18, "feet"),
  43451. name: "Front (NSFW)",
  43452. image: {
  43453. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43454. extra: 1380/1166,
  43455. bottom: 110/1490
  43456. }
  43457. },
  43458. backNsfw: {
  43459. height: math.unit(18, "feet"),
  43460. name: "Back (NSFW)",
  43461. image: {
  43462. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43463. extra: 1592/1170,
  43464. bottom: 128/1720
  43465. }
  43466. },
  43467. },
  43468. [
  43469. {
  43470. name: "Normal",
  43471. height: math.unit(18, "feet"),
  43472. default: true
  43473. },
  43474. ]
  43475. ))
  43476. characterMakers.push(() => makeCharacter(
  43477. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43478. {
  43479. spreadWings: {
  43480. height: math.unit(20, "feet"),
  43481. name: "Spread Wings",
  43482. image: {
  43483. source: "./media/characters/fledge/spread-wings.svg",
  43484. extra: 693/635,
  43485. bottom: 26/719
  43486. }
  43487. },
  43488. front: {
  43489. height: math.unit(20, "feet"),
  43490. name: "Front",
  43491. image: {
  43492. source: "./media/characters/fledge/front.svg",
  43493. extra: 684/637,
  43494. bottom: 18/702
  43495. }
  43496. },
  43497. frontAlt: {
  43498. height: math.unit(20, "feet"),
  43499. name: "Front (Alt)",
  43500. image: {
  43501. source: "./media/characters/fledge/front-alt.svg",
  43502. extra: 708/664,
  43503. bottom: 13/721
  43504. }
  43505. },
  43506. back: {
  43507. height: math.unit(20, "feet"),
  43508. name: "Back",
  43509. image: {
  43510. source: "./media/characters/fledge/back.svg",
  43511. extra: 718/634,
  43512. bottom: 22/740
  43513. }
  43514. },
  43515. head: {
  43516. height: math.unit(5.55, "feet"),
  43517. name: "Head",
  43518. image: {
  43519. source: "./media/characters/fledge/head.svg"
  43520. }
  43521. },
  43522. headAlt: {
  43523. height: math.unit(5.1, "feet"),
  43524. name: "Head (Alt)",
  43525. image: {
  43526. source: "./media/characters/fledge/head-alt.svg"
  43527. }
  43528. },
  43529. },
  43530. [
  43531. {
  43532. name: "Small",
  43533. height: math.unit(6 + 2/12, "feet")
  43534. },
  43535. {
  43536. name: "Big",
  43537. height: math.unit(20, "feet"),
  43538. default: true
  43539. },
  43540. {
  43541. name: "Giant",
  43542. height: math.unit(100, "feet")
  43543. },
  43544. {
  43545. name: "Macro",
  43546. height: math.unit(200, "feet")
  43547. },
  43548. ]
  43549. ))
  43550. characterMakers.push(() => makeCharacter(
  43551. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43552. {
  43553. front: {
  43554. height: math.unit(1, "meter"),
  43555. name: "Front",
  43556. image: {
  43557. source: "./media/characters/atlas-morenai/front.svg",
  43558. extra: 1275/1043,
  43559. bottom: 19/1294
  43560. }
  43561. },
  43562. back: {
  43563. height: math.unit(1, "meter"),
  43564. name: "Back",
  43565. image: {
  43566. source: "./media/characters/atlas-morenai/back.svg",
  43567. extra: 1141/1001,
  43568. bottom: 25/1166
  43569. }
  43570. },
  43571. },
  43572. [
  43573. {
  43574. name: "Normal",
  43575. height: math.unit(1, "meter"),
  43576. default: true
  43577. },
  43578. {
  43579. name: "Magic-Infused",
  43580. height: math.unit(5, "meters")
  43581. },
  43582. ]
  43583. ))
  43584. characterMakers.push(() => makeCharacter(
  43585. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43586. {
  43587. front: {
  43588. height: math.unit(5, "meters"),
  43589. name: "Front",
  43590. image: {
  43591. source: "./media/characters/cintia/front.svg",
  43592. extra: 1312/1228,
  43593. bottom: 38/1350
  43594. }
  43595. },
  43596. back: {
  43597. height: math.unit(5, "meters"),
  43598. name: "Back",
  43599. image: {
  43600. source: "./media/characters/cintia/back.svg",
  43601. extra: 1260/1166,
  43602. bottom: 98/1358
  43603. }
  43604. },
  43605. frontDick: {
  43606. height: math.unit(5, "meters"),
  43607. name: "Front (Dick)",
  43608. image: {
  43609. source: "./media/characters/cintia/front-dick.svg",
  43610. extra: 1312/1228,
  43611. bottom: 38/1350
  43612. }
  43613. },
  43614. backDick: {
  43615. height: math.unit(5, "meters"),
  43616. name: "Back (Dick)",
  43617. image: {
  43618. source: "./media/characters/cintia/back-dick.svg",
  43619. extra: 1260/1166,
  43620. bottom: 98/1358
  43621. }
  43622. },
  43623. bust: {
  43624. height: math.unit(1.97, "meters"),
  43625. name: "Bust",
  43626. image: {
  43627. source: "./media/characters/cintia/bust.svg",
  43628. extra: 617/565,
  43629. bottom: 0/617
  43630. }
  43631. },
  43632. },
  43633. [
  43634. {
  43635. name: "Normal",
  43636. height: math.unit(5, "meters"),
  43637. default: true
  43638. },
  43639. ]
  43640. ))
  43641. characterMakers.push(() => makeCharacter(
  43642. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  43643. {
  43644. side: {
  43645. height: math.unit(100, "feet"),
  43646. name: "Side",
  43647. image: {
  43648. source: "./media/characters/denora/side.svg",
  43649. extra: 875/803,
  43650. bottom: 9/884
  43651. }
  43652. },
  43653. },
  43654. [
  43655. {
  43656. name: "Standard",
  43657. height: math.unit(100, "feet"),
  43658. default: true
  43659. },
  43660. {
  43661. name: "Grand",
  43662. height: math.unit(1000, "feet")
  43663. },
  43664. {
  43665. name: "Conquering",
  43666. height: math.unit(10000, "feet")
  43667. },
  43668. ]
  43669. ))
  43670. characterMakers.push(() => makeCharacter(
  43671. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  43672. {
  43673. dressed: {
  43674. height: math.unit(8 + 5/12, "feet"),
  43675. weight: math.unit(700, "lb"),
  43676. name: "Dressed",
  43677. image: {
  43678. source: "./media/characters/kiva/dressed.svg",
  43679. extra: 1102/1055,
  43680. bottom: 60/1162
  43681. }
  43682. },
  43683. nude: {
  43684. height: math.unit(8 + 5/12, "feet"),
  43685. weight: math.unit(700, "lb"),
  43686. name: "Nude",
  43687. image: {
  43688. source: "./media/characters/kiva/nude.svg",
  43689. extra: 1102/1055,
  43690. bottom: 60/1162
  43691. }
  43692. },
  43693. },
  43694. [
  43695. {
  43696. name: "Base Height",
  43697. height: math.unit(8 + 5/12, "feet"),
  43698. default: true
  43699. },
  43700. {
  43701. name: "Macro",
  43702. height: math.unit(100, "feet")
  43703. },
  43704. {
  43705. name: "Max",
  43706. height: math.unit(3280, "feet")
  43707. },
  43708. ]
  43709. ))
  43710. characterMakers.push(() => makeCharacter(
  43711. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  43712. {
  43713. front: {
  43714. height: math.unit(6 + 8/12, "feet"),
  43715. weight: math.unit(250, "lb"),
  43716. name: "Front",
  43717. image: {
  43718. source: "./media/characters/ztragon/front.svg",
  43719. extra: 1825/1684,
  43720. bottom: 98/1923
  43721. }
  43722. },
  43723. },
  43724. [
  43725. {
  43726. name: "Normal",
  43727. height: math.unit(6 + 8/12, "feet"),
  43728. default: true
  43729. },
  43730. {
  43731. name: "Macro",
  43732. height: math.unit(80, "feet")
  43733. },
  43734. ]
  43735. ))
  43736. //characters
  43737. function makeCharacters() {
  43738. const results = [];
  43739. characterMakers.forEach(character => {
  43740. results.push(character());
  43741. });
  43742. return results;
  43743. }